text
stringlengths 367
5.14M
| id
stringlengths 19
24
| metadata
dict |
|---|---|---|
# encoding: utf-8
from __future__ import absolute_import, unicode_literals
from dingtalk.client.api.base import DingTalkBaseAPI
class Calendar(DingTalkBaseAPI):
def create(self, create_vo):
"""
创建日程
:param create_vo: 创建日程实体
"""
return self._top_request(
"dingtalk.oapi.calendar.create",
{"create_vo": create_vo}
)
def list(
self,
user_id,
calendar_folder_id='',
time_min=None,
i_cal_uid='',
single_events='',
page_token='',
max_results=250,
time_max=None
):
"""
日程查询
:param user_id: 员工ID
:param calendar_folder_id: 钉钉日历文件夹的对外id,默认是自己的默认文件夹
:param time_min: 查询时间下限
:param i_cal_uid: 日程跨域唯一id,用于唯一标识一组关联日程事件
:param single_events: 是否需要展开循环日程
:param page_token: 查询对应页,值有上一次请求返回的结果里对应nextPageToken
:param max_results: 结果返回的最多数量,默认250,最多返回2500
:param time_max: 查询时间上限
"""
return self._top_request(
"dingtalk.oapi.calendar.list",
{
"user_id": user_id,
"calendar_folder_id": calendar_folder_id,
"time_min": time_min,
"i_cal_uid": i_cal_uid,
"single_events": single_events,
"page_token": page_token,
"max_results": max_results,
"time_max": time_max
}
)
def delete(self, userid='', calendar_id=''):
"""
日程删除
:param userid: 员工id
:param calendar_id: 日程id
"""
return self._top_request(
"dingtalk.oapi.calendar.delete",
{
"userid": userid,
"calendar_id": calendar_id
}
)
|
train_000.parquet/700
|
{
"file_path": "dingtalk/client/api/calendar.py",
"repo_id": "007gzs/dingtalk-sdk",
"size": 1855,
"token_count": 647
}
|
# -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals
from dingtalk.client.api.base import DingTalkBaseAPI
class User(DingTalkBaseAPI):
def auth_scopes(self):
"""
获取CorpSecret授权范围
:return:
"""
return self._get('/auth/scopes')
def get_org_user_count(self, only_active):
"""
获取企业员工人数
:param only_active: 是否包含未激活钉钉的人员数量
:return: 企业员工数量
"""
return self._get(
'/user/get_org_user_count',
{'onlyActive': 0 if only_active else 1},
result_processor=lambda x: x['count']
)
def getuserinfo(self, code):
"""
通过CODE换取用户身份
:param code: requestAuthCode接口中获取的CODE
:return:
"""
return self._get(
'/user/getuserinfo',
{'code': code}
)
def get(self, userid, lang='zh_CN'):
"""
获取成员详情
:param userid: 员工在企业内的UserID,企业用来唯一标识用户的字段
:param lang: 通讯录语言(默认zh_CN,未来会支持en_US)
:return:
"""
return self._get(
'/user/get',
{'userid': userid, 'lang': lang}
)
def create(self, user_data):
"""
创建成员
:param user_data: 用户信息
:return: userid
"""
return self._post(
'/user/create',
user_data,
result_processor=lambda x: x['userid']
)
def update(self, user_data):
"""
更新成员
:param user_data: 用户信息
:return:
"""
return self._post(
'/user/update',
user_data
)
def delete(self, userid):
"""
删除成员
:param userid: 员工在企业内的UserID,企业用来唯一标识用户的字段
:return:
"""
return self._get(
'/user/delete',
{'userid': userid}
)
def batchdelete(self, user_ids):
"""
批量删除成员
:param user_ids: 员工UserID列表。列表长度在1到20之间
:return:
"""
return self._post(
'/user/delete',
{'useridlist': list(user_ids)}
)
def simple_list(self, department_id, offset=0, size=100, order='custom', lang='zh_CN'):
"""
获取部门成员
:param department_id: 获取的部门id
:param offset: 偏移量
:param size: 表分页大小,最大100
:param order: 排序规则
entry_asc 代表按照进入部门的时间升序
entry_desc 代表按照进入部门的时间降序
modify_asc 代表按照部门信息修改时间升序
modify_desc 代表按照部门信息修改时间降序
custom 代表用户定义排序
:param lang: 通讯录语言(默认zh_CN另外支持en_US)
:return:
"""
return self._get(
'/user/simplelist',
{
'department_id': department_id,
'offset': offset,
'size': size,
'order': order,
'lang': lang
}
)
def list(self, department_id, offset=0, size=100, order='custom', lang='zh_CN'):
"""
获取部门成员(详情)
:param department_id: 获取的部门id
:param offset: 偏移量
:param size: 表分页大小,最大100
:param order: 排序规则
entry_asc 代表按照进入部门的时间升序
entry_desc 代表按照进入部门的时间降序
modify_asc 代表按照部门信息修改时间升序
modify_desc 代表按照部门信息修改时间降序
custom 代表用户定义排序
:param lang: 通讯录语言(默认zh_CN另外支持en_US)
:return:
"""
return self._get(
'/user/list',
{
'department_id': department_id,
'offset': offset,
'size': size,
'order': order,
'lang': lang
}
)
def get_admin(self):
"""
获取管理员列表
:return: sys_level 管理员角色 1:主管理员,2:子管理员
"""
return self._get(
'/user/get_admin',
result_processor=lambda x: x['admin_list']
)
def can_access_microapp(self, app_id, user_id):
"""
获取管理员的微应用管理权限
:param app_id: 微应用id
:param user_id: 员工唯一标识ID
:return: 是否能管理该微应用
"""
return self._get(
'/user/can_access_microapp',
{'appId': app_id, 'userId': user_id},
result_processor=lambda x: x['canAccess']
)
def get_userid_by_unionid(self, unionid):
"""
根据unionid获取成员的userid
:param unionid: 用户在当前钉钉开放平台账号范围内的唯一标识
:return:
"""
return self._get(
'/user/getUseridByUnionid',
{'unionid': unionid}
)
def get_dept_member(self, dept_id):
"""
获取部门用户userid列表
:param dept_id: 用户在当前钉钉开放平台账号范围内的唯一标识
:return 部门userid列表:
"""
return self._get(
'/user/getDeptMember',
{'deptId': dept_id},
result_processor=lambda x: x['userIds']
)
def listbypage(self, department_id, offset=0, size=100, order='custom', lang='zh_CN'):
"""
获取部门用户
:param department_id: 获取的部门id
:param offset: 偏移量
:param size: 表分页大小,最大100
:param order: 排序规则
entry_asc 代表按照进入部门的时间升序
entry_desc 代表按照进入部门的时间降序
modify_asc 代表按照部门信息修改时间升序
modify_desc 代表按照部门信息修改时间降序
custom 代表用户定义排序
:param lang: 通讯录语言(默认zh_CN另外支持en_US)
:return:
"""
return self._get(
'/user/list',
{
'department_id': department_id,
'offset': offset,
'size': size,
'order': order,
'lang': lang
}
)
def get_admin_scope(self, userid):
"""
查询管理员通讯录权限范围
:param userid: 用户id
"""
return self._top_request(
"dingtalk.oapi.user.get_admin_scope",
{"userid": userid},
result_processor=lambda x: x['dept_ids']
)
|
train_000.parquet/701
|
{
"file_path": "dingtalk/client/api/user.py",
"repo_id": "007gzs/dingtalk-sdk",
"size": 6121,
"token_count": 2102
}
|
/*******************************************************************************
* Size: 64 px
* Bpp: 1
* Opts: --bpp 1 --size 64 --no-compress --stride 1 --align 1 --font NotoEmoji-Regular.ttf --range 10084,65039,9989,10004,10060,10006,128512-128591,128640-128767,128192-128255 --format lvgl -o NotoEmoji64.c
******************************************************************************/
#ifdef __has_include
#if __has_include("lvgl.h")
#ifndef LV_LVGL_H_INCLUDE_SIMPLE
#define LV_LVGL_H_INCLUDE_SIMPLE
#endif
#endif
#endif
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#ifndef NOTOEMOJI64
#define NOTOEMOJI64 1
#endif
#if NOTOEMOJI64
/*-----------------
* BITMAPS
*----------------*/
/*Store the image of the glyphs*/
static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
/* U+2705 "✅" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 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, 0xc1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xf8,
0x0, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xff, 0xf8,
0x0, 0xff, 0xff, 0xff, 0xe0, 0x3f, 0xff, 0xf8,
0x0, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xf8,
0x0, 0x7f, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xf8,
0x0, 0x7f, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xfc,
0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xfc,
0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xfc,
0x0, 0x7f, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xfc,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xfc,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xfe,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xfe,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xfe,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7e,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1e,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x87, 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, 0xfb,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
/* U+2714 "✔" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xf0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xf0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x3f,
0xff, 0xf8, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3f,
0xff, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3f,
0xff, 0xf8, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x1f,
0xff, 0xf8, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x1f,
0xff, 0xf8, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x1f,
0xff, 0xfc, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x1f,
0xff, 0xfc, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x1f,
0xff, 0xfc, 0x0, 0x7, 0xff, 0xf0, 0x0, 0xf,
0xff, 0xfc, 0x0, 0x1, 0xff, 0xfc, 0x0, 0xf,
0xff, 0xfc, 0x0, 0x0, 0xff, 0xfe, 0x0, 0xf,
0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0x0, 0xf,
0xff, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0xf,
0xff, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x7,
0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x7,
0xff, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x7,
0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x7,
0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x7,
0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc7,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe3,
0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf3,
0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+2716 "✖" */
0x0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x60, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0,
0x3f, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x3,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xf8, 0x0, 0x3f,
0xf0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x3f, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xfe, 0x3, 0xff, 0xfc,
0x0, 0x0, 0x7, 0xff, 0xf8, 0x3f, 0xff, 0xf0,
0x0, 0x0, 0x7f, 0xff, 0xe3, 0xff, 0xff, 0xc0,
0x0, 0x7, 0xff, 0xff, 0x9f, 0xff, 0xff, 0x0,
0x0, 0x7f, 0xff, 0xfe, 0xff, 0xff, 0xfc, 0x0,
0x7, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xf0, 0x0,
0x7f, 0xff, 0xfe, 0xf, 0xff, 0xff, 0xc0, 0x7,
0xff, 0xff, 0xe0, 0x3f, 0xff, 0xff, 0x0, 0x7f,
0xff, 0xfe, 0x0, 0xff, 0xff, 0xfc, 0x7, 0xff,
0xff, 0xe0, 0x3, 0xff, 0xff, 0xf0, 0x7f, 0xff,
0xfe, 0x0, 0xf, 0xff, 0xff, 0xc7, 0xff, 0xff,
0xe0, 0x0, 0x3f, 0xff, 0xff, 0x7f, 0xff, 0xfe,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x3, 0xff, 0xff, 0xef, 0xff, 0xff, 0xc0,
0x0, 0x3f, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0x0,
0x3, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xfc, 0x0,
0x3f, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xf0, 0x3,
0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xc0, 0x3f,
0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0x3, 0xff,
0xff, 0xe0, 0x0, 0xff, 0xff, 0xfc, 0x3f, 0xff,
0xfe, 0x0, 0x3, 0xff, 0xff, 0xf3, 0xff, 0xff,
0xe0, 0x0, 0xf, 0xff, 0xff, 0xdf, 0xff, 0xfe,
0x0, 0x0, 0x3f, 0xff, 0xfc, 0x7f, 0xff, 0xe0,
0x0, 0x0, 0xff, 0xff, 0xc1, 0xff, 0xfe, 0x0,
0x0, 0x3, 0xff, 0xfc, 0x7, 0xff, 0xe0, 0x0,
0x0, 0xf, 0xff, 0xc0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0xff, 0xc0, 0x1, 0xfe, 0x0, 0x0, 0x0,
0x3, 0xfc, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0xf, 0xc0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x60, 0x0, 0x0, 0x0, 0x0,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0,
/* U+274C "❌" */
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0,
0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf1,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf3,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xef,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0x7f,
0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xfc, 0xff,
0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xf8, 0xff,
0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0xff,
0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0x80, 0xff,
0xff, 0x80, 0x0, 0x3, 0xff, 0xfe, 0x0, 0xff,
0xff, 0x80, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0xff,
0xff, 0xc0, 0x0, 0x7f, 0xff, 0xe0, 0x0, 0xff,
0xff, 0xc0, 0x1, 0xff, 0xff, 0x80, 0x0, 0xff,
0xff, 0xc0, 0x7, 0xff, 0xfe, 0x0, 0x0, 0xff,
0xff, 0xc0, 0x1f, 0xff, 0xf8, 0x0, 0x0, 0xff,
0xff, 0xc0, 0x7f, 0xff, 0xe0, 0x0, 0x0, 0xff,
0xff, 0xc1, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff,
0xff, 0xc7, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff,
0xff, 0xdf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xfe, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xf8, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xe0, 0xff,
0xff, 0xc0, 0x0, 0x1, 0xff, 0xff, 0x80, 0xff,
0xff, 0xc0, 0x0, 0x7, 0xff, 0xfe, 0x0, 0xff,
0xff, 0xc0, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0xff,
0xff, 0xc0, 0x0, 0x7f, 0xff, 0xe0, 0x0, 0xff,
0xff, 0xc0, 0x1, 0xff, 0xff, 0x80, 0x0, 0xff,
0xff, 0xc0, 0x7, 0xff, 0xfe, 0x0, 0x0, 0x7f,
0xff, 0xc0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x7f,
0xff, 0xc0, 0x7f, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xff, 0xc1, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xc7, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xcf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xbf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xfd, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xe3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0x81, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x0,
/* U+2764 "❤" */
0x0, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0xf, 0xff,
0xf0, 0x0, 0x3, 0xf1, 0xcf, 0xc0, 0x0, 0x7e,
0x39, 0xf8, 0x0, 0xf, 0x83, 0x83, 0xe0, 0x3,
0xe0, 0x70, 0xf8, 0x0, 0x3e, 0x7, 0x7, 0xe0,
0xf, 0xc0, 0xe0, 0xf8, 0x0, 0xfc, 0xe, 0xf,
0xe0, 0x3f, 0x81, 0xc1, 0xf8, 0x3, 0xf8, 0x1c,
0x1d, 0xe0, 0xf7, 0x3, 0x83, 0xf8, 0xf, 0x70,
0x38, 0x39, 0xe3, 0xce, 0x7, 0x7, 0x78, 0x1c,
0xe0, 0x70, 0x71, 0xc7, 0x1c, 0xe, 0xe, 0x70,
0x71, 0xc0, 0xe0, 0xe1, 0xdc, 0x38, 0x1c, 0x1c,
0x70, 0xe3, 0x81, 0xc1, 0xc1, 0xb0, 0x70, 0x38,
0x38, 0xe3, 0x87, 0x3, 0x83, 0x83, 0xe0, 0xe0,
0x70, 0x70, 0xe7, 0xe, 0x7, 0x7, 0x3, 0x81,
0xc0, 0xe0, 0xe1, 0xce, 0x1c, 0xe, 0xe, 0x7,
0x3, 0x81, 0xc1, 0xc3, 0xb8, 0x38, 0x1c, 0x1c,
0xe, 0x7, 0x3, 0x83, 0x83, 0xf0, 0x70, 0x38,
0x38, 0x1c, 0xe, 0x7, 0x7, 0x7, 0xe0, 0xe0,
0x70, 0x70, 0x38, 0x1c, 0xe, 0xe, 0xf, 0xc1,
0xc0, 0xe0, 0xe0, 0x70, 0x38, 0x1c, 0x1c, 0x1f,
0x83, 0x81, 0xc1, 0xc0, 0xe0, 0x70, 0x38, 0x38,
0x3f, 0x7, 0x3, 0x83, 0x81, 0xc0, 0xe0, 0x70,
0x70, 0x7e, 0xe, 0x7, 0x7, 0x3, 0x81, 0xc0,
0xe0, 0xe0, 0xfc, 0x1c, 0xe, 0xe, 0x7, 0x3,
0x81, 0xc1, 0xc1, 0xf8, 0x38, 0x1c, 0x1c, 0xe,
0x7, 0x3, 0x83, 0x83, 0xf8, 0x70, 0x38, 0x38,
0x1c, 0xe, 0x7, 0x7, 0xe, 0x70, 0xe0, 0x70,
0x70, 0x38, 0x1c, 0xe, 0xe, 0x1c, 0xe1, 0xc0,
0xe0, 0xe0, 0x70, 0x38, 0x1c, 0x1c, 0x39, 0xc3,
0x81, 0xc1, 0xc0, 0xe0, 0x70, 0x38, 0x38, 0xf1,
0xc7, 0x3, 0x83, 0x81, 0xc0, 0xe0, 0x70, 0x71,
0xc3, 0x8e, 0x7, 0x7, 0x3, 0x81, 0xc0, 0xe0,
0xe3, 0x87, 0x9c, 0xe, 0xe, 0x7, 0x3, 0x81,
0xc1, 0xcf, 0x7, 0x38, 0x1c, 0x1c, 0xe, 0x7,
0x3, 0x83, 0x9c, 0xf, 0x70, 0x38, 0x38, 0x1c,
0xe, 0x7, 0x7, 0x78, 0xe, 0xe0, 0x70, 0x70,
0x38, 0x1c, 0xe, 0xe, 0xe0, 0x1f, 0xc0, 0xe0,
0xe0, 0x70, 0x38, 0x1c, 0x1f, 0xc0, 0x1f, 0x81,
0xc1, 0xc0, 0xe0, 0x70, 0x38, 0x3f, 0x0, 0x1f,
0x3, 0x83, 0x81, 0xc0, 0xe0, 0x70, 0x7c, 0x0,
0x3e, 0x7, 0x7, 0x3, 0x81, 0xc0, 0xe0, 0xf8,
0x0, 0x3c, 0xe, 0xe, 0x7, 0x3, 0x81, 0xc1,
0xe0, 0x0, 0x38, 0x1c, 0x1c, 0xe, 0x7, 0x3,
0x83, 0x80, 0x0, 0x38, 0x38, 0x38, 0x1c, 0xe,
0x7, 0xe, 0x0, 0x0, 0x78, 0x70, 0x70, 0x38,
0x1c, 0xe, 0x3c, 0x0, 0x0, 0x78, 0xe0, 0xe0,
0x70, 0x38, 0x1c, 0xf0, 0x0, 0x0, 0x79, 0xc1,
0xc0, 0xe0, 0x70, 0x3b, 0xc0, 0x0, 0x0, 0x73,
0x83, 0x81, 0xc0, 0xe0, 0x7f, 0x0, 0x0, 0x0,
0x77, 0x7, 0x3, 0x81, 0xc0, 0xfc, 0x0, 0x0,
0x0, 0x7e, 0xe, 0x7, 0x3, 0x81, 0xf0, 0x0,
0x0, 0x0, 0x7c, 0x1c, 0xe, 0x7, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x78, 0x38, 0x1c, 0xe, 0x7,
0x0, 0x0, 0x0, 0x0, 0x70, 0x70, 0x38, 0x1c,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x70, 0xe0, 0x70,
0x38, 0x70, 0x0, 0x0, 0x0, 0x0, 0x71, 0xc0,
0xe0, 0x73, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7b,
0x81, 0xc0, 0xef, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0x3, 0x81, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7e, 0x7, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7c, 0xe, 0x7, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x78, 0x1c, 0xf, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x78, 0x38, 0x3c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x71, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0xe7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d,
0xde, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0,
0x0,
/* U+FE0F "️" */
0x0,
/* U+1F4C0 "📀" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x1f, 0x7f, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x1e, 0x1f, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x1e, 0xf, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x1e, 0x3, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x1c, 0x1, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x1c, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x1c, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x1e, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0x0, 0x1e, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xc0, 0xe, 0x0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xe0, 0xf, 0xc0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x7, 0xf0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xfc, 0x7, 0xfe, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0x3, 0xff, 0x80, 0xf, 0xff, 0xff,
0xff, 0xff, 0x83, 0xff, 0xe0, 0xf, 0x80, 0xff,
0xff, 0xff, 0xe1, 0xff, 0xfc, 0xf, 0x0, 0x1f,
0xff, 0xff, 0xf0, 0xff, 0xff, 0xe, 0x0, 0x3,
0xff, 0xff, 0xf8, 0xff, 0xff, 0xee, 0x0, 0x0,
0xff, 0xff, 0xfe, 0x7f, 0xff, 0xfe, 0x0, 0x0,
0x3f, 0xff, 0xff, 0x3f, 0xff, 0xfe, 0x3, 0xf0,
0xf, 0xff, 0xff, 0x9f, 0xff, 0xff, 0x3, 0xfc,
0x7, 0xff, 0xff, 0xdf, 0xff, 0xff, 0x3, 0xff,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff,
0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff,
0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff,
0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff,
0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f,
0xfe, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f,
0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f,
0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7,
0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81,
0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x7f, 0x80, 0x7f, 0xff, 0xfd, 0xff, 0xff, 0xf0,
0x1f, 0x80, 0x7f, 0xff, 0xfc, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x3f, 0xff, 0xfe, 0x7f, 0xff, 0xfe,
0x0, 0x0, 0x3f, 0xff, 0xff, 0x3f, 0xff, 0xff,
0x80, 0x0, 0x3b, 0xff, 0xff, 0x8f, 0xff, 0xff,
0xe0, 0x0, 0x38, 0x7f, 0xff, 0x87, 0xff, 0xff,
0xfc, 0x0, 0x78, 0x1f, 0xff, 0xc3, 0xff, 0xff,
0xff, 0x80, 0xf0, 0x3, 0xff, 0xe0, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x0, 0xff, 0xe0, 0x7f, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x1f, 0xf0, 0x1f, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x7, 0xf0, 0xf, 0xff,
0xff, 0xff, 0xff, 0x0, 0x1, 0xf8, 0x3, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x38, 0x1, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x3c, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x3c, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x3c, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0x0, 0x3c, 0x0, 0x1,
0xff, 0xff, 0xff, 0xff, 0x80, 0x3c, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xe0, 0x3c, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xf0, 0x3c, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xfc, 0x7c, 0x0, 0x0,
0x1, 0xff, 0xff, 0xff, 0xfe, 0x7c, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0,
/* U+1F4C1 "📁" */
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0x38,
0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0xff,
0x80, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x1, 0xff,
0xf8, 0x0, 0x3f, 0xf8, 0x18, 0x0, 0x7, 0xff,
0xf1, 0x80, 0x7, 0xf0, 0x1, 0xc0, 0x1f, 0xff,
0xc0, 0x18, 0x0, 0x70, 0x0, 0x1c, 0x3f, 0xff,
0x0, 0x1, 0x80, 0x7, 0x0, 0x0, 0xff, 0xfe,
0x0, 0x0, 0x18, 0x0, 0x70, 0x0, 0xf, 0xf8,
0x0, 0x0, 0x1, 0xbf, 0x7, 0x0, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x7f, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xf0, 0x6f, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xc0, 0x6, 0xf0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x6e, 0x0,
0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0xe, 0xe0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xee,
0x0, 0x0, 0x7, 0xf0, 0x0, 0x0, 0x0, 0xe,
0xe0, 0x0, 0x0, 0x60, 0x0, 0x0, 0x0, 0x0,
0xce, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0xc, 0xe0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0xce, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0,
0x0, 0x1c, 0xe0, 0x0, 0x0, 0xc0, 0x0, 0x0,
0x0, 0x1, 0xce, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x1c, 0xe0, 0x0, 0xf, 0xc0, 0x0,
0x0, 0x0, 0x1, 0xce, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x18, 0xe0, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x1, 0x8e, 0x3f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x18, 0xe3, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x8e, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0xe3, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x8e, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xe3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30,
0xe7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0xe6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x60, 0xe6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0xe, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x60, 0xee, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0xe, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0xec, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0xe, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0xec, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xf, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xf, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xf,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8,
0xf, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0x80, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xe0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xc0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xc0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0xe, 0x1, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+1F4C2 "📂" */
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0xc, 0x0,
0x0, 0xff, 0xfe, 0x0, 0x0, 0xf, 0xe0, 0x3,
0x0, 0xf, 0xff, 0xf1, 0x80, 0x0, 0x3, 0x80,
0x0, 0xe0, 0xff, 0xff, 0x0, 0x60, 0x0, 0x0,
0xe0, 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x18, 0x0,
0x0, 0x38, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x6,
0x0, 0x0, 0xc, 0x0, 0x1, 0xe0, 0x0, 0x0,
0x1, 0x80, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x60, 0x0, 0x7, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x18, 0x0, 0x3, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60,
0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x18, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0x1, 0xfe, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x9f, 0xff, 0xb8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0xee, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x73,
0x80, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0,
0x1c, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0,
0x0, 0x6, 0x38, 0x0, 0x0, 0x0, 0x7, 0xfc,
0x0, 0x0, 0x3, 0x8e, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x0, 0xc3, 0x80, 0x0, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x70, 0xe0, 0x0,
0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0x1c, 0x38,
0x0, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0xe,
0xe, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0,
0x3, 0x83, 0x80, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0xc0, 0xe0, 0x0, 0x0, 0x0, 0x60,
0x0, 0x0, 0x0, 0x70, 0x38, 0x0, 0x0, 0x3,
0xf8, 0x0, 0x0, 0x0, 0x18, 0xe, 0x0, 0x0,
0x3f, 0xfe, 0x0, 0x0, 0x0, 0xe, 0x3, 0x80,
0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0x80,
0xe0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x38, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0,
0x0, 0x70, 0xe, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x18, 0x3, 0x80, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0xe0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x38, 0x0,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe,
0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x3, 0x80, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x38, 0x3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x0, 0xe, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x3, 0x80, 0x60,
0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0x0, 0xe0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x38, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0x0, 0xe, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x3, 0x81, 0x80, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x0, 0xe0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x38, 0x30, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf8, 0x0, 0xe, 0x1c,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x3,
0x86, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0xe3, 0x80, 0x0, 0x0, 0x0, 0xff, 0xc0,
0x0, 0x0, 0x38, 0xe0, 0x0, 0x0, 0x3, 0xff,
0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0xf,
0xfc, 0x0, 0x0, 0x0, 0x3, 0x9c, 0x0, 0x0,
0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xe6, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3b,
0x80, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xc0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xf0, 0x7f, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf9, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0,
/* U+1F4C3 "📃" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x3, 0x80, 0x1f, 0xff,
0xff, 0xff, 0x0, 0x38, 0xe, 0x0, 0x7f, 0xff,
0xff, 0xfc, 0x0, 0xe0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x80, 0xe0, 0x7, 0xff, 0xff, 0xff,
0xc0, 0xe, 0x3, 0x80, 0x1f, 0xff, 0xff, 0xff,
0x0, 0x38, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x80, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xc0, 0xe,
0x3, 0x80, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x38,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x38,
0x1, 0xff, 0xff, 0xff, 0xf0, 0x3, 0x80, 0xe0,
0x7, 0xff, 0xff, 0xff, 0xc0, 0xe, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x38, 0x1, 0xff,
0xf8, 0x0, 0x0, 0x3, 0x80, 0xe0, 0x7, 0xff,
0xe0, 0x0, 0x0, 0xe, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x80, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x3, 0x80, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xee, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xb8, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x60, 0x3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1d, 0xc0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x77, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0,
0x1, 0xdc, 0x1, 0x80, 0x0, 0x0, 0x0, 0x0,
0x7, 0x38, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0xf0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
/* U+1F4C4 "📄" */
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x7e, 0x0, 0x70, 0x0, 0x0, 0x0, 0xf,
0xe0, 0xe, 0x0, 0x0, 0x0, 0x1, 0xde, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x39, 0xe0, 0x38, 0x0,
0x0, 0x0, 0x7, 0x1e, 0x7, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe0, 0xe0, 0x0, 0x0, 0x0, 0x1c,
0xe, 0x1c, 0x0, 0x0, 0x0, 0x3, 0x80, 0xe3,
0x80, 0x0, 0x0, 0x0, 0x70, 0xe, 0x70, 0x0,
0x0, 0x0, 0xe, 0x0, 0xee, 0x0, 0x0, 0x0,
0x1, 0xc0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e,
0x1, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xc0, 0x3f,
0xff, 0xff, 0xff, 0x0, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3e, 0x1, 0xff, 0xff, 0xff, 0xf8,
0x7, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf0,
0xf, 0xff, 0xff, 0xff, 0xc0, 0x3e, 0x1, 0xff,
0xff, 0xff, 0xf8, 0x7, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xc0,
0x3e, 0x1, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x80,
0x7f, 0xfe, 0x0, 0x0, 0x1, 0xf0, 0xf, 0xff,
0xc0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
/* U+1F4C5 "📅" */
0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff,
0xfe, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff,
0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff,
0xe7, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfe,
0x7, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xf8,
0x1f, 0xff, 0xff, 0x3f, 0xff, 0x7, 0xff, 0xe0,
0x7f, 0x7f, 0xfc, 0xff, 0xfc, 0x1f, 0xff, 0x81,
0xfd, 0xff, 0xf3, 0xff, 0xf0, 0x7f, 0xff, 0xf,
0xf7, 0xff, 0xcf, 0xff, 0xe3, 0xff, 0xff, 0xff,
0xdc, 0xf3, 0x33, 0xcf, 0xff, 0xff, 0xff, 0xff,
0x73, 0xcc, 0xe7, 0x3f, 0xff, 0xff, 0xff, 0xfd,
0xcf, 0x33, 0x9c, 0xff, 0xff, 0xff, 0xff, 0xf7,
0x3c, 0xcf, 0x67, 0xff, 0xff, 0xff, 0xff, 0xdc,
0xf3, 0x3c, 0x9f, 0xff, 0xff, 0xff, 0xff, 0x73,
0xcc, 0xf2, 0x7f, 0xff, 0xff, 0xff, 0xb9, 0xce,
0x33, 0xeb, 0xff, 0xff, 0xff, 0xfe, 0x7, 0x0,
0xc7, 0x8f, 0xff, 0xff, 0xff, 0xf8, 0x1e, 0x13,
0x1f, 0x3f, 0xff, 0xff, 0xff, 0xf9, 0xfc, 0xcf,
0x79, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9,
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, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x7, 0x80, 0x3f, 0xff, 0x0, 0x1f,
0x80, 0x0, 0xfe, 0x0, 0xff, 0xfc, 0x0, 0x7e,
0x0, 0x7, 0xf8, 0x3, 0xff, 0xf0, 0x1, 0xf8,
0x0, 0x1f, 0xe0, 0x0, 0x3, 0x80, 0x7, 0xe0,
0x0, 0x7f, 0x80, 0x0, 0x1e, 0x0, 0x1f, 0x80,
0x0, 0x1e, 0x0, 0x0, 0x70, 0x0, 0x7e, 0x0,
0x0, 0x78, 0x0, 0x3, 0x80, 0x1, 0xf8, 0x0,
0x1, 0xe0, 0x0, 0xe, 0x0, 0x7, 0xe0, 0x0,
0x7, 0x80, 0x0, 0x70, 0x0, 0x1f, 0x80, 0x0,
0x1e, 0x0, 0x1, 0xc0, 0x0, 0x7e, 0x0, 0x0,
0x78, 0x0, 0xf, 0x0, 0x1, 0xf8, 0x0, 0x1,
0xe0, 0x0, 0x38, 0x0, 0x7, 0xe0, 0x0, 0x7,
0x80, 0x1, 0xe0, 0x0, 0x1f, 0x80, 0x0, 0x1e,
0x0, 0x7, 0x80, 0x0, 0x7e, 0x0, 0x0, 0x78,
0x0, 0x1e, 0x0, 0x1, 0xf8, 0x0, 0x1, 0xe0,
0x0, 0x70, 0x0, 0x7, 0xe0, 0x0, 0x7, 0x80,
0x1, 0xc0, 0x0, 0x1f, 0x80, 0x0, 0x1e, 0x0,
0xf, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x78, 0x0,
0x3c, 0x0, 0x1, 0xf8, 0x0, 0x1, 0xe0, 0x0,
0xf0, 0x0, 0x7, 0xe0, 0x0, 0xff, 0xf8, 0x3,
0xc0, 0x0, 0x1f, 0x80, 0x3, 0xff, 0xe0, 0xf,
0x0, 0x0, 0x7e, 0x0, 0xf, 0xff, 0x80, 0x3c,
0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
/* U+1F4C6 "📆" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x3, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f,
0xc0, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x83,
0xf0, 0x3f, 0x3, 0xff, 0xff, 0xe7, 0xff, 0xc0,
0xff, 0xff, 0xc0, 0xfc, 0xff, 0xf9, 0xff, 0xf0,
0x1f, 0xff, 0xf0, 0x3f, 0x3f, 0xfe, 0x7f, 0xfc,
0xf, 0xc7, 0xfc, 0x1f, 0xcf, 0xff, 0x9f, 0xff,
0x83, 0xf1, 0xff, 0x87, 0xf3, 0x3c, 0xe6, 0x73,
0xe1, 0xfc, 0x7f, 0xff, 0xfc, 0xcf, 0x39, 0x9c,
0xff, 0xff, 0x1f, 0xff, 0xff, 0x33, 0xce, 0x77,
0x3f, 0xff, 0xc7, 0xff, 0xff, 0xcc, 0xf3, 0x9c,
0xdf, 0xff, 0xf1, 0xff, 0xff, 0xf3, 0x3c, 0xe7,
0x27, 0xff, 0xfc, 0x7f, 0xff, 0xfc, 0xcf, 0x39,
0xe9, 0xff, 0xff, 0x1f, 0xff, 0xff, 0x3b, 0xce,
0x7a, 0xff, 0xff, 0xc7, 0xff, 0xf9, 0x8e, 0x63,
0x9f, 0x3f, 0xff, 0xf1, 0xff, 0xff, 0x7, 0x84,
0xe3, 0xcf, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xf7, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xf9, 0xff, 0xff, 0xc7, 0xff, 0xff, 0xff,
0xff, 0xf8, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x7f, 0xff, 0xfc, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x7e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x1f, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xf8,
0x0, 0x3, 0x80, 0x3f, 0xfe, 0x0, 0x1c, 0x7e,
0x0, 0x7, 0xe0, 0xf, 0xff, 0x80, 0x7, 0x1f,
0x80, 0x3, 0xf8, 0x3, 0xff, 0xc0, 0x1, 0xc7,
0xe0, 0x0, 0xfe, 0x0, 0x0, 0x70, 0x0, 0x71,
0xf8, 0x0, 0x3, 0x80, 0x0, 0x38, 0x0, 0x1c,
0x7e, 0x0, 0x0, 0xe0, 0x0, 0xc, 0x0, 0x7,
0x1f, 0x80, 0x0, 0x38, 0x0, 0x7, 0x0, 0x1,
0xc7, 0xe0, 0x0, 0xe, 0x0, 0x1, 0x80, 0x0,
0x71, 0xf8, 0x0, 0x3, 0x80, 0x0, 0xe0, 0x0,
0x1c, 0x7e, 0x0, 0x0, 0xe0, 0x0, 0x38, 0x0,
0x7, 0x1f, 0x80, 0x0, 0x38, 0x0, 0x1c, 0x0,
0x1, 0xc7, 0xe0, 0x0, 0xe, 0x0, 0x7, 0x0,
0x0, 0x71, 0xf8, 0x0, 0x3, 0x80, 0x1, 0xc0,
0x0, 0x1c, 0x7e, 0x0, 0x0, 0xe0, 0x0, 0x70,
0x0, 0x7, 0x1f, 0x80, 0x0, 0x38, 0x0, 0x38,
0x0, 0x1, 0xc7, 0xe0, 0x0, 0xe, 0x0, 0xe,
0x0, 0x0, 0x71, 0xf8, 0x0, 0x3, 0x80, 0x3,
0x81, 0xff, 0xfc, 0x7e, 0x0, 0x0, 0xe0, 0x0,
0xe0, 0x7f, 0xff, 0x1f, 0x80, 0x7, 0xff, 0x80,
0x38, 0x1f, 0xff, 0xc7, 0xe0, 0x1, 0xff, 0xe0,
0xe, 0x7, 0xff, 0xe1, 0xf8, 0x0, 0x7f, 0xf8,
0x3, 0x81, 0xff, 0xf0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x1f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x1, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1, 0xfe, 0x0, 0x7e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0x0, 0x1f, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xc0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1c, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
/* U+1F4C7 "📇" */
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x70, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x0, 0x3, 0x87, 0xfe, 0xf, 0xff, 0x83, 0x80,
0x0, 0x0, 0x1, 0xc3, 0xff, 0x7, 0xff, 0xc1,
0xc0, 0x0, 0x0, 0x0, 0xe1, 0xff, 0x83, 0xff,
0xe0, 0xe0, 0x0, 0x0, 0x0, 0x70, 0xff, 0xc0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x38, 0x7f,
0xe0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0x1c,
0x3f, 0xf0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0,
0xe, 0x1f, 0xf8, 0x3f, 0xf0, 0xe, 0x0, 0x0,
0x0, 0x7, 0xf, 0xfc, 0x1f, 0xf8, 0x7, 0x0,
0x0, 0x0, 0x3, 0x87, 0xfe, 0xf, 0xfc, 0x3,
0x80, 0x0, 0x0, 0x1, 0xc3, 0xff, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0xe1, 0xff, 0x80,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x70, 0xff,
0xc0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x3,
0xfc, 0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0,
0x7, 0xfe, 0x0, 0x0, 0x3f, 0x80, 0xf, 0xf8,
0x0, 0x7, 0x87, 0x0, 0x0, 0x0, 0x0, 0x7,
0x8e, 0x0, 0x7, 0x7, 0x80, 0x0, 0x0, 0x0,
0x3, 0xc3, 0x80, 0x3, 0x83, 0xc0, 0x0, 0x0,
0x0, 0x1, 0xf1, 0xc0, 0x3, 0x83, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xf8, 0x70, 0x1, 0xc1, 0xf0,
0x8, 0x0, 0x0, 0x80, 0x7c, 0x38, 0x0, 0xe0,
0xf8, 0xe, 0x0, 0x0, 0xe0, 0x3e, 0x1c, 0x0,
0x70, 0x7c, 0x7, 0x0, 0x0, 0x70, 0x1f, 0xe,
0x0, 0x38, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x87, 0x0, 0x1c, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc3, 0x80, 0xe, 0xf, 0x80, 0xe0, 0x0,
0xe, 0x1, 0xe1, 0xc0, 0x7, 0x87, 0x80, 0x70,
0x0, 0x7, 0x0, 0x70, 0xe0, 0x1, 0xc7, 0x80,
0x10, 0x0, 0x1, 0x0, 0x3c, 0xe0, 0x0, 0xf3,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0,
0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf0,
0x0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xf0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7c, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3e, 0x0, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x80, 0x3, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x3, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf0, 0x3,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0xf0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc1, 0xe0, 0xf0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0xf8, 0xf8, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x3c, 0x78, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf, 0x3c,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x7,
0xbc, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xc,
0x3, 0xfe, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x7f, 0x80, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x3f, 0xc0, 0x3, 0x80,
0x0, 0x0, 0x0, 0xf, 0x0, 0x1f, 0xe0, 0x7,
0xc0, 0x0, 0x0, 0x0, 0x7, 0xc0, 0xf, 0xf0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x7,
0xf8, 0x7, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xfe,
0x3, 0xfc, 0xf, 0xdf, 0xff, 0xff, 0xff, 0xff,
0xef, 0x83, 0xef, 0xf, 0xcf, 0xff, 0xff, 0xff,
0xff, 0xf3, 0xe1, 0xe7, 0x9f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf8, 0xf3, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x3f,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf8,
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x78, 0x0,
/* U+1F4C8 "📈" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x1, 0x80, 0x60, 0xc, 0x3, 0x0, 0x60,
0x1f, 0x0, 0x60, 0x18, 0x3, 0x0, 0xc0, 0x18,
0xf, 0xc0, 0x18, 0x6, 0x0, 0xc0, 0x30, 0x6,
0x7, 0xf0, 0x6, 0x1, 0x80, 0x30, 0xc, 0x1,
0x83, 0xfc, 0x1, 0x80, 0x60, 0xc, 0x3, 0x0,
0x60, 0xef, 0x0, 0x60, 0x18, 0x3, 0x0, 0xc0,
0x18, 0x73, 0xc0, 0x18, 0x6, 0x0, 0xc0, 0x30,
0x6, 0x3c, 0xf0, 0x6, 0x1, 0x80, 0x30, 0xc,
0x1, 0x9e, 0x3c, 0x1, 0x80, 0x60, 0xc, 0x3,
0x0, 0x67, 0xf, 0x0, 0x60, 0x18, 0x3, 0x0,
0xc0, 0x1b, 0x83, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x6, 0x1, 0x80, 0x30,
0xc, 0x1, 0xf0, 0x3c, 0x1, 0x80, 0x60, 0xc,
0x3, 0x0, 0x78, 0xf, 0x0, 0x60, 0x18, 0x3,
0x0, 0xc0, 0x1e, 0x3, 0xc0, 0x18, 0x6, 0x0,
0xc0, 0x30, 0xf, 0x0, 0xf0, 0x6, 0x1, 0x80,
0x30, 0xc, 0x3, 0x80, 0x3c, 0x1, 0x80, 0x60,
0xc, 0x3, 0x1, 0xe0, 0xf, 0x0, 0x60, 0x18,
0x3, 0x0, 0xc0, 0xf8, 0x3, 0xc0, 0x18, 0x6,
0x0, 0xc0, 0x30, 0x7e, 0x0, 0xf0, 0x6, 0x1,
0x80, 0x30, 0xc, 0x1d, 0x80, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x60,
0x18, 0x3, 0x0, 0xc7, 0x98, 0x3, 0xc0, 0x18,
0x6, 0x0, 0xc0, 0x33, 0xc6, 0x0, 0xf0, 0x6,
0x1, 0x80, 0x30, 0xc, 0xe1, 0x80, 0x3c, 0x1,
0x80, 0x60, 0xc, 0x3, 0x78, 0x60, 0xf, 0x0,
0x60, 0x18, 0x3, 0x0, 0xfc, 0x18, 0x3, 0xc0,
0x18, 0x6, 0x0, 0xc0, 0x3e, 0x6, 0x0, 0xf0,
0x6, 0x1, 0x80, 0x30, 0xf, 0x1, 0x80, 0x3c,
0x1, 0x80, 0x60, 0xc, 0x3, 0xc0, 0x60, 0xf,
0x0, 0x60, 0x18, 0x3, 0x1, 0xe0, 0x18, 0x3,
0xc0, 0x18, 0x6, 0x0, 0xc0, 0x70, 0x6, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x1, 0x80, 0x60, 0xc, 0x1f, 0x0, 0x60,
0xf, 0x0, 0x60, 0x18, 0x3, 0xf, 0xc0, 0x18,
0x3, 0xc0, 0x19, 0x6, 0x0, 0xc3, 0xb0, 0x6,
0x0, 0xf0, 0x6, 0xe1, 0x80, 0x31, 0xec, 0x1,
0x80, 0x3c, 0x1, 0xfc, 0x60, 0xc, 0xf3, 0x0,
0x60, 0xf, 0x0, 0x7f, 0x98, 0x3, 0x78, 0xc0,
0x18, 0x3, 0xc0, 0x1e, 0xf6, 0x0, 0xdc, 0x30,
0x6, 0x0, 0xf0, 0x7, 0x9f, 0x80, 0x3f, 0xc,
0x1, 0x80, 0x3c, 0x1, 0xc3, 0xe0, 0xf, 0x83,
0x0, 0x60, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x38, 0xf, 0x0, 0xe0,
0x30, 0x6, 0x0, 0xf0, 0xe, 0x1, 0xe0, 0x78,
0xc, 0x1, 0x80, 0x3c, 0x7, 0x80, 0x7c, 0x3c,
0x3, 0x0, 0x60, 0xf, 0x1, 0xe0, 0x1f, 0x8f,
0x0, 0xc0, 0x18, 0x3, 0xc0, 0xf8, 0x6, 0xf7,
0xc0, 0x30, 0x6, 0x0, 0xf0, 0x3e, 0x1, 0x9f,
0xf0, 0xc, 0x1, 0x80, 0x3c, 0x1d, 0x80, 0x63,
0xec, 0x3, 0x0, 0x60, 0xf, 0x7, 0x60, 0x18,
0x73, 0x0, 0xc0, 0x18, 0x3, 0xc3, 0x98, 0x6,
0xc, 0xc0, 0x30, 0x6, 0x0, 0xf1, 0xe6, 0x1,
0x80, 0x30, 0xc, 0x1, 0x80, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3c, 0x60,
0x18, 0x3, 0x0, 0xc0, 0x18, 0x3, 0xce, 0x18,
0x6, 0x0, 0xc0, 0x30, 0x6, 0x0, 0xf7, 0x6,
0x1, 0x80, 0x30, 0xc, 0x1, 0x80, 0x3d, 0xc1,
0x80, 0x60, 0xc, 0x3, 0x0, 0x60, 0xf, 0xe0,
0x60, 0x18, 0x3, 0x0, 0xc0, 0x18, 0x3, 0xf8,
0x18, 0x6, 0x0, 0xc0, 0x30, 0x6, 0x0, 0xfc,
0x6, 0x1, 0x80, 0x30, 0xc, 0x1, 0x80, 0x3f,
0x1, 0x80, 0x60, 0xc, 0x3, 0x0, 0x60, 0xf,
0x80, 0x60, 0x18, 0x3, 0x0, 0xc0, 0x18, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0,
/* U+1F4C9 "📉" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x1, 0x80, 0x60, 0xc, 0x3, 0x0, 0x60,
0xf, 0xc0, 0x60, 0x18, 0x3, 0x0, 0xc0, 0x18,
0x3, 0xf0, 0x18, 0x6, 0x0, 0xc0, 0x30, 0x6,
0x0, 0xfe, 0x6, 0x1, 0x80, 0x30, 0xc, 0x1,
0x80, 0x3f, 0x81, 0x80, 0x60, 0xc, 0x3, 0x0,
0x60, 0xf, 0x70, 0x60, 0x18, 0x3, 0x0, 0xc0,
0x18, 0x3, 0xdc, 0x18, 0x6, 0x0, 0xc0, 0x30,
0x6, 0x0, 0xf3, 0x86, 0x1, 0x80, 0x30, 0xc,
0x1, 0x80, 0x3c, 0xe1, 0x80, 0x60, 0xc, 0x3,
0x0, 0x60, 0xf, 0x1c, 0x60, 0x18, 0x3, 0x0,
0xc0, 0x18, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0xe6, 0x1, 0x80, 0x30,
0xc, 0x1, 0x80, 0x3c, 0x39, 0x80, 0x60, 0x8c,
0x3, 0x0, 0x60, 0xf, 0x7, 0x60, 0x18, 0x73,
0x0, 0xc0, 0x18, 0x3, 0xc1, 0xd8, 0x6, 0x3e,
0xc0, 0x30, 0x6, 0x0, 0xf0, 0x3e, 0x1, 0x9f,
0xf0, 0xc, 0x1, 0x80, 0x3c, 0xf, 0x80, 0x6f,
0x7c, 0x3, 0x0, 0x60, 0xf, 0x1, 0xe0, 0x1f,
0x8f, 0x0, 0xc0, 0x18, 0x3, 0xc0, 0x78, 0x7,
0xc3, 0xc0, 0x30, 0x6, 0x0, 0xf0, 0xe, 0x3,
0xe0, 0x78, 0xc, 0x1, 0x80, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x70,
0xf8, 0x3, 0xc0, 0xc0, 0x18, 0x3, 0xc0, 0x1e,
0x7e, 0x0, 0xf8, 0x30, 0x6, 0x0, 0xf0, 0x7,
0xbf, 0x80, 0x3f, 0xc, 0x1, 0x80, 0x3c, 0x1,
0xff, 0x60, 0xd, 0xc3, 0x0, 0x60, 0xf, 0x0,
0x7f, 0x98, 0x3, 0x38, 0xc0, 0x18, 0x3, 0xc0,
0x1f, 0xc6, 0x0, 0xcf, 0x30, 0x6, 0x0, 0xf0,
0x6, 0xe1, 0x80, 0x31, 0xcc, 0x1, 0x80, 0x3c,
0x1, 0xb0, 0x60, 0xc, 0x3b, 0x0, 0x60, 0xf,
0x0, 0x60, 0x18, 0x3, 0x7, 0xc0, 0x18, 0x3,
0xc0, 0x18, 0x6, 0x0, 0xc1, 0xf0, 0x6, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x1, 0x80, 0x60, 0xc, 0x7, 0x0, 0x60,
0xf, 0x0, 0x60, 0x18, 0x3, 0x1, 0xe0, 0x18,
0x3, 0xc0, 0x18, 0x6, 0x0, 0xc0, 0x3c, 0x6,
0x0, 0xf0, 0x6, 0x1, 0x80, 0x30, 0xf, 0x1,
0x80, 0x3c, 0x1, 0x80, 0x60, 0xc, 0x3, 0xe0,
0x60, 0xf, 0x0, 0x60, 0x18, 0x3, 0x0, 0xfc,
0x18, 0x3, 0xc0, 0x18, 0x6, 0x0, 0xc0, 0x37,
0x86, 0x0, 0xf0, 0x6, 0x1, 0x80, 0x30, 0xc,
0xe1, 0x80, 0x3c, 0x1, 0x80, 0x60, 0xc, 0x3,
0x1c, 0x60, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x18, 0x6, 0x0, 0xc0,
0x30, 0xe6, 0x0, 0xf0, 0x6, 0x1, 0x80, 0x30,
0xc, 0x1d, 0x80, 0x3c, 0x1, 0x80, 0x60, 0xc,
0x3, 0x3, 0xe0, 0xf, 0x0, 0x60, 0x18, 0x3,
0x0, 0xc0, 0xf8, 0x3, 0xc0, 0x18, 0x6, 0x0,
0xc0, 0x30, 0x1e, 0x0, 0xf0, 0x6, 0x1, 0x80,
0x30, 0xc, 0x3, 0x80, 0x3c, 0x1, 0x80, 0x60,
0xc, 0x3, 0x0, 0x70, 0xf, 0x0, 0x60, 0x18,
0x3, 0x0, 0xc0, 0x1e, 0x3, 0xc0, 0x18, 0x6,
0x0, 0xc0, 0x30, 0x7, 0x80, 0xf0, 0x6, 0x1,
0x80, 0x30, 0xc, 0x1, 0xf0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x60,
0x18, 0x3, 0x0, 0xc0, 0x1b, 0xc3, 0xc0, 0x18,
0x6, 0x0, 0xc0, 0x30, 0x6, 0x70, 0xf0, 0x6,
0x1, 0x80, 0x30, 0xc, 0x1, 0x8e, 0x3c, 0x1,
0x80, 0x60, 0xc, 0x3, 0x0, 0x63, 0xcf, 0x0,
0x60, 0x18, 0x3, 0x0, 0xc0, 0x18, 0x7b, 0xc0,
0x18, 0x6, 0x0, 0xc0, 0x30, 0x6, 0xe, 0xf0,
0x6, 0x1, 0x80, 0x30, 0xc, 0x1, 0x81, 0xfc,
0x1, 0x80, 0x60, 0xc, 0x3, 0x0, 0x60, 0x7f,
0x0, 0x60, 0x18, 0x3, 0x0, 0xc0, 0x18, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0,
/* U+1F4CA "📊" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xc0, 0x3c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xf0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xfc, 0x3, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xc0, 0x3c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfc, 0x3, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xf0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xfc, 0x3, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0x0, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x3c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x3, 0xc0,
0x3f, 0xe0, 0x0, 0x0, 0x1, 0xff, 0x0, 0xf0,
0xf, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x3c,
0x3, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0xf,
0x0, 0xff, 0x80, 0x0, 0x0, 0x7, 0xfc, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xc0,
0x3c, 0x3, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xf0,
0xf, 0x0, 0xff, 0x80, 0x0, 0x0, 0x7, 0xfc,
0x3, 0xc0, 0x3f, 0xe0, 0x0, 0x0, 0x1, 0xff,
0x0, 0xf0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x7f,
0xc0, 0x3c, 0x3, 0xfe, 0x0, 0xff, 0x80, 0x1f,
0xf0, 0xf, 0x0, 0xff, 0x80, 0x3f, 0xe0, 0x7,
0xfc, 0x3, 0xc0, 0x3f, 0xe0, 0xf, 0xf8, 0x1,
0xff, 0x0, 0xf0, 0xf, 0xf8, 0x3, 0xfe, 0x0,
0x7f, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x0, 0xff, 0x80, 0x3f, 0xe0,
0x7, 0xfc, 0x3, 0xc0, 0x3f, 0xe0, 0xf, 0xf8,
0x1, 0xff, 0x0, 0xf0, 0xf, 0xf8, 0x3, 0xfe,
0x0, 0x7f, 0xc0, 0x3c, 0x3, 0xfe, 0x0, 0xff,
0x80, 0x1f, 0xf0, 0xf, 0x0, 0xff, 0x80, 0x3f,
0xe0, 0x7, 0xfc, 0x3, 0xc0, 0x3f, 0xe0, 0xf,
0xf8, 0x1, 0xff, 0x0, 0xf0, 0xf, 0xf8, 0x3,
0xfe, 0x0, 0x7f, 0xc0, 0x3c, 0x3, 0xfe, 0x0,
0xff, 0x80, 0x1f, 0xf0, 0xf, 0x0, 0xff, 0x80,
0x3f, 0xe0, 0x7, 0xfc, 0x3, 0xc0, 0x3f, 0xe0,
0xf, 0xf8, 0x1, 0xff, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xfe,
0x0, 0xff, 0x80, 0x1f, 0xf0, 0xf, 0x0, 0xff,
0x80, 0x3f, 0xe0, 0x7, 0xfc, 0x3, 0xc0, 0x3f,
0xe0, 0xf, 0xf8, 0x1, 0xff, 0x0, 0xf0, 0xf,
0xf8, 0x3, 0xfe, 0x0, 0x7f, 0xc0, 0x3c, 0x3,
0xfe, 0x0, 0xff, 0x80, 0x1f, 0xf0, 0xf, 0x0,
0xff, 0x80, 0x3f, 0xe0, 0x7, 0xfc, 0x3, 0xc0,
0x3f, 0xe0, 0xf, 0xf8, 0x1, 0xff, 0x0, 0xf0,
0xf, 0xf8, 0x3, 0xfe, 0x0, 0x7f, 0xc0, 0x3c,
0x3, 0xfe, 0x0, 0xff, 0x80, 0x1f, 0xf0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0,
/* U+1F4CB "📋" */
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x70,
0x0, 0x0, 0x0, 0x0, 0xc, 0x30, 0x0, 0x0,
0x0, 0x0, 0xc, 0x30, 0x0, 0x0, 0x0, 0x0,
0xe, 0x70, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xf8, 0x7,
0xe0, 0x1f, 0xff, 0xff, 0xf8, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x3f,
0xff, 0xff, 0xfc, 0x7, 0xe0, 0x3f, 0xff, 0xff,
0xfc, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x3f,
0xff, 0xff, 0xfc, 0x7, 0xe0, 0x3f, 0xff, 0xff,
0xfc, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x3f,
0xff, 0xff, 0xfc, 0x7, 0xe0, 0x3f, 0xff, 0xff,
0xfc, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x3f, 0xff, 0xff, 0xfc, 0x7, 0xe0, 0x3f,
0xff, 0xff, 0xfc, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x3f, 0xff, 0x0, 0x0, 0x7, 0xe0, 0x3f,
0xff, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
/* U+1F4CC "📌" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x1e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x7, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x73, 0x0, 0x3c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xc0, 0xf,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0xe0, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x0,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x1c, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x0, 0xe, 0x7, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x7, 0x81, 0xc0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xf0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x38,
0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x38, 0xe,
0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x3,
0x80, 0x7, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0,
0xf0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x1d, 0xc0,
0x3c, 0x1, 0xe0, 0x0, 0xf, 0xf8, 0x3c, 0x70,
0xf, 0x0, 0x70, 0x0, 0x1f, 0xff, 0xbc, 0x3c,
0x3, 0xc0, 0x38, 0x0, 0x1e, 0x3, 0xfc, 0xf,
0x0, 0xf8, 0x1c, 0x0, 0x1e, 0x0, 0x3c, 0x3,
0xc0, 0x1f, 0x9e, 0x0, 0xe, 0x0, 0xc, 0x0,
0xf0, 0x7, 0xfe, 0x0, 0x7, 0x0, 0x0, 0x0,
0x3c, 0x0, 0xfe, 0x0, 0x3, 0x80, 0x0, 0x0,
0xf, 0x0, 0xe, 0x0, 0x1, 0xc0, 0x0, 0x0,
0x1, 0xe0, 0xe, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x78, 0xe, 0x0, 0x0, 0x38, 0x0, 0x0,
0x0, 0x3f, 0xe, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x3d, 0xfe, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x3c, 0x3e, 0x0, 0x0, 0x3, 0x80, 0x0,
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0,
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0,
0x0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xc0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x3c,
0xf0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x3c, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x3f, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x3c,
0x3f, 0xc0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x38,
0x3c, 0x70, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x38,
0x3c, 0x1e, 0x0, 0x70, 0x0, 0x0, 0x0, 0x38,
0x3c, 0x7, 0xc0, 0x70, 0x0, 0x0, 0x0, 0x38,
0x3c, 0x0, 0xf8, 0x78, 0x0, 0x0, 0x0, 0x38,
0x3c, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x38,
0x3c, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x38,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+1F4CD "📍" */
0x0, 0xf, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0x80,
0x0, 0x3f, 0xff, 0xe0, 0x0, 0x7f, 0xff, 0xfc,
0x0, 0x7f, 0xff, 0xff, 0x0, 0x7f, 0x9f, 0xff,
0xc0, 0x7f, 0x7, 0xff, 0xf0, 0x7f, 0x87, 0xff,
0xf8, 0x3f, 0xef, 0xff, 0xfe, 0x3f, 0x3f, 0xff,
0xff, 0x9f, 0x1f, 0xff, 0xff, 0xcf, 0x8f, 0xff,
0xff, 0xef, 0x8f, 0xff, 0xff, 0xff, 0xc7, 0xff,
0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xf3, 0xff,
0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xf3, 0xff,
0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xfc, 0x7f,
0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xfc, 0xf,
0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xfe, 0x0,
0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xfe, 0x0,
0x7, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xfc, 0x0,
0x0, 0x1f, 0xf0, 0x0, 0x0, 0xe, 0x38, 0x0,
0x0, 0x7, 0x1c, 0x0, 0x0, 0x3, 0x8e, 0x0,
0x0, 0x1, 0xc7, 0x0, 0x0, 0x0, 0xe3, 0x80,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x38, 0xe0,
0x0, 0x0, 0x1c, 0x70, 0x0, 0x0, 0xe, 0x38,
0x0, 0x0, 0x7, 0x1c, 0x0, 0x0, 0x3, 0x8e,
0x0, 0x0, 0x1, 0xc7, 0x0, 0x0, 0x0, 0xe3,
0x80, 0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x38,
0xe0, 0x0, 0x0, 0x1c, 0x70, 0x0, 0x0, 0xe,
0x38, 0x0, 0x0, 0x7, 0x1c, 0x0, 0x0, 0x3,
0x8e, 0x0, 0x0, 0x1, 0xc7, 0x0, 0x0, 0x0,
0xe3, 0x80, 0x0, 0x0, 0x31, 0x80, 0x0, 0x0,
0x18, 0xc0, 0x0, 0x0, 0xc, 0x60, 0x0, 0x0,
0x7, 0x70, 0x0, 0x0, 0x3, 0xb8, 0x0, 0x0,
0x1, 0xdc, 0x0, 0x0, 0x0, 0xee, 0x0, 0x0,
0x0, 0x36, 0x0, 0x0, 0x0, 0x1b, 0x0, 0x0,
0x0, 0xf, 0x80, 0x0, 0x0, 0x7, 0xc0, 0x0,
/* U+1F4CE "📎" */
0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1e, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x3, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x0, 0xf,
0x0, 0x20, 0x0, 0x0, 0x0, 0xc, 0x3, 0xf0,
0x1e, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x70, 0x3f,
0xf0, 0x3c, 0xf, 0x80, 0x0, 0x0, 0x1, 0x81,
0xe0, 0xe0, 0x78, 0x77, 0x0, 0x0, 0x0, 0x6,
0xf, 0x1, 0xc0, 0xf3, 0x8e, 0x0, 0x0, 0x0,
0x30, 0x38, 0x3, 0x81, 0xfc, 0x1c, 0x0, 0x0,
0x0, 0xc1, 0xc0, 0x7, 0x3, 0xe0, 0x38, 0x0,
0x0, 0x3, 0x7, 0x0, 0xe, 0x7, 0xc0, 0x70,
0x0, 0x0, 0xc, 0x1c, 0x0, 0x1c, 0xf, 0x80,
0xe0, 0x0, 0x0, 0x30, 0x70, 0x0, 0x38, 0x1f,
0x1, 0xc0, 0x0, 0x0, 0xc1, 0xc0, 0x0, 0x70,
0x3e, 0x3, 0x80, 0x0, 0x3, 0x7, 0x80, 0x0,
0xe0, 0x7c, 0x7, 0x0, 0x0, 0xe, 0xf, 0x0,
0x1, 0xc0, 0xf8, 0xe, 0x0, 0x0, 0x18, 0x3c,
0x0, 0x3, 0x81, 0xf0, 0x1c, 0x0, 0x0, 0x60,
0x78, 0x0, 0x7, 0x3, 0xe0, 0x38, 0x0, 0x1,
0xc0, 0xf0, 0x6, 0xe, 0x7, 0xc0, 0x70, 0x0,
0x3, 0x81, 0xe0, 0x3c, 0x3c, 0xf, 0x80, 0xe0,
0x0, 0x6, 0x3, 0xc1, 0xf8, 0x78, 0x1f, 0x1,
0xc0, 0x0, 0x1c, 0x7, 0x8e, 0x70, 0xf0, 0x3e,
0x3, 0x80, 0x0, 0x38, 0xf, 0x70, 0xe1, 0xe0,
0x7c, 0x7, 0x0, 0x0, 0x70, 0x1f, 0xc1, 0xc3,
0xc0, 0xf8, 0xe, 0x0, 0x0, 0xe0, 0x3e, 0x3,
0x87, 0x81, 0xf0, 0x3c, 0x0, 0x1, 0xc0, 0x7c,
0x7, 0xf, 0x3, 0xe0, 0x78, 0x0, 0x3, 0x80,
0xf8, 0xe, 0x1e, 0x7, 0xc0, 0xf0, 0x0, 0x7,
0x1, 0xf0, 0x1c, 0x3c, 0xf, 0x81, 0xe0, 0x0,
0xe, 0x3, 0xe0, 0x38, 0x78, 0x3f, 0x3, 0xc0,
0x0, 0x1c, 0x7, 0xc0, 0x60, 0xf0, 0x7e, 0x7,
0x80, 0x0, 0x38, 0xf, 0x80, 0xc1, 0xe1, 0xfc,
0xf, 0x0, 0x0, 0x70, 0x1f, 0x1, 0x83, 0x87,
0x78, 0x1e, 0x0, 0x0, 0xe0, 0x3e, 0x3, 0xe,
0x1c, 0xf0, 0x38, 0x0, 0x1, 0xc0, 0x7c, 0x6,
0x38, 0x71, 0xe0, 0x70, 0x0, 0x3, 0x80, 0xf0,
0xf, 0xc1, 0xc3, 0xc1, 0xc0, 0x0, 0x7, 0x1,
0xe0, 0x1e, 0xe, 0x7, 0x83, 0x80, 0x0, 0xe,
0x3, 0xc0, 0x0, 0x38, 0xf, 0xe, 0x0, 0x0,
0x1c, 0x7, 0x80, 0x1, 0xc0, 0x1c, 0x38, 0x0,
0x0, 0x38, 0xf, 0x0, 0xf, 0x0, 0x70, 0x70,
0x0, 0x0, 0x70, 0x1f, 0x0, 0x78, 0x0, 0xe1,
0xc0, 0x0, 0x0, 0xe0, 0x3f, 0x7, 0xc0, 0x3,
0x87, 0x0, 0x0, 0x1, 0xc0, 0x7f, 0xfc, 0x0,
0xe, 0x1c, 0x0, 0x0, 0x3, 0x80, 0xff, 0xc0,
0x0, 0x38, 0x70, 0x0, 0x0, 0x7, 0x1, 0xe0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0xe, 0x3,
0x80, 0x0, 0x3, 0x87, 0x0, 0x0, 0x0, 0x1c,
0x7, 0x0, 0x0, 0x1c, 0x1c, 0x0, 0x0, 0x0,
0x38, 0xe, 0x0, 0x0, 0x70, 0xe0, 0x0, 0x0,
0x0, 0x70, 0x1c, 0x0, 0x3, 0xc3, 0x80, 0x0,
0x0, 0x0, 0xe0, 0x38, 0x0, 0xe, 0xe, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x70, 0x0, 0x70, 0x70,
0x0, 0x0, 0x0, 0x3, 0x80, 0xf0, 0x3, 0x81,
0xc0, 0x0, 0x0, 0x0, 0x7, 0x1, 0xf0, 0x7c,
0xe, 0x0, 0x0, 0x0, 0x0, 0xe, 0x1, 0xff,
0xe0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x1,
0xfc, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x38,
0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x7c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf0, 0xf, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0,
/* U+1F4CF "📏" */
0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x8e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x3e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x3b, 0x80, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x38, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x8, 0x38, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x0, 0x1e, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x0, 0x1f, 0x80, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x1c, 0x38, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x1c, 0xe, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0x4, 0xf, 0x80, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0xe, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0xe, 0x38, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x2, 0xe, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x7, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x7, 0xb8,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x7, 0x8e,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x7, 0x83,
0x80, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x1, 0x81,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x1,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x1,
0xce, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0xc3, 0x80, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0,
0x0, 0xee, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0xe3, 0x80, 0x0, 0x0, 0x0, 0x1, 0xc0,
0x0, 0xe0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x60, 0x38, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x33, 0x80, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x30, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x1c, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x70, 0x0, 0x1c, 0x38, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x1c, 0xe, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x4, 0xf, 0x80, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x0, 0xe, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0xe, 0x38, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x2, 0xe, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0x0, 0x3, 0x80, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+1F4D0 "📐" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x78, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x3f, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0x1c, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x6, 0x1e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7f,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x39,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x3c,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xe,
0x7, 0x80, 0x0, 0x0, 0x0, 0x0, 0x38, 0x1,
0x3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0,
0x1, 0xde, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0x0, 0xe3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x0, 0x10, 0x78, 0x0, 0x0, 0x0, 0x0, 0x38,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0xe,
0x0, 0x0, 0xf, 0xe0, 0x0, 0x0, 0x0, 0x3,
0x80, 0x0, 0x7, 0xbc, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x3, 0xc7, 0x80, 0x0, 0x0, 0x0,
0x38, 0x0, 0x1, 0xe0, 0xf0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x0, 0x30, 0x3e, 0x0, 0x0, 0x0,
0x3, 0x80, 0xc, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0xe0, 0x3, 0x80, 0xe, 0x78, 0x0, 0x0,
0x0, 0x38, 0x0, 0xf0, 0x3, 0xf, 0x0, 0x0,
0x0, 0xe, 0x0, 0x3e, 0x0, 0x1, 0xe0, 0x0,
0x0, 0x3, 0x80, 0xf, 0xc0, 0x0, 0xfc, 0x0,
0x0, 0x0, 0xe0, 0x3, 0xf8, 0x0, 0x77, 0x80,
0x0, 0x0, 0x38, 0x0, 0xef, 0x0, 0x38, 0xf0,
0x0, 0x0, 0xe, 0x0, 0x39, 0xe0, 0x1c, 0x1e,
0x0, 0x0, 0x3, 0x80, 0xe, 0x3c, 0x6, 0x7,
0xc0, 0x0, 0x0, 0xe0, 0x3, 0x87, 0x80, 0x3,
0xf8, 0x0, 0x0, 0x38, 0x0, 0xe0, 0xf0, 0x1,
0xcf, 0x0, 0x0, 0xe, 0x0, 0x38, 0x1e, 0x0,
0x61, 0xe0, 0x0, 0x3, 0x80, 0xe, 0x3, 0xc0,
0x0, 0x3c, 0x0, 0x0, 0xe0, 0x3, 0x80, 0x78,
0x0, 0x1f, 0x80, 0x0, 0x38, 0x0, 0xff, 0xff,
0x0, 0xf, 0x70, 0x0, 0xe, 0x0, 0x3f, 0xff,
0xe0, 0x7, 0x8e, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x3, 0x81, 0xc0, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x40, 0x78, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x37, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x18, 0xf0, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x4, 0x1e, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x8e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0,
/* U+1F4D1 "📑" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x1, 0x80, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc0, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x60, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x30, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xf1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xf8, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x1c,
0x70, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe, 0x38,
0x0, 0x0, 0x0, 0x0, 0x1, 0x87, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc3, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x61, 0xc7, 0x3, 0xff, 0xff,
0xff, 0x81, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff,
0xc1, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xe1,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc3, 0x8e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x61, 0xc7, 0x3, 0xff,
0xff, 0xff, 0x80, 0x30, 0xe3, 0x81, 0xff, 0xff,
0xff, 0xc0, 0x18, 0x71, 0xc0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe,
0x7, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xff, 0x3,
0xff, 0xff, 0xff, 0x80, 0x30, 0xe3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x18, 0x71, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xc, 0x38, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x6, 0x1c, 0x70, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xfc, 0xf, 0xff, 0xff, 0xfe, 0x1f, 0xff,
0xfe, 0x7, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff,
0x3, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xc, 0x38, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x6, 0x1c, 0x70, 0x0, 0x0, 0x0,
0x0, 0x3, 0xe, 0x38, 0x0, 0x0, 0x0, 0x0,
0x1, 0x87, 0x1c, 0xf, 0xff, 0xc0, 0x0, 0x0,
0xff, 0xfe, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x7f,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xe, 0x38, 0x0, 0x0, 0x0,
0x0, 0x1, 0x87, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc3, 0x8e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x61, 0xc7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30,
0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x71,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x38, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x1c, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
/* U+1F4D2 "📒" */
0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x3, 0xf8, 0x7, 0x80, 0x0,
0x0, 0x0, 0x1, 0xfe, 0x7, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0x7, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0x7, 0x0, 0x0, 0x0, 0x0, 0x1,
0x9f, 0x7, 0x38, 0x0, 0x0, 0x0, 0x1, 0x87,
0xf, 0xfc, 0x0, 0x0, 0x0, 0x1, 0x87, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x1, 0x87, 0x77, 0x38,
0x0, 0x0, 0x0, 0x1, 0x87, 0xe7, 0x0, 0x0,
0x0, 0x0, 0x1, 0x87, 0xc7, 0x0, 0x0, 0x0,
0x0, 0x1, 0x87, 0xc7, 0x0, 0x0, 0x0, 0x0,
0x1, 0x87, 0xc7, 0x0, 0x0, 0x0, 0x0, 0x1,
0x87, 0xe7, 0x0, 0x0, 0x0, 0x0, 0x1, 0x87,
0x7f, 0x38, 0x0, 0x0, 0x0, 0x1, 0x87, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x1, 0x87, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x1, 0x87, 0x77, 0x38, 0x0,
0x0, 0x0, 0x1, 0x87, 0x67, 0x0, 0x0, 0x0,
0x0, 0x1, 0x87, 0xc7, 0x0, 0x0, 0x0, 0x0,
0x1, 0x87, 0xc7, 0x0, 0x0, 0x0, 0x0, 0x1,
0x87, 0xc7, 0x0, 0x0, 0x0, 0x0, 0x1, 0x87,
0xc7, 0x0, 0x0, 0x0, 0x0, 0x1, 0x87, 0x67,
0x0, 0x0, 0x0, 0x0, 0x1, 0x87, 0x7f, 0x38,
0x0, 0x0, 0x0, 0x1, 0x87, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x1, 0x87, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x1, 0x87, 0x77, 0x38, 0x0, 0x0, 0x0,
0x1, 0x87, 0xe7, 0x0, 0x0, 0x0, 0x0, 0x1,
0x87, 0xc7, 0x0, 0x0, 0x0, 0x0, 0x1, 0x87,
0xc7, 0x0, 0x0, 0x0, 0x0, 0x1, 0x87, 0xc7,
0x0, 0x0, 0x0, 0x0, 0x1, 0x87, 0xe7, 0x0,
0x0, 0x0, 0x0, 0x1, 0x87, 0x7f, 0x38, 0x0,
0x0, 0x0, 0x1, 0x87, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x1, 0x87, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x1, 0x87, 0x77, 0x38, 0x0, 0x0, 0x0, 0x1,
0x87, 0xe7, 0x0, 0x0, 0x0, 0x0, 0x1, 0x87,
0xc7, 0x0, 0x0, 0x0, 0x0, 0x1, 0x87, 0xc7,
0x0, 0x0, 0x0, 0x0, 0x1, 0x87, 0xc7, 0x0,
0x0, 0x0, 0x0, 0x1, 0x87, 0xe7, 0x0, 0x0,
0x0, 0x0, 0x1, 0x87, 0x7f, 0x38, 0x0, 0x0,
0x0, 0x1, 0x87, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x1, 0x87, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1,
0x87, 0x77, 0x38, 0x0, 0x0, 0x0, 0x1, 0x87,
0x67, 0x0, 0x0, 0x0, 0x0, 0x1, 0x87, 0xc7,
0x0, 0x0, 0x0, 0x0, 0x1, 0x87, 0xc7, 0x0,
0x0, 0x0, 0x0, 0x1, 0x87, 0xc7, 0x0, 0x0,
0x0, 0x0, 0x1, 0x87, 0xc7, 0x0, 0x0, 0x0,
0x0, 0x1, 0x87, 0xe7, 0x80, 0x0, 0x0, 0x0,
0x3, 0x87, 0x73, 0xc0, 0x0, 0x0, 0x0, 0x7,
0x87, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xc7, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xe7, 0x0, 0xc0,
0x0, 0x0, 0x0, 0x0, 0xf7, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8,
/* U+1F4D3 "📓" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x3f, 0xf9, 0x0, 0x30,
0x40, 0x83, 0xf8, 0xff, 0xdc, 0x80, 0x11, 0x0,
0x17, 0xfb, 0xff, 0x22, 0x44, 0x24, 0x1f, 0x1f,
0xff, 0xfe, 0xc1, 0x61, 0x90, 0xc, 0x77, 0xff,
0xe1, 0x1, 0x0, 0x6e, 0x31, 0xcf, 0xff, 0x80,
0x87, 0x0, 0x18, 0xcf, 0x1f, 0xfe, 0x82, 0x3c,
0xc0, 0x47, 0x3c, 0x7f, 0xfe, 0xf2, 0xc6, 0x61,
0x10, 0x71, 0xff, 0xe3, 0x13, 0x90, 0xcb, 0x81,
0xc7, 0xff, 0x80, 0x7f, 0xff, 0xf4, 0x1f, 0x1f,
0xfe, 0x43, 0xff, 0xff, 0xfc, 0xfc, 0x7f, 0xf9,
0x8f, 0xff, 0xff, 0x93, 0x71, 0xff, 0xf6, 0x30,
0x0, 0x7, 0xd, 0xc7, 0xff, 0x8b, 0xc0, 0x0,
0x1c, 0x37, 0x1f, 0xfe, 0x43, 0x0, 0x0, 0x7c,
0xfc, 0x7f, 0xf9, 0x8c, 0x0, 0x1, 0xe0, 0xf1,
0xff, 0xe6, 0x30, 0x0, 0x7, 0x1, 0xc7, 0xff,
0x93, 0xc0, 0x0, 0x1c, 0xcf, 0x1f, 0xff, 0x7,
0x0, 0x0, 0x77, 0x3c, 0x7f, 0xf8, 0xcc, 0x0,
0x1, 0xd0, 0xf1, 0xff, 0xe3, 0x30, 0x0, 0x6,
0xcf, 0xc7, 0xff, 0x81, 0x7f, 0xff, 0xf8, 0x87,
0x1f, 0xfe, 0xcc, 0xff, 0xff, 0xd6, 0x1c, 0x7f,
0xfe, 0x71, 0x2, 0x6, 0x60, 0x71, 0xff, 0xf8,
0x82, 0x0, 0x99, 0x8d, 0xc7, 0xff, 0xc0, 0xc,
0x72, 0x7, 0x1f, 0x1f, 0xfe, 0x3, 0x11, 0xc0,
0x8e, 0x7c, 0x7f, 0xf8, 0x7e, 0x7, 0xe, 0x33,
0xf1, 0xff, 0xe0, 0x1a, 0x10, 0x70, 0x1, 0xc7,
0xff, 0xb0, 0x4, 0x0, 0x71, 0x47, 0x1f, 0xfe,
0xe2, 0x90, 0x60, 0x7, 0x3c, 0x7f, 0xf8, 0x1e,
0x71, 0x0, 0xc, 0xf1, 0xff, 0xe0, 0x9, 0x17,
0xa7, 0x39, 0xc7, 0xff, 0xc4, 0x1, 0xcd, 0x80,
0x87, 0x1f, 0xff, 0x90, 0x1, 0x26, 0x2, 0x5c,
0x7f, 0xfc, 0x4c, 0x44, 0x9, 0x9, 0xf1, 0xff,
0xe7, 0x91, 0x90, 0xe4, 0x1f, 0xc7, 0xff, 0x90,
0xc0, 0x12, 0xcc, 0x77, 0x1f, 0xfe, 0xc0, 0x65,
0xc0, 0x18, 0x5c, 0x7f, 0xf8, 0xe0, 0x8f, 0x96,
0x0, 0x71, 0xff, 0xe1, 0x28, 0x0, 0xc0, 0x3,
0xc7, 0xff, 0x81, 0xe1, 0x83, 0x7, 0xcf, 0x1f,
0xff, 0x20, 0xf3, 0x84, 0x83, 0x1c, 0x7f, 0xfc,
0x86, 0xc0, 0xc3, 0xc, 0x71, 0xff, 0xf3, 0x83,
0x3, 0xc, 0xe1, 0xc7, 0xff, 0xa0, 0xc, 0xe0,
0x10, 0x7, 0x1f, 0xfe, 0x87, 0x80, 0x80, 0x0,
0x1c, 0x7f, 0xfa, 0xe, 0x3, 0x20, 0x0, 0xf1,
0xff, 0xe5, 0x81, 0xbb, 0xc4, 0xe1, 0xc7, 0xff,
0x86, 0x12, 0x27, 0x92, 0xc7, 0x1f, 0xfe, 0x11,
0x60, 0x0, 0x3, 0x1c, 0x7f, 0xfe, 0x4, 0xc6,
0x1, 0xc0, 0xf1, 0xff, 0xe0, 0x0, 0x1c, 0xe7,
0x87, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3d, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
/* U+1F4D4 "📔" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x3f, 0xc0, 0x0, 0x0,
0x0, 0x3, 0xf8, 0xff, 0x0, 0x0, 0x0, 0x0,
0x7, 0xfb, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1, 0x8f, 0xff, 0x0,
0x0, 0x0, 0x0, 0x6, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x18, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x61, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1,
0x87, 0xff, 0x0, 0x0, 0x78, 0x0, 0x6, 0x1f,
0xfc, 0x0, 0x7, 0xf8, 0x0, 0x18, 0x7f, 0xf0,
0x0, 0x7f, 0xf8, 0x0, 0x61, 0xff, 0xc0, 0x7f,
0xe1, 0xff, 0x81, 0x87, 0xff, 0x1, 0xff, 0x3,
0xfe, 0x6, 0x1f, 0xfc, 0x7, 0xf0, 0x3, 0xf8,
0x18, 0x7f, 0xf0, 0x1c, 0x0, 0x0, 0xe0, 0x61,
0xff, 0xc0, 0x70, 0x0, 0x3, 0x81, 0x87, 0xff,
0x1, 0xc0, 0x0, 0xe, 0x6, 0x1f, 0xfc, 0x7,
0x0, 0x0, 0x38, 0x18, 0x7f, 0xf0, 0x1c, 0x0,
0x0, 0xe0, 0x61, 0xff, 0xc0, 0x7e, 0x0, 0x1f,
0x81, 0x87, 0xff, 0x1, 0xfe, 0x1, 0xfe, 0x6,
0x1f, 0xfc, 0x7, 0xfe, 0x1f, 0xf8, 0x18, 0x7f,
0xf0, 0x0, 0x7f, 0xf8, 0x0, 0x61, 0xff, 0xc0,
0x0, 0x7f, 0x80, 0x1, 0x87, 0xff, 0x0, 0x0,
0x78, 0x0, 0x6, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x18, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x61, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0x87,
0xff, 0x0, 0x0, 0x0, 0x0, 0x6, 0x1f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x18, 0x7f, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x61, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x1, 0x87, 0xff, 0x0, 0x0, 0x0, 0x0,
0x6, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x18,
0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x61, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1, 0x87, 0xff, 0x0,
0x0, 0x0, 0x0, 0x6, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x18, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x61, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1,
0x87, 0xff, 0x0, 0x0, 0x0, 0x0, 0x6, 0x1f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x18, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x61, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x1, 0x87, 0xff, 0x0, 0x0, 0x0,
0x0, 0x6, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x18, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x61,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0x87, 0xff,
0x0, 0x0, 0x0, 0x0, 0x6, 0x1f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x18, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x7f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
/* U+1F4D5 "📕" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x3f, 0xc0, 0x70, 0xe,
0x3, 0x83, 0xf8, 0xff, 0x1, 0xc0, 0x38, 0xe,
0x7, 0xfb, 0xfc, 0x7, 0x0, 0xe0, 0x38, 0x1f,
0xff, 0xf0, 0x1c, 0x3, 0x80, 0xe0, 0x6f, 0xff,
0xc0, 0x70, 0xe, 0x3, 0x81, 0x8f, 0xff, 0x1,
0xc0, 0x38, 0xe, 0x6, 0x1f, 0xfc, 0x7, 0x0,
0xe0, 0x38, 0x18, 0x7f, 0xf0, 0x1c, 0x3, 0x80,
0xe0, 0x61, 0xff, 0xc0, 0x70, 0xe, 0x3, 0x81,
0x87, 0xff, 0x1, 0xc0, 0x38, 0xe, 0x6, 0x1f,
0xfc, 0x7, 0x0, 0xe0, 0x38, 0x18, 0x7f, 0xf0,
0x1c, 0x3, 0x80, 0xe0, 0x61, 0xff, 0xc0, 0x70,
0xe, 0x3, 0x81, 0x87, 0xff, 0x1, 0xc0, 0x38,
0xe, 0x6, 0x1f, 0xfc, 0x7, 0x0, 0xe0, 0x38,
0x18, 0x7f, 0xf0, 0x1c, 0x3, 0x80, 0xe0, 0x61,
0xff, 0xc0, 0x70, 0xe, 0x3, 0x81, 0x87, 0xff,
0x1, 0xc0, 0x38, 0xe, 0x6, 0x1f, 0xfc, 0x7,
0x0, 0xe0, 0x38, 0x18, 0x7f, 0xf0, 0x1c, 0x3,
0x80, 0xe0, 0x61, 0xff, 0xc0, 0x70, 0xe, 0x3,
0x81, 0x87, 0xff, 0x1, 0xc0, 0x38, 0xe, 0x6,
0x1f, 0xfc, 0x7, 0x0, 0xe0, 0x38, 0x18, 0x7f,
0xf0, 0x1c, 0x3, 0x80, 0xe0, 0x61, 0xff, 0xc0,
0x70, 0xe, 0x3, 0x81, 0x87, 0xff, 0x1, 0xc0,
0x38, 0xe, 0x6, 0x1f, 0xfc, 0x7, 0x0, 0xe0,
0x38, 0x18, 0x7f, 0xf0, 0x1c, 0x3, 0x80, 0xe0,
0x61, 0xff, 0xc0, 0x70, 0xe, 0x3, 0x81, 0x87,
0xff, 0x1, 0xc0, 0x38, 0xe, 0x6, 0x1f, 0xfc,
0x7, 0x0, 0xe0, 0x38, 0x18, 0x7f, 0xf0, 0x1c,
0x3, 0x80, 0xe0, 0x61, 0xff, 0xc0, 0x70, 0xe,
0x3, 0x81, 0x87, 0xff, 0x1, 0xc0, 0x38, 0xe,
0x6, 0x1f, 0xfc, 0x7, 0x0, 0xe0, 0x38, 0x18,
0x7f, 0xf0, 0x1c, 0x3, 0x80, 0xe0, 0x61, 0xff,
0xc0, 0x70, 0xe, 0x3, 0x81, 0x87, 0xff, 0x1,
0xc0, 0x38, 0xe, 0x6, 0x1f, 0xfc, 0x7, 0x0,
0xe0, 0x38, 0x18, 0x7f, 0xf0, 0x1c, 0x3, 0x80,
0xe0, 0x61, 0xff, 0xc0, 0x70, 0xe, 0x3, 0x81,
0x87, 0xff, 0x1, 0xc0, 0x38, 0xe, 0x6, 0x1f,
0xfc, 0x7, 0x0, 0xe0, 0x38, 0x18, 0x7f, 0xf0,
0x1c, 0x3, 0x80, 0xe0, 0x61, 0xff, 0xc0, 0x70,
0xe, 0x3, 0x81, 0x87, 0xff, 0x1, 0xc0, 0x38,
0xe, 0x6, 0x1f, 0xfc, 0x7, 0x0, 0xe0, 0x38,
0x18, 0x7f, 0xf0, 0x1c, 0x3, 0x80, 0xe0, 0x61,
0xff, 0xc0, 0x70, 0xe, 0x3, 0x81, 0x87, 0xff,
0x1, 0xc0, 0x38, 0xe, 0x6, 0x1f, 0xfc, 0x7,
0x0, 0xe0, 0x38, 0x18, 0x7f, 0xf0, 0x1c, 0x3,
0x80, 0xe0, 0xe1, 0xff, 0xc0, 0x70, 0xe, 0x3,
0x87, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x7f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
/* U+1F4D6 "📖" */
0x0, 0x0, 0x0, 0xff, 0xc0, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xfc, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x7, 0xf8,
0x7, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x78, 0x0, 0x7, 0xff, 0xc0, 0x3, 0xfc, 0x0,
0x0, 0xc, 0x0, 0x0, 0xf, 0xf8, 0x1, 0xf0,
0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x1e, 0xf,
0xf8, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xfe, 0x0, 0x1, 0xfc, 0x30, 0xfe, 0x0,
0x0, 0xff, 0xdd, 0x80, 0xfe, 0x7f, 0xc, 0x3f,
0x9f, 0xc0, 0x36, 0xf7, 0x63, 0xff, 0x80, 0x3,
0x0, 0x7, 0xff, 0xd, 0xbd, 0xd8, 0xf8, 0x0,
0x0, 0xc0, 0x0, 0x7, 0xc3, 0x6f, 0x76, 0x0,
0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0xdb, 0xdd,
0x80, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x36,
0xf7, 0x60, 0x0, 0x63, 0xc3, 0xf, 0x18, 0x0,
0xd, 0xbd, 0xd8, 0x9, 0xf8, 0xf0, 0xc3, 0xc7,
0xe4, 0x3, 0x6f, 0x76, 0x3e, 0x7c, 0x0, 0x30,
0x0, 0xf9, 0xf0, 0xdb, 0xdd, 0x8f, 0x80, 0x0,
0xc, 0x0, 0x0, 0x7c, 0x36, 0xf7, 0x63, 0x0,
0x0, 0x3, 0x0, 0x0, 0x3, 0xd, 0xbd, 0xd8,
0x0, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x3, 0x6f,
0x76, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0,
0xdb, 0xdd, 0x80, 0x0, 0xf3, 0xc, 0x33, 0xc0,
0x0, 0x36, 0xf7, 0x60, 0x7f, 0x3c, 0xc3, 0xc,
0xf3, 0xf8, 0xd, 0xbd, 0xd8, 0xff, 0xc0, 0x0,
0xc0, 0x0, 0xff, 0xc3, 0x6f, 0x76, 0x3e, 0x0,
0x0, 0x30, 0x0, 0x1, 0xf0, 0xdb, 0xdd, 0x80,
0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x36, 0xf7,
0x60, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0xd,
0xbd, 0xd8, 0x0, 0x7, 0xf0, 0xc3, 0xf8, 0x0,
0x3, 0x6f, 0x76, 0x3, 0x39, 0xfc, 0x30, 0xfe,
0x73, 0x0, 0xdb, 0xdd, 0x8f, 0xce, 0x0, 0xc,
0x0, 0x1c, 0xfc, 0x36, 0xf7, 0x63, 0xe0, 0x0,
0x3, 0x0, 0x0, 0x3f, 0xd, 0xbd, 0xd8, 0x0,
0x0, 0x0, 0xc0, 0x0, 0x0, 0x3, 0x6f, 0x76,
0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0xdb,
0xdd, 0x80, 0x1, 0x8f, 0xc, 0x3c, 0x60, 0x0,
0x36, 0xf7, 0x60, 0xf, 0xe3, 0xc3, 0xf, 0x1f,
0xc0, 0xd, 0xbd, 0xd8, 0xf3, 0xf0, 0x0, 0xc0,
0x3, 0xf3, 0xc3, 0x6f, 0x76, 0x3c, 0x0, 0x0,
0x30, 0x0, 0x0, 0xf0, 0xdb, 0xdd, 0x88, 0x0,
0x0, 0xc, 0x0, 0x0, 0x4, 0x36, 0xf7, 0x60,
0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0xd, 0xbd,
0xd8, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x3,
0x6f, 0x76, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0,
0x0, 0xdb, 0xdd, 0x80, 0x0, 0xff, 0xc, 0x3f,
0xe0, 0x0, 0x36, 0xf7, 0x60, 0x7, 0xff, 0xfb,
0x7f, 0xff, 0xc0, 0xd, 0xbd, 0xd8, 0x3f, 0xf0,
0xf, 0xfe, 0x3, 0xff, 0x3, 0x6f, 0x77, 0xff,
0xc0, 0x0, 0xfc, 0x0, 0x7, 0xff, 0xdb, 0xdd,
0xfe, 0x0, 0x0, 0xe, 0x0, 0x0, 0xf, 0xf6,
0xf7, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0,
0x1, 0xbd, 0xc0, 0x0, 0x1, 0xf8, 0x7, 0xf0,
0x0, 0x0, 0x6f, 0x70, 0x0, 0xf, 0xff, 0x83,
0xff, 0xe0, 0x0, 0x1b, 0xdc, 0x3, 0xff, 0xe0,
0x71, 0xc1, 0xff, 0xf8, 0x6, 0xf7, 0xff, 0xff,
0x80, 0xc, 0xc0, 0x7, 0xff, 0xff, 0xbd, 0xff,
0xfc, 0x0, 0x3, 0xb0, 0x0, 0xf, 0xff, 0xef,
0x0, 0x0, 0x7, 0xfe, 0x7d, 0xff, 0x80, 0x0,
0x3, 0xc0, 0x1f, 0xff, 0xff, 0xde, 0xff, 0xff,
0xfe, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x38, 0x70,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7,
0xf8, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xfc, 0x0, 0x0, 0x0, 0xf,
/* U+1F4D7 "📗" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x3f, 0xe0, 0x78, 0x0,
0xe0, 0x3, 0xf8, 0xff, 0x80, 0xf0, 0x1, 0xc0,
0x7, 0xfb, 0xfe, 0x1, 0xe0, 0x3, 0x80, 0x1f,
0xff, 0xf8, 0x3, 0xc0, 0x7, 0x0, 0x6f, 0xff,
0xe0, 0x7, 0x80, 0x1e, 0x1, 0x87, 0xff, 0x80,
0xf, 0x0, 0x3c, 0x6, 0x1f, 0xfe, 0x0, 0x1e,
0x0, 0x78, 0x18, 0x7f, 0xfc, 0x0, 0x38, 0x0,
0xf0, 0x61, 0xff, 0xf8, 0x0, 0x70, 0x1, 0xe1,
0x87, 0xff, 0xf0, 0x0, 0xe0, 0x3, 0xc6, 0x1f,
0xfe, 0xe0, 0x1, 0xc0, 0x7, 0x18, 0x7f, 0xf9,
0xc0, 0x3, 0x80, 0xe, 0x61, 0xff, 0xe3, 0x80,
0x7, 0x0, 0x1d, 0x87, 0xff, 0x87, 0x0, 0xe,
0x0, 0x3e, 0x1f, 0xfe, 0xe, 0x0, 0x1c, 0x0,
0x78, 0x7f, 0xf8, 0x1c, 0x0, 0x38, 0x0, 0xe1,
0xff, 0xe0, 0x38, 0x0, 0x70, 0x1, 0x87, 0xff,
0x80, 0x70, 0x0, 0xe0, 0x6, 0x1f, 0xfe, 0x0,
0xe0, 0x1, 0xc0, 0x18, 0x7f, 0xf8, 0x1, 0xc0,
0x7, 0x80, 0x61, 0xff, 0xe0, 0x3, 0x80, 0xf,
0x1, 0x87, 0xff, 0xc0, 0x7, 0x0, 0x1e, 0x6,
0x1f, 0xff, 0x80, 0xe, 0x0, 0x3c, 0x18, 0x7f,
0xff, 0x0, 0x1c, 0x0, 0x78, 0x61, 0xff, 0xfe,
0x0, 0x38, 0x0, 0xf1, 0x87, 0xff, 0xbc, 0x0,
0x70, 0x1, 0xe6, 0x1f, 0xfe, 0x78, 0x0, 0xe0,
0x3, 0xd8, 0x7f, 0xf8, 0xf0, 0x1, 0xc0, 0x7,
0xe1, 0xff, 0xe1, 0xe0, 0x3, 0x80, 0xf, 0x87,
0xff, 0x83, 0xc0, 0x7, 0x0, 0x1e, 0x1f, 0xfe,
0x7, 0x80, 0xe, 0x0, 0x38, 0x7f, 0xf8, 0xf,
0x0, 0x1c, 0x0, 0x61, 0xff, 0xe0, 0x1e, 0x0,
0x78, 0x1, 0x87, 0xff, 0x80, 0x3c, 0x0, 0xf0,
0x6, 0x1f, 0xfe, 0x0, 0x78, 0x1, 0xe0, 0x18,
0x7f, 0xf8, 0x0, 0xf0, 0x3, 0xc0, 0x61, 0xff,
0xf0, 0x1, 0xe0, 0x7, 0x81, 0x87, 0xff, 0xe0,
0x3, 0xc0, 0xf, 0x6, 0x1f, 0xff, 0xc0, 0x7,
0x80, 0x1e, 0x18, 0x7f, 0xfb, 0x80, 0xf, 0x0,
0x3c, 0x61, 0xff, 0xe7, 0x0, 0x1e, 0x0, 0x79,
0x87, 0xff, 0x8e, 0x0, 0x3c, 0x0, 0xf6, 0x1f,
0xfe, 0x1c, 0x0, 0x78, 0x1, 0xf8, 0x7f, 0xf8,
0x38, 0x0, 0xf0, 0x3, 0xe1, 0xff, 0xe0, 0x70,
0x1, 0xe0, 0x7, 0x87, 0xff, 0x80, 0xe0, 0x3,
0xc0, 0xe, 0x1f, 0xfe, 0x1, 0xc0, 0x7, 0x80,
0x18, 0x7f, 0xf8, 0x3, 0x80, 0xf, 0x0, 0x61,
0xff, 0xe0, 0x7, 0x0, 0x1e, 0x1, 0x87, 0xff,
0x80, 0xe, 0x0, 0x3c, 0x6, 0x1f, 0xfe, 0x0,
0x1c, 0x0, 0x78, 0x18, 0x7f, 0xf8, 0x0, 0x38,
0x0, 0xf0, 0xe1, 0xff, 0xe0, 0x0, 0x70, 0x1,
0xe7, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x7f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
/* U+1F4D8 "📘" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x3f, 0xe0, 0x0, 0x0,
0x0, 0x3, 0xf8, 0xff, 0x80, 0x0, 0x0, 0x0,
0x7, 0xfb, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x1, 0x8f, 0xff, 0x80,
0x0, 0x0, 0x0, 0x6, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x18, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x18, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x61, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x1, 0x87, 0xff, 0x80, 0x0, 0x0,
0x0, 0x6, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x18, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x61,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x61, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x1, 0x87, 0xff, 0x80, 0x0, 0x0, 0x0, 0x6,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x18, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x61, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x1, 0x87, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1, 0x87,
0xff, 0x80, 0x0, 0x0, 0x0, 0x6, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x18, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x61, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x1, 0x87, 0xff, 0x80, 0x0, 0x0, 0x0,
0x6, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x80,
0x0, 0x0, 0x0, 0x6, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x18, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x61, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1,
0x87, 0xff, 0x80, 0x0, 0x0, 0x0, 0x6, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x18, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x18, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x61,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x1, 0x87, 0xff,
0x80, 0x0, 0x0, 0x0, 0x6, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x18, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x7, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x7f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
/* U+1F4D9 "📙" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x3f, 0xe0, 0x70, 0xe,
0xe3, 0x83, 0xf8, 0xff, 0x81, 0xe0, 0x39, 0xce,
0x7, 0xfb, 0xfe, 0x7, 0xc0, 0xe3, 0xb8, 0x1f,
0xff, 0xf8, 0x1f, 0x83, 0x87, 0xe0, 0x6f, 0xff,
0xe0, 0x77, 0xe, 0xf, 0x81, 0x87, 0xff, 0x81,
0xce, 0x38, 0x1e, 0x6, 0x1f, 0xfe, 0x7, 0x1c,
0xe0, 0x38, 0x18, 0x7f, 0xfc, 0x1c, 0x3b, 0x80,
0xf0, 0x61, 0xff, 0xf8, 0x70, 0x7e, 0x3, 0xe1,
0x87, 0xff, 0xf1, 0xc0, 0xf8, 0xf, 0xc6, 0x1f,
0xfe, 0xe7, 0x3, 0xe0, 0x3f, 0x98, 0x7f, 0xf9,
0xdc, 0x7, 0x80, 0xee, 0x61, 0xff, 0xe3, 0xf0,
0xf, 0x3, 0x9d, 0x87, 0xff, 0x87, 0xc0, 0x3e,
0xe, 0x3e, 0x1f, 0xfe, 0xf, 0x0, 0xfc, 0x38,
0x78, 0x7f, 0xf8, 0x1c, 0x3, 0xf8, 0xe0, 0xe1,
0xff, 0xe0, 0x78, 0xe, 0xf3, 0x81, 0x87, 0xff,
0x81, 0xf0, 0x39, 0xee, 0x6, 0x1f, 0xfe, 0x7,
0xe0, 0xe3, 0xf8, 0x18, 0x7f, 0xf8, 0x1d, 0xc3,
0x87, 0xe0, 0x61, 0xff, 0xe0, 0x73, 0x8e, 0xf,
0x81, 0x87, 0xff, 0xc1, 0xc7, 0x38, 0x1e, 0x6,
0x1f, 0xff, 0x87, 0xe, 0xe0, 0x3c, 0x18, 0x7f,
0xff, 0x1c, 0x1f, 0x80, 0xf8, 0x61, 0xff, 0xfe,
0x70, 0x3e, 0x3, 0xf1, 0x87, 0xff, 0xbd, 0xc0,
0x78, 0xf, 0xe6, 0x1f, 0xfe, 0x7f, 0x0, 0xe0,
0x3b, 0xd8, 0x7f, 0xf8, 0xfc, 0x3, 0xc0, 0xe7,
0xe1, 0xff, 0xe1, 0xf0, 0xf, 0x83, 0x8f, 0x87,
0xff, 0x83, 0xc0, 0x3f, 0xe, 0x1e, 0x1f, 0xfe,
0x7, 0x80, 0xee, 0x38, 0x38, 0x7f, 0xf8, 0x1f,
0x3, 0x9c, 0xe0, 0x61, 0xff, 0xe0, 0x7e, 0xe,
0x7b, 0x81, 0x87, 0xff, 0x81, 0xfc, 0x38, 0xfe,
0x6, 0x1f, 0xfe, 0x7, 0x78, 0xe1, 0xf8, 0x18,
0x7f, 0xf8, 0x1c, 0xf3, 0x83, 0xe0, 0x61, 0xff,
0xf0, 0x71, 0xee, 0x7, 0x81, 0x87, 0xff, 0xe1,
0xc3, 0xf8, 0xf, 0x6, 0x1f, 0xff, 0xc7, 0x7,
0xe0, 0x3e, 0x18, 0x7f, 0xfb, 0x9c, 0xf, 0x80,
0xfc, 0x61, 0xff, 0xe7, 0x70, 0x1e, 0x3, 0xf9,
0x87, 0xff, 0x8f, 0xc0, 0x3c, 0xe, 0xf6, 0x1f,
0xfe, 0x1f, 0x0, 0xf8, 0x39, 0xf8, 0x7f, 0xf8,
0x3c, 0x3, 0xf0, 0xe3, 0xe1, 0xff, 0xe0, 0x78,
0xf, 0xe3, 0x87, 0x87, 0xff, 0x81, 0xf0, 0x39,
0xce, 0xe, 0x1f, 0xfe, 0x7, 0xe0, 0xe3, 0xb8,
0x18, 0x7f, 0xf8, 0x1f, 0xc3, 0x87, 0xe0, 0x61,
0xff, 0xe0, 0x77, 0x8e, 0xf, 0x81, 0x87, 0xff,
0x81, 0xcf, 0x38, 0x1e, 0x6, 0x1f, 0xfe, 0x7,
0x1e, 0xe0, 0x38, 0x18, 0x7f, 0xf8, 0x1c, 0x3f,
0x80, 0xf0, 0xe1, 0xff, 0xe0, 0x70, 0x7e, 0x3,
0xe7, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x7f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
/* U+1F4DA "📚" */
0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf3, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf0, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf0, 0x3, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x7, 0xff, 0x0,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x7, 0xff,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0,
0xf, 0xfe, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x1b, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x6, 0x3e, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x1, 0x83, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xc0, 0xe0, 0x3c, 0x0,
0x0, 0x0, 0x0, 0xf, 0xf8, 0xf8, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x1, 0xff, 0x3c, 0x0, 0x7c,
0x0, 0x0, 0x0, 0x1, 0xf0, 0xe7, 0x80, 0x7,
0xc0, 0x0, 0x0, 0x1, 0xf0, 0x18, 0x78, 0x0,
0x7c, 0x0, 0x0, 0x1, 0xf0, 0x6, 0xf, 0x80,
0x7, 0x80, 0x0, 0x1, 0xf0, 0x1, 0x80, 0xf8,
0x0, 0x78, 0x0, 0x1, 0xf0, 0x0, 0xe0, 0x1f,
0x80, 0x7, 0x80, 0x3, 0xf0, 0x0, 0x70, 0x7,
0xf0, 0x0, 0x78, 0x3, 0xf0, 0x0, 0x38, 0x1,
0xff, 0x0, 0x7, 0x83, 0xf0, 0x0, 0x3c, 0x0,
0x3f, 0xf0, 0x0, 0xfb, 0xf0, 0x0, 0x3c, 0x0,
0xf, 0xff, 0x0, 0xf, 0xf0, 0x0, 0x3e, 0x0,
0x7, 0xff, 0xf0, 0x0, 0xe0, 0x0, 0x3d, 0xc0,
0x7, 0xff, 0xfe, 0x0, 0x18, 0x0, 0x3c, 0x38,
0x7, 0xcf, 0xfd, 0xe0, 0x6, 0x0, 0x3c, 0x7,
0x7, 0xc1, 0xff, 0x1e, 0x1, 0x80, 0x3c, 0x0,
0xe1, 0xc0, 0x3f, 0xe3, 0xe0, 0x60, 0x7c, 0x7,
0xf8, 0x7c, 0xf, 0xf8, 0x3e, 0x18, 0x7c, 0x3f,
0xf8, 0x7, 0xc1, 0xff, 0x3, 0xe6, 0x7c, 0xff,
0xdc, 0x1, 0xfc, 0x3f, 0xe0, 0x3f, 0xff, 0xfe,
0x7, 0x80, 0x37, 0x8f, 0xf8, 0x3, 0xff, 0xf0,
0x1, 0xe0, 0xc, 0x79, 0xff, 0x1, 0xff, 0x80,
0x0, 0x7c, 0x3, 0xf, 0xbf, 0xef, 0xfe, 0x0,
0x0, 0xf, 0x81, 0xc0, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x7, 0xf1, 0xf0, 0xf, 0xff, 0x80, 0x0,
0x0, 0x3f, 0xfe, 0x78, 0x0, 0xfe, 0x0, 0x0,
0x0, 0xff, 0xe1, 0x9f, 0x0, 0xf, 0x0, 0x0,
0x7, 0xff, 0xe0, 0x31, 0xf0, 0x1, 0xc0, 0x0,
0x1f, 0xf9, 0xe0, 0xc, 0x1f, 0x0, 0x30, 0x0,
0xff, 0xc3, 0xe0, 0x3, 0x1, 0xe0, 0xe, 0x3,
0xfe, 0x3, 0xe0, 0x1, 0x80, 0x1e, 0x1, 0xff,
0xf8, 0x3, 0xe0, 0x0, 0xe0, 0x3, 0xe0, 0x1f,
0xf0, 0x3, 0xe0, 0x0, 0x70, 0x0, 0x3e, 0x0,
0x1f, 0x3, 0xe0, 0x0, 0x78, 0x0, 0x3, 0xe0,
0x1, 0xf3, 0xe0, 0x0, 0x7c, 0x0, 0x0, 0x3e,
0x0, 0x1f, 0xe0, 0x0, 0x7c, 0x0, 0x0, 0x3,
0xc0, 0x1, 0xe0, 0x0, 0x7c, 0x0, 0x0, 0x0,
0x3c, 0x0, 0x30, 0x0, 0x78, 0x0, 0x0, 0x0,
0x7, 0xc0, 0xc, 0x0, 0x78, 0x0, 0x0, 0x0,
0x0, 0x7c, 0x3, 0x0, 0x78, 0x0, 0x0, 0x0,
0x0, 0x7, 0xc0, 0xc0, 0x78, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7c, 0x30, 0x78, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x9c, 0x78, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfe, 0x78, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x8, 0x0, 0x0, 0x0,
0x0,
/* U+1F4DB "📛" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0x0, 0x1, 0x80, 0x0, 0x60, 0x0,
0x0, 0xe, 0x0, 0x1, 0x80, 0x0, 0x70, 0x0,
0x0, 0x1f, 0x0, 0x3, 0xc0, 0x0, 0xf8, 0x0,
0x0, 0x3f, 0x80, 0x3, 0xc0, 0x1, 0xfc, 0x0,
0x0, 0x3f, 0x80, 0x7, 0xe0, 0x1, 0xfc, 0x0,
0x0, 0x7f, 0xc0, 0xf, 0xf0, 0x3, 0xfe, 0x0,
0x0, 0xff, 0xc0, 0xf, 0xf0, 0x3, 0xff, 0x0,
0x0, 0xff, 0xe0, 0x1f, 0xf8, 0x7, 0xff, 0x0,
0x1, 0xff, 0xf0, 0x1f, 0xf8, 0xf, 0xff, 0x80,
0x3, 0xff, 0xf0, 0x3f, 0xfc, 0xf, 0xff, 0xc0,
0x3, 0xff, 0xf8, 0x7f, 0xfe, 0x1f, 0xff, 0xc0,
0x7, 0xff, 0xfc, 0x7f, 0xfe, 0x1f, 0xff, 0xe0,
0x7, 0xff, 0xfc, 0xff, 0xff, 0x3f, 0xff, 0xe0,
0x7, 0xff, 0xfe, 0xff, 0xff, 0x7f, 0xff, 0xe0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0,
/* U+1F4DC "📜" */
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x7, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0xe7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x3c, 0x39, 0x80, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x7, 0xe1, 0x8c, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0xff, 0x1c, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x70, 0xe, 0x71, 0xcc, 0x1f, 0xe0,
0xff, 0xfe, 0x7, 0x0, 0xe7, 0x1c, 0xc0, 0xfe,
0xf, 0xff, 0xe0, 0x70, 0xe, 0x71, 0xcc, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x7e, 0x38, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xe3, 0x8c,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0xf, 0xf9,
0xc0, 0x30, 0xe0, 0x31, 0xc0, 0x70, 0x0, 0x7f,
0x3c, 0xf, 0xfe, 0x7, 0xfe, 0x7, 0x0, 0x3,
0xe7, 0xc0, 0xff, 0xe0, 0x7f, 0xe0, 0x70, 0x0,
0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0xc0, 0x18, 0x3, 0x8, 0x0,
0x70, 0x0, 0x0, 0xc, 0xf, 0xff, 0xff, 0xf8,
0x7, 0x0, 0x0, 0x0, 0xc0, 0xf7, 0xff, 0xff,
0x0, 0x70, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0xc, 0x0, 0x0,
0x0, 0x10, 0x7, 0x0, 0x0, 0x0, 0xc0, 0xff,
0xff, 0x7, 0xe0, 0x70, 0x0, 0x0, 0xc, 0xf,
0xff, 0xe0, 0x7e, 0x7, 0x0, 0x0, 0x0, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0xc,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0,
0xc, 0x0, 0x0, 0x10, 0x0, 0x7, 0x0, 0x0,
0x0, 0xc0, 0xff, 0xff, 0xff, 0x0, 0x70, 0x0,
0x0, 0xc, 0xf, 0xff, 0xff, 0xf0, 0x7, 0x0,
0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0xc0, 0xff, 0xff, 0xff,
0xe0, 0x70, 0x0, 0x0, 0xc, 0xf, 0xff, 0xff,
0xfe, 0x7, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0xc, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0xc, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0xc0,
0x1, 0xff, 0xf8, 0x0, 0x70, 0x0, 0x0, 0xc,
0x0, 0x1f, 0xff, 0x80, 0x7, 0x0, 0x0, 0x0,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0,
0xc, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0xc, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x3, 0xf3, 0x80, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x7f, 0x9c, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x3e, 0x39, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x7, 0xf1, 0xce, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0xe3, 0x9c, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x70, 0xe, 0x39, 0xce, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0xe3, 0x9c, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x7, 0xf1, 0xce,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x3e, 0x3c,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x73,
0x9c, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x7,
0xf1, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0,
0x3e, 0x38, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
/* U+1F4DD "📝" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x3e, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe7, 0xf8, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0xf3, 0xc0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xcf, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x9e, 0x38, 0xe0, 0x0, 0x0,
0x38, 0x0, 0x0, 0xf0, 0x71, 0xce, 0x7, 0xff,
0x1f, 0xfc, 0x0, 0xf, 0x3, 0xc6, 0xe0, 0x2f,
0x3f, 0x81, 0x80, 0x1, 0xe0, 0x1f, 0x7e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x7f, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x1, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x61, 0xc0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xf, 0x0,
0x6e, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78,
0xe, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x1,
0xe1, 0xce, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf0,
0xf, 0x98, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x39,
0xc0, 0x3f, 0x8e, 0x7, 0x87, 0x84, 0x0, 0x3,
0x1e, 0x0, 0x78, 0xe0, 0x2f, 0xcf, 0xc0, 0x0,
0x61, 0xf8, 0x7, 0xe, 0x0, 0x0, 0x0, 0x0,
0xe, 0x3b, 0xe0, 0x60, 0xe0, 0x0, 0x0, 0x0,
0x1, 0xc7, 0xf, 0x8c, 0xe, 0x0, 0x0, 0x0,
0x0, 0x18, 0xe0, 0xff, 0xc0, 0xe0, 0x0, 0x0,
0x0, 0x3, 0x8c, 0x1c, 0x78, 0xe, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc1, 0x8e, 0x0, 0xe0, 0x7c,
0x78, 0x1f, 0x1e, 0x38, 0x30, 0xc0, 0xe, 0x2,
0xfd, 0x80, 0xbf, 0xc7, 0x7, 0x18, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x1c, 0x60, 0xe3, 0x80, 0xe,
0x0, 0x0, 0x0, 0x3, 0x8e, 0xc, 0x70, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x71, 0xc1, 0xc6, 0x0,
0xe, 0x0, 0x0, 0x0, 0x6, 0x18, 0x38, 0xe0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0xe3, 0x83, 0x1c,
0x0, 0xe, 0x0, 0x0, 0x0, 0x1c, 0x70, 0x61,
0x80, 0x0, 0xe0, 0x0, 0xfe, 0x3f, 0x8e, 0xe,
0x30, 0x0, 0xe, 0x7, 0xf8, 0xff, 0xf8, 0xc1,
0xc7, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x7, 0x1c,
0x18, 0x60, 0x0, 0xe, 0x0, 0x0, 0x0, 0x73,
0x83, 0x8e, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x7,
0xf0, 0x71, 0xe0, 0x0, 0xe, 0x0, 0x0, 0x0,
0x7f, 0x6, 0x3e, 0x0, 0x0, 0xe0, 0x0, 0x0,
0xe, 0x70, 0xe3, 0xe0, 0x0, 0xe, 0x0, 0x0,
0x0, 0xc3, 0x1c, 0x6e, 0x0, 0x0, 0xe0, 0x3c,
0x3c, 0xc, 0x3f, 0x8e, 0xe0, 0x0, 0xe, 0x3,
0xfe, 0x0, 0xc1, 0xfc, 0xce, 0x0, 0x0, 0xe0,
0x0, 0x0, 0x1c, 0x1, 0xf8, 0xe0, 0x0, 0xe,
0x0, 0x0, 0x1, 0x80, 0xf, 0xe, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x18, 0x1, 0xe0, 0xe0, 0x0,
0xe, 0x0, 0x0, 0x1, 0xc0, 0x78, 0xe, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x1e, 0x1e, 0x0, 0xe0,
0x0, 0xe, 0x0, 0x0, 0x3, 0xff, 0x80, 0xe,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x3f, 0xe0, 0x0,
0xe0, 0x0, 0xe, 0x0, 0x0, 0x3, 0xf8, 0x0,
0xe, 0x0, 0x0, 0xe0, 0x7c, 0xf8, 0x1e, 0x0,
0x0, 0xe0, 0x0, 0xe, 0x4, 0x78, 0xff, 0x0,
0x0, 0xe, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0,
/* U+1F4DE "📞" */
0x0, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe1, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xfe, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xc1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x70, 0xf0, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x70, 0x1c, 0x18, 0x0, 0x0, 0x0, 0x0,
0x0, 0x78, 0x7, 0x6, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0x1, 0xc3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x70, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x1c, 0x70, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x7, 0x18, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x1, 0xcc, 0x0, 0x0, 0x0,
0x0, 0x3, 0x80, 0x0, 0x66, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x0, 0x33, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x1d, 0x80, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x7, 0x80, 0x0, 0x0,
0x0, 0x0, 0x38, 0x0, 0x7, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x3c,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0,
0xf, 0x0, 0x0, 0xfc, 0x0, 0x0, 0xf, 0x0,
0x3, 0xc0, 0x0, 0xff, 0x80, 0x0, 0x3, 0xc0,
0x0, 0xf0, 0x0, 0xe1, 0xf0, 0x0, 0x0, 0xe0,
0x0, 0x1e, 0x0, 0xf0, 0x3c, 0x0, 0x0, 0x38,
0x0, 0x7, 0xc1, 0xff, 0x7, 0x0, 0x0, 0xe,
0x0, 0x0, 0xff, 0xe7, 0xc1, 0xc0, 0x0, 0x3,
0x80, 0x0, 0x1f, 0x80, 0x70, 0x70, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x1c, 0x1c, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x7, 0x86, 0x0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x1, 0xe1, 0x80, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x70, 0xc0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x1c, 0x30, 0x0,
0x0, 0x3c, 0x0, 0x0, 0x0, 0x7, 0x18, 0x0,
0x0, 0x7, 0x80, 0x0, 0x0, 0x1, 0x8c, 0x0,
0x0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0xe6, 0x0,
0x0, 0x0, 0x7c, 0x0, 0x0, 0x0, 0x37, 0x0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xc0, 0x1e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0,
/* U+1F4DF "📟" */
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x8f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x77, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x81, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0xfc, 0x1f, 0xff, 0xf8, 0x7e, 0x1f, 0x87,
0xf0, 0x7e, 0xf, 0xff, 0xfc, 0x3f, 0xf, 0xc3,
0xf8, 0x3f, 0x7, 0xff, 0x99, 0xe6, 0x79, 0x9e,
0x7c, 0x1f, 0x83, 0xff, 0xcc, 0xf3, 0x3c, 0xcf,
0x3e, 0xf, 0xc1, 0xff, 0xe6, 0x79, 0x9e, 0x67,
0x9f, 0x7, 0xe0, 0xff, 0xff, 0xe3, 0xf8, 0xfc,
0x3f, 0x83, 0xf0, 0x7f, 0xff, 0xe1, 0xf8, 0x7e,
0x1f, 0xc1, 0xf8, 0x3f, 0xff, 0xf8, 0xfe, 0x3f,
0xf, 0xe0, 0xfc, 0x1f, 0xfe, 0x7f, 0x9f, 0xe6,
0x79, 0xf0, 0x7e, 0xf, 0xff, 0x3f, 0xcf, 0xf3,
0x3c, 0xf8, 0x3f, 0x7, 0xff, 0x9f, 0xe7, 0xf9,
0x9e, 0x7c, 0x1f, 0x83, 0xff, 0xff, 0x8f, 0xe3,
0xf0, 0xfe, 0xf, 0xc1, 0xff, 0xff, 0x87, 0xe1,
0xf8, 0x7f, 0x7, 0xe0, 0x7f, 0xff, 0xe3, 0xf8,
0xfc, 0x3f, 0x83, 0xf0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x81, 0xf8, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x7f, 0x83, 0xfc,
0x1f, 0xe0, 0xff, 0x3, 0xf0, 0x7f, 0xe3, 0xff,
0x1f, 0xf8, 0xff, 0xc1, 0xf8, 0x38, 0x71, 0xe7,
0x8f, 0x3c, 0x70, 0xe0, 0xfc, 0x1c, 0x38, 0xe3,
0xc7, 0x8e, 0x30, 0x30, 0x7e, 0xe, 0x1c, 0x79,
0xe3, 0xcf, 0x1c, 0x38, 0x3f, 0x7, 0xde, 0x3f,
0xf1, 0xff, 0x8f, 0xfc, 0x1f, 0x81, 0xfe, 0xf,
0xf0, 0x7f, 0x83, 0xfc, 0xf, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xb8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x9c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xc1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
/* U+1F4E0 "📠" */
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x3,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x18, 0x7f,
0xff, 0xfe, 0x18, 0x0, 0x0, 0x0, 0x0, 0xc3,
0xff, 0xff, 0xf0, 0xc0, 0x0, 0x0, 0x0, 0x6,
0x1f, 0xff, 0xff, 0x87, 0x0, 0x0, 0x0, 0x0,
0x30, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0,
0x0, 0xe, 0x3f, 0xff, 0xff, 0xe, 0x0, 0x0,
0x0, 0x0, 0x71, 0xff, 0xff, 0xf8, 0x70, 0x0,
0x0, 0x0, 0x3, 0x8f, 0xff, 0xff, 0xc3, 0x80,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x30, 0x0, 0x0, 0xff, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x1f, 0xf0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1, 0xc7, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x38, 0xe, 0x38, 0x7,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x61, 0xc0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x7, 0x3, 0xc,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x18,
0xe0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0,
0xc7, 0x1, 0xf0, 0x7f, 0xff, 0x87, 0x77, 0xe,
0xe, 0x38, 0xf, 0x87, 0xff, 0xfe, 0x3b, 0xb8,
0x30, 0x71, 0xc0, 0x6c, 0x3f, 0xff, 0xf0, 0x0,
0x1, 0x83, 0x8c, 0x3, 0x61, 0xff, 0xff, 0x80,
0x0, 0xc, 0x1c, 0x60, 0x1b, 0x7, 0xff, 0xf8,
0x0, 0x0, 0x60, 0xe3, 0x0, 0xd8, 0x0, 0x0,
0x1, 0x99, 0x83, 0x87, 0x38, 0xe, 0xc0, 0x0,
0x0, 0xc, 0xcc, 0x1c, 0x31, 0xc0, 0x76, 0x1c,
0x78, 0xf0, 0x0, 0x0, 0xe1, 0x8e, 0x3, 0xb0,
0xe3, 0xc7, 0xc0, 0x0, 0x7, 0xc, 0x70, 0x1d,
0x87, 0xc, 0x1c, 0x0, 0x0, 0x38, 0x63, 0x80,
0xec, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc3, 0x18,
0x7, 0x60, 0x0, 0x0, 0x0, 0x0, 0x6, 0x18,
0xc0, 0x3b, 0xc, 0x18, 0x38, 0x3f, 0xe0, 0x31,
0xce, 0x0, 0xf8, 0xf1, 0xe1, 0xe1, 0xff, 0x1,
0x8e, 0x70, 0x7, 0xc3, 0xe, 0xe, 0x0, 0x0,
0xe, 0x73, 0x80, 0x1e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x73, 0x9c, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x9c, 0xe0, 0x7, 0x8e, 0xc, 0xe,
0x1f, 0xf0, 0x1c, 0xe7, 0x0, 0x7c, 0x70, 0xf0,
0xf0, 0xff, 0x80, 0xe6, 0x38, 0x3, 0xe3, 0x87,
0x83, 0x80, 0x0, 0x3, 0x31, 0xe0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x19, 0x87, 0x83, 0xf0,
0x0, 0x0, 0x0, 0x38, 0x0, 0xcc, 0x3f, 0xff,
0x7, 0xf, 0x7, 0x3, 0xe0, 0x6, 0x60, 0xff,
0xf0, 0x38, 0x78, 0x3c, 0x1f, 0x0, 0x3f, 0x3,
0xfe, 0x1, 0xc3, 0xc1, 0xc0, 0x70, 0x1, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 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, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xe0, 0x1, 0xf8, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0x0, 0xe, 0xc0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x66, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
/* U+1F4E1 "📡" */
0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x6, 0x0, 0x1e,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x78, 0x0, 0xc0,
0x1, 0xf8, 0x0, 0x0, 0x7, 0xe0, 0xc, 0x0,
0x3, 0xf0, 0x0, 0x0, 0x7f, 0x0, 0x60, 0x0,
0x3, 0xe0, 0x0, 0x7, 0xf0, 0x3, 0x0, 0x0,
0x7, 0xc0, 0x0, 0x7f, 0x0, 0x18, 0x0, 0x0,
0xf, 0x0, 0x1f, 0xf0, 0x0, 0xc0, 0x0, 0x0,
0x1e, 0x3, 0xff, 0x0, 0x7, 0x0, 0x0, 0x0,
0x7c, 0x7e, 0xf8, 0x0, 0x38, 0x0, 0x0, 0x0,
0xff, 0xcf, 0x80, 0x1, 0xc0, 0x0, 0x0, 0x1,
0xf8, 0xec, 0x0, 0x7, 0x0, 0x0, 0x0, 0x3f,
0x8e, 0x60, 0x0, 0x38, 0x0, 0x0, 0xf, 0xef,
0xf7, 0x0, 0x1, 0xe0, 0x0, 0x1, 0xf8, 0x3f,
0x38, 0x0, 0xf, 0x80, 0x0, 0x3f, 0x0, 0xf1,
0xc0, 0x0, 0x7c, 0x0, 0x7, 0xe0, 0x7, 0xee,
0x0, 0x1, 0xf0, 0x0, 0xfc, 0x0, 0x77, 0xe0,
0x0, 0xd, 0xc0, 0x1f, 0x80, 0x7, 0x9f, 0x0,
0x0, 0x77, 0x7, 0xe0, 0x0, 0x78, 0x78, 0x0,
0x1, 0xb8, 0xfc, 0x0, 0x3, 0x81, 0xe0, 0x0,
0xe, 0xff, 0x80, 0x0, 0x38, 0xf, 0x80, 0x0,
0x33, 0xf0, 0x0, 0x3, 0x80, 0x7e, 0x0, 0x1,
0xce, 0x0, 0x0, 0x38, 0x3, 0xf8, 0x0, 0xe,
0x38, 0x0, 0x0, 0xc0, 0x1d, 0xe0, 0x0, 0x30,
0xe0, 0x0, 0x0, 0x0, 0xc7, 0x80, 0x1, 0xc3,
0x80, 0x0, 0x0, 0x6, 0x1e, 0x0, 0x7, 0xe,
0x0, 0x0, 0x0, 0x30, 0x78, 0x0, 0x38, 0x38,
0x0, 0x0, 0x3, 0x81, 0xe0, 0x0, 0xe0, 0xf0,
0x0, 0x0, 0x1c, 0x7, 0x80, 0x3, 0x3, 0xc0,
0x0, 0x0, 0xe0, 0x1c, 0x0, 0x1c, 0xf, 0x0,
0x0, 0x7, 0x0, 0xf0, 0x0, 0x70, 0x3c, 0x0,
0x0, 0x38, 0x3, 0xc0, 0x3, 0x80, 0x78, 0x0,
0x1, 0x80, 0xe, 0x0, 0xe, 0x1, 0xe0, 0x0,
0xc, 0x0, 0x78, 0x0, 0x38, 0x7, 0x80, 0x0,
0x60, 0x1, 0xc0, 0x0, 0xe0, 0xf, 0x0, 0x7,
0x0, 0x7, 0x0, 0x7, 0xbe, 0x3c, 0x0, 0x38,
0x0, 0x38, 0x0, 0x1f, 0xf8, 0xf8, 0x1, 0xc0,
0x1, 0xc0, 0x0, 0x78, 0xe1, 0xf0, 0xe, 0x0,
0x7, 0x0, 0x1, 0xc3, 0x83, 0xe0, 0x70, 0x0,
0x38, 0x0, 0xc, 0x9c, 0xf, 0x83, 0x0, 0x1,
0xc0, 0x0, 0x66, 0x60, 0x1f, 0x18, 0x0, 0xe,
0x0, 0x3, 0x23, 0x80, 0x3f, 0xc0, 0x0, 0x70,
0x0, 0x18, 0x1f, 0x80, 0x7e, 0x0, 0x7, 0x80,
0x1, 0xc0, 0xff, 0x0, 0xfe, 0x0, 0x78, 0x0,
0xe, 0x7, 0xff, 0x80, 0xff, 0xff, 0xc0, 0x0,
0x70, 0x38, 0xff, 0xe1, 0xff, 0xf8, 0x0, 0x3,
0x81, 0xc3, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1c,
0xe, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xe0,
0x30, 0xff, 0x0, 0x80, 0x0, 0x0, 0x6, 0x1,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x30, 0xf,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x7f,
0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0x3, 0xff,
0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x9f, 0xff,
0xfe, 0x0, 0x0, 0x0, 0xf0, 0x7f, 0xff, 0xf8,
0x78, 0x0, 0x0, 0xe, 0x0, 0x3f, 0xfc, 0x0,
0xe0, 0x0, 0x0, 0xe0, 0x0, 0x1f, 0x0, 0x3,
0x80, 0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x3c,
0x0, 0x0, 0x3f, 0x80, 0x0, 0x0, 0x7, 0xe0,
0x0, 0x0, 0x3f, 0xe0, 0x0, 0x7, 0xfc, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
/* U+1F4E2 "📢" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xf3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7e, 0x7f, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3f, 0x7, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xc0, 0x7f, 0xff, 0x80, 0x0, 0x0,
0x0, 0x7f, 0xe0, 0xf, 0xff, 0xfc, 0x0, 0x7f,
0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xc0, 0x1f,
0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xfc, 0x7,
0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0,
0xf0, 0x3, 0x80, 0x0, 0x0, 0x1f, 0xff, 0xfe,
0x1e, 0x0, 0x38, 0x0, 0x0, 0x1, 0xff, 0xff,
0xe1, 0xc0, 0x7, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xfe, 0x38, 0x0, 0x70, 0x0, 0x0, 0x1, 0xff,
0xff, 0xe3, 0x80, 0x7, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xfe, 0x70, 0x0, 0x70, 0x0, 0x0, 0x3,
0xff, 0xff, 0xf7, 0x0, 0x6, 0x0, 0x0, 0x0,
0x38, 0x7f, 0xff, 0x70, 0x0, 0xe0, 0x0, 0x0,
0x3, 0x80, 0x1f, 0xfe, 0x0, 0xe, 0x0, 0x0,
0x0, 0x38, 0x0, 0x7f, 0xe0, 0x0, 0xe0, 0x0,
0x0, 0x3, 0x80, 0x7, 0xfe, 0x0, 0xe, 0x0,
0x0, 0x0, 0x38, 0x0, 0x3f, 0xe0, 0x0, 0xe0,
0x0, 0x0, 0x3, 0x80, 0x3, 0xfe, 0x0, 0xe,
0x0, 0x0, 0x0, 0x38, 0x0, 0x3f, 0xe0, 0x0,
0xe0, 0x0, 0x0, 0x3, 0x80, 0x3, 0xfe, 0x0,
0xe, 0x0, 0x0, 0x0, 0x38, 0x0, 0x3f, 0xe0,
0x0, 0xe0, 0x0, 0x0, 0x3, 0x80, 0x7, 0xfe,
0x0, 0xe, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7f,
0xe0, 0x0, 0xe0, 0x0, 0x0, 0x3, 0x80, 0x1f,
0xf7, 0x0, 0xe, 0x0, 0x0, 0x0, 0x38, 0x7f,
0xff, 0x70, 0x0, 0x60, 0x0, 0x0, 0x3, 0xff,
0xff, 0xf7, 0x0, 0x7, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0x38, 0x0, 0x70, 0x0, 0x0, 0x3,
0xff, 0xff, 0xf3, 0x80, 0x7, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xfe, 0x1c, 0x0, 0x70, 0x0, 0x0,
0x1, 0xff, 0xff, 0xe1, 0xe0, 0x3, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xfe, 0xf, 0x0, 0x38, 0x0,
0x0, 0x1, 0xff, 0xff, 0xe0, 0x7f, 0xff, 0xfc,
0x0, 0x0, 0x1f, 0xff, 0xfe, 0x3, 0xff, 0xff,
0xff, 0x0, 0x1, 0xff, 0xff, 0xe0, 0xf, 0xff,
0xff, 0xff, 0x0, 0xf, 0xff, 0xfc, 0x0, 0x30,
0x3, 0xf, 0xfe, 0x0, 0xff, 0xff, 0xc0, 0x3,
0x80, 0x30, 0x1f, 0xfc, 0xf, 0xff, 0xfc, 0x0,
0x18, 0x3, 0x81, 0xc7, 0xf0, 0x7f, 0xff, 0x80,
0x1, 0x80, 0x38, 0xc, 0xf, 0xc7, 0xff, 0xf8,
0x0, 0x1c, 0x1, 0x80, 0xc0, 0x3f, 0x7f, 0xff,
0x80, 0x0, 0xc0, 0x1e, 0x3c, 0x0, 0x7f, 0xff,
0xf0, 0x0, 0xe, 0x0, 0xff, 0x80, 0x1, 0xff,
0xff, 0x0, 0x0, 0xe0, 0x7, 0xf0, 0x0, 0xf,
0xff, 0xe0, 0x0, 0x6, 0x0, 0x6, 0x0, 0x0,
0x3f, 0xfe, 0x0, 0x0, 0x70, 0x0, 0x70, 0x0,
0x0, 0xff, 0xc0, 0x0, 0x7, 0x0, 0x3, 0x0,
0x0, 0x7, 0xf8, 0x0, 0x0, 0x30, 0x0, 0x30,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x3, 0x80, 0x1,
0x80, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x18, 0x0,
0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80,
0x1, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x80, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
/* U+1F4E3 "📣" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf7, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3c, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x1f, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xc3, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x7f, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0xf,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x1, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x7, 0x80, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x1, 0xe0, 0x7, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x78, 0x0, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0xf, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x1,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xf0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x3c, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x7, 0x80, 0x60, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x1, 0xe0, 0x1c, 0x0,
0x3f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x78, 0xf,
0x0, 0x7, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3e,
0x3, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0xf, 0x0, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x3, 0xc0, 0x7c, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0xf0, 0x1e, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x3c, 0x7, 0x80, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0x1, 0xe0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0xff, 0x80,
0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x7f,
0xe0, 0x3c, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x1e, 0x78, 0xf, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xe7, 0x9e, 0x7, 0xc0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xfc, 0xe3, 0x81, 0xe0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0x9c, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xf7, 0x1c, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0xe3,
0x81, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x8e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xee, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xfd, 0xc3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xb8,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xf3, 0x87, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xfe, 0x70, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x8e, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf1, 0xe1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x1c, 0x1f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x83,
0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x38, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x3, 0x80, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x78, 0x3, 0x80, 0x61,
0x80, 0x30, 0xc0, 0x0, 0x0, 0x7, 0x80, 0x70,
0xc, 0x38, 0x6, 0x1c, 0x0, 0x0, 0x0, 0x7c,
0x1c, 0x1, 0xc3, 0x0, 0xc1, 0x80, 0x0, 0x0,
0x3, 0xff, 0x0, 0x18, 0x7f, 0xfc, 0x30, 0x0,
0x0, 0x0, 0x1f, 0x80, 0x3, 0x7, 0xff, 0x6,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x70, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0,
0x0, 0x0,
/* U+1F4E4 "📤" */
0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0,
0x7, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xf0, 0x0,
0x7f, 0xff, 0x1f, 0xff, 0x1f, 0xff, 0xc0, 0x3,
0x0, 0x0, 0xff, 0xf8, 0x0, 0x6, 0x0, 0x38,
0x0, 0x7, 0xff, 0xc0, 0x0, 0x38, 0x1, 0x80,
0x0, 0x3f, 0xfe, 0x0, 0x0, 0xc0, 0x1c, 0x0,
0x1, 0xff, 0xf0, 0x0, 0x7, 0x0, 0xc0, 0x0,
0xf, 0xff, 0x80, 0x0, 0x18, 0xe, 0x0, 0x0,
0x7f, 0xfc, 0x0, 0x0, 0xe0, 0x60, 0x0, 0x3,
0xff, 0xe0, 0x0, 0x3, 0x7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x18, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x61, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf,
0xff, 0xf8, 0x0, 0xe0, 0x0, 0x0, 0x0, 0xe0,
0x3, 0xc0, 0x3, 0x80, 0x0, 0x0, 0xe, 0x0,
0x1e, 0x0, 0xe, 0x0, 0x0, 0x0, 0xe0, 0x0,
0xf0, 0x0, 0x38, 0x0, 0x0, 0xe, 0x0, 0x7,
0x80, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3c,
0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
/* U+1F4E5 "📥" */
0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc7, 0xff, 0xf1, 0xff, 0xf0, 0x0,
0x7f, 0xff, 0x1f, 0xff, 0x1f, 0xff, 0xc0, 0x3,
0x0, 0x0, 0x7f, 0xf0, 0x0, 0x6, 0x0, 0x38,
0x0, 0x3, 0xff, 0x80, 0x0, 0x38, 0x1, 0x80,
0x0, 0xf, 0xf8, 0x0, 0x0, 0xc0, 0x1c, 0x0,
0x0, 0x3f, 0x80, 0x0, 0x7, 0x0, 0xc0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x18, 0xe, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0xe0, 0x60, 0x0, 0x0,
0x8, 0x0, 0x0, 0x3, 0x7, 0x0, 0x0, 0x0,
0x40, 0x0, 0x0, 0x18, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x61, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf,
0xff, 0xf8, 0x0, 0xe0, 0x0, 0x0, 0x0, 0xe0,
0x3, 0xc0, 0x3, 0x80, 0x0, 0x0, 0xe, 0x0,
0x1e, 0x0, 0xe, 0x0, 0x0, 0x0, 0xe0, 0x0,
0xf0, 0x0, 0x38, 0x0, 0x0, 0xe, 0x0, 0x7,
0x80, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3c,
0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
/* U+1F4E6 "📦" */
0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xe0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0xf, 0xfc,
0x0, 0x3e, 0x0, 0x0, 0x0, 0x3, 0xf1, 0xf0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0x7c, 0xf, 0x80,
0x7, 0xe0, 0x0, 0x0, 0x1f, 0x0, 0x3e, 0x0,
0x1f, 0x80, 0x0, 0x7, 0xc0, 0x0, 0xf8, 0x0,
0x7e, 0x0, 0x1, 0xfe, 0x0, 0x7, 0xe0, 0x1,
0xf8, 0x0, 0x7f, 0xf0, 0x0, 0x1f, 0x0, 0x7,
0xc0, 0xf, 0x87, 0xc0, 0x0, 0x7c, 0x0, 0x1f,
0x3, 0xe0, 0x1f, 0x0, 0x3, 0xf0, 0x0, 0xfc,
0xfc, 0x0, 0xf8, 0x0, 0xf, 0x80, 0x3, 0xff,
0x80, 0x3, 0xe0, 0x0, 0x3e, 0x0, 0x1f, 0xfc,
0x0, 0xf, 0x80, 0x1, 0xf8, 0x7, 0xff, 0xf0,
0x0, 0x7e, 0x0, 0x7, 0xe1, 0xff, 0xe7, 0xc0,
0x1, 0xf0, 0x0, 0x1f, 0x7e, 0x7e, 0x1f, 0x0,
0x7, 0xc0, 0x0, 0x7f, 0x87, 0xe0, 0xf8, 0x0,
0x1f, 0x0, 0x3, 0xe0, 0x7e, 0x3, 0xe0, 0x0,
0xfc, 0x0, 0x1c, 0x7, 0xe0, 0xf, 0x80, 0x3,
0xe0, 0x1, 0xc0, 0x7e, 0x0, 0x3e, 0x0, 0xf,
0x80, 0x1c, 0x7, 0xe0, 0x1, 0xf0, 0x0, 0x7e,
0x1, 0xc0, 0x7e, 0x0, 0x7, 0xc0, 0x1, 0xf0,
0x1c, 0x7, 0xe0, 0x0, 0x1f, 0x0, 0x1f, 0x1,
0xc0, 0x7e, 0x0, 0x0, 0xfc, 0x3, 0xf0, 0x1c,
0x7, 0xe0, 0x0, 0x3, 0xf0, 0xff, 0x1, 0xc0,
0x7e, 0x0, 0x0, 0xf, 0xbe, 0x70, 0x1c, 0x7,
0xe0, 0x0, 0x0, 0x3f, 0xc7, 0x1, 0xc0, 0x7e,
0x0, 0x0, 0x1, 0xf0, 0x70, 0x7c, 0x7, 0xe0,
0x0, 0x0, 0xe, 0x7, 0x7, 0xc0, 0x7e, 0x0,
0x0, 0x0, 0xe0, 0x70, 0xfc, 0x7, 0xe0, 0x0,
0x0, 0xe, 0x7, 0x7c, 0x0, 0x7e, 0x0, 0x0,
0x0, 0xe0, 0x7f, 0xc0, 0x7, 0xe0, 0x0, 0x0,
0xe, 0x7, 0xd8, 0x0, 0x7e, 0x0, 0x0, 0x0,
0xe0, 0x78, 0x0, 0x7, 0xe2, 0x0, 0x0, 0xe,
0x7, 0x0, 0x0, 0x7e, 0x60, 0x0, 0x0, 0xe0,
0x60, 0x0, 0x7, 0xe3, 0x40, 0x0, 0xe, 0x4,
0x0, 0x0, 0x7e, 0x2c, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x7, 0xe2, 0x64, 0x0, 0xe, 0x0, 0x0,
0x0, 0x7e, 0x24, 0x70, 0x0, 0xe0, 0x0, 0x0,
0x7, 0xe0, 0x47, 0xc0, 0xe, 0x0, 0x0, 0x0,
0x7e, 0x64, 0x3e, 0x0, 0xe0, 0x0, 0x0, 0x7,
0xe3, 0x83, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x7f,
0xe, 0x1c, 0x0, 0xe0, 0x0, 0x0, 0xf, 0xfc,
0x21, 0x0, 0xe, 0x0, 0x0, 0x3, 0xf3, 0xf0,
0x50, 0x0, 0xe0, 0x0, 0x0, 0xfc, 0xf, 0x87,
0x0, 0xe, 0x0, 0x0, 0x3f, 0x0, 0x3e, 0x1c,
0x0, 0xe0, 0x0, 0xf, 0xc0, 0x0, 0xf8, 0x40,
0xe, 0x0, 0x1, 0xf0, 0x0, 0x3, 0xe0, 0x0,
0xe0, 0x0, 0x7c, 0x0, 0x0, 0x1f, 0x0, 0xe,
0x0, 0x1f, 0x80, 0x0, 0x0, 0x7c, 0x0, 0xe0,
0x7, 0xe0, 0x0, 0x0, 0x1, 0xf0, 0xe, 0x1,
0xf8, 0x0, 0x0, 0x0, 0x7, 0xc0, 0xe0, 0x3e,
0x0, 0x0, 0x0, 0x0, 0x1e, 0xe, 0xf, 0x80,
0x0, 0x0, 0x0, 0x0, 0x78, 0xe3, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xee, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+1F4E7 "📧" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xef, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xdf, 0x9e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1e, 0x7e, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf1, 0xf8, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x87, 0xe0, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x1f, 0x81,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x7e,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x1,
0xf8, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x70,
0x7, 0xe0, 0x7, 0x0, 0x7, 0xff, 0xe0, 0x3,
0x80, 0x1f, 0x80, 0xe, 0x0, 0x1f, 0xff, 0x80,
0x1c, 0x0, 0x7e, 0x0, 0x1e, 0x0, 0x7f, 0xfe,
0x1, 0xe0, 0x1, 0xf8, 0x0, 0x3c, 0x1, 0xc0,
0x0, 0xf, 0x0, 0x7, 0xe0, 0x0, 0x78, 0x7,
0x0, 0x0, 0x78, 0x0, 0x1f, 0x80, 0x0, 0xf0,
0x1c, 0x0, 0x3, 0xc0, 0x0, 0x7e, 0x0, 0x1,
0xe0, 0x70, 0x0, 0x1e, 0x0, 0x1, 0xf8, 0x0,
0x7, 0xc1, 0xc0, 0x0, 0xf8, 0x0, 0x7, 0xe0,
0x0, 0x3f, 0x87, 0x0, 0x7, 0xf0, 0x0, 0x1f,
0x80, 0x0, 0xee, 0x1c, 0x0, 0x1d, 0xc0, 0x0,
0x7e, 0x0, 0x7, 0x18, 0x70, 0x0, 0x63, 0x80,
0x1, 0xf8, 0x0, 0x38, 0x21, 0xff, 0xe1, 0x7,
0x0, 0x7, 0xe0, 0x0, 0xe0, 0x7, 0xff, 0x80,
0x1c, 0x0, 0x1f, 0x80, 0x7, 0x0, 0x1f, 0xfe,
0x0, 0x38, 0x0, 0x7e, 0x0, 0x3c, 0x0, 0x70,
0x0, 0x0, 0xf0, 0x1, 0xf8, 0x0, 0xe0, 0x1,
0xc0, 0x0, 0x1, 0xc0, 0x7, 0xe0, 0x7, 0x0,
0x7, 0x0, 0x0, 0x3, 0x80, 0x1f, 0x80, 0x3c,
0x0, 0x1c, 0x0, 0x0, 0xf, 0x0, 0x7e, 0x0,
0xe0, 0x0, 0x70, 0x0, 0x0, 0x1c, 0x1, 0xf8,
0x7, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x38, 0x7,
0xe0, 0x1c, 0x0, 0x7, 0x0, 0x0, 0x0, 0xe0,
0x1f, 0x80, 0xe0, 0x0, 0x1c, 0x0, 0x0, 0x1,
0xc0, 0x7e, 0x7, 0x0, 0x0, 0x7f, 0xfe, 0x0,
0x3, 0x81, 0xf8, 0x1c, 0x0, 0x1, 0xff, 0xf8,
0x0, 0xe, 0x7, 0xe0, 0xe0, 0x0, 0x7, 0xff,
0xe0, 0x0, 0x1c, 0x1f, 0x87, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x7e, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe1, 0xf8, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, 0xe7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x9f, 0x9c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x7e,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc,
/* U+1F4E8 "📨" */
0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf8, 0x0, 0x1f, 0x80, 0x0, 0x0,
0x0, 0x0, 0xf, 0xe0, 0x0, 0x3b, 0x80, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x63, 0x80,
0x0, 0x0, 0x0, 0x0, 0xf3, 0x80, 0x0, 0xc3,
0x80, 0x0, 0x0, 0x0, 0x7, 0xc7, 0x0, 0x3,
0x83, 0x80, 0x0, 0x0, 0x0, 0x1e, 0xc, 0xff,
0x7, 0x7, 0x80, 0x0, 0x0, 0x0, 0xf8, 0x39,
0xfe, 0xc, 0x7, 0x80, 0x0, 0x0, 0x3, 0xe0,
0x70, 0x0, 0x38, 0x7, 0x80, 0x0, 0x0, 0x1f,
0x0, 0xe0, 0x0, 0x70, 0x7, 0x80, 0x0, 0x0,
0x7c, 0x1, 0x80, 0x0, 0xe0, 0x7, 0x80, 0x0,
0x3, 0xe0, 0x7, 0x0, 0x1, 0x80, 0x7, 0x80,
0x0, 0xf, 0x80, 0xe, 0x0, 0x7, 0x0, 0x7,
0x80, 0x0, 0x7c, 0x0, 0x1c, 0x0, 0xe, 0x0,
0xf, 0x80, 0x1, 0xf8, 0x0, 0x30, 0xfc, 0x18,
0x0, 0x3f, 0x80, 0x7, 0xf0, 0x0, 0xe1, 0xf8,
0x30, 0x0, 0xe7, 0x0, 0x3e, 0x70, 0x1, 0xc0,
0x0, 0xe0, 0x3, 0x87, 0x0, 0xf8, 0xe0, 0x3,
0x0, 0x1, 0xc0, 0xe, 0xf, 0x7, 0xc0, 0xe0,
0x6, 0x0, 0x3, 0x0, 0x38, 0xf, 0x1f, 0x1,
0xc0, 0x1c, 0x0, 0x6, 0x0, 0xf0, 0xf, 0xf8,
0x1, 0x80, 0x38, 0x0, 0x1c, 0x3, 0xc0, 0xf,
0xe0, 0x3, 0x80, 0x60, 0x0, 0x38, 0xf, 0x0,
0xf, 0x80, 0x7, 0x0, 0xc0, 0x0, 0x60, 0x3c,
0x0, 0xc, 0x0, 0x6, 0x3, 0x80, 0x0, 0xc0,
0xf0, 0x0, 0x0, 0x0, 0xe, 0x7, 0x0, 0x3,
0x83, 0xc0, 0x0, 0x0, 0x0, 0xc, 0xc, 0x0,
0x7, 0xf, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x18,
0x0, 0xc, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x38,
0x70, 0x0, 0x38, 0x70, 0x0, 0x0, 0x0, 0x0,
0x30, 0xe0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x71, 0x80, 0x0, 0xe7, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe3, 0x0, 0x1, 0x9c, 0x0, 0x0,
0x0, 0x0, 0x0, 0xee, 0x0, 0x7, 0x70, 0x0,
0x0, 0x0, 0x0, 0x1, 0xdc, 0x0, 0xf, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xb0, 0x0, 0x1f,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0,
0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0,
/* U+1F4E9 "📩" */
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xef, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf7, 0xe7, 0x80, 0x0, 0x0, 0x0, 0x1, 0xe7,
0xe1, 0xe0, 0x0, 0x0, 0x0, 0x3, 0x87, 0xe0,
0xf0, 0x0, 0x0, 0x0, 0xf, 0x7, 0xe0, 0x78,
0x0, 0x0, 0x0, 0x1e, 0x7, 0xe0, 0x3c, 0x0,
0x0, 0x0, 0x3c, 0x7, 0xe0, 0x1e, 0x0, 0x0,
0x0, 0x78, 0x7, 0xe0, 0x7, 0x0, 0x0, 0x0,
0xf0, 0x7, 0xe0, 0x3, 0xc0, 0x0, 0x3, 0xc0,
0x7, 0xe0, 0x1, 0xe0, 0x0, 0x7, 0x80, 0x7,
0xe0, 0x1, 0xf0, 0x0, 0xf, 0x80, 0x7, 0xe0,
0x1, 0xf8, 0x0, 0x1f, 0xc0, 0x7, 0xe0, 0x3,
0x9c, 0x0, 0x3d, 0xc0, 0x7, 0xe0, 0x7, 0xf,
0x0, 0xf0, 0xe0, 0x7, 0xe0, 0x7, 0x7, 0x81,
0xe0, 0x70, 0x7, 0xe0, 0xe, 0x3, 0xc3, 0xc0,
0x70, 0x7, 0xe0, 0x1c, 0x1, 0xe7, 0x80, 0x38,
0x7, 0xe0, 0x1c, 0x0, 0x7e, 0x0, 0x18, 0x7,
0xe0, 0x38, 0x0, 0x3c, 0x0, 0x1c, 0x7, 0xe0,
0x70, 0x0, 0x18, 0x0, 0xe, 0x7, 0xe0, 0x70,
0x0, 0x0, 0x0, 0x6, 0x7, 0xe0, 0xe0, 0x0,
0x0, 0x0, 0x7, 0x7, 0xe1, 0xc0, 0x0, 0x0,
0x0, 0x3, 0x87, 0xe1, 0xc0, 0x0, 0x0, 0x0,
0x3, 0x87, 0xe3, 0x80, 0x0, 0x0, 0x0, 0x1,
0xc7, 0xe7, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe7,
0xe7, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe7, 0xee,
0x0, 0x0, 0x0, 0x0, 0x0, 0x77, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
/* U+1F4EA "📪" */
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x1f, 0x0, 0xf8, 0x0, 0x0, 0x0, 0xf,
0x80, 0x7, 0x80, 0x7, 0x80, 0x0, 0x0, 0x0,
0x3c, 0x1, 0xe0, 0x0, 0x78, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x78, 0x0, 0x7, 0x80, 0x0, 0x0,
0x0, 0x38, 0xe, 0x0, 0x0, 0x70, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x70, 0x70, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x7, 0xe, 0x1f, 0xfc, 0x1c, 0x0,
0x0, 0x0, 0x0, 0xe3, 0x83, 0xff, 0x81, 0xc0,
0x3e, 0x0, 0x0, 0x1c, 0x70, 0x70, 0x70, 0x38,
0xf, 0xe0, 0x0, 0x1, 0xce, 0xe, 0xe, 0x7,
0x3, 0xdf, 0xff, 0xff, 0xff, 0xc1, 0xc1, 0xc0,
0xe0, 0x71, 0xff, 0xff, 0xff, 0xf8, 0x38, 0x38,
0x1c, 0xc, 0x1c, 0x0, 0x0, 0x1f, 0x7, 0xff,
0x3, 0x83, 0x83, 0x80, 0x0, 0x3, 0xe0, 0xff,
0xe0, 0x70, 0x70, 0x70, 0x0, 0x0, 0x7c, 0x0,
0x0, 0xe, 0x6, 0xf, 0xff, 0xfe, 0xf, 0x80,
0x0, 0x1, 0xc0, 0xc1, 0xff, 0xff, 0xc1, 0xf0,
0x0, 0x0, 0x38, 0x1c, 0x7f, 0xff, 0xf8, 0x3e,
0x0, 0x0, 0x7, 0x1, 0xfc, 0x0, 0x7, 0x7,
0xc0, 0x0, 0x0, 0xe0, 0x1f, 0x0, 0x0, 0xe0,
0xf8, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x1c,
0x1f, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0, 0x3,
0x83, 0xe0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x70, 0x7c, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0,
0xe, 0xf, 0x80, 0x0, 0x1, 0xc0, 0x0, 0x0,
0x1, 0xc1, 0xf0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0x0, 0x0,
0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0xe7, 0x0, 0x0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x0, 0x3, 0x9c, 0x0, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x73, 0x80, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x1, 0xce, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x39, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0xe, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x81, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0,
/* U+1F4EB "📫" */
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x31, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x30, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x18, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x8f, 0xff,
0xe0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xc7, 0xff,
0xfe, 0x0, 0x1f, 0x0, 0xf8, 0x0, 0x63, 0x0,
0xf, 0xc0, 0x1e, 0x0, 0x1e, 0x0, 0x31, 0x80,
0x0, 0xf0, 0x1e, 0x0, 0x7, 0x80, 0x18, 0xc0,
0x0, 0x3c, 0xe, 0x0, 0x1, 0xe0, 0xc, 0x60,
0x0, 0xe, 0xe, 0x0, 0x0, 0x70, 0x6, 0x30,
0x0, 0x3, 0x8e, 0x0, 0x0, 0x3c, 0x3, 0x18,
0x0, 0x1, 0xe7, 0x0, 0x0, 0xe, 0x1, 0x8c,
0x0, 0x0, 0x73, 0x87, 0xff, 0x7, 0x0, 0xc6,
0x0, 0x0, 0x3b, 0x83, 0xff, 0x81, 0xc0, 0x7f,
0x0, 0x0, 0x1d, 0xc1, 0xc1, 0xc0, 0xe0, 0x3f,
0x80, 0x0, 0x7, 0xe0, 0xe0, 0xe0, 0x70, 0x38,
0xe0, 0x0, 0x3, 0xf0, 0x70, 0x70, 0x38, 0x18,
0x30, 0x0, 0x1, 0xf8, 0x38, 0x38, 0x1c, 0xc,
0x1c, 0x0, 0x0, 0xfc, 0x1f, 0xfc, 0xe, 0xe,
0xe, 0x0, 0x0, 0x7e, 0xf, 0xfe, 0x7, 0x7,
0x7, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x3, 0x81,
0x83, 0x80, 0x0, 0x1f, 0x80, 0x0, 0x1, 0xc0,
0xc1, 0x80, 0x0, 0xf, 0xc0, 0x0, 0x0, 0xe0,
0x71, 0xc0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x70,
0x1f, 0xc0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x38,
0x3, 0xc0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x3,
0x80, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0,
0x70, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x70, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x38, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x81, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
/* U+1F4EC "📬" */
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0x0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x63, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x31, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x38, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x1f, 0xff,
0xe0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x8f, 0xff,
0xfe, 0x0, 0xf, 0xff, 0xf8, 0x0, 0xc7, 0x0,
0x7, 0xc0, 0x1f, 0xff, 0xfe, 0x0, 0x63, 0x80,
0x0, 0xf0, 0x1f, 0xff, 0xff, 0x80, 0x31, 0xc0,
0x0, 0x3c, 0xf, 0xff, 0xff, 0xc0, 0x18, 0xe0,
0x0, 0xe, 0xf, 0xff, 0xff, 0xf0, 0xc, 0x70,
0x0, 0x3, 0x87, 0xff, 0xff, 0xf8, 0x6, 0x38,
0x0, 0x1, 0xe7, 0xff, 0xff, 0xfe, 0x3, 0x1c,
0x0, 0x0, 0x73, 0xff, 0xff, 0xff, 0x1, 0x8e,
0x0, 0x0, 0x39, 0xff, 0xff, 0xff, 0x80, 0xff,
0x0, 0x0, 0xe, 0xff, 0xff, 0xff, 0xc0, 0x7f,
0x80, 0x0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0x78,
0xe0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xf0, 0x38,
0x30, 0x0, 0x1, 0xff, 0xff, 0xff, 0xfc, 0x18,
0x1c, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x1c,
0xe, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x7, 0xe,
0x7, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x3, 0x83,
0x3, 0x80, 0x0, 0x1f, 0xf8, 0x0, 0x1, 0xc1,
0xc3, 0x80, 0x0, 0xf, 0xbf, 0x0, 0x0, 0xe0,
0xf1, 0xc0, 0x0, 0x7, 0xc7, 0xc0, 0x0, 0x70,
0x3f, 0xc0, 0x0, 0x3, 0xf1, 0xf0, 0x0, 0x78,
0x7, 0x80, 0x0, 0x1, 0xf8, 0x3e, 0x0, 0x7c,
0x0, 0x0, 0x0, 0x0, 0xfc, 0xf, 0x80, 0x3e,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x7, 0xe0, 0x3f,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x83, 0xfc, 0x3f,
0x80, 0x0, 0x0, 0x0, 0x1f, 0xc1, 0x9f, 0x39,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xe1, 0xc3, 0xf8,
0xe0, 0x0, 0x0, 0x0, 0x7, 0xf0, 0xe0, 0xf8,
0x70, 0x0, 0x0, 0x0, 0x3, 0xfc, 0xe0, 0x18,
0x38, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x70, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0xff, 0x70, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x70, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0,
/* U+1F4ED "📭" */
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x1f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf,
0x80, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0x3c, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x38, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x3, 0x83, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x70, 0x7f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x7, 0xf, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xe3, 0xff, 0xff, 0xff, 0xc0,
0x3e, 0x0, 0x0, 0x1c, 0x7f, 0xff, 0xff, 0xf8,
0x1f, 0xe0, 0x0, 0x1, 0xcf, 0xff, 0xff, 0xff,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x18, 0x1c, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xff, 0x87, 0x3, 0x80, 0x0, 0x3, 0xff, 0xff,
0xff, 0xf0, 0xe0, 0x70, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xfe, 0xc, 0xe, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xc1, 0xc3, 0xff, 0xff, 0xc1, 0xff,
0xff, 0xff, 0xf8, 0x3c, 0x7f, 0xff, 0xf8, 0x3f,
0xff, 0xff, 0xff, 0x3, 0xfc, 0x0, 0x7, 0x7,
0xff, 0xff, 0xff, 0xe0, 0x1f, 0x0, 0x0, 0xe0,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1c,
0x1f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3,
0x83, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x70, 0x7f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xe, 0xf, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x1, 0xc1, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x7, 0x3f, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xe7, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x1c, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0x9f, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x73, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xe, 0x7f, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x1, 0xcf, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x39, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xf0, 0x0, 0x0, 0x0,
/* U+1F4EE "📮" */
0xf, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0x81, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x60, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x38, 0x0, 0x0, 0x0, 0x0, 0x3, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1b, 0x80, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xc0, 0x3c,
0x1, 0xff, 0xff, 0xff, 0xf0, 0xf, 0x0, 0x7f,
0xff, 0xff, 0xfc, 0x3, 0xc0, 0x1f, 0xff, 0xff,
0xff, 0x0, 0xf0, 0x7, 0xfe, 0x3, 0xff, 0xc0,
0x3c, 0x1, 0xf9, 0xc1, 0xe3, 0xf0, 0xf, 0x0,
0xe, 0x39, 0xf0, 0xe0, 0x3, 0xc0, 0x7, 0x7,
0xf0, 0x18, 0x0, 0xf0, 0x1, 0xc0, 0xf8, 0x7,
0x0, 0x3c, 0x0, 0x70, 0x1c, 0x1, 0xc0, 0xf,
0x0, 0x38, 0x3, 0x80, 0x38, 0x3, 0xc0, 0xe,
0x0, 0x70, 0xe, 0x0, 0xf0, 0x7, 0x0, 0xe,
0x1, 0x80, 0x3c, 0x1, 0xc0, 0x7, 0xc0, 0x70,
0xf, 0x0, 0xe0, 0x3, 0xe0, 0xc, 0x3, 0xc0,
0x38, 0x3, 0xe0, 0x3, 0x80, 0xf0, 0xe, 0x3,
0xe0, 0x0, 0xe0, 0x3c, 0x7, 0x3, 0xfe, 0x0,
0x18, 0xf, 0x1, 0xc1, 0xf7, 0xf0, 0x7, 0x3,
0xc0, 0xe1, 0xf0, 0x3f, 0x80, 0xc0, 0xf0, 0x39,
0xf0, 0x1, 0xf8, 0x38, 0x3c, 0x1d, 0xf0, 0x0,
0x1f, 0xce, 0xf, 0x7, 0xf8, 0x0, 0x0, 0xfd,
0xc3, 0xc3, 0xf8, 0x0, 0x0, 0x7, 0xf0, 0xf0,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x3c, 0x3f, 0xff,
0xff, 0xff, 0xff, 0x8f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x38, 0x3, 0x80, 0x0, 0x0, 0x0, 0xe, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x38, 0x0,
0x0, 0x0, 0x0, 0xe0, 0xe, 0x0, 0x0, 0x0,
0x0, 0x38, 0x3, 0x80, 0x0, 0x0, 0x0, 0xe,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0,
/* U+1F4EF "📯" */
0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x7c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xc0, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xe0, 0x0,
0x6, 0x0, 0xc0, 0x0, 0x0, 0x6, 0x38, 0x3f,
0x0, 0x30, 0x1f, 0x0, 0x0, 0x0, 0xe3, 0x1f,
0xfe, 0x3, 0x81, 0xf8, 0x0, 0x0, 0xc, 0x3,
0xc0, 0xf0, 0x18, 0x3f, 0xc0, 0x0, 0x1, 0xc0,
0x70, 0x3, 0x81, 0xc3, 0xfe, 0x0, 0x0, 0x18,
0xe, 0x0, 0x1c, 0xc, 0x3f, 0xf0, 0x1, 0xe1,
0x81, 0xc0, 0x0, 0xe0, 0xc3, 0xff, 0x80, 0x3f,
0x30, 0x18, 0x0, 0x6, 0xe, 0x37, 0xf8, 0x7,
0x33, 0x3, 0x80, 0x0, 0x60, 0x63, 0x7f, 0xc0,
0x63, 0xb0, 0x30, 0x0, 0x3, 0x6, 0x33, 0xfe,
0xc, 0x1b, 0x3, 0x0, 0x0, 0x30, 0x67, 0x3f,
0xe0, 0xc1, 0xf0, 0x30, 0x0, 0x3, 0x6, 0x63,
0xff, 0xe, 0xf, 0x3, 0x0, 0x0, 0x30, 0x6e,
0x1f, 0xf0, 0x7c, 0x70, 0x30, 0x0, 0x3, 0x6,
0xc0, 0xff, 0x83, 0xe3, 0x3, 0x0, 0x0, 0x30,
0x7c, 0xf, 0xf8, 0xf, 0x30, 0x18, 0x0, 0x6,
0x7, 0x80, 0x7f, 0xc0, 0x39, 0x81, 0x80, 0x0,
0x60, 0xf0, 0x7, 0xfc, 0x1, 0xf8, 0xc, 0x0,
0xc, 0xe, 0x0, 0x3f, 0xe0, 0xf, 0x80, 0xec,
0xcd, 0xc1, 0xc0, 0x1, 0xfe, 0x0, 0x7c, 0x7,
0xdf, 0xf8, 0x78, 0x0, 0x1f, 0xe0, 0x1, 0xe0,
0x3f, 0xff, 0x3e, 0x0, 0x0, 0xff, 0x0, 0xe,
0x1, 0xff, 0xff, 0xc0, 0x0, 0x7, 0xf0, 0x0,
0x70, 0x1f, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0x0,
0x3, 0x81, 0xff, 0xe0, 0x0, 0x3f, 0xfd, 0xf0,
0x0, 0x1c, 0x1f, 0xfe, 0x0, 0x1f, 0xff, 0xff,
0x0, 0x0, 0xf1, 0xff, 0xe0, 0x1f, 0xc0, 0x3,
0xf0, 0x0, 0x7, 0x9f, 0xfe, 0xf, 0xe0, 0x0,
0x6, 0x0, 0x0, 0x1f, 0xff, 0xef, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0xcd,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x80, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0xf, 0xe0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x1, 0xfc, 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0,
0x0, 0x1f, 0xc0, 0x0, 0x0, 0xfc, 0x0, 0x0,
0x0, 0x1, 0xf8, 0x0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x1, 0x0,
0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0,
/* U+1F4F0 "📰" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x1f, 0x0, 0x0, 0x0, 0xc, 0x0,
0x0, 0x0, 0xe3, 0xe0, 0x0, 0x0, 0xf, 0xe0,
0x0, 0x0, 0x1c, 0x7c, 0x1f, 0xff, 0xe3, 0xfe,
0x3f, 0xff, 0xc3, 0x8f, 0x83, 0xff, 0xfc, 0x7f,
0xe7, 0xff, 0xf8, 0x71, 0xf0, 0x7f, 0xff, 0x8f,
0xfc, 0xff, 0xff, 0xe, 0x3e, 0xf, 0xff, 0xf3,
0xff, 0x9f, 0xff, 0xe1, 0xc7, 0xc1, 0xff, 0xfe,
0x3f, 0xf3, 0xff, 0xfc, 0x38, 0xf8, 0x3f, 0xff,
0xc7, 0xfe, 0x7f, 0xff, 0x87, 0x1f, 0x7, 0xff,
0xf8, 0xff, 0x8f, 0xff, 0xf0, 0xe3, 0xe0, 0xff,
0xff, 0xf, 0xe1, 0xff, 0xfe, 0x1c, 0x7c, 0x0,
0x0, 0x0, 0x30, 0x0, 0x0, 0x3, 0x8f, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x3e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc7,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x1f, 0x7, 0xff, 0x81, 0xff, 0xc0, 0xff, 0xf0,
0xe3, 0xe0, 0xff, 0xf0, 0x3f, 0xf8, 0x1f, 0xfe,
0x1c, 0x7c, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x3, 0x8f, 0x83, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x71, 0xf0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0xe, 0x3e, 0xf, 0xff, 0x3, 0xff, 0x81,
0xff, 0xe1, 0xc7, 0xc1, 0xff, 0xe0, 0x7f, 0xf0,
0x3f, 0xfc, 0x38, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x1f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe3, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x7c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x8f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x71, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x3e, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe1, 0xc7, 0xc1, 0xff,
0xff, 0xff, 0xf0, 0x3f, 0xfc, 0x38, 0xf8, 0x3f,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0x1f, 0x7,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xe3, 0xe0,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1c, 0x7c,
0x1f, 0xff, 0xff, 0xff, 0x3, 0xff, 0xc3, 0x8f,
0x83, 0xff, 0xff, 0xff, 0xe0, 0x7f, 0xf8, 0x71,
0xf0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xe,
0x3e, 0xf, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1,
0xc7, 0xc1, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x38, 0xf8, 0x3f, 0xff, 0xff, 0xfe, 0x7, 0xff,
0x87, 0x1f, 0x7, 0xff, 0xff, 0xff, 0xc0, 0xff,
0xf0, 0xe3, 0xe0, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x1c, 0x7c, 0x1f, 0xff, 0xff, 0xff, 0x0,
0x0, 0x3, 0x8f, 0x83, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x7b, 0xb8, 0x7f, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x7, 0x77, 0xf, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0xfc, 0x70, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0xf, 0x8f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc,
/* U+1F4F1 "📱" */
0xf, 0xff, 0xff, 0xff, 0xe0, 0x7f, 0xff, 0xff,
0xff, 0xf1, 0xff, 0xe0, 0x0, 0xff, 0xf7, 0xff,
0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xf0,
0x0, 0x0, 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0,
0x1f, 0x80, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0,
0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0xfc,
0x1e, 0x78, 0xf3, 0xc1, 0xf8, 0x3c, 0xf1, 0xe7,
0x83, 0xf0, 0x79, 0xe3, 0xcf, 0x7, 0xe0, 0xf3,
0xc7, 0x9e, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x1f,
0x80, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x7e, 0xf, 0x3c, 0x79, 0xe0, 0xfc, 0x1e,
0x78, 0xf3, 0xc1, 0xf8, 0x3c, 0xf1, 0xe7, 0x83,
0xf0, 0x79, 0xe3, 0xcf, 0x7, 0xe0, 0x0, 0x0,
0x0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0x83,
0xcf, 0x1e, 0x78, 0x3f, 0x7, 0x9e, 0x3c, 0xf0,
0x7e, 0xf, 0x3c, 0x79, 0xe0, 0xfc, 0x1e, 0x78,
0xf3, 0xc1, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xf0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0xf3, 0xc0, 0x0,
0xf, 0xc1, 0xe7, 0x80, 0x0, 0x1f, 0x83, 0xcf,
0x0, 0x0, 0x3f, 0x7, 0x9e, 0x0, 0x0, 0x7e,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x1, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0xf,
0xc0, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0,
0x0, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x1,
0xf8, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xc0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x3f, 0x0, 0x0, 0x0, 0x0, 0x7e, 0xf, 0x3c,
0x79, 0xe0, 0xfc, 0x1e, 0x78, 0xf3, 0xc1, 0xf8,
0x3c, 0xf1, 0xe7, 0x83, 0xf0, 0x79, 0xe3, 0xcf,
0x7, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0,
0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x3f,
0x0, 0x0, 0x0, 0x0, 0x7f, 0x0, 0x0, 0x0,
0x1, 0xef, 0x0, 0x0, 0x0, 0x7, 0x8f, 0xff,
0xff, 0xff, 0xfe, 0xf, 0xff, 0xff, 0xff, 0xf8,
/* U+1F4F2 "📲" */
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x1f, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x1f, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x0, 0x1f,
0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0xf,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x40, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x60, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x70, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x7c, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x7e, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0xff, 0xff, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0xff, 0xff, 0x80, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0xff, 0xff, 0xc0, 0x70, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xe0, 0x70, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf0, 0x70, 0x79, 0xe0, 0x0, 0x7,
0xff, 0xff, 0xf0, 0x70, 0x79, 0xe0, 0x0, 0x7,
0xff, 0xff, 0xe0, 0x70, 0x79, 0xe0, 0x0, 0x7,
0xff, 0xff, 0xc0, 0x70, 0x79, 0xe0, 0x0, 0x7,
0xff, 0xff, 0x80, 0x70, 0x79, 0xe0, 0x0, 0x7,
0xff, 0xff, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x7e, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x7c, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x78, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x70, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x60, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x40, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x0, 0x0, 0x70, 0x79, 0xe3, 0xcf, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0xf,
0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf8,
/* U+1F4F3 "📳" */
0x0, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x38, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0,
0x70, 0x3, 0xff, 0x0, 0x38, 0x0, 0x0, 0x1,
0xc0, 0xf, 0xfc, 0x0, 0xe0, 0x0, 0x4, 0x7,
0x0, 0x0, 0x0, 0x3, 0x80, 0x80, 0x38, 0x1c,
0x0, 0x0, 0x0, 0xe, 0x6, 0x0, 0xe0, 0x70,
0x0, 0x0, 0x0, 0x38, 0x1c, 0x7, 0x1, 0xc0,
0x0, 0x0, 0x0, 0xe0, 0x38, 0x1c, 0x7, 0x0,
0x0, 0x0, 0x3, 0x80, 0xe0, 0xe0, 0x1c, 0x3f,
0xff, 0xff, 0xe, 0x1, 0xc3, 0x80, 0x70, 0xff,
0xff, 0xfc, 0x38, 0x7, 0x1c, 0x1, 0xc3, 0xff,
0xff, 0xf0, 0xe0, 0xe, 0x60, 0x7, 0xe, 0x3c,
0xf1, 0xc3, 0x80, 0x1f, 0x80, 0x1c, 0x38, 0xf3,
0xc7, 0xe, 0x0, 0x77, 0x0, 0x70, 0xe3, 0xcf,
0x1c, 0x38, 0x3, 0x9c, 0x1, 0xc3, 0xff, 0xff,
0xf0, 0xe0, 0xe, 0x38, 0x7, 0xf, 0xff, 0xff,
0xc3, 0x80, 0x70, 0x60, 0x1c, 0x3f, 0xff, 0xff,
0xe, 0x1, 0xc1, 0xc0, 0x70, 0xff, 0xff, 0xfc,
0x38, 0xe, 0x3, 0x81, 0xc3, 0x8f, 0x3c, 0x70,
0xe0, 0x70, 0xe, 0x7, 0xe, 0x3c, 0xf1, 0xc3,
0x81, 0xc0, 0x38, 0x1c, 0x38, 0xf3, 0xc7, 0xe,
0x7, 0x1, 0xc0, 0x70, 0xff, 0xff, 0xfc, 0x38,
0xe, 0x7, 0x1, 0xc3, 0xff, 0xff, 0xf0, 0xe0,
0x38, 0x38, 0x7, 0xf, 0xff, 0xff, 0xc3, 0x80,
0x71, 0xc0, 0x1c, 0x3f, 0xff, 0xff, 0xe, 0x0,
0xe7, 0x0, 0x70, 0xe3, 0xcf, 0xfc, 0x38, 0x3,
0xb8, 0x1, 0xc3, 0x8f, 0x3f, 0xf0, 0xe0, 0x7,
0xe0, 0x7, 0xe, 0x3c, 0xff, 0xc3, 0x80, 0x1d,
0xc0, 0x1c, 0x3f, 0xff, 0xff, 0xe, 0x0, 0xe3,
0x80, 0x70, 0xff, 0xff, 0xfc, 0x38, 0x7, 0xe,
0x1, 0xc3, 0xff, 0xff, 0xf0, 0xe0, 0x1c, 0x1c,
0x7, 0xf, 0xff, 0xff, 0xc3, 0x80, 0xe0, 0x70,
0x1c, 0x3f, 0xff, 0xff, 0xe, 0x3, 0x80, 0xe0,
0x70, 0xff, 0xff, 0xfc, 0x38, 0x1c, 0x3, 0x81,
0xc3, 0xff, 0xff, 0xf0, 0xe0, 0x70, 0xe, 0x7,
0xf, 0xff, 0xff, 0xc3, 0x81, 0xc0, 0x70, 0x1c,
0x3f, 0xff, 0xff, 0xe, 0x3, 0x81, 0xc0, 0x70,
0xff, 0xff, 0xfc, 0x38, 0xe, 0xe, 0x1, 0xc3,
0xff, 0xff, 0xf0, 0xe0, 0x1c, 0x70, 0x7, 0xf,
0xff, 0xff, 0xc3, 0x80, 0x39, 0xc0, 0x1c, 0x3f,
0xff, 0xff, 0xe, 0x0, 0xee, 0x0, 0x70, 0xff,
0xff, 0xfc, 0x38, 0x1, 0xf8, 0x1, 0xc3, 0xff,
0xff, 0xf0, 0xe0, 0x7, 0x70, 0x7, 0xf, 0xff,
0xff, 0xc3, 0x80, 0x38, 0xc0, 0x1c, 0x3f, 0xff,
0xff, 0xe, 0x0, 0xc3, 0x80, 0x70, 0xff, 0xff,
0xfc, 0x38, 0x7, 0x7, 0x1, 0xc3, 0xff, 0xff,
0xf0, 0xe0, 0x38, 0x1c, 0x7, 0xe, 0x3c, 0xf1,
0xc3, 0x80, 0xe0, 0x38, 0x1c, 0x38, 0xf3, 0xc7,
0xe, 0x7, 0x0, 0xe0, 0x70, 0xe3, 0xcf, 0x1c,
0x38, 0x1c, 0x1, 0x81, 0xc3, 0xff, 0xff, 0xf0,
0xe0, 0x60, 0x0, 0x7, 0xf, 0xff, 0xff, 0xc3,
0x80, 0x0, 0x0, 0x1c, 0x3f, 0xff, 0xff, 0xe,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x38,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0xe0,
0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x3, 0x80,
0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0x0,
/* U+1F4F4 "📴" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 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, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x3, 0x1f, 0xc0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0x1, 0x8f, 0xf0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xe3, 0xff,
0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xf1, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xfc, 0x7f,
0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xfe, 0x3f,
0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0xfe, 0x3, 0xf0,
0xe, 0x3, 0xff, 0xff, 0xfc, 0x7e, 0x0, 0xf8,
0x7, 0x1, 0xff, 0xff, 0xfe, 0x3e, 0x0, 0x3c,
0x3, 0x80, 0xff, 0xff, 0xff, 0x1f, 0xf, 0x1e,
0x3f, 0xcf, 0xff, 0xff, 0xff, 0x8f, 0xf, 0xc7,
0x1f, 0xe7, 0xff, 0xff, 0xff, 0xc7, 0x87, 0xe3,
0x8f, 0xf3, 0xff, 0xff, 0xff, 0xe3, 0xc3, 0xf9,
0xc7, 0xf9, 0xff, 0xff, 0xff, 0xf1, 0xe1, 0xfc,
0xe0, 0x1c, 0x7, 0xff, 0xff, 0xf8, 0xf0, 0xfe,
0x70, 0xe, 0x3, 0xff, 0xff, 0xfc, 0x78, 0x7e,
0x38, 0xff, 0x3f, 0xff, 0xff, 0xfe, 0x3e, 0x3f,
0x3c, 0x7f, 0x9f, 0xff, 0xff, 0xff, 0x1f, 0xf,
0x1e, 0x3f, 0xcf, 0xff, 0xff, 0xff, 0x8f, 0xc0,
0x1f, 0x1f, 0xe7, 0xff, 0xff, 0xff, 0xc7, 0xf8,
0x3f, 0x8f, 0xf3, 0xff, 0xff, 0xff, 0xe3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f,
0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f,
0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x1f,
0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x8f,
0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xc7,
0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xe3,
0xff, 0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0x0, 0x7f, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x7f, 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, 0xfb,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
/* U+1F4F5 "📵" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x3f, 0xff, 0x80, 0x7,
0x80, 0x0, 0x3c, 0x1, 0xff, 0xff, 0xfc, 0x1,
0xe0, 0x0, 0x1f, 0x1, 0xff, 0xff, 0xff, 0x0,
0x70, 0x0, 0x1d, 0xc0, 0xff, 0xff, 0xff, 0x80,
0x1c, 0x0, 0x1c, 0x70, 0x7e, 0x70, 0xf, 0xc0,
0x7, 0x0, 0x1e, 0x1c, 0x3f, 0x38, 0x7, 0xe0,
0x3, 0xc0, 0xe, 0x7, 0x1f, 0xff, 0xff, 0xf0,
0x0, 0xe0, 0xe, 0x1, 0xcf, 0xff, 0xff, 0xf8,
0x0, 0x38, 0x7, 0x0, 0x77, 0x0, 0x0, 0x1c,
0x0, 0x1c, 0x7, 0x0, 0x1f, 0x80, 0x0, 0xe,
0x0, 0x7, 0x3, 0x80, 0x7, 0xc0, 0x0, 0x7,
0x0, 0x3, 0x83, 0x80, 0x1, 0xe0, 0x0, 0x3,
0x80, 0x0, 0xe1, 0xc0, 0x0, 0x70, 0x0, 0x1,
0xc0, 0x0, 0x71, 0xc0, 0x0, 0x3c, 0x0, 0x0,
0xe0, 0x0, 0x3c, 0xe0, 0x0, 0x1f, 0x0, 0x0,
0x70, 0x0, 0xe, 0x70, 0x0, 0xf, 0xc0, 0x0,
0x38, 0x0, 0x7, 0x38, 0x0, 0x7, 0x70, 0x0,
0x1c, 0x0, 0x3, 0xb8, 0x0, 0x3, 0x9c, 0x0,
0xe, 0x0, 0x0, 0xfc, 0x0, 0x1, 0xc7, 0x0,
0x7, 0x0, 0x0, 0x7e, 0x0, 0x0, 0xe1, 0xc0,
0x3, 0x80, 0x0, 0x3f, 0x0, 0x0, 0x70, 0x70,
0x1, 0xc0, 0x0, 0x1f, 0x80, 0x0, 0x38, 0x1c,
0x0, 0xe0, 0x0, 0xf, 0xc0, 0x0, 0x1c, 0x7,
0x0, 0x70, 0x0, 0x7, 0xe0, 0x0, 0xe, 0x1,
0xc0, 0x38, 0x0, 0x3, 0xf0, 0x0, 0x7, 0x0,
0x70, 0x1c, 0x0, 0x1, 0xf8, 0x0, 0x3, 0x80,
0x1c, 0xe, 0x0, 0x0, 0xfc, 0x0, 0x1, 0xc0,
0x7, 0x7, 0x0, 0x0, 0x7e, 0x0, 0x0, 0xe0,
0x1, 0xc3, 0x80, 0x0, 0x3f, 0x0, 0x0, 0x70,
0x0, 0x71, 0xc0, 0x0, 0x3d, 0xc0, 0x0, 0x38,
0x0, 0x1c, 0xe0, 0x0, 0x1c, 0xe0, 0x0, 0x1c,
0x0, 0x7, 0x70, 0x0, 0xe, 0x70, 0x0, 0xe,
0x0, 0x1, 0xf8, 0x0, 0x7, 0x3c, 0x0, 0x7,
0x0, 0x0, 0x7c, 0x0, 0x7, 0x8e, 0x0, 0x3,
0x80, 0x0, 0x1e, 0x0, 0x3, 0x87, 0x0, 0x1,
0xc0, 0x0, 0x7, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0xe0, 0x0, 0x3, 0xc0, 0x1, 0xc0, 0xe0, 0x0,
0x70, 0x0, 0x1, 0xf0, 0x0, 0xe0, 0x38, 0x0,
0x38, 0x0, 0x0, 0xfc, 0x0, 0xe0, 0x1c, 0x0,
0x1f, 0xff, 0xff, 0xf7, 0x0, 0x70, 0x7, 0x0,
0xf, 0xff, 0xff, 0xf9, 0xc0, 0x70, 0x3, 0xc0,
0x7, 0xf8, 0x3, 0xfc, 0x70, 0x78, 0x0, 0xe0,
0x3, 0xfc, 0x1, 0xfe, 0x1c, 0x38, 0x0, 0x38,
0x1, 0xff, 0xff, 0xff, 0x7, 0x38, 0x0, 0xe,
0x0, 0xff, 0xff, 0xff, 0x81, 0xf8, 0x0, 0x7,
0x80, 0x3f, 0xff, 0xff, 0x80, 0x78, 0x0, 0x1,
0xe0, 0x1, 0xff, 0xfc, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F4F6 "📶" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 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, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3,
0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1,
0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x7e, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3f, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1f, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xf, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xe0, 0x7e,
0x3, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x3f,
0x1, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x1f,
0x80, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xfc, 0xf,
0xc0, 0x7e, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x7,
0xe0, 0x3f, 0x3, 0xff, 0xff, 0xff, 0xff, 0x3,
0xf0, 0x1f, 0x81, 0xff, 0xff, 0xff, 0xff, 0x81,
0xf8, 0xf, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xc0,
0xfc, 0x7, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xe0,
0x7e, 0x3, 0xf0, 0x3f, 0xff, 0xff, 0x3, 0xf0,
0x3f, 0x1, 0xf8, 0x1f, 0xff, 0xff, 0x81, 0xf8,
0x1f, 0x80, 0xfc, 0xf, 0xff, 0xff, 0xc0, 0xfc,
0xf, 0xc0, 0x7e, 0x7, 0xff, 0xff, 0xe0, 0x7e,
0x7, 0xe0, 0x3f, 0x3, 0xff, 0xff, 0xf0, 0x3f,
0x3, 0xf0, 0x1f, 0x81, 0xff, 0xff, 0xf8, 0x1f,
0x81, 0xf8, 0xf, 0xc0, 0xff, 0xff, 0xfc, 0xf,
0xc0, 0xfc, 0x7, 0xe0, 0x7f, 0xff, 0xfe, 0x7,
0xe0, 0x7e, 0x3, 0xf0, 0x3f, 0xff, 0xff, 0x3,
0xf0, 0x3f, 0x1, 0xf8, 0x1f, 0xff, 0xff, 0x81,
0xf8, 0x1f, 0x80, 0xfc, 0xf, 0xff, 0xff, 0xc0,
0xfc, 0xf, 0xc0, 0x7e, 0x7, 0xff, 0xff, 0xe0,
0x7e, 0x7, 0xe0, 0x3f, 0x3, 0xff, 0xff, 0xf0,
0x3f, 0x3, 0xf0, 0x1f, 0x81, 0xff, 0xff, 0xf8,
0x1f, 0x81, 0xf8, 0xf, 0xc0, 0xff, 0xff, 0xfc,
0xf, 0xc0, 0xfc, 0x7, 0xe0, 0x7f, 0xff, 0xfe,
0x7, 0xe0, 0x7e, 0x3, 0xf0, 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, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F4F7 "📷" */
0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xfc,
0x3, 0xfe, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x7,
0xfc, 0x7, 0xff, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x7, 0xfc, 0x7, 0xff, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x7, 0xfc, 0x7, 0xff, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x7, 0xfc, 0x7, 0xff, 0x7, 0xe0,
0x0, 0x0, 0x0, 0x3, 0xfc, 0x7, 0xff, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfe,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x40,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x3, 0xf8, 0x3, 0xf8, 0x0, 0x7, 0xe0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0xfc, 0x0, 0x7,
0xe0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x3e, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x1f,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x3e, 0x0, 0x40,
0xf, 0x80, 0x7, 0xe0, 0x0, 0x0, 0x7c, 0x7,
0xfc, 0x7, 0x80, 0x7, 0xe0, 0x0, 0x0, 0x78,
0x1f, 0xff, 0x3, 0xc0, 0x7, 0xe0, 0x0, 0x0,
0xf8, 0x3f, 0xff, 0x83, 0xc0, 0x7, 0xe0, 0x0,
0x0, 0xf0, 0x7f, 0xff, 0xc1, 0xe0, 0x7, 0xe0,
0x0, 0x0, 0xf0, 0x7f, 0xff, 0xc1, 0xe0, 0x7,
0xe0, 0x0, 0x1, 0xe0, 0xff, 0xff, 0xe0, 0xf0,
0x7, 0xe0, 0x0, 0x1, 0xe0, 0xff, 0xff, 0xe0,
0xf0, 0x7, 0xe0, 0x0, 0x1, 0xe1, 0xff, 0xff,
0xf0, 0xf0, 0x7, 0xe0, 0x0, 0x1, 0xe1, 0xff,
0xff, 0xf0, 0xf0, 0x7, 0xe0, 0x0, 0x1, 0xe1,
0xff, 0xff, 0xf0, 0xf0, 0x7, 0xe0, 0x0, 0x1,
0xc1, 0xff, 0xff, 0xf0, 0xf0, 0x7, 0xe0, 0x0,
0x1, 0xe1, 0xff, 0xff, 0xf0, 0xf0, 0x7, 0xe0,
0x0, 0x1, 0xe1, 0xff, 0xff, 0xf0, 0xf0, 0x7,
0xe0, 0x0, 0x1, 0xe1, 0xff, 0xff, 0xf0, 0xf0,
0x7, 0xe0, 0x0, 0x1, 0xe0, 0xff, 0xff, 0xe0,
0xf0, 0x7, 0xe0, 0x0, 0x1, 0xe0, 0xff, 0xff,
0xe0, 0xf0, 0x7, 0xe0, 0x0, 0x1, 0xf0, 0x7f,
0xff, 0xc1, 0xe0, 0x7, 0xe0, 0x0, 0x0, 0xf0,
0x3f, 0xff, 0x81, 0xe0, 0x7, 0xe0, 0x0, 0x0,
0xf8, 0x1f, 0xff, 0x83, 0xe0, 0x7, 0xe0, 0x0,
0x0, 0x78, 0xf, 0xfe, 0x7, 0xc0, 0x7, 0xe0,
0x0, 0x0, 0x7c, 0x3, 0xf8, 0x7, 0xc0, 0x7,
0xe0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0xf, 0x80,
0x7, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x7f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xe0,
0x1, 0xfe, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x7,
0xfe, 0xf, 0xfc, 0x0, 0x7, 0xe0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x7, 0xf0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0xf,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8,
/* U+1F4F8 "📸" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x60, 0x0, 0x1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0x80, 0xf, 0x0, 0x0, 0x0, 0x0,
0xff, 0xfc, 0x1f, 0xc0, 0x1f, 0x0, 0x0, 0x0,
0x0, 0xff, 0xfc, 0xf, 0xf0, 0x3f, 0x0, 0x0,
0x30, 0x0, 0xff, 0xfc, 0xe, 0x78, 0x3b, 0x0,
0x3, 0xe0, 0x0, 0xff, 0xfc, 0xe, 0x3c, 0x73,
0x0, 0x3f, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0x1e,
0xe3, 0xff, 0xff, 0xf8, 0x7f, 0xff, 0xff, 0xff,
0x7, 0xe3, 0xff, 0xff, 0xfc, 0x70, 0x0, 0x0,
0x7, 0x3, 0xc3, 0xff, 0x3c, 0xe, 0xe0, 0x0,
0x0, 0x3, 0x80, 0x83, 0xf0, 0x78, 0x7, 0xe0,
0x0, 0x0, 0x3, 0x80, 0x2, 0x0, 0xf0, 0x7,
0xe0, 0x0, 0x0, 0x1, 0x80, 0x0, 0x1, 0xfe,
0x7, 0xe0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x7,
0xff, 0x7, 0xe0, 0x0, 0x0, 0x3, 0xc0, 0x0,
0xf, 0xff, 0x7, 0xe0, 0x0, 0x0, 0xf, 0xc0,
0x0, 0x1f, 0xff, 0x7, 0xe0, 0x0, 0x0, 0x1f,
0x0, 0x0, 0x3f, 0xff, 0x7, 0xe0, 0x0, 0x0,
0x7c, 0x0, 0x0, 0x7f, 0xff, 0x7, 0xe0, 0x0,
0x1, 0xf0, 0x0, 0x0, 0x73, 0xfe, 0x7, 0xe0,
0x0, 0x7, 0xc0, 0x0, 0x0, 0x30, 0x0, 0x7,
0xe0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x38, 0x0,
0x7, 0xe0, 0x0, 0x7f, 0xff, 0xf8, 0x0, 0x18,
0x0, 0x7, 0xe0, 0x1, 0xff, 0xff, 0xf8, 0x1c,
0x1c, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x3f, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x3f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x3, 0xf8, 0x73, 0xfe, 0x0, 0x7, 0xe0, 0x0,
0x0, 0xf, 0xf8, 0x60, 0x7f, 0x0, 0x7, 0xe0,
0x0, 0x0, 0x1f, 0x98, 0xe0, 0x3f, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x1f, 0x1c, 0xc0, 0x1f, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x3e, 0x1d, 0xf0, 0xf,
0x80, 0x7, 0xe0, 0x0, 0x0, 0x7c, 0x1f, 0xfe,
0x7, 0x80, 0x7, 0xe0, 0x0, 0x0, 0x78, 0x1f,
0xff, 0x3, 0xc0, 0x7, 0xe0, 0x0, 0x0, 0xf8,
0x3f, 0xff, 0x81, 0xe0, 0x7, 0xe0, 0x0, 0x0,
0xf0, 0x7f, 0xff, 0xc1, 0xe0, 0x7, 0xe0, 0x0,
0x1, 0xf0, 0xff, 0xff, 0xe1, 0xe0, 0x7, 0xe0,
0x0, 0x1, 0xe0, 0xff, 0xff, 0xe0, 0xf0, 0x7,
0xe0, 0x0, 0x1, 0xe1, 0xff, 0xff, 0xf0, 0xf0,
0x7, 0xe0, 0x0, 0x1, 0xe1, 0xff, 0xff, 0xf0,
0xf0, 0x7, 0xe0, 0x0, 0x1, 0xe1, 0xff, 0xff,
0xf0, 0xf0, 0x7, 0xe0, 0x0, 0x1, 0xc1, 0xff,
0xff, 0xf0, 0xf0, 0x7, 0xe0, 0x0, 0x1, 0xc1,
0xff, 0xff, 0xf0, 0xf0, 0x7, 0xe0, 0x0, 0x1,
0xe1, 0xff, 0xff, 0xf0, 0xf0, 0x7, 0xe0, 0x0,
0x1, 0xe1, 0xff, 0xff, 0xf0, 0xf0, 0x7, 0xe0,
0x0, 0x1, 0xe0, 0xff, 0xff, 0xe0, 0xf0, 0x7,
0xe0, 0x0, 0x1, 0xe0, 0xff, 0xff, 0xe0, 0xf0,
0x7, 0xe0, 0x0, 0x1, 0xf0, 0x7f, 0xff, 0xc1,
0xe0, 0x7, 0xe0, 0x0, 0x0, 0xf0, 0x7f, 0xff,
0xc1, 0xe0, 0x7, 0xe0, 0x0, 0x0, 0xf8, 0x3f,
0xff, 0x83, 0xe0, 0x7, 0xe0, 0x0, 0x0, 0x78,
0x1f, 0xff, 0x3, 0xc0, 0x7, 0xe0, 0x0, 0x0,
0x7c, 0x7, 0xfc, 0x7, 0xc0, 0x7, 0xe0, 0x0,
0x0, 0x3e, 0x0, 0x0, 0xf, 0x80, 0x7, 0xff,
0xff, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0xf, 0xe0, 0x0, 0xfe,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x7, 0xfc, 0x7,
0xfc, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xf0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xe0, 0x0, 0x7, 0xf0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0x80, 0x0, 0xf, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8,
/* U+1F4F9 "📹" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf8, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xf8, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1e, 0x70, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x70, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x71,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0,
0xef, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf0, 0x3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x80, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0xf3, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x7, 0x8f, 0xbe, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x3f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x70, 0x1c, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x30,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, 0x80,
0x61, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x77,
0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xee, 0x1, 0x80, 0x0, 0xff, 0xff, 0xff, 0xfc,
0x1, 0xdc, 0x7, 0x0, 0x7, 0xff, 0xff, 0xff,
0xfe, 0x1, 0xb8, 0xe, 0x0, 0x1e, 0x0, 0x0,
0x0, 0x1c, 0x3, 0xf0, 0x18, 0x0, 0x38, 0x0,
0x0, 0x0, 0x1c, 0x7, 0xe0, 0x30, 0x0, 0x70,
0x0, 0x0, 0x0, 0x38, 0xf, 0xc0, 0x60, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x70, 0x1f, 0x80, 0xc0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0xe0, 0x3f, 0x1,
0x80, 0x3, 0x80, 0x0, 0x0, 0x1, 0xc0, 0x7e,
0x3, 0x1, 0xff, 0x0, 0x0, 0x0, 0x3, 0x80,
0xfc, 0x6, 0x3, 0xfe, 0x0, 0x0, 0x0, 0x7,
0x1, 0xf8, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x3, 0xf0, 0x18, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0xe0, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0xf, 0xc0, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x1f, 0x80, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x3f, 0x1, 0x80,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x76, 0x3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0xee,
0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x1,
0xdc, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0x3, 0xb8, 0x18, 0xf, 0xf8, 0x0, 0x0, 0x0,
0x1c, 0x7, 0x7f, 0xf0, 0x1f, 0xf0, 0x0, 0x0,
0x0, 0x38, 0xe, 0x7f, 0xe0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x70, 0x1c, 0x0, 0xc0, 0x1, 0xc0,
0x0, 0x0, 0x0, 0xe0, 0x38, 0x1, 0x80, 0x3,
0x80, 0x0, 0x0, 0x1, 0xc0, 0x70, 0x3, 0x0,
0x7, 0x0, 0x0, 0x0, 0x3, 0x80, 0xe0, 0x3,
0x0, 0xe, 0x0, 0x0, 0x0, 0x7, 0x1, 0x80,
0x6, 0x0, 0xe, 0x0, 0x0, 0x0, 0xc, 0x7,
0x0, 0xc, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf8,
0xe, 0x0, 0x18, 0x0, 0xf, 0xff, 0xff, 0xff,
0xc0, 0x1c, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0x0, 0x60, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc0, 0x0, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x1,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0,
/* U+1F4FA "📺" */
0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x80, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf8, 0x0, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x3, 0xf0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xc0, 0xe, 0x7, 0xe0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x36, 0xf, 0xc0, 0xff,
0xf8, 0x7f, 0xff, 0xff, 0xe0, 0xee, 0x1f, 0x81,
0xff, 0x0, 0xff, 0xff, 0xff, 0xc1, 0x9c, 0x3f,
0x7, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xc3, 0xb8,
0x7e, 0xf, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0x83,
0x60, 0xfc, 0x1f, 0xc7, 0xff, 0xff, 0xff, 0xff,
0x3, 0x81, 0xf8, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x3, 0xf0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x7, 0xe1, 0xf7, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0xf, 0xc3, 0xc7, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x38, 0x1f, 0x87, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xf0, 0xf8, 0x3f, 0xf,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x38, 0x7e,
0x1e, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc6, 0x30,
0xfc, 0x3c, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8e,
0x61, 0xf8, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe, 0x83, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0xe, 0x7, 0xe1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0xf, 0xc3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x1f, 0x87, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x7e, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xe0, 0xfc,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xe1,
0xf8, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f,
0xc3, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3f, 0x87, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x7f, 0xf, 0xc1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xfe, 0x1f, 0x83, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe1, 0xfc, 0x3f, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc3, 0xf8, 0x7e, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0x87, 0xf0, 0xfc, 0xf,
0xff, 0xff, 0xff, 0xff, 0xfe, 0xf, 0xe1, 0xf8,
0xf, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1f, 0xc3,
0xf0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3f,
0x87, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xff, 0x0,
0x7f, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7c, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xdf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
/* U+1F4FB "📻" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xf,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf8,
0x0, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xe0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xc1, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe7, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xfe, 0xf, 0xc1, 0xff, 0xff, 0xc0,
0x7f, 0xff, 0xff, 0xff, 0xfc, 0x7e, 0xf, 0xff,
0xfe, 0x7, 0xff, 0x7f, 0xff, 0xff, 0xe3, 0xf0,
0x0, 0x0, 0x0, 0x3f, 0xfb, 0xff, 0xff, 0xff,
0x1f, 0x80, 0x0, 0x0, 0x1, 0xe1, 0xdf, 0xe,
0x1c, 0x78, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xe,
0xf8, 0x70, 0xe3, 0xc7, 0xe0, 0x0, 0x0, 0x0,
0x7f, 0xf7, 0xff, 0xff, 0xfe, 0x3f, 0x7, 0xff,
0xff, 0x3, 0xff, 0xbf, 0xff, 0xff, 0xf1, 0xf8,
0x3f, 0xff, 0xf8, 0x18, 0x0, 0x0, 0x0, 0x0,
0x8f, 0xc0, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0,
0x0, 0x4, 0x7e, 0x0, 0x0, 0x0, 0x7, 0xff,
0x7f, 0xff, 0xff, 0xe3, 0xf0, 0x0, 0x0, 0x0,
0x3f, 0xfb, 0xff, 0xff, 0xff, 0x1f, 0x80, 0x0,
0x0, 0x1, 0xff, 0xdf, 0xff, 0xff, 0xf8, 0xfc,
0x1f, 0xff, 0xfc, 0xf, 0xe6, 0xcf, 0xcf, 0x9f,
0xc7, 0xe0, 0xff, 0xff, 0xe0, 0x7f, 0xf7, 0xff,
0xff, 0xfe, 0x3f, 0x0, 0x0, 0x0, 0x3, 0xff,
0xbf, 0xff, 0xff, 0xf1, 0xf8, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xc0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xf8, 0x7e,
0xf, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xf0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0x83, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xf, 0x80, 0x0, 0xf8, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x0, 0x1f, 0xf0, 0x3f,
0x0, 0x0, 0x0, 0x0, 0x1e, 0xfc, 0x1, 0xc3,
0xc1, 0xf8, 0x3f, 0xff, 0xf8, 0x0, 0xc6, 0x60,
0x1f, 0x6, 0xf, 0xc1, 0xff, 0xff, 0xc0, 0xc,
0x33, 0x80, 0xdc, 0x38, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x61, 0x8c, 0x6, 0x70, 0xc3, 0xf0, 0x0,
0x0, 0x0, 0x3, 0x8, 0x60, 0x71, 0x86, 0x1f,
0x80, 0x0, 0x0, 0x0, 0x18, 0x3, 0x1, 0x80,
0x30, 0xfc, 0x1f, 0xff, 0xfc, 0x0, 0xc0, 0x18,
0xc, 0x1, 0x87, 0xe0, 0xff, 0xff, 0xe0, 0x3,
0x1, 0x80, 0x70, 0x18, 0x3f, 0x7, 0xff, 0xff,
0x0, 0x1e, 0x1c, 0x1, 0xc3, 0xc1, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xc0, 0x7, 0xfc, 0xf,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0xf,
0x80, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x39, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80,
/* U+1F4FC "📼" */
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc3, 0x86, 0x0, 0x0, 0x18,
0x79, 0xff, 0xff, 0xfe, 0x1c, 0x78, 0x0, 0x0,
0x78, 0x77, 0xff, 0xff, 0xf0, 0x63, 0xe0, 0x0,
0x1, 0xf8, 0xd3, 0xff, 0xff, 0xc3, 0x1f, 0x80,
0x0, 0x7, 0xf1, 0xcf, 0xff, 0xfe, 0xc, 0xe7,
0xff, 0xff, 0xf9, 0xe7, 0x1f, 0xff, 0xf8, 0x67,
0x9f, 0xff, 0xff, 0xe3, 0x9c, 0x7f, 0xff, 0xe1,
0x9c, 0x7f, 0xff, 0xff, 0x87, 0x31, 0xff, 0xff,
0x86, 0x71, 0xff, 0xff, 0xfe, 0x1c, 0xc7, 0xff,
0xfe, 0x19, 0xc6, 0x0, 0x0, 0x18, 0x73, 0x1f,
0xff, 0xf8, 0x67, 0x18, 0x0, 0x0, 0x61, 0xcc,
0x7f, 0xff, 0xe1, 0x9e, 0x60, 0x0, 0x1, 0x8e,
0x31, 0xff, 0xff, 0x86, 0x39, 0x80, 0x0, 0x6,
0x79, 0xc7, 0xff, 0xfe, 0xc, 0x7e, 0x0, 0x0,
0x1f, 0xc6, 0x1f, 0xff, 0xfc, 0x30, 0xf8, 0x0,
0x0, 0x7e, 0x18, 0xff, 0xff, 0xf0, 0xe1, 0xe0,
0x0, 0x1, 0xe0, 0xc3, 0xff, 0xff, 0xe1, 0xc1,
0x80, 0x0, 0x6, 0x7, 0x1f, 0xff, 0xff, 0xc3,
0x86, 0x0, 0x0, 0x1c, 0x78, 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, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xf7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x9f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
/* U+1F4FD "📽" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc0,
0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0x3, 0x80, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0xff, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x6, 0x3, 0x8, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x62, 0x18, 0x81, 0x18, 0x0, 0x7, 0xf8,
0x0, 0x7, 0x38, 0x7c, 0x1c, 0x60, 0x1, 0xff,
0xf8, 0x0, 0x31, 0xe3, 0xc1, 0xf3, 0x80, 0x3c,
0x0, 0xf0, 0x3, 0x1b, 0xe, 0xd, 0x8c, 0x3,
0x81, 0x1, 0xe0, 0x19, 0x9c, 0x60, 0xc6, 0x60,
0x70, 0x7f, 0x83, 0x80, 0xc9, 0xf0, 0xf, 0x31,
0x87, 0x3, 0xc, 0xe, 0xc, 0x7f, 0x80, 0x7f,
0x8c, 0x30, 0xc, 0xc0, 0x38, 0x60, 0xfc, 0xf3,
0xe0, 0x63, 0x18, 0x7e, 0x18, 0xc3, 0x0, 0xf,
0xc0, 0x3, 0x31, 0xc1, 0xe0, 0xe3, 0x18, 0x0,
0x66, 0x0, 0x19, 0x8b, 0xf, 0xb, 0x98, 0xc0,
0x6, 0x30, 0x0, 0xd8, 0x8c, 0x30, 0xcc, 0x66,
0x3f, 0xf1, 0xbe, 0x6, 0xcc, 0xe0, 0x6, 0x33,
0x31, 0xff, 0x9d, 0xfe, 0x36, 0x7f, 0x80, 0x7f,
0x99, 0x8c, 0xf8, 0xcf, 0x71, 0xe3, 0xfc, 0x3,
0xfc, 0x66, 0x66, 0xc6, 0x33, 0x9f, 0x0, 0x67,
0x0, 0x3, 0x31, 0x3e, 0x70, 0xf8, 0xd8, 0x0,
0x7e, 0x0, 0x19, 0xc7, 0x63, 0x87, 0xc6, 0xc0,
0x3, 0x38, 0x0, 0xc6, 0x17, 0x1c, 0x1c, 0x66,
0x0, 0x18, 0xe0, 0x6, 0x38, 0x31, 0xe0, 0x47,
0x30, 0x4, 0x63, 0xc0, 0x30, 0xe1, 0x8f, 0x80,
0x71, 0x8f, 0xf3, 0x8f, 0xf1, 0x83, 0x1c, 0x64,
0x7, 0xc, 0x67, 0x8e, 0x1f, 0xff, 0xff, 0xff,
0xe0, 0x70, 0x33, 0x38, 0x7f, 0xff, 0xff, 0xff,
0xfc, 0x7, 0x1, 0x8d, 0x83, 0xf8, 0x0, 0x0,
0x0, 0xf8, 0xf0, 0xe, 0x7c, 0x3f, 0x0, 0x0,
0x0, 0x1, 0xfe, 0x0, 0x31, 0xc1, 0xf0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x1, 0xc4, 0x1f, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x7, 0x0, 0xf8,
0x3, 0xff, 0xff, 0xe0, 0x70, 0x0, 0x1c, 0xf,
0x80, 0x7f, 0xff, 0xff, 0xc3, 0x80, 0x0, 0x70,
0x3c, 0x7, 0x80, 0x0, 0x1f, 0x1c, 0x0, 0x1,
0xc0, 0xe0, 0x78, 0x0, 0x0, 0x38, 0x70, 0x0,
0x7, 0x87, 0x3, 0x80, 0x0, 0x1, 0xe3, 0x80,
0x0, 0x1f, 0xf8, 0x1c, 0x0, 0x0, 0xf, 0x1c,
0x0, 0x0, 0x3f, 0xc0, 0xe0, 0x0, 0x0, 0x7f,
0xff, 0x0, 0x0, 0xe, 0x7, 0x0, 0x0, 0x3,
0xff, 0xfc, 0x0, 0x0, 0x70, 0x38, 0x0, 0x0,
0x1e, 0x0, 0xf0, 0x0, 0x3, 0x81, 0xc0, 0x0,
0x0, 0xf0, 0x3, 0x80, 0x0, 0x1c, 0xe, 0x0,
0x0, 0x7, 0x80, 0x1c, 0x0, 0x0, 0xe0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0xe0, 0x0, 0x7, 0x3,
0x80, 0x0, 0x1, 0xe0, 0x7, 0x0, 0x0, 0x38,
0x1c, 0x0, 0x0, 0xf, 0x0, 0x38, 0x0, 0x1,
0xc0, 0xe0, 0x0, 0x0, 0x78, 0x1, 0xc0, 0x0,
0xe, 0x7, 0x0, 0x0, 0x3, 0xc0, 0x1e, 0x0,
0x0, 0x70, 0x38, 0x0, 0x0, 0x1f, 0xff, 0xe0,
0x0, 0x3, 0x81, 0xc0, 0x0, 0x0, 0xff, 0xfe,
0x0, 0x0, 0x1c, 0xe, 0x0, 0x0, 0x7, 0x8e,
0x0, 0x0, 0x0, 0xe0, 0x70, 0x0, 0x0, 0x3c,
0x70, 0x0, 0x0, 0x7, 0x3, 0x80, 0x0, 0x1,
0xe3, 0x80, 0x0, 0x0, 0x38, 0x1e, 0x0, 0x0,
0xe, 0x1c, 0x0, 0x0, 0x1, 0xc0, 0x78, 0x0,
0x0, 0xf0, 0xe0, 0x0, 0x0, 0xe, 0x1, 0xff,
0xff, 0xff, 0x7, 0x0, 0x0, 0x0, 0x70, 0x7,
0xff, 0xff, 0xe0, 0x38, 0x0, 0x0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
/* U+1F4FF "📿" */
0x0, 0x0, 0x0, 0x0, 0x3e, 0x7c, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x7f, 0xef,
0xfc, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xe3, 0xc7, 0x8d, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x61, 0xc1, 0x83, 0x7, 0xc, 0x40, 0x0,
0x0, 0x0, 0x7, 0xc0, 0xc1, 0x83, 0x6, 0x7,
0xf0, 0x0, 0x0, 0x0, 0x1f, 0xc0, 0xc1, 0x83,
0x6, 0x7, 0x18, 0x0, 0x0, 0x0, 0x18, 0xe0,
0xe3, 0xef, 0x8e, 0x6, 0xc, 0x0, 0x0, 0x0,
0x30, 0xe1, 0xff, 0xff, 0xff, 0x6, 0xf, 0xc0,
0x0, 0x0, 0x30, 0x7f, 0xbe, 0x38, 0xf9, 0x9e,
0xf, 0xe0, 0x0, 0x1, 0xf0, 0x7f, 0x0, 0x0,
0x0, 0xfe, 0x1c, 0x30, 0x0, 0x7, 0xf0, 0x60,
0x0, 0x0, 0x0, 0x33, 0x18, 0x30, 0x0, 0x6,
0x38, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x10,
0x0, 0xc, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x30, 0x0, 0x2c, 0x1f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x38, 0x0, 0xfc, 0x18, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x1, 0x86,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc6,
0x3, 0x7, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0x83, 0x3, 0x3, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x83, 0x3, 0x3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0x83, 0xf, 0x86,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc7,
0x1d, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xfe, 0x30, 0x78, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfe, 0x30, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc6, 0x30, 0x60,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x83,
0x30, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0x83, 0x38, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x83, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0x83, 0x7f, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc6,
0x63, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xfc, 0xc1, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x18, 0xc1, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0xc, 0xc1, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xc,
0xe1, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xc, 0x7f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1e, 0xc, 0x3f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x18, 0x39, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x73, 0xf8,
0x30, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe1, 0xe0, 0x60, 0x60, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc0, 0xc0, 0x60, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xc0, 0xc0, 0x30, 0x60,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0, 0xc0,
0x38, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x61, 0x80, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xf8, 0x7f, 0x80, 0xf, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xf8, 0x3e, 0x0, 0xc, 0x38,
0x0, 0x0, 0x0, 0x0, 0xe, 0x18, 0x30, 0x0,
0x18, 0x18, 0x0, 0x0, 0x0, 0x1e, 0xc, 0x1c,
0x70, 0x0, 0x18, 0x1c, 0x0, 0x0, 0x0, 0x3f,
0xc, 0x1f, 0xe0, 0x0, 0xc, 0x3f, 0x0, 0x0,
0x0, 0x63, 0xbc, 0x1f, 0xc0, 0x0, 0xc, 0x7f,
0x80, 0x0, 0xf, 0x61, 0xfe, 0x38, 0x0, 0x0,
0x7, 0xf1, 0xc0, 0x0, 0x1f, 0xc1, 0xff, 0xf0,
0x0, 0x0, 0x3, 0xe0, 0xc0, 0x0, 0x39, 0xc1,
0xc3, 0xe0, 0x0, 0x0, 0x0, 0xc0, 0xc0, 0x0,
0x30, 0xe1, 0x83, 0x0, 0x0, 0x0, 0x0, 0x60,
0xf0, 0x0, 0x30, 0x73, 0x83, 0x0, 0x0, 0x0,
0x0, 0x71, 0xfc, 0x3, 0xf0, 0x7f, 0x83, 0x0,
0x70, 0x0, 0x0, 0x3f, 0x8c, 0x47, 0x30, 0xc8,
0xe7, 0x81, 0xe0, 0x0, 0x0, 0x1f, 0x7, 0xfc,
0x1f, 0xc0, 0xff, 0xc3, 0x80, 0x0, 0x0, 0x3,
0x7, 0xfc, 0x1f, 0x80, 0x3f, 0xce, 0x0, 0x0,
0x0, 0x3, 0xe, 0x1c, 0x18, 0x0, 0x7, 0xfe,
0x0, 0x0, 0x0, 0x1, 0x8c, 0xc, 0x18, 0x0,
0x7, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xfc, 0xe,
0x30, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0, 0x0,
0xfc, 0xf, 0xf0, 0x0, 0x6, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x6, 0x1f, 0xc0, 0x0, 0x6, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x7, 0xf8, 0x0, 0x0,
0x2, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xf0,
0x0, 0x0, 0x3, 0xf, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf9, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x80, 0x0,
/* U+1F600 "😀" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xf, 0xc0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x78, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x78, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xc3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x78, 0x0, 0x1,
0xe0, 0x0, 0x71, 0xc0, 0x0, 0x7e, 0x0, 0x1,
0xf8, 0x0, 0x1c, 0xe0, 0x0, 0x7f, 0x80, 0x1,
0xfe, 0x0, 0xe, 0x70, 0x0, 0x3f, 0xc0, 0x0,
0xff, 0x0, 0x7, 0x38, 0x0, 0x1f, 0xe0, 0x0,
0x7f, 0x80, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x7, 0xf8, 0x0,
0x1f, 0xe0, 0x0, 0x7e, 0x0, 0x1, 0xf8, 0x0,
0x7, 0xe0, 0x0, 0x3f, 0x0, 0x0, 0x78, 0x0,
0x1, 0xe0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1d, 0xc0, 0x7f, 0x0,
0x0, 0x0, 0x7, 0xf0, 0x1c, 0xe0, 0x30, 0xfe,
0x0, 0x0, 0xff, 0xf8, 0xe, 0x70, 0x18, 0x0,
0xff, 0xff, 0xf0, 0xc, 0x7, 0x38, 0xe, 0x0,
0x0, 0x0, 0x0, 0xe, 0x3, 0x8e, 0x7, 0xfc,
0x0, 0x0, 0x0, 0xff, 0x3, 0x87, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1, 0xc3, 0xc0, 0xff,
0xff, 0xff, 0xff, 0xff, 0x81, 0xe0, 0xe0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0x80, 0xe0, 0x78, 0xf,
0xff, 0xff, 0xff, 0xff, 0x80, 0xf0, 0x1c, 0x3,
0xff, 0xff, 0xff, 0xff, 0x80, 0x70, 0xf, 0x0,
0xff, 0xfc, 0xf, 0xff, 0x80, 0x78, 0x3, 0x80,
0x1f, 0xf0, 0x0, 0xff, 0x0, 0x38, 0x0, 0xe0,
0x7, 0xf0, 0x0, 0x3f, 0x0, 0x38, 0x0, 0x78,
0x0, 0xf8, 0x0, 0x1e, 0x0, 0x3c, 0x0, 0x1e,
0x0, 0xf, 0x80, 0x78, 0x0, 0x3c, 0x0, 0x7,
0x80, 0x0, 0x7f, 0xc0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0x1e, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x3, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F601 "😁" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x3e, 0x0, 0x0,
0xf8, 0x0, 0xe, 0x70, 0x0, 0x7f, 0xc0, 0x0,
0xff, 0x0, 0x7, 0x38, 0x0, 0x78, 0x70, 0x0,
0xe1, 0xc0, 0x3, 0xb8, 0x0, 0x30, 0x1c, 0x0,
0xe0, 0x60, 0x0, 0xfc, 0x0, 0x38, 0xe, 0x0,
0x60, 0x38, 0x0, 0x7e, 0x0, 0x18, 0x3, 0x0,
0x30, 0xc, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0xff, 0x80,
0x0, 0x0, 0xff, 0x80, 0x3f, 0x0, 0xff, 0xff,
0xf1, 0xff, 0xff, 0xe0, 0x3d, 0xc0, 0x40, 0x7f,
0xff, 0xff, 0xe0, 0x10, 0x1c, 0xe0, 0x20, 0xc,
0x7f, 0xfc, 0x20, 0x8, 0xe, 0x70, 0x10, 0x6,
0x0, 0xc0, 0x10, 0x4, 0x7, 0x38, 0xe, 0x3,
0x0, 0x60, 0x8, 0xe, 0x7, 0x8e, 0x7, 0xe1,
0x80, 0x30, 0x4, 0x3f, 0x3, 0x87, 0x1, 0x7e,
0xc0, 0x18, 0x3, 0xfd, 0x1, 0xc1, 0xc0, 0xc7,
0xfc, 0xc, 0x1f, 0xf1, 0x81, 0xc0, 0xe0, 0x30,
0x3f, 0xff, 0xff, 0x81, 0x80, 0xe0, 0x78, 0x1c,
0x18, 0xff, 0xfc, 0x41, 0xc0, 0xe0, 0x1c, 0x7,
0xc, 0x1, 0x80, 0x21, 0xc0, 0x70, 0x7, 0x1,
0xc6, 0x0, 0xc0, 0x11, 0xc0, 0x70, 0x3, 0xc0,
0x7b, 0x0, 0x60, 0xb, 0xc0, 0x78, 0x0, 0xe0,
0xf, 0x80, 0x30, 0x7, 0x80, 0x38, 0x0, 0x38,
0x3, 0xe0, 0x18, 0xf, 0x80, 0x38, 0x0, 0x1e,
0x0, 0x7f, 0xc, 0x7f, 0x0, 0x38, 0x0, 0x7,
0x80, 0xf, 0xff, 0xfe, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0xff, 0xf8, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F602 "😂" */
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xf0, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3e, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x7, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0,
0x78, 0x6, 0x0, 0x0, 0x0, 0x30, 0xf, 0x0,
0x0, 0x3, 0x80, 0xf0, 0x0, 0x0, 0x1, 0xe0,
0x38, 0x0, 0x0, 0x38, 0x1f, 0x0, 0x0, 0x0,
0x7, 0xc0, 0xe0, 0x0, 0x1, 0xc1, 0xe0, 0x0,
0x0, 0x0, 0xf, 0x7, 0x0, 0x0, 0x1c, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x1c, 0x0, 0x0,
0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x70, 0xe0,
0x0, 0xe, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc3, 0x80, 0x0, 0x70, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x6, 0x1c, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x38, 0x0,
0x3e, 0x0, 0x0, 0xf, 0x80, 0x3, 0x80, 0x1,
0xc0, 0x7, 0xfc, 0x0, 0x1, 0xff, 0x0, 0x1c,
0x0, 0xe, 0x0, 0x70, 0x70, 0x0, 0x1c, 0x1c,
0x0, 0xe0, 0x0, 0x60, 0x7, 0x1, 0xc0, 0x1,
0xc0, 0x70, 0x7, 0x0, 0x7, 0x0, 0x30, 0x6,
0x0, 0xc, 0x1, 0x80, 0x1c, 0x0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0xe, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xb8, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xc0, 0xf, 0xf6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x7f, 0x80, 0xf8, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x3e, 0xf,
0x1, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0,
0x78, 0xe0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x0, 0xe6, 0x0, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x18, 0x3, 0x70, 0x6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc0, 0x1f, 0x0, 0x31,
0xfc, 0x0, 0x0, 0x0, 0x1f, 0xc6, 0x0, 0x78,
0x3, 0xc, 0x3f, 0x80, 0x0, 0x3f, 0xfe, 0x18,
0x3, 0xc0, 0x18, 0x60, 0x3, 0xff, 0xff, 0xc0,
0x30, 0xc0, 0x1e, 0x1, 0xc3, 0x80, 0x0, 0x0,
0x0, 0x3, 0x87, 0x0, 0xf8, 0xc, 0x1f, 0xf0,
0x0, 0x0, 0x3, 0xfc, 0x18, 0xe, 0xe0, 0xe0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xe0, 0xe3,
0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7,
0xfe, 0xf, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x3f, 0xe0, 0x0, 0xe0, 0x3f, 0xff, 0xff,
0xff, 0xfe, 0x3, 0x80, 0x0, 0x7, 0x0, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x18, 0x0, 0x0, 0x1c,
0x3, 0xff, 0xe0, 0x3f, 0xfe, 0x1, 0xc0, 0x0,
0x0, 0x70, 0x7, 0xfc, 0x0, 0x7f, 0xc0, 0x1c,
0x0, 0x0, 0x3, 0x80, 0x1f, 0x80, 0x0, 0xfc,
0x0, 0xe0, 0x0, 0x0, 0xe, 0x0, 0x3c, 0x0,
0x7, 0x80, 0xe, 0x0, 0x0, 0x0, 0x38, 0x0,
0x3c, 0x1, 0xe0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x1f, 0xf0, 0x0, 0xe, 0x0, 0x0,
0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x7c, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0xf,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xc0,
0x7, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0,
/* U+1F603 "😃" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xf, 0xc0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x78, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x78, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x7, 0x0, 0x0, 0x18,
0x0, 0x1e, 0x7, 0x0, 0x3, 0xc0, 0x0, 0x1e,
0x0, 0x7, 0x7, 0x80, 0x3, 0xf0, 0x0, 0x1f,
0x80, 0x3, 0xc3, 0x80, 0x1, 0xf8, 0x0, 0xf,
0xc0, 0x0, 0xe1, 0xc0, 0x1, 0xfe, 0x0, 0xf,
0xf0, 0x0, 0x71, 0xc0, 0x0, 0xff, 0x0, 0x7,
0xf8, 0x0, 0x1c, 0xe0, 0x0, 0x7f, 0x80, 0x3,
0xfc, 0x0, 0xe, 0x70, 0x0, 0x3f, 0xc0, 0x1,
0xfe, 0x0, 0x7, 0x38, 0x0, 0x1f, 0xe0, 0x0,
0xff, 0x0, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x7f, 0x80, 0x0, 0xfc, 0x0, 0x7, 0xf8, 0x0,
0x3f, 0xc0, 0x0, 0x7e, 0x0, 0x1, 0xf8, 0x0,
0xf, 0xc0, 0x0, 0x3f, 0x0, 0x0, 0xfc, 0x0,
0x7, 0xe0, 0x0, 0x1f, 0x80, 0x0, 0x3c, 0x0,
0x1, 0xe0, 0x0, 0xf, 0xc0, 0x0, 0x1c, 0x0,
0x0, 0xe0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x20, 0x0,
0x0, 0x0, 0x0, 0x80, 0x1d, 0xc0, 0x7f, 0x80,
0x0, 0x0, 0xf, 0xf0, 0x1c, 0xe0, 0x30, 0xff,
0x0, 0x1, 0xff, 0xf8, 0xe, 0x70, 0x18, 0x0,
0xff, 0xff, 0xf0, 0xc, 0x7, 0x38, 0xe, 0x0,
0x0, 0x0, 0x0, 0xe, 0x3, 0x8e, 0x7, 0xfc,
0x0, 0x0, 0x0, 0xfe, 0x3, 0x87, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1, 0xc3, 0xc0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0x1, 0xe0, 0xe0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0x80, 0xe0, 0x78, 0xf,
0xff, 0xff, 0xff, 0xff, 0x80, 0xf0, 0x1c, 0x3,
0xff, 0xff, 0xff, 0xff, 0x80, 0x70, 0xf, 0x0,
0xff, 0xf8, 0xf, 0xff, 0x80, 0x78, 0x3, 0x80,
0x1f, 0xf0, 0x1, 0xff, 0x0, 0x38, 0x0, 0xe0,
0x7, 0xe0, 0x0, 0x3f, 0x0, 0x38, 0x0, 0x78,
0x0, 0xf0, 0x0, 0x1e, 0x0, 0x3c, 0x0, 0x1e,
0x0, 0xf, 0x0, 0x78, 0x0, 0x3c, 0x0, 0x7,
0x80, 0x0, 0x7f, 0xe0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0x1e, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x3, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F604 "😄" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x1f, 0x0, 0x0,
0x7c, 0x0, 0x7, 0x38, 0x0, 0x3f, 0xe0, 0x0,
0xff, 0x80, 0x3, 0xb8, 0x0, 0x38, 0x38, 0x0,
0xe0, 0xe0, 0x0, 0xfc, 0x0, 0x38, 0xe, 0x0,
0xe0, 0x38, 0x0, 0x7e, 0x0, 0x18, 0x3, 0x0,
0x60, 0xc, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x7f, 0x0,
0x0, 0x0, 0x7, 0xf0, 0x1c, 0xe0, 0x30, 0xfe,
0x0, 0x0, 0xff, 0xf8, 0xe, 0x70, 0x18, 0x0,
0xff, 0xff, 0xf0, 0xc, 0x7, 0x38, 0xe, 0x0,
0x0, 0x0, 0x0, 0xe, 0x7, 0x8e, 0x7, 0xfc,
0x0, 0x0, 0x0, 0xff, 0x3, 0x87, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1, 0xc1, 0xc0, 0xff,
0xff, 0xff, 0xff, 0xff, 0x81, 0xc0, 0xe0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0x80, 0xe0, 0x78, 0xf,
0xff, 0xff, 0xff, 0xff, 0x80, 0xe0, 0x1c, 0x3,
0xff, 0xff, 0xff, 0xff, 0x80, 0x70, 0x7, 0x0,
0xff, 0xf8, 0xf, 0xff, 0x80, 0x70, 0x3, 0xc0,
0x1f, 0xf0, 0x1, 0xff, 0x0, 0x78, 0x0, 0xe0,
0x7, 0xe0, 0x0, 0x3f, 0x0, 0x38, 0x0, 0x38,
0x0, 0xf0, 0x0, 0x1e, 0x0, 0x38, 0x0, 0x1e,
0x0, 0xf, 0x0, 0x78, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x7f, 0xc0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F605 "😅" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0,
0x4, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x7c,
0x0, 0x70, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0,
0xf8, 0x3, 0xc0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x1, 0xf0, 0x3e, 0x0, 0x0, 0x1e, 0x0, 0x0,
0x0, 0x3, 0xc3, 0x98, 0x0, 0x3, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x18, 0xe0, 0x0, 0x3c, 0x0,
0x0, 0x0, 0x0, 0x1d, 0xc3, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x7c, 0xc, 0x0, 0x3c,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x70, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x1, 0x80,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0x6,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0,
0x30, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30,
0x0, 0xc0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x80, 0x6, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x18, 0x0, 0x38, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc0, 0x0, 0xc7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0x0, 0x6, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x30, 0x0, 0x33, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0x80, 0x1, 0x9c, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0x0, 0xd, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0xee, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x6, 0x70,
0x0, 0x3f, 0x80, 0x0, 0xfc, 0xe, 0x0, 0x73,
0x80, 0x3, 0xfe, 0x0, 0x1f, 0xf8, 0x3c, 0xf,
0x38, 0x0, 0x3c, 0x78, 0x1, 0xe1, 0xe0, 0xff,
0xe1, 0xc0, 0x3, 0x80, 0xe0, 0x1e, 0x3, 0x80,
0xff, 0xe, 0x0, 0x18, 0x3, 0x0, 0x60, 0xc,
0x0, 0x38, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc1,
0xc0, 0x7f, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x1c,
0xe, 0x3, 0xf, 0xe0, 0x0, 0xf, 0xff, 0x80,
0xe0, 0x70, 0x18, 0x0, 0xff, 0xff, 0xf0, 0xc,
0x7, 0x3, 0x80, 0xe0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x38, 0xe, 0x7, 0xf8, 0x0, 0x0, 0x1,
0xfe, 0x3, 0x80, 0x70, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x1c, 0x1, 0xc0, 0xff, 0xff, 0xff,
0xff, 0xff, 0x1, 0xe0, 0xe, 0x3, 0xff, 0xff,
0xff, 0xff, 0xf0, 0xe, 0x0, 0x78, 0xf, 0xff,
0xff, 0xff, 0xff, 0x80, 0xf0, 0x1, 0xc0, 0x3f,
0xff, 0xff, 0xff, 0xf8, 0x7, 0x0, 0x7, 0x0,
0xff, 0xf8, 0xf, 0xff, 0x0, 0x70, 0x0, 0x3c,
0x1, 0xff, 0x0, 0x1f, 0xf0, 0x3, 0x80, 0x0,
0xe0, 0x7, 0xe0, 0x0, 0x3e, 0x0, 0x38, 0x0,
0x3, 0x80, 0xf, 0x0, 0x3, 0xc0, 0x3, 0x80,
0x0, 0x1e, 0x0, 0xf, 0x0, 0x78, 0x0, 0x3c,
0x0, 0x0, 0x78, 0x0, 0xf, 0xfc, 0x0, 0x3,
0xc0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0,
0x0, 0x38, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xf0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x3,
0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xf0, 0x1, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
/* U+1F606 "😆" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x60, 0x0, 0x0, 0x0,
0x3, 0x0, 0xe1, 0xc0, 0x7c, 0x0, 0x0, 0x0,
0x7, 0xc0, 0x71, 0xc0, 0xf, 0x80, 0x0, 0x0,
0xf, 0x80, 0x3c, 0xe0, 0x1, 0xf0, 0x0, 0x0,
0x1f, 0x0, 0xe, 0x70, 0x0, 0x3e, 0x0, 0x0,
0x3e, 0x0, 0x7, 0x38, 0x0, 0x7, 0xc0, 0x0,
0x7c, 0x0, 0x3, 0xb8, 0x0, 0x0, 0xf8, 0x0,
0xf8, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x1f, 0x1,
0xf0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x7f, 0x80,
0xff, 0x0, 0x0, 0x3f, 0x0, 0x3, 0xfc, 0x0,
0x7, 0xf8, 0x0, 0x1f, 0x80, 0xf, 0xf0, 0x0,
0x0, 0x7f, 0x80, 0xf, 0xc0, 0xf, 0xc0, 0x0,
0x0, 0x7, 0xe0, 0x7, 0xe0, 0x6, 0x0, 0x0,
0x0, 0x0, 0x30, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x7f, 0x0,
0x0, 0x0, 0x7, 0xf0, 0x1c, 0xe0, 0x30, 0xfe,
0x0, 0x0, 0xff, 0xf8, 0xe, 0x70, 0x18, 0x0,
0xff, 0xff, 0xf0, 0xc, 0x7, 0x38, 0xe, 0x0,
0x0, 0x0, 0x0, 0xe, 0x7, 0x8e, 0x7, 0xfc,
0x0, 0x0, 0x0, 0xff, 0x3, 0x87, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1, 0xc1, 0xc0, 0xff,
0xff, 0xff, 0xff, 0xff, 0x81, 0xc0, 0xe0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0x80, 0xe0, 0x78, 0xf,
0xff, 0xff, 0xff, 0xff, 0x80, 0xe0, 0x1c, 0x3,
0xff, 0xff, 0xff, 0xff, 0x80, 0x70, 0x7, 0x0,
0xff, 0xfc, 0x1f, 0xff, 0x80, 0x70, 0x3, 0xc0,
0x1f, 0xf0, 0x1, 0xff, 0x0, 0x78, 0x0, 0xe0,
0x7, 0xf0, 0x0, 0x7f, 0x0, 0x38, 0x0, 0x38,
0x0, 0xf8, 0x0, 0x3e, 0x0, 0x38, 0x0, 0x1e,
0x0, 0xf, 0x80, 0xf8, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x7f, 0xc0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F607 "😇" */
0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0x0, 0x0,
0x7f, 0xe0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x7,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x7f,
0x80, 0x1, 0xff, 0xe0, 0x0, 0xff, 0x83, 0xfc,
0x0, 0x7f, 0xff, 0xf8, 0x0, 0xff, 0x1f, 0xe0,
0xf, 0xf0, 0x3, 0xfc, 0x1, 0xfe, 0xff, 0x0,
0xfc, 0x0, 0x0, 0xfc, 0x3, 0xff, 0xfc, 0x7,
0x80, 0x0, 0x0, 0x78, 0xf, 0xf7, 0xf8, 0x78,
0x0, 0x0, 0x0, 0x78, 0x7f, 0xdf, 0xf3, 0xc0,
0x0, 0x0, 0x0, 0xf3, 0xfe, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xff, 0x80,
0x0, 0x7, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0xe, 0x7f, 0xff, 0xff,
0xff, 0xff, 0x9c, 0x0, 0x78, 0x1f, 0xff, 0xff,
0xff, 0xc0, 0x78, 0x1, 0xc0, 0x1, 0xff, 0xff,
0xc0, 0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x38, 0x0, 0x3e, 0x0, 0x1, 0xf0, 0x0,
0x71, 0xc0, 0x3, 0xfe, 0x0, 0x1f, 0xf0, 0x0,
0xe7, 0x0, 0x1e, 0x1c, 0x0, 0xe0, 0xe0, 0x3,
0x9c, 0x0, 0xe0, 0x38, 0x7, 0x1, 0xc0, 0xe,
0x70, 0x1, 0x0, 0x40, 0x8, 0x2, 0x0, 0x39,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x9c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x9c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xe, 0x0, 0x4,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x1c, 0x0, 0x18,
0x0, 0x0, 0x60, 0x0, 0xe0, 0x70, 0x0, 0xfc,
0x0, 0xf, 0xc0, 0x3, 0x81, 0xc0, 0x0, 0xfe,
0x1, 0xfc, 0x0, 0xe, 0x3, 0x80, 0x0, 0x7f,
0xff, 0x80, 0x0, 0x70, 0xe, 0x0, 0x0, 0x3f,
0xf0, 0x0, 0x1, 0xc0, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x78, 0x0, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x70, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0xf,
0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x0, 0xf8, 0x0, 0x0, 0x7, 0xc0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0x0, 0x1f, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
/* U+1F608 "😈" */
0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x11, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xef, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0xf, 0xfb, 0x80, 0x0, 0x1f, 0xff, 0xfe,
0x0, 0x0, 0x73, 0xe7, 0x0, 0x3, 0xf8, 0x0,
0x7f, 0x0, 0x3, 0x8f, 0x8f, 0x0, 0x3e, 0x0,
0x0, 0x3f, 0x0, 0x3c, 0x3e, 0x1e, 0x3, 0xe0,
0x0, 0x0, 0x1f, 0x1, 0xe1, 0xf8, 0x1e, 0x3e,
0x0, 0x0, 0x0, 0x1f, 0x1f, 0x7, 0xe0, 0x3f,
0xe0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x1f, 0x80,
0x3f, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x80, 0x77,
0x0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x30, 0x1,
0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x39, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe7, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x8e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x70, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x81, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x60, 0x0,
0xe0, 0x0, 0x0, 0x1, 0xc0, 0x1, 0xc1, 0x80,
0x3, 0xe0, 0x0, 0x0, 0x1f, 0x0, 0x7, 0x6,
0x0, 0x7, 0xe0, 0x0, 0x1, 0xf8, 0x0, 0x1c,
0x18, 0x0, 0x7, 0xe0, 0x0, 0x1f, 0x80, 0x0,
0x70, 0x60, 0x0, 0xf, 0xc0, 0x0, 0xfc, 0x0,
0x1, 0xc1, 0x80, 0x0, 0x3f, 0xc0, 0xf, 0xf0,
0x0, 0x7, 0x6, 0x0, 0x1, 0xff, 0x80, 0x7f,
0xe0, 0x0, 0x1c, 0x18, 0x0, 0x7, 0xfc, 0x0,
0xff, 0x80, 0x0, 0x70, 0x60, 0x0, 0x1f, 0xe0,
0x1, 0xfe, 0x0, 0x1, 0xc1, 0x80, 0x0, 0x7f,
0x80, 0x7, 0xf8, 0x0, 0x7, 0x7, 0x0, 0x0,
0xfc, 0x0, 0xf, 0xc0, 0x0, 0x3c, 0x1c, 0x0,
0x3, 0xf0, 0x0, 0x3e, 0x0, 0x0, 0xe0, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x78, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0x0, 0xc0, 0x0, 0x30, 0x0,
0x3, 0x0, 0x0, 0xe0, 0x3, 0x80, 0x1, 0xe0,
0x0, 0x1e, 0x0, 0x7, 0x0, 0x6, 0x0, 0x3,
0xe0, 0x1, 0xf0, 0x0, 0x1c, 0x0, 0x1c, 0x0,
0x3, 0xf0, 0x3f, 0x0, 0x0, 0xe0, 0x0, 0x38,
0x0, 0x3, 0xff, 0xf0, 0x0, 0x7, 0x80, 0x0,
0x60, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x1c, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x0, 0x0,
0x78, 0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x0,
0x0, 0xfc, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0,
/* U+1F609 "😉" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x70, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0xf8, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0xf8, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x1, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x60, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0xe, 0x70, 0x0, 0xf, 0x0, 0x0,
0x7, 0xc0, 0x7, 0x38, 0x0, 0xf, 0xc0, 0x0,
0xf, 0x80, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0xf, 0x80, 0x0, 0xfc, 0x0, 0x7, 0xf8, 0x0,
0xf, 0x0, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0xf, 0x0, 0x0, 0x3f, 0x0, 0x1, 0xfe, 0x0,
0x1f, 0xc0, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0,
0x7, 0xfe, 0x0, 0xf, 0xc0, 0x0, 0x3f, 0x0,
0x3, 0xff, 0xc0, 0x7, 0xe0, 0x0, 0xf, 0x0,
0x0, 0x1, 0xe0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x20, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x7,
0x0, 0x0, 0x3, 0x0, 0x3, 0x87, 0x0, 0x3,
0xc0, 0x0, 0x7, 0xc0, 0x1, 0xc1, 0xc0, 0x0,
0xf8, 0x0, 0xf, 0x80, 0x1, 0xc0, 0xe0, 0x0,
0x1f, 0xc0, 0x3f, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x1, 0xff, 0xfe, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x1f, 0xf8, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F60A "😊" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x3e, 0x0, 0x0,
0xf8, 0x0, 0xe, 0x70, 0x0, 0x3f, 0xc0, 0x1,
0xfe, 0x0, 0x7, 0x38, 0x0, 0x38, 0x70, 0x1,
0xc3, 0x80, 0x3, 0xb8, 0x0, 0x38, 0x18, 0x0,
0xc0, 0xe0, 0x0, 0xfc, 0x0, 0x18, 0xe, 0x0,
0xe0, 0x30, 0x0, 0x7e, 0x0, 0x1c, 0x3, 0x0,
0x60, 0x1c, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x10, 0x0,
0x0, 0x0, 0x20, 0x1, 0xf8, 0x1, 0x99, 0x0,
0x0, 0x1, 0x33, 0x0, 0xfc, 0x0, 0xc9, 0x80,
0x0, 0x1, 0x99, 0x80, 0x7e, 0x0, 0xcc, 0xc0,
0x0, 0x0, 0x89, 0x80, 0x3f, 0x0, 0x64, 0xc0,
0x0, 0x0, 0xcc, 0xc0, 0x3d, 0xc0, 0x66, 0x60,
0x0, 0x0, 0x64, 0x40, 0x1c, 0xe0, 0x2, 0x0,
0x0, 0x0, 0x6, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x60, 0x0, 0x3, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x3c, 0x0, 0x7, 0x80, 0x0, 0xe0, 0x78, 0x0,
0xf, 0xc0, 0x1f, 0x80, 0x0, 0xe0, 0x1c, 0x0,
0x1, 0xff, 0xff, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0xf, 0xf8, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F60B "😋" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x78, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x1, 0xc0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0xe,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x3,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x70, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x18, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x61, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x39, 0xe0, 0x0, 0xf8, 0x0, 0x0,
0xfc, 0x0, 0x1c, 0xe0, 0x1, 0xff, 0x0, 0x1,
0xff, 0x80, 0x6, 0x70, 0x1, 0xc1, 0xe0, 0x1,
0xe1, 0xe0, 0x3, 0x38, 0x1, 0xc0, 0x70, 0x1,
0xc0, 0x78, 0x1, 0xf8, 0x0, 0xc0, 0x18, 0x0,
0xc0, 0x18, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7c, 0x8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x30, 0x3e, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x3f, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x1d, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xe, 0xe, 0xe0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x6, 0x70, 0x38, 0x0,
0x0, 0x0, 0x0, 0xe, 0x7, 0x38, 0xe, 0x0,
0x0, 0x0, 0x0, 0x7, 0x83, 0x8e, 0x7, 0x80,
0x0, 0x0, 0x0, 0x7, 0xe1, 0x87, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x7, 0x79, 0xc1, 0xc0, 0x70,
0x0, 0x0, 0x0, 0x7, 0x1e, 0xe0, 0xe0, 0x1e,
0x0, 0x0, 0x0, 0x7, 0x7, 0xe0, 0x78, 0x7,
0x80, 0x0, 0x0, 0x7, 0x1, 0xf0, 0x1c, 0x1,
0xe0, 0x0, 0x0, 0xf, 0x0, 0x70, 0x7, 0x0,
0x3c, 0x0, 0x0, 0x1f, 0x80, 0x1c, 0x3, 0xc0,
0xf, 0x80, 0x0, 0x3f, 0xe0, 0xe, 0x0, 0xe0,
0x1, 0xfc, 0x0, 0xfc, 0x78, 0x3, 0x80, 0x38,
0x0, 0x1f, 0xff, 0xf8, 0x1e, 0x1, 0xc0, 0x1e,
0x0, 0x1, 0xff, 0xe0, 0x6, 0x0, 0xe0, 0x7,
0x80, 0x0, 0x0, 0x38, 0x0, 0x0, 0x70, 0x1,
0xe0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x38, 0x0,
0x78, 0x0, 0x0, 0x3, 0x80, 0x0, 0x1c, 0x0,
0x1f, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x1c, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x38, 0x0, 0xe, 0x0,
0x0, 0xf8, 0x0, 0x0, 0xe, 0x0, 0xf, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x3, 0x80, 0x7, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0xf, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xfc, 0xf, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x87, 0xff, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0xfe, 0x0,
/* U+1F60C "😌" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x78, 0x0, 0x0, 0x3c,
0x0, 0xe0, 0xe, 0x0, 0xfc, 0x0, 0x0, 0x1f,
0x80, 0x38, 0xf, 0x1, 0xf0, 0x0, 0x0, 0x1,
0xf0, 0x1c, 0x7, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x3c, 0x7, 0x3, 0x81, 0xc0, 0x0, 0x0, 0x0,
0x7, 0x3, 0x83, 0x81, 0xc0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0xe1, 0xc0, 0x40, 0x0, 0x0, 0x0,
0x0, 0x40, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x20, 0x4, 0x0,
0x10, 0x2, 0x0, 0x3f, 0x0, 0x38, 0x7, 0x0,
0x1c, 0x3, 0x80, 0x1f, 0x80, 0xf, 0x7, 0x0,
0x7, 0x7, 0x80, 0xf, 0xc0, 0x3, 0xff, 0x0,
0x1, 0xff, 0x80, 0x7, 0xe0, 0x0, 0x7e, 0x0,
0x0, 0x3f, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x6, 0x0, 0x3, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x7, 0x80, 0x3, 0xc0, 0x0, 0x70, 0x7, 0x0,
0x1, 0xe0, 0x3, 0xc0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x3e, 0xf, 0x80, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x7, 0xff, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0xfe, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F60D "😍" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x6, 0x0, 0x0, 0x60,
0x0, 0xe0, 0xe, 0x0, 0xf, 0xc0, 0x1, 0xfc,
0x0, 0x38, 0xf, 0x0, 0xf, 0xf0, 0x0, 0xff,
0x0, 0x1c, 0x7, 0x7, 0xef, 0xfc, 0x0, 0xff,
0xdf, 0x87, 0x3, 0x8f, 0xff, 0xff, 0x0, 0xff,
0xff, 0xf3, 0x83, 0x87, 0xff, 0xff, 0x80, 0x7f,
0xff, 0xf8, 0xe1, 0xc7, 0xff, 0xff, 0xc0, 0x3f,
0xff, 0xfe, 0x71, 0xc3, 0xff, 0xff, 0xe0, 0x1f,
0xff, 0xff, 0x3c, 0xe1, 0xff, 0xff, 0xf0, 0xf,
0xff, 0xff, 0x8e, 0x70, 0xff, 0xff, 0xf8, 0x7,
0xff, 0xff, 0xc7, 0x38, 0x7f, 0xff, 0xf8, 0x1,
0xff, 0xff, 0xe3, 0xb8, 0x3f, 0xff, 0xfc, 0x0,
0xff, 0xff, 0xe0, 0xfc, 0xf, 0xff, 0xfe, 0x0,
0x7f, 0xff, 0xf0, 0x7e, 0x3, 0xff, 0xfe, 0x0,
0x1f, 0xff, 0xf0, 0x3f, 0x1, 0xff, 0xfe, 0x0,
0xf, 0xff, 0xf8, 0x1f, 0x80, 0x7f, 0xff, 0x0,
0x3, 0xff, 0xf8, 0xf, 0xc0, 0xf, 0xff, 0x0,
0x0, 0xff, 0xf0, 0x7, 0xe0, 0x3, 0xff, 0x0,
0x0, 0x3f, 0xf0, 0x3, 0xf0, 0x0, 0x7f, 0x0,
0x0, 0xf, 0xe0, 0x1, 0xf8, 0x0, 0x7, 0x0,
0x0, 0x3, 0x80, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x8, 0x0, 0x80, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x1f, 0x83, 0xf0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x1f, 0xff, 0xfc, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0xf, 0xff, 0xfe, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x7, 0xff, 0xff, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x3, 0xff, 0xff, 0x80, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0xff, 0xff, 0x80, 0x0, 0x70, 0x7, 0x0,
0x0, 0x7f, 0xff, 0xc0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x1f, 0xff, 0xc0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x3, 0xff, 0x80, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x7f, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F60E "😎" */
0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xc0, 0x7, 0xf0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0xf, 0x80,
0x0, 0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x3c,
0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x7, 0xff,
0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf3, 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, 0xc7, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xff,
0xcf, 0xf0, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff,
0xf1, 0xfe, 0x3f, 0xff, 0xf8, 0xff, 0x1f, 0xff,
0xfc, 0x3f, 0x8f, 0xff, 0xfe, 0xf, 0xe7, 0xff,
0xff, 0x87, 0xf3, 0xff, 0xff, 0x80, 0xf8, 0xff,
0xff, 0xf0, 0xfe, 0x7f, 0xff, 0xf0, 0x1f, 0x3f,
0xff, 0xff, 0x3f, 0xff, 0xff, 0xfc, 0x1, 0xff,
0xff, 0xff, 0xe7, 0xff, 0xff, 0xff, 0x80, 0x3f,
0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xf0, 0x7,
0xff, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xfe, 0x0,
0x7f, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0x80,
0xf, 0xff, 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xf0,
0x1, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff, 0xfc,
0x0, 0x1f, 0xff, 0xff, 0xd9, 0xff, 0xff, 0xff,
0x80, 0x1, 0xff, 0xff, 0xfb, 0x3b, 0xff, 0xff,
0xe0, 0x0, 0x3f, 0xff, 0xfe, 0xe7, 0x3f, 0xff,
0xf8, 0x0, 0x3, 0xff, 0xff, 0x9c, 0x63, 0xff,
0xfc, 0x0, 0x0, 0x1f, 0xff, 0xe3, 0x8c, 0xf,
0xfe, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x61, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x83,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xe, 0x0, 0x6, 0x0, 0x0, 0x3, 0x0, 0x3,
0x80, 0xc0, 0x1, 0xf0, 0x0, 0x1, 0xf0, 0x0,
0x70, 0x1c, 0x0, 0xf, 0x80, 0x0, 0xf8, 0x0,
0x1c, 0x1, 0x80, 0x0, 0x7e, 0x0, 0xfc, 0x0,
0x3, 0x80, 0x38, 0x0, 0x3, 0xff, 0xfe, 0x0,
0x0, 0xe0, 0x3, 0x80, 0x0, 0x7, 0xfe, 0x0,
0x0, 0x18, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x7, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x7,
0xc0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0,
0x3e, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x1, 0xf0, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xe0, 0x3, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0,
/* U+1F60F "😏" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x3e, 0x0, 0x0, 0x0,
0x78, 0x3, 0x83, 0x80, 0x7f, 0x0, 0x0, 0x0,
0x3f, 0x80, 0xe1, 0xc0, 0xf8, 0x0, 0x0, 0x0,
0x3, 0xf0, 0x71, 0xc0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x3c, 0x3c, 0xe0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe, 0x70, 0x60, 0x0, 0x0, 0x0,
0x0, 0x1, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x7, 0xe0, 0x0,
0x0, 0xfc, 0x0, 0x3f, 0x0, 0x1f, 0xfc, 0x0,
0x3, 0xff, 0x80, 0x1f, 0x80, 0xf, 0xff, 0x0,
0x3, 0xff, 0xe0, 0xf, 0xc0, 0x4, 0x7f, 0x80,
0x0, 0x8f, 0xf0, 0x7, 0xe0, 0x0, 0x3f, 0xc0,
0x0, 0x7, 0xf8, 0x3, 0xf0, 0x0, 0x1f, 0xe0,
0x0, 0x3, 0xfc, 0x1, 0xf8, 0x0, 0x7, 0xe0,
0x0, 0x0, 0xfc, 0x0, 0xfc, 0x0, 0x1, 0xe0,
0x0, 0x0, 0x3c, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x30, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x38, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x38, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0xf8, 0x0, 0x38, 0x0, 0x38,
0x0, 0x3f, 0xff, 0xf8, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x1f, 0xff, 0xe0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F610 "😐" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0xf, 0x0, 0x0,
0x3c, 0x0, 0x7, 0x38, 0x0, 0xf, 0xc0, 0x0,
0x3f, 0x0, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x7, 0xf8, 0x0,
0x1f, 0xe0, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0xf, 0xf0, 0x0, 0x3f, 0x0, 0x1, 0xfe, 0x0,
0x7, 0xf8, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0,
0x3, 0xfc, 0x0, 0xf, 0xc0, 0x0, 0x3f, 0x0,
0x0, 0xfc, 0x0, 0x7, 0xe0, 0x0, 0xf, 0x0,
0x0, 0x3c, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x7,
0xff, 0xff, 0xff, 0xe0, 0x1, 0xc1, 0xc0, 0x3,
0xff, 0xff, 0xff, 0xf0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F611 "😑" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x7f, 0xf8, 0x0,
0xff, 0xf0, 0x0, 0xfc, 0x0, 0x3f, 0xfc, 0x0,
0x7f, 0xf8, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xf0, 0x1, 0xc1, 0xc0, 0xf,
0xff, 0xff, 0xff, 0xf8, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F612 "😒" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0xf, 0x80, 0x0, 0x0,
0xfc, 0x0, 0xe1, 0xc0, 0x7f, 0xc0, 0x0, 0x0,
0x7f, 0xc0, 0x71, 0xc0, 0xfc, 0x0, 0x0, 0x0,
0x1, 0xf8, 0x3c, 0xe0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x1e, 0xe, 0x70, 0x20, 0x0, 0x0, 0x0,
0x0, 0x2, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0xf, 0xc0, 0x0,
0x1, 0xf8, 0x0, 0x7e, 0x0, 0x3f, 0xf8, 0x0,
0x7, 0xff, 0x0, 0x3f, 0x0, 0x3f, 0xfe, 0x0,
0x7, 0xff, 0xc0, 0x1f, 0x80, 0x1c, 0xff, 0x0,
0x3, 0x9f, 0xe0, 0xf, 0xc0, 0x0, 0x7f, 0x80,
0x0, 0xf, 0xf0, 0x7, 0xe0, 0x0, 0x3f, 0xc0,
0x0, 0x7, 0xf8, 0x3, 0xf0, 0x0, 0xf, 0xc0,
0x0, 0x1, 0xf8, 0x1, 0xf8, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x78, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x3f, 0xc0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0xff, 0xfc, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x1, 0xf0, 0x1f, 0x80, 0x0, 0x70, 0x7, 0x0,
0x1, 0xe0, 0x1, 0xe0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0xc0, 0x0, 0x60, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F613 "😓" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x6, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3, 0x87, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x3, 0xcf, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x1, 0x9e, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x1, 0xce, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x1, 0xc3, 0x80, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0xe0, 0xe0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0xe0, 0x70, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0xe0, 0x1c, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x70, 0xf, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x70, 0x3, 0x80, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x38, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x18, 0x0, 0x70, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x1c, 0x0, 0x38, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0xe, 0x0, 0x0, 0x0,
0x0, 0x38, 0x6, 0x0, 0x7, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x3, 0x83, 0xc0, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xe0, 0x0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x71, 0xf0, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xfc, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0xe, 0x77, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x7, 0x39, 0x80, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x3, 0xbc, 0xf0, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x3, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x1f, 0xf8,
0x0, 0xf, 0xfc, 0x0, 0x3f, 0x0, 0x7f, 0xff,
0x80, 0x1f, 0xff, 0x80, 0x3d, 0xc0, 0x1c, 0x3,
0x80, 0xe, 0x1, 0xc0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0xf, 0xf0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x3f, 0xff, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0xfc, 0x7, 0xe0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0xf8, 0x0, 0xf8, 0x0, 0x38, 0x0, 0x38,
0x0, 0x30, 0x0, 0x18, 0x0, 0x38, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F614 "😔" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x10, 0x0, 0x0, 0x1,
0x0, 0x1c, 0x7, 0x0, 0x1c, 0x0, 0x0, 0x1,
0xc0, 0x7, 0x3, 0x80, 0x1e, 0x0, 0x0, 0x0,
0xf0, 0x3, 0x83, 0x80, 0x1e, 0x0, 0x0, 0x0,
0x3c, 0x0, 0xe1, 0xc0, 0x3e, 0x0, 0x0, 0x0,
0xf, 0x80, 0x71, 0xc0, 0x7e, 0x0, 0x0, 0x0,
0x3, 0xf0, 0x3c, 0xe0, 0x7c, 0x0, 0x0, 0x0,
0x0, 0x7c, 0xe, 0x70, 0x38, 0x0, 0x0, 0x0,
0x0, 0xe, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x1, 0x80, 0x38,
0x0, 0xe0, 0x1c, 0x0, 0xfc, 0x0, 0xf0, 0x78,
0x0, 0x3c, 0x1e, 0x0, 0x7e, 0x0, 0x3f, 0xf8,
0x0, 0xf, 0xfe, 0x0, 0x3f, 0x0, 0x3, 0xf0,
0x0, 0x1, 0xf8, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x7f, 0xff, 0xc0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x3f, 0xff, 0xe0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F615 "😕" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0xf0, 0x0, 0x3,
0xc0, 0x0, 0xe1, 0xc0, 0x0, 0xfc, 0x0, 0x3,
0xf0, 0x0, 0x71, 0xc0, 0x0, 0xff, 0x0, 0x3,
0xfc, 0x0, 0x3c, 0xe0, 0x0, 0x7f, 0x80, 0x1,
0xfe, 0x0, 0xe, 0x70, 0x0, 0x3f, 0xc0, 0x0,
0xff, 0x0, 0x7, 0x38, 0x0, 0x1f, 0xe0, 0x0,
0x7f, 0x80, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x3, 0xf0, 0x0,
0xf, 0xc0, 0x0, 0x7e, 0x0, 0x0, 0xf0, 0x0,
0x3, 0xc0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x1, 0xff, 0x80, 0x0, 0xe, 0x70, 0x0, 0x0,
0xf, 0xff, 0xfc, 0x0, 0x7, 0x38, 0x0, 0x0,
0x1f, 0x80, 0x3f, 0x80, 0x7, 0x8e, 0x0, 0x0,
0x3e, 0x0, 0x3, 0x80, 0x3, 0x87, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x70, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x30, 0x0, 0x0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F616 "😖" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x60, 0x0, 0x0,
0x0, 0xc, 0x0, 0x7e, 0x0, 0x7c, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x3f, 0x0, 0xf, 0x80, 0x0,
0x0, 0x3e, 0x0, 0x1f, 0x80, 0x1, 0xf0, 0x0,
0x0, 0x7c, 0x0, 0xf, 0xc0, 0x0, 0x7e, 0x0,
0x0, 0xfc, 0x0, 0x7, 0xe0, 0x0, 0xf, 0xc0,
0x0, 0xf8, 0x0, 0x3, 0xf0, 0x0, 0x1, 0xf0,
0x1, 0xf0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0xfe,
0x3, 0xf8, 0x0, 0x0, 0xfc, 0x0, 0x3, 0xfc,
0x0, 0x7f, 0x80, 0x0, 0x7e, 0x0, 0xf, 0xf0,
0x0, 0x7, 0xf8, 0x0, 0x3f, 0x0, 0x3f, 0xc0,
0x0, 0x0, 0x7f, 0x80, 0x3d, 0xc0, 0x1f, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x1c, 0xe0, 0x4, 0x0,
0x0, 0x0, 0x0, 0x40, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x80, 0x20, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0xe0, 0x38, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0xc0, 0xf8, 0x3e, 0x6, 0x0, 0x70, 0x7, 0x0,
0xf1, 0xee, 0x3b, 0xc7, 0x80, 0x70, 0x3, 0xc0,
0x3d, 0xe3, 0xb8, 0xf7, 0x80, 0x78, 0x0, 0xe0,
0xf, 0xe0, 0xf8, 0x3f, 0x80, 0x38, 0x0, 0x38,
0x1, 0xe0, 0x38, 0xf, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x60, 0x8, 0x3, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F617 "😗" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x1, 0xe0, 0x0, 0x3,
0xc0, 0x0, 0xe1, 0xc0, 0x1, 0xf8, 0x0, 0x3,
0xf0, 0x0, 0x71, 0xc0, 0x1, 0xfe, 0x0, 0x3,
0xfc, 0x0, 0x3c, 0xe0, 0x0, 0xff, 0x0, 0x1,
0xfe, 0x0, 0xe, 0x70, 0x0, 0x7f, 0x80, 0x0,
0xff, 0x0, 0x7, 0x38, 0x0, 0x3f, 0xc0, 0x0,
0x7f, 0x80, 0x3, 0xb8, 0x0, 0x1f, 0xe0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x7, 0xe0, 0x0,
0xf, 0xc0, 0x0, 0x7e, 0x0, 0x1, 0xe0, 0x0,
0x3, 0xc0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0xf, 0x80, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x7, 0xf0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x3c, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0xe, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x7, 0x80, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0xf, 0x80, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x7, 0xc0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x38, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F618 "😘" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x3c, 0x1, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x3, 0x80, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x7, 0xc0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x7, 0x80, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x7, 0x0, 0x0, 0x0, 0x0,
0x10, 0x7, 0x3, 0x81, 0x80, 0x0, 0x0, 0x0,
0x38, 0x3, 0x83, 0x80, 0x1, 0xe0, 0x0, 0x0,
0x7c, 0x0, 0xe1, 0xc0, 0x1, 0xf8, 0x0, 0x0,
0xfc, 0x0, 0x71, 0xc0, 0x1, 0xfe, 0x0, 0x0,
0xf8, 0x0, 0x38, 0xe0, 0x0, 0xff, 0x0, 0x0,
0xf0, 0x0, 0xe, 0x70, 0x0, 0x7f, 0x80, 0x1,
0xf0, 0x0, 0x7, 0x38, 0x0, 0x3f, 0xc0, 0x1,
0xf8, 0x0, 0x3, 0xb8, 0x0, 0x1f, 0xe0, 0x0,
0xff, 0xe0, 0x1, 0xdc, 0x0, 0x7, 0xe0, 0x0,
0x3f, 0xfc, 0x0, 0x7e, 0x0, 0x1, 0xe0, 0x0,
0x0, 0x1e, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xc0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf0, 0x3f, 0x80, 0x0, 0x0,
0x7, 0x80, 0xf, 0xfc, 0x1d, 0xc0, 0x0, 0x0,
0x3, 0xf0, 0xf, 0xfe, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x3c, 0x7, 0xff, 0xf8, 0x70, 0x0, 0x0,
0x0, 0xe, 0x3, 0xff, 0xfe, 0x3c, 0x0, 0x0,
0x0, 0x7, 0x1, 0xff, 0xff, 0x8e, 0x0, 0x0,
0x0, 0x7, 0x80, 0xff, 0xff, 0xe7, 0x0, 0x0,
0x0, 0x7, 0x80, 0x7f, 0xff, 0xf1, 0xc0, 0x0,
0x0, 0x3, 0xc0, 0x3f, 0xff, 0xf8, 0xe0, 0x0,
0x0, 0x0, 0xf0, 0xf, 0xff, 0xfc, 0x78, 0x0,
0x0, 0x0, 0x38, 0x7, 0xff, 0xfe, 0x1c, 0x0,
0x0, 0x0, 0x1c, 0x3, 0xff, 0xfe, 0x7, 0x0,
0x0, 0x0, 0xe, 0x1, 0xff, 0xff, 0x3, 0xc0,
0x0, 0x0, 0x7, 0x0, 0xff, 0xff, 0x0, 0xe0,
0x0, 0x0, 0xf, 0x0, 0xff, 0xff, 0x0, 0x38,
0x0, 0x0, 0x1f, 0x0, 0xff, 0xfe, 0x0, 0xe,
0x0, 0x0, 0xe, 0x0, 0xf, 0xf8, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x3, 0xf0, 0x0, 0x3, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x80, 0x1f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
/* U+1F619 "😙" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x1f, 0x0, 0x0,
0x7c, 0x0, 0x7, 0x38, 0x0, 0x3f, 0xe0, 0x0,
0xff, 0x80, 0x3, 0xb8, 0x0, 0x3c, 0x70, 0x0,
0x70, 0xe0, 0x0, 0xfc, 0x0, 0x18, 0x1c, 0x0,
0x70, 0x30, 0x0, 0x7e, 0x0, 0x1c, 0x6, 0x0,
0x30, 0x1c, 0x0, 0x3f, 0x0, 0xe, 0x3, 0x80,
0x38, 0x6, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x78, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0xe, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x3, 0x80, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x3, 0xc0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x7, 0xc0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x7, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F61A "😚" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x1, 0xf8, 0x0, 0x1, 0xf0,
0x7, 0x0, 0x1e, 0x7, 0xfc, 0x0, 0x0, 0xff,
0x3, 0xc0, 0xe, 0xf, 0xc0, 0x0, 0x0, 0x7,
0xe0, 0xe0, 0xe, 0xf, 0x0, 0x0, 0x0, 0x0,
0x78, 0x38, 0xf, 0x2, 0x0, 0x0, 0x0, 0x0,
0x8, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x7f, 0x0, 0x0,
0x7f, 0x0, 0x7, 0x38, 0x0, 0xff, 0xe0, 0x0,
0xff, 0xe0, 0x3, 0xb8, 0x0, 0xf0, 0x78, 0x0,
0xf0, 0x78, 0x0, 0xfc, 0x0, 0xe0, 0x1c, 0x0,
0x70, 0xe, 0x0, 0x7e, 0x0, 0x0, 0x4, 0x0,
0x0, 0x2, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x10, 0x0,
0x0, 0x0, 0x20, 0x1, 0xf8, 0x1, 0x99, 0x0,
0x0, 0x1, 0x33, 0x0, 0xfc, 0x0, 0xc9, 0x80,
0x0, 0x1, 0x99, 0x80, 0x7e, 0x0, 0xcc, 0xc0,
0x0, 0x0, 0x89, 0x80, 0x3f, 0x0, 0x64, 0xc0,
0xf, 0x0, 0xcc, 0xc0, 0x3d, 0xc0, 0x66, 0x60,
0x7, 0xe0, 0x64, 0x40, 0x1c, 0xe0, 0x2, 0x0,
0x0, 0x78, 0x6, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0xe, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x3, 0x80, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x3, 0xc0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x7, 0xc0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x7, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F61B "😛" */
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xf, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0xf, 0x0, 0x0,
0x3c, 0x0, 0x7, 0x38, 0x0, 0xf, 0xc0, 0x0,
0x3f, 0x0, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x3f, 0xc0, 0x1, 0xdc, 0x0, 0x7, 0xf8, 0x0,
0x1f, 0xe0, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0xf, 0xf0, 0x0, 0x3f, 0x0, 0x1, 0xfe, 0x0,
0x7, 0xf8, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0,
0x3, 0xfc, 0x0, 0xf, 0xc0, 0x0, 0x3f, 0x0,
0x0, 0xfc, 0x0, 0x7, 0xe0, 0x0, 0xf, 0x0,
0x0, 0x3c, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0xe, 0x0,
0x0, 0x0, 0x0, 0xe0, 0xe, 0x70, 0xf, 0xfe,
0x0, 0x0, 0x3f, 0xfc, 0x7, 0x1c, 0xf, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x3, 0x8e, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0x3, 0x87, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0x81, 0xc1, 0xc0, 0xff,
0xe1, 0xff, 0xc3, 0xff, 0xc1, 0xe0, 0xe0, 0x7f,
0xf0, 0x6, 0x1, 0xff, 0xc0, 0xe0, 0x38, 0x3f,
0xf8, 0x3, 0x0, 0xff, 0xe0, 0x70, 0x1c, 0xf,
0xfc, 0x1, 0x80, 0x7f, 0xe0, 0x70, 0x7, 0x3,
0xfe, 0x0, 0xc0, 0x3f, 0xe0, 0x78, 0x1, 0xc0,
0xff, 0x0, 0x60, 0x1f, 0xf0, 0x38, 0x0, 0xe0,
0x3f, 0x80, 0x30, 0xf, 0xf0, 0x3c, 0x0, 0x38,
0xf, 0xc0, 0x18, 0x7, 0xf0, 0x3c, 0x0, 0xe,
0x3, 0xe0, 0xc, 0x3, 0xe0, 0x1c, 0x0, 0x3,
0x80, 0xf0, 0x6, 0x1, 0xe0, 0x1c, 0x0, 0x0,
0xe0, 0x18, 0x3, 0x0, 0xe0, 0x1e, 0x0, 0x0,
0x78, 0xc, 0x1, 0x80, 0x70, 0x1e, 0x0, 0x0,
0xf, 0x6, 0x0, 0x0, 0x38, 0x3e, 0x0, 0x0,
0x3, 0xc3, 0x0, 0x0, 0x1c, 0x3c, 0x0, 0x0,
0x0, 0xf9, 0x80, 0x0, 0xe, 0x7c, 0x0, 0x0,
0x0, 0x1f, 0xe0, 0x0, 0x6, 0x7c, 0x0, 0x0,
0x0, 0x7, 0xf0, 0x0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xfc, 0x0, 0x7, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x0, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf0, 0xf, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0,
0x0,
/* U+1F61C "😜" */
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xf, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x3f,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xe0, 0x7, 0x7, 0x80, 0x0, 0x0, 0x0, 0x70,
0x78, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x60,
0xe, 0x0, 0xe1, 0xc0, 0x30, 0x0, 0x0, 0x60,
0x3, 0x80, 0x71, 0xc0, 0x1e, 0x0, 0x0, 0x30,
0x0, 0xc0, 0x38, 0xe0, 0xf, 0xc0, 0x0, 0x30,
0x0, 0x70, 0xe, 0x70, 0x0, 0xf8, 0x0, 0x18,
0x3c, 0x18, 0x7, 0x38, 0x0, 0x1f, 0x0, 0xc,
0x3f, 0xc, 0x3, 0xb8, 0x0, 0x3, 0xc0, 0x6,
0x1f, 0x86, 0x1, 0xdc, 0x0, 0x0, 0x70, 0x3,
0xf, 0xc3, 0x0, 0x7e, 0x0, 0xf, 0xfc, 0x1,
0x87, 0xe1, 0x80, 0x3f, 0x0, 0x1f, 0xff, 0x0,
0xc1, 0xe1, 0xc0, 0x1f, 0x80, 0x3e, 0x1, 0x0,
0x30, 0x0, 0xc0, 0xf, 0xc0, 0x38, 0x0, 0x0,
0x18, 0x0, 0xe0, 0x7, 0xe0, 0x8, 0x0, 0x0,
0x7, 0x0, 0xe0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x1, 0xc1, 0xe0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xe0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xf, 0xc0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x6, 0x0,
0x0, 0x0, 0x0, 0x60, 0xe, 0x70, 0xf, 0xfe,
0x0, 0x0, 0x1f, 0xfc, 0x7, 0x1c, 0x7, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x3, 0x8e, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0x3, 0x87, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0x81, 0xc1, 0xc0, 0xff,
0xf0, 0xff, 0xc3, 0xff, 0xc1, 0xe0, 0xe0, 0x7f,
0xf8, 0x6, 0x1, 0xff, 0xe0, 0xe0, 0x38, 0x1f,
0xfc, 0x3, 0x0, 0xff, 0xe0, 0x70, 0x1c, 0x7,
0xfe, 0x1, 0x80, 0x7f, 0xe0, 0x70, 0x7, 0x3,
0xff, 0x0, 0xc0, 0x3f, 0xf0, 0x78, 0x1, 0xc0,
0xff, 0x80, 0x60, 0x1f, 0xf0, 0x38, 0x0, 0xe0,
0x3f, 0xc0, 0x30, 0xf, 0xf0, 0x3c, 0x0, 0x38,
0xf, 0xe0, 0x18, 0x7, 0xf0, 0x3c, 0x0, 0xe,
0x1, 0xf0, 0xc, 0x3, 0xe0, 0x3c, 0x0, 0x3,
0x80, 0x78, 0x6, 0x1, 0xe0, 0x1c, 0x0, 0x0,
0xe0, 0x1c, 0x3, 0x0, 0xe0, 0x1c, 0x0, 0x0,
0x78, 0xe, 0x1, 0x80, 0x70, 0x3e, 0x0, 0x0,
0xf, 0x7, 0x0, 0x0, 0x38, 0x3c, 0x0, 0x0,
0x3, 0xc3, 0x80, 0x0, 0x1c, 0x3c, 0x0, 0x0,
0x0, 0xf9, 0xc0, 0x0, 0xe, 0x7c, 0x0, 0x0,
0x0, 0x1f, 0x60, 0x0, 0x6, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xf8, 0x0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xfe, 0x0, 0x7, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf0, 0xf, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0,
0x0,
/* U+1F61D "😝" */
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xf, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0xe, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x38, 0xe0, 0x7, 0xc0, 0x0, 0x0,
0x3, 0xe0, 0xe, 0x70, 0x0, 0xf8, 0x0, 0x0,
0x7, 0xc0, 0x7, 0x38, 0x0, 0x1f, 0x0, 0x0,
0xf, 0x80, 0x3, 0xb8, 0x0, 0x3, 0xe0, 0x0,
0x1f, 0x0, 0x1, 0xdc, 0x0, 0x0, 0x7c, 0x0,
0x3e, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x1f, 0x80,
0x7e, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x1f, 0xe0,
0x7f, 0x80, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0,
0x3, 0xfc, 0x0, 0xf, 0xc0, 0x3, 0xfc, 0x0,
0x0, 0x3f, 0xc0, 0x7, 0xe0, 0x7, 0xf0, 0x0,
0x0, 0x3, 0xf8, 0x3, 0xf0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x38, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0xf, 0x0,
0x0, 0x0, 0x0, 0xf0, 0xe, 0x70, 0xf, 0xff,
0x0, 0x0, 0x3f, 0xfc, 0x7, 0x1c, 0x7, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x3, 0x8e, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0x3, 0x87, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0x81, 0xc1, 0xc0, 0xff,
0xf0, 0xff, 0xc3, 0xff, 0xc1, 0xe0, 0xe0, 0x7f,
0xf8, 0x6, 0x1, 0xff, 0xe0, 0xe0, 0x38, 0x1f,
0xfc, 0x3, 0x0, 0xff, 0xe0, 0x70, 0x1c, 0x7,
0xfe, 0x1, 0x80, 0x7f, 0xe0, 0x70, 0x7, 0x3,
0xff, 0x0, 0xc0, 0x3f, 0xf0, 0x78, 0x1, 0xc0,
0xff, 0x80, 0x60, 0x1f, 0xf0, 0x38, 0x0, 0xe0,
0x3f, 0xc0, 0x30, 0xf, 0xf0, 0x3c, 0x0, 0x38,
0xf, 0xe0, 0x18, 0x7, 0xf0, 0x3c, 0x0, 0xe,
0x1, 0xf0, 0xc, 0x3, 0xe0, 0x3c, 0x0, 0x3,
0x80, 0x78, 0x6, 0x1, 0xe0, 0x1c, 0x0, 0x0,
0xe0, 0x1c, 0x3, 0x0, 0xe0, 0x1c, 0x0, 0x0,
0x78, 0xe, 0x1, 0x80, 0x70, 0x3c, 0x0, 0x0,
0xf, 0x7, 0x0, 0x0, 0x38, 0x3c, 0x0, 0x0,
0x3, 0xc3, 0x80, 0x0, 0x1c, 0x3c, 0x0, 0x0,
0x0, 0xf9, 0xc0, 0x0, 0xe, 0x7c, 0x0, 0x0,
0x0, 0x1f, 0x60, 0x0, 0x6, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xf8, 0x0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xfe, 0x0, 0x7, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf0, 0xf, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0,
0x0,
/* U+1F61E "😞" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x8,
0x0, 0x40, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x1c,
0x0, 0x38, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x3f,
0x0, 0x3f, 0x0, 0x0, 0x3f, 0x0, 0x0, 0xfe,
0x0, 0x7, 0xf0, 0x0, 0x3d, 0xc0, 0x1f, 0xf8,
0x0, 0x0, 0x7f, 0xe0, 0x1c, 0xe0, 0xf, 0xc0,
0x0, 0x0, 0x3, 0xf0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x7, 0xf8, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x1f, 0xff, 0x80, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x3f, 0x1, 0xf0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x7c, 0x0, 0x3e, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x18, 0x0, 0x6, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F61F "😟" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0xc0, 0x0, 0x1, 0x80,
0x1c, 0x0, 0x1c, 0x0, 0xe0, 0x0, 0x0, 0xe0,
0x7, 0x0, 0x1e, 0x0, 0xf0, 0x0, 0x0, 0x78,
0x3, 0xc0, 0xe, 0x0, 0xf0, 0x0, 0x0, 0x1e,
0x0, 0xe0, 0xe, 0x1, 0xe0, 0x0, 0x0, 0x3,
0xc0, 0x38, 0xf, 0x7, 0xe0, 0x0, 0x0, 0x0,
0xfc, 0x1c, 0x7, 0x3, 0xc0, 0x0, 0x0, 0x0,
0x1e, 0x7, 0x3, 0x81, 0x0, 0x0, 0x0, 0x0,
0x1, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x3, 0xc0, 0x0,
0x1e, 0x0, 0x0, 0xfc, 0x0, 0x3, 0xf0, 0x0,
0x1f, 0x80, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0x1f, 0xe0, 0x0, 0x3f, 0x0, 0x1, 0xfe, 0x0,
0xf, 0xf0, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0,
0x7, 0xf8, 0x0, 0xf, 0xc0, 0x0, 0x7f, 0x80,
0x3, 0xfc, 0x0, 0x7, 0xe0, 0x0, 0x3f, 0xc0,
0x1, 0xfe, 0x0, 0x3, 0xf0, 0x0, 0xf, 0xc0,
0x0, 0x7e, 0x0, 0x1, 0xf8, 0x0, 0x3, 0xc0,
0x0, 0x1e, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x7f, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x1, 0xff, 0xf0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x3, 0xe0, 0x3e, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x7, 0xc0, 0x7, 0xc0, 0x0, 0x70, 0x7, 0x0,
0x7, 0x80, 0x0, 0xf0, 0x0, 0x70, 0x3, 0xc0,
0x3, 0x80, 0x0, 0x38, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F620 "😠" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x3, 0x0, 0x0,
0x0, 0x6, 0x0, 0xf, 0xc0, 0x1, 0xf0, 0x0,
0x0, 0xf, 0x80, 0x7, 0xe0, 0x0, 0xfe, 0x0,
0x0, 0x1f, 0x80, 0x3, 0xf0, 0x0, 0xf, 0x80,
0x0, 0x1f, 0x0, 0x1, 0xf8, 0x0, 0x1, 0xf0,
0x0, 0x3e, 0x0, 0x0, 0xfc, 0x0, 0x1, 0xfc,
0x0, 0x3f, 0x80, 0x0, 0x7e, 0x0, 0x1, 0xff,
0x80, 0x7f, 0xe0, 0x0, 0x3f, 0x0, 0x0, 0xff,
0x80, 0x1f, 0xf0, 0x0, 0x3d, 0xc0, 0x0, 0x7f,
0x80, 0x7, 0xf8, 0x0, 0x1c, 0xe0, 0x0, 0x3f,
0xc0, 0x3, 0xfc, 0x0, 0xe, 0x70, 0x0, 0x1f,
0xe0, 0x1, 0xfe, 0x0, 0x7, 0x38, 0x0, 0x7,
0xe0, 0x0, 0x7e, 0x0, 0x7, 0x8e, 0x0, 0x1,
0xe0, 0x0, 0x1e, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0xf, 0xf0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x3f, 0xff, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x7e, 0x7, 0xe0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x78, 0x0, 0x78, 0x0, 0x38, 0x0, 0x38,
0x0, 0xf0, 0x0, 0xf, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x30, 0x0, 0x3, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F621 "😡" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1e, 0x3, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3f, 0x87, 0x80, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3d, 0xff, 0x80, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x3f, 0xc, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3e, 0x0, 0x7, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1f, 0x80, 0x7, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1d, 0xc0, 0x3, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x70, 0x3, 0x80, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x38, 0x1, 0xc0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x1c, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x38, 0xf, 0xe, 0x0, 0x70, 0x0, 0x0,
0x0, 0x1c, 0x7, 0xf, 0x0, 0x18, 0x0, 0x0,
0x0, 0x7, 0x3, 0x87, 0x0, 0xe, 0x0, 0x0,
0x0, 0x3, 0x83, 0x87, 0x0, 0x3, 0x80, 0x0,
0x0, 0x0, 0xe1, 0xc1, 0x87, 0xe1, 0x80, 0x0,
0x0, 0x0, 0x71, 0xc0, 0xf, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0xf, 0xf, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x6, 0x1, 0x80, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x3, 0x80, 0x0,
0x0, 0x6, 0x0, 0xf, 0xc0, 0x1, 0xf0, 0x0,
0x0, 0xf, 0x80, 0x7, 0xe0, 0x0, 0x7e, 0x0,
0x0, 0x1f, 0x80, 0x3, 0xf0, 0x0, 0xf, 0xc0,
0x0, 0x3f, 0x0, 0x1, 0xf8, 0x0, 0x1, 0xf0,
0x0, 0x3e, 0x0, 0x0, 0xfc, 0x0, 0x1, 0xfc,
0x0, 0x3f, 0x80, 0x0, 0x7e, 0x0, 0x1, 0xff,
0x80, 0x7f, 0xe0, 0x0, 0x3f, 0x0, 0x0, 0xff,
0x80, 0x1f, 0xf0, 0x0, 0x3d, 0xc0, 0x0, 0x7f,
0x80, 0x7, 0xf8, 0x0, 0x1c, 0xe0, 0x0, 0x3f,
0xc0, 0x3, 0xfc, 0x0, 0xe, 0x70, 0x0, 0x1f,
0xe0, 0x1, 0xfc, 0x0, 0x7, 0x38, 0x0, 0x7,
0xe0, 0x0, 0x7e, 0x0, 0x7, 0x8e, 0x0, 0x1,
0xe0, 0x0, 0x1e, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0xf, 0xf0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x3f, 0xff, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x7e, 0x7, 0xe0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x78, 0x0, 0x78, 0x0, 0x38, 0x0, 0x38,
0x0, 0xf0, 0x0, 0xf, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x30, 0x0, 0x3, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F622 "😢" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x78, 0x0, 0x0, 0x1c,
0x0, 0xe0, 0xe, 0x0, 0xfc, 0x0, 0x0, 0xf,
0x80, 0x38, 0x7, 0x0, 0xf8, 0x0, 0x0, 0x1,
0xe0, 0x1c, 0x7, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x78, 0x7, 0x3, 0x80, 0xf0, 0x0, 0x0, 0x0,
0xe, 0x3, 0x83, 0x80, 0xf0, 0x0, 0x0, 0x0,
0x3, 0x80, 0xe1, 0xc0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x71, 0xc0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x70, 0x3c, 0xe0, 0x10, 0x0, 0x0, 0x0,
0x0, 0x10, 0xe, 0x70, 0x0, 0xf, 0x0, 0x0,
0x3c, 0x0, 0x7, 0x38, 0x0, 0xf, 0xc0, 0x0,
0x3f, 0x0, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x7, 0xf8, 0x0,
0x1f, 0xe0, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0xf, 0xf0, 0x0, 0x3f, 0x0, 0x1, 0xfe, 0x0,
0x7, 0xf8, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0,
0x3, 0xfc, 0x0, 0xf, 0xc0, 0x0, 0x3f, 0x0,
0x0, 0xfc, 0x0, 0x7, 0xe0, 0x0, 0xf, 0x0,
0x0, 0x3c, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x4, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x3, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x3, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x1, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x1, 0xdc,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0xc7,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0xe3,
0x80, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x60,
0xe0, 0x0, 0x0, 0x0, 0x1, 0xc3, 0x80, 0x70,
0x70, 0xff, 0xc0, 0x0, 0x1, 0xc0, 0xe0, 0x70,
0x1f, 0xff, 0xfe, 0x0, 0x0, 0xe0, 0x70, 0x30,
0xf, 0xe0, 0x1f, 0xc0, 0x0, 0xf0, 0x1c, 0x18,
0x3, 0x80, 0x1, 0xf8, 0x0, 0x70, 0xf, 0x18,
0x1, 0xc0, 0x0, 0x18, 0x0, 0x70, 0x3, 0x8c,
0x0, 0x60, 0x0, 0x4, 0x0, 0x78, 0x0, 0xee,
0x0, 0x38, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7e,
0x0, 0xc, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1f,
0x0, 0x6, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x7,
0x80, 0x3, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xc0, 0x1, 0x80, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x60, 0x0, 0xc0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x30, 0x0, 0xe0, 0x0, 0x0, 0x38, 0x0, 0x0,
0xc, 0x0, 0x60, 0x0, 0x0, 0x78, 0x0, 0x0,
0x7, 0x0, 0x70, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x1, 0xc0, 0xf0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x7f, 0xf0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F623 "😣" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x8, 0x0, 0x0, 0x20,
0x0, 0xe0, 0xe, 0x0, 0xe, 0x0, 0x0, 0x38,
0x0, 0x38, 0xf, 0x0, 0xe, 0x0, 0x0, 0xe,
0x0, 0x1c, 0x7, 0x0, 0xe, 0x0, 0x0, 0x3,
0x80, 0x7, 0x3, 0x80, 0x1e, 0x0, 0x0, 0x0,
0xf0, 0x3, 0x83, 0x80, 0x7e, 0x0, 0x0, 0x0,
0x3f, 0x0, 0xe1, 0xc0, 0x7c, 0x0, 0x0, 0x0,
0x7, 0xc0, 0x71, 0xc0, 0x10, 0x0, 0x0, 0x0,
0x0, 0x40, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x10, 0x0, 0x0,
0x0, 0x10, 0x0, 0x7e, 0x0, 0xf, 0x0, 0x0,
0x0, 0x78, 0x0, 0x3f, 0x0, 0x7, 0xe0, 0x0,
0x0, 0xfc, 0x0, 0x1f, 0x80, 0x0, 0x78, 0x0,
0x0, 0xf0, 0x0, 0xf, 0xc0, 0x0, 0xf, 0x0,
0x1, 0xe0, 0x0, 0x7, 0xe0, 0x0, 0x3, 0xc0,
0x1, 0xe0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x70,
0x1, 0xc0, 0x0, 0x1, 0xf8, 0x0, 0x1, 0xfc,
0x1, 0xfc, 0x0, 0x0, 0xfc, 0x0, 0x7, 0xfe,
0x0, 0xff, 0xc0, 0x0, 0x7e, 0x0, 0xf, 0xc0,
0x0, 0x1, 0xf8, 0x0, 0x3f, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x3d, 0xc0, 0x1e, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x1c, 0xe0, 0xc, 0x0,
0x0, 0x0, 0x0, 0x60, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x3f, 0x80, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x1, 0xf0, 0x1f, 0x0, 0x0, 0x70, 0x7, 0x0,
0x1, 0xe0, 0x3, 0xc0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0xc0, 0x0, 0x70, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x40, 0x0, 0x10, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F624 "😤" */
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x3f, 0x80,
0x0, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x1f,
0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x3e, 0x0, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0,
0x0, 0x7c, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x70,
0x40, 0x0, 0x0, 0x4, 0x1e, 0x0, 0x0, 0x7,
0x3, 0xc0, 0x0, 0x1, 0xe0, 0x78, 0x0, 0x0,
0x70, 0x3f, 0x0, 0x0, 0x1f, 0x81, 0xc0, 0x0,
0x7, 0x0, 0x3e, 0x0, 0x3, 0xe0, 0x7, 0x0,
0x0, 0x70, 0x0, 0x78, 0x0, 0x3c, 0x0, 0x1c,
0x0, 0x3, 0x0, 0x1, 0xe0, 0x3, 0xc0, 0x0,
0x70, 0x0, 0x38, 0x0, 0x7, 0x80, 0x3c, 0x0,
0x3, 0x80, 0x3, 0x80, 0x0, 0x1c, 0x1, 0xc0,
0x0, 0xe, 0x0, 0x1c, 0x0, 0x0, 0x60, 0xc,
0x0, 0x0, 0x70, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0xc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x30, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0,
0xe0, 0x2, 0x0, 0x20, 0x8, 0x0, 0x80, 0xe,
0x6, 0x0, 0x3c, 0x7, 0x80, 0xf0, 0x1e, 0x0,
0x38, 0x30, 0x1, 0xff, 0xfc, 0x7, 0xff, 0xf0,
0x1, 0xc1, 0x80, 0x1, 0xff, 0x0, 0x7, 0xfc,
0x0, 0xe, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x70, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x87, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xe, 0x0, 0x0,
0x10, 0x0, 0x4, 0x0, 0x0, 0x38, 0x30, 0x0,
0x7, 0x0, 0x0, 0x1c, 0x0, 0x1, 0xc1, 0x80,
0x1, 0xf8, 0x0, 0x0, 0xfc, 0x0, 0xe, 0xf,
0xe0, 0x7f, 0x80, 0x0, 0x3, 0xfc, 0xf, 0xe0,
0x7f, 0xdf, 0xfc, 0x0, 0x0, 0x1f, 0xfd, 0xff,
0x7, 0x8f, 0xf8, 0xe0, 0x0, 0x0, 0xe3, 0xfe,
0x3c, 0x38, 0x1e, 0xe, 0x0, 0x0, 0x3, 0x87,
0xc0, 0xe3, 0x80, 0xc0, 0x70, 0xf, 0xe0, 0x1c,
0x6, 0x3, 0x9c, 0x0, 0x3, 0x3, 0xff, 0xe0,
0x60, 0x0, 0x1c, 0xe0, 0x0, 0x38, 0x7c, 0x7,
0xc3, 0x80, 0x0, 0xe7, 0x0, 0x1, 0x87, 0x80,
0xf, 0xc, 0x0, 0x7, 0x38, 0x0, 0x1c, 0x30,
0x0, 0x18, 0x70, 0x0, 0x38, 0xe0, 0x0, 0xc0,
0x0, 0x0, 0x1, 0x80, 0x3, 0x87, 0x80, 0xe,
0x0, 0x0, 0x0, 0xe, 0x0, 0x3e, 0x70, 0x0,
0x78, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x77, 0x80,
0x1, 0xe0, 0x0, 0x0, 0xf, 0x0, 0x1, 0xf8,
0x0, 0x7, 0x0, 0x0, 0x0, 0x70, 0x0, 0xf,
0xc0, 0x0, 0x38, 0x0, 0x0, 0x3, 0x80, 0x0,
0x7e, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x1c, 0x0,
0x3, 0xf0, 0x10, 0xe, 0x0, 0x0, 0x0, 0xe0,
0x20, 0x1d, 0xc0, 0xc0, 0xe0, 0x0, 0x0, 0x3,
0x81, 0x81, 0xc7, 0x9f, 0xf, 0x0, 0x0, 0x0,
0x1e, 0x1f, 0x3c, 0x1f, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xc0, 0x3c, 0x3f, 0x0, 0x0,
0x0, 0x1, 0xfc, 0x78, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xfc, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x1, 0xfc, 0x0, 0x7f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0,
/* U+1F625 "😥" */
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xe0, 0x7, 0xf8, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0xf, 0xc0,
0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x3e,
0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x1,
0xf0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x80, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x1c, 0x0,
0x38, 0x0, 0x0, 0x30, 0x0, 0xe0, 0x3, 0x80,
0xf, 0x0, 0x0, 0xf, 0x0, 0xe, 0x0, 0xe0,
0x7, 0xc0, 0x0, 0x0, 0xf8, 0x1, 0xc0, 0x18,
0x3, 0xf0, 0x0, 0x0, 0xf, 0xc0, 0x1c, 0x7,
0x7, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0x83, 0x80,
0xe0, 0x7c, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x38,
0x38, 0x8, 0x0, 0x0, 0x0, 0x0, 0x4, 0x7,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x9c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x73, 0x6, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x60, 0xc0, 0xf, 0x0, 0x0,
0x3c, 0x0, 0x1, 0xcc, 0x3c, 0x3, 0xf0, 0x0,
0xf, 0xc0, 0x0, 0x3b, 0x8f, 0xc0, 0x7f, 0x0,
0x3, 0xfc, 0x0, 0x7, 0x71, 0xf8, 0x1f, 0xe0,
0x0, 0x7f, 0x80, 0x0, 0xe6, 0x73, 0x83, 0xfc,
0x0, 0xf, 0xf0, 0x0, 0x1c, 0xde, 0x78, 0x7f,
0x80, 0x1, 0xfe, 0x0, 0x3, 0x9b, 0x87, 0x7,
0xf0, 0x0, 0x3f, 0xc0, 0x0, 0x73, 0xe0, 0x70,
0xfc, 0x0, 0x3, 0xf0, 0x0, 0xe, 0x7c, 0xf,
0xf, 0x0, 0x0, 0x3c, 0x0, 0x3, 0xcf, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xc0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x78,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xce,
0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x79,
0xc0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0xe,
0x78, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x1,
0xce, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x71, 0xc0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x38, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x3, 0x87, 0x0, 0x3, 0x80, 0xf, 0xe0, 0x0,
0x0, 0x70, 0xe0, 0x0, 0x70, 0xf, 0xff, 0x0,
0x0, 0x1c, 0x1c, 0x0, 0xe, 0x3, 0xc0, 0xf8,
0x0, 0x7, 0x81, 0xc0, 0x3, 0x81, 0xe0, 0x7,
0x80, 0x0, 0xe0, 0x38, 0x0, 0x70, 0x78, 0x0,
0x78, 0x0, 0x38, 0x3, 0x80, 0x1c, 0x1e, 0x0,
0x7, 0x80, 0xe, 0x0, 0x3c, 0xf, 0x1, 0x80,
0x0, 0x70, 0x3, 0x80, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xf0, 0x0, 0x1f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0,
0x3e, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x0,
0x1, 0xf8, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0xf, 0xf0, 0x3, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F626 "😦" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x3, 0xc0, 0x0,
0xf, 0x0, 0x0, 0xfc, 0x0, 0x3, 0xf0, 0x0,
0xf, 0xc0, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0xf, 0xf0, 0x0, 0x3f, 0x0, 0x1, 0xfe, 0x0,
0x7, 0xf8, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0,
0x3, 0xfc, 0x0, 0xf, 0xc0, 0x0, 0x7f, 0x80,
0x1, 0xfe, 0x0, 0x7, 0xe0, 0x0, 0x3f, 0xc0,
0x0, 0xff, 0x0, 0x3, 0xf0, 0x0, 0xf, 0xc0,
0x0, 0x3f, 0x0, 0x1, 0xf8, 0x0, 0x3, 0xc0,
0x0, 0xf, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x1, 0xff, 0x80, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x3, 0xff, 0xf0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x7, 0xff, 0xfe, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x7, 0xff, 0xff, 0x80, 0x0, 0xe0, 0x1c, 0x0,
0x7, 0xff, 0xff, 0xe0, 0x0, 0x70, 0x7, 0x0,
0x3, 0xff, 0xff, 0xf0, 0x0, 0x70, 0x3, 0xc0,
0x1, 0xff, 0xff, 0xf8, 0x0, 0x78, 0x0, 0xe0,
0x0, 0xff, 0xff, 0xfc, 0x0, 0x38, 0x0, 0x38,
0x0, 0x7f, 0xff, 0xfe, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x1f, 0xff, 0xfe, 0x0, 0x38, 0x0, 0x7,
0x80, 0x3, 0x0, 0xc, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F627 "😧" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x3, 0xe0, 0x0, 0x1, 0xf0,
0x1c, 0x0, 0x1c, 0xf, 0xf0, 0x0, 0x0, 0xff,
0x7, 0x0, 0x1e, 0x1f, 0x80, 0x0, 0x0, 0x7,
0xe3, 0xc0, 0xe, 0x1e, 0x0, 0x0, 0x0, 0x0,
0x78, 0xe0, 0xe, 0xc, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x7, 0x80, 0x0,
0x1e, 0x0, 0x3, 0xb8, 0x0, 0x7, 0xe0, 0x0,
0x1f, 0x80, 0x0, 0xfc, 0x0, 0x7, 0xf8, 0x0,
0x1f, 0xe0, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0xf, 0xf0, 0x0, 0x3f, 0x0, 0x1, 0xfe, 0x0,
0x7, 0xf8, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0,
0x3, 0xfc, 0x0, 0xf, 0xc0, 0x0, 0x7f, 0x80,
0x1, 0xfe, 0x0, 0x7, 0xe0, 0x0, 0x1f, 0x80,
0x0, 0x7e, 0x0, 0x3, 0xf0, 0x0, 0x7, 0x80,
0x0, 0x1e, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x1, 0xfe, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x7, 0xff, 0xf8, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x7, 0xff, 0xfe, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x7, 0xff, 0xff, 0x80, 0x0, 0xe0, 0x1c, 0x0,
0x3, 0xff, 0xff, 0xc0, 0x0, 0x70, 0x7, 0x0,
0x3, 0xff, 0xff, 0xf0, 0x0, 0x70, 0x3, 0xc0,
0x1, 0xff, 0xff, 0xf8, 0x0, 0x78, 0x0, 0xe0,
0x0, 0xff, 0xff, 0xfc, 0x0, 0x38, 0x0, 0x38,
0x0, 0x3f, 0xff, 0xfc, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x1f, 0xff, 0xfe, 0x0, 0x38, 0x0, 0x7,
0x80, 0x7, 0xe0, 0x7e, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F628 "😨" */
0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0x19, 0xff, 0x80, 0x0,
0x0, 0x0, 0x7, 0xf9, 0x8c, 0xc7, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xcc, 0xc6, 0x63, 0x7e, 0x0,
0x0, 0x0, 0x1f, 0xc6, 0x63, 0x31, 0x8f, 0x80,
0x0, 0x0, 0x1f, 0x63, 0x31, 0x98, 0xc5, 0xf0,
0x0, 0x0, 0x1f, 0x31, 0x98, 0xcc, 0x62, 0x3c,
0x0, 0x0, 0x1f, 0x98, 0xcc, 0x66, 0x31, 0x1f,
0x0, 0x0, 0x1e, 0xcc, 0x66, 0x33, 0x18, 0x8f,
0xc0, 0x0, 0x1e, 0x66, 0x33, 0x19, 0x8c, 0x46,
0xf0, 0x0, 0x1e, 0x33, 0x19, 0x8c, 0xc6, 0x23,
0x3c, 0x0, 0x1f, 0x19, 0xec, 0xc6, 0x63, 0xf1,
0x9f, 0x0, 0xf, 0x8f, 0xf6, 0x63, 0x31, 0xff,
0xcf, 0x80, 0xf, 0xcf, 0xe3, 0x31, 0x98, 0xc7,
0xe7, 0xe0, 0xf, 0x6f, 0x31, 0x98, 0xcc, 0x62,
0x7b, 0x78, 0x7, 0x37, 0x98, 0xcc, 0x66, 0x31,
0x1d, 0x9c, 0x7, 0x9a, 0xcc, 0x66, 0x33, 0x18,
0x8e, 0xcf, 0x3, 0xcc, 0x66, 0x33, 0x19, 0x8c,
0x46, 0x63, 0x83, 0xe6, 0x33, 0x19, 0x8c, 0xc6,
0x23, 0x31, 0xe1, 0xf3, 0x19, 0x8c, 0xc6, 0x63,
0x11, 0x98, 0xf0, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1e, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x9c, 0x0, 0x3, 0xc0, 0x0,
0xf, 0x0, 0x1, 0xdc, 0x0, 0x3, 0xf0, 0x0,
0xf, 0xc0, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0xf, 0xf0, 0x0, 0x3f, 0x0, 0x1, 0xfe, 0x0,
0x7, 0xf8, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0,
0x3, 0xfc, 0x0, 0xf, 0xc0, 0x0, 0x7f, 0x80,
0x1, 0xfe, 0x0, 0x7, 0xe0, 0x0, 0x3f, 0xc0,
0x0, 0xff, 0x0, 0x3, 0xf0, 0x0, 0xf, 0xc0,
0x0, 0x3f, 0x0, 0x1, 0xf8, 0x0, 0x3, 0xc0,
0x0, 0xf, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x9c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xc7, 0x0, 0x0,
0x0, 0xff, 0x0, 0x0, 0x1, 0xc3, 0x80, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x0, 0xe0, 0xe0, 0x0,
0x3, 0xff, 0xfc, 0x0, 0x0, 0xe0, 0x70, 0x0,
0x3, 0xff, 0xff, 0x0, 0x0, 0x70, 0x1c, 0x0,
0x3, 0xff, 0xff, 0xc0, 0x0, 0x70, 0xe, 0x0,
0x3, 0xff, 0xff, 0xe0, 0x0, 0x38, 0x3, 0x80,
0x1, 0xff, 0xff, 0xf0, 0x0, 0x38, 0x1, 0xe0,
0x0, 0xff, 0xff, 0xf8, 0x0, 0x3c, 0x0, 0x70,
0x0, 0x7f, 0xff, 0xfc, 0x0, 0x1c, 0x0, 0x1c,
0x0, 0x3f, 0xff, 0xfe, 0x0, 0x1c, 0x0, 0x7,
0x0, 0xf, 0xff, 0xfe, 0x0, 0x1c, 0x0, 0x3,
0xc0, 0x3, 0xe0, 0x1e, 0x0, 0x1e, 0x0, 0x0,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x0, 0x7c, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0,
0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1, 0xf0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0x80, 0xf, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0,
/* U+1F629 "😩" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x20, 0x0, 0x80, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x18, 0x0, 0xc0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x1c, 0x0, 0x70, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x1c, 0x0, 0x1c, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x1c, 0x0, 0x7, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x1c, 0x0, 0x1, 0xc0,
0x3, 0xc0, 0xe, 0x0, 0x1c, 0x0, 0x0, 0x70,
0x0, 0xe0, 0xe, 0x0, 0x3c, 0x0, 0x0, 0x1e,
0x0, 0x38, 0xf, 0x0, 0x3c, 0x0, 0x0, 0x7,
0x80, 0x1c, 0x7, 0x0, 0x8, 0x0, 0x0, 0x0,
0x80, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x1, 0x80, 0xc,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0xc0, 0x6,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0xe0, 0x3,
0x80, 0x0, 0x7, 0x38, 0x0, 0x0, 0x60, 0x0,
0xc0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x70, 0x0,
0x70, 0x0, 0x0, 0xfc, 0x0, 0x0, 0xf0, 0x0,
0x1e, 0x0, 0x0, 0x7e, 0x0, 0x1f, 0xf0, 0x0,
0x7, 0xfc, 0x0, 0x3f, 0x0, 0xf, 0xe0, 0x0,
0x0, 0xfe, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x1,
0xff, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x7,
0xff, 0xf0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0xf,
0x80, 0x3e, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x1e,
0x0, 0x3, 0xc0, 0x0, 0x1c, 0xe0, 0x0, 0x1c,
0x0, 0x0, 0x70, 0x0, 0xe, 0x70, 0x0, 0x18,
0x0, 0x0, 0xc, 0x0, 0x7, 0x38, 0x0, 0x18,
0x0, 0x0, 0x3, 0x0, 0x7, 0x8e, 0x0, 0xf,
0xff, 0xff, 0xff, 0x80, 0x3, 0x87, 0x0, 0xf,
0xff, 0xff, 0xff, 0xe0, 0x1, 0xc1, 0xc0, 0x7,
0xff, 0xff, 0xff, 0xf0, 0x1, 0xc0, 0xe0, 0x7,
0xff, 0xff, 0xff, 0xf8, 0x0, 0xe0, 0x78, 0x3,
0xff, 0xff, 0xff, 0xfe, 0x0, 0xe0, 0x1c, 0x1,
0xff, 0xff, 0xff, 0xff, 0x0, 0x70, 0x7, 0x0,
0xff, 0xff, 0xff, 0xff, 0x80, 0x70, 0x3, 0xc0,
0x7f, 0xff, 0xff, 0xff, 0xc0, 0x78, 0x0, 0xe0,
0x3f, 0xfe, 0x3, 0xff, 0xe0, 0x38, 0x0, 0x38,
0xf, 0xf0, 0x0, 0x1f, 0xe0, 0x38, 0x0, 0x1e,
0x7, 0xe0, 0x0, 0x3, 0xf0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F62A "😪" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x80, 0xf, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x7,
0xc0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0,
0x0, 0x1e, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x1, 0xe0, 0x0, 0x3, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0xe, 0x0,
0x20, 0x0, 0x0, 0x3, 0x0, 0x38, 0x3, 0xc0,
0x3c, 0x0, 0x0, 0x0, 0x78, 0x7, 0x0, 0x70,
0x1f, 0x80, 0x0, 0x0, 0xf, 0xc0, 0x70, 0xe,
0xf, 0x80, 0x0, 0x0, 0x0, 0x3e, 0xe, 0x3,
0x83, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0xe0,
0x70, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x1c,
0x1c, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1,
0xc3, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8,
0x38, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xce, 0x0, 0x0, 0x4, 0x0, 0x10,
0x0, 0x0, 0x39, 0xc0, 0x1e, 0x1, 0xc0, 0x7,
0x0, 0xf0, 0x7, 0x38, 0x1, 0xe0, 0xf0, 0x0,
0x78, 0x3c, 0x0, 0xe7, 0x0, 0xf, 0xfc, 0x0,
0x7, 0xfe, 0x0, 0x1c, 0xe0, 0x0, 0x7e, 0x0,
0x0, 0x3f, 0x0, 0x3, 0x9c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x73, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0x81, 0xce, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xfe, 0x39, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x7c, 0x3, 0xfe, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x1e, 0x0, 0xf, 0xc3, 0x80,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x78, 0x70,
0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x7, 0xe,
0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x70,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x6,
0x1c, 0x0, 0x0, 0x3, 0xf8, 0xe, 0x0, 0x0,
0xe1, 0xc0, 0x0, 0x1, 0xff, 0xc0, 0xe0, 0x0,
0xc, 0x38, 0x0, 0x0, 0x7f, 0xfc, 0xc, 0x0,
0x1, 0x87, 0x80, 0x0, 0x1f, 0xff, 0xc1, 0xc0,
0x0, 0x38, 0x70, 0x0, 0x7, 0xff, 0xfc, 0x1c,
0x0, 0x7, 0x7, 0x0, 0x0, 0xff, 0xff, 0x81,
0x80, 0x0, 0xc0, 0xf0, 0x0, 0x1f, 0xff, 0xf0,
0x18, 0x0, 0x18, 0xe, 0x0, 0x3, 0xff, 0xfe,
0x3, 0x80, 0x3, 0x0, 0xe0, 0x0, 0x3f, 0xff,
0x80, 0x38, 0x0, 0xe0, 0x1e, 0x0, 0x2, 0x0,
0x0, 0x3, 0x80, 0x38, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0x1e, 0x0, 0x1e, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x1e, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0xf,
0x80, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x0,
0x7c, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xc0, 0x7, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
/* U+1F62B "😫" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x20, 0x0, 0x20, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x38, 0x0, 0x38, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x78, 0x0, 0xf, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0xf8, 0x0, 0x3, 0xe0,
0x7, 0x0, 0x1e, 0x3, 0xf0, 0x0, 0x0, 0x7e,
0x3, 0xc0, 0xe, 0x3, 0xe0, 0x0, 0x0, 0xf,
0x80, 0xe0, 0xe, 0x1, 0x80, 0x0, 0x0, 0x0,
0xc0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0xf, 0x80, 0x0, 0x0,
0xf, 0x80, 0x3c, 0xe0, 0x7, 0xf8, 0x0, 0x0,
0x3f, 0xc0, 0xe, 0x70, 0x0, 0x3f, 0x0, 0x0,
0x7e, 0x0, 0x7, 0x38, 0x0, 0x3, 0xe0, 0x0,
0xf8, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x78, 0x0,
0xf0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0xfc, 0x0,
0x7e, 0x0, 0x0, 0x7e, 0x0, 0x1, 0xf8, 0x0,
0xf, 0xc0, 0x0, 0x3f, 0x0, 0x1, 0xe0, 0x0,
0x0, 0xf0, 0x0, 0x1f, 0x80, 0x3, 0xc0, 0x0,
0x0, 0x1e, 0x0, 0xf, 0xc0, 0x3, 0xc0, 0x0,
0x0, 0x7, 0x80, 0x7, 0xe0, 0x0, 0x80, 0x0,
0x0, 0x0, 0x80, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x1,
0xff, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x7,
0xff, 0xf0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0xf,
0x80, 0x3e, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x1e,
0x0, 0x3, 0xc0, 0x0, 0x1c, 0xe0, 0x0, 0x1c,
0x0, 0x0, 0x70, 0x0, 0xe, 0x70, 0x0, 0x18,
0x0, 0x0, 0xc, 0x0, 0x7, 0x38, 0x0, 0x18,
0x0, 0x0, 0x3, 0x0, 0x7, 0x8e, 0x0, 0xf,
0xff, 0xff, 0xff, 0x80, 0x3, 0x87, 0x0, 0xf,
0xff, 0xff, 0xff, 0xe0, 0x1, 0xc1, 0xc0, 0x7,
0xff, 0xff, 0xff, 0xf0, 0x1, 0xc0, 0xe0, 0x7,
0xff, 0xff, 0xff, 0xf8, 0x0, 0xe0, 0x78, 0x3,
0xff, 0xff, 0xff, 0xfe, 0x0, 0xe0, 0x1c, 0x1,
0xff, 0xff, 0xff, 0xff, 0x0, 0x70, 0x7, 0x0,
0xff, 0xff, 0xff, 0xff, 0x80, 0x70, 0x3, 0xc0,
0x7f, 0xff, 0xff, 0xff, 0xc0, 0x78, 0x0, 0xe0,
0x3f, 0xfe, 0x3, 0xff, 0xe0, 0x38, 0x0, 0x38,
0xf, 0xf0, 0x0, 0x1f, 0xe0, 0x38, 0x0, 0x1e,
0x7, 0xe0, 0x0, 0x3, 0xf0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F62C "😬" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0xf0, 0x0, 0x3,
0xc0, 0x0, 0xe1, 0xc0, 0x0, 0xfc, 0x0, 0x3,
0xf0, 0x0, 0x71, 0xc0, 0x0, 0xfe, 0x0, 0x1,
0xfc, 0x0, 0x3c, 0xe0, 0x0, 0x7f, 0x80, 0x1,
0xfe, 0x0, 0xe, 0x70, 0x0, 0x3f, 0xc0, 0x0,
0xff, 0x0, 0x7, 0x38, 0x0, 0x1f, 0xe0, 0x0,
0x7f, 0x80, 0x3, 0xb8, 0x0, 0xf, 0xe0, 0x0,
0x1f, 0xc0, 0x0, 0xfc, 0x0, 0x3, 0xf0, 0x0,
0xf, 0xc0, 0x0, 0x7e, 0x0, 0x0, 0xf0, 0x0,
0x3, 0xc0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x7e, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x3f, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0x80, 0x3d, 0xc0, 0x1e, 0xc1,
0x83, 0x6, 0xd, 0xe0, 0x1c, 0xe0, 0x1c, 0x60,
0xc1, 0x83, 0x6, 0x30, 0xe, 0x70, 0xe, 0x30,
0x60, 0xc1, 0x83, 0x1c, 0x7, 0x38, 0x6, 0x18,
0x30, 0x60, 0xc1, 0x86, 0x7, 0x8e, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0x3, 0x87, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0x81, 0xc1, 0xc0, 0xc3,
0x6, 0xc, 0x18, 0x30, 0xc1, 0xc0, 0xe0, 0x71,
0x83, 0x6, 0xc, 0x18, 0xc0, 0xe0, 0x78, 0x18,
0xc1, 0x83, 0x6, 0xc, 0x60, 0xe0, 0x1c, 0xf,
0x60, 0xc1, 0x83, 0x6, 0xe0, 0x70, 0x7, 0x3,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x70, 0x3, 0xc0,
0x7f, 0xff, 0xff, 0xff, 0xe0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F62D "😭" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x3, 0x0, 0x0, 0x0, 0x18,
0x7, 0x0, 0x1e, 0x7, 0x80, 0x0, 0x0, 0xf,
0x3, 0xc0, 0xe, 0xf, 0xc0, 0x0, 0x0, 0x7,
0xe0, 0xe0, 0xe, 0xf, 0x0, 0x0, 0x0, 0x0,
0x7c, 0x38, 0x7, 0xf, 0x0, 0x0, 0x0, 0x0,
0xf, 0x1c, 0x7, 0xe, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc7, 0x3, 0x8e, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf3, 0x83, 0x86, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xe1, 0xc1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xe0, 0x7, 0xf0, 0x0, 0x0,
0x7f, 0x80, 0x38, 0xe0, 0xf, 0xfe, 0x0, 0x0,
0xff, 0xe0, 0xe, 0x70, 0xf, 0xf, 0x80, 0x0,
0xf8, 0x78, 0x7, 0x38, 0xf, 0x87, 0xe0, 0x0,
0xfc, 0x3e, 0x3, 0xb8, 0x2, 0xc3, 0xa0, 0x0,
0x2e, 0x1b, 0x1, 0xdc, 0x0, 0x61, 0xc0, 0x0,
0x7, 0xc, 0x0, 0x7e, 0x0, 0x30, 0xe0, 0x0,
0x3, 0x86, 0x0, 0x3f, 0x0, 0x18, 0x70, 0x0,
0x1, 0xc3, 0x0, 0x1f, 0x80, 0xc, 0x38, 0x0,
0x0, 0xe1, 0x80, 0xf, 0xc0, 0x6, 0x1c, 0x0,
0x0, 0x70, 0xc0, 0x7, 0xe0, 0x3, 0xe, 0x0,
0x0, 0x38, 0x60, 0x3, 0xf0, 0x1, 0x87, 0x0,
0x0, 0x1c, 0x30, 0x1, 0xf8, 0x0, 0xc3, 0x80,
0x0, 0xe, 0x18, 0x0, 0xfc, 0x0, 0x61, 0xc7,
0xff, 0x87, 0xc, 0x0, 0x7e, 0x0, 0x30, 0xef,
0xff, 0xfb, 0x86, 0x0, 0x3f, 0x0, 0x18, 0x7f,
0xc0, 0x7f, 0xc3, 0x0, 0x1d, 0xc0, 0xc, 0x3f,
0x0, 0x7, 0xe1, 0x80, 0x1c, 0xe0, 0x6, 0x1e,
0x0, 0x0, 0xf0, 0xc0, 0xe, 0x70, 0x3, 0xe,
0x0, 0x0, 0x38, 0x60, 0x7, 0x38, 0x1, 0x87,
0x0, 0x0, 0x1c, 0x30, 0x3, 0x8e, 0x0, 0xc3,
0x80, 0x0, 0xe, 0x18, 0x3, 0x87, 0x0, 0x61,
0xc0, 0x0, 0x7, 0xc, 0x1, 0xc3, 0xc0, 0x30,
0xff, 0xff, 0xff, 0x86, 0x1, 0xe0, 0xe0, 0x18,
0x7f, 0xff, 0xff, 0xc3, 0x0, 0xe0, 0x78, 0xc,
0x3f, 0xff, 0xff, 0xe1, 0x80, 0xf0, 0x1c, 0x6,
0x1f, 0xff, 0xff, 0xf0, 0xc0, 0x70, 0xf, 0x3,
0xf, 0xff, 0xff, 0xf8, 0x60, 0x78, 0x3, 0x81,
0x87, 0xff, 0xff, 0xfc, 0x30, 0x38, 0x0, 0xe0,
0xc3, 0xfe, 0x3, 0xfe, 0x18, 0x38, 0x0, 0x78,
0x61, 0xf0, 0x0, 0x1f, 0xc, 0x3c, 0x0, 0x1e,
0x30, 0xe0, 0x0, 0x3, 0x86, 0x3c, 0x0, 0x7,
0x98, 0x70, 0x0, 0x1, 0xc3, 0x3c, 0x0, 0x1,
0xec, 0x38, 0x0, 0x0, 0xe1, 0xbc, 0x0, 0x0,
0x7e, 0x1c, 0x0, 0x0, 0x70, 0xfc, 0x0, 0x0,
0xff, 0xe, 0x0, 0x0, 0x38, 0x7f, 0xc0, 0x1,
0xf0, 0x7, 0x80, 0x0, 0x3c, 0x1, 0xf0, 0x0,
0xe0, 0x1, 0xf0, 0x0, 0x7c, 0x0, 0x18, 0x0,
0x78, 0x0, 0xfc, 0x0, 0x7e, 0x0, 0x3c, 0x0,
0x1e, 0x0, 0x1f, 0x0, 0x7c, 0x0, 0x3c, 0x0,
0x3, 0x0, 0x3, 0x80, 0x38, 0x0, 0x1c, 0x0,
0x1, 0xc0, 0x1, 0xff, 0xfc, 0x0, 0x1e, 0x0,
0x0, 0x78, 0x3, 0xff, 0xff, 0x80, 0x3e, 0x0,
0x0, 0x1f, 0xff, 0xcf, 0xf9, 0xff, 0xfe, 0x0,
0x0, 0x1, 0xff, 0x0, 0x0, 0x1f, 0xf8, 0x0,
0x0,
/* U+1F62E "😮" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0xf0, 0x0, 0x3,
0xc0, 0x0, 0xe1, 0xc0, 0x0, 0xfc, 0x0, 0x3,
0xf0, 0x0, 0x71, 0xc0, 0x0, 0xff, 0x0, 0x3,
0xfc, 0x0, 0x3c, 0xe0, 0x0, 0x7f, 0x80, 0x1,
0xfe, 0x0, 0xe, 0x70, 0x0, 0x3f, 0xc0, 0x0,
0xff, 0x0, 0x7, 0x38, 0x0, 0x1f, 0xe0, 0x0,
0x7f, 0x80, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x3, 0xf0, 0x0,
0xf, 0xc0, 0x0, 0x7e, 0x0, 0x0, 0xf0, 0x0,
0x3, 0xc0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0xf, 0xc0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x3f, 0xff, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x3f, 0xff, 0xc0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x3f, 0xff, 0xf0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x1f, 0xff, 0xf8, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x1f, 0xff, 0xfe, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0xf, 0xff, 0xff, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x7, 0xff, 0xff, 0x80, 0x0, 0xe0, 0x1c, 0x0,
0x3, 0xff, 0xff, 0xc0, 0x0, 0x70, 0x7, 0x0,
0x1, 0xff, 0xff, 0xe0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0xff, 0xff, 0xf0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x3f, 0xff, 0xf0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x7, 0xff, 0xe0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x7f, 0x80, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F62F "😯" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x3, 0xe0, 0x0, 0x3, 0xe0,
0x1c, 0x0, 0x1c, 0xf, 0xf0, 0x0, 0x1, 0xfe,
0x7, 0x0, 0x1e, 0x1f, 0x0, 0x0, 0x0, 0x7,
0xc3, 0xc0, 0xe, 0x1e, 0x0, 0x0, 0x0, 0x0,
0xf0, 0xe0, 0xe, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x38, 0xf, 0x4, 0x0, 0x0, 0x0, 0x0,
0x4, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x7, 0x38, 0x0, 0x3f, 0x0, 0x0,
0x1f, 0x80, 0x3, 0xb8, 0x0, 0x3f, 0xc0, 0x0,
0x1f, 0xe0, 0x0, 0xfc, 0x0, 0x1f, 0xe0, 0x0,
0xf, 0xf0, 0x0, 0x7e, 0x0, 0xf, 0xf0, 0x0,
0x7, 0xf8, 0x0, 0x3f, 0x0, 0x7, 0xf8, 0x0,
0x3, 0xfc, 0x0, 0x1f, 0x80, 0x3, 0xfc, 0x0,
0x1, 0xfe, 0x0, 0xf, 0xc0, 0x0, 0xfc, 0x0,
0x0, 0x7e, 0x0, 0x7, 0xe0, 0x0, 0x3c, 0x0,
0x0, 0x1e, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x1, 0xff, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x3f, 0xfe, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x1f, 0xff, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0xf, 0xff, 0x80, 0x0, 0x38, 0x0, 0x38,
0x0, 0x3, 0xff, 0x80, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x1, 0xff, 0xc0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x7f, 0xc0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0xf, 0x80, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F630 "😰" */
0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0x19, 0xff, 0x80,
0x0, 0x0, 0x0, 0x1, 0xfe, 0x63, 0x31, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xf8, 0xcc, 0x66, 0x37,
0xe0, 0x0, 0x0, 0x0, 0x3d, 0x19, 0x8c, 0xc6,
0x3f, 0x0, 0x0, 0x0, 0xf, 0x23, 0x31, 0x98,
0xc5, 0xf0, 0x0, 0x0, 0x7, 0x84, 0x66, 0x33,
0x18, 0x9f, 0x0, 0x0, 0x1, 0xf0, 0x8c, 0xc6,
0x63, 0x11, 0xf0, 0x0, 0x0, 0x7e, 0x11, 0x98,
0xcc, 0x62, 0x3f, 0x0, 0x0, 0x1e, 0xc2, 0x33,
0x19, 0x8c, 0x46, 0xf0, 0x0, 0x3, 0x98, 0x46,
0x63, 0x31, 0x88, 0xcf, 0x0, 0x0, 0xf3, 0x8,
0xcc, 0x66, 0x31, 0x19, 0xf0, 0x0, 0x3e, 0x61,
0x19, 0x8c, 0xc6, 0x23, 0x3e, 0x0, 0xe, 0xcc,
0x3f, 0x31, 0x98, 0xfc, 0x67, 0xe0, 0x1, 0x99,
0x87, 0x66, 0x33, 0x1f, 0x8c, 0xde, 0x0, 0x73,
0x33, 0xcc, 0xc6, 0x63, 0x7d, 0x99, 0xc0, 0xc,
0x67, 0xf1, 0x98, 0xcc, 0x63, 0xf3, 0x3c, 0x3,
0x8f, 0xfa, 0x33, 0x19, 0x8c, 0x7f, 0xe3, 0x80,
0x71, 0xfc, 0x46, 0x63, 0x31, 0x88, 0xfc, 0x78,
0x1e, 0x33, 0x8, 0xcc, 0x66, 0x31, 0x19, 0x8f,
0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1e, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0x60, 0x0, 0xf, 0x0, 0x0, 0x3c,
0x0, 0x7, 0xc, 0x0, 0x3, 0xf0, 0x0, 0xf,
0xc0, 0x0, 0x71, 0x84, 0x0, 0xff, 0x0, 0x3,
0xfc, 0x0, 0xe, 0x70, 0xc0, 0x1f, 0xe0, 0x0,
0x7f, 0x80, 0x1, 0xce, 0x3c, 0x3, 0xfc, 0x0,
0xf, 0xf0, 0x0, 0x39, 0x8f, 0x80, 0x7f, 0x80,
0x1, 0xfe, 0x0, 0x7, 0x31, 0xf8, 0xf, 0xf0,
0x0, 0x3f, 0xc0, 0x0, 0xe6, 0x73, 0x80, 0xfc,
0x0, 0x3, 0xf0, 0x0, 0x1c, 0xdc, 0x70, 0xf,
0x0, 0x0, 0x3c, 0x0, 0x3, 0x9f, 0x87, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x73, 0xe0, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x3c, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xc0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x38,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xce,
0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39,
0xc0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf,
0x38, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x1,
0xce, 0x0, 0xf, 0x0, 0x3f, 0xf0, 0x0, 0x0,
0x39, 0xc0, 0x0, 0xe0, 0x3f, 0xff, 0xc0, 0x0,
0xe, 0x38, 0x0, 0x1c, 0x1f, 0xff, 0xfe, 0x0,
0x1, 0xc7, 0x0, 0x3, 0x87, 0xff, 0xff, 0xe0,
0x0, 0x70, 0xe0, 0x0, 0x70, 0xff, 0xff, 0xfc,
0x0, 0xe, 0x1c, 0x0, 0xe, 0x3f, 0xff, 0xff,
0xc0, 0x3, 0x83, 0x80, 0x3, 0xc7, 0xff, 0xff,
0xf8, 0x0, 0xf0, 0x38, 0x0, 0x70, 0x7f, 0xff,
0xfe, 0x0, 0x1c, 0x7, 0x0, 0x1e, 0xf, 0xff,
0xff, 0xc0, 0x7, 0x0, 0x70, 0x7, 0x80, 0xff,
0xff, 0xf0, 0x1, 0xc0, 0x7, 0x81, 0xe0, 0x7,
0x80, 0x78, 0x0, 0x70, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x1e, 0x0, 0x3, 0xff, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x7c, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x0,
0x3, 0xe0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0,
0x0, 0x0, 0xfe, 0x0, 0x3f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x0,
/* U+1F631 "😱" */
0x0, 0x0, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe,
0x23, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7,
0xf9, 0x88, 0xc7, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe6, 0x62, 0x31, 0x9f, 0x80, 0x0, 0x0,
0x0, 0x3, 0xf1, 0x98, 0x8c, 0x63, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xec, 0x66, 0x23, 0x18, 0xdf,
0x0, 0x0, 0x0, 0x1, 0xf3, 0x19, 0x88, 0xc6,
0x33, 0xe0, 0x0, 0x0, 0x0, 0xfc, 0xc6, 0x62,
0x31, 0x8c, 0xfc, 0x0, 0x0, 0x0, 0x7b, 0x31,
0x98, 0x8c, 0x63, 0x37, 0x80, 0x0, 0x0, 0x3c,
0xcc, 0x66, 0x23, 0x18, 0xcc, 0xf0, 0x0, 0x0,
0x1e, 0x33, 0x19, 0x88, 0xc6, 0x33, 0x1e, 0x0,
0x0, 0x7, 0x8c, 0xc6, 0x62, 0x31, 0x8c, 0xc7,
0x80, 0x0, 0x3, 0xe3, 0x31, 0x98, 0x8c, 0x63,
0x31, 0xf0, 0x0, 0x1, 0xf8, 0xcc, 0x66, 0x23,
0x18, 0xcc, 0x7e, 0x0, 0x0, 0x76, 0x33, 0x19,
0x88, 0xc6, 0x33, 0x1b, 0x80, 0x0, 0x39, 0x8c,
0xc6, 0x62, 0x31, 0x8c, 0xc6, 0x70, 0x0, 0x1e,
0x63, 0x31, 0x98, 0x8c, 0x63, 0x31, 0x9e, 0x0,
0x7, 0x18, 0xcc, 0x66, 0x23, 0x18, 0xcc, 0x63,
0x80, 0x1, 0xc6, 0x3f, 0xf9, 0x88, 0xc7, 0xff,
0x18, 0xe0, 0x0, 0xf1, 0x8f, 0xfe, 0x62, 0x31,
0xff, 0xc6, 0x3c, 0x0, 0x38, 0x7, 0x83, 0x80,
0x0, 0xf0, 0x78, 0x7, 0x0, 0x1e, 0x3, 0xc0,
0x70, 0x0, 0x78, 0xf, 0x1, 0xe0, 0x7, 0x0,
0xe0, 0xe, 0x0, 0x1c, 0x1, 0xc0, 0x38, 0x1,
0xc0, 0x70, 0x1, 0x80, 0xe, 0x0, 0x38, 0xe,
0x0, 0x70, 0x1c, 0x0, 0x60, 0x3, 0x80, 0xe,
0x3, 0x80, 0x3c, 0xe, 0x0, 0x18, 0x0, 0xe0,
0x1, 0xc0, 0xf0, 0xe, 0x3, 0x80, 0x3, 0x0,
0x70, 0x0, 0x70, 0x1c, 0x3, 0x80, 0xe0, 0x0,
0xc0, 0x1c, 0x0, 0x1c, 0x7, 0x0, 0xe0, 0x38,
0x0, 0x60, 0x3, 0x0, 0x7, 0x1, 0xc0, 0x38,
0xe, 0x0, 0x18, 0x0, 0xe0, 0x1, 0xc0, 0x70,
0xe, 0x3, 0x80, 0x6, 0x0, 0x38, 0x0, 0x70,
0x1c, 0x3, 0x80, 0x70, 0x3, 0x80, 0xf, 0x0,
0x38, 0x7, 0x0, 0xe0, 0x1c, 0x0, 0xc0, 0x1,
0xc0, 0xe, 0x1, 0xc0, 0x38, 0x3, 0x80, 0x70,
0x0, 0x38, 0x7, 0x0, 0x70, 0xf, 0x80, 0xf0,
0x38, 0x0, 0xf, 0x3, 0x80, 0x7c, 0x3, 0xf4,
0x1f, 0xfc, 0x0, 0x0, 0xff, 0xc0, 0x3f, 0x3,
0xcf, 0xc1, 0xfc, 0x0, 0x0, 0x1f, 0xe0, 0xfc,
0xf1, 0xf1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7e, 0x3e, 0xfc, 0x67, 0x0, 0x0, 0x1c, 0x0,
0x0, 0x39, 0x8f, 0xfb, 0x19, 0xc0, 0x0, 0xf,
0x80, 0x0, 0xe, 0x63, 0xbe, 0xc6, 0x38, 0x0,
0x7, 0xf0, 0x0, 0x7, 0x18, 0xef, 0xb1, 0x87,
0x0, 0x1, 0xfc, 0x0, 0x3, 0x8e, 0x3b, 0xec,
0x31, 0xe0, 0x0, 0xff, 0x80, 0x0, 0xe3, 0xc,
0xfb, 0x8c, 0x38, 0x0, 0x3f, 0xe0, 0x0, 0x70,
0xc7, 0x3e, 0x63, 0x87, 0x80, 0xf, 0xf8, 0x0,
0x78, 0x71, 0xdf, 0x9c, 0x60, 0xf0, 0x7, 0xff,
0x0, 0x3c, 0x18, 0xe7, 0x73, 0x1c, 0x1e, 0x1,
0xff, 0xc0, 0x1e, 0xe, 0x39, 0xdc, 0xe3, 0x83,
0xc0, 0x7f, 0xf0, 0xf, 0x7, 0x1c, 0x67, 0x18,
0xe0, 0x78, 0x1f, 0xfc, 0x7, 0x81, 0xc6, 0x38,
0xe7, 0x10, 0xf, 0x7, 0xff, 0x3, 0xc0, 0x23,
0x8e, 0x38, 0x80, 0x1, 0xe1, 0xff, 0xc1, 0xe0,
0x0, 0x43, 0xf, 0x0, 0x0, 0x3c, 0x7f, 0xf0,
0xf0, 0x0, 0x1, 0xc1, 0xc0, 0x0, 0x7, 0x1f,
0xfc, 0x38, 0x0, 0x0, 0xe0, 0x38, 0x0, 0x0,
0xe3, 0xfe, 0x1c, 0x0, 0x0, 0x38, 0xe, 0x0,
0x0, 0x38, 0x7f, 0x7, 0x0, 0x0, 0x1c, 0x1,
0xc0, 0x0, 0x7, 0xf, 0x83, 0x80, 0x0, 0xe,
0x0, 0x38, 0x0, 0x1, 0xc0, 0x0, 0xe0, 0x0,
0x3, 0x80, 0xf, 0x0, 0x0, 0x70, 0x0, 0x38,
0x0, 0x1, 0xc0, 0x1, 0xe0, 0x0, 0x1c, 0x0,
0xe, 0x0, 0x0, 0xe0, 0x0, 0x3c, 0x0, 0x7,
0x0, 0x3, 0x80, 0x0, 0xf0, 0x0, 0x3, 0x80,
0x3, 0xe0, 0x1, 0xf0, 0x0, 0x78, 0x0, 0x0,
0x78, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x78, 0x0,
0x0, 0xf, 0x81, 0xff, 0xff, 0xff, 0xe0, 0x7c,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x3f, 0xe0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x0, 0x0,
0x3, 0xf8, 0x0, 0x0,
/* U+1F632 "😲" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x7, 0xc0, 0x0, 0x1f, 0x1,
0xe0, 0x0, 0x3c, 0x1f, 0xe0, 0x0, 0xf, 0xf0,
0x70, 0x0, 0x1c, 0x3f, 0x0, 0x0, 0x0, 0x3e,
0x1c, 0x0, 0x1c, 0x7c, 0x0, 0x0, 0x0, 0x7,
0xc7, 0x0, 0x1e, 0x38, 0x0, 0x0, 0x0, 0x0,
0xe3, 0xc0, 0xe, 0x8, 0x0, 0x0, 0x0, 0x0,
0x20, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x78, 0x0, 0x1,
0xc0, 0x0, 0x71, 0xc0, 0x0, 0x7e, 0x0, 0x3,
0xf0, 0x0, 0x3c, 0xe0, 0x0, 0x3f, 0x0, 0x1,
0xfc, 0x0, 0xe, 0x70, 0x0, 0x3f, 0xc0, 0x0,
0xfe, 0x0, 0x7, 0x38, 0x0, 0x1f, 0xe0, 0x0,
0xff, 0x0, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x7f, 0x80, 0x0, 0xfc, 0x0, 0x7, 0xf8, 0x0,
0x3f, 0xc0, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0xf, 0xe0, 0x0, 0x3f, 0x0, 0x0, 0xfc, 0x0,
0x7, 0xf0, 0x0, 0x1f, 0x80, 0x0, 0x7e, 0x0,
0x3, 0xf0, 0x0, 0xf, 0xc0, 0x0, 0x1e, 0x0,
0x0, 0x70, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x1f, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x1f, 0xe0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x1c, 0x38, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x1c, 0xc, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0xc, 0x7, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0xe, 0x1, 0x80, 0x0, 0x3, 0x87, 0x0, 0x0,
0x6, 0x0, 0xc0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x1, 0xff, 0xf0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x3f, 0xfe, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x1f, 0xff, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0xf, 0xff, 0x80, 0x0, 0x38, 0x0, 0x38,
0x0, 0x7, 0xff, 0xc0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x3, 0xff, 0xe0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0xff, 0xf0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x7f, 0xf0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x1f, 0xf8, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x7, 0xf8, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x1, 0xf0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F633 "😳" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x1f, 0xe0, 0x0, 0x3, 0xfc,
0x1c, 0x0, 0x1c, 0x3f, 0xfc, 0x0, 0x3, 0xff,
0x87, 0x0, 0x1e, 0x8, 0x4, 0x0, 0x1, 0x0,
0xc3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x1f, 0x80, 0x0, 0x0,
0xfe, 0x0, 0xe1, 0xc0, 0x3f, 0xf0, 0x0, 0x1,
0xff, 0xc0, 0x71, 0xc0, 0x3c, 0x1c, 0x0, 0x1,
0xe0, 0xf0, 0x3c, 0xe0, 0x38, 0x7, 0x0, 0x1,
0xc0, 0x1c, 0xe, 0x70, 0x38, 0x1, 0xc0, 0x1,
0xc0, 0x7, 0x7, 0x38, 0x18, 0x0, 0x60, 0x0,
0xc0, 0x1, 0x83, 0xb8, 0x1c, 0x0, 0x38, 0x0,
0xe0, 0x0, 0xe0, 0xfc, 0xc, 0x1e, 0xc, 0x0,
0x60, 0xf0, 0x30, 0x7e, 0x6, 0x1f, 0x86, 0x0,
0x30, 0xfc, 0x18, 0x3f, 0x3, 0xf, 0xc3, 0x0,
0x18, 0x7e, 0xc, 0x1f, 0x81, 0x87, 0xe1, 0x80,
0xc, 0x3f, 0x6, 0xf, 0xc0, 0xc3, 0xf0, 0xc0,
0x6, 0x1f, 0x83, 0x7, 0xe0, 0x70, 0xf0, 0xe0,
0x3, 0x87, 0x83, 0x83, 0xf0, 0x18, 0x0, 0x60,
0x0, 0xc0, 0x1, 0x81, 0xf8, 0xe, 0x0, 0x70,
0x0, 0x70, 0x1, 0xc0, 0xfc, 0x3, 0x80, 0x70,
0x0, 0x1c, 0x1, 0xc0, 0x7e, 0x0, 0xe0, 0x70,
0x0, 0x7, 0x83, 0xc0, 0x3f, 0x0, 0x3f, 0xf0,
0x0, 0x1, 0xff, 0xc0, 0x3d, 0xc0, 0x7, 0xe0,
0x0, 0x0, 0x3f, 0x80, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x30,
0x0, 0x0, 0x0, 0x20, 0x7, 0x8e, 0x1, 0x99,
0x0, 0x0, 0x3, 0x33, 0x3, 0x87, 0x0, 0x99,
0x80, 0x0, 0x1, 0x99, 0x1, 0xc1, 0xc0, 0xcc,
0x80, 0x0, 0x1, 0x99, 0x81, 0xc0, 0xe0, 0x4c,
0xc0, 0x0, 0x0, 0xcc, 0x80, 0xe0, 0x78, 0x26,
0x40, 0x0, 0x0, 0x4c, 0x40, 0xe0, 0x1c, 0x2,
0x0, 0x0, 0x0, 0x4, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x7, 0xff, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x3, 0xff, 0x80, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F634 "😴" */
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x70,
0x0, 0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x3f,
0xc0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x3,
0xe0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0x0, 0x0,
0xf0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x10, 0x1,
0xe0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0xf, 0xc1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x3, 0xe1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x70,
0xfe, 0x0, 0x3c, 0x0, 0x0, 0xe, 0x0, 0x70,
0x3f, 0x80, 0x3c, 0x0, 0x0, 0x7, 0xe0, 0x70,
0x0, 0xc0, 0x1c, 0x0, 0x0, 0x0, 0x78, 0x70,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x38, 0x70,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x78, 0x3f,
0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x70, 0x1f,
0xc0, 0x60, 0xe, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x7f, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xdc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x20, 0x4, 0x0,
0x10, 0x2, 0x0, 0x3f, 0x0, 0x38, 0x7, 0x0,
0x1c, 0x3, 0x80, 0x1f, 0x80, 0xf, 0xf, 0x0,
0x7, 0x87, 0x80, 0xf, 0xc0, 0x3, 0xff, 0x0,
0x1, 0xff, 0x80, 0x7, 0xe0, 0x0, 0x7e, 0x0,
0x0, 0x3f, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0xfe, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x1, 0xff, 0xf0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x1, 0xff, 0xfc, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x1, 0xff, 0xff, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0xff, 0xff, 0x80, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x7f, 0xff, 0xc0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x3f, 0xff, 0xe0, 0x0, 0x38, 0x0, 0x38,
0x0, 0xf, 0xff, 0xe0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x2, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F635 "😵" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x1, 0xf0, 0x0, 0x7, 0xc0,
0x1c, 0x0, 0x1c, 0x7, 0xf8, 0x0, 0x3, 0xfc,
0x7, 0x0, 0x1e, 0xf, 0xc0, 0x0, 0x0, 0x1f,
0x83, 0xc0, 0xe, 0xf, 0x0, 0x0, 0x0, 0x1,
0xe0, 0xe0, 0xe, 0x6, 0x0, 0x0, 0x0, 0x0,
0x30, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x3, 0x0, 0x18,
0x0, 0x0, 0x71, 0xc0, 0x18, 0x3, 0xc0, 0x1e,
0x0, 0xc0, 0x3c, 0xe0, 0xe, 0x3, 0xc0, 0x7,
0x80, 0xe0, 0xe, 0x70, 0x7, 0xc3, 0xc0, 0x1,
0xe1, 0xf0, 0x7, 0x38, 0x0, 0xf1, 0xc0, 0x0,
0x71, 0xe0, 0x3, 0xb8, 0x0, 0x3d, 0xc0, 0x0,
0x1d, 0xe0, 0x0, 0xfc, 0x0, 0xf, 0xc0, 0x0,
0x7, 0xe0, 0x0, 0x7e, 0x0, 0x1, 0xe0, 0x0,
0x3, 0xc0, 0x0, 0x3f, 0x0, 0x1, 0xfc, 0x0,
0x7, 0xf0, 0x0, 0x1f, 0x80, 0x1, 0xef, 0x0,
0x7, 0xbc, 0x0, 0xf, 0xc0, 0x1, 0xe3, 0xc0,
0x7, 0x8f, 0x0, 0x7, 0xe0, 0x1, 0xe0, 0xf8,
0xf, 0x83, 0xc0, 0x3, 0xf0, 0x0, 0xe0, 0x18,
0x3, 0x0, 0xe0, 0x1, 0xf8, 0x0, 0xe0, 0x4,
0x1, 0x0, 0x38, 0x0, 0xfc, 0x0, 0x20, 0x0,
0x0, 0x0, 0x8, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0xf, 0xe0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x1f, 0xfc, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x1f, 0xff, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x1f, 0xff, 0xc0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x1f, 0xff, 0xf0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x1f, 0xff, 0xf8, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0xf, 0xff, 0xfe, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x7, 0xff, 0xff, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x3, 0xff, 0xff, 0x80, 0x0, 0x70, 0x7, 0x0,
0x1, 0xff, 0xff, 0xc0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x7f, 0xff, 0xc0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x1f, 0xff, 0xc0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x7, 0xff, 0xc0, 0x0, 0x38, 0x0, 0xe,
0x0, 0x0, 0xff, 0x80, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0,
/* U+1F636 "😶" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x1e, 0x0, 0x0,
0x78, 0x0, 0xe, 0x70, 0x0, 0x1f, 0x80, 0x0,
0x7e, 0x0, 0x7, 0x38, 0x0, 0x1f, 0xe0, 0x0,
0x7f, 0x80, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x7, 0xf8, 0x0,
0x1f, 0xe0, 0x0, 0x7e, 0x0, 0x3, 0xfc, 0x0,
0xf, 0xf0, 0x0, 0x3f, 0x0, 0x1, 0xfe, 0x0,
0x7, 0xf8, 0x0, 0x1f, 0x80, 0x0, 0x7e, 0x0,
0x1, 0xf8, 0x0, 0xf, 0xc0, 0x0, 0x1e, 0x0,
0x0, 0x78, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F637 "😷" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x78, 0x0, 0x1,
0xe0, 0x0, 0x71, 0xc0, 0x0, 0x7e, 0x0, 0x1,
0xf8, 0x0, 0x3c, 0xe0, 0x0, 0x7f, 0x80, 0x1,
0xfe, 0x0, 0xe, 0x70, 0x0, 0x3f, 0xc0, 0x0,
0xff, 0x0, 0x7, 0x38, 0x0, 0x1f, 0xe0, 0x0,
0x7f, 0x80, 0x3, 0xb8, 0x0, 0xf, 0xf0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x7, 0xf8, 0x0,
0x1f, 0xe0, 0x0, 0x7e, 0x0, 0x1, 0xf8, 0x0,
0x7, 0xe0, 0x0, 0x3f, 0x0, 0x0, 0x78, 0x0,
0x1, 0xe0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x3, 0xf8, 0x0, 0x3f, 0xf0,
0x0, 0xff, 0xc0, 0x3, 0xff, 0x0, 0xff, 0x0,
0x0, 0x3, 0xfc, 0x7, 0xff, 0xf0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x1f, 0xfe, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xbf, 0xf, 0xf0, 0x0,
0x0, 0x0, 0x0, 0xfe, 0x3d, 0xc0, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x78, 0x1c, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x38, 0xe, 0x70, 0xe, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x7, 0x38, 0x7, 0x0,
0x0, 0x0, 0x0, 0xe, 0x7, 0x8e, 0x3, 0x80,
0x0, 0x0, 0x0, 0x7, 0x3, 0x87, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x3, 0x81, 0xc1, 0xc0, 0xe0,
0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0xe0, 0x70,
0x0, 0x0, 0x0, 0x0, 0xe0, 0xe0, 0x78, 0x38,
0x0, 0x0, 0x0, 0x0, 0x70, 0xe0, 0x1c, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x38, 0x70, 0x7, 0x6,
0x0, 0x0, 0x0, 0x0, 0x38, 0x70, 0x3, 0xc3,
0x80, 0x0, 0x0, 0x0, 0x1c, 0x78, 0x0, 0xe3,
0xc0, 0x0, 0x0, 0x0, 0xf, 0x38, 0x0, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x1f,
0x9f, 0x0, 0x0, 0x0, 0x3e, 0xf8, 0x0, 0x7,
0x87, 0xe0, 0x0, 0x0, 0x7e, 0x3c, 0x0, 0x1,
0xe0, 0xfc, 0x0, 0x0, 0xf8, 0x3c, 0x0, 0x0,
0x78, 0xf, 0xe0, 0x7, 0xf0, 0x3c, 0x0, 0x0,
0x1e, 0x1, 0xff, 0xff, 0xc0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0xf, 0xfe, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F638 "😸" */
0x0, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xfe, 0x0, 0x1, 0xe3, 0x80, 0x0, 0x0, 0x0,
0x3, 0xc7, 0x0, 0x1, 0xc1, 0xc0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x0, 0x3, 0x80, 0x60, 0x0,
0x0, 0x0, 0xe, 0x3, 0x80, 0x3, 0x80, 0x30,
0x0, 0x0, 0x0, 0x1c, 0x3, 0x80, 0x3, 0x80,
0x18, 0x0, 0x0, 0x0, 0x38, 0x1, 0x80, 0x7,
0x0, 0xc, 0x0, 0x0, 0x0, 0x70, 0x1, 0xc0,
0x7, 0x4, 0x6, 0x0, 0x0, 0x0, 0xe0, 0x41,
0xc0, 0x7, 0xe, 0x7, 0x0, 0x0, 0x1, 0xc0,
0xe1, 0xc0, 0x7, 0xf, 0x3, 0x87, 0xff, 0xc3,
0x81, 0xe1, 0xc0, 0x7, 0xf, 0x81, 0xff, 0xff,
0xff, 0x3, 0xe1, 0xc0, 0x7, 0xf, 0xc0, 0xff,
0xc7, 0xff, 0x7, 0xe1, 0xc0, 0x7, 0xf, 0xe0,
0xbf, 0xc7, 0xfa, 0xf, 0xe1, 0xc0, 0x7, 0xf,
0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1, 0xc0, 0x7,
0xf, 0xf0, 0x1f, 0xc7, 0xf0, 0x1f, 0xe1, 0xc0,
0x7, 0xf, 0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1,
0xc0, 0x7, 0xf, 0xc0, 0xf, 0xc7, 0xe0, 0x7,
0xe1, 0xc0, 0x7, 0x7, 0x80, 0xf, 0xc7, 0xe0,
0x3, 0xc1, 0xc0, 0x3, 0x87, 0x0, 0x7, 0x83,
0xc0, 0x1, 0xc1, 0xc0, 0x3, 0x86, 0x0, 0x3,
0x83, 0xc0, 0x0, 0xc1, 0x80, 0x3, 0x84, 0x0,
0x0, 0x0, 0x0, 0x0, 0x43, 0x80, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x1,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x61, 0xc0, 0x7,
0xc0, 0x0, 0x7, 0xc0, 0x7, 0xc, 0xfd, 0xc0,
0x1f, 0xf0, 0x0, 0xf, 0xf0, 0x7, 0x3e, 0x3f,
0xc0, 0x3c, 0x78, 0x0, 0x3c, 0x78, 0x3, 0xf8,
0x7, 0xe0, 0x78, 0x3c, 0x0, 0x38, 0x1c, 0x7,
0xe0, 0x1, 0xf8, 0x30, 0x18, 0x0, 0x30, 0x1c,
0x3f, 0x80, 0x3, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0x80, 0x3, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x13, 0x80, 0xf3, 0x80, 0x0, 0x0,
0x7c, 0x0, 0x0, 0x3, 0x9e, 0xff, 0xe0, 0x0,
0x0, 0xfe, 0x0, 0x0, 0xf, 0xfe, 0xff, 0xf8,
0x0, 0x0, 0xfe, 0x0, 0x0, 0x3f, 0xfe, 0x1,
0xf8, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x3f, 0x80,
0x1, 0xc0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x3,
0x80, 0x1, 0xc0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x7, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x7c, 0x0,
0x0, 0x7, 0x0, 0x1, 0xf8, 0x3, 0xe0, 0x7e,
0x7, 0x80, 0x3f, 0x0, 0x1, 0xf8, 0x7, 0xff,
0xff, 0xff, 0xc0, 0x3f, 0x0, 0x1f, 0xe0, 0xe,
0xff, 0xd7, 0xfe, 0xe0, 0xf, 0xf0, 0x7f, 0x60,
0xe, 0xc2, 0x10, 0xc6, 0xe0, 0xf, 0xfc, 0x78,
0x70, 0xe, 0xc2, 0x10, 0xc6, 0xe0, 0x1c, 0x3c,
0x0, 0x70, 0x7, 0xc2, 0x10, 0xc7, 0xe0, 0x1c,
0x0, 0x0, 0x38, 0x7, 0xc2, 0x10, 0xc7, 0xc0,
0x38, 0x0, 0x0, 0x1c, 0x3, 0xe2, 0x10, 0xcf,
0x80, 0x78, 0x0, 0x0, 0x1e, 0x1, 0xfe, 0x10,
0xff, 0x0, 0x70, 0x0, 0x0, 0xf, 0x0, 0x7f,
0xff, 0xfc, 0x0, 0xe0, 0x0, 0x0, 0x7, 0x80,
0x1f, 0xff, 0xf0, 0x1, 0xc0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0xfe, 0x0, 0x7, 0x80, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x3,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0,
0x3f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
/* U+1F639 "😹" */
0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x0,
0xfe, 0x0, 0x0, 0xe3, 0xc0, 0x0, 0x0, 0x0,
0x3, 0xe3, 0x0, 0x0, 0xc0, 0xe0, 0x0, 0x0,
0x0, 0x7, 0x81, 0x0, 0x1, 0xc0, 0x70, 0x0,
0x0, 0x0, 0xf, 0x1, 0x80, 0x1, 0xc0, 0x38,
0x0, 0x0, 0x0, 0x1e, 0x1, 0x80, 0x1, 0x80,
0x1c, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x80, 0x1,
0x80, 0xe, 0x0, 0x0, 0x0, 0x78, 0x0, 0xc0,
0x3, 0x82, 0x7, 0x0, 0x0, 0x0, 0xf0, 0x20,
0xc0, 0x3, 0x87, 0x3, 0x80, 0x0, 0x1, 0xe0,
0x70, 0xc0, 0x3, 0x87, 0x81, 0x83, 0xff, 0xc1,
0xc0, 0xf0, 0xc0, 0x3, 0x87, 0xc0, 0xff, 0xff,
0xff, 0x81, 0xf0, 0xc0, 0x3, 0x87, 0xe0, 0xff,
0xe3, 0xff, 0x83, 0xf0, 0xc0, 0x3, 0x87, 0xf0,
0x5f, 0xe3, 0xfd, 0x7, 0xf0, 0xc0, 0x3, 0x87,
0xf0, 0xf, 0xe3, 0xf8, 0x7, 0xf0, 0xc0, 0x3,
0x87, 0xf8, 0xf, 0xe3, 0xf8, 0xf, 0xf0, 0xc0,
0x3, 0x87, 0xf0, 0xf, 0xe3, 0xf8, 0x7, 0xf0,
0xc0, 0x3, 0x87, 0xe0, 0x7, 0xe3, 0xf0, 0x3,
0xf0, 0xc0, 0x3, 0x83, 0xc0, 0x7, 0xe3, 0xf0,
0x1, 0xe0, 0xc0, 0x1, 0x83, 0x80, 0x3, 0xc1,
0xe0, 0x0, 0xe0, 0xc0, 0x1, 0x83, 0x0, 0x1,
0xc1, 0xe0, 0x0, 0x60, 0xc0, 0x1, 0xc2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x21, 0x80, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x80, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x80, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0x0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x30, 0xe0, 0x3,
0xe0, 0x0, 0x3, 0xe0, 0x3, 0x8c, 0x7c, 0xe0,
0xf, 0xf8, 0x0, 0x7, 0xf8, 0x3, 0xbe, 0x1f,
0xc0, 0x1e, 0x3c, 0x0, 0x1e, 0x3c, 0x1, 0xf8,
0x7, 0xe0, 0x3c, 0x1e, 0x0, 0x1c, 0xe, 0x7,
0xe0, 0x1, 0xfc, 0x18, 0xc, 0x0, 0x18, 0xe,
0x1f, 0xc0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xc0, 0x1, 0xc8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x9, 0xc0, 0x79, 0xc0, 0x0, 0x0,
0x3e, 0x0, 0x0, 0x1, 0xce, 0x7f, 0xcf, 0xf0,
0x0, 0x7f, 0x0, 0x7, 0xf1, 0xfe, 0x7f, 0xff,
0xf0, 0x0, 0x7f, 0x0, 0x7, 0xff, 0xfe, 0x1,
0xfe, 0x60, 0x0, 0x3f, 0x0, 0x3, 0x3f, 0xc0,
0x3, 0xf0, 0xe0, 0x0, 0x1e, 0x0, 0x3, 0x87,
0xc0, 0x7, 0xc0, 0xe0, 0x0, 0x1e, 0x0, 0x3,
0x81, 0xe0, 0xf, 0x0, 0xc0, 0x0, 0x3e, 0x0,
0x1, 0x80, 0xf0, 0xe, 0x0, 0xc1, 0xf0, 0x3f,
0x3, 0xc1, 0x80, 0x70, 0x1e, 0x1, 0xc3, 0xff,
0xff, 0xff, 0xe1, 0x80, 0x78, 0x1c, 0x1, 0xc7,
0x7f, 0xeb, 0xff, 0x71, 0xc0, 0x38, 0x1c, 0x1,
0x87, 0x61, 0x8, 0x63, 0x70, 0xc0, 0x38, 0x1c,
0x3, 0x87, 0x61, 0x8, 0x63, 0x70, 0xc0, 0x38,
0x1c, 0x3, 0x83, 0xe1, 0x8, 0x63, 0xe0, 0xe0,
0x38, 0xe, 0x7, 0x3, 0xe1, 0x8, 0x63, 0xe0,
0x60, 0x70, 0xf, 0xe, 0x1, 0xf1, 0x8, 0x67,
0xc0, 0x70, 0xf0, 0x7, 0xff, 0x0, 0x7f, 0x8,
0x7f, 0x80, 0x7f, 0xe0, 0x1, 0xfb, 0x80, 0x3f,
0xff, 0xfe, 0x0, 0xef, 0xc0, 0x0, 0x1, 0xc0,
0x7, 0xff, 0xf0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x78, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x1e, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x3,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0,
0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x0, 0x0,
/* U+1F63A "😺" */
0x0, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xfe, 0x0, 0x1, 0xe3, 0x80, 0x0, 0x0, 0x0,
0x3, 0xc7, 0x0, 0x1, 0xc1, 0xc0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x0, 0x3, 0x80, 0x60, 0x0,
0x0, 0x0, 0xe, 0x3, 0x80, 0x3, 0x80, 0x30,
0x0, 0x0, 0x0, 0x1c, 0x3, 0x80, 0x3, 0x80,
0x18, 0x0, 0x0, 0x0, 0x38, 0x1, 0x80, 0x7,
0x0, 0xc, 0x0, 0x0, 0x0, 0x70, 0x1, 0xc0,
0x7, 0x4, 0x6, 0x0, 0x0, 0x0, 0xe0, 0x41,
0xc0, 0x7, 0xe, 0x7, 0x0, 0x0, 0x1, 0xc0,
0xe1, 0xc0, 0x7, 0xf, 0x3, 0x87, 0xff, 0xc3,
0x81, 0xe1, 0xc0, 0x7, 0xf, 0x81, 0xff, 0xff,
0xff, 0x3, 0xe1, 0xc0, 0x7, 0xf, 0xc0, 0xff,
0xc7, 0xff, 0x7, 0xe1, 0xc0, 0x7, 0xf, 0xe0,
0xbf, 0xc7, 0xfa, 0xf, 0xe1, 0xc0, 0x7, 0xf,
0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1, 0xc0, 0x7,
0xf, 0xf0, 0x1f, 0xc7, 0xf0, 0x1f, 0xe1, 0xc0,
0x7, 0xf, 0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1,
0xc0, 0x7, 0xf, 0xc0, 0xf, 0xc7, 0xe0, 0x7,
0xe1, 0xc0, 0x7, 0xf, 0x80, 0xf, 0xc7, 0xe0,
0x3, 0xc1, 0xc0, 0x3, 0x87, 0x0, 0x7, 0x83,
0xc0, 0x1, 0xc1, 0xc0, 0x3, 0x86, 0x0, 0x7,
0x83, 0xc0, 0x0, 0xc1, 0x80, 0x3, 0x84, 0x0,
0x1, 0x1, 0x0, 0x0, 0x43, 0x80, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x1,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0xc0, 0x3, 0x80,
0x0, 0x3, 0x80, 0x7, 0x0, 0x1, 0xc0, 0x7,
0xc0, 0x0, 0x7, 0xc0, 0x7, 0x0, 0x1, 0xc0,
0x7, 0xe0, 0x0, 0xf, 0xc0, 0x7, 0x0, 0x1,
0xc0, 0xf, 0xe0, 0x0, 0xf, 0xe0, 0x3, 0x80,
0x81, 0x80, 0xf, 0xe0, 0x0, 0xf, 0xe0, 0x3,
0x82, 0xff, 0xe0, 0x7, 0xe0, 0x0, 0xf, 0xc0,
0x7, 0xfe, 0xff, 0xf8, 0x7, 0xc0, 0x0, 0x7,
0xc0, 0x3f, 0xfe, 0x3, 0xf8, 0x3, 0x80, 0x0,
0x3, 0x80, 0x3f, 0x80, 0x3, 0x80, 0x0, 0x0,
0x10, 0x0, 0x0, 0x3, 0x80, 0x3, 0x80, 0x0,
0x0, 0xfe, 0x0, 0x0, 0x3, 0x80, 0x1, 0x80,
0x0, 0x0, 0xfe, 0x0, 0x0, 0x3, 0x80, 0xf,
0xfc, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x7f, 0xe0,
0xff, 0xfc, 0x0, 0x0, 0x38, 0x0, 0x0, 0x7f,
0xfe, 0xf9, 0xc0, 0x0, 0x0, 0x38, 0x2, 0x0,
0x7, 0x3e, 0x41, 0xc0, 0x0, 0xc0, 0x7e, 0x6,
0x0, 0x7, 0x2, 0x1, 0xc0, 0x1, 0xff, 0xef,
0xff, 0x0, 0x7, 0x0, 0x0, 0xc0, 0x0, 0xff,
0xc7, 0xfe, 0x0, 0x7, 0x0, 0x0, 0xef, 0x0,
0x3f, 0x1, 0xf8, 0x1, 0xee, 0x0, 0x0, 0xff,
0x0, 0xe, 0x0, 0xe0, 0x1, 0xfe, 0x0, 0x1,
0xf0, 0x0, 0x7, 0x1, 0xc0, 0x0, 0x1f, 0x80,
0x7, 0xf0, 0x0, 0x3, 0x83, 0x80, 0x0, 0x1f,
0xc0, 0xf, 0x38, 0x0, 0x1, 0xff, 0x0, 0x0,
0x39, 0xf0, 0x1c, 0x1c, 0x0, 0x0, 0x7c, 0x0,
0x0, 0x78, 0x70, 0x0, 0x1e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x20, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x3,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x0,
0x3f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
/* U+1F63B "😻" */
0x0, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xfe, 0x0, 0x1, 0xe3, 0x80, 0x0, 0x0, 0x0,
0x3, 0xc7, 0x0, 0x1, 0xc1, 0xc0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x0, 0x3, 0x80, 0x60, 0x0,
0x0, 0x0, 0xe, 0x3, 0x80, 0x3, 0x80, 0x30,
0x0, 0x0, 0x0, 0x1c, 0x3, 0x80, 0x3, 0x80,
0x18, 0x0, 0x0, 0x0, 0x38, 0x1, 0x80, 0x7,
0x0, 0xc, 0x0, 0x0, 0x0, 0x70, 0x1, 0xc0,
0x7, 0x4, 0x6, 0x0, 0x0, 0x0, 0xe0, 0x41,
0xc0, 0x7, 0xe, 0x7, 0x0, 0x0, 0x1, 0xc0,
0xe1, 0xc0, 0x7, 0xf, 0x3, 0x87, 0xff, 0xc3,
0x81, 0xe1, 0xc0, 0x7, 0xf, 0x81, 0xff, 0xff,
0xff, 0x3, 0xe1, 0xc0, 0x7, 0xf, 0xc0, 0xff,
0xc7, 0xff, 0x7, 0xe1, 0xc0, 0x7, 0xf, 0xe0,
0x9f, 0xc7, 0xf2, 0xf, 0xe1, 0xc0, 0x7, 0xf,
0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1, 0xc0, 0x7,
0xf, 0xf0, 0xf, 0xc7, 0xe0, 0x1f, 0xe1, 0xc0,
0x7, 0xf, 0xe0, 0xf, 0xc7, 0xe0, 0xf, 0xe1,
0xc0, 0x7, 0xf, 0xc0, 0x7, 0xc7, 0xc0, 0x7,
0xe1, 0xc0, 0x7, 0xf, 0x80, 0x7, 0x83, 0xc0,
0x3, 0xc1, 0xc0, 0x3, 0x87, 0x0, 0x3, 0x83,
0x80, 0x1, 0xc1, 0xc0, 0x3, 0x86, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc3, 0x80, 0x3, 0x84, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x43, 0x80, 0x3, 0x80,
0x1, 0xf8, 0x0, 0x3f, 0x0, 0x3, 0x80, 0x1,
0xc0, 0x7b, 0xfc, 0x0, 0x7f, 0xbc, 0x3, 0x80,
0x1, 0xc1, 0xff, 0xfe, 0x0, 0xff, 0xff, 0x7,
0x0, 0x1, 0xc1, 0xff, 0xfe, 0x0, 0xff, 0xff,
0x7, 0x0, 0x0, 0xc3, 0xff, 0xfe, 0x0, 0xff,
0xff, 0x87, 0x0, 0x0, 0xe3, 0xff, 0xfe, 0x0,
0xff, 0xff, 0x86, 0x0, 0x0, 0xc3, 0xff, 0xfe,
0x0, 0xff, 0xff, 0x87, 0x0, 0x1, 0xc3, 0xff,
0xfe, 0x0, 0xff, 0xff, 0x87, 0x0, 0x1, 0xc1,
0xff, 0xfc, 0x0, 0x7f, 0xff, 0x7, 0x0, 0x1,
0xc1, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0x3, 0x80,
0x1, 0x80, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x3,
0x80, 0xff, 0x80, 0x7f, 0xf8, 0x0, 0x3f, 0xfc,
0x3, 0xfe, 0xff, 0xf8, 0x3f, 0xf0, 0x0, 0x1f,
0xf8, 0x3f, 0xfe, 0x3, 0xf8, 0x1f, 0xe0, 0x0,
0xf, 0xf0, 0x3f, 0x80, 0x3, 0x80, 0x3, 0xc0,
0x38, 0x7, 0x80, 0x3, 0x80, 0x3, 0x80, 0x0,
0x0, 0xfe, 0x0, 0x0, 0x3, 0x80, 0x1, 0x80,
0x0, 0x0, 0xfe, 0x0, 0x0, 0x3, 0x80, 0x1,
0x80, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x3, 0x80,
0xf, 0xfc, 0x0, 0x0, 0x38, 0x0, 0x0, 0x7f,
0xe0, 0xff, 0xfc, 0x0, 0x0, 0x78, 0x0, 0x0,
0x7f, 0xfe, 0xf9, 0xc0, 0x0, 0xe0, 0xfe, 0xe,
0x0, 0x7, 0x3e, 0x41, 0xc0, 0x0, 0xff, 0xef,
0xfe, 0x0, 0x7, 0x2, 0x0, 0xe0, 0x0, 0x7f,
0x83, 0xfc, 0x0, 0x7, 0x0, 0x0, 0xef, 0x0,
0xc, 0x0, 0xe0, 0x1, 0xee, 0x0, 0x0, 0x7f,
0x0, 0xe, 0x0, 0xe0, 0x1, 0xfe, 0x0, 0x1,
0xf8, 0x0, 0x7, 0x1, 0xc0, 0x0, 0x1f, 0x0,
0x3, 0xf0, 0x0, 0x3, 0x83, 0x80, 0x0, 0x1f,
0xc0, 0xf, 0xb8, 0x0, 0x1, 0xff, 0x0, 0x0,
0x39, 0xe0, 0x1e, 0x1c, 0x0, 0x0, 0x7c, 0x0,
0x0, 0x78, 0xf0, 0xc, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x70, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x3,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0,
0x3f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
/* U+1F63C "😼" */
0x0, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xfe, 0x0, 0x1, 0xe3, 0x80, 0x0, 0x0, 0x0,
0x3, 0xc7, 0x0, 0x1, 0xc1, 0xc0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x0, 0x3, 0x80, 0x60, 0x0,
0x0, 0x0, 0xe, 0x3, 0x80, 0x3, 0x80, 0x30,
0x0, 0x0, 0x0, 0x1c, 0x3, 0x80, 0x3, 0x80,
0x18, 0x0, 0x0, 0x0, 0x38, 0x1, 0x80, 0x7,
0x0, 0xc, 0x0, 0x0, 0x0, 0x70, 0x1, 0xc0,
0x7, 0x4, 0x6, 0x0, 0x0, 0x0, 0xe0, 0x41,
0xc0, 0x7, 0xe, 0x7, 0x0, 0x0, 0x1, 0xc0,
0xe1, 0xc0, 0x7, 0xf, 0x3, 0x87, 0xff, 0xc3,
0x81, 0xe1, 0xc0, 0x7, 0xf, 0x81, 0xff, 0xff,
0xff, 0x3, 0xe1, 0xc0, 0x7, 0xf, 0xc0, 0xff,
0xc7, 0xff, 0x7, 0xe1, 0xc0, 0x7, 0xf, 0xe0,
0xbf, 0xc7, 0xfa, 0xf, 0xe1, 0xc0, 0x7, 0xf,
0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1, 0xc0, 0x7,
0xf, 0xf0, 0x1f, 0xc7, 0xf0, 0x1f, 0xe1, 0xc0,
0x7, 0xf, 0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1,
0xc0, 0x7, 0xf, 0xc0, 0xf, 0xc7, 0xe0, 0x7,
0xe1, 0xc0, 0x7, 0x7, 0x80, 0xf, 0xc7, 0xe0,
0x3, 0xc1, 0xc0, 0x3, 0x87, 0x0, 0x7, 0x83,
0xc0, 0x1, 0xc1, 0xc0, 0x3, 0x86, 0x0, 0x3,
0x83, 0x80, 0x0, 0xc3, 0x80, 0x3, 0x84, 0x0,
0x0, 0x0, 0x0, 0x0, 0x43, 0x80, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0xc0, 0x6, 0x0, 0x0,
0x0, 0xc0, 0x7, 0x0, 0x1, 0xc0, 0x7, 0x0,
0x0, 0x1, 0xc0, 0x7, 0x0, 0x1, 0xc0, 0xf,
0x80, 0x0, 0x3, 0xe0, 0x7, 0x0, 0x1, 0xc0,
0xf, 0xe0, 0x0, 0xf, 0xe0, 0x7, 0x0, 0x1,
0xc0, 0xf, 0xe0, 0x0, 0xf, 0xe0, 0x3, 0x80,
0xff, 0x80, 0x7, 0xe0, 0x0, 0xf, 0xc0, 0x3,
0xfe, 0xff, 0xf8, 0x7, 0xc0, 0x0, 0x7, 0xc0,
0x3f, 0xfe, 0x3, 0xf8, 0x3, 0x80, 0x0, 0x3,
0x0, 0x3f, 0x80, 0x3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0x3, 0x80, 0x0, 0x0,
0x7c, 0x0, 0x0, 0x3, 0x80, 0x3, 0x80, 0x0,
0x0, 0xfe, 0x0, 0x0, 0x3, 0x80, 0x1, 0x80,
0x0, 0x0, 0xfe, 0x0, 0x0, 0x3, 0x80, 0xf,
0xfc, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x7f, 0xe0,
0xff, 0xfc, 0x0, 0x0, 0x38, 0x0, 0x0, 0x7f,
0xfe, 0xf9, 0xc0, 0x0, 0x0, 0x38, 0x3, 0x80,
0x7, 0x3e, 0x41, 0xc0, 0x0, 0x0, 0x18, 0x3,
0x0, 0x7, 0x2, 0x1, 0xc0, 0x0, 0x0, 0x18,
0x7, 0x0, 0x7, 0x0, 0x0, 0xef, 0x0, 0x0,
0x18, 0x1e, 0x1, 0xe7, 0x0, 0x0, 0xff, 0x0,
0x0, 0x7f, 0xfc, 0x1, 0xfe, 0x0, 0x1, 0xfe,
0x0, 0x1f, 0xf7, 0xf0, 0x0, 0xff, 0x0, 0x7,
0xf0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x1f, 0xc0,
0xf, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d,
0xe0, 0x1e, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0xf0, 0xc, 0x1c, 0x0, 0x0, 0x60, 0x0,
0x0, 0x78, 0x60, 0x0, 0xe, 0x0, 0x0, 0x3f,
0x80, 0x0, 0xf0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x3,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0,
0x3f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
/* U+1F63D "😽" */
0x0, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xfe, 0x0, 0x1, 0xe3, 0x80, 0x0, 0x0, 0x0,
0x3, 0xc7, 0x0, 0x1, 0xc1, 0xc0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x0, 0x3, 0x80, 0x60, 0x0,
0x0, 0x0, 0xe, 0x3, 0x80, 0x3, 0x80, 0x30,
0x0, 0x0, 0x0, 0x1c, 0x3, 0x80, 0x3, 0x80,
0x18, 0x0, 0x0, 0x0, 0x38, 0x1, 0x80, 0x7,
0x0, 0xc, 0x0, 0x0, 0x0, 0x70, 0x1, 0xc0,
0x7, 0x4, 0x6, 0x0, 0x0, 0x0, 0xe0, 0x41,
0xc0, 0x7, 0xe, 0x7, 0x0, 0x0, 0x1, 0xc0,
0xe1, 0xc0, 0x7, 0xf, 0x3, 0x87, 0xff, 0xc3,
0x81, 0xe1, 0xc0, 0x7, 0xf, 0x81, 0xff, 0xff,
0xff, 0x3, 0xe1, 0xc0, 0x7, 0xf, 0xc0, 0xff,
0xc7, 0xff, 0x7, 0xe1, 0xc0, 0x7, 0xf, 0xe0,
0xbf, 0xc7, 0xfa, 0xf, 0xe1, 0xc0, 0x7, 0xf,
0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1, 0xc0, 0x7,
0xf, 0xf0, 0x1f, 0xc7, 0xf0, 0x1f, 0xe1, 0xc0,
0x7, 0xf, 0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1,
0xc0, 0x7, 0xf, 0xc0, 0xf, 0xc7, 0xe0, 0x7,
0xe1, 0xc0, 0x7, 0xf, 0x80, 0xf, 0xc7, 0xe0,
0x3, 0xc1, 0xc0, 0x3, 0x87, 0x0, 0x7, 0x83,
0xc0, 0x1, 0xc1, 0xc0, 0x3, 0x86, 0x0, 0x7,
0x83, 0x80, 0x0, 0xc1, 0x80, 0x3, 0x84, 0x0,
0x0, 0x0, 0x0, 0x0, 0x43, 0x80, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x1,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x61, 0xc0, 0x7,
0xc0, 0x0, 0x7, 0xc0, 0x7, 0xc, 0xf9, 0xc0,
0x1f, 0xe0, 0x0, 0xf, 0xe0, 0x7, 0x3e, 0x3f,
0xc0, 0x3c, 0x70, 0x0, 0x1c, 0x78, 0x3, 0xf8,
0xf, 0xc0, 0x38, 0x38, 0x0, 0x38, 0x38, 0x7,
0xe0, 0x3, 0xf0, 0x70, 0x1c, 0x0, 0x70, 0x1c,
0x1f, 0x80, 0x3, 0xf8, 0x20, 0x18, 0x0, 0x0,
0x8, 0x3f, 0x80, 0x3, 0xb0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1b, 0x80, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0xfb, 0x80, 0x0,
0x0, 0x7c, 0x0, 0x0, 0x3, 0xbe, 0xff, 0xf8,
0x0, 0x0, 0xfe, 0x0, 0x0, 0x3f, 0xfe, 0x1f,
0xf8, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x3f, 0xf0,
0x1, 0xf8, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x3b,
0x80, 0x1, 0xc0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x7, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x3, 0x80,
0x0, 0x7, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x3f, 0x0, 0x3, 0xf8, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x3f, 0x80, 0x1f, 0xe0, 0x0,
0x0, 0x7, 0x80, 0x0, 0xf, 0xf0, 0x7f, 0x60,
0x0, 0x0, 0x7, 0x0, 0x0, 0xf, 0xfc, 0x78,
0x70, 0x0, 0x0, 0x3, 0x80, 0x0, 0x1c, 0x3c,
0x0, 0x70, 0x0, 0x0, 0x1, 0x80, 0x0, 0x1c,
0x0, 0x0, 0x38, 0x0, 0x0, 0x1, 0x80, 0x0,
0x38, 0x0, 0x0, 0x1c, 0x0, 0x0, 0xf, 0x80,
0x0, 0x78, 0x0, 0x0, 0x1e, 0x0, 0x0, 0xe,
0x0, 0x0, 0x70, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x3,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0,
0x3f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
/* U+1F63E "😾" */
0x0, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20,
0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0,
0xfc, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0,
0x1, 0xfe, 0x0, 0x1, 0xef, 0x80, 0x0, 0x0,
0x0, 0x3, 0xef, 0x0, 0x1, 0xdd, 0xc0, 0x0,
0x0, 0x0, 0x7, 0x77, 0x0, 0x3, 0xdc, 0xe0,
0x0, 0x0, 0x0, 0x6, 0x73, 0x80, 0x3, 0x9c,
0xe0, 0x0, 0x0, 0x0, 0xe, 0x73, 0x80, 0x3,
0x9c, 0x70, 0x0, 0x0, 0x0, 0x1c, 0x71, 0x80,
0x7, 0x9c, 0x38, 0x0, 0x0, 0x0, 0x38, 0x71,
0xc0, 0x7, 0x1c, 0x1c, 0x0, 0x0, 0x0, 0x70,
0x71, 0xc0, 0x7, 0x1c, 0xf, 0xf, 0xff, 0xe1,
0xe0, 0x71, 0xc0, 0x7, 0x1c, 0x7, 0xff, 0xff,
0xff, 0xc0, 0x71, 0xc0, 0x7, 0x1c, 0x3, 0xff,
0xc7, 0xff, 0x80, 0x71, 0xc0, 0x7, 0xe, 0x0,
0xbf, 0xc7, 0xfa, 0x0, 0xe1, 0xc0, 0x7, 0xe,
0x0, 0x1f, 0xc7, 0xf0, 0x0, 0xe1, 0xc0, 0x7,
0xe, 0x0, 0x1f, 0xc7, 0xf0, 0x0, 0xe1, 0xc0,
0x7, 0x7, 0x0, 0x1f, 0xc7, 0xf0, 0x1, 0xc1,
0xc0, 0x7, 0x7, 0x0, 0xf, 0xc7, 0xe0, 0x1,
0xc1, 0xc0, 0x7, 0x3, 0x80, 0xf, 0xc7, 0xe0,
0x3, 0x81, 0xc0, 0x3, 0x87, 0x80, 0x7, 0xc7,
0xc0, 0x3, 0xc1, 0xc0, 0x3, 0x8e, 0x0, 0x3,
0x83, 0x80, 0x0, 0xe1, 0x80, 0x3, 0x9c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x73, 0x80, 0x3, 0xb8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, 0x80, 0x1,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, 0x80,
0x1, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0x80, 0x1, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0xe0, 0x4, 0x0, 0x0,
0x0, 0x40, 0xf, 0x0, 0x41, 0xc0, 0xf, 0x0,
0x0, 0x1, 0xe0, 0x7, 0x4, 0x71, 0xc0, 0xf,
0x80, 0x0, 0x3, 0xe0, 0x7, 0x1c, 0xfd, 0xc0,
0xf, 0xe0, 0x0, 0xf, 0xe0, 0x7, 0x7e, 0x3f,
0x80, 0xf, 0xe0, 0x0, 0xf, 0xe0, 0x3, 0xf8,
0x7, 0xe0, 0xf, 0xe0, 0x0, 0xf, 0xe0, 0xf,
0xe0, 0x3, 0xf8, 0x7, 0xc0, 0x0, 0x7, 0xc0,
0x3f, 0x80, 0x3, 0xf0, 0x3, 0x80, 0x0, 0x3,
0x80, 0x1f, 0x80, 0x3, 0x90, 0x0, 0x0, 0x0,
0x0, 0x0, 0x13, 0x80, 0xfb, 0x80, 0x0, 0x0,
0xfc, 0x0, 0x0, 0x3, 0x9e, 0xff, 0xe0, 0x0,
0x0, 0xfe, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf8,
0x0, 0x0, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x1,
0xf0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x1f, 0x80,
0x1, 0x80, 0x0, 0x0, 0x38, 0x0, 0x0, 0x3,
0x80, 0x1, 0xc0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x7, 0x0, 0x1, 0xd8, 0x0, 0x0, 0x38, 0x0,
0x0, 0x37, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x38,
0x0, 0x0, 0x3f, 0x0, 0x7, 0xf8, 0x0, 0x0,
0x38, 0x0, 0x0, 0x3f, 0xc0, 0x1f, 0xe0, 0x0,
0x0, 0xfe, 0x0, 0x0, 0xf, 0xf0, 0x7f, 0x60,
0x0, 0x7, 0xff, 0xc0, 0x0, 0xf, 0xfc, 0x78,
0x70, 0x0, 0x1f, 0xc7, 0xf0, 0x0, 0x1c, 0x3c,
0x0, 0x70, 0x0, 0x3c, 0x0, 0xf8, 0x0, 0x1c,
0x0, 0x0, 0x38, 0x0, 0x78, 0x0, 0x3c, 0x0,
0x38, 0x0, 0x0, 0x1c, 0x0, 0x20, 0x0, 0x8,
0x0, 0x78, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x3,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x0,
0x3f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
/* U+1F63F "😿" */
0x1, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0x80, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xc0, 0x7, 0xf, 0x80, 0x0, 0x0, 0x0,
0x3, 0xf0, 0xe0, 0xe, 0x1, 0xe0, 0x0, 0x0,
0x0, 0xf, 0x80, 0x60, 0xe, 0x0, 0x78, 0x0,
0x0, 0x0, 0x3e, 0x0, 0x60, 0xe, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x78, 0x0, 0x70, 0xe, 0x0,
0x7, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x70, 0xe,
0x18, 0x3, 0xc0, 0x0, 0x3, 0xc0, 0x18, 0x70,
0xe, 0x1f, 0x0, 0xef, 0xff, 0xef, 0x0, 0xf8,
0x60, 0xe, 0x1f, 0x80, 0x7f, 0xff, 0xfe, 0x3,
0xf8, 0x60, 0x7, 0x1f, 0xe0, 0x3f, 0xc7, 0xfc,
0x7, 0xf0, 0x60, 0x7, 0xf, 0xf8, 0x3f, 0xc7,
0xf8, 0x1f, 0xf0, 0xe0, 0x7, 0xf, 0xf8, 0x1f,
0xc7, 0xf8, 0x1f, 0xf0, 0xc0, 0x3, 0x87, 0xe0,
0x1f, 0xc7, 0xf0, 0xf, 0xe0, 0xc0, 0x3, 0x87,
0xc0, 0x1f, 0xc7, 0xf0, 0x3, 0xe1, 0xc0, 0x3,
0x83, 0x80, 0xf, 0xc7, 0xe0, 0x1, 0xc1, 0x80,
0x1, 0xc3, 0x0, 0xf, 0xc7, 0xe0, 0x0, 0xc3,
0x80, 0x1, 0xc0, 0x0, 0x7, 0x83, 0xc0, 0x0,
0x3, 0x0, 0x0, 0xe0, 0x0, 0x3, 0x83, 0x80,
0x0, 0x7, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6, 0x0, 0x0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0x0, 0x0, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x0, 0x0,
0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0,
0x0, 0x60, 0x0, 0x60, 0x0, 0x6, 0x0, 0x6,
0x0, 0x0, 0xe0, 0x3, 0xe0, 0x0, 0x7, 0x80,
0x6, 0x0, 0x0, 0xe0, 0x7, 0xe0, 0x0, 0xf,
0xe0, 0x7, 0x0, 0x0, 0xc0, 0xf, 0xe0, 0x0,
0xf, 0xe0, 0x7, 0x0, 0x0, 0xc0, 0xf, 0xe0,
0x0, 0x7, 0xe0, 0x3, 0x0, 0x1, 0xc0, 0xf,
0xe0, 0x0, 0x7, 0xe0, 0x3, 0x80, 0x1, 0xf0,
0x7, 0xc0, 0x0, 0x3, 0xe0, 0xf, 0x80, 0x3,
0xf8, 0x1, 0x0, 0x0, 0x0, 0x80, 0x1f, 0x80,
0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xf0, 0x3f, 0x80, 0x0, 0x0, 0x7c, 0x0, 0x0,
0x3, 0xfc, 0xfd, 0x80, 0x0, 0x0, 0xfe, 0x0,
0x0, 0x3, 0xbe, 0x61, 0xc0, 0x0, 0x0, 0xfe,
0x0, 0x0, 0x3, 0x8e, 0x1, 0xf8, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x3f, 0x80, 0x1, 0xf8, 0x8,
0x0, 0x38, 0x0, 0x0, 0x1f, 0x80, 0x1, 0xe0,
0xc, 0x0, 0x38, 0x0, 0x0, 0x7, 0x80, 0x7,
0xc0, 0xc, 0x0, 0x38, 0x0, 0x0, 0x7, 0xc0,
0xf, 0xc0, 0x1e, 0x0, 0x38, 0x0, 0x0, 0x7,
0xe0, 0x1e, 0xe0, 0x1e, 0x0, 0x38, 0x0, 0x0,
0x7, 0x70, 0x3c, 0xee, 0x3f, 0x0, 0x7c, 0x0,
0x0, 0x77, 0x38, 0x38, 0x7e, 0x33, 0x0, 0xff,
0x0, 0x0, 0x7e, 0x1c, 0x10, 0x7c, 0x73, 0x81,
0xe7, 0x80, 0x0, 0x3e, 0x8, 0x0, 0x78, 0x61,
0x83, 0x83, 0xc0, 0x0, 0x1e, 0x0, 0x0, 0x78,
0xe1, 0xc7, 0x1, 0xe0, 0x0, 0x1e, 0x0, 0x0,
0xf8, 0xc1, 0xc6, 0x0, 0xc0, 0x0, 0x3f, 0x0,
0x0, 0xdd, 0xc0, 0xe0, 0x0, 0x0, 0x0, 0x7b,
0x0, 0x1, 0xcf, 0xc0, 0xe0, 0x0, 0x0, 0x0,
0xf3, 0x80, 0x1, 0x87, 0x80, 0x60, 0x0, 0x0,
0x0, 0xe1, 0x80, 0x3, 0x87, 0x80, 0x60, 0x0,
0x0, 0x1, 0xc1, 0xc0, 0x0, 0x3, 0x80, 0x70,
0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x1, 0x80,
0x60, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x1,
0x80, 0x60, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0,
0x1, 0xc0, 0xe0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1, 0xe1, 0xe0, 0x0, 0x3, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x3f, 0x80,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xc0, 0x0, 0x0, 0x0,
/* U+1F640 "🙀" */
0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x7f, 0x0, 0x0, 0x0, 0x0, 0x1,
0xfc, 0x0, 0x0, 0xe3, 0x80, 0x0, 0x0, 0x0,
0x1, 0x8e, 0x0, 0x1, 0xc1, 0x80, 0x0, 0x0,
0x0, 0x3, 0x7, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x7, 0x3, 0x0, 0x3, 0x80, 0xe0,
0x0, 0x0, 0x0, 0xe, 0x3, 0x80, 0x3, 0x80,
0x60, 0x0, 0x0, 0x0, 0xc, 0x3, 0x80, 0x3,
0x80, 0x70, 0x0, 0x0, 0x0, 0x1c, 0x1, 0xc0,
0x7, 0x4, 0x38, 0x0, 0x0, 0x0, 0x38, 0x41,
0xc0, 0x7, 0xe, 0x1c, 0x0, 0x0, 0x0, 0x70,
0xe1, 0xc0, 0x7, 0xe, 0xf, 0x1f, 0xff, 0xf1,
0xe0, 0xe1, 0xc0, 0x7, 0xf, 0x7, 0xff, 0xff,
0xff, 0xc1, 0xe1, 0xc0, 0x7, 0xf, 0x83, 0xff,
0xc7, 0xff, 0x83, 0xe1, 0xc0, 0x7, 0xf, 0xc0,
0xbf, 0xc7, 0xfa, 0x7, 0xe1, 0xc0, 0x7, 0xf,
0xe0, 0x3f, 0xc7, 0xf8, 0xf, 0xe1, 0xc0, 0x7,
0xf, 0xf0, 0x1f, 0xc7, 0xf0, 0x1f, 0xe1, 0xc0,
0x7, 0xf, 0xe0, 0x1f, 0xc7, 0xf0, 0xf, 0xe1,
0xc0, 0x7, 0xf, 0xc0, 0xf, 0xc7, 0xe0, 0x7,
0xe1, 0xc0, 0x7, 0xf, 0x80, 0xf, 0xc7, 0xe0,
0x3, 0xc1, 0xc0, 0x3, 0x87, 0x0, 0x7, 0x83,
0xc0, 0x1, 0xc1, 0xc0, 0x3, 0x86, 0x0, 0x3,
0x83, 0x80, 0x0, 0xc1, 0x80, 0x3, 0x84, 0xf,
0xc0, 0x0, 0x7, 0xe0, 0x43, 0x80, 0x3, 0x80,
0x1f, 0xf0, 0x0, 0x1f, 0xf0, 0x3, 0x80, 0x1,
0x80, 0x3e, 0xf8, 0x0, 0x3e, 0xf8, 0x3, 0x80,
0x1, 0xc0, 0x70, 0x38, 0x0, 0x38, 0x1c, 0x7,
0x0, 0x1, 0xc0, 0x70, 0x1c, 0x0, 0x70, 0x1c,
0x7, 0x0, 0x0, 0xc0, 0x60, 0xc, 0x0, 0x60,
0xc, 0x7, 0x0, 0x0, 0xc0, 0xe0, 0xc, 0x0,
0x60, 0xe, 0x6, 0x0, 0x0, 0xc0, 0xe0, 0xc,
0x0, 0x60, 0xe, 0x7, 0x0, 0x71, 0xc0, 0x60,
0xc, 0x0, 0x70, 0xc, 0x7, 0x1c, 0xfd, 0xc0,
0x70, 0x1c, 0x0, 0x70, 0x1c, 0x7, 0x7e, 0x3f,
0x80, 0x78, 0x38, 0x10, 0x38, 0x3c, 0x3, 0xf8,
0xf, 0xc0, 0x3f, 0xf8, 0xfe, 0x3f, 0xf8, 0x7,
0xe0, 0x3, 0xf0, 0x1f, 0xe0, 0xfe, 0xf, 0xf0,
0x1f, 0x80, 0x3, 0xf0, 0x7, 0xc0, 0xfe, 0x7,
0xc0, 0x1f, 0x80, 0x3, 0x90, 0x0, 0x0, 0x7c,
0x0, 0x0, 0x13, 0x80, 0xe3, 0x80, 0x8, 0x0,
0x38, 0x0, 0x20, 0x3, 0x8e, 0xff, 0xc0, 0x7f,
0x80, 0x38, 0x3, 0xfc, 0x7, 0xfe, 0xff, 0xf8,
0xff, 0xe0, 0x38, 0xf, 0xfe, 0x3f, 0xfe, 0x3,
0xf1, 0xe0, 0xf0, 0x38, 0x1e, 0xf, 0x1f, 0x80,
0x1, 0xc1, 0xc0, 0x70, 0x38, 0x1c, 0x7, 0x3,
0x80, 0x1, 0xc3, 0x80, 0x38, 0x38, 0x38, 0x3,
0x7, 0x0, 0x1, 0xc3, 0x80, 0x38, 0x38, 0x38,
0x3, 0x87, 0x0, 0x1, 0xfb, 0x80, 0x18, 0x7c,
0x30, 0x3, 0xbf, 0x0, 0x3, 0xfb, 0x80, 0x18,
0x7c, 0x30, 0x3, 0xbf, 0x80, 0x1f, 0xe3, 0x80,
0x18, 0xfe, 0x30, 0x3, 0x8f, 0xf0, 0x7f, 0x73,
0x80, 0x18, 0xfe, 0x30, 0x3, 0x8f, 0xfc, 0x78,
0x71, 0x80, 0x39, 0xff, 0x38, 0x3, 0x1c, 0x3c,
0x0, 0x39, 0x80, 0x39, 0xff, 0x38, 0x3, 0x1c,
0x0, 0x0, 0x39, 0x80, 0x39, 0xff, 0x38, 0x3,
0x38, 0x0, 0x0, 0x1d, 0x80, 0x31, 0xff, 0x18,
0x3, 0x70, 0x0, 0x0, 0xf, 0xc0, 0x31, 0xff,
0x18, 0x7, 0xf0, 0x0, 0x0, 0xf, 0xc0, 0x71,
0xff, 0x1c, 0x7, 0xe0, 0x0, 0x0, 0x7, 0xc0,
0x70, 0xfe, 0x1c, 0x7, 0xc0, 0x0, 0x0, 0x3,
0xc0, 0x60, 0x7c, 0xc, 0x7, 0x80, 0x0, 0x0,
0x1, 0x80, 0xe0, 0x0, 0xe, 0x3, 0x0, 0x0,
0x0, 0x1, 0x80, 0xe0, 0x0, 0xe, 0x3, 0x0,
0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0xe, 0x3,
0x80, 0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0xe,
0x3, 0x80, 0x0, 0x0, 0x7, 0x1, 0xff, 0xef,
0xff, 0x1, 0xc0, 0x0, 0x0, 0x7, 0x1, 0xff,
0xff, 0xff, 0x1, 0xc0, 0x0, 0x0, 0xe, 0x1,
0x87, 0xff, 0xc3, 0x0, 0xc0, 0x0,
/* U+1F641 "🙁" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x1, 0xe0, 0x0, 0x3,
0xc0, 0x0, 0xe1, 0xc0, 0x1, 0xf8, 0x0, 0x3,
0xf0, 0x0, 0x71, 0xc0, 0x1, 0xfe, 0x0, 0x3,
0xfc, 0x0, 0x3c, 0xe0, 0x0, 0xff, 0x0, 0x1,
0xfe, 0x0, 0xe, 0x70, 0x0, 0x7f, 0x80, 0x0,
0xff, 0x0, 0x7, 0x38, 0x0, 0x3f, 0xc0, 0x0,
0x7f, 0x80, 0x3, 0xb8, 0x0, 0x1f, 0xe0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x7, 0xe0, 0x0,
0xf, 0xc0, 0x0, 0x7e, 0x0, 0x1, 0xe0, 0x0,
0x3, 0xc0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x7, 0xff, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x1f, 0xff, 0xf0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x7f, 0x0, 0x7f, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0xfc, 0x0, 0x7, 0xe0, 0x0, 0xe0, 0x78, 0x0,
0xf0, 0x0, 0x0, 0x78, 0x0, 0xe0, 0x1c, 0x0,
0x30, 0x0, 0x0, 0x18, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F642 "🙂" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x1, 0xe0, 0x0, 0x3,
0xc0, 0x0, 0xe1, 0xc0, 0x1, 0xf8, 0x0, 0x3,
0xf0, 0x0, 0x71, 0xc0, 0x1, 0xfe, 0x0, 0x3,
0xfc, 0x0, 0x3c, 0xe0, 0x0, 0xff, 0x0, 0x1,
0xfe, 0x0, 0xe, 0x70, 0x0, 0x7f, 0x80, 0x0,
0xff, 0x0, 0x7, 0x38, 0x0, 0x3f, 0xc0, 0x0,
0x7f, 0x80, 0x3, 0xb8, 0x0, 0x1f, 0xe0, 0x0,
0x3f, 0xc0, 0x0, 0xfc, 0x0, 0x7, 0xe0, 0x0,
0xf, 0xc0, 0x0, 0x7e, 0x0, 0x1, 0xe0, 0x0,
0x3, 0xc0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x6,
0x0, 0x0, 0x3, 0x0, 0x3, 0x87, 0x0, 0x7,
0xc0, 0x0, 0x7, 0xc0, 0x1, 0xc1, 0xc0, 0x1,
0xf8, 0x0, 0xf, 0xc0, 0x1, 0xc0, 0xe0, 0x0,
0x3f, 0x80, 0x3f, 0x80, 0x0, 0xe0, 0x78, 0x0,
0x3, 0xff, 0xfe, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F643 "🙃" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x7f, 0xff, 0xc0,
0x0, 0x1c, 0x7, 0x0, 0x1, 0xfc, 0x1, 0xfc,
0x0, 0x7, 0x3, 0x80, 0x3, 0xf0, 0x0, 0x1f,
0x80, 0x3, 0x83, 0x80, 0x3, 0xc0, 0x0, 0x3,
0xe0, 0x0, 0xe1, 0xc0, 0x0, 0xc0, 0x0, 0x0,
0x60, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x3, 0xc0,
0x0, 0x7, 0x80, 0x0, 0x7e, 0x0, 0x3, 0xf0,
0x0, 0x7, 0xe0, 0x0, 0x3f, 0x0, 0x3, 0xfc,
0x0, 0x7, 0xf8, 0x0, 0x3d, 0xc0, 0x1, 0xfe,
0x0, 0x3, 0xfc, 0x0, 0x1c, 0xe0, 0x0, 0xff,
0x0, 0x1, 0xfe, 0x0, 0xe, 0x70, 0x0, 0x7f,
0x80, 0x0, 0xff, 0x0, 0x7, 0x38, 0x0, 0x3f,
0xc0, 0x0, 0x7f, 0x80, 0x7, 0x8e, 0x0, 0xf,
0xc0, 0x0, 0x1f, 0x80, 0x3, 0x87, 0x0, 0x3,
0xc0, 0x0, 0x7, 0x80, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0,
/* U+1F644 "🙄" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x2, 0x0, 0x0, 0x1,
0x0, 0x7, 0x3, 0x80, 0x1f, 0xf0, 0x0, 0xf,
0xf8, 0x3, 0x83, 0x80, 0x1f, 0xfc, 0x0, 0xf,
0xfe, 0x0, 0xe1, 0xc0, 0x3f, 0xff, 0x80, 0x1f,
0xff, 0xc0, 0x71, 0xc0, 0x1f, 0xfd, 0xc0, 0xf,
0xfe, 0xe0, 0x3c, 0xe0, 0x1d, 0xfe, 0xf0, 0xf,
0xff, 0x78, 0xe, 0x70, 0xe, 0xff, 0x38, 0x7,
0x7f, 0x9c, 0x7, 0x38, 0xe, 0x3f, 0xe, 0x7,
0x1f, 0x87, 0x3, 0xb8, 0x7, 0xf, 0x7, 0x3,
0x87, 0x83, 0x80, 0xfc, 0x3, 0x80, 0x3, 0x81,
0xc0, 0x1, 0xc0, 0x7e, 0x1, 0xc0, 0x1, 0xc0,
0xe0, 0x0, 0xe0, 0x3f, 0x0, 0xe0, 0x0, 0xe0,
0x70, 0x0, 0x70, 0x1f, 0x80, 0x70, 0x0, 0x70,
0x38, 0x0, 0x38, 0xf, 0xc0, 0x1c, 0x0, 0x70,
0xe, 0x0, 0x38, 0x7, 0xe0, 0xf, 0x0, 0x78,
0x7, 0x80, 0x3c, 0x3, 0xf0, 0x3, 0xc0, 0x38,
0x1, 0xc0, 0x3c, 0x1, 0xf8, 0x0, 0xf0, 0x78,
0x0, 0x78, 0x3c, 0x0, 0xfc, 0x0, 0x3f, 0xf8,
0x0, 0x1f, 0xfc, 0x0, 0x7e, 0x0, 0x7, 0xf0,
0x0, 0x3, 0xf8, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x1f, 0xff, 0xe0, 0x0, 0x38, 0x0, 0x38,
0x0, 0xf, 0xff, 0xf0, 0x0, 0x38, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F645 "🙅" */
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x3,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x3,
0x80, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x38, 0x3, 0xc0, 0x1, 0xe0,
0x7, 0x0, 0x0, 0x0, 0x1c, 0x1, 0xf8, 0x0,
0xfc, 0x0, 0xe0, 0x0, 0x0, 0xf, 0x0, 0x7e,
0x0, 0x3f, 0x0, 0x3c, 0x0, 0x0, 0x3, 0x80,
0x1f, 0x80, 0xf, 0xc0, 0x7, 0x0, 0x0, 0x1,
0xc0, 0x7, 0xe0, 0x3, 0xf0, 0x0, 0xe0, 0x0,
0x0, 0x70, 0x1, 0xf8, 0x0, 0xfc, 0x0, 0x38,
0x0, 0x0, 0x38, 0x0, 0x3c, 0x0, 0x1e, 0x0,
0x7, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xe0, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x0, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0xf0, 0x7f, 0x0, 0xf, 0x80, 0x1, 0xfc, 0x1c,
0x0, 0x78, 0x3f, 0xf8, 0x7, 0xf0, 0x3, 0xff,
0x87, 0x80, 0x3c, 0x1c, 0x1f, 0x81, 0xfc, 0x7,
0xe0, 0x70, 0xf0, 0xe, 0x6, 0x0, 0xf8, 0x7f,
0x7, 0xc0, 0xc, 0x1c, 0x7, 0x81, 0x80, 0xf,
0x9f, 0xc3, 0xc0, 0x3, 0x7, 0x81, 0xc0, 0x70,
0x0, 0xf3, 0xe3, 0xc0, 0x1, 0xc0, 0xe0, 0xe0,
0xe, 0x0, 0xe, 0x1, 0xe0, 0x0, 0xe0, 0x1c,
0x38, 0x1, 0xc0, 0x1, 0xe0, 0xe0, 0x0, 0x70,
0x7, 0x1c, 0x0, 0x38, 0x0, 0x3c, 0x70, 0x0,
0x78, 0x0, 0xe7, 0x0, 0x7, 0x0, 0x3, 0xf8,
0x0, 0x38, 0x0, 0x3b, 0xc0, 0x0, 0xf0, 0x0,
0x7c, 0x0, 0x3c, 0x0, 0xe, 0xe0, 0x0, 0xe,
0x0, 0xf, 0x0, 0x1e, 0x0, 0x1, 0xf8, 0x0,
0x1, 0xc0, 0x1, 0xe0, 0xe, 0x0, 0x0, 0x7e,
0x0, 0x0, 0x3c, 0x0, 0x1e, 0xf, 0x0, 0x0,
0x1f, 0x80, 0x0, 0x3, 0x80, 0x3, 0xc7, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x70, 0x0, 0x3f,
0x80, 0x0, 0x1, 0xf8, 0x2, 0x0, 0x3e, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x7e, 0x0, 0xfc, 0xff,
0xc0, 0x0, 0x7f, 0x1, 0xc0, 0x1d, 0xc0, 0x1f,
0xfe, 0x18, 0x0, 0x3, 0xff, 0xf0, 0xe, 0x70,
0x0, 0x30, 0x3, 0x0, 0x0, 0x1f, 0xf0, 0x3,
0x9c, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0xe3, 0x80, 0x0, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x70, 0xe0, 0x0, 0x0, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x3c, 0x1c, 0x0, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0xe, 0x3, 0x80, 0x0,
0x0, 0xf, 0x80, 0x0, 0x0, 0x7, 0x0, 0x78,
0x0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0x7, 0x80,
0xf, 0x80, 0x0, 0xf, 0xcf, 0x80, 0x0, 0x7,
0xc0, 0x0, 0xfc, 0x0, 0x7f, 0xc0, 0xfe, 0x0,
0xf, 0xc0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x7,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfc, 0x0,
0x0, 0x1f, 0xff, 0x80, 0x0,
/* U+1F646 "🙆" */
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0xf, 0xc0,
0x0, 0x0, 0x0, 0x3b, 0xbf, 0x0, 0x3e, 0x66,
0x0, 0x0, 0x0, 0x1, 0x8f, 0xfc, 0x3, 0xff,
0x18, 0x0, 0x0, 0x0, 0x18, 0x78, 0x70, 0x30,
0x78, 0xc0, 0x0, 0x0, 0x0, 0xc3, 0x0, 0xc3,
0x0, 0xc7, 0x0, 0x0, 0x0, 0x6, 0x0, 0x6,
0x18, 0x0, 0x18, 0x0, 0x0, 0x0, 0x70, 0x0,
0x30, 0xc0, 0x0, 0xc0, 0x0, 0x0, 0x3, 0x0,
0x1, 0x86, 0x0, 0x6, 0x0, 0x0, 0x0, 0x38,
0x0, 0x1c, 0x38, 0x0, 0x18, 0x0, 0x0, 0x3,
0x80, 0x1, 0xc0, 0xe0, 0x0, 0xe0, 0x0, 0x0,
0x38, 0x0, 0x1c, 0x3, 0x80, 0x3, 0xc0, 0x0,
0x7, 0x80, 0x3, 0xc0, 0xf, 0x0, 0xf, 0x0,
0x0, 0x78, 0x0, 0x78, 0x0, 0x3e, 0x0, 0x1c,
0x0, 0x7, 0x0, 0xf, 0x80, 0x0, 0x7c, 0x0,
0x70, 0x0, 0x30, 0x1, 0xe0, 0x0, 0x0, 0xf8,
0x1, 0xc0, 0x3, 0x80, 0x3c, 0x0, 0x0, 0x1,
0xe0, 0x6, 0x0, 0x38, 0x3, 0x80, 0x0, 0x0,
0x3, 0x80, 0x38, 0x3, 0x80, 0x38, 0x0, 0x0,
0x0, 0xe, 0x0, 0xe0, 0x18, 0x3, 0x80, 0xf,
0xfe, 0x0, 0x38, 0x3, 0x1, 0xc0, 0x38, 0x7,
0xff, 0xff, 0x0, 0xe0, 0x1c, 0xc, 0x3, 0x80,
0xfc, 0x0, 0x7e, 0x3, 0x80, 0x60, 0xe0, 0x18,
0x1e, 0x0, 0x0, 0x7c, 0xe, 0x3, 0x86, 0x1,
0x83, 0xc0, 0x0, 0x0, 0x78, 0x30, 0xc, 0x30,
0xc, 0x38, 0x0, 0x0, 0x1, 0xe1, 0xc0, 0x63,
0x0, 0xc3, 0x80, 0x0, 0x0, 0x3, 0x86, 0x1,
0x98, 0x6, 0x38, 0x0, 0x0, 0x0, 0xe, 0x30,
0xc, 0xc0, 0x63, 0x80, 0x0, 0x0, 0x0, 0x38,
0xc0, 0x66, 0x3, 0x38, 0x0, 0x0, 0x0, 0x0,
0xe6, 0x3, 0x60, 0x1b, 0x80, 0x0, 0x0, 0x0,
0x3, 0xb0, 0xf, 0x0, 0xb8, 0x0, 0x0, 0x0,
0x0, 0xf, 0xc0, 0x78, 0xd, 0x80, 0x0, 0x0,
0x0, 0x0, 0x36, 0x3, 0xc0, 0x78, 0x0, 0x70,
0x0, 0x78, 0x1, 0xf0, 0x1e, 0x3, 0xc0, 0x7,
0xc0, 0x7, 0xe0, 0x7, 0x80, 0xf0, 0x1c, 0x0,
0x3e, 0x0, 0x3f, 0x0, 0x1c, 0x7, 0x80, 0xe0,
0x1, 0xf8, 0x1, 0xf8, 0x0, 0xe0, 0x3c, 0x6,
0x0, 0xf, 0x80, 0xf, 0xc0, 0x3, 0x1, 0xe0,
0x0, 0x0, 0x7c, 0x0, 0x7e, 0x0, 0x0, 0xf,
0x0, 0x0, 0x1, 0xc0, 0x1, 0xe0, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x33, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0x98, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0xc0, 0x0, 0x0, 0x40, 0x0,
0x20, 0x0, 0x0, 0x63, 0x0, 0x0, 0x7, 0x0,
0x3, 0x80, 0x0, 0x6, 0x18, 0x0, 0x0, 0x3c,
0x0, 0x78, 0x0, 0x0, 0x30, 0xc0, 0x0, 0x0,
0x7c, 0xf, 0x80, 0x0, 0x1, 0x83, 0x0, 0x0,
0x1, 0xff, 0xf0, 0x0, 0x0, 0x18, 0x1c, 0x0,
0x0, 0x1, 0xfe, 0x0, 0x0, 0x1, 0xc0, 0x60,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0,
0xf, 0xf8, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0,
/* U+1F647 "🙇" */
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x0,
0x0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x80, 0x0, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0x0, 0x0, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x8, 0x0,
0xc, 0x0, 0x1, 0x80, 0x0, 0x80, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0,
0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x0, 0x0, 0x38, 0x0, 0x7,
0xff, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0xe0,
0x1, 0xff, 0xff, 0x0, 0xe, 0x0, 0x0, 0x0,
0x2, 0x0, 0x7f, 0x0, 0x7f, 0x0, 0x20, 0x0,
0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x3c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x70, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x0, 0x0,
0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x80, 0x0, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x1e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0x0, 0xc0, 0x0, 0x7, 0xe0, 0x0,
0x3f, 0x0, 0x0, 0x18, 0xe, 0x0, 0x0, 0xff,
0x80, 0x3, 0xfe, 0x0, 0x0, 0xe0, 0xe0, 0x0,
0x6, 0xc, 0x0, 0x18, 0x30, 0x0, 0x3, 0x86,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x73, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0x98, 0x0, 0x0, 0x1f,
0x0, 0x0, 0x7c, 0x0, 0x0, 0xd, 0x80, 0x0,
0x1, 0xfc, 0x0, 0x7, 0xf0, 0x0, 0x0, 0x3c,
0x1, 0x80, 0xf, 0xe0, 0x0, 0x3f, 0x80, 0xc,
0x1, 0xe0, 0xc, 0x0, 0x7f, 0x0, 0x1, 0xfc,
0x0, 0x60, 0xf, 0x0, 0x60, 0x1, 0xf0, 0x0,
0x7, 0xc0, 0x3, 0x0, 0x78, 0x3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x18, 0x3, 0xc0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x1e,
0x0, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x0, 0xf0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x1,
0xff, 0xc0, 0xe, 0xc0, 0x3, 0xff, 0xe0, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x66, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0x18, 0x0,
0x0, 0x1f, 0x80, 0x3, 0xf0, 0x0, 0x0, 0x30,
0xe0, 0x0, 0x0, 0x1e, 0x0, 0x3c, 0x0, 0x0,
0x3, 0x83, 0x80, 0x0, 0x0, 0x38, 0x3, 0x80,
0x0, 0x0, 0x38, 0xe, 0x0, 0x0, 0x0, 0xe0,
0x18, 0x0, 0x0, 0x3, 0x80, 0x3c, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x78, 0x0, 0xfc,
0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x1f, 0x80,
0x1, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff,
0xf0, 0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x7f,
0xff, 0xf8, 0x0, 0x0,
/* U+1F648 "🙈" */
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0,
0x3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x60, 0x0, 0x0, 0x0, 0xc, 0x0, 0x0,
0x0, 0x0, 0x1, 0x80, 0x0, 0x0, 0x0, 0xe0,
0x70, 0x0, 0x0, 0x3c, 0xe, 0x0, 0x0, 0x0,
0x6, 0x1f, 0xfe, 0x0, 0x3f, 0xf8, 0x30, 0x0,
0x0, 0x0, 0x71, 0xff, 0xfe, 0xf, 0xff, 0xf1,
0xc0, 0x0, 0x0, 0x3, 0x3e, 0x3f, 0xff, 0xff,
0xc7, 0xc6, 0x0, 0x0, 0x0, 0x3b, 0xc1, 0xff,
0xff, 0xff, 0xf, 0x38, 0x0, 0x0, 0x1, 0xbc,
0x3f, 0xfc, 0x3f, 0xfc, 0x3c, 0xc0, 0x0, 0x0,
0xf, 0xc1, 0xe0, 0xf3, 0xc1, 0xe0, 0xf6, 0x0,
0x0, 0x7, 0xfc, 0x0, 0x3, 0x9c, 0x0, 0x3,
0xfe, 0x0, 0x0, 0xff, 0xc0, 0x0, 0xf, 0xc0,
0x0, 0xf, 0xfc, 0x0, 0xf, 0x1c, 0x0, 0x0,
0x7e, 0x0, 0x0, 0x3c, 0xf8, 0x0, 0xe1, 0xe0,
0x0, 0x1, 0xf0, 0x0, 0x0, 0xf1, 0xc0, 0xe,
0x1e, 0x0, 0x0, 0xf, 0x80, 0x0, 0x3, 0xc7,
0x0, 0x71, 0xe0, 0x0, 0x0, 0xfc, 0x0, 0x0,
0xe, 0x38, 0x7, 0xe, 0x0, 0x0, 0x7, 0xe0,
0x0, 0x0, 0x78, 0xe0, 0x38, 0xe0, 0x0, 0x0,
0x37, 0x0, 0x0, 0x1, 0xe7, 0x1, 0xcf, 0x0,
0x0, 0x3, 0x9c, 0x0, 0x0, 0x7, 0xb8, 0xe,
0xf0, 0x0, 0x0, 0x38, 0x70, 0x0, 0x0, 0x1f,
0xc0, 0x7f, 0x0, 0x0, 0x7, 0x81, 0xe0, 0x0,
0x0, 0xfe, 0x3, 0xf8, 0x0, 0x1, 0xf9, 0xe7,
0xe0, 0x0, 0x3, 0xf0, 0xf, 0x80, 0x0, 0x7f,
0xf, 0xf, 0xe0, 0x0, 0xf, 0x0, 0x78, 0x0,
0x1f, 0xe0, 0x30, 0x1f, 0xe0, 0x0, 0x38, 0x3,
0x80, 0x3, 0xf8, 0x0, 0x0, 0x1f, 0xe0, 0x1,
0xe0, 0x3c, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x1f,
0xc0, 0x7, 0x81, 0xc0, 0xf, 0xc0, 0xf, 0xff,
0x0, 0x1f, 0x80, 0x1c, 0x1e, 0x1, 0xfe, 0x3,
0xff, 0xff, 0x0, 0xff, 0x0, 0xf0, 0xe0, 0x1f,
0x70, 0x3f, 0xff, 0xfc, 0x7, 0x7c, 0x3, 0x8f,
0x3, 0xe3, 0x81, 0xff, 0xff, 0xe0, 0x38, 0xf8,
0x1e, 0x70, 0x3f, 0x1e, 0x7, 0xff, 0xfe, 0x3,
0xc7, 0xe0, 0x73, 0x81, 0xf8, 0x70, 0x1f, 0xff,
0xe0, 0x1c, 0x3f, 0x3, 0xbc, 0x1e, 0xe3, 0xc0,
0xf, 0xf0, 0x1, 0xe3, 0xbc, 0x1d, 0xc0, 0xe3,
0xf, 0x0, 0x0, 0x0, 0x1e, 0x18, 0xe0, 0x7e,
0xe, 0x1c, 0x3c, 0x0, 0x0, 0x3, 0xe1, 0xc3,
0x83, 0xf0, 0x70, 0x70, 0x7c, 0x0, 0x0, 0x7c,
0x1c, 0x1c, 0x1f, 0x83, 0x81, 0xc1, 0xfe, 0x0,
0x3f, 0xc1, 0xc0, 0xe0, 0xfc, 0x1c, 0x7, 0x1,
0xff, 0xff, 0xf0, 0x1c, 0x7, 0x7, 0xe0, 0xe0,
0x7e, 0x0, 0xff, 0xf8, 0x3, 0xf0, 0x38, 0x3f,
0x3, 0x87, 0xfc, 0x0, 0x0, 0x0, 0x7b, 0xc3,
0x81, 0xf8, 0x1f, 0xf8, 0xf8, 0x0, 0x0, 0xf,
0x8f, 0xfc, 0xf, 0xc0, 0x3f, 0x1, 0xfe, 0x0,
0xf, 0xf0, 0x1f, 0x80, 0x77, 0x0, 0x0, 0x7,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0x38, 0x0,
0x0, 0x70, 0xff, 0xfc, 0x38, 0x0, 0x0, 0x39,
0xc0, 0x0, 0x3, 0x80, 0x0, 0x1, 0xc0, 0x0,
0x3, 0xc7, 0x0, 0x0, 0x38, 0x0, 0x0, 0x7,
0x0, 0x0, 0x1c, 0x3c, 0x0, 0x3, 0x80, 0x0,
0x0, 0x1c, 0x0, 0x1, 0xc0, 0xf0, 0x0, 0x38,
0x0, 0x0, 0x0, 0x78, 0x0, 0x1e, 0x3, 0xc0,
0x7, 0x80, 0x0, 0x0, 0x1, 0xe0, 0x1, 0xe0,
0xf, 0x80, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xe0,
0x3e, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x3f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xf0, 0x0,
/* U+1F649 "🙉" */
0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x80,
0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0x80, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0xf,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x7e, 0x0, 0x7,
0xe0, 0x38, 0x0, 0x0, 0x0, 0x38, 0x1f, 0xf8,
0x1, 0xff, 0x81, 0x80, 0x0, 0x0, 0x3, 0x3,
0xc3, 0xe0, 0x7c, 0x3c, 0x1c, 0x0, 0x0, 0x0,
0x70, 0x70, 0xf, 0xff, 0x0, 0xe0, 0xe0, 0x0,
0x0, 0x6, 0xe, 0x0, 0x3f, 0xc0, 0x7, 0xe,
0x0, 0x0, 0x3, 0xe0, 0xe0, 0x0, 0xf0, 0x0,
0x70, 0x7e, 0x0, 0x0, 0xff, 0xe, 0x0, 0x0,
0x0, 0x3, 0xf, 0xf0, 0x0, 0x1c, 0x38, 0xe0,
0x0, 0x0, 0x0, 0x39, 0xe3, 0x80, 0x3, 0x83,
0x8e, 0x0, 0x0, 0x0, 0x3, 0x9c, 0x1c, 0x0,
0x70, 0x38, 0xe0, 0x60, 0x0, 0x60, 0x71, 0xc0,
0xe0, 0x7, 0x3, 0x8e, 0xf, 0x0, 0xf, 0x7,
0x1c, 0xe, 0x0, 0x60, 0x38, 0xe1, 0xf8, 0x1,
0xf8, 0x71, 0xc0, 0x60, 0xe, 0x7, 0x7, 0x1f,
0x80, 0x1f, 0x87, 0xe, 0x7, 0x0, 0xe0, 0x70,
0x71, 0xf8, 0x1, 0xf8, 0xe0, 0xe0, 0x70, 0xe,
0x7, 0x7, 0x1f, 0x80, 0x1f, 0x8e, 0xe, 0x7,
0x0, 0xe0, 0x70, 0x70, 0xf0, 0x0, 0xf0, 0xe0,
0xe0, 0x70, 0xe, 0x7, 0x7, 0x0, 0x0, 0x0,
0xe, 0xe, 0x7, 0x0, 0xe0, 0x70, 0x70, 0x0,
0xf8, 0x0, 0xe0, 0xe0, 0x70, 0x7, 0x3, 0x87,
0x0, 0xf, 0x80, 0xf, 0xc, 0xe, 0x0, 0x70,
0x38, 0xe0, 0x0, 0x70, 0x0, 0x71, 0xc0, 0xe0,
0x7, 0x3, 0x8e, 0x0, 0x0, 0x0, 0x7, 0x1c,
0xe, 0x0, 0x70, 0x39, 0xe0, 0x0, 0x0, 0x0,
0x39, 0xc0, 0xe0, 0x7, 0x3, 0x9c, 0x0, 0x0,
0x0, 0x3, 0x9c, 0x6, 0x0, 0xe0, 0x39, 0xc0,
0xf, 0xff, 0x0, 0x39, 0xc0, 0x70, 0xe, 0x3,
0x9c, 0x7, 0xff, 0xfe, 0x3, 0x9e, 0x7, 0x1,
0xe0, 0x71, 0xc0, 0xff, 0xff, 0xf0, 0x38, 0xe0,
0x30, 0x1c, 0xf, 0x1c, 0xf, 0xff, 0xff, 0x3,
0x8f, 0x3, 0x83, 0xc0, 0xe0, 0xe0, 0x7f, 0xff,
0xe0, 0x38, 0x78, 0x18, 0x38, 0x1e, 0xe, 0x1,
0xff, 0xf8, 0x7, 0x7, 0x81, 0xc3, 0x83, 0xe0,
0x70, 0x3, 0xfc, 0x0, 0xf0, 0x7c, 0x1c, 0x70,
0x37, 0x7, 0x80, 0x0, 0x0, 0x1e, 0xd, 0xe0,
0xe7, 0x7, 0x30, 0x1e, 0x0, 0x0, 0x3, 0xc0,
0xce, 0xe, 0x70, 0x63, 0x80, 0xf8, 0x0, 0x1,
0xf0, 0x18, 0xf0, 0xee, 0x6, 0x1c, 0x3, 0xf8,
0x0, 0xfe, 0x3, 0x87, 0x6, 0xe0, 0xe0, 0xe0,
0xf, 0xff, 0xff, 0x0, 0x70, 0x70, 0x7e, 0xe,
0x7, 0x0, 0xf, 0xff, 0x0, 0xe, 0x7, 0x7,
0xe0, 0xe0, 0x78, 0x0, 0x0, 0x0, 0x1, 0xe0,
0x70, 0x7e, 0x7, 0xf, 0xe0, 0x0, 0x0, 0x0,
0x7f, 0xf, 0x7, 0xe0, 0x7f, 0xef, 0x80, 0x0,
0x0, 0x1e, 0x7f, 0xe0, 0x7e, 0x3, 0xfc, 0x3e,
0x0, 0x0, 0x7, 0xc3, 0xfc, 0x6, 0xe0, 0x1f,
0x80, 0xff, 0x0, 0xf, 0xf0, 0x1f, 0x80, 0x67,
0x0, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0x0,
0xe, 0x70, 0x0, 0x0, 0x71, 0xff, 0xf0, 0xe0,
0x0, 0x0, 0xe3, 0x80, 0x0, 0xe, 0x0, 0x0,
0x7, 0x0, 0x0, 0x1c, 0x3c, 0x0, 0x1, 0xc0,
0x0, 0x0, 0x38, 0x0, 0x3, 0x81, 0xe0, 0x0,
0x78, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x78, 0xf,
0x0, 0xf, 0x0, 0x0, 0x0, 0xf, 0x0, 0xf,
0x0, 0x7e, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x7e,
0x3, 0xc0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x1, 0xff, 0xf8, 0x0, 0x3, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3, 0xfc, 0x0,
/* U+1F64A "🙊" */
0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x7e, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x3c,
0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x3c, 0x0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x1, 0x80,
0x0, 0x0, 0x0, 0x18, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x0,
0x0, 0xc0, 0x3e, 0x0, 0x3, 0xe0, 0x30, 0x0,
0x0, 0xe, 0x7, 0xfc, 0x0, 0x7f, 0xc1, 0xc0,
0x0, 0x0, 0xe0, 0x70, 0x78, 0xf, 0x7, 0x7,
0x0, 0x0, 0x6, 0x6, 0x1, 0xf1, 0xe0, 0x1c,
0x18, 0x0, 0x0, 0x70, 0x70, 0x3, 0xfe, 0x0,
0x70, 0xc0, 0x0, 0x3, 0x83, 0x0, 0x7, 0xc0,
0x1, 0x87, 0x0, 0x0, 0x18, 0x18, 0x0, 0x0,
0x0, 0xc, 0x18, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x60, 0xe0, 0x0, 0x7e, 0x6, 0x0,
0x0, 0x0, 0x3, 0x7, 0xe0, 0xf, 0xe0, 0x30,
0x30, 0x0, 0x18, 0x18, 0x1f, 0xc0, 0xf0, 0x1,
0x83, 0xc0, 0x1, 0xe0, 0xc0, 0xf, 0xe, 0x0,
0xc, 0x3f, 0x0, 0x1f, 0x86, 0x0, 0x1c, 0x60,
0x0, 0x71, 0xf8, 0x0, 0xfc, 0x70, 0x0, 0x77,
0xe, 0x3, 0x8f, 0xc0, 0x7, 0xe3, 0x1, 0xc1,
0xb0, 0xf0, 0xc, 0x7e, 0x0, 0x3f, 0x18, 0xf,
0xf, 0x8f, 0x80, 0x61, 0xe0, 0x0, 0xf0, 0xc0,
0x7c, 0x7c, 0x7c, 0x3, 0x0, 0x0, 0x0, 0x6,
0x3, 0xe3, 0xe3, 0xe0, 0x38, 0x0, 0x7c, 0x0,
0x30, 0x1f, 0x1f, 0xf, 0x1, 0xc0, 0x3, 0xe0,
0x1, 0xc0, 0xf0, 0xfc, 0x38, 0xc, 0x0, 0x4,
0x0, 0x6, 0x7, 0x6, 0x60, 0x0, 0x60, 0xf,
0x80, 0x0, 0x30, 0x0, 0x73, 0x80, 0x6, 0x1,
0xfe, 0x1f, 0x1, 0xc0, 0x7, 0xf, 0x0, 0x30,
0x3f, 0x73, 0xfe, 0x6, 0x0, 0x70, 0x3f, 0x81,
0x83, 0xe0, 0xfe, 0xf8, 0x30, 0x7f, 0x0, 0x7c,
0xc, 0x3c, 0x7, 0xf9, 0xe1, 0x83, 0xe0, 0x0,
0x70, 0x63, 0xc0, 0x0, 0xe3, 0x8c, 0x18, 0x0,
0x3, 0x83, 0xbc, 0x0, 0x3, 0x8e, 0xe0, 0xc0,
0x0, 0xc, 0xf, 0xc0, 0x0, 0xc, 0x3e, 0xc,
0x0, 0x0, 0x70, 0x7c, 0x0, 0x0, 0x70, 0xf0,
0x60, 0x0, 0x3, 0x83, 0xc0, 0x0, 0x3, 0x83,
0x87, 0x0, 0x0, 0xe, 0x3c, 0x0, 0x0, 0x1c,
0x1e, 0x30, 0x0, 0x0, 0x77, 0xc0, 0x0, 0x0,
0xe0, 0x7f, 0x80, 0x0, 0x1, 0xfc, 0x0, 0x0,
0x7, 0x0, 0xf8, 0x0, 0x0, 0xf, 0x80, 0x0,
0x0, 0x30, 0x3, 0xe0, 0x0, 0x1, 0xf0, 0x0,
0x0, 0x3, 0x80, 0x7, 0xc0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x18, 0x0, 0x1f, 0x80, 0x7, 0xe0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x3f, 0x0, 0x7c,
0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x7c, 0x7,
0x80, 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0xf0,
0x38, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x3,
0x83, 0x80, 0x0, 0xf, 0xc0, 0x1f, 0x0, 0x0,
0x1e, 0x1c, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x70, 0xe0, 0x0, 0x1e, 0xff, 0xff, 0xbc,
0x0, 0x3, 0x87, 0x0, 0x3, 0xc0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0x38, 0x0, 0x3c, 0x0, 0x0,
0x1, 0xc0, 0x0, 0xe1, 0xc0, 0x3, 0x80, 0x0,
0x0, 0x3, 0x80, 0xe, 0x7, 0x0, 0x78, 0x0,
0x0, 0x0, 0xf, 0x0, 0x70, 0x1c, 0xf, 0x0,
0x0, 0x0, 0x0, 0x1e, 0xf, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0,
/* U+1F64B "🙋" */
0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc1, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x3c, 0x7, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x18, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0,
0x30, 0x0, 0x0, 0x0, 0x0, 0x30, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x1, 0x80, 0x1f, 0x0, 0x0,
0x0, 0x0, 0xc, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x60, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x3,
0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xf, 0x80,
0x0, 0x0, 0x0, 0x6, 0x1, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x30, 0x1f, 0x0, 0x3f, 0xf0, 0x0,
0x1, 0x81, 0xe0, 0xf, 0xff, 0xf0, 0x0, 0x1c,
0xc, 0x1, 0xf0, 0x3, 0xf0, 0x0, 0xe0, 0x60,
0x3c, 0x0, 0x3, 0xc0, 0x7, 0x3, 0x3, 0x80,
0x0, 0x7, 0x80, 0x38, 0x18, 0x38, 0x0, 0x0,
0xe, 0x1, 0xc0, 0xc7, 0x0, 0x0, 0x0, 0x38,
0xe, 0x6, 0x30, 0x0, 0x0, 0x0, 0xe0, 0x70,
0x33, 0x1, 0x0, 0x0, 0x3, 0x83, 0x1, 0xb0,
0x1c, 0x0, 0x0, 0xc, 0x38, 0xf, 0x81, 0xf0,
0x0, 0x0, 0x71, 0xc0, 0x78, 0xf, 0x80, 0x0,
0x1, 0xce, 0x3, 0x80, 0x7c, 0x1, 0xc0, 0xe,
0x70, 0x1c, 0x3, 0xe0, 0x1f, 0x0, 0x33, 0x80,
0xc0, 0xe, 0x0, 0xf8, 0x1, 0xdc, 0x0, 0x0,
0x0, 0x7, 0xc0, 0xe, 0xe0, 0x0, 0x0, 0x0,
0x3e, 0x0, 0x37, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x1, 0xb8, 0x0, 0x2, 0x0, 0x0, 0x0, 0xd,
0xc0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x6e, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x3, 0x70, 0x0, 0x7,
0x80, 0x0, 0x0, 0x1b, 0x80, 0x0, 0x1f, 0x0,
0x0, 0x1, 0xdc, 0x0, 0x0, 0x3e, 0x1, 0x80,
0xe, 0x70, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x73,
0x80, 0x0, 0x0, 0x7f, 0xc0, 0x3, 0x9c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc7, 0x80, 0x0, 0x0, 0x0,
0x0, 0xe, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x38, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x3, 0x83,
0x80, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x78, 0x0, 0x0,
0x0, 0x0, 0x7, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x30, 0x7, 0x80, 0x0, 0x0, 0x0, 0x3,
0x80, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0,
0x3c, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0xfc,
0x0, 0x0, 0x3, 0xf0, 0x0, 0x1, 0xfe, 0x0,
0x3, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0,
/* U+1F64C "🙌" */
0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x80, 0x38, 0x1, 0x80, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x38, 0x3, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x38, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x38, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x38, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x38, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38,
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0xf, 0x80,
0x10, 0x0, 0x10, 0x1, 0xf0, 0x0, 0x0, 0x1f,
0xc0, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x0, 0x0,
0x38, 0xe0, 0x0, 0x0, 0x0, 0x7, 0x1c, 0x0,
0x0, 0x78, 0xe0, 0x0, 0x0, 0x0, 0x7, 0x1e,
0x0, 0x3, 0xf8, 0xfc, 0x0, 0x0, 0x0, 0x3f,
0x1f, 0xc0, 0x7, 0xf8, 0xfe, 0x0, 0x0, 0x0,
0x7f, 0x1f, 0xe0, 0x7, 0x38, 0xe7, 0x0, 0x0,
0x0, 0xe7, 0x1c, 0xe0, 0x7, 0x38, 0xe7, 0x0,
0x0, 0x0, 0xe7, 0x1c, 0xe0, 0x3f, 0x38, 0xe7,
0x0, 0x0, 0x0, 0xe7, 0x1c, 0xfc, 0x7f, 0x38,
0xe7, 0x0, 0x0, 0x0, 0xe7, 0x1c, 0xfe, 0xe7,
0x38, 0xe7, 0x0, 0x0, 0x0, 0xe7, 0x1c, 0xe7,
0xc7, 0x38, 0xe7, 0x0, 0x0, 0x0, 0xe7, 0x1c,
0xe3, 0xc7, 0x38, 0xe7, 0x0, 0x0, 0x0, 0xe7,
0x1c, 0xe3, 0xc7, 0x38, 0xe7, 0x0, 0x0, 0x0,
0xe7, 0x1c, 0xe3, 0xc7, 0x38, 0xe7, 0x0, 0x0,
0x0, 0xe7, 0x1c, 0xe3, 0xc7, 0x38, 0xe7, 0x0,
0x0, 0x0, 0xe7, 0x1c, 0xe3, 0xc7, 0x38, 0xe7,
0x0, 0x0, 0x0, 0xe7, 0x1c, 0xe3, 0xc7, 0x38,
0xe7, 0x0, 0x0, 0x0, 0xe7, 0x1c, 0xe3, 0xc7,
0x38, 0xe7, 0x0, 0x0, 0x0, 0xe7, 0x1c, 0xe3,
0xc7, 0x39, 0xe7, 0x0, 0x0, 0x0, 0xe7, 0x9c,
0xe3, 0xc7, 0x3f, 0xe7, 0x0, 0x0, 0x0, 0xe7,
0xfc, 0xe3, 0xc7, 0xff, 0xe7, 0x0, 0x0, 0x0,
0xe7, 0xff, 0xe3, 0xc7, 0xf0, 0x7, 0x1f, 0x1,
0xf8, 0xe0, 0xf, 0xe3, 0xc7, 0x80, 0x7, 0x7f,
0x83, 0xfe, 0xe0, 0x1, 0xe3, 0xc2, 0x0, 0x7,
0xe1, 0xc7, 0x7, 0xe0, 0x0, 0x43, 0xc0, 0x0,
0xf, 0x81, 0xc7, 0x3, 0xf0, 0x0, 0x3, 0xc0,
0x0, 0x7f, 0x3, 0xc7, 0xc1, 0xfe, 0x0, 0x3,
0xc0, 0x1, 0xfe, 0xf, 0x83, 0xe0, 0xff, 0x80,
0x3, 0xc0, 0x3, 0xe0, 0x1f, 0x1, 0xf0, 0x7,
0xc0, 0x3, 0xc0, 0x7, 0x80, 0x3c, 0x0, 0x78,
0x1, 0xe0, 0x3, 0xc0, 0xf, 0x0, 0x38, 0x0,
0x38, 0x0, 0xf0, 0x3, 0xc0, 0xe, 0x0, 0x38,
0x0, 0x1c, 0x0, 0x70, 0x3, 0xc0, 0x1c, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x38, 0x3, 0xc0, 0xc,
0x0, 0x70, 0x0, 0x1c, 0x0, 0x30, 0x3, 0xe0,
0x0, 0x0, 0x70, 0x0, 0xe, 0x0, 0x0, 0x6,
0x60, 0x0, 0x0, 0xe0, 0x0, 0xe, 0x0, 0x0,
0x6, 0x70, 0x0, 0x0, 0xe0, 0x0, 0x7, 0x0,
0x0, 0xe, 0x70, 0x0, 0x1, 0xc0, 0x0, 0x7,
0x80, 0x0, 0xe, 0x38, 0x0, 0x3, 0xc0, 0x0,
0x3, 0xc0, 0x0, 0x1c, 0x38, 0x0, 0x7, 0x80,
0x0, 0x1, 0xe0, 0x0, 0x1c, 0x1c, 0x0, 0xf,
0x0, 0x0, 0x0, 0xf0, 0x0, 0x38, 0x1c, 0x0,
0xe, 0x0, 0x0, 0x0, 0x70, 0x0, 0x38, 0x1c,
0x0, 0xc, 0x0, 0x0, 0x0, 0x30, 0x0, 0x38,
0x1c, 0x0, 0xc, 0x0, 0x0, 0x0, 0x30, 0x0,
0x38, 0x1c, 0x0, 0xc, 0x0, 0x0, 0x0, 0x30,
0x0, 0x38, 0x1c, 0x0, 0xc, 0x0, 0x0, 0x0,
0x30, 0x0, 0x38, 0x1c, 0x0, 0xc, 0x0, 0x0,
0x0, 0x30, 0x0, 0x38, 0x18, 0x0, 0xc, 0x0,
0x0, 0x0, 0x30, 0x0, 0x18, 0x18, 0x0, 0xc,
0x0, 0x0, 0x0, 0x30, 0x0, 0x18, 0x18, 0x0,
0xc, 0x0, 0x0, 0x0, 0x30, 0x0, 0x18, 0x18,
0x0, 0xc, 0x0, 0x0, 0x0, 0x30, 0x0, 0x18,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+1F64D "🙍" */
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0xf, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x7,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0,
0x7, 0x80, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0,
0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0xe,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0,
0x0, 0xe, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x3, 0x80,
0x0, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x38, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x3, 0x80,
0x40, 0x60, 0x18, 0x8, 0x7, 0x0, 0x0, 0xe,
0x3, 0xff, 0xc0, 0xff, 0xf0, 0x1c, 0x0, 0x0,
0x70, 0x3, 0xfc, 0x0, 0xff, 0x0, 0x38, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x3, 0x80, 0x0, 0x0,
0x7f, 0x80, 0x0, 0x0, 0x70, 0x1c, 0x0, 0x0,
0xf, 0xff, 0xc0, 0x0, 0x0, 0xe0, 0xf0, 0x0,
0x0, 0xf8, 0x7, 0xc0, 0x0, 0x3, 0xc3, 0x80,
0x0, 0x3, 0x0, 0x7, 0x0, 0x0, 0x7, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x39, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xee, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3c, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x3f, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0,
/* U+1F64E "🙎" */
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x3,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x3,
0x80, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x78, 0x0,
0x78, 0x0, 0xe0, 0x0, 0x0, 0xf, 0x0, 0x1e,
0x0, 0x1e, 0x0, 0x3c, 0x0, 0x0, 0x3, 0x80,
0xf, 0xc0, 0xf, 0xc0, 0x7, 0x0, 0x0, 0x1,
0xc0, 0x3, 0xf0, 0x3, 0xf0, 0x0, 0xe0, 0x0,
0x0, 0x70, 0x0, 0xfc, 0x0, 0xfc, 0x0, 0x38,
0x0, 0x0, 0x38, 0x0, 0x3f, 0x0, 0x3f, 0x0,
0x7, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xe0, 0x0, 0x7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x0, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0xf0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x3c,
0x0, 0x78, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x7, 0x80, 0x1c, 0x0, 0x0, 0xf, 0x3, 0xc0,
0x0, 0x0, 0xe0, 0xe, 0x0, 0x0, 0x7, 0x0,
0x38, 0x0, 0x0, 0x1c, 0x7, 0x80, 0x0, 0x1,
0x80, 0x6, 0x0, 0x0, 0x7, 0x81, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x1c, 0x0, 0x0, 0xfe, 0x0, 0x7, 0xf8,
0x0, 0x0, 0xe7, 0x0, 0x0, 0xff, 0xf0, 0xf,
0xff, 0x80, 0x0, 0x39, 0xc0, 0x0, 0x70, 0x3f,
0x1f, 0xc0, 0xf8, 0x0, 0xe, 0xe0, 0x0, 0x30,
0x1, 0xff, 0x80, 0x7, 0x0, 0x1, 0xf8, 0x0,
0x1c, 0x0, 0x1f, 0x80, 0x0, 0xc0, 0x0, 0x7e,
0x0, 0x6, 0x0, 0xf, 0x80, 0x0, 0x18, 0x0,
0x1f, 0x80, 0x1, 0x80, 0xf, 0x80, 0x0, 0x6,
0x0, 0x7, 0xe0, 0x0, 0x60, 0x3, 0x80, 0x0,
0x0, 0xc0, 0x1, 0xf8, 0x2, 0x18, 0x1, 0xc0,
0x1, 0xc0, 0x31, 0x0, 0x7e, 0x0, 0xff, 0x0,
0x70, 0x0, 0xff, 0xf, 0xc0, 0x1d, 0xc0, 0x3f,
0xc0, 0x38, 0x0, 0x73, 0xff, 0xf0, 0xe, 0x70,
0x3, 0xfc, 0x3c, 0x0, 0x38, 0x1f, 0xe0, 0x3,
0x9c, 0x0, 0x3, 0xfe, 0x0, 0x1c, 0x0, 0x0,
0x0, 0xe3, 0x80, 0x0, 0x7e, 0x0, 0xe, 0x0,
0x0, 0x0, 0x70, 0xf0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x3c, 0x1c, 0x0, 0x0, 0x0,
0x7, 0x80, 0x0, 0x0, 0xe, 0x3, 0xc0, 0x0,
0x0, 0x7, 0x80, 0x0, 0x0, 0xf, 0x0, 0x78,
0x0, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x7, 0x80,
0xf, 0x80, 0x0, 0x7, 0xdf, 0xc0, 0x0, 0x7,
0xc0, 0x0, 0xfc, 0x0, 0x3f, 0xc0, 0xff, 0x0,
0xf, 0xc0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x7,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfc, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0,
/* U+1F64F "🙏" */
0x0, 0x0, 0x0, 0x1e, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x8e, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x1c, 0x60, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6, 0x38, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x73, 0xe7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc3, 0x86, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0x87, 0xc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xe, 0x18, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0xf8, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x60, 0xe0, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc1, 0xc1, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1, 0x83, 0x83, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x7, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xe, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x1c, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x38, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0,
0x60, 0x70, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc0, 0xe0, 0x60, 0x0, 0x0, 0x0, 0x0, 0x1,
0x81, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x3, 0x81, 0x80, 0x0, 0x0, 0x0, 0x0, 0xe,
0x7, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x18,
0xe, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30,
0x1c, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x38, 0xe, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0,
0x70, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0,
0xe0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x6, 0x1,
0xc0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x3,
0x80, 0x70, 0x0, 0x0, 0x0, 0x0, 0x38, 0x7,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x60, 0xe,
0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x1c,
0x1, 0x80, 0x0, 0x0, 0x0, 0x1, 0x80, 0x38,
0x3, 0x0, 0x0, 0x0, 0x0, 0x77, 0x0, 0x70,
0x7, 0x70, 0x0, 0x0, 0x3, 0xfe, 0x0, 0xe0,
0xf, 0xf8, 0x0, 0x0, 0x1f, 0xf0, 0x1, 0xc0,
0x7, 0xfc, 0x0, 0x0, 0xff, 0xc0, 0x3, 0x80,
0x7, 0xfe, 0x0, 0x7, 0xe7, 0x0, 0x7, 0x0,
0x7, 0x3f, 0x0, 0x7e, 0xe, 0x0, 0xe, 0x0,
0xe, 0xf, 0xc3, 0xf0, 0xe, 0x0, 0x1c, 0x0,
0x38, 0x7, 0xe7, 0x80, 0x1c, 0x0, 0x38, 0x0,
0x70, 0x3, 0xcc, 0x0, 0x18, 0x0, 0x70, 0x0,
0xc0, 0x1, 0x80, 0x0, 0x38, 0x0, 0xe0, 0x3,
0x80, 0x0, 0x0, 0x0, 0x38, 0x7, 0xf0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x70, 0x1f, 0xf0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x70, 0x7d, 0xf0, 0x70,
0x0, 0x0, 0x0, 0x0, 0x71, 0xc0, 0x71, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x77, 0x80, 0xf7, 0x80,
0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x1, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x1f, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf8, 0x3e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf0, 0x78, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xc0, 0x78, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1e, 0x0, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x78, 0x0, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x3e, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x4, 0x0, 0x0, 0x10, 0x0, 0x0,
/* U+1F680 "🚀" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc0, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x3e, 0x0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x1, 0xfc, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x30, 0x0, 0x3c, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x70, 0x0, 0x70, 0x0,
0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0xe, 0x0, 0xe0, 0x3, 0xc0, 0x0,
0x0, 0x0, 0x38, 0x1, 0xc0, 0x7, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x1, 0xc0, 0xe, 0x0, 0x0,
0x0, 0x7, 0x0, 0x3, 0xc0, 0x3c, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x3, 0xc0, 0x70, 0x0, 0x0,
0x0, 0x30, 0x0, 0x3, 0xc1, 0xe0, 0x0, 0x0,
0x0, 0xc0, 0x0, 0x3, 0xe7, 0x80, 0x0, 0x0,
0x3, 0x0, 0x3e, 0x1, 0xfe, 0x0, 0x0, 0x0,
0xc, 0x0, 0xfe, 0x1, 0xfc, 0x0, 0x0, 0x0,
0x38, 0x3, 0xfe, 0x0, 0x70, 0x0, 0x0, 0x0,
0xe0, 0xf, 0xfe, 0x1, 0xe0, 0x0, 0x0, 0x3,
0x80, 0x1f, 0xfc, 0x7, 0x80, 0x0, 0x0, 0x6,
0x0, 0x3f, 0xf8, 0x1e, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x7f, 0xf0, 0x38, 0x0, 0x0, 0x1, 0xf8,
0x0, 0x7f, 0xc0, 0xf0, 0x0, 0x0, 0xff, 0xf8,
0x0, 0x7f, 0x3, 0xc0, 0x0, 0xf, 0xff, 0x30,
0x0, 0x7c, 0xf, 0x0, 0x0, 0x3f, 0x8e, 0x70,
0x0, 0x0, 0x1c, 0x0, 0x0, 0xe0, 0x18, 0xe0,
0x0, 0x0, 0x70, 0x0, 0x3, 0x80, 0x30, 0xe0,
0x0, 0x1, 0xe0, 0x0, 0xe, 0x0, 0xe0, 0xe0,
0x0, 0x7, 0x80, 0x0, 0x78, 0x1, 0x81, 0xc0,
0x0, 0x1e, 0x0, 0x1, 0xe0, 0xf, 0x1, 0xc0,
0x0, 0x78, 0x0, 0x7, 0x80, 0x3e, 0x1, 0xc0,
0x1, 0xe0, 0x0, 0xe, 0x1, 0xfc, 0x1, 0xe0,
0x7, 0x80, 0x0, 0x1f, 0xf, 0x98, 0x1, 0xe0,
0x1e, 0x0, 0x0, 0x1f, 0xfe, 0x70, 0x1, 0xf0,
0x78, 0x0, 0x0, 0xf, 0xf1, 0xf0, 0x0, 0xf9,
0xc0, 0x0, 0x0, 0x3, 0x87, 0xe0, 0x0, 0xff,
0x0, 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0, 0x3c,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x1, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xe0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x7f, 0x80,
0x0, 0x0, 0x0, 0x1e, 0x3f, 0xff, 0xf3, 0x0,
0x0, 0x0, 0x0, 0x70, 0x3f, 0xff, 0x86, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x3f, 0xdc, 0xc, 0x0,
0x0, 0x0, 0x3, 0x0, 0x3f, 0x38, 0x38, 0x0,
0x0, 0x0, 0xe, 0x0, 0x7c, 0xe0, 0x70, 0x0,
0x0, 0x0, 0x18, 0x1, 0xc1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x70, 0x3, 0x87, 0x1, 0x80, 0x0,
0x0, 0x0, 0xe0, 0xe, 0xe, 0x3, 0x0, 0x0,
0x0, 0x1, 0x84, 0x38, 0x18, 0x6, 0x0, 0x0,
0x0, 0x7, 0xf8, 0xf0, 0x70, 0x1c, 0x0, 0x0,
0x0, 0xf, 0xf7, 0xc0, 0xe0, 0x70, 0x0, 0x0,
0x0, 0x3f, 0xfe, 0x1, 0xc1, 0xe0, 0x0, 0x0,
0x0, 0x1, 0xf8, 0x1, 0xc7, 0x80, 0x0, 0x0,
0x0, 0x3, 0x80, 0x3, 0x8e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+1F681 "🚁" */
0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x71, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfe, 0x7,
0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1, 0xff,
0x0, 0x70, 0x1, 0xff, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x0, 0x7, 0x0, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x80, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x1f, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xc0, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x30, 0xe0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0xc0, 0x0, 0x3, 0xe,
0x0, 0x0, 0x0, 0xff, 0xc0, 0xe, 0x0, 0x0,
0x70, 0xe0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0xe0,
0x0, 0x6, 0x1c, 0x0, 0x0, 0x0, 0xff, 0x0,
0xe, 0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0xf,
0xf0, 0x0, 0xe0, 0x0, 0xe, 0x1c, 0x0, 0x0,
0x0, 0xff, 0xfe, 0xe, 0x0, 0x0, 0xc1, 0x80,
0x0, 0x0, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xfc,
0x38, 0x0, 0x0, 0x7f, 0xc0, 0xf, 0xff, 0xff,
0xff, 0x83, 0x80, 0x0, 0x1f, 0xc0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x30, 0x0, 0x3, 0xf0, 0x0,
0x0, 0x8, 0x0, 0x0, 0x7, 0x0, 0x0, 0xff,
0x1f, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x1f, 0xf1, 0xf1, 0xfe, 0x0, 0x0, 0x0, 0x6,
0x0, 0x3, 0xfe, 0x1e, 0x1f, 0xe0, 0x0, 0x0,
0x0, 0x60, 0x0, 0x7f, 0xe3, 0xe1, 0xfe, 0x0,
0x7, 0xff, 0x6, 0x0, 0xf, 0xfe, 0x3e, 0x1f,
0xe0, 0x0, 0xff, 0xf8, 0x60, 0x0, 0xff, 0xc3,
0xe1, 0xfe, 0x0, 0x1f, 0xff, 0x87, 0x0, 0x3f,
0xfc, 0x7e, 0x1f, 0xe0, 0x3, 0x80, 0x18, 0x70,
0x7, 0xff, 0xc7, 0xe1, 0xfe, 0x0, 0x70, 0x1,
0xc7, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0xe,
0x0, 0xc, 0x30, 0xe, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0xc3, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x18, 0x0, 0xe, 0x38, 0x1c, 0x3,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0xe3, 0x81,
0xc0, 0x70, 0x0, 0x0, 0x0, 0x30, 0x0, 0x7,
0xf8, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0x7f, 0x81, 0xc0, 0x70, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0xe, 0x6, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0,
0x0, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x7,
0xc0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0x7f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0x9c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0xc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x3, 0x0, 0x70, 0x0, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x7, 0x0, 0x0, 0x30,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
/* U+1F682 "🚂" */
0x0, 0x0, 0x7e, 0x7f, 0xcf, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0xf0, 0x78, 0x1e, 0x1e, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x40, 0x30,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0,
0x6, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0,
0x0, 0x30, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0,
0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xc0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xfe, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xf0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0,
0x3b, 0xff, 0x80, 0xe0, 0x70, 0x0, 0x0, 0x0,
0x1, 0xdf, 0xfe, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0xe, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x73, 0xfe, 0x7e, 0xe, 0x0, 0x0,
0x0, 0x0, 0x1, 0xcf, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x3f, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xf8, 0x0, 0x19, 0xf0, 0x0, 0x1,
0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0x0, 0x0,
0x7, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xf8, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0xf, 0x80,
0x0, 0x0, 0xc0, 0x0, 0x7, 0x0, 0x0, 0x7c,
0x0, 0x0, 0x6, 0x0, 0x0, 0x38, 0x0, 0x3,
0xe0, 0x0, 0x0, 0x30, 0x0, 0x1, 0xc0, 0x0,
0x1f, 0x0, 0x0, 0x1, 0x80, 0xf8, 0xe, 0x0,
0x0, 0xf8, 0x0, 0x0, 0xc, 0x1f, 0xf0, 0x70,
0x0, 0x7, 0xc0, 0x0, 0x0, 0x60, 0xc1, 0xc3,
0x80, 0x0, 0x3e, 0x0, 0x0, 0x3, 0xe, 0x6,
0x1c, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x18, 0x60,
0x30, 0xe0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xc3,
0x1, 0x87, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x6,
0x18, 0xc, 0x38, 0x0, 0x3, 0xe0, 0x0, 0x0,
0xf0, 0xc0, 0x61, 0xc0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0x86, 0x3, 0xe, 0x0, 0x7, 0xff, 0xff,
0xff, 0xfc, 0x30, 0x18, 0x70, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xe1, 0x80, 0xc3, 0x80, 0x3, 0xff,
0xc0, 0xe0, 0x7f, 0xc, 0x6, 0x1c, 0x0, 0x1f,
0xde, 0x7, 0x3, 0xf8, 0x7f, 0xf0, 0xe0, 0x1,
0xfe, 0x70, 0x38, 0x1f, 0xc3, 0xff, 0x87, 0x0,
0x1f, 0xf3, 0x81, 0xc0, 0xfe, 0x0, 0x0, 0x38,
0x0, 0xff, 0x9c, 0xe, 0x7, 0xf0, 0x0, 0x1,
0xc0, 0x7, 0xfc, 0xe0, 0x70, 0x3f, 0x80, 0x0,
0xe, 0x0, 0x1f, 0xff, 0x3, 0x81, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x7f, 0xf8, 0x1c, 0xf, 0xff,
0xff, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0xe0, 0x7f,
0x0, 0x0, 0x1c, 0x0, 0xf, 0xfc, 0x7, 0x7,
0xf8, 0x0, 0x0, 0xe0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7e,
0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xf,
0xe0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x80,
0xf, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfc,
0x0, 0xef, 0xc0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xe0, 0xe, 0x7e, 0x0, 0xf8, 0x7f, 0xff, 0xff,
0xff, 0x0, 0x77, 0xf0, 0x7, 0xf3, 0xc1, 0xe1,
0xc0, 0xf8, 0x7, 0x3f, 0x80, 0x7f, 0xff, 0x1f,
0x9f, 0xf, 0xc0, 0x71, 0xff, 0xff, 0xff, 0xcd,
0xdf, 0xee, 0xce, 0x3, 0x1b, 0xff, 0xff, 0xfe,
0x3c, 0xfe, 0x3c, 0x70, 0x38, 0xc3, 0xff, 0xfc,
0x71, 0xc7, 0x31, 0xe3, 0x83, 0x86, 0x3f, 0xff,
0xf3, 0x9b, 0xb9, 0x9d, 0x98, 0x18, 0x61, 0xc7,
0xe1, 0x9f, 0x8f, 0xcf, 0xc7, 0xc1, 0xc3, 0xc,
0x3f, 0xc, 0x78, 0x3c, 0x3c, 0x1e, 0x1c, 0x18,
0x73, 0xfc, 0xe1, 0xe1, 0xc1, 0xe1, 0xe1, 0xff,
0xc1, 0xf8, 0x7f, 0x7, 0xfc, 0x3, 0xfe, 0x1f,
0xff, 0x7, 0x81, 0xe0, 0xf, 0x80, 0xf, 0xc0,
/* U+1F683 "🚃" */
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x30, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc3, 0x7,
0xff, 0xf, 0xfe, 0x1f, 0xf8, 0x3f, 0xf0, 0x30,
0xc1, 0xff, 0xc3, 0xff, 0x87, 0xfe, 0xf, 0xfc,
0xc, 0x30, 0x60, 0x70, 0xc0, 0xe1, 0x81, 0x83,
0x3, 0x3, 0xc, 0x18, 0x1c, 0x30, 0x38, 0x60,
0x60, 0xc0, 0xc0, 0xc3, 0x6, 0x7, 0xc, 0xe,
0x18, 0x18, 0x30, 0x30, 0x30, 0xc1, 0x81, 0xc3,
0x3, 0x86, 0x6, 0xc, 0xc, 0xc, 0x30, 0x60,
0x70, 0xc0, 0xe1, 0x81, 0x83, 0x3, 0x3, 0xc,
0x18, 0x1c, 0x30, 0x38, 0x60, 0x60, 0xc0, 0xc0,
0xc3, 0x6, 0x7, 0xc, 0xe, 0x18, 0x18, 0x30,
0x30, 0x30, 0xc1, 0xff, 0xc3, 0xff, 0x87, 0xfe,
0xf, 0xfc, 0xc, 0x30, 0x7f, 0xf0, 0xff, 0xe1,
0xff, 0x83, 0xff, 0x3, 0xc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x30, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x30, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x30,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf3, 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, 0x38,
0x38, 0x70, 0x70, 0x7, 0x3, 0xe, 0x7, 0x0,
0xe, 0xe, 0x1c, 0x1c, 0x0, 0xc0, 0xc3, 0x81,
0xc0, 0x3, 0x83, 0x87, 0x7, 0x0, 0x38, 0x70,
0x60, 0xe0, 0x0, 0x71, 0xc0, 0xe3, 0x80, 0xe,
0x3c, 0x1c, 0x78, 0x0, 0xf, 0xe0, 0x1f, 0xc0,
0x1, 0xfe, 0x3, 0xfc, 0x0, 0x1, 0xf0, 0x3,
0xe0, 0x0, 0x1e, 0x0, 0x3c, 0x0,
/* U+1F684 "🚄" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xb8,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x38,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x3c,
0x3, 0x80, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x1c,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x1c,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x1c,
0x0, 0x70, 0x0, 0x0, 0x0, 0x7, 0xc0, 0x1c,
0x0, 0x38, 0x0, 0x0, 0x0, 0xf, 0x80, 0x3c,
0x0, 0x1c, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x3c,
0x0, 0xe, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x3c,
0x0, 0x7, 0x0, 0x0, 0x0, 0x3e, 0x0, 0x3c,
0x0, 0x3, 0x80, 0x0, 0x0, 0x3e, 0x0, 0x78,
0x0, 0x1, 0xc0, 0x0, 0x0, 0x7c, 0x0, 0xf8,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x7c, 0x0, 0xf0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x78, 0x1, 0xf0,
0x0, 0x0, 0x38, 0x0, 0x0, 0xf8, 0x3, 0xe0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0xf8, 0xf, 0xc0,
0x0, 0x0, 0xe, 0x0, 0x0, 0xf0, 0x1f, 0x80,
0x0, 0x0, 0x7, 0x0, 0x0, 0xf0, 0x7f, 0x0,
0x0, 0x0, 0x3, 0x80, 0x1, 0xf1, 0xfe, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x1, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x1, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x81, 0xe0, 0x60, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc1, 0xe0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0xe0, 0xfc, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xf0, 0xf0, 0x7c, 0x0,
0xf, 0xff, 0xff, 0xff, 0xf8, 0xf0, 0x7c, 0x0,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x70, 0x1c, 0x3,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x70, 0x0, 0xf,
0xff, 0xf8, 0x0, 0x0, 0x7, 0x78, 0x0, 0x3f,
0xfe, 0x0, 0x0, 0x0, 0x3, 0xb8, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1, 0xdc, 0x1, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x7, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x9f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x18,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xc,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xe,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x8e,
0x0, 0x0, 0x0, 0x1, 0xf8, 0xf3, 0xff, 0xc6,
0x0, 0x0, 0x0, 0x1, 0xfc, 0x31, 0xff, 0xe7,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xf3,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0,
0x0,
/* U+1F685 "🚅" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0,
0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0x18, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0,
0xc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x6, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0x3, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0x81, 0x80, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x30,
0xc0, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x18,
0x60, 0x60, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xc,
0x30, 0x30, 0x0, 0x0, 0x0, 0x1, 0xe0, 0xc,
0x18, 0x18, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x6,
0xc, 0xc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xfe, 0x6, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0x3, 0x0, 0x0, 0x1, 0xff, 0x0, 0x0,
0x0, 0x1, 0x80, 0x0, 0x7, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xc0, 0x0, 0xf, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x60, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x30, 0x0, 0x7c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x18, 0x0, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3c, 0x1, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xfe, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0x83, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xc3, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe3, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xf1, 0xd8, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xf9, 0xcc, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xfd, 0xe6, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xfe, 0xe3, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0x71, 0x87, 0x80, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xf0, 0xc7, 0xe0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xf8, 0x63, 0xf0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xfc, 0x31, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3e, 0x18, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xc, 0x3c, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x86, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0xe3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x71, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xbc, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x63, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x3f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x30,
0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xfc, 0x38,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x1c,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x1c,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x8e,
0x0, 0x0, 0x0, 0xfc, 0x70, 0xff, 0xff, 0xce,
0x0, 0x0, 0x0, 0x6e, 0x10, 0x7f, 0xff, 0xe7,
0xff, 0xff, 0xff, 0xf3, 0x80, 0x60, 0x0, 0x1,
0xff, 0xff, 0xff, 0xf1, 0xe0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x78, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0,
/* U+1F686 "🚆" */
0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xe0, 0x0,
0x1f, 0xfc, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x7e,
0x0, 0x60, 0x0, 0x0, 0x0, 0x3, 0x0, 0x30,
0x0, 0x0, 0x0, 0x1, 0x80, 0x18, 0x0, 0x0,
0x0, 0x0, 0xc0, 0xc, 0x0, 0x0, 0x0, 0x0,
0x60, 0x6, 0x3, 0xfe, 0x1f, 0xf8, 0x30, 0x3,
0x1, 0xff, 0xf, 0xfc, 0x18, 0x1, 0x81, 0xff,
0x87, 0xfe, 0xc, 0x0, 0xc0, 0xff, 0xc3, 0xff,
0x6, 0x0, 0x60, 0x7f, 0xe1, 0xff, 0x83, 0x0,
0x30, 0x3f, 0xf0, 0xff, 0xc1, 0x80, 0x18, 0x1f,
0xf8, 0x7f, 0xe0, 0xc0, 0xc, 0xf, 0xfc, 0x3f,
0xf0, 0x60, 0x6, 0x0, 0x0, 0x0, 0x0, 0x30,
0x3, 0x0, 0x0, 0x0, 0x0, 0x18, 0x1, 0x80,
0x0, 0x0, 0x0, 0xc, 0x0, 0xc0, 0x38, 0x0,
0xc, 0x6, 0x0, 0x60, 0x3c, 0x0, 0xf, 0x3,
0x0, 0x30, 0x1e, 0x0, 0x7, 0x81, 0x80, 0x18,
0x7, 0x0, 0x1, 0x80, 0xc0, 0xc, 0x0, 0x0,
0x0, 0x0, 0x60, 0x6, 0x0, 0x0, 0x0, 0x0,
0x30, 0x3, 0xf0, 0x0, 0x0, 0x1, 0xf8, 0x1,
0xff, 0xc0, 0x0, 0xf, 0xfc, 0x0, 0xdf, 0xff,
0x0, 0xff, 0xf6, 0x0, 0x60, 0x7f, 0xff, 0xff,
0x3, 0x0, 0x30, 0x1, 0xff, 0xf0, 0x1, 0x80,
0x18, 0x0, 0x7, 0x0, 0x0, 0xc0, 0xc, 0x3c,
0x0, 0x0, 0x3c, 0x60, 0x6, 0x3f, 0x0, 0x0,
0x1e, 0x30, 0x3, 0x1f, 0x80, 0x0, 0x1f, 0x98,
0x1, 0x8f, 0xc0, 0x0, 0x7, 0x8c, 0x0, 0xc3,
0xc0, 0x0, 0x3, 0xc6, 0x0, 0x60, 0x0, 0x0,
0x0, 0x3, 0x0, 0x30, 0x0, 0x0, 0x0, 0x1,
0x80, 0x18, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xc,
0x0, 0x0, 0x0, 0x0, 0x60, 0x7, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x60, 0x0,
0x0, 0x0, 0x3, 0x0, 0x30, 0x0, 0x0, 0x0,
0x1, 0x80, 0x18, 0x0, 0x0, 0x0, 0x0, 0xc0,
0xc, 0x0, 0x0, 0x0, 0x0, 0x60, 0x6, 0x0,
0x0, 0x0, 0x0, 0x30, 0x3, 0x0, 0x0, 0x0,
0x0, 0x18, 0x1, 0x80, 0x0, 0x0, 0x0, 0xc,
0x0, 0xf8, 0x0, 0x0, 0x0, 0x3e, 0x0, 0x1f,
0xff, 0xf7, 0xff, 0xfc, 0x0, 0xf, 0x1f, 0xff,
0xff, 0xe, 0x0, 0xf, 0x7, 0xff, 0xff, 0x87,
0x80, 0xf, 0x83, 0xff, 0xff, 0xc1, 0xe0, 0x7,
0x81, 0xff, 0xff, 0xf0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xf0, 0x7f, 0xff, 0xff, 0x83, 0xc1, 0xf0, 0x3f,
0xff, 0xff, 0xc1, 0xf1, 0xf8, 0x1f, 0xff, 0xff,
0xe0, 0xfc, 0xf8, 0x1f, 0xff, 0xff, 0xf8, 0x3e,
0x7c, 0xf, 0xff, 0xff, 0xfc, 0x1f, 0x0,
/* U+1F687 "🚇" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0xff, 0xc0,
0x0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0xf, 0xf0,
0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x1, 0xfe,
0x0, 0x0, 0x3f, 0x81, 0xc7, 0xfc, 0x38, 0x3f,
0x80, 0x0, 0x3f, 0x87, 0xe6, 0x3a, 0x1f, 0xf,
0xe0, 0x0, 0x1f, 0xc7, 0xf1, 0x1d, 0xf, 0xc7,
0xf0, 0x0, 0x1f, 0xc7, 0x98, 0xff, 0x86, 0x71,
0xfc, 0x0, 0x1f, 0xe3, 0xc, 0x0, 0x3, 0x18,
0xff, 0x0, 0x1f, 0xe3, 0x86, 0x0, 0x1, 0x8e,
0x3f, 0xc0, 0xf, 0xf1, 0x83, 0x0, 0x0, 0xc3,
0x1f, 0xe0, 0xf, 0xf8, 0xc1, 0x80, 0x0, 0x61,
0x8f, 0xf8, 0x7, 0xfc, 0x60, 0xcf, 0xfc, 0x30,
0xc7, 0xfc, 0x7, 0xfe, 0x30, 0x67, 0xfe, 0x18,
0x63, 0xff, 0x3, 0xff, 0x18, 0x33, 0x1, 0xc,
0x31, 0xff, 0x83, 0xff, 0x8c, 0x19, 0x80, 0x86,
0x18, 0xff, 0xe1, 0xff, 0xc6, 0xc, 0xc0, 0x43,
0xc, 0x7f, 0xf1, 0xff, 0xe3, 0x6, 0x60, 0x21,
0x86, 0x3f, 0xfc, 0xff, 0xf1, 0x83, 0x30, 0x10,
0xc3, 0x1f, 0xfe, 0x7f, 0xf8, 0xc1, 0x98, 0x8,
0x61, 0x8f, 0xff, 0x3f, 0xfc, 0x60, 0xcc, 0x4,
0x30, 0xc7, 0xff, 0xbf, 0xfe, 0x30, 0x66, 0x2,
0x18, 0x63, 0xff, 0xff, 0xff, 0x18, 0x33, 0x1,
0xc, 0x31, 0xff, 0xff, 0xff, 0x8c, 0x19, 0x80,
0x86, 0x18, 0xff, 0xff, 0xff, 0xc6, 0xc, 0xc0,
0x43, 0xc, 0x7f, 0xff, 0xff, 0xe3, 0x6, 0x60,
0x21, 0x86, 0x3f, 0xff, 0xff, 0xf1, 0x83, 0x30,
0x10, 0xc3, 0x1f, 0xff, 0xff, 0xf8, 0xff, 0x9f,
0xf8, 0x7f, 0x8f, 0xff, 0xff, 0xfc, 0x7f, 0xcf,
0xfc, 0x3f, 0xc7, 0xff, 0xff, 0xfe, 0x0, 0x7,
0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, 0x0, 0x3,
0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0x83, 0x81,
0xff, 0x80, 0x60, 0xff, 0xff, 0xff, 0xc3, 0xc0,
0xff, 0xc0, 0x78, 0x7f, 0xfd, 0xff, 0xe1, 0xe0,
0x7f, 0xe0, 0x3c, 0x3f, 0xfc, 0xff, 0xf0, 0x70,
0x3f, 0xf0, 0xc, 0x1f, 0xfe, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x8f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0x87, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xe0,
0x0, 0xff, 0xe0, 0x0, 0xff, 0xe0, 0x7f, 0xf0,
0x0, 0x7f, 0xf0, 0x0, 0x7f, 0xe0, 0x1f, 0xf8,
0x0, 0x3f, 0xf8, 0x0, 0x3f, 0xf0, 0x7, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xf0, 0x3, 0xfe,
0x0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0xff,
0x80, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7,
0xff, 0x3f, 0xff, 0xff, 0x9f, 0xfc, 0x0, 0x1,
0xff, 0x0, 0xff, 0xf8, 0x7, 0xfc, 0x0, 0x0,
0x7e, 0x0, 0xff, 0xfe, 0x0, 0xfc, 0x0, 0x0,
0xe, 0x0, 0xff, 0xff, 0x80, 0x38, 0x0, 0x0,
0x2, 0x0, 0xff, 0xff, 0xe0, 0x8, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F688 "🚈" */
0x0, 0x0, 0x0, 0x3, 0xf8, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x3, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0x3, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x3, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xe, 0x3, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x7, 0x1, 0xe0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x3, 0x81, 0xe0, 0x7f, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc1, 0xe0, 0x7f, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0x80, 0x3f,
0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0x80, 0x7f,
0xff, 0xff, 0xff, 0xf8, 0x70, 0x3, 0xc0, 0x79,
0xc0, 0x1, 0xc0, 0x1c, 0x38, 0x3, 0xc0, 0x70,
0xe0, 0x0, 0xe0, 0xe, 0x3c, 0x1, 0xc0, 0x70,
0x70, 0x0, 0x70, 0x7, 0x1c, 0x1, 0xe0, 0x70,
0x38, 0x0, 0x38, 0x3, 0x8e, 0x0, 0xe0, 0x38,
0x1c, 0x0, 0x1c, 0x1, 0xc7, 0x0, 0xf0, 0x38,
0xe, 0x0, 0xe, 0x0, 0xe7, 0x0, 0x70, 0x38,
0x7, 0x0, 0x7, 0x0, 0x73, 0x80, 0x78, 0x1c,
0x3, 0x80, 0x3, 0x80, 0x39, 0xc0, 0x38, 0x1c,
0x1, 0xc0, 0x1, 0xc0, 0x1c, 0xe0, 0x3c, 0xe,
0x0, 0xe0, 0x0, 0xe0, 0xe, 0x70, 0x1c, 0x7,
0x0, 0x70, 0x0, 0x70, 0x7, 0x38, 0x1e, 0x3,
0x80, 0x38, 0x0, 0x38, 0x3, 0xb8, 0x1e, 0x1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x1f, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xee, 0x3f, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, 0xf7, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xf3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xf9, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x7f, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xbf, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xdf, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x73, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x73,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80,
/* U+1F689 "🚉" */
0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1b, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x18, 0xc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff,
0xc0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xfe, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x1f, 0xfe, 0x3f, 0xfe,
0x1c, 0x3f, 0x0, 0x0, 0x0, 0x7, 0xf1, 0xff,
0xf0, 0xe0, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xc,
0x1, 0xff, 0x7, 0x0, 0x0, 0x0, 0x0, 0x38,
0x60, 0xf, 0xf8, 0x38, 0x0, 0xff, 0xe0, 0x1,
0xc3, 0x0, 0x7f, 0xc1, 0xc0, 0xff, 0xff, 0xfc,
0xe, 0x18, 0x3, 0xe, 0xe, 0x1f, 0xff, 0xff,
0xf8, 0x70, 0xff, 0xf8, 0x70, 0x70, 0xfc, 0xc,
0xf, 0xc3, 0x87, 0xff, 0xc3, 0x83, 0x86, 0x0,
0x60, 0x6, 0x1c, 0x30, 0x6, 0x1c, 0x1c, 0x30,
0x3, 0x0, 0x30, 0xe1, 0x80, 0x3f, 0xe0, 0xe1,
0x80, 0x18, 0x1, 0x87, 0xc, 0x1, 0xff, 0x7,
0xc, 0x0, 0xc0, 0xc, 0x38, 0x60, 0xf, 0xf8,
0x38, 0x60, 0x6, 0x0, 0x61, 0xc3, 0xff, 0xe1,
0xc1, 0xc3, 0x0, 0x30, 0x3, 0xe, 0x1f, 0xff,
0xe, 0xe, 0x18, 0x1, 0x80, 0x18, 0x70, 0x0,
0x0, 0x70, 0x70, 0xc0, 0xc, 0x0, 0xc3, 0x80,
0x0, 0x3, 0x83, 0x86, 0x0, 0x60, 0x6, 0x1c,
0x0, 0x0, 0x1c, 0x1c, 0x3e, 0x73, 0x3c, 0xf0,
0xe0, 0x0, 0x0, 0xe0, 0xe1, 0xf7, 0x99, 0xef,
0x87, 0x0, 0x0, 0x7, 0x7, 0xf, 0xfc, 0xcf,
0xfc, 0x38, 0x0, 0x0, 0x38, 0x38, 0x7f, 0xf6,
0x7f, 0xe1, 0xc0, 0x0, 0x1, 0xc1, 0xc3, 0xff,
0xf7, 0xff, 0xe, 0x0, 0x0, 0xe, 0xe, 0x1f,
0xff, 0xff, 0xf8, 0x70, 0x0, 0x0, 0x70, 0x70,
0x0, 0x4f, 0xc0, 0x3, 0x80, 0x0, 0x3, 0x83,
0x80, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x1c,
0x1c, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0,
0xe0, 0xe0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x7, 0x7, 0x1, 0x0, 0x0, 0x20, 0x38, 0x0,
0x0, 0x38, 0x38, 0x1e, 0x0, 0x3, 0x81, 0xc0,
0x0, 0x1, 0xc1, 0xc1, 0xf0, 0x0, 0x3e, 0xe,
0x0, 0x0, 0xe, 0xe, 0xf, 0x80, 0x1, 0xf0,
0x70, 0x0, 0x0, 0x7f, 0xf0, 0x3c, 0x0, 0xf,
0x83, 0xff, 0xff, 0xff, 0xff, 0x81, 0xc0, 0x0,
0x38, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xfe, 0x0, 0x0, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x3, 0xfc, 0x0, 0x7, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x3f, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x73, 0xf0, 0x1, 0xff,
0x80, 0x0, 0x0, 0x0, 0x7, 0x87, 0xe0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xe0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1f,
0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x1f, 0x9f, 0xfe, 0xf9, 0xff, 0xfc, 0x7d, 0xff,
0x80, 0x3f, 0xff, 0xf7, 0xcf, 0xff, 0xf3, 0xef,
0xfe, 0x0, 0x7f, 0xff, 0xbe, 0x7f, 0xff, 0x9f,
0x3f, 0xfc, 0x0, 0xff, 0xf9, 0xf3, 0xff, 0xfc,
0xf9, 0xff, 0xf8, 0x1, 0xff, 0xcf, 0x9f, 0xff,
0xf7, 0xc7, 0xff, 0xe0, 0xf, 0xfe, 0x1, 0xff,
0xff, 0x80, 0x3f, 0xff, 0xc0, 0x7f, 0xe0, 0xf,
0xff, 0xfc, 0x0, 0xff, 0xff, 0x83, 0xff, 0x0,
0x7f, 0xff, 0xe0, 0x7, 0xff, 0xfe, 0x1f, 0xf8,
0x3, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xfc, 0xff,
0xc0, 0x1f, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xf7,
0xfc, 0x0, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff,
0xf8,
/* U+1F68A "🚊" */
0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6, 0xc0, 0x68, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x80, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf8, 0xf, 0xff, 0x80, 0x0, 0x0,
0x3, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x0, 0x0,
0x1f, 0xff, 0xc0, 0x1f, 0xff, 0x80, 0x0, 0x0,
0x3f, 0xff, 0xc0, 0x7f, 0xff, 0x80, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7,
0xff, 0xc0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0xf,
0xe0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0xc,
0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x18,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x30,
0x0, 0x7f, 0xe0, 0x0, 0xe0, 0x0, 0x0, 0x61,
0xff, 0xff, 0xff, 0xe1, 0xc0, 0x0, 0x0, 0xc3,
0xff, 0xff, 0xff, 0xc3, 0x80, 0x0, 0x1, 0x87,
0x80, 0x10, 0x7, 0x87, 0x0, 0x0, 0x3, 0xe,
0x0, 0x20, 0x7, 0xe, 0x0, 0x0, 0x6, 0x1c,
0x0, 0x40, 0xe, 0x1c, 0x0, 0x0, 0xc, 0x38,
0x0, 0x80, 0x1c, 0x38, 0x0, 0x0, 0x18, 0x70,
0x1, 0x0, 0x38, 0x70, 0x0, 0x0, 0x30, 0xe0,
0x2, 0x0, 0x70, 0xe0, 0x0, 0x0, 0x61, 0xc0,
0x4, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0xc3, 0x80,
0x8, 0x1, 0xc3, 0x80, 0x0, 0x1, 0x87, 0x0,
0x10, 0x3, 0x87, 0x0, 0x0, 0x3, 0xe, 0x0,
0x20, 0x7, 0xe, 0x0, 0x0, 0x6, 0x1f, 0x9e,
0x4f, 0x3e, 0x1c, 0x0, 0x0, 0xc, 0x3f, 0xfc,
0x9f, 0xfc, 0x38, 0x0, 0x0, 0x18, 0x7f, 0xf9,
0x3f, 0xf8, 0x70, 0x0, 0x0, 0x30, 0xff, 0xf2,
0x7f, 0xf0, 0xe0, 0x0, 0x0, 0x61, 0xff, 0xff,
0xff, 0xe1, 0xc0, 0x0, 0x0, 0xc3, 0xff, 0xff,
0xff, 0x83, 0x80, 0x0, 0x1, 0x80, 0x3, 0xff,
0x80, 0x7, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x0, 0x6, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0,
0x0, 0x38, 0x0, 0x0, 0x18, 0x6, 0x0, 0x0,
0xc0, 0x70, 0x0, 0x0, 0x30, 0x3e, 0x0, 0x3,
0xc0, 0xe0, 0x0, 0x0, 0x60, 0x7e, 0x0, 0xf,
0x81, 0xc0, 0x0, 0x0, 0xc0, 0xfc, 0x0, 0x1f,
0x3, 0x80, 0x0, 0x1, 0x81, 0xf0, 0x0, 0x1e,
0x7, 0x0, 0x0, 0x3, 0x1, 0xc0, 0x0, 0x18,
0xe, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0x0,
0xf0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfe, 0x3f, 0xfe,
0x0, 0x1, 0xff, 0xf8, 0xff, 0xfc, 0x7f, 0xfe,
0x0, 0x7, 0xff, 0xf1, 0xff, 0xfc, 0xfd, 0xfe,
0x0, 0xf, 0xf7, 0xe3, 0xff, 0xf9, 0xfb, 0xfe,
0x0, 0x3f, 0xe0, 0x7, 0xff, 0xf0, 0x3, 0xfe,
0x0, 0xff, 0x80, 0x1f, 0xff, 0xe0, 0x7, 0xfe,
0x3, 0xff, 0x0, 0x3f, 0xff, 0xe0, 0x7, 0xfe,
0xf, 0xfc, 0x0, 0x7f, 0xff, 0xc0, 0xf, 0xfe,
0x3f, 0xf8, 0x1, 0xff, 0xff, 0x80, 0xf, 0xfc,
0xff, 0xf0, 0x3, 0xff, 0xff, 0x0, 0x1f, 0xfc,
/* U+1F68B "🚋" */
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0xc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1e, 0x7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x87, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xe7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0xe0, 0x0, 0x7, 0xff,
0xff, 0x80, 0x0, 0x1c, 0x70, 0x0, 0x7, 0xff,
0xff, 0xe0, 0x0, 0xe, 0x38, 0x0, 0x3, 0x0,
0xc0, 0x18, 0x0, 0x7, 0x1c, 0x3f, 0xc1, 0x80,
0x60, 0xc, 0x1f, 0xc3, 0x8e, 0x1f, 0xe0, 0xc0,
0x30, 0x6, 0xf, 0xe1, 0xc7, 0xc, 0x30, 0x60,
0x18, 0x3, 0x6, 0x30, 0xe3, 0x86, 0x18, 0x30,
0xc, 0x1, 0x83, 0x18, 0x71, 0xc3, 0xc, 0x19,
0xe6, 0x3c, 0xc1, 0x8c, 0x38, 0xe1, 0x86, 0xc,
0xf3, 0x1e, 0x60, 0xc6, 0x1c, 0x70, 0xc3, 0x6,
0x79, 0x8f, 0x30, 0x63, 0xe, 0x38, 0x7f, 0x83,
0x3c, 0xc7, 0x98, 0x3f, 0x87, 0x1c, 0x0, 0x1,
0x9e, 0x63, 0xcc, 0x0, 0x3, 0x8e, 0x0, 0x0,
0xcf, 0x31, 0xe6, 0x0, 0x1, 0xc7, 0x0, 0x0,
0x67, 0x98, 0xf3, 0x0, 0x0, 0xe3, 0x80, 0x0,
0x30, 0xc, 0x1, 0x80, 0x0, 0x71, 0xc0, 0x0,
0x18, 0x6, 0x0, 0xc0, 0x0, 0x38, 0xe0, 0x0,
0xc, 0x3, 0x0, 0x60, 0x0, 0x1c, 0x70, 0x0,
0x6, 0x1, 0x80, 0x30, 0x0, 0xe, 0x38, 0x0,
0x3, 0x0, 0xc0, 0x18, 0x0, 0x7, 0x1c, 0x0,
0x1, 0x80, 0x60, 0xc, 0x0, 0x3, 0x8e, 0x0,
0x0, 0xc0, 0x30, 0x6, 0x0, 0x1, 0xc7, 0x0,
0x0, 0x60, 0x18, 0x3, 0x0, 0x0, 0xe3, 0x80,
0x0, 0x30, 0xc, 0x1, 0x80, 0x0, 0x71, 0xc0,
0x0, 0x18, 0x6, 0x0, 0xc0, 0x0, 0x39, 0xe0,
0x0, 0xc, 0x3, 0x0, 0x60, 0x0, 0x1e, 0xe0,
0x0, 0x6, 0x1, 0x80, 0x30, 0x0, 0x7, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1c, 0x1c, 0x3f, 0xff, 0xfe, 0x1c, 0x18, 0x0,
0xe, 0x1c, 0x1f, 0xff, 0xfe, 0xe, 0x1c, 0x0,
0x3, 0x8e, 0x7, 0xff, 0xff, 0x3, 0x8c, 0x0,
0x1, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0,
0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0,
0x0,
/* U+1F68C "🚌" */
0x0, 0x0, 0x0, 0x7, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x81, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe1,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc3, 0xe0, 0x7, 0xff, 0x0,
0x0, 0xe0, 0x0, 0x7, 0xe3, 0xe0, 0x3, 0x83,
0x80, 0x0, 0x70, 0x0, 0x3, 0xf1, 0xf0, 0x1,
0xc1, 0xc0, 0x0, 0x38, 0x0, 0x1, 0xf8, 0xf0,
0x0, 0xe0, 0xe0, 0x0, 0x1c, 0x0, 0x0, 0xfc,
0x78, 0x0, 0x70, 0x70, 0x0, 0xe, 0x0, 0x0,
0x7e, 0x3c, 0x0, 0x38, 0x38, 0x0, 0x7, 0x0,
0x0, 0x3f, 0x3e, 0x0, 0x1c, 0x1c, 0x0, 0x3,
0x80, 0x0, 0x1f, 0x9f, 0x0, 0xe, 0xe, 0x0,
0x1, 0xc0, 0x0, 0xf, 0xcf, 0x80, 0x7, 0x7,
0x0, 0x0, 0xe0, 0x0, 0x7, 0xe7, 0xc0, 0x3,
0x83, 0x80, 0x0, 0x70, 0x0, 0x3, 0xf3, 0xc0,
0x1, 0xc1, 0xc0, 0x0, 0x38, 0x0, 0x1, 0xf9,
0xe0, 0x0, 0xe0, 0xe0, 0x0, 0x1c, 0x0, 0x0,
0xfc, 0xf0, 0x0, 0x70, 0x70, 0x0, 0xe, 0x0,
0x0, 0x7e, 0x78, 0x0, 0x38, 0x38, 0x0, 0x7,
0x0, 0x0, 0x3f, 0x3c, 0x0, 0x1c, 0x1c, 0x0,
0x3, 0x80, 0x0, 0x1f, 0x9f, 0x0, 0xe, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0x80, 0x7,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xff,
0xff, 0x83, 0x80, 0x0, 0x0, 0x0, 0x0, 0x73,
0xff, 0xff, 0xc1, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x39, 0x80, 0x0, 0xe0, 0xe0, 0x0, 0x0, 0x0,
0x1e, 0x1c, 0xe0, 0x0, 0x70, 0x70, 0x0, 0x0,
0x0, 0x0, 0xe, 0x7c, 0x0, 0x38, 0x38, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x6e, 0x0, 0x1c, 0x1c,
0x0, 0x0, 0x0, 0x3, 0xcf, 0xb3, 0x0, 0xe,
0xe, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf9, 0x80,
0x7, 0x7, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf8,
0xc0, 0x3, 0x83, 0x80, 0x0, 0x0, 0x0, 0x79,
0xfc, 0x60, 0x1, 0xc1, 0xc0, 0x0, 0x0, 0x0,
0x3c, 0xff, 0xf0, 0xf8, 0xff, 0xe0, 0x0, 0x0,
0x1f, 0x0, 0x7f, 0xf9, 0xff, 0x7f, 0xf0, 0x0,
0x0, 0x3f, 0xe0, 0xf, 0x81, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x3f, 0xf8, 0x7, 0xc0, 0xf1, 0xff,
0xfc, 0x0, 0x0, 0x1e, 0x3c, 0x3, 0xf0, 0xf0,
0x7f, 0xfe, 0x0, 0x0, 0x1e, 0xf, 0x3, 0xff,
0xf0, 0x3f, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff,
0xcf, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff, 0x1,
0xff, 0xc0, 0x1c, 0xf, 0x0, 0x0, 0x0, 0x3,
0x80, 0xe0, 0x0, 0xf, 0x7, 0x80, 0x0, 0x0,
0x1, 0xe0, 0xf0, 0x0, 0x3, 0xc7, 0x80, 0x0,
0x0, 0x0, 0x78, 0xf0, 0x0, 0x1, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0,
0xf, 0x80, 0x0, 0x0, 0x0, 0x1, 0xf0, 0x0,
0x0,
/* U+1F68D "🚍" */
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x78,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0xe, 0x1, 0xff, 0xff, 0xff, 0xff,
0x80, 0x70, 0x0, 0x1c, 0x7, 0xff, 0xff, 0xff,
0xff, 0xc0, 0xe0, 0x0, 0x38, 0x1f, 0xff, 0xff,
0xff, 0xff, 0x81, 0xc0, 0x3, 0xf0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0x3, 0x80, 0xf, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x39, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x63,
0x83, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1c, 0x1,
0xc7, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x38,
0x7, 0xce, 0xe, 0x0, 0xe0, 0x7, 0x0, 0x38,
0x70, 0xf, 0x9c, 0x1c, 0x1, 0xc0, 0xe, 0x0,
0x70, 0xe0, 0x1f, 0x38, 0x38, 0x3, 0x80, 0x1c,
0x0, 0xe1, 0xc0, 0x3e, 0x70, 0x70, 0x7, 0x0,
0x38, 0x1, 0xc3, 0x80, 0x7c, 0xe0, 0xe0, 0xe,
0x0, 0x70, 0x3, 0x87, 0x0, 0xf9, 0xc1, 0xc0,
0x1c, 0x0, 0xe0, 0x7, 0xe, 0x1, 0xf3, 0x83,
0x80, 0x38, 0x1, 0xc0, 0xe, 0x1c, 0x1, 0xc7,
0x7, 0x0, 0x70, 0x3, 0x80, 0x1c, 0x38, 0x70,
0xe, 0xe, 0x0, 0xe0, 0x7, 0x1e, 0x38, 0x71,
0xf0, 0x1c, 0x1c, 0x1, 0xc0, 0xe, 0x3c, 0x70,
0xe3, 0xe0, 0x38, 0x38, 0x3, 0x80, 0x1c, 0x78,
0xe1, 0xc7, 0xc0, 0x70, 0x70, 0x7, 0x0, 0x38,
0xf1, 0xc3, 0x8f, 0x80, 0xe0, 0xe0, 0xe, 0x0,
0x7f, 0xff, 0x87, 0x1f, 0x1, 0xc1, 0xc0, 0x1c,
0x0, 0xff, 0xff, 0xe, 0x3e, 0x3, 0x83, 0x80,
0x38, 0x1, 0xff, 0xfe, 0x1c, 0x7c, 0x7, 0x7,
0x0, 0x70, 0x3, 0xff, 0xfc, 0x38, 0xf8, 0xe,
0xf, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x70, 0xe0,
0x1c, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xe1,
0x80, 0x38, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc1,
0xc7, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xfc, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x1, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x7, 0x1, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x38, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0,
0x0, 0x71, 0xc3, 0x80, 0x0, 0x0, 0x70, 0xe3,
0x80, 0x0, 0xe7, 0xcf, 0x80, 0x0, 0x0, 0xf1,
0xe7, 0x0, 0x1, 0xcf, 0x9f, 0x0, 0x0, 0x3,
0xe3, 0xce, 0x0, 0x3, 0x9f, 0x3e, 0x0, 0x0,
0x3, 0xc7, 0x9c, 0x0, 0x7, 0x0, 0x38, 0x0,
0x0, 0x7, 0x0, 0x38, 0x0, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xfe,
0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x3,
0xfc, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0,
0x7, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0,
0x0, 0x7, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0x80,
0x0,
/* U+1F68E "🚎" */
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x7,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x1,
0xff, 0xff, 0x0, 0x0, 0x0, 0x3, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xe0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f,
0xe0, 0xe, 0x0, 0xe0, 0x7, 0x0, 0x7f, 0xc7,
0xf0, 0x3, 0x80, 0x38, 0x1, 0xc0, 0x1f, 0xf1,
0xfc, 0x0, 0xe0, 0xe, 0x0, 0x70, 0x7, 0xfc,
0x7f, 0x0, 0x38, 0x3, 0x80, 0x1c, 0x1, 0xff,
0x1f, 0xc0, 0xe, 0x0, 0xe0, 0x7, 0x0, 0x7f,
0xc7, 0xe0, 0x3, 0x80, 0x38, 0x1, 0xc0, 0x1f,
0xf1, 0xf8, 0x0, 0xe0, 0xe, 0x0, 0x70, 0x7,
0xfc, 0xfe, 0x0, 0x38, 0x3, 0x80, 0x1c, 0x1,
0xfc, 0x3f, 0x80, 0xe, 0x0, 0xe0, 0x7, 0x0,
0x7f, 0xf, 0xe0, 0x3, 0x80, 0x38, 0x1, 0xc0,
0x1f, 0xc3, 0xf8, 0x0, 0xe0, 0xe, 0x0, 0x70,
0x7, 0xf0, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc3, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x70, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x70, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0x1c, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc7, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x7f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x18, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x71, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xce, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x7, 0xc0, 0x73, 0x83, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xf8, 0x1c, 0xe1, 0xff,
0x80, 0x0, 0x0, 0x3, 0xff, 0x7, 0x38, 0xf0,
0xe0, 0x0, 0x0, 0x0, 0xe3, 0xc1, 0xce, 0x38,
0x1c, 0x0, 0x0, 0x0, 0x30, 0x78, 0x71, 0xfe,
0x7, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xf8, 0x3f,
0x81, 0xff, 0xff, 0xff, 0xff, 0x3, 0xfc, 0x0,
0xe0, 0x70, 0x0, 0x0, 0x0, 0xc1, 0xe0, 0x0,
0x1c, 0x38, 0x0, 0x0, 0x0, 0x38, 0xf0, 0x0,
0x7, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0,
0x0, 0xff, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0,
/* U+1F68F "🚏" */
0x0, 0x0, 0x0, 0x7c, 0x0, 0x3f, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x3f, 0xfe, 0x0, 0x0,
0x0, 0x1, 0xf0, 0xf, 0x81, 0xf0, 0x7f, 0xff,
0xfc, 0x3e, 0x3, 0x80, 0xf, 0xf, 0xff, 0xff,
0x87, 0xc0, 0xe0, 0x0, 0xf1, 0xc0, 0x0, 0x30,
0xf8, 0x38, 0x0, 0xf, 0x38, 0x0, 0x6, 0x1f,
0xe, 0xf, 0xe0, 0xe7, 0x0, 0x0, 0xc3, 0xe1,
0xc7, 0xff, 0xe, 0xe0, 0x0, 0x18, 0x7c, 0x70,
0x80, 0x21, 0xdf, 0xff, 0xff, 0xf, 0x8e, 0x10,
0x4, 0x1f, 0xff, 0xff, 0xe1, 0xf1, 0xc2, 0x0,
0x83, 0xf0, 0x0, 0xf, 0xff, 0xf0, 0x60, 0x30,
0x7e, 0x0, 0x1, 0xff, 0xfe, 0xf, 0xfe, 0xf,
0xc0, 0x0, 0x3f, 0xff, 0xc1, 0x3e, 0x41, 0xff,
0xff, 0xfe, 0x1f, 0x1c, 0x23, 0x88, 0x3f, 0xff,
0xff, 0xc3, 0xe3, 0x84, 0x71, 0x7, 0xff, 0xff,
0xf8, 0x7c, 0x70, 0xff, 0xe1, 0xdc, 0x0, 0x3,
0xf, 0x87, 0x18, 0xc, 0x3b, 0x80, 0x0, 0x61,
0xf0, 0xe3, 0x1, 0x8e, 0x70, 0x0, 0xc, 0x3e,
0xe, 0x0, 0x3, 0xce, 0x0, 0x1, 0x87, 0xc0,
0xe0, 0x0, 0xf1, 0xff, 0xff, 0xf0, 0xf8, 0xe,
0x0, 0x3c, 0x3f, 0xff, 0xfe, 0x1f, 0x0, 0xf8,
0x1f, 0x0, 0x0, 0x0, 0x3, 0xe0, 0xf, 0xff,
0x80, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x3f, 0xc0,
0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x38,
0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x78, 0xf1,
0xc0, 0x0, 0x0, 0x0, 0x3, 0x8f, 0x1e, 0x38,
0x0, 0x0, 0x0, 0x0, 0x71, 0xe3, 0xc7, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x38, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0xe3, 0xc7, 0x8e, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x78, 0xf1, 0xc0, 0x0, 0x0, 0x0, 0x3,
0x8f, 0x1e, 0x38, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x38, 0xf1, 0xe3,
0x80, 0x0, 0x0, 0x0, 0x7, 0x1e, 0x3c, 0x70,
0x0, 0x0, 0x0, 0x0, 0xe3, 0xc7, 0x8e, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x3, 0x80, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x7, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x0, 0x0,
/* U+1F690 "🚐" */
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x80, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x18, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x0,
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0xe, 0x7, 0xfc,
0x7f, 0xff, 0xff, 0xc0, 0x60, 0x0, 0x0, 0xe0,
0xff, 0xc7, 0xff, 0xff, 0xfe, 0x6, 0x0, 0x0,
0x1c, 0xe, 0xc, 0x60, 0x0, 0x0, 0x60, 0x60,
0x0, 0x1, 0xc1, 0xc0, 0xc6, 0x0, 0x0, 0x6,
0x7, 0x0, 0x0, 0x38, 0x38, 0xc, 0x60, 0x0,
0x0, 0x70, 0x70, 0x0, 0x3, 0x83, 0x80, 0xc6,
0x0, 0x0, 0x7, 0x3, 0x0, 0x0, 0x70, 0x70,
0xc, 0x60, 0x0, 0x0, 0x70, 0x30, 0x0, 0x7,
0x7, 0x0, 0xc6, 0x0, 0x0, 0x3, 0x3, 0x0,
0x0, 0xe0, 0xe0, 0xc, 0x60, 0x0, 0x0, 0x30,
0x38, 0x0, 0xe, 0xe, 0x0, 0xc6, 0x0, 0x0,
0x3, 0x83, 0x80, 0x1, 0xc1, 0xc0, 0xc, 0x60,
0x0, 0x0, 0x38, 0x18, 0x0, 0x38, 0x1c, 0x0,
0xc6, 0x0, 0x0, 0x3, 0x81, 0x80, 0x3, 0x83,
0xff, 0xfc, 0x7f, 0xff, 0xff, 0xf8, 0x18, 0x3,
0xf0, 0x3f, 0xff, 0xc7, 0xff, 0xff, 0xff, 0x81,
0xc0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0x30, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc7, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7e, 0x7f, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xe6, 0x6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xce, 0xe0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0xee,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x86, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x6c, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x86, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x6f, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x86, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18,
0x7f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xc7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xf, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff,
0xff, 0xc0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x80,
0xff, 0xef, 0xf8, 0x3, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x7, 0xfe, 0x7f, 0x80, 0x3f, 0xff, 0xff,
0xff, 0xff, 0x0, 0x7f, 0x80, 0x38, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x70, 0x7, 0x0, 0x3, 0x80,
0x38, 0x0, 0x0, 0x0, 0x7, 0x0, 0x70, 0x0,
0x1c, 0x7, 0x80, 0x0, 0x0, 0x0, 0x78, 0xe,
0x0, 0x1, 0xe0, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xc1, 0xe0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x7f, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x1, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0,
/* U+1F691 "🚑" */
0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x23, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x63,
0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x9c, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x47, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3,
0x9c, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x38, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xe,
0x0, 0x0, 0x1, 0xc7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x70, 0x0, 0x0, 0xe, 0x38, 0x0, 0x0,
0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x38, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x0, 0x1, 0xc0, 0xff,
0xf8, 0x0, 0xf, 0x0, 0x6, 0x0, 0x0, 0xe,
0xf, 0xff, 0xc0, 0x0, 0x78, 0x0, 0x38, 0x0,
0x0, 0xe0, 0xe0, 0x6, 0x0, 0x43, 0xc2, 0x1,
0xc0, 0x0, 0xf, 0xe, 0x0, 0x30, 0x7, 0x9e,
0x78, 0xe, 0x0, 0x0, 0x70, 0x70, 0x1, 0x80,
0x3f, 0xf7, 0xc0, 0x70, 0x0, 0x7, 0x7, 0x0,
0xc, 0x1, 0xff, 0xff, 0x1, 0x80, 0x0, 0x38,
0x38, 0x0, 0x60, 0x7, 0xff, 0xe0, 0xe, 0x0,
0x3, 0x83, 0x80, 0x3, 0x0, 0xf, 0xfc, 0x0,
0x70, 0x0, 0x1c, 0x3c, 0x0, 0x18, 0x0, 0x3f,
0xc0, 0x3, 0x80, 0x1, 0xc1, 0xc0, 0x0, 0xc0,
0x7, 0xff, 0x80, 0x1c, 0x0, 0x1e, 0x1e, 0x0,
0x6, 0x0, 0x7f, 0xff, 0x0, 0xe0, 0x0, 0xe0,
0xe0, 0x0, 0x30, 0xf, 0xff, 0xfc, 0x7, 0x0,
0xe, 0xf, 0xff, 0xff, 0x80, 0x3e, 0xf7, 0xc0,
0x38, 0x0, 0xf0, 0x7f, 0xff, 0xfc, 0x0, 0xc7,
0x8e, 0x1, 0xe0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3c, 0x0, 0x7, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x0, 0x38, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x1, 0xc1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x70, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x87, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x38, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1,
0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x70, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc3, 0x81, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x87, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe7, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x7f, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfb,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xdf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xbf, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfd,
0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xff, 0xe7, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff,
0xff, 0x3, 0xfe, 0xf, 0xfc, 0x7, 0xff, 0xff,
0xff, 0xff, 0xf8, 0xf, 0xe0, 0x0, 0xe0, 0x3c,
0x0, 0x0, 0x0, 0x3, 0x80, 0x70, 0x0, 0x7,
0x1, 0xe0, 0x0, 0x0, 0x0, 0x1c, 0x3, 0x80,
0x0, 0x38, 0xe, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x1c, 0x0, 0x1, 0xe0, 0xf0, 0x0, 0x0, 0x0,
0x3, 0x81, 0xe0, 0x0, 0x7, 0x8f, 0x80, 0x0,
0x0, 0x0, 0x1e, 0x1e, 0x0, 0x0, 0x1f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0x7f, 0x80, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0,
0x0, 0x1, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0,
/* U+1F692 "🚒" */
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x60, 0x0,
0x0, 0x0, 0x0, 0x18, 0x0, 0x0, 0x0, 0x6,
0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x0, 0x0,
0x0, 0x60, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0,
0x0, 0x0, 0x6, 0x3f, 0xff, 0xff, 0xfe, 0x1,
0x80, 0x0, 0x0, 0x0, 0x63, 0x7, 0x83, 0xc1,
0xe0, 0x18, 0x0, 0x0, 0x0, 0x6, 0x30, 0xd8,
0x6c, 0x36, 0x1, 0x80, 0x0, 0x0, 0x0, 0x63,
0x1d, 0x8e, 0xc7, 0x60, 0x18, 0x0, 0x0, 0x0,
0x6, 0x33, 0x99, 0xcc, 0xe6, 0x1, 0x80, 0x0,
0x7, 0xfe, 0x63, 0x71, 0x98, 0xcc, 0x60, 0x18,
0x0, 0x0, 0xe2, 0x36, 0x36, 0x1b, 0xd, 0x86,
0x1, 0x80, 0x0, 0xc, 0x71, 0x63, 0xc1, 0xe0,
0xf8, 0x60, 0x18, 0x0, 0x0, 0xe3, 0x36, 0x3f,
0xff, 0xff, 0xfe, 0x1, 0x80, 0x0, 0xf, 0xff,
0x60, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0, 0x0,
0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x18, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x81, 0x80, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x18, 0x0, 0x1c, 0x0, 0x0,
0x1, 0x80, 0x0, 0x1, 0x81, 0x80, 0x1, 0xc0,
0x0, 0x0, 0x18, 0x0, 0x0, 0x18, 0x18, 0x0,
0x1c, 0x0, 0x0, 0x1, 0x80, 0x0, 0x1, 0xff,
0xe0, 0x1, 0xc0, 0x0, 0x0, 0x18, 0x0, 0x0,
0x1f, 0xff, 0x0, 0x1c, 0x0, 0x0, 0x1, 0x80,
0x0, 0x0, 0x0, 0x70, 0x1, 0xfe, 0x1f, 0xfc,
0x18, 0x0, 0x0, 0x0, 0x7, 0x0, 0x1f, 0xe3,
0xff, 0xc1, 0x80, 0x0, 0x0, 0x0, 0x70, 0x1,
0xc7, 0x38, 0xc, 0x18, 0x0, 0x0, 0x0, 0x7,
0x0, 0x1c, 0x73, 0x80, 0xc1, 0x80, 0x0, 0x0,
0x0, 0x70, 0x1, 0x87, 0x38, 0xc, 0x18, 0x0,
0x0, 0x0, 0x7, 0x0, 0x38, 0x73, 0x80, 0xc1,
0x80, 0x0, 0x0, 0x0, 0x70, 0x3, 0x87, 0x38,
0xc, 0x18, 0x0, 0x0, 0x0, 0x7, 0x0, 0x38,
0x73, 0x80, 0xc1, 0x80, 0x0, 0x0, 0x0, 0x70,
0x3, 0x87, 0x38, 0xc, 0x18, 0x0, 0x0, 0x0,
0x7, 0x0, 0x38, 0x73, 0x80, 0xc1, 0x80, 0x0,
0x0, 0x0, 0x70, 0x3, 0x9f, 0x3f, 0xfc, 0x18,
0x0, 0x0, 0x0, 0x7, 0x0, 0x3f, 0xc1, 0xff,
0xc1, 0x80, 0x0, 0x0, 0x0, 0x70, 0x7, 0xf0,
0x0, 0x0, 0x18, 0x0, 0x0, 0x0, 0x7, 0x0,
0xfc, 0x0, 0x0, 0x1, 0x80, 0x0, 0x0, 0x0,
0x70, 0xf, 0x0, 0x0, 0x0, 0x18, 0x0, 0x0,
0x0, 0x7, 0x1, 0xe0, 0x0, 0x0, 0x1, 0x80,
0x0, 0x0, 0x0, 0x70, 0x3c, 0x0, 0x0, 0x0,
0x18, 0x1, 0xff, 0xff, 0xff, 0x3, 0xfc, 0x0,
0x0, 0x1, 0x80, 0x3f, 0xff, 0xff, 0xf0, 0x3f,
0xc0, 0x0, 0x0, 0x18, 0x7, 0xff, 0xff, 0xff,
0x3, 0x8c, 0x0, 0x0, 0x1, 0x80, 0x70, 0x0,
0x0, 0x70, 0x38, 0xc0, 0x0, 0x0, 0x18, 0xe,
0x0, 0x0, 0x7, 0x3, 0x8c, 0x0, 0x0, 0x1,
0x81, 0xc0, 0x0, 0x0, 0x70, 0x38, 0xc0, 0x0,
0x0, 0x18, 0x38, 0x0, 0x0, 0x7, 0x3, 0x8c,
0x0, 0x0, 0x1, 0x87, 0x0, 0x0, 0x0, 0x70,
0xff, 0xf8, 0x0, 0x0, 0x18, 0x70, 0x0, 0x0,
0x7, 0xff, 0xff, 0x81, 0xff, 0xff, 0xfe, 0x0,
0x1f, 0x0, 0x7f, 0xe0, 0x38, 0x7f, 0xff, 0xff,
0xc0, 0x7, 0xfc, 0x0, 0x7e, 0x3, 0x8f, 0xfe,
0x1, 0x80, 0x0, 0xff, 0xe0, 0x7, 0xe0, 0x39,
0xe0, 0xf0, 0x18, 0x0, 0x1e, 0xf, 0x0, 0x7e,
0x3, 0xbc, 0x7, 0x81, 0x80, 0x3, 0xc0, 0x70,
0x7, 0xe0, 0x3b, 0xc0, 0x38, 0x18, 0x0, 0x38,
0x7, 0x80, 0x7e, 0x3, 0xb8, 0x3, 0x81, 0x80,
0x3, 0x80, 0x38, 0x7, 0xff, 0xff, 0x80, 0x3f,
0xff, 0xff, 0xf8, 0x3, 0xff, 0xf7, 0xff, 0xf8,
0x3, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, 0x0,
0x3, 0xc0, 0x38, 0x0, 0x0, 0x38, 0x7, 0x80,
0x0, 0x0, 0x3c, 0x3, 0x80, 0x0, 0x3, 0xc0,
0x78, 0x0, 0x0, 0x3, 0xe0, 0x78, 0x0, 0x0,
0x3c, 0xf, 0x0, 0x0, 0x0, 0x1f, 0xf, 0x0,
0x0, 0x1, 0xe1, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xe0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0,
0x7, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x3, 0xf0,
0x0, 0x0,
/* U+1F693 "🚓" */
0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xe3, 0xff, 0xfe,
0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x30,
0x60, 0x66, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x6, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x30, 0x60, 0x60, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x6, 0x6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x60, 0x60,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x63, 0xff,
0xfe, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c,
0x6, 0x3, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x0, 0x60, 0x30, 0xc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0x3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc,
0x0, 0x7, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x0, 0x0, 0x70, 0x3, 0xff, 0xfe,
0x3, 0x80, 0x0, 0x0, 0x0, 0xe, 0x3, 0xff,
0xff, 0xf8, 0x1c, 0x0, 0x0, 0x0, 0x1, 0xe0,
0xfc, 0x6, 0x7, 0xc0, 0xe0, 0x0, 0x0, 0x0,
0x3c, 0x1e, 0x0, 0x60, 0xe, 0xe, 0x0, 0x0,
0x0, 0x7, 0x83, 0x80, 0x6, 0x0, 0x70, 0x70,
0x0, 0x0, 0x0, 0x70, 0x70, 0x0, 0x60, 0x3,
0x83, 0x80, 0x0, 0x0, 0xe, 0xe, 0x0, 0x6,
0x0, 0x1c, 0x3c, 0x0, 0x0, 0x1, 0xc1, 0xc0,
0x0, 0x60, 0x0, 0xe1, 0xe0, 0x0, 0x0, 0xfc,
0x38, 0x0, 0x6, 0x0, 0x7, 0xf, 0xc0, 0x1,
0xff, 0x87, 0x80, 0x0, 0x60, 0x0, 0x78, 0x7f,
0x80, 0xff, 0x80, 0xf0, 0x0, 0x6, 0x0, 0x7,
0x0, 0x7c, 0x3f, 0x80, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x1, 0xe7, 0x80, 0x1, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0xe, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x18, 0x7e, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xe0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7e,
0xf, 0xff, 0xff, 0xff, 0xf3, 0x7f, 0xff, 0xff,
0x87, 0xe0, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff,
0xff, 0xf8, 0x7e, 0xf, 0xff, 0xff, 0xff, 0x0,
0x7f, 0xff, 0xff, 0xc7, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff,
0xc0, 0xff, 0xfe, 0xf, 0xff, 0xff, 0xfc, 0x7,
0xff, 0xfe, 0x1f, 0xff, 0xc0, 0x7f, 0xff, 0xff,
0x80, 0x3f, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff,
0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xff, 0x0,
0x1f, 0xe7, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xf0, 0x1, 0xfe, 0x1f, 0xf0, 0x1, 0xff, 0xff,
0xff, 0xff, 0x0, 0x1f, 0x80, 0x7, 0x0, 0x1c,
0x0, 0x0, 0x0, 0x70, 0x1, 0xc0, 0x0, 0x78,
0x1, 0xc0, 0x0, 0x0, 0x7, 0x0, 0x1c, 0x0,
0x3, 0x80, 0x38, 0x0, 0x0, 0x0, 0x38, 0x3,
0x80, 0x0, 0x3c, 0x7, 0x80, 0x0, 0x0, 0x3,
0xc0, 0x78, 0x0, 0x1, 0xe0, 0xf0, 0x0, 0x0,
0x0, 0x1e, 0xf, 0x0, 0x0, 0x1f, 0xff, 0x0,
0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x7f,
0xc0, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0,
0x3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x0,
0x0,
/* U+1F694 "🚔" */
0x0, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0xf,
0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0xfc,
0x70, 0x0, 0x0, 0x0, 0x63, 0xff, 0xff, 0xff,
0xf1, 0x80, 0x0, 0x0, 0x0, 0xc, 0x0, 0x30,
0x0, 0xc0, 0x0, 0x0, 0x3, 0xf0, 0x30, 0x0,
0xc0, 0x3, 0x3, 0xe0, 0x0, 0xf, 0xc0, 0xc0,
0x3, 0x0, 0xc, 0xf, 0x80, 0x0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x6, 0x0, 0x70, 0x3, 0x80, 0x18, 0x0, 0x0,
0x0, 0x78, 0x1, 0x80, 0x6, 0x0, 0x78, 0x0,
0x0, 0x3, 0x80, 0x6, 0x0, 0x18, 0x0, 0x70,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0x80,
0x40, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0,
0xf, 0x80, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x18, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x0,
0x0, 0x38, 0x1f, 0x80, 0x0, 0x7e, 0x7, 0x0,
0x0, 0x1, 0xc0, 0xff, 0x0, 0x3, 0xfc, 0xc,
0x0, 0x0, 0xf, 0x3, 0xfc, 0x0, 0xf, 0xf0,
0x38, 0x0, 0x0, 0x38, 0xf, 0xf0, 0x0, 0x3f,
0xc0, 0x60, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x7, 0xe7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x9f, 0xbf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x0,
0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x80,
0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xf8, 0x0, 0x3f, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x7, 0x80,
0x38, 0x0, 0x0, 0x0, 0xf0, 0xf, 0x0, 0x1e,
0x0, 0xe0, 0x0, 0x0, 0x3, 0x80, 0x3c, 0x0,
0x78, 0x1, 0xc0, 0x0, 0x0, 0xe, 0x0, 0xf0,
0x1, 0xe0, 0x7, 0x0, 0x0, 0x0, 0x70, 0x3,
0xc0, 0x7, 0x80, 0x1c, 0x0, 0x0, 0x1, 0xc0,
0xf, 0x0, 0x1e, 0x0, 0xf8, 0x0, 0x0, 0x7,
0x80, 0x3c, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0,
0x3f, 0xff, 0xf0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x71, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x30, 0x1, 0xc0,
0x3f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xc0, 0x7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x60, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x1, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3e, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x7f, 0x9f, 0xff,
0xff, 0xff, 0xfc, 0x7f, 0x80, 0x1, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x1, 0xfe, 0x0, 0x7, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x7, 0xf8, 0x0, 0x1f,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0,
0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80,
0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
0x0, 0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7,
0xf0, 0x0,
/* U+1F695 "🚕" */
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xc0, 0x0, 0xf, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xe0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf8, 0x0, 0x0, 0x0, 0x7c, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x0, 0xff, 0xfc, 0x3,
0xe0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0xff, 0xff,
0xf8, 0xf, 0x0, 0x0, 0x0, 0x0, 0x38, 0x3f,
0x3, 0x83, 0xe0, 0x78, 0x0, 0x0, 0x0, 0x7,
0x7, 0x80, 0x38, 0x7, 0x83, 0x80, 0x0, 0x0,
0x0, 0xf0, 0xf0, 0x3, 0x80, 0x1c, 0x1c, 0x0,
0x0, 0x0, 0x1e, 0x1e, 0x0, 0x38, 0x0, 0xe1,
0xe0, 0x0, 0x0, 0x1, 0xc3, 0xc0, 0x3, 0x80,
0x7, 0xf, 0x0, 0x0, 0x0, 0x38, 0x78, 0x0,
0x38, 0x0, 0x30, 0x78, 0x0, 0x0, 0x7, 0x87,
0x0, 0x3, 0x80, 0x3, 0x83, 0xe0, 0x0, 0x3,
0xf0, 0xe0, 0x0, 0x38, 0x0, 0x1c, 0x1f, 0x0,
0xf, 0xfe, 0xe, 0x0, 0x3, 0x80, 0x1, 0x80,
0x7c, 0xf, 0xff, 0xe0, 0xe0, 0x0, 0x38, 0x0,
0x38, 0x3, 0xe3, 0xff, 0x80, 0xf, 0xff, 0xff,
0xff, 0xff, 0x0, 0xf, 0x7f, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x77, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xfe, 0xe, 0x0, 0x0, 0x3c,
0x3c, 0x3c, 0x0, 0x0, 0x3f, 0xe0, 0xe0, 0x0,
0x3, 0xc3, 0xc3, 0xc0, 0x0, 0x3, 0xfe, 0xc,
0x0, 0x0, 0x3c, 0x3c, 0x3c, 0x0, 0x0, 0x3f,
0xe0, 0xc0, 0x0, 0x3, 0xc3, 0xc3, 0xc0, 0x0,
0x3, 0xfe, 0x1c, 0x0, 0x1, 0xc3, 0xc3, 0xc3,
0x80, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x1c, 0x3c,
0x3c, 0x38, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x1,
0xc3, 0xc3, 0xc3, 0x80, 0x0, 0x7, 0xe0, 0x0,
0xfc, 0x1c, 0x3c, 0x3c, 0x38, 0x1f, 0x80, 0x7e,
0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xfe,
0x7, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x7e, 0x0, 0xf8, 0x7c, 0x0, 0x0,
0x0, 0x1e, 0xf, 0x87, 0xe0, 0xe, 0x1, 0xc0,
0x0, 0x0, 0x1, 0xc0, 0x78, 0x7e, 0x1, 0xc0,
0x1e, 0x0, 0x0, 0x0, 0x38, 0x3, 0xc7, 0xe0,
0x1c, 0x0, 0xe0, 0x0, 0x0, 0x3, 0x80, 0x3c,
0x7e, 0x1, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x38,
0x1, 0xc7, 0xe0, 0x1c, 0x0, 0xe0, 0x0, 0x0,
0x3, 0x80, 0x1c, 0x77, 0xff, 0xc0, 0xf, 0xff,
0xff, 0xff, 0xf8, 0x3, 0xfe, 0x3f, 0xfc, 0x1,
0xff, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xc0, 0x0,
0xe0, 0x1c, 0x0, 0x0, 0x0, 0x1c, 0x7, 0x80,
0x0, 0xf, 0x87, 0xc0, 0x0, 0x0, 0x1, 0xe0,
0xf8, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0xf, 0xc0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0,
/* U+1F696 "🚖" */
0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0xe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x7, 0x80, 0x0, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x3, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x86, 0x61, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x86, 0x61, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb9, 0x9d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xb9, 0x9d, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x1, 0x80, 0x0, 0x0, 0x1, 0xe0, 0x0,
0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0,
0x0, 0xc, 0x3f, 0x0, 0x0, 0xfc, 0x38, 0x0,
0x0, 0xc, 0x3f, 0x0, 0x0, 0xfc, 0x38, 0x0,
0x0, 0x18, 0x7f, 0x0, 0x0, 0xfe, 0x1c, 0x0,
0x0, 0x18, 0x7f, 0x0, 0x0, 0xfe, 0x1c, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x7c, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3e,
0xfe, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f,
0xfe, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0x7f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfe,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0,
0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x6, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x70,
0x7, 0xff, 0xf, 0xff, 0xff, 0xf8, 0xff, 0xf8,
0x7, 0xff, 0xf, 0xff, 0xff, 0xf8, 0xff, 0xf8,
0xe, 0x3, 0x8f, 0xff, 0xff, 0xf9, 0xc0, 0x38,
0xe, 0x1, 0x8f, 0xff, 0xff, 0xf9, 0x80, 0x38,
0xe, 0x1, 0xc7, 0xff, 0xff, 0xf3, 0x80, 0x38,
0xf, 0xff, 0xc7, 0xff, 0xff, 0xf3, 0xff, 0xf8,
0xf, 0xff, 0xc3, 0xff, 0xff, 0xe3, 0xff, 0xf8,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38,
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8,
0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x6, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x78,
0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78,
0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xc0,
/* U+1F697 "🚗" */
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0,
0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0,
0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x3, 0x80, 0xff, 0xff, 0xc0, 0x70, 0x0, 0x0,
0x0, 0x7, 0x83, 0xff, 0xff, 0xf0, 0x38, 0x0,
0x0, 0x0, 0xf, 0x7, 0x80, 0xe0, 0x7c, 0x1c,
0x0, 0x0, 0x0, 0x1e, 0x1e, 0x0, 0xe0, 0x1e,
0x1e, 0x0, 0x0, 0x0, 0x3c, 0x38, 0x0, 0xe0,
0x7, 0xf, 0x0, 0x0, 0x0, 0x78, 0x70, 0x0,
0xe0, 0x3, 0x87, 0x80, 0x0, 0x0, 0xf0, 0xe0,
0x0, 0xe0, 0x1, 0xc1, 0xe0, 0x0, 0x3, 0xe1,
0xc0, 0x0, 0xe0, 0x1, 0xe0, 0xf0, 0x0, 0x1f,
0xc1, 0xc0, 0x0, 0xe0, 0x1, 0xc0, 0x3c, 0x0,
0x7f, 0x3, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1e,
0x1, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xff, 0x0,
0x3e, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe7, 0x3c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc7, 0x3f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0x87, 0x7f, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, 0x70, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, 0xf0,
0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe7,
0xe0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x77, 0xe0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x77, 0xe0, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xe3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x1,
0xf8, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x7, 0xe0,
0x7, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x7,
0xe0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0x7, 0xe0, 0x1f, 0xf, 0x80, 0x0, 0x0, 0x1f,
0xf, 0x87, 0x70, 0x1c, 0x7, 0x80, 0x0, 0x0,
0x1e, 0x3, 0x87, 0x78, 0x38, 0x3, 0xc0, 0x0,
0x0, 0x3c, 0x3, 0xc7, 0x3e, 0x38, 0x1, 0xc0,
0x0, 0x0, 0x38, 0x1, 0xc7, 0x1f, 0xf8, 0x1,
0xff, 0xff, 0xff, 0xf8, 0x1, 0xfe, 0x3, 0xf8,
0x1, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xfc, 0x0,
0x38, 0x3, 0xc0, 0x0, 0x0, 0x38, 0x1, 0xc0,
0x0, 0x38, 0x3, 0xc0, 0x0, 0x0, 0x3c, 0x3,
0xc0, 0x0, 0x1c, 0x7, 0x80, 0x0, 0x0, 0x1e,
0x3, 0x80, 0x0, 0x1f, 0xf, 0x0, 0x0, 0x0,
0x1f, 0xf, 0x80, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xfc, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x1, 0xf0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0,
/* U+1F698 "🚘" */
0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0,
0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x18,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x6, 0x0, 0x0, 0x0, 0xe,
0xf, 0xe0, 0x0, 0xf, 0xe0, 0xe0, 0x0, 0x0,
0x3, 0x83, 0xfe, 0x0, 0x3, 0xfe, 0xc, 0x0,
0x0, 0x0, 0x70, 0x7f, 0xc0, 0x0, 0x7f, 0xc1,
0x80, 0x0, 0x0, 0x1e, 0xf, 0xf8, 0x0, 0xf,
0xf8, 0x38, 0x0, 0x0, 0x3, 0x81, 0xff, 0x80,
0x3, 0xff, 0x3, 0x0, 0x0, 0x0, 0x70, 0x3f,
0xf0, 0x0, 0x7f, 0xe0, 0x70, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3,
0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1,
0xe1, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x7f, 0x7f, 0x9f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x8f, 0xef, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x7, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0xe3, 0xff,
0xc0, 0x0, 0x0, 0x1f, 0xfe, 0x30, 0x0, 0x1c,
0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xc7, 0x0,
0x7, 0xc, 0x3, 0x0, 0x0, 0x0, 0x60, 0x18,
0x60, 0x0, 0xe1, 0x80, 0x60, 0x0, 0x0, 0xc,
0x3, 0xc, 0x0, 0x1c, 0x30, 0xc, 0x0, 0x0,
0x1, 0x80, 0x61, 0xc0, 0x3, 0x87, 0x1, 0x80,
0x0, 0x0, 0x30, 0x1c, 0x38, 0x0, 0xe0, 0x7f,
0xf0, 0x0, 0x0, 0x7, 0xff, 0x3, 0x0, 0x1c,
0x7, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x60,
0x3, 0x80, 0x0, 0x3, 0xff, 0xfe, 0x0, 0x0,
0xc, 0x0, 0x70, 0x0, 0x1, 0xff, 0xff, 0xf8,
0x0, 0x1, 0x80, 0xe, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x0, 0x0, 0x30, 0x1, 0xc0, 0x0, 0x7,
0xff, 0xff, 0xc0, 0x0, 0x6, 0x0, 0x38, 0x0,
0x0, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xc0, 0x7,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x18,
0x0, 0xe0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0,
0x3, 0x0, 0x1c, 0x0, 0x0, 0x3f, 0xff, 0xf8,
0x0, 0x0, 0x60, 0x3, 0xc0, 0x0, 0x3, 0xff,
0xfe, 0x0, 0x0, 0x1c, 0x0, 0x7f, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x80, 0xe, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xb0, 0x0,
0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6,
0x0, 0x1c, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1, 0xc0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0x0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x7, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x7f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xf8, 0x0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x0, 0x1f,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0,
0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0x80, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x0,
0xf, 0xf0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xfe, 0x0,
/* U+1F699 "🚙" */
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0,
0x0, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x0, 0x18, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0,
0x0, 0x0, 0x70, 0xff, 0xfc, 0x3f, 0xf8, 0x70,
0x0, 0x0, 0x0, 0x1c, 0x3f, 0xff, 0x87, 0xff,
0x8e, 0x0, 0x0, 0x0, 0x7, 0xe, 0x0, 0x30,
0xc0, 0x71, 0xc0, 0x0, 0x0, 0x1, 0xc3, 0xc0,
0x6, 0x18, 0x6, 0x38, 0x0, 0x0, 0x0, 0x70,
0xf0, 0x0, 0xc3, 0x0, 0xc7, 0x0, 0x0, 0x0,
0xc, 0x1c, 0x0, 0x18, 0x60, 0x18, 0x60, 0x0,
0x0, 0x3, 0x87, 0x0, 0x3, 0xc, 0x3, 0xc,
0x0, 0x0, 0x0, 0xe1, 0xc0, 0x0, 0x61, 0x80,
0x61, 0x80, 0x0, 0x0, 0x38, 0x70, 0x0, 0xc,
0x30, 0xc, 0x30, 0x0, 0x0, 0xe, 0x1e, 0x0,
0x1, 0x86, 0x1, 0x86, 0x0, 0x0, 0x3, 0x87,
0x80, 0x0, 0x30, 0xc0, 0x38, 0xc0, 0x0, 0x0,
0xe1, 0xf0, 0x0, 0x6, 0x18, 0x7, 0x1c, 0x3,
0xff, 0xf8, 0x7f, 0xff, 0xff, 0xc3, 0xff, 0xe3,
0xf8, 0xff, 0xff, 0xf, 0xff, 0xff, 0xf8, 0x7f,
0xfc, 0x7f, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xe7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xfc, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x9f, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf3,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xee, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfd, 0xc7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xb8, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf7, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x3, 0xfb, 0x80, 0x1e, 0x0, 0x0, 0x0,
0x0, 0xff, 0x80, 0x7e, 0x70, 0x1f, 0xf8, 0x0,
0x0, 0x0, 0x7f, 0xfc, 0x6, 0xe, 0x7, 0xff,
0xc0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0xc1, 0xc1,
0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xfc, 0x18,
0x38, 0x7f, 0xff, 0x80, 0x0, 0x1, 0xff, 0xff,
0xc3, 0x7, 0x1f, 0xc3, 0xf8, 0x0, 0x0, 0x3f,
0xc3, 0xf8, 0x60, 0xe3, 0xe0, 0x1f, 0x80, 0x0,
0xf, 0xe0, 0x1f, 0x8e, 0x3f, 0xfc, 0x3, 0xf0,
0x0, 0x1, 0xfc, 0x3, 0xff, 0xc7, 0xff, 0x0,
0x3f, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xfc, 0xff,
0xe0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff,
0x9f, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0,
0xff, 0xf3, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xff,
0x80, 0x1f, 0xfe, 0x0, 0x78, 0x7, 0x80, 0x0,
0x0, 0x78, 0x7, 0x80, 0x0, 0x7, 0x0, 0xe0,
0x0, 0x0, 0x7, 0x0, 0xe0, 0x0, 0x0, 0xf8,
0x7c, 0x0, 0x0, 0x0, 0xf8, 0x7c, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff,
0xc0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0,
/* U+1F69A "🚚" */
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xe0,
0x30, 0x1c, 0xe, 0x3, 0x80, 0x0, 0x0, 0x0,
0x1c, 0x6, 0x3, 0x81, 0xc0, 0x70, 0x0, 0x0,
0x0, 0x3, 0x80, 0xc0, 0x70, 0x38, 0xe, 0x0,
0x0, 0x0, 0x0, 0x70, 0x18, 0xe, 0x7, 0x1,
0xc0, 0x0, 0x0, 0x0, 0xe, 0x3, 0x1, 0xc0,
0xe0, 0x38, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x60,
0x38, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0, 0x38,
0xc, 0x7, 0x3, 0x80, 0xe0, 0x0, 0x0, 0x0,
0x7, 0x1, 0x80, 0xe0, 0x70, 0x1c, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x30, 0x1c, 0xe, 0x3, 0x80,
0x0, 0x0, 0x0, 0x1c, 0x6, 0x3, 0x81, 0xc0,
0x70, 0x0, 0x0, 0x0, 0x3, 0x80, 0xc0, 0x70,
0x38, 0xe, 0x0, 0x0, 0x0, 0x0, 0x70, 0x18,
0xe, 0x7, 0x1, 0xc0, 0x0, 0x0, 0x0, 0xe,
0x3, 0x1, 0xc0, 0xe0, 0x38, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x60, 0x38, 0x1c, 0x7, 0x0, 0x3,
0xff, 0xff, 0xf8, 0xc, 0x7, 0x3, 0x80, 0xe0,
0x0, 0xff, 0xff, 0xff, 0x1, 0x80, 0xe0, 0x70,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0xe0, 0x30, 0x1c,
0xe, 0x3, 0x80, 0x7, 0x0, 0x0, 0x1c, 0x6,
0x3, 0x81, 0xc0, 0x70, 0x1, 0xc0, 0x0, 0x3,
0x80, 0xc0, 0x70, 0x38, 0xe, 0x0, 0x30, 0x3f,
0xf0, 0x70, 0x18, 0xe, 0x7, 0x1, 0xc0, 0xe,
0x1f, 0xfe, 0xe, 0x3, 0x1, 0xc0, 0xe0, 0x38,
0x3, 0x83, 0x1, 0xc1, 0xc0, 0x60, 0x38, 0x1c,
0x7, 0x0, 0x60, 0xe0, 0x38, 0x38, 0xc, 0x7,
0x3, 0x80, 0xe0, 0x1c, 0x38, 0x7, 0x7, 0x1,
0x80, 0xe0, 0x70, 0x1c, 0x7, 0x6, 0x0, 0xe0,
0xe0, 0x30, 0x1c, 0xe, 0x3, 0x80, 0xc1, 0xc0,
0x1c, 0x1c, 0x6, 0x3, 0x81, 0xc0, 0x70, 0x38,
0x70, 0x3, 0x83, 0x80, 0xc0, 0x70, 0x38, 0xe,
0xe, 0xe, 0x0, 0x70, 0x70, 0x18, 0xe, 0x7,
0x1, 0xc3, 0x83, 0x80, 0xe, 0xe, 0x3, 0x1,
0xc0, 0xe0, 0x38, 0xf0, 0x60, 0x1, 0xc1, 0xc0,
0x60, 0x38, 0x1c, 0x7, 0x78, 0x1f, 0xff, 0xf8,
0x38, 0xc, 0x7, 0x3, 0x80, 0xec, 0x3, 0xff,
0xff, 0x7, 0x1, 0x80, 0xe0, 0x70, 0x1f, 0x80,
0x0, 0x0, 0x0, 0xe0, 0x30, 0x1c, 0xe, 0x3,
0xf0, 0x0, 0x0, 0x0, 0x1c, 0x6, 0x3, 0x81,
0xc0, 0x7f, 0xf8, 0x0, 0x0, 0x3, 0x80, 0xc0,
0x70, 0x38, 0xf, 0xff, 0x0, 0x0, 0x0, 0x70,
0x18, 0xe, 0x7, 0x1, 0xf8, 0x60, 0x0, 0x0,
0xe, 0x3, 0x1, 0xc0, 0xe0, 0x3f, 0xc, 0x0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1,
0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3, 0xf0, 0xf, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x3, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xc0, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff,
0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1f,
0xff, 0xff, 0xff, 0x9f, 0xff, 0xfb, 0xff, 0xff,
0x3, 0x3, 0xfe, 0xff, 0x1, 0xff, 0xfc, 0x1f,
0xff, 0xff, 0xe0, 0x7f, 0x7, 0xf0, 0x3f, 0xff,
0x1, 0xff, 0xff, 0xfc, 0x1f, 0xc0, 0x7e, 0x3,
0xff, 0xc0, 0x1f, 0xff, 0xff, 0x83, 0xf0, 0x7,
0xc0, 0x0, 0x38, 0x3, 0x80, 0x0, 0x0, 0x7e,
0x0, 0xf8, 0x0, 0x7, 0x0, 0x70, 0x0, 0x0,
0xf, 0xc0, 0x1f, 0x80, 0x0, 0xe0, 0xe, 0x0,
0x0, 0x1, 0xf8, 0x3, 0xe0, 0x0, 0x1e, 0x3,
0xc0, 0x0, 0x0, 0x7, 0x80, 0xe0, 0x0, 0x1,
0xc0, 0x70, 0x0, 0x0, 0x0, 0xf0, 0x1c, 0x0,
0x0, 0x3e, 0x3e, 0x0, 0x0, 0x0, 0xf, 0x8f,
0x80, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0,
0xff, 0xe0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x0,
0x0, 0xf, 0xf8, 0x0, 0x0, 0x1, 0xf0, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0,
/* U+1F69B "🚛" */
0x0, 0x0, 0x1, 0xe0, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0x0, 0x7, 0xe0, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x0, 0x1f, 0x60, 0xc0, 0x0,
0x0, 0x0, 0x3, 0x0, 0x0, 0x38, 0x60, 0xc0,
0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x70, 0x60,
0xc0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0xe0,
0x60, 0xc0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0,
0xe0, 0x60, 0xc0, 0x0, 0x0, 0x0, 0x3, 0x0,
0x1, 0xc0, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1, 0xff, 0xc0, 0x60, 0xff, 0xff, 0xff, 0xff,
0xff, 0x3, 0xff, 0x80, 0x60, 0xff, 0xff, 0xff,
0xff, 0xff, 0x3, 0x0, 0x0, 0x60, 0xc0, 0x0,
0x0, 0x0, 0x3, 0x7, 0x0, 0x0, 0x60, 0xc0,
0x0, 0x0, 0x0, 0x3, 0x6, 0x0, 0x0, 0x60,
0xc0, 0x0, 0x0, 0x0, 0x3, 0x6, 0x0, 0x0,
0x60, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xe, 0x1f,
0xe0, 0x60, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xc,
0x3f, 0xe0, 0x60, 0xc0, 0x0, 0x0, 0x0, 0x3,
0x1c, 0x30, 0xe0, 0x60, 0xc0, 0x0, 0x0, 0x0,
0x3, 0x1c, 0x60, 0xe0, 0x60, 0xc0, 0x0, 0x0,
0x0, 0x3, 0x18, 0x60, 0xe0, 0x60, 0xc0, 0x0,
0x0, 0x0, 0x3, 0x38, 0xe0, 0xe0, 0x60, 0xc0,
0x0, 0x0, 0x0, 0x3, 0x30, 0xc0, 0xe0, 0x60,
0xc0, 0x0, 0x0, 0x0, 0x3, 0x71, 0xc0, 0xe0,
0x60, 0xc0, 0x0, 0x0, 0x0, 0x3, 0x71, 0x80,
0xe0, 0x60, 0xc0, 0x0, 0x0, 0x0, 0x3, 0x63,
0x80, 0xe0, 0x60, 0xc0, 0x0, 0x0, 0x0, 0x3,
0xe3, 0x80, 0xe0, 0x60, 0xc0, 0x0, 0x0, 0x0,
0x3, 0xc3, 0xff, 0xe0, 0x60, 0xc0, 0x0, 0x0,
0x0, 0x3, 0xc7, 0xff, 0xe0, 0x60, 0xc0, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x60, 0xc0,
0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x60,
0xc0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0,
0x60, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0,
0x0, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x60, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x60, 0xc0, 0x0, 0x0,
0x0, 0x3, 0xfe, 0x0, 0x0, 0x60, 0xc0, 0x0,
0x0, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x60, 0xc0,
0x0, 0x0, 0x0, 0x3, 0xc6, 0x0, 0x0, 0x60,
0xc0, 0x0, 0x0, 0x0, 0x3, 0xc6, 0x0, 0x0,
0x60, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xc7, 0xff,
0xff, 0xe0, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xc7,
0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc7, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x1f, 0x80, 0x1f,
0xff, 0xf8, 0xff, 0xff, 0xff, 0xe0, 0x1f, 0x80,
0x1f, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xe0, 0x1f,
0x80, 0x1f, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x1f, 0xff, 0xf8, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x3f, 0xff, 0xfc, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xfc, 0xff,
0xf0, 0xff, 0xff, 0xf8, 0xfc, 0x78, 0xfe, 0x1e,
0xff, 0xe0, 0xff, 0xff, 0xf0, 0x7c, 0x70, 0xfe,
0xe, 0x0, 0xe0, 0xf0, 0x0, 0x70, 0x70, 0x70,
0xfe, 0xe, 0x0, 0xf0, 0xf0, 0x0, 0x70, 0x70,
0x70, 0xfe, 0xe, 0x0, 0x71, 0xf0, 0x0, 0x78,
0xf0, 0x79, 0xff, 0x1e, 0x0, 0x7f, 0xe0, 0x0,
0x3f, 0xe0, 0x3f, 0xef, 0xfc, 0x0, 0x3f, 0xc0,
0x0, 0x1f, 0xc0, 0x1f, 0xc7, 0xf8, 0x0, 0xf,
0x80, 0x0, 0xf, 0x80, 0xf, 0x83, 0xe0,
/* U+1F69C "🚜" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x3, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x1,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x60, 0x1f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x3, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x18, 0x1, 0xc0, 0x60, 0xc0,
0x60, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x1c, 0x3,
0x6, 0x3, 0x80, 0x0, 0x0, 0x0, 0x6, 0x0,
0xe0, 0x30, 0x30, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x30, 0x6, 0x1, 0x81, 0x80, 0xe0, 0x0, 0x0,
0x0, 0x3, 0x80, 0x70, 0xf, 0xc, 0x7, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x3, 0x0, 0xf8, 0x60,
0x18, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x38, 0x7,
0xc3, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x7, 0x1,
0x80, 0x3c, 0x18, 0x6, 0x0, 0x0, 0x0, 0x0,
0x38, 0x1c, 0x3, 0xe0, 0xc0, 0x30, 0x0, 0x0,
0x0, 0x1, 0xc0, 0xe0, 0x1f, 0x6, 0x1, 0xc0,
0x0, 0x0, 0x0, 0xe, 0x6, 0x0, 0xf8, 0x30,
0xe, 0x0, 0x0, 0x0, 0x0, 0x70, 0x70, 0xf,
0x81, 0x80, 0x70, 0x0, 0x0, 0x0, 0x3, 0x83,
0x0, 0x7c, 0xc, 0x3, 0x80, 0x0, 0x0, 0x0,
0x1c, 0x38, 0x3, 0x0, 0x60, 0x1c, 0x0, 0x0,
0x0, 0x0, 0xe1, 0x80, 0x18, 0x3, 0x0, 0x60,
0x0, 0x0, 0x0, 0x7, 0xc, 0x1, 0xc0, 0x18,
0x3, 0x0, 0x0, 0x0, 0x0, 0x38, 0xc0, 0xc,
0x0, 0xc0, 0x18, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xe0, 0x6, 0x0, 0xc0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0x0, 0x30, 0x7, 0x0, 0x0,
0x7, 0xf8, 0x0, 0x0, 0x18, 0x1, 0x80, 0x38,
0x0, 0x0, 0xfc, 0x0, 0x0, 0x1, 0xc0, 0xc,
0x1, 0xc0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0xe,
0x0, 0x60, 0xe, 0x0, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x60, 0x7f, 0xff, 0xf8, 0x0, 0xe, 0x0,
0x0, 0x0, 0x3, 0xf, 0xff, 0xff, 0xf0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x18, 0xf0, 0x0, 0x7,
0xc0, 0x7, 0x0, 0x0, 0x0, 0x0, 0xce, 0x0,
0x0, 0x7, 0x0, 0x38, 0x0, 0x0, 0x0, 0x6,
0xe0, 0x7, 0x0, 0x1c, 0x1, 0x80, 0x3e, 0x0,
0x0, 0x36, 0x0, 0x3c, 0x0, 0x70, 0xc, 0x1,
0xfe, 0x0, 0x1, 0xf0, 0x63, 0xf3, 0x87, 0x80,
0x60, 0xf, 0xfe, 0x0, 0xf, 0x7, 0xff, 0xfe,
0x78, 0x3, 0x0, 0x1, 0xf8, 0x0, 0x70, 0x3f,
0xff, 0xf7, 0x80, 0x18, 0x1e, 0x1, 0xe0, 0x3,
0x81, 0xf8, 0x1f, 0xf8, 0x0, 0xdd, 0xfb, 0x87,
0x80, 0x38, 0xbf, 0x0, 0x3f, 0x40, 0x7, 0xff,
0xfe, 0x1e, 0x1, 0xc7, 0xe0, 0x0, 0x7f, 0x0,
0x7f, 0xff, 0xf0, 0x78, 0x1c, 0x7e, 0x0, 0x1,
0xf8, 0x3, 0xfc, 0xf, 0x81, 0xc1, 0xc3, 0xe0,
0x0, 0x7, 0xc1, 0xff, 0x80, 0x1f, 0x87, 0xe,
0xf, 0x3, 0xf0, 0x3c, 0x3f, 0xf8, 0x0, 0x7e,
0x38, 0xe0, 0x70, 0x3f, 0xc0, 0xe1, 0xff, 0x80,
0x1, 0xf1, 0xc1, 0x3, 0x83, 0xff, 0x7, 0x8f,
0xf8, 0x1e, 0x7, 0x6, 0x0, 0x38, 0x3f, 0xfc,
0x1c, 0x7f, 0x83, 0xfc, 0x38, 0x38, 0x7, 0xc1,
0xff, 0xe0, 0xfb, 0xfc, 0x3f, 0xe0, 0xc1, 0xc0,
0x3e, 0xf, 0xff, 0x7, 0xdf, 0xe1, 0xff, 0x87,
0x8e, 0x1, 0xf0, 0x7f, 0xf8, 0x3e, 0xff, 0xf,
0xfc, 0x3c, 0x70, 0x3, 0x83, 0xff, 0xc1, 0xc7,
0xf8, 0x7f, 0xe1, 0xe3, 0x80, 0x1c, 0xf, 0xfc,
0xe, 0x7, 0xc3, 0xfe, 0xe, 0x1c, 0x0, 0x70,
0x7f, 0xe0, 0xe0, 0xe, 0xf, 0xf0, 0x7f, 0xff,
0xff, 0x80, 0xfc, 0x7, 0x0, 0x70, 0x1e, 0x7,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x3c, 0x7, 0xc0,
0x0, 0x3c, 0x0, 0x1, 0xf0, 0x0, 0x3, 0xe0,
0x3f, 0x0, 0x3, 0xe0, 0x0, 0x7, 0xc0, 0x0,
0x3f, 0x0, 0xfc, 0x0, 0x3e, 0x0, 0x0, 0xf,
0x0, 0x3, 0x90, 0x2, 0xf0, 0x3, 0xf0, 0x0,
0x0, 0x3c, 0x0, 0x3c, 0x0, 0x3, 0xe0, 0x7c,
0x0, 0x0, 0x0, 0xfc, 0xf, 0xc0, 0x0, 0x1f,
0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xfe, 0x0,
0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xf0, 0x0, 0x3, 0x1e, 0x30, 0x0, 0x0, 0x0,
0x43, 0xc2, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0,
/* U+1F69D "🚝" */
0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x1c, 0x6, 0xf, 0xff, 0xff, 0xff,
0xff, 0x0, 0x1c, 0x6, 0xf, 0xff, 0xff, 0xff,
0xff, 0x80, 0x1c, 0x6, 0xc, 0xc0, 0xc, 0x0,
0xc1, 0xc0, 0xe, 0x6, 0xc, 0x60, 0x6, 0x0,
0x60, 0xe0, 0xe, 0x6, 0xc, 0x30, 0x3, 0x0,
0x30, 0x70, 0x7, 0x3, 0xe, 0x18, 0x1, 0x80,
0x18, 0x38, 0x7, 0x3, 0x6, 0xc, 0x0, 0xc0,
0xc, 0x1c, 0x3, 0x83, 0x6, 0x6, 0x0, 0x60,
0x6, 0xe, 0x3, 0x83, 0x87, 0x3, 0x0, 0x30,
0x3, 0x7, 0x1, 0xc1, 0x83, 0x1, 0x80, 0x18,
0x1, 0x83, 0x81, 0xc3, 0x83, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0xff, 0x81, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x79, 0xc0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x7c, 0xc0, 0x3f, 0x80, 0x0,
0x0, 0x0, 0x38, 0x3f, 0x80, 0x3f, 0xc0, 0x0,
0x0, 0x0, 0x1c, 0x1c, 0x0, 0x3f, 0xe0, 0x0,
0x0, 0x0, 0xe, 0xe, 0x0, 0x7f, 0xfc, 0x0,
0x0, 0x0, 0x7, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0xf, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x1, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x1, 0xc0, 0x0, 0x0, 0xe0, 0x0, 0x7f, 0x80,
0x1, 0xc0, 0x0, 0x0, 0x70, 0x0, 0x3d, 0xe0,
0x1, 0xc0, 0x0, 0x0, 0x1c, 0x0, 0x3c, 0x78,
0x1, 0xe0, 0x0, 0x0, 0x7, 0x0, 0x3c, 0x1e,
0x1, 0xe0, 0x0, 0x0, 0x3, 0xc0, 0x3c, 0x7,
0x0, 0xe0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x3,
0x80, 0x70, 0x0, 0x0, 0x0, 0x70, 0xe, 0x1,
0xc0, 0x38, 0x0, 0x0, 0x0, 0x38, 0x7, 0x0,
0xe0, 0x1c, 0x0, 0x0, 0x0, 0x1c, 0x3, 0x80,
0x70, 0xe, 0x0, 0x0, 0x0, 0xe, 0x1, 0xc0,
0x3f, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0,
0x1f, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xf0,
/* U+1F69E "🚞" */
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x39, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0xe0, 0xf, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1, 0xb8, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7e, 0xf, 0x7, 0x0, 0x0, 0x0, 0xf,
0x80, 0x1f, 0x87, 0x80, 0xe0, 0x0, 0x0, 0x7,
0xf0, 0x7, 0xe7, 0x80, 0x1c, 0x0, 0x0, 0x3,
0xff, 0x1, 0xfb, 0xc0, 0x3, 0xfc, 0x0, 0x1,
0xe3, 0xe0, 0x7f, 0xe0, 0x0, 0x7f, 0xe0, 0x0,
0xf0, 0x3c, 0x1f, 0xe0, 0x0, 0x0, 0x7c, 0x3,
0xf8, 0x7, 0x87, 0xf0, 0x0, 0x0, 0x7, 0x87,
0xfc, 0x0, 0xf1, 0xf8, 0x0, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0x1c, 0x7e, 0x0, 0x0, 0x0, 0xf,
0xe0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0,
0x38, 0x0, 0x0, 0x3, 0xf8, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x7e, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x1f, 0x87, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x87, 0xe3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf1, 0xf8, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x7e, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x1f, 0x8e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, 0xe3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xf8, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x7e, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x1f, 0x8e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc7, 0xe3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xf8,
0xe3, 0xfe, 0x7f, 0xcf, 0xf9, 0xff, 0x1c, 0x7e,
0x38, 0xff, 0x9f, 0xf3, 0xfe, 0x7f, 0xc7, 0x1f,
0x8e, 0x30, 0x66, 0xc, 0xc1, 0x98, 0x31, 0xc7,
0xe3, 0x8c, 0x19, 0x83, 0x30, 0x66, 0xc, 0x71,
0xf8, 0xe3, 0x6, 0x60, 0xcc, 0x19, 0x83, 0x1c,
0x7e, 0x38, 0xc1, 0x98, 0x33, 0x6, 0x60, 0xc7,
0x1f, 0x8e, 0x30, 0x66, 0xc, 0xc1, 0x98, 0x31,
0xc7, 0xe3, 0x8f, 0xf9, 0xff, 0x3f, 0xe7, 0xfc,
0x71, 0xf8, 0xe3, 0xfe, 0x7f, 0xcf, 0xf9, 0xff,
0x1c, 0x7e, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x1f, 0x8e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc7, 0xe3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x71, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x7e, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x1f, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc7, 0xe3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x71, 0xf8, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x7e, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x1f, 0x8e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc7, 0xe3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x71, 0xf8, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x7e, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1f, 0x9f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe7, 0xe7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf9, 0xf8, 0xc, 0x31,
0x86, 0x1, 0x86, 0x30, 0xc0, 0x7e, 0x3, 0x8c,
0x71, 0x80, 0x63, 0x8c, 0x70, 0x1f, 0x80, 0x7e,
0xf, 0xc0, 0xf, 0xc1, 0xf8, 0x7, 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,
0xfc, 0x3f, 0xf, 0xc3, 0xf0, 0xfc, 0x3f, 0xfc,
0x3f, 0xf, 0xc3, 0xf0, 0xfc, 0x3f, 0xf, 0xdf,
0xf, 0xc3, 0xf0, 0xfc, 0x3f, 0xf, 0xc3, 0xe7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0,
/* U+1F69F "🚟" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xe, 0xe0, 0x0, 0x0,
0x1f, 0xff, 0x0, 0x0, 0x3, 0x8e, 0x0, 0x0,
0x7, 0xfe, 0xf0, 0x0, 0x0, 0xe0, 0xe0, 0x0,
0x1, 0xef, 0xcf, 0x0, 0x0, 0x3c, 0xe, 0x0,
0x0, 0x79, 0xf8, 0xf0, 0x0, 0xf, 0x0, 0xe0,
0x0, 0x1e, 0x3f, 0xf, 0xe0, 0x7d, 0xc0, 0x1f,
0xf0, 0x3f, 0x87, 0xe0, 0xff, 0x1f, 0xf0, 0x1,
0xff, 0x1f, 0xe0, 0xfc, 0x3f, 0xf7, 0xfc, 0x0,
0x1f, 0xf3, 0xfc, 0x1f, 0x8f, 0x1f, 0xf3, 0xc0,
0x7, 0x9f, 0xf1, 0xc3, 0xf1, 0xcf, 0xff, 0x38,
0x0, 0xe7, 0xff, 0x98, 0x7e, 0x39, 0xff, 0xf3,
0x0, 0x1c, 0xff, 0xf3, 0xf, 0xc7, 0x27, 0xe4,
0xe0, 0x3, 0x93, 0xf2, 0xe1, 0xf8, 0xf1, 0xfe,
0x3c, 0x0, 0x78, 0xff, 0x1c, 0x3f, 0xf, 0xff,
0xff, 0x0, 0x7, 0xff, 0xff, 0x7, 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,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x7e,
0x0, 0x1e, 0x0, 0x0, 0x0, 0xf, 0x0, 0xf,
0xc0, 0x3, 0xc0, 0x0, 0x0, 0x1, 0xe0, 0x1,
0xf8, 0x0, 0x78, 0x0, 0x0, 0x0, 0x3c, 0x0,
0x3f, 0x0, 0xf, 0x0, 0x0, 0x0, 0x7, 0x80,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x7, 0x80, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc,
0x0, 0x0, 0x0, 0x1, 0xfc, 0x0, 0x0, 0x1f,
0x83, 0xfc, 0x3f, 0xe0, 0xff, 0xe0, 0x7f, 0x83,
0xf0, 0x7f, 0x87, 0xfc, 0x1c, 0xe, 0xf, 0xf0,
0x7e, 0xc, 0x30, 0xc1, 0x87, 0x0, 0xc1, 0x86,
0xf, 0xc1, 0x86, 0x18, 0x30, 0xc0, 0x18, 0x30,
0xc1, 0xf8, 0x30, 0xc3, 0x6, 0x18, 0x3, 0x6,
0x18, 0x3f, 0x6, 0x18, 0x60, 0xc3, 0x1e, 0x60,
0xc3, 0x7, 0xe0, 0xc3, 0xc, 0x18, 0x63, 0xcc,
0x18, 0x60, 0xfc, 0x18, 0x61, 0x83, 0xc, 0x79,
0x83, 0xc, 0x1f, 0x83, 0xc, 0x30, 0x61, 0x8f,
0x30, 0x61, 0x83, 0xf0, 0x7f, 0x87, 0xfc, 0x31,
0xe6, 0xf, 0xf0, 0x7e, 0x0, 0x0, 0x0, 0x6,
0x3c, 0xc0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0,
0xc7, 0x98, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x18, 0x3, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x3, 0x0, 0x60, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0,
0x0, 0x1, 0x80, 0x30, 0x0, 0x3, 0xf0, 0x0,
0x0, 0x0, 0x30, 0x6, 0x0, 0x0, 0x7e, 0x0,
0x0, 0x0, 0x6, 0x0, 0xc0, 0x0, 0xf, 0xc0,
0x0, 0x0, 0x0, 0xc0, 0x18, 0x0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80,
/* U+1F6A0 "🚠" */
0xc0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7e, 0x0, 0x7f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xf0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xdf, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x77, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x7f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x1c, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x3f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0,
0x3f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0,
0x0, 0xff, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x7, 0x80, 0x0, 0x0, 0x3, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x81, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xe0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x1c, 0x1c, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0xe, 0xf, 0xff, 0xc3,
0xff, 0xff, 0xfc, 0x3f, 0xff, 0x7, 0xff, 0xe1,
0xc0, 0x30, 0xe, 0x1f, 0xff, 0x83, 0x80, 0x30,
0xe0, 0x18, 0x7, 0xc, 0x1, 0xc1, 0xc0, 0x18,
0x70, 0xc, 0x3, 0x86, 0x0, 0xe0, 0xe0, 0xc,
0x38, 0x6, 0x1, 0xc3, 0x0, 0x70, 0x70, 0x6,
0x1c, 0x3, 0x0, 0xe1, 0x80, 0x38, 0x38, 0x3,
0xe, 0x1, 0x80, 0x70, 0xc0, 0x1c, 0x1c, 0x1,
0x87, 0x0, 0xc0, 0x38, 0x60, 0xe, 0xe, 0x0,
0xc3, 0x80, 0x60, 0x1c, 0x30, 0x7, 0x7, 0x0,
0x61, 0xc0, 0x30, 0xe, 0x18, 0x3, 0x83, 0x80,
0x30, 0xe0, 0x18, 0x7, 0xc, 0x1, 0xc1, 0xc0,
0x18, 0x70, 0xc, 0x3, 0x86, 0x0, 0xe0, 0xe0,
0xc, 0x38, 0x6, 0x1, 0xc3, 0x0, 0x70, 0x7f,
0xfe, 0x1c, 0x3, 0x0, 0xe1, 0xff, 0xf8, 0x3f,
0xff, 0xe, 0x1, 0x80, 0x70, 0xff, 0xfc, 0xc,
0x0, 0x7, 0x0, 0xc0, 0x38, 0x0, 0xc, 0x7,
0x0, 0x3, 0x80, 0x60, 0x1c, 0x0, 0xe, 0x3,
0x80, 0x1, 0xc0, 0x30, 0xe, 0x0, 0x7, 0x0,
0xe0, 0x0, 0xe0, 0x18, 0x7, 0x0, 0x7, 0x0,
0x38, 0x0, 0x70, 0xc, 0x3, 0x80, 0x7, 0x0,
0x1f, 0x0, 0x38, 0x6, 0x1, 0xc0, 0xf, 0x80,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0,
/* U+1F6A1 "🚡" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0x81, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfd, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7b, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x1, 0xdf, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xef, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xc3, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x40, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x3, 0xff,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x1f,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x60, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x60, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x60, 0x0,
0x0, 0x0, 0xe0, 0x7, 0xfe, 0x0, 0x60, 0x0,
0x0, 0x0, 0xe0, 0x7, 0xfe, 0x0, 0x60, 0x0,
0x0, 0x0, 0xff, 0x87, 0xfe, 0x1f, 0xe0, 0x0,
0x0, 0x0, 0xff, 0x86, 0x6, 0x1f, 0xe0, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xe1, 0x86, 0x6, 0x18, 0x60, 0x0,
0x0, 0x0, 0xff, 0x86, 0x6, 0x1f, 0xe0, 0x0,
0x0, 0x0, 0xff, 0x86, 0x6, 0x1f, 0xe0, 0x0,
0x0, 0x0, 0xe0, 0x6, 0x6, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x60, 0x6, 0x6, 0x0, 0xc0, 0x0,
0x0, 0x0, 0x70, 0x6, 0x6, 0x0, 0xc0, 0x0,
0x0, 0x0, 0x38, 0x6, 0x6, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x3c, 0x6, 0x6, 0x3, 0x80, 0x0,
0x0, 0x0, 0x1f, 0x6, 0x6, 0xf, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xf8, 0x0, 0x0,
/* U+1F6A2 "🚢" */
0x0, 0x0, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcd,
0xc0, 0x3f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0x80, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0x1, 0xc3, 0x80, 0x0, 0x0, 0x0,
0x0, 0x7, 0xfe, 0x3, 0x87, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfc, 0x7, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xf8, 0xf, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x1f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x3f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0,
0x7f, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x80, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xe1, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7,
0x0, 0x1, 0xcf, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xe, 0x0, 0x3, 0x80, 0x3f, 0xff, 0xfc, 0x0,
0x0, 0x18, 0x0, 0x7, 0x0, 0x0, 0xff, 0xf8,
0x0, 0x0, 0x30, 0x0, 0xe, 0x0, 0x0, 0x3,
0xf0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x60, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x39,
0x80, 0x0, 0xc0, 0x0, 0x1, 0x80, 0x0, 0x70,
0x73, 0x9c, 0x1, 0x80, 0x0, 0x7, 0x0, 0x1,
0xe0, 0x7, 0x38, 0xc3, 0x0, 0x0, 0xe, 0x0,
0x3, 0x80, 0x0, 0x73, 0x8e, 0x0, 0x0, 0x1c,
0x0, 0x7, 0x0, 0x0, 0x7, 0x1c, 0x0, 0x0,
0x38, 0x0, 0xe, 0x0, 0x0, 0x0, 0x38, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x70,
0x0, 0x1, 0xff, 0xff, 0xff, 0x38, 0x0, 0x0,
0xe0, 0x0, 0x3, 0x80, 0x0, 0xe4, 0x73, 0x8c,
0x1, 0xc0, 0x0, 0x7, 0x0, 0x1, 0xc0, 0x7,
0x18, 0xe3, 0x0, 0x0, 0x1c, 0x0, 0x3, 0x80,
0x0, 0x31, 0xc6, 0x0, 0x0, 0x38, 0x0, 0xe,
0x0, 0x0, 0x3, 0xf, 0xf0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0x1, 0xff,
0xff, 0xf6, 0x39, 0x0, 0x0, 0x1, 0xc0, 0x7,
0x0, 0x0, 0xe4, 0x73, 0x9c, 0x0, 0x3, 0x80,
0xe, 0x0, 0x1, 0x80, 0x6, 0x39, 0xc0, 0x6,
0x0, 0x1c, 0x0, 0x3, 0x0, 0x0, 0x73, 0x8c,
0xc, 0x0, 0x38, 0x0, 0x6, 0x0, 0x0, 0x7,
0x38, 0xd8, 0x0, 0x70, 0x0, 0xc, 0x0, 0x0,
0x0, 0x73, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x7, 0x61, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x0, 0xc3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x3, 0x87, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x7, 0xfd, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0xf1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x1, 0xe3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xc7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0,
/* U+1F6A3 "🚣" */
0x0, 0x0, 0x7f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x1, 0x80,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x1,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xc0, 0x3f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x7f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xf0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xf0, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xf0, 0x60, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0xe0, 0x0, 0x0, 0x0, 0xc0,
0x0, 0x0, 0x0, 0x38, 0x60, 0x0, 0x0, 0x0,
0xc0, 0x0, 0x0, 0x0, 0x38, 0x70, 0x0, 0x0,
0x0, 0x80, 0x0, 0x0, 0x0, 0x38, 0x70, 0x0,
0x0, 0x1, 0x80, 0x0, 0x0, 0x0, 0x38, 0x30,
0x0, 0x0, 0x1, 0x80, 0x0, 0x0, 0x0, 0x38,
0x38, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0,
0x70, 0x38, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0,
0x0, 0x70, 0x1c, 0x0, 0x0, 0x1f, 0x0, 0x0,
0x0, 0x0, 0x70, 0x1c, 0x0, 0x0, 0x3f, 0x0,
0x0, 0x0, 0x0, 0x70, 0xe, 0x0, 0x0, 0x7f,
0x80, 0x0, 0x0, 0x0, 0xe0, 0x7, 0x0, 0x0,
0xff, 0x80, 0x0, 0x0, 0x0, 0xe0, 0x7, 0x0,
0x0, 0xff, 0x80, 0x0, 0x0, 0x1, 0xc0, 0x3,
0xc0, 0x1, 0xff, 0x80, 0x0, 0x1f, 0x1, 0xc0,
0x1, 0xe0, 0x3f, 0xff, 0x80, 0x1, 0xff, 0xe3,
0x80, 0x0, 0xf0, 0xff, 0xff, 0x80, 0x7, 0xf3,
0xff, 0x80, 0x0, 0x7f, 0xe0, 0x3f, 0x80, 0xf,
0x0, 0x3f, 0x0, 0x20, 0x3f, 0x0, 0x7, 0xe0,
0x7c, 0x0, 0xf, 0xff, 0x3f, 0xfc, 0x0, 0x1,
0xff, 0xf0, 0x0, 0x1, 0xff, 0x3f, 0xc0, 0x0,
0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x7,
0xfc, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x80, 0x7, 0xf3, 0xf0, 0x0, 0x0,
0x0, 0xfc, 0x7, 0xe0, 0x3f, 0x0, 0x3f, 0xc0,
0x0, 0x7f, 0xe0, 0x0, 0xff, 0xfc, 0x0, 0xf,
0xc0, 0x0, 0x7f, 0x0, 0x0, 0x3f, 0xe0, 0x0,
0x0, 0x0,
/* U+1F6A4 "🚤" */
0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1e, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x3e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x78, 0x0, 0x0,
0xf, 0xe0, 0x0, 0xff, 0xff, 0xf0, 0x1, 0xff,
0xff, 0xc0, 0xff, 0x80, 0x7f, 0xfc, 0x3, 0xe0,
0x7, 0xff, 0xff, 0x7, 0xfc, 0x3f, 0xf0, 0x0,
0x7, 0xc0, 0x1e, 0x0, 0x1e, 0x3f, 0xe7, 0xf8,
0x0, 0x0, 0x1f, 0x80, 0x70, 0x0, 0x79, 0xff,
0x1e, 0x0, 0x0, 0x0, 0x3f, 0x81, 0xc0, 0x1,
0xff, 0xf8, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xcf,
0xfe, 0x3, 0xff, 0xc3, 0xff, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xf8, 0xf, 0xfe, 0x1c, 0xff, 0xc0,
0x0, 0x0, 0x3f, 0xff, 0xf0, 0x3f, 0xf0, 0x70,
0x7f, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x7f,
0x3, 0xe0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x1, 0xf8, 0xf, 0xe0, 0xf, 0xff, 0x80, 0x0,
0x0, 0x0, 0x7, 0x80, 0x3b, 0xe0, 0x1, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x1e, 0x0, 0xe7, 0xf0,
0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x3c, 0x3,
0x87, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0,
0xe0, 0xe, 0x3, 0xfc, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0x80, 0x3c, 0x1, 0xff, 0x80, 0x0,
0x0, 0xf, 0xff, 0xfc, 0x0, 0xf0, 0x0, 0x7f,
0xff, 0x80, 0x0, 0x0, 0x0, 0xe0, 0x1, 0xe0,
0x0, 0xf, 0xff, 0xfc, 0x0, 0x0, 0x6, 0x0,
0x7, 0xc0, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0x0,
0x30, 0x0, 0xf, 0x80, 0x0, 0x0, 0x78, 0x0,
0x0, 0x3, 0x80, 0x0, 0x1f, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3f, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x7f, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x30, 0x0, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0,
0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xe0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfc, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x6, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0x80,
/* U+1F6A5 "🚥" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xb8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7e, 0x0, 0xfe, 0x0, 0x1, 0xfe,
0x0, 0x1, 0xfc, 0x1, 0xf8, 0x1f, 0xfe, 0x0,
0x1f, 0xfe, 0x0, 0x1f, 0xfe, 0x7, 0xe0, 0xf0,
0x3e, 0x1, 0xf0, 0x3e, 0x1, 0xf0, 0x3c, 0x1f,
0x8f, 0x0, 0x3c, 0xf, 0x0, 0x3c, 0xf, 0x0,
0x3c, 0x7e, 0x70, 0x0, 0x38, 0x70, 0x0, 0x38,
0x70, 0x0, 0x39, 0xf8, 0x83, 0xf0, 0x40, 0x83,
0xf0, 0x40, 0x83, 0xf0, 0x47, 0xe0, 0x3f, 0xf0,
0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xf0, 0x1f, 0x81,
0xe1, 0xe0, 0x1, 0xe1, 0xe0, 0x1, 0xe1, 0xe0,
0x7e, 0xe, 0x1, 0xc0, 0xe, 0x1, 0xc0, 0xe,
0x1, 0xc1, 0xf8, 0x70, 0x3, 0x80, 0x70, 0x3,
0x80, 0x70, 0x3, 0x87, 0xe1, 0xc0, 0xe, 0x1,
0xc0, 0xe, 0x1, 0xc0, 0xe, 0x1f, 0x8e, 0x0,
0x1c, 0xe, 0x0, 0x1c, 0xe, 0x0, 0x1c, 0x7e,
0x38, 0x0, 0x70, 0x38, 0x0, 0x70, 0x38, 0x0,
0x71, 0xf8, 0xe0, 0x1, 0xc0, 0xe0, 0x1, 0xc0,
0xe0, 0x1, 0xc7, 0xe3, 0x80, 0x7, 0x3, 0x80,
0x7, 0x3, 0x80, 0x7, 0x1f, 0x8e, 0x0, 0x1c,
0xe, 0x0, 0x1c, 0xe, 0x0, 0x1c, 0x7e, 0x1c,
0x0, 0xe0, 0x1c, 0x0, 0xe0, 0x1c, 0x0, 0xe1,
0xf8, 0x70, 0x3, 0x80, 0x70, 0x3, 0x80, 0x70,
0x3, 0x87, 0xe0, 0xe0, 0x1c, 0x0, 0xe0, 0x1c,
0x0, 0xe0, 0x1c, 0x1f, 0x81, 0xe1, 0xe0, 0x1,
0xe1, 0xe0, 0x1, 0xe1, 0xe0, 0x7e, 0x3, 0xff,
0x0, 0x3, 0xff, 0x0, 0x3, 0xff, 0x1, 0xf8,
0x3, 0xf0, 0x0, 0x3, 0xf0, 0x0, 0x3, 0xf0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1d, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
/* U+1F6A6 "🚦" */
0x1f, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xf1,
0xc0, 0x0, 0x0, 0x77, 0x0, 0x0, 0x0, 0x7e,
0x0, 0xfe, 0x0, 0xfc, 0x7, 0xff, 0x1, 0xf8,
0x1e, 0xf, 0x3, 0xf0, 0x70, 0x7, 0x7, 0xe0,
0x47, 0xc4, 0xf, 0xc0, 0x3f, 0xe0, 0x1f, 0x80,
0xe1, 0xe0, 0x3f, 0x1, 0x80, 0xc0, 0x7e, 0x6,
0x0, 0xc0, 0xfc, 0xc, 0x1, 0x81, 0xf8, 0x18,
0x3, 0x3, 0xf0, 0x30, 0x6, 0x7, 0xe0, 0x60,
0xc, 0xf, 0xc0, 0x60, 0x30, 0x1f, 0x80, 0xe0,
0xe0, 0x3f, 0x0, 0xff, 0x80, 0x7e, 0x0, 0x7c,
0x0, 0xfc, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0,
0x3, 0xf0, 0x7, 0xf0, 0x7, 0xe0, 0x3f, 0xf8,
0xf, 0xc0, 0xf0, 0x78, 0x1f, 0x83, 0x80, 0x38,
0x3f, 0x2, 0x3e, 0x20, 0x7e, 0x1, 0xff, 0x0,
0xfc, 0x7, 0x8e, 0x1, 0xf8, 0xc, 0x6, 0x3,
0xf0, 0x38, 0xe, 0x7, 0xe0, 0x60, 0xc, 0xf,
0xc0, 0xc0, 0x18, 0x1f, 0x81, 0x80, 0x30, 0x3f,
0x3, 0x0, 0x60, 0x7e, 0x7, 0x1, 0xc0, 0xfc,
0x6, 0x3, 0x1, 0xf8, 0x7, 0x1c, 0x3, 0xf0,
0xf, 0xf8, 0x7, 0xe0, 0x7, 0xc0, 0xf, 0xc0,
0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x3f, 0x0,
0x7f, 0x0, 0x7e, 0x3, 0xff, 0x80, 0xfc, 0xf,
0x7, 0x81, 0xf8, 0x38, 0x3, 0x83, 0xf0, 0x23,
0xe2, 0x7, 0xe0, 0x1f, 0xf0, 0xf, 0xc0, 0x78,
0xe0, 0x1f, 0x80, 0xc0, 0x60, 0x3f, 0x3, 0x80,
0xe0, 0x7e, 0x6, 0x0, 0xc0, 0xfc, 0xc, 0x1,
0x81, 0xf8, 0x18, 0x3, 0x3, 0xf0, 0x30, 0x6,
0x7, 0xe0, 0x70, 0x1c, 0xf, 0xc0, 0x60, 0x30,
0x1f, 0x80, 0x71, 0xc0, 0x3f, 0x0, 0xff, 0x80,
0x7e, 0x0, 0x7c, 0x0, 0xee, 0x0, 0x0, 0x3,
0x9f, 0xff, 0xff, 0xfe, 0xf, 0xff, 0xff, 0xf8,
/* U+1F6A7 "🚧" */
0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf0,
0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff,
0x80, 0x3c, 0x3c, 0x0, 0x0, 0x0, 0x0, 0xf8,
0x78, 0xe, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x3c,
0x3, 0x83, 0x89, 0x1c, 0x0, 0x0, 0x0, 0x7,
0x12, 0x38, 0x70, 0xc3, 0x80, 0x0, 0x0, 0x1,
0xe2, 0x87, 0xc, 0x18, 0x30, 0x0, 0x0, 0x0,
0x38, 0x70, 0x61, 0x8f, 0xe6, 0x0, 0x0, 0x0,
0x7, 0x3f, 0xcc, 0x30, 0xf0, 0xc0, 0x0, 0x0,
0x0, 0xe1, 0xe1, 0x86, 0x1f, 0x18, 0x0, 0x0,
0x0, 0x1c, 0x3c, 0x30, 0xe5, 0x7, 0x0, 0x0,
0x0, 0x3, 0xca, 0x4e, 0x1c, 0x20, 0xe0, 0x0,
0x0, 0x0, 0x38, 0x41, 0xc1, 0xc0, 0x38, 0x0,
0x0, 0x0, 0x3, 0x80, 0x70, 0x1e, 0x1e, 0x0,
0x0, 0x0, 0x0, 0x7c, 0x3c, 0x1, 0xff, 0x80,
0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x3f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x7, 0xfe,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x83, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x7, 0xfc, 0x0, 0x3f, 0xc0, 0x1, 0xff,
0xe0, 0x1, 0xff, 0x0, 0xf, 0xf0, 0x0, 0x7f,
0xf8, 0x0, 0x7f, 0xc0, 0x3, 0xfc, 0x0, 0x1f,
0xff, 0x0, 0x1f, 0xf0, 0x0, 0xff, 0x0, 0x7,
0xff, 0xe0, 0x7, 0xfc, 0x0, 0x3f, 0xc0, 0x1,
0xff, 0xfc, 0x1, 0xff, 0x0, 0xf, 0xf0, 0x0,
0x7f, 0xdf, 0x80, 0x7f, 0xc0, 0x3, 0xfc, 0x0,
0x1f, 0xf3, 0xf0, 0x1f, 0xf0, 0x0, 0xff, 0x0,
0x7, 0xfc, 0x7e, 0x7, 0xfc, 0x0, 0x3f, 0xc0,
0x1, 0xff, 0xf, 0xc0, 0xff, 0x0, 0xf, 0xf8,
0x0, 0x7f, 0xc1, 0xf8, 0x3f, 0xc0, 0x3, 0xfe,
0x0, 0x1f, 0xf0, 0x3f, 0xf, 0xf0, 0x0, 0xff,
0x80, 0x7, 0xfc, 0x7, 0xe3, 0xfc, 0x0, 0x3f,
0xe0, 0x1, 0xff, 0x0, 0xfc, 0xff, 0x0, 0xf,
0xf8, 0x0, 0x7f, 0xc0, 0x1f, 0xbf, 0xc0, 0x3,
0xfe, 0x0, 0x1f, 0xf0, 0x3, 0xff, 0xf0, 0x0,
0xff, 0x80, 0x7, 0xfc, 0x0, 0x7f, 0xfc, 0x0,
0x1f, 0xe0, 0x1, 0xff, 0x0, 0xf, 0xff, 0x0,
0x7, 0xf8, 0x0, 0x7f, 0xc0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0xe1, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xc3, 0x80,
0x1c, 0x38, 0x0, 0x0, 0x0, 0x0, 0x38, 0x70,
0x3, 0x87, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe,
0x0, 0x70, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xe1,
0xc0, 0xe, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x38, 0x1, 0xc3, 0x80, 0x0, 0x0, 0x0, 0x3,
0x87, 0x0, 0x38, 0x70, 0x0, 0x0, 0x0, 0x0,
0x70, 0xe0, 0x7, 0xe, 0x0, 0x0, 0x0, 0x0,
0xe, 0x1c, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x0,
0x1, 0xc3, 0x80, 0x1c, 0x38, 0x0, 0x0, 0x0,
0x0, 0x38, 0x70, 0x3, 0x87, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe, 0x0, 0x70, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0xe, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x38, 0x1, 0xc3, 0x80, 0x0,
0x0, 0x0, 0x3, 0x87, 0x0, 0x38, 0x70, 0x0,
0x0, 0x0, 0x0, 0x70, 0xe0, 0x7, 0xe, 0x0,
0x0, 0x0, 0x0, 0xe, 0x1c, 0x0, 0xe1, 0xc0,
0x0, 0x0, 0x0, 0x1, 0xc3, 0x80, 0x1c, 0x38,
0x0, 0x0, 0x0, 0x0, 0x38, 0x70, 0x3, 0x87,
0x0, 0x0, 0x0, 0x0, 0x7, 0xe, 0x0, 0x70,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xe1, 0xc0, 0xe,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x38, 0x1,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0,
0xf, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x80,
/* U+1F6A8 "🚨" */
0x0, 0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xfb, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xff, 0xff, 0xdf, 0xff, 0xf8, 0x0, 0x0, 0x7,
0xff, 0xfe, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x77,
0xff, 0xf7, 0xff, 0xf7, 0x0, 0x0, 0x3, 0xdf,
0xff, 0x9f, 0xff, 0x78, 0x0, 0x0, 0x3e, 0x7f,
0xf8, 0xff, 0xf3, 0xe0, 0x0, 0x1, 0xf9, 0xff,
0xc7, 0xff, 0x3f, 0x0, 0x0, 0xf, 0xe7, 0xfe,
0x3f, 0xf3, 0xf8, 0x0, 0x0, 0xff, 0x1f, 0xf1,
0xff, 0x1f, 0xc0, 0x0, 0x7, 0xfc, 0x7f, 0x8f,
0xf1, 0xff, 0x0, 0x0, 0x3f, 0xf1, 0xfc, 0x7f,
0xf, 0xf8, 0x0, 0x1, 0xff, 0x87, 0xe3, 0xf0,
0xff, 0xc0, 0x0, 0xf, 0xfe, 0x1f, 0x1f, 0xf,
0xfe, 0x0, 0x0, 0xff, 0xf0, 0x70, 0x70, 0x7f,
0xf8, 0x0, 0x7, 0xff, 0xc1, 0x83, 0x7, 0xff,
0xc0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x7f, 0xfe,
0x0, 0x1, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xf0,
0x0, 0xf, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0x80,
0x0, 0xff, 0xff, 0x0, 0x1, 0xff, 0xfe, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x3f, 0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x1,
0xfe, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0xf,
0xfe, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x7f,
0xfc, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x7, 0xff,
0xf0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x3f, 0xff,
0x80, 0x0, 0xf, 0xff, 0xe0, 0x1, 0xff, 0xf8,
0x0, 0x0, 0x3f, 0xff, 0x0, 0xf, 0xff, 0x80,
0x0, 0x0, 0xff, 0xf8, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x0, 0x0,
0x0, 0x7, 0xfe, 0x0, 0x1f, 0xf0, 0x18, 0x0,
0x30, 0x1f, 0xf0, 0x0, 0xfe, 0x7, 0xc0, 0x1,
0xf0, 0x3f, 0x80, 0x7, 0xe0, 0xfe, 0x0, 0xf,
0xe0, 0xfc, 0x0, 0x7e, 0x1f, 0xf0, 0xf8, 0x7f,
0xc3, 0xe0, 0x3, 0xc7, 0xff, 0x7, 0xc1, 0xff,
0xc7, 0x80, 0x1c, 0xff, 0xf8, 0x7f, 0xf, 0xff,
0x9c, 0x0, 0xff, 0xff, 0xc3, 0xf8, 0x7f, 0xff,
0xe0, 0x7, 0xff, 0xfc, 0x3f, 0xe1, 0xff, 0xff,
0x0, 0x3f, 0xff, 0xe3, 0xff, 0x8f, 0xff, 0xf8,
0x1, 0xff, 0xff, 0x1f, 0xfc, 0x7f, 0xff, 0xc0,
0xf, 0xff, 0xf9, 0xff, 0xf3, 0xff, 0xfe, 0x0,
0x7f, 0xff, 0x8f, 0xff, 0x8f, 0xff, 0xf0, 0x7,
0xff, 0xfc, 0xff, 0xfe, 0x7f, 0xff, 0xc0, 0xff,
0xff, 0xe7, 0xff, 0xf3, 0xff, 0xff, 0x87, 0xff,
0xfe, 0x7f, 0xff, 0xcf, 0xff, 0xfc, 0x37, 0xff,
0xf7, 0xff, 0xff, 0x7f, 0xff, 0x63, 0x8f, 0xff,
0xbf, 0xff, 0xfb, 0xff, 0xe3, 0x9c, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x1c, 0xe0, 0x7, 0xff,
0xff, 0xff, 0xfc, 0x0, 0xe6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x19, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xdc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xc1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3,
0xfc, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0x7, 0xff, 0xff, 0xfc, 0x0, 0x0,
/* U+1F6A9 "🚩" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0xf, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe1, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0xff, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x1f, 0xf0,
0xf0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0xff, 0xfe,
0xe0, 0x0, 0x0, 0x78, 0x0, 0x3, 0xe0, 0x7c,
0xe0, 0x0, 0x0, 0x1c, 0x0, 0x7, 0x81, 0xf0,
0xf0, 0x0, 0x0, 0xf, 0x0, 0x1e, 0x3, 0xc0,
0x70, 0x0, 0x0, 0x7, 0xc0, 0xf8, 0x7, 0x80,
0x70, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xf, 0x0,
0x70, 0x0, 0x0, 0x0, 0x7f, 0x0, 0x1c, 0x0,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x3f, 0xe0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x1, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x7, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+1F6AA "🚪" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0,
0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x3, 0xf0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0xfc, 0x1f, 0xff, 0xff, 0x87, 0xe0, 0xff, 0xff,
0xfc, 0x3f, 0x6, 0x0, 0x0, 0x61, 0xf8, 0x30,
0x0, 0x3, 0xf, 0xc1, 0x80, 0x0, 0x18, 0x7e,
0xc, 0x0, 0x0, 0xc3, 0xf0, 0x60, 0x0, 0x6,
0x1f, 0x83, 0x0, 0x0, 0x30, 0xfc, 0x18, 0x0,
0x1, 0x87, 0xe0, 0xc0, 0x0, 0xc, 0x3f, 0x6,
0x0, 0x0, 0x61, 0xf8, 0x30, 0x0, 0x3, 0xf,
0xc1, 0x80, 0x0, 0x18, 0x7e, 0xc, 0x0, 0x0,
0xc3, 0xf0, 0x60, 0x0, 0x6, 0x1f, 0x83, 0x0,
0x0, 0x30, 0xfc, 0x18, 0x0, 0x1, 0x87, 0xe0,
0xc0, 0x0, 0xc, 0x3f, 0x6, 0x0, 0x0, 0x61,
0xf8, 0x3f, 0xff, 0xff, 0xf, 0xc1, 0xff, 0xff,
0xf8, 0x7e, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x0,
0x0, 0x0, 0x1f, 0x86, 0x0, 0x0, 0x0, 0xfc,
0x78, 0x0, 0x0, 0x7, 0xe3, 0xc0, 0x0, 0x0,
0x3f, 0x1e, 0x0, 0x0, 0x1, 0xf8, 0xe0, 0x0,
0x0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x7e, 0x0,
0x0, 0x0, 0x3, 0xf0, 0x7f, 0xff, 0xfe, 0x1f,
0x83, 0xff, 0xff, 0xf0, 0xfc, 0x18, 0x0, 0x1,
0x87, 0xe0, 0xc0, 0x0, 0xc, 0x3f, 0x6, 0x0,
0x0, 0x61, 0xf8, 0x30, 0x0, 0x3, 0xf, 0xc1,
0x80, 0x0, 0x18, 0x7e, 0xc, 0x0, 0x0, 0xc3,
0xf0, 0x60, 0x0, 0x6, 0x1f, 0x83, 0x0, 0x0,
0x30, 0xfc, 0x18, 0x0, 0x1, 0x87, 0xe0, 0xc0,
0x0, 0xc, 0x3f, 0x6, 0x0, 0x0, 0x61, 0xf8,
0x30, 0x0, 0x3, 0xf, 0xc1, 0x80, 0x0, 0x18,
0x7e, 0xc, 0x0, 0x0, 0xc3, 0xf0, 0x60, 0x0,
0x6, 0x1f, 0x83, 0x0, 0x0, 0x30, 0xfc, 0x18,
0x0, 0x1, 0x87, 0xe0, 0xff, 0xff, 0xfc, 0x3f,
0x7, 0xff, 0xff, 0xe1, 0xf8, 0x0, 0x0, 0x0,
0xf, 0xc0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0,
0x0, 0x3, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
/* U+1F6AB "🚫" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1c, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x3c, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0xf, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x3, 0xc0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x38, 0x7, 0x0, 0x3c, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x3, 0xc0, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x7c, 0x0, 0x0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0x1f, 0x0, 0x0,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xe, 0x70, 0x0, 0x1, 0xf0, 0x0,
0x0, 0x0, 0x7, 0x38, 0x0, 0x0, 0x7c, 0x0,
0x0, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x7, 0xc0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x1, 0xf0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x1e,
0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x78, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x1e, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x7, 0x80, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x78, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x1e, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x7, 0x80, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x1, 0xe0, 0x0, 0x7, 0x38, 0x0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x7, 0x80, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x78, 0x0, 0xe0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x1e, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x7, 0x80, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x1, 0xe0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x78, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x1e, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x7, 0xb8, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F6AC "🚬" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xde, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x63, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x31, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x18, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0x33, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0x1c, 0xff, 0xff, 0xff, 0x80, 0x0,
0x0, 0x3, 0x7, 0x7, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x1, 0x81, 0xc0, 0x0, 0x0, 0x1f, 0xe0,
0x0, 0x0, 0xc0, 0x78, 0x0, 0x0, 0x0, 0x7c,
0x0, 0x0, 0x70, 0xf, 0x80, 0x0, 0x0, 0x7,
0x80, 0x0, 0x18, 0x1, 0xfc, 0x0, 0x0, 0x0,
0xe0, 0x0, 0xc, 0x0, 0x3f, 0xf8, 0x0, 0x0,
0x38, 0x0, 0x7, 0x0, 0x1, 0xff, 0xf0, 0x0,
0xe, 0x0, 0x1, 0xc0, 0x0, 0x3, 0xff, 0x80,
0x3, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x7, 0xf8,
0x1, 0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x3f,
0x0, 0x60, 0x0, 0xf, 0x80, 0x0, 0x0, 0x3,
0xe0, 0x30, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x78, 0x18, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0,
0xe, 0xc, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0,
0x3, 0x6, 0x0, 0x0, 0x3, 0xff, 0xff, 0x0,
0x1, 0xc3, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0,
0x0, 0x61, 0x80, 0x0, 0x0, 0x0, 0x7, 0xfe,
0x0, 0x31, 0x80, 0x0, 0x0, 0x0, 0x0, 0xef,
0xc0, 0x18, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x30,
0xe0, 0xc, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x18,
0x38, 0xc, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1c,
0xc, 0x6, 0x60, 0x0, 0x0, 0x0, 0x0, 0x7c,
0x6, 0x6, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xf8,
0x3, 0x6, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xf0,
0x3, 0x7, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xc0,
0x7, 0x7, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0x0,
0x7, 0xf, 0x80, 0x0, 0x0, 0x0, 0x7c, 0x0,
0x1e, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x70, 0x3,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x70, 0xf,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x7f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x33, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0xcf,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x66,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x3e,
0x3f, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xbf,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xde,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xee,
0x7f, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf3,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf9,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0,
/* U+1F6AD "🚭" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x1e,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x3c,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x3c,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x3e,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x1f,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xdf,
0x80, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0xff,
0x80, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xc0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x3,
0xf0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x1,
0xf8, 0x0, 0x1d, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xfc, 0x0, 0x1c, 0x70, 0x0, 0x0, 0x0, 0x0,
0x7f, 0x0, 0x1e, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xc0, 0xe, 0x7, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xe0, 0xe, 0x1, 0xc0, 0x0, 0x0, 0x0,
0xf, 0xf8, 0x7, 0x0, 0x70, 0x0, 0x0, 0x0,
0x7, 0xfc, 0x7, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x3, 0xf7, 0x3, 0x80, 0x7, 0x0, 0x0, 0x0,
0x1, 0xf3, 0x83, 0x80, 0x1, 0xc0, 0x0, 0x0,
0x0, 0xf8, 0xe1, 0xc0, 0x0, 0x70, 0x0, 0x0,
0x0, 0x78, 0x71, 0xc0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x78, 0x3c, 0xe0, 0x0, 0x7, 0x0, 0x0,
0x0, 0x38, 0xe, 0x70, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x78, 0x7, 0x38, 0x0, 0x0, 0x70, 0x0,
0x0, 0x60, 0x3, 0xb8, 0x0, 0x0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x3f, 0x0, 0xff, 0xff, 0xff,
0xff, 0xc7, 0xe0, 0x1f, 0x80, 0x7f, 0xff, 0xff,
0xff, 0xe3, 0xf0, 0xf, 0xc0, 0x3f, 0xff, 0xff,
0xff, 0xf1, 0xf8, 0x7, 0xe0, 0x1f, 0xff, 0xff,
0xff, 0xf8, 0xfc, 0x3, 0xf0, 0xf, 0xff, 0xff,
0xff, 0xfc, 0x7e, 0x1, 0xf8, 0x7, 0xff, 0xff,
0xff, 0xfe, 0x3f, 0x0, 0xfc, 0x3, 0xff, 0xff,
0xff, 0xff, 0x1f, 0x80, 0x7e, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x70, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0xe, 0x70, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x0, 0x7, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x1, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0xe0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x1, 0xe0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x78, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x1e, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x7, 0xb8, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F6AE "🚮" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 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, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3,
0x0, 0x11, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3,
0x80, 0x8, 0x7f, 0xff, 0xff, 0xff, 0xe0, 0x3,
0xc0, 0x6, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x3, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x1, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x70, 0xff, 0xff, 0xff, 0xf8, 0xff,
0xfe, 0x0, 0x38, 0x7f, 0xff, 0xff, 0xfc, 0x7f,
0xff, 0x0, 0x1e, 0x3f, 0xff, 0xf3, 0xfe, 0x3f,
0x9f, 0x80, 0xf, 0xf, 0xff, 0xf9, 0xff, 0xff,
0x8f, 0xc3, 0x7, 0x87, 0xff, 0xfc, 0xff, 0xff,
0xcf, 0xe1, 0x83, 0xe7, 0xff, 0xfe, 0x3f, 0xff,
0xe7, 0xf0, 0xc1, 0xff, 0xff, 0xff, 0x9e, 0x3f,
0xf3, 0xf8, 0x60, 0xff, 0xff, 0xff, 0xcf, 0x1f,
0xf1, 0xfc, 0x30, 0x7f, 0xff, 0xff, 0xe7, 0xff,
0xf9, 0xfe, 0x18, 0x3f, 0xff, 0xff, 0xf1, 0xff,
0xfc, 0xff, 0xc, 0x1f, 0xff, 0xff, 0xfc, 0xff,
0xfe, 0x7f, 0x86, 0xf, 0xff, 0xff, 0xfe, 0x7f,
0x1f, 0x3f, 0xc3, 0x7, 0xff, 0xff, 0xff, 0x3f,
0x8f, 0x3f, 0xe1, 0x83, 0xff, 0xff, 0xff, 0x8f,
0xc7, 0x9f, 0xf0, 0xc1, 0xff, 0xff, 0xff, 0xe7,
0xff, 0xcf, 0xf8, 0x60, 0xff, 0xff, 0xff, 0xf3,
0xff, 0xe7, 0xfc, 0x30, 0x7f, 0xff, 0xff, 0xf9,
0xff, 0xe3, 0xfe, 0x18, 0x3f, 0xff, 0xff, 0xfc,
0xff, 0xf3, 0xff, 0xc, 0x1f, 0xff, 0xff, 0xff,
0x3f, 0xf9, 0xff, 0x86, 0xf, 0xff, 0xff, 0xff,
0x9f, 0xfc, 0xff, 0xc3, 0x7, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x7f, 0xe1, 0x83, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x7f, 0xf0, 0xc1, 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, 0xfb,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
/* U+1F6AF "🚯" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x7, 0x80, 0x7,
0x80, 0x0, 0x3c, 0x0, 0x0, 0xf, 0xe0, 0x1,
0xe0, 0x0, 0x1f, 0x0, 0x0, 0x7, 0xf8, 0x0,
0x70, 0x0, 0x1f, 0xc0, 0x0, 0x7, 0xfc, 0x0,
0x1c, 0x0, 0x1c, 0xf0, 0x0, 0x3, 0xfe, 0x0,
0x7, 0x0, 0x1e, 0x3c, 0x0, 0x0, 0xff, 0x0,
0x3, 0xc0, 0xe, 0x7, 0x0, 0x0, 0x7f, 0x0,
0x0, 0xe0, 0xe, 0x1, 0xc0, 0x0, 0xf, 0x0,
0x0, 0x38, 0x7, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x1c, 0x0, 0x3, 0xf0,
0x0, 0x7, 0x3, 0x80, 0x7, 0x0, 0x7, 0xfc,
0x0, 0x3, 0x83, 0x80, 0x1, 0xc0, 0x7, 0xff,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x70, 0xf, 0xff,
0xc0, 0x0, 0x71, 0xc0, 0x0, 0x1c, 0xf, 0xff,
0xe0, 0x0, 0x3c, 0xe0, 0x0, 0x7, 0xf, 0xff,
0xf8, 0x0, 0xe, 0x70, 0x0, 0x1, 0xcf, 0x7f,
0xfc, 0x0, 0x7, 0x38, 0x0, 0x7, 0xff, 0x3f,
0xfe, 0x0, 0x3, 0xb8, 0x0, 0x7, 0xff, 0x1f,
0xfb, 0x80, 0x0, 0xfc, 0x0, 0x1, 0xff, 0xf,
0xfd, 0xc0, 0x0, 0x7e, 0x0, 0x0, 0x1, 0xc7,
0xfe, 0x70, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x73,
0xff, 0x38, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x1d,
0xff, 0x9c, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x7,
0xff, 0xc7, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x1,
0xff, 0xe3, 0x80, 0x3, 0xf0, 0x0, 0x0, 0x0,
0x7f, 0xf0, 0xe0, 0x1, 0xf8, 0x0, 0x70, 0x0,
0x1f, 0xf8, 0x70, 0x0, 0xfc, 0x0, 0x38, 0x0,
0xf, 0xfc, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x7, 0xfe, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x3, 0xff, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x1, 0xff, 0x80, 0x0, 0x1c, 0xe0, 0x38, 0x0,
0x0, 0xf7, 0xc0, 0x0, 0xe, 0x70, 0x1c, 0x0,
0x0, 0x79, 0xe0, 0x0, 0x7, 0x3c, 0xe, 0x0,
0x0, 0x3c, 0xf0, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x0, 0x1e, 0x7c, 0x0, 0x3, 0x87, 0x0, 0x0,
0x0, 0xf, 0x3f, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0x0, 0x7, 0x9f, 0xc0, 0x1, 0xc0, 0xe0, 0xe,
0x0, 0x3, 0xcf, 0x70, 0x0, 0xe0, 0x38, 0x7,
0x0, 0x1, 0xe7, 0x9c, 0x0, 0xe0, 0x1c, 0x3,
0x80, 0x0, 0xf3, 0xc7, 0x0, 0x70, 0x7, 0x0,
0x0, 0x0, 0x79, 0xe1, 0xc0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x3c, 0xf0, 0x70, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x1e, 0x78, 0x1c, 0x38, 0x0, 0x38,
0x0, 0x0, 0xf, 0x3c, 0x7, 0x38, 0x0, 0xe,
0x0, 0x0, 0x7, 0x9e, 0x1, 0xf8, 0x0, 0x7,
0x80, 0x0, 0x1, 0x86, 0x0, 0x78, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F6B0 "🚰" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x3f, 0x87, 0xf3, 0xff,
0xff, 0xff, 0xff, 0xff, 0x8f, 0xc3, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xf8, 0xfc, 0x3f, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xfc, 0xfe, 0x1f, 0xcf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f,
0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xf,
0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3,
0xf8, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1,
0xfc, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0x81, 0xfc, 0x0,
0xf, 0xe1, 0xff, 0xff, 0xff, 0xc1, 0xff, 0x0,
0x7, 0xf0, 0xff, 0xff, 0xff, 0xc1, 0xff, 0x80,
0x3, 0xf8, 0x7f, 0xff, 0xff, 0xe1, 0xff, 0xe0,
0x3, 0xfc, 0x3f, 0xff, 0xff, 0xf0, 0xff, 0xf8,
0x7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff,
0x8f, 0xff, 0xff, 0xff, 0xff, 0xfc, 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, 0xcf, 0xff, 0xff,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xff,
0xbf, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff,
0x9f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff,
0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff,
0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xff,
0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xff,
0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff,
0xfe, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7f,
0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x7f, 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, 0xfb,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
/* U+1F6B1 "🚱" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x1e, 0x0, 0x7,
0x80, 0x0, 0x3c, 0x0, 0xc, 0xf, 0x3, 0x1,
0xe0, 0x0, 0x1f, 0x0, 0x6, 0x7, 0x81, 0x80,
0x70, 0x0, 0x1d, 0xc0, 0x3, 0xff, 0xff, 0xc0,
0x1c, 0x0, 0x1c, 0x70, 0x1, 0xff, 0xff, 0xe0,
0x7, 0x0, 0x1e, 0x1c, 0x0, 0xff, 0xff, 0xf0,
0x3, 0xc0, 0xe, 0x7, 0x0, 0x60, 0x78, 0x18,
0x0, 0xe0, 0xe, 0x1, 0xc0, 0x30, 0x3c, 0xc,
0x0, 0x38, 0x7, 0x0, 0x70, 0x0, 0x1e, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x1c, 0x0, 0xf, 0x0,
0x0, 0x7, 0x3, 0x80, 0x7, 0x0, 0xf, 0xc0,
0x3, 0x3, 0x83, 0x80, 0x1, 0xc0, 0x1f, 0xf8,
0x7, 0x80, 0xe1, 0xc0, 0x0, 0x70, 0x1f, 0xfe,
0x3, 0xc0, 0x71, 0xc0, 0x0, 0x1c, 0xf, 0xff,
0x1, 0xe0, 0x3c, 0xe0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xf0, 0xe, 0x70, 0x0, 0xf, 0xff, 0xff,
0xff, 0xf8, 0x7, 0x38, 0x0, 0xf, 0xff, 0xff,
0xff, 0xfc, 0x3, 0xb8, 0x0, 0xf, 0xff, 0xff,
0xff, 0xfe, 0x0, 0xfc, 0x0, 0xf, 0xc7, 0xff,
0xf8, 0xf, 0x0, 0x7e, 0x0, 0x7, 0xc1, 0xff,
0xfc, 0x7, 0x80, 0x3f, 0x0, 0x3, 0xc0, 0x7f,
0xfe, 0x3, 0xc0, 0x1f, 0x80, 0x3, 0xe0, 0x1f,
0xfe, 0x1, 0xe0, 0xf, 0xc0, 0x1, 0xe0, 0x7,
0xfe, 0x0, 0x0, 0x7, 0xe0, 0x0, 0xf0, 0x1,
0xdc, 0x0, 0x0, 0x3, 0xf0, 0x0, 0x78, 0x0,
0x70, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x70, 0x0, 0x0, 0x3d, 0xc0, 0xe0, 0x3,
0x80, 0x1c, 0x0, 0x0, 0x1c, 0xe0, 0x3f, 0xff,
0x80, 0x7, 0x0, 0x0, 0xe, 0x70, 0x18, 0x0,
0xc0, 0x1, 0xc0, 0x0, 0x7, 0x3c, 0xc, 0x0,
0x60, 0x0, 0x78, 0x0, 0x7, 0x8e, 0x7, 0x0,
0x70, 0x0, 0x1e, 0x0, 0x3, 0x87, 0x1, 0x80,
0x30, 0x0, 0x7, 0x80, 0x1, 0xc1, 0xc0, 0xc0,
0x18, 0x0, 0x1, 0xe0, 0x1, 0xc0, 0xe0, 0x7f,
0xfc, 0x0, 0x0, 0x78, 0x0, 0xe0, 0x38, 0x3f,
0xfe, 0x0, 0x0, 0x1e, 0x0, 0xe0, 0x1c, 0xf,
0xfe, 0x0, 0x0, 0x7, 0x80, 0x70, 0x7, 0x7,
0xff, 0x0, 0x0, 0x1, 0xe0, 0x70, 0x3, 0xc3,
0xff, 0x80, 0x0, 0x0, 0x78, 0x78, 0x0, 0xe1,
0xff, 0xc0, 0x0, 0x0, 0x1e, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x7, 0xb8, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F6B2 "🚲" */
0x0, 0x1f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3c, 0x0, 0x67, 0x0, 0x1f,
0xff, 0x80, 0x0, 0x0, 0x3c, 0x0, 0x73, 0x80,
0x1f, 0xff, 0xe0, 0x0, 0x0, 0x1c, 0x0, 0x31,
0x80, 0x7, 0xff, 0xe0, 0x0, 0x0, 0xe, 0x0,
0x18, 0xc0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x7,
0x0, 0x1c, 0xe0, 0x0, 0x37, 0xc0, 0x0, 0x0,
0x3, 0xc0, 0xc, 0x60, 0x0, 0x18, 0xc0, 0x0,
0x0, 0x0, 0xf8, 0x6, 0x30, 0x0, 0xc, 0x60,
0x0, 0x0, 0x0, 0x3c, 0x7, 0x3f, 0xff, 0xfc,
0x70, 0x0, 0x0, 0x0, 0x0, 0x3, 0x1f, 0xff,
0xfe, 0x30, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80,
0x0, 0x0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x63, 0xff, 0xff, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x31, 0xff, 0xff, 0xc4, 0x60,
0x0, 0x0, 0x0, 0x0, 0x38, 0xe0, 0x0, 0x62,
0x38, 0x0, 0x0, 0x0, 0x0, 0x18, 0x38, 0x0,
0x71, 0x8c, 0x0, 0x0, 0x0, 0x0, 0xc, 0x8e,
0x0, 0x31, 0xc7, 0x0, 0x0, 0x0, 0x7, 0xfe,
0x63, 0x80, 0x18, 0xf1, 0xff, 0x80, 0x0, 0xf,
0xfe, 0x38, 0xe0, 0x1c, 0x78, 0xff, 0xf8, 0x0,
0x1f, 0xff, 0x1e, 0x38, 0xc, 0x6e, 0x3f, 0xfe,
0x0, 0x1f, 0xff, 0x9f, 0xe, 0x6, 0x33, 0xf,
0xff, 0xc0, 0x1f, 0xcd, 0x8f, 0xc3, 0x87, 0x19,
0xc7, 0xf, 0xf0, 0x1f, 0x86, 0xc7, 0xf0, 0xe3,
0x1d, 0xe1, 0x81, 0xfc, 0x1f, 0x3, 0xe7, 0xfc,
0x39, 0x8d, 0xf8, 0xe1, 0xbe, 0xf, 0xc1, 0xf3,
0xf7, 0xf, 0xc7, 0xfc, 0x31, 0x8f, 0x8f, 0x60,
0xf1, 0xbd, 0xc3, 0xc7, 0xf3, 0x1c, 0xc3, 0xe7,
0x9c, 0x71, 0xde, 0x70, 0xe3, 0xf9, 0x86, 0xc0,
0xf7, 0x87, 0x38, 0xe7, 0x9c, 0x3f, 0xf8, 0x63,
0xe0, 0x7b, 0xc1, 0xfc, 0xe3, 0xc7, 0x3f, 0xfc,
0x33, 0xe0, 0x3f, 0xc0, 0x7f, 0xe0, 0xe1, 0xfd,
0xff, 0xff, 0xf0, 0xff, 0xe0, 0x18, 0xe0, 0x70,
0x7c, 0x7f, 0xff, 0x9f, 0xe7, 0xf0, 0x18, 0x70,
0x38, 0x1c, 0x1f, 0xff, 0x87, 0x83, 0xff, 0xfc,
0x3f, 0xfc, 0x6, 0xc, 0x0, 0xc3, 0x1, 0xfc,
0x2, 0x18, 0xe, 0x3, 0xee, 0x0, 0x71, 0x80,
0xfe, 0x1, 0xf8, 0x7, 0x1, 0xf7, 0xff, 0xff,
0xf0, 0x7f, 0x81, 0xfe, 0x7, 0x80, 0x7f, 0xff,
0xff, 0x9c, 0x7f, 0xc1, 0x99, 0x83, 0xc0, 0x3e,
0x3c, 0x6, 0xc3, 0xbc, 0xf1, 0x8c, 0x63, 0xc0,
0x38, 0x1f, 0x6, 0x20, 0x7e, 0x79, 0x86, 0x1d,
0xe1, 0xf8, 0x7, 0x82, 0x18, 0x1f, 0x1f, 0x83,
0x7, 0xe0, 0xfc, 0x3, 0xe3, 0xc, 0x1f, 0xf,
0x81, 0x81, 0xf0, 0x7e, 0x0, 0xfb, 0x6, 0x1f,
0x3, 0xf0, 0xc1, 0xf0, 0x3f, 0x0, 0x3f, 0x81,
0x1f, 0x80, 0xfe, 0x67, 0xf0, 0x0, 0x0, 0xf,
0xe0, 0xff, 0x80, 0x3f, 0xff, 0xf0, 0x0, 0x0,
0x3, 0xff, 0xff, 0x80, 0xf, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3f,
0xc0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0,
/* U+1F6B3 "🚳" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x1d, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x1c, 0x78, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x1e, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x7, 0x80, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xe, 0x1, 0xe0, 0x3c, 0x0, 0x0,
0x0, 0x38, 0x7, 0x0, 0x78, 0x7e, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0xe, 0x70, 0x3, 0xf8,
0x0, 0x7, 0x3, 0x80, 0x3, 0xb0, 0x1, 0xfc,
0x0, 0x3, 0x83, 0x80, 0x0, 0xf8, 0x0, 0x18,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x3c, 0x0, 0x18,
0x0, 0x0, 0x71, 0xc0, 0x0, 0xf, 0x0, 0xc,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x3, 0xff, 0xff,
0x80, 0x0, 0xe, 0x70, 0x0, 0x1, 0xff, 0xff,
0xe0, 0x0, 0x7, 0x38, 0x0, 0x0, 0xf8, 0x6,
0x30, 0x0, 0x3, 0xb8, 0x0, 0x0, 0xce, 0x3,
0x18, 0x0, 0x0, 0xfc, 0x0, 0x1f, 0xe3, 0x81,
0x87, 0xf0, 0x0, 0x7e, 0x0, 0x3f, 0xf0, 0xe1,
0x87, 0xfe, 0x0, 0x3f, 0x0, 0x78, 0x3e, 0x38,
0xcf, 0x83, 0xc0, 0x1f, 0x80, 0x70, 0x1b, 0x8e,
0xce, 0xc0, 0x70, 0xf, 0xc0, 0x30, 0x18, 0xc3,
0xe6, 0x30, 0x18, 0x7, 0xe0, 0x30, 0xc, 0x30,
0xe6, 0x18, 0x6, 0x3, 0xf0, 0x18, 0x6, 0x18,
0x3b, 0xc, 0x3, 0x1, 0xf8, 0x18, 0x6, 0x6,
0xf, 0x2, 0x0, 0xc0, 0xfc, 0xc, 0x3, 0x3,
0x3, 0x81, 0x80, 0x60, 0x7e, 0x6, 0x3, 0x1,
0x80, 0xe0, 0xc0, 0x30, 0x3f, 0x3, 0x0, 0x80,
0xc0, 0x7f, 0xe0, 0x18, 0x3d, 0xc1, 0x80, 0x0,
0x60, 0x3f, 0xf8, 0xc, 0x1c, 0xe0, 0xc0, 0x0,
0x30, 0x1b, 0x80, 0x6, 0xe, 0x70, 0x30, 0x0,
0x30, 0x6, 0xe0, 0x6, 0x7, 0x3c, 0x18, 0x0,
0x18, 0x3, 0x38, 0x3, 0x7, 0x8e, 0x6, 0x0,
0x18, 0x0, 0xce, 0x3, 0x3, 0x87, 0x3, 0x80,
0x1c, 0x0, 0x73, 0x83, 0x81, 0xc1, 0xc0, 0xf0,
0x3c, 0x0, 0x1e, 0xe7, 0x81, 0xc0, 0xe0, 0x1f,
0xf8, 0x0, 0x3, 0xff, 0x0, 0xe0, 0x38, 0x3,
0xf0, 0x0, 0x0, 0x7e, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x70, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x70, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x38, 0x78, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x38, 0x0, 0x38,
0x0, 0x0, 0x0, 0x0, 0x3, 0xb8, 0x0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F6B4 "🚴" */
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3c, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0xc,
0x0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0,
0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0,
0xc, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0x0,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0, 0x3c,
0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xd8, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xcb, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xfe, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf3, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xfe, 0x7f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xcf, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0xfd, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfb,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xfe, 0x3f,
0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xc1, 0xff,
0xf8, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x1f, 0xff,
0xe0, 0x0, 0x0, 0x3f, 0xfe, 0x1, 0xff, 0xff,
0x0, 0x0, 0x3, 0x9f, 0x80, 0x1f, 0xff, 0x38,
0x0, 0x0, 0x19, 0xf8, 0x1, 0xff, 0xf1, 0x80,
0x0, 0x1, 0x99, 0x80, 0x1f, 0xfe, 0x18, 0x0,
0x0, 0xf, 0x3f, 0xfb, 0xff, 0xc1, 0x80, 0x0,
0x0, 0x70, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x6, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0,
0x60, 0x0, 0x7f, 0xec, 0x0, 0x0, 0x0, 0x6,
0xf, 0xf, 0xf9, 0xc0, 0x0, 0x0, 0x0, 0xc0,
0x7f, 0xff, 0x1c, 0x0, 0x0, 0x0, 0xc, 0x47,
0x7f, 0xe0, 0xe0, 0x0, 0x0, 0x0, 0xc6, 0x31,
0xfe, 0x7, 0x0, 0x0, 0x0, 0xc, 0xf1, 0x9f,
0xc4, 0x38, 0x0, 0x0, 0x1, 0x8f, 0xd, 0xfc,
0xe3, 0x80, 0x0, 0x0, 0xf8, 0xf8, 0xff, 0xdf,
0x1f, 0xf0, 0x0, 0x3f, 0x8d, 0xc7, 0xff, 0xb8,
0xff, 0xc0, 0xf, 0x39, 0xee, 0x3f, 0xf1, 0xc6,
0x1f, 0x1, 0xc3, 0x1f, 0xf1, 0xfe, 0xc, 0x70,
0x78, 0x38, 0x31, 0xff, 0x1f, 0xc1, 0xe3, 0x83,
0xc7, 0x83, 0x3b, 0xf8, 0xfc, 0x3f, 0x1c, 0x1e,
0x70, 0x73, 0x1d, 0xdf, 0xff, 0xf8, 0xc0, 0xe7,
0x6, 0x31, 0xcf, 0xff, 0xff, 0xce, 0xe, 0xe0,
0x63, 0xe, 0x7f, 0xc0, 0x0, 0x60, 0x7e, 0x6,
0x70, 0xe7, 0xf8, 0x0, 0x3, 0x7, 0xe0, 0xc6,
0xe, 0x3f, 0x0, 0x0, 0x30, 0x7e, 0x6, 0x60,
0xe7, 0xff, 0xff, 0xfe, 0x7, 0xe0, 0x7e, 0xe,
0x7f, 0xff, 0xff, 0xc0, 0x7e, 0x3, 0x80, 0xe6,
0x6, 0x30, 0x0, 0x7, 0x70, 0x0, 0x1c, 0x60,
0x63, 0x80, 0x0, 0xe7, 0x0, 0x1, 0xc7, 0xfe,
0x38, 0x0, 0xe, 0x38, 0x0, 0x38, 0x7f, 0xe1,
0xc0, 0x1, 0xc3, 0xc0, 0x7, 0x80, 0x0, 0xe,
0x0, 0x3c, 0x1e, 0x0, 0xf0, 0x0, 0x0, 0xf0,
0x7, 0x80, 0xf8, 0x3e, 0x0, 0x0, 0x7, 0xc1,
0xf0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfc,
0x0, 0xf, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0x0,
/* U+1F6B5 "🚵" */
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x80,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6, 0x0, 0x3, 0x0, 0x3f, 0x0, 0x0,
0x0, 0x0, 0x6, 0x0, 0x3, 0x0, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x6, 0x0, 0x7f, 0x3, 0xe0,
0xf0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0x7,
0x80, 0x38, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe6,
0xf, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x7, 0xff,
0xe, 0x1c, 0x0, 0xf, 0x0, 0x0, 0x0, 0x1,
0xff, 0xf, 0xb8, 0x0, 0x3, 0x80, 0x0, 0x0,
0x1, 0xff, 0x9f, 0xf0, 0x0, 0x1, 0x80, 0x0,
0x0, 0x0, 0xff, 0x9f, 0xf0, 0x0, 0x0, 0xc0,
0x0, 0x0, 0x0, 0x7f, 0x3f, 0xfc, 0x0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x3f, 0x7f, 0xfe, 0x0,
0x0, 0x70, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0x80, 0x0, 0x18, 0x0, 0x3f, 0x0, 0x1,
0xff, 0xff, 0x80, 0x0, 0x1c, 0x0, 0xff, 0xe0,
0x7, 0xff, 0xff, 0xc0, 0x0, 0xe, 0x1, 0xe1,
0xf8, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x6, 0x3,
0x80, 0x3f, 0x3f, 0xff, 0xff, 0xe0, 0x0, 0x7,
0x7, 0x0, 0xf, 0xff, 0xdf, 0xff, 0xe0, 0x0,
0x3, 0xe, 0x0, 0x3, 0xff, 0x8f, 0xff, 0xe0,
0x0, 0x3, 0xc, 0x0, 0x3f, 0xfe, 0xf, 0xff,
0xe0, 0x0, 0x3, 0x1c, 0x0, 0xff, 0xfc, 0x7,
0xff, 0xf8, 0x0, 0x3, 0x38, 0x0, 0xff, 0xf8,
0x7, 0xff, 0xfc, 0x0, 0x3, 0x30, 0x0, 0xe7,
0xe0, 0x7, 0xff, 0xce, 0x0, 0x3, 0x70, 0x0,
0x67, 0xe0, 0x7, 0xff, 0x86, 0x0, 0x3, 0x60,
0x0, 0x66, 0x60, 0x7, 0xff, 0x86, 0x0, 0x3,
0xe0, 0x0, 0x3c, 0xff, 0xef, 0xff, 0x6, 0x0,
0x3, 0xc0, 0x0, 0x1c, 0xf, 0xff, 0xff, 0xfc,
0x0, 0x3, 0xc0, 0x0, 0x18, 0x0, 0x1f, 0xff,
0xfc, 0x0, 0x3, 0xc0, 0x0, 0x18, 0x0, 0x1f,
0xf3, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x18, 0x3c,
0x3f, 0xe7, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x30,
0x1f, 0xff, 0xc7, 0x0, 0x0, 0x3, 0xc0, 0x0,
0x31, 0x1d, 0xff, 0x83, 0x80, 0x0, 0x3, 0xc0,
0x0, 0x31, 0x8c, 0x7f, 0x81, 0xc0, 0x0, 0x3,
0xc0, 0x0, 0x33, 0xc6, 0x7f, 0x10, 0xe0, 0x0,
0x3, 0xc0, 0x0, 0x63, 0xc3, 0x7f, 0x38, 0xe0,
0x0, 0x3, 0xc0, 0x3, 0xe3, 0xe3, 0xff, 0x7c,
0x7f, 0xc0, 0x3, 0xc0, 0xf, 0xe3, 0x71, 0xff,
0xee, 0x3f, 0xf0, 0x3, 0xc0, 0x3c, 0xe7, 0xb8,
0xff, 0xc7, 0x18, 0x7c, 0x3, 0xc0, 0x70, 0xc7,
0xfc, 0x7f, 0x83, 0x1c, 0x1e, 0x3, 0xc0, 0xe0,
0xc7, 0xfc, 0x7f, 0x7, 0x8e, 0xf, 0x3, 0xc0,
0xe0, 0xce, 0xee, 0x7f, 0xf, 0xc7, 0x7, 0x3,
0xc1, 0xc1, 0xcc, 0x77, 0xff, 0xff, 0xe3, 0x3,
0x83, 0xc1, 0xc1, 0x8c, 0x73, 0xff, 0xff, 0xf3,
0x83, 0x83, 0xc3, 0x81, 0x8c, 0x39, 0xff, 0x0,
0x1, 0x81, 0xc3, 0xc3, 0x81, 0x9c, 0x39, 0xfe,
0x0, 0x0, 0xc1, 0xc3, 0xc3, 0x83, 0x18, 0x38,
0xfc, 0x0, 0x0, 0xc1, 0xc3, 0xc3, 0x81, 0x98,
0x39, 0xff, 0xff, 0xff, 0x81, 0xc3, 0xc3, 0x81,
0xf0, 0x39, 0xff, 0xff, 0xff, 0x1, 0xc3, 0xc3,
0x80, 0xe0, 0x39, 0x81, 0x8c, 0x0, 0x1, 0xc3,
0xc3, 0xc0, 0x0, 0x79, 0x81, 0x8e, 0x0, 0x3,
0xc3, 0xc1, 0xc0, 0x0, 0x71, 0xff, 0x8e, 0x0,
0x3, 0x83, 0xc1, 0xe0, 0x0, 0xf1, 0xff, 0x87,
0x0, 0x7, 0x83, 0xc0, 0xe0, 0x0, 0xe0, 0x0,
0x7, 0x0, 0x7, 0x3, 0xc0, 0xf0, 0x1, 0xe0,
0x0, 0x3, 0x80, 0xf, 0x3, 0xc0, 0x7c, 0x7,
0xc0, 0x0, 0x1, 0xe0, 0x3e, 0x3, 0xe0, 0x3f,
0xff, 0x80, 0x0, 0x0, 0xff, 0xfc, 0x7, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc,
/* U+1F6B6 "🚶" */
0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x1, 0xff,
0xfe, 0x0, 0x0, 0x3f, 0xff, 0xf0, 0x0, 0x7,
0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0,
0x7, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xf8,
0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff,
0xfc, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0xff,
0xff, 0xf8, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0,
0x7f, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xff, 0x0,
0x0, 0x3f, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xfe,
0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0x1, 0xff, 0x0, 0x0, 0x0,
0x3f, 0xf0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe0,
0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xff,
0xf8, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x3f,
0xff, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0,
0xff, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xf8,
0x3, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xff, 0xff,
0xfe, 0xf, 0xe7, 0xff, 0xc7, 0xe1, 0xfe, 0x7f,
0xfc, 0x7e, 0x3f, 0xc7, 0xff, 0xc3, 0xf3, 0xf8,
0x7f, 0xfe, 0x3f, 0x3f, 0x87, 0xff, 0xe3, 0xf3,
0xf0, 0xff, 0xfe, 0x3f, 0x1e, 0xf, 0xff, 0xe3,
0xf0, 0x0, 0xff, 0xfe, 0x3f, 0x0, 0xf, 0xff,
0xe1, 0xe0, 0x1, 0xff, 0xfe, 0x1e, 0x0, 0x1f,
0xff, 0xe0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0x0,
0x3f, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xff, 0x80,
0x0, 0x7f, 0xff, 0xf8, 0x0, 0x7, 0xf8, 0xff,
0xc0, 0x0, 0xff, 0x7, 0xfe, 0x0, 0xf, 0xe0,
0x1f, 0xf0, 0x1, 0xfc, 0x0, 0xff, 0x80, 0x1f,
0xc0, 0x7, 0xfc, 0x3, 0xf8, 0x0, 0x3f, 0xc0,
0x7f, 0x0, 0x3, 0xfe, 0x7f, 0xf0, 0x0, 0x1f,
0xff, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0,
0xf, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xc0,
0x0, 0x1f, 0xe7, 0xf8, 0x0, 0x1, 0xfe, 0x3f,
0x80, 0x0, 0xf, 0xc1, 0xe0, 0x0, 0x0, 0x70,
/* U+1F6B7 "🚷" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x1c,
0x0, 0x0, 0x3c, 0x0, 0x0, 0xf0, 0x0, 0x7,
0x80, 0x0, 0x3e, 0x0, 0x0, 0xfc, 0x0, 0x1,
0xe0, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x0, 0x0,
0x70, 0x0, 0x1c, 0xe0, 0x0, 0x7f, 0x80, 0x0,
0x1c, 0x0, 0x1c, 0x38, 0x0, 0x3f, 0xc0, 0x0,
0x7, 0x0, 0x1e, 0xe, 0x0, 0x1f, 0xe0, 0x0,
0x3, 0xc0, 0xe, 0x3, 0x80, 0x7, 0xe0, 0x0,
0x0, 0xe0, 0xe, 0x0, 0xe0, 0x1, 0xe0, 0x0,
0x0, 0x38, 0x7, 0x0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0xe, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x80, 0x3, 0x80, 0x0, 0x0,
0x0, 0x3, 0x83, 0x80, 0x0, 0xe0, 0x3f, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x38, 0x7f, 0xf0,
0x0, 0x0, 0x71, 0xc0, 0x0, 0xe, 0x7f, 0xfe,
0x0, 0x0, 0x3c, 0xe0, 0x0, 0x3, 0xbf, 0xff,
0xe0, 0x0, 0xe, 0x70, 0x0, 0x0, 0xff, 0xff,
0xf8, 0x0, 0x7, 0x38, 0x0, 0x0, 0x3f, 0xfe,
0x7c, 0x0, 0x3, 0xb8, 0x0, 0x0, 0x1f, 0xff,
0x1e, 0x0, 0x0, 0xfc, 0x0, 0x0, 0xf, 0xff,
0x8e, 0x0, 0x0, 0x7e, 0x0, 0x0, 0xf, 0xff,
0xc7, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x1f, 0x3f,
0xe7, 0x80, 0x0, 0x1f, 0x80, 0x0, 0xff, 0x9f,
0xf3, 0x80, 0x0, 0xf, 0xc0, 0x0, 0xff, 0x8f,
0xf9, 0xc0, 0x0, 0x7, 0xe0, 0x0, 0xfe, 0x7,
0xfc, 0xe0, 0x0, 0x3, 0xf0, 0x0, 0x38, 0x3,
0xfe, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x1,
0xff, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0xff, 0x80, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x7f, 0xe0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x3d, 0xc0, 0x0, 0x0,
0x78, 0xfe, 0x0, 0x0, 0x1c, 0xe0, 0x0, 0x0,
0x7c, 0x7b, 0x80, 0x0, 0xe, 0x70, 0x0, 0x0,
0x7c, 0x3c, 0xe0, 0x0, 0x7, 0x3c, 0x0, 0x0,
0x7c, 0x1e, 0x38, 0x0, 0x7, 0x8e, 0x0, 0x0,
0x3c, 0xf, 0xe, 0x0, 0x3, 0x87, 0x0, 0x0,
0x1e, 0x7, 0xc3, 0x80, 0x1, 0xc1, 0xc0, 0x0,
0xf, 0x1, 0xe0, 0xe0, 0x1, 0xc0, 0xe0, 0x0,
0x3, 0x80, 0x78, 0x38, 0x0, 0xe0, 0x38, 0x0,
0x1, 0xe0, 0x3e, 0xe, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0xf0, 0xf, 0x3, 0x80, 0x70, 0x7, 0x0,
0x0, 0x78, 0x3, 0xc0, 0xe0, 0x70, 0x3, 0xc0,
0x0, 0x1c, 0x1, 0xf0, 0x38, 0x78, 0x0, 0xe0,
0x0, 0xf, 0x0, 0x7c, 0xe, 0x38, 0x0, 0x38,
0x0, 0x7, 0x80, 0x1e, 0x3, 0xb8, 0x0, 0xe,
0x0, 0x3, 0xc0, 0xf, 0x80, 0xf8, 0x0, 0x7,
0x80, 0x0, 0xe0, 0x3, 0xc0, 0x38, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
/* U+1F6B8 "🚸" */
0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x8e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x83, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x40, 0xe0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0xf8, 0x38,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x7e, 0xe,
0x0, 0x0, 0x0, 0x3, 0x80, 0x0, 0x7f, 0x3,
0x80, 0x0, 0x0, 0x3, 0x80, 0x0, 0x1f, 0x80,
0xe0, 0x0, 0x0, 0x3, 0x80, 0x0, 0xf, 0x80,
0x38, 0x0, 0x0, 0x3, 0x80, 0x0, 0x3, 0x80,
0xf, 0x0, 0x0, 0x7, 0x80, 0x78, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x7, 0x80, 0x7e, 0x1, 0xf8,
0x0, 0xf0, 0x0, 0x7, 0x80, 0x3f, 0x1, 0xfe,
0x0, 0x3c, 0x0, 0x7, 0x80, 0x1f, 0x81, 0xff,
0x0, 0xf, 0x0, 0x7, 0x80, 0xf, 0xc1, 0xff,
0xc0, 0x3, 0xc0, 0x7, 0x80, 0x3, 0xc1, 0xff,
0xf0, 0x0, 0xf0, 0x7, 0x80, 0x0, 0x1, 0xdf,
0xd8, 0x0, 0x3c, 0x7, 0x80, 0x0, 0x0, 0xcf,
0xef, 0x0, 0xf, 0x7, 0x80, 0x0, 0x78, 0x77,
0xf3, 0xc0, 0x3, 0xc7, 0x80, 0x0, 0xfe, 0x1b,
0xf8, 0xf0, 0x0, 0xf3, 0x80, 0x0, 0xff, 0x8f,
0xfc, 0x1c, 0x0, 0x3b, 0x80, 0x0, 0xff, 0xe3,
0xfe, 0x6, 0x0, 0xf, 0xc0, 0x0, 0xef, 0xff,
0xff, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x67, 0xff,
0x3f, 0x80, 0x0, 0x3, 0xf0, 0x0, 0x73, 0xf0,
0x1f, 0xe0, 0x0, 0x3, 0xdc, 0x0, 0x31, 0xf8,
0xe, 0x70, 0x0, 0x1, 0xcf, 0x0, 0x18, 0xfc,
0x7, 0x38, 0x0, 0x1, 0xe3, 0xc0, 0x0, 0x7e,
0x3, 0x8e, 0x0, 0x1, 0xe0, 0xf0, 0x0, 0x3f,
0x1, 0xc7, 0x0, 0x1, 0xe0, 0x3c, 0x0, 0x1d,
0x80, 0xe3, 0x80, 0x1, 0xe0, 0xf, 0x0, 0xe,
0x60, 0xf0, 0xe0, 0x1, 0xe0, 0x3, 0xc0, 0x7,
0x30, 0x70, 0x70, 0x1, 0xe0, 0x0, 0xf0, 0x3,
0x1c, 0x78, 0x1c, 0x1, 0xe0, 0x0, 0x3c, 0x3,
0x86, 0x38, 0xe, 0x1, 0xe0, 0x0, 0xf, 0x3,
0x83, 0x38, 0x7, 0x1, 0xe0, 0x0, 0x3, 0xc3,
0x81, 0xdc, 0x1, 0xc1, 0xe0, 0x0, 0x0, 0xf1,
0xc0, 0x6c, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x1c,
0x40, 0x30, 0x0, 0x31, 0xc0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x70, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x70, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc1, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x0,
/* U+1F6B9 "🚹" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 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, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0,
0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0,
0x23, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x80,
0x10, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x40,
0xc, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x60,
0x6, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x30,
0x3, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x18,
0x1, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1c,
0x0, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xde,
0x18, 0x7b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x86, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc3, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe1, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x61, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x30, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x18, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x86, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc3, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe1, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x61, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x30, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x18, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x9e, 0x7f, 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,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6BA "🚺" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 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, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x1,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0,
0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x80,
0x23, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x40,
0x11, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x20,
0x8, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x30,
0x6, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10,
0x1, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8,
0x0, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c,
0x0, 0x63, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee,
0x0, 0x3b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x86, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc3, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe1, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x63, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x31, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x18, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xcf, 0x7f, 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,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6BB "🚻" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 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, 0x87, 0xff, 0xff, 0xf8, 0x7f,
0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xf0, 0x1f,
0xff, 0xff, 0xff, 0x80, 0x7f, 0xff, 0xf0, 0x7,
0xff, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xf8, 0x3,
0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xfc, 0x1,
0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xfe, 0x0,
0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, 0xff, 0x0,
0x7f, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xc0,
0x7f, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xf0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xf8,
0x3, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xf8,
0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xfc,
0x0, 0x7f, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xfc,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x7f, 0xfe,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff,
0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff,
0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xff,
0x80, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x7f, 0xff, 0xfc, 0x40, 0x8, 0xff,
0xc4, 0x2, 0x1f, 0xff, 0xfe, 0x20, 0x4, 0x7f,
0xe2, 0x0, 0x8f, 0xff, 0xff, 0x10, 0x2, 0x1f,
0xf1, 0x0, 0x47, 0xff, 0xff, 0x8, 0x1, 0x8f,
0xf0, 0x80, 0x21, 0xff, 0xff, 0x8c, 0x0, 0xc7,
0xf8, 0xc0, 0x18, 0xff, 0xff, 0xc6, 0x0, 0x61,
0xfc, 0x40, 0x4, 0x7f, 0xff, 0xc3, 0x0, 0x38,
0xfc, 0x20, 0x2, 0x1f, 0xff, 0xe3, 0x80, 0x1c,
0x7e, 0x30, 0x1, 0x8f, 0xff, 0xfb, 0xc3, 0xf,
0x7f, 0xb8, 0x0, 0xef, 0xff, 0xff, 0xe1, 0x87,
0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0xc3,
0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x61,
0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x30,
0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x18,
0x7f, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xc,
0x3f, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0x86,
0x1f, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xc3,
0xf, 0xff, 0xfc, 0x61, 0xff, 0xff, 0xff, 0xe1,
0x87, 0xff, 0xfe, 0x30, 0xff, 0xff, 0xff, 0xf0,
0xc3, 0xff, 0xff, 0x18, 0x7f, 0xff, 0xff, 0xf8,
0x61, 0xff, 0xff, 0x8c, 0x3f, 0xff, 0xff, 0xfc,
0x30, 0xff, 0xff, 0xc6, 0x1f, 0xff, 0xff, 0xfe,
0x18, 0x7f, 0xff, 0xe3, 0xf, 0xff, 0xff, 0xff,
0xc, 0x3f, 0xff, 0xf1, 0x87, 0xff, 0xff, 0xff,
0x86, 0x1f, 0xff, 0xf8, 0xc3, 0xff, 0xff, 0xff,
0xc3, 0xf, 0xff, 0xfc, 0x61, 0xff, 0xff, 0xff,
0xf3, 0xcf, 0xff, 0xff, 0x79, 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, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6BC "🚼" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 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, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0x80, 0x3,
0xff, 0x8f, 0xff, 0xff, 0xe0, 0xff, 0x0, 0x0,
0x7f, 0x83, 0xff, 0xff, 0xf0, 0x3e, 0x0, 0x0,
0xf, 0x81, 0xff, 0xff, 0xf8, 0x4, 0x0, 0x0,
0x1, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x2, 0x0,
0x2, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf, 0x0,
0x1, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xe0, 0x0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x38, 0x0, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xc, 0x0, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3, 0x0, 0x60, 0x3f, 0xff, 0xff, 0xff, 0xff,
0x3, 0xc0, 0x78, 0x1f, 0xff, 0xff, 0xff, 0xff,
0x3, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, 0xff,
0xc0, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x3f, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff,
0xf8, 0xf, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x3, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x7f, 0x3, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x3f, 0x83, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x3f, 0xe3, 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, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6BD "🚽" */
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x60, 0x6, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x7,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x7, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x7, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x7, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x7,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x7, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x7,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x7, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x7, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x7, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x7,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x7, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x7, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x7, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x7,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x7, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x7, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x7, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x7,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x7, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x7, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x7, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x7,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x7, 0x0, 0x0,
0x0, 0x0, 0xe0, 0x7, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x7, 0x7f, 0xff, 0xff, 0xf8, 0xe0, 0x7,
0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x60, 0x0, 0x0, 0x0,
0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0, 0xe,
0x70, 0x0, 0x0, 0x0, 0x0, 0xc, 0x30, 0x0,
0x0, 0x0, 0x80, 0x1c, 0x38, 0x0, 0x0, 0x1,
0x80, 0x1c, 0x1c, 0x0, 0x0, 0x3, 0x80, 0x38,
0x1c, 0x0, 0x0, 0x7, 0x0, 0x70, 0xe, 0x0,
0x0, 0xf, 0x0, 0xe0, 0x7, 0x0, 0x0, 0x1e,
0x1, 0xc0, 0x3, 0xc0, 0x0, 0x7c, 0x1, 0x80,
0x1, 0xf0, 0x7, 0xf8, 0x3, 0x0, 0x0, 0xf0,
0xf, 0xe0, 0x6, 0x0, 0x0, 0x70, 0xf, 0x0,
0xe, 0x0, 0x0, 0x60, 0x0, 0x0, 0xc, 0x0,
0x0, 0xe0, 0x0, 0x0, 0xc, 0x0, 0x0, 0xe0,
0x0, 0x0, 0xc, 0x0, 0x1, 0xc0, 0x0, 0x0,
0xc, 0x0, 0x1, 0xc0, 0x0, 0x0, 0xe, 0x0,
0x1, 0xc0, 0x0, 0x0, 0xe, 0x0, 0x3, 0x80,
0x0, 0x0, 0x6, 0x0, 0x3, 0x80, 0x0, 0x0,
0x6, 0x0, 0x3, 0x80, 0x0, 0x0, 0x6, 0x0,
0x7, 0x0, 0x0, 0x0, 0x7, 0x0, 0x7, 0x0,
0x0, 0x0, 0x7, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x0,
/* U+1F6BE "🚾" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 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, 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, 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, 0xf8, 0x7f, 0x83, 0xfc, 0x3f,
0xe0, 0x3f, 0xff, 0xfc, 0x3f, 0xc1, 0xfe, 0x1f,
0xc0, 0x3, 0xff, 0xfe, 0xf, 0xe0, 0xfe, 0xf,
0x80, 0x3, 0xff, 0xff, 0x7, 0xe0, 0x3f, 0x7,
0x80, 0x1, 0xff, 0xff, 0xc3, 0xf0, 0x1f, 0x87,
0xc0, 0xf8, 0xff, 0xff, 0xe1, 0xf8, 0xf, 0xc3,
0xc0, 0xff, 0xff, 0xff, 0xf0, 0x7c, 0x47, 0xc1,
0xe0, 0xff, 0xff, 0xff, 0xf8, 0x3c, 0x21, 0xe0,
0xe0, 0xff, 0xff, 0xff, 0xfe, 0x1e, 0x10, 0xf0,
0xf0, 0x7f, 0xff, 0xff, 0xff, 0xf, 0x8, 0x78,
0x78, 0x3f, 0xff, 0xff, 0xff, 0x87, 0x84, 0x3c,
0x3c, 0x1f, 0xff, 0xff, 0xff, 0xc1, 0x87, 0xc,
0x1e, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xc3, 0x86,
0x1f, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x61, 0xc3,
0xf, 0x83, 0xff, 0xff, 0xff, 0xfc, 0x30, 0xe1,
0x87, 0xc1, 0xff, 0xff, 0xff, 0xfe, 0x8, 0xf8,
0x83, 0xe0, 0xff, 0xff, 0xff, 0xff, 0x88, 0x7c,
0x43, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x3e,
0x1, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x1f,
0x0, 0xff, 0x3, 0xf3, 0xff, 0xff, 0xf0, 0x1f,
0xc0, 0x7f, 0x80, 0x1, 0xff, 0xff, 0xfc, 0xf,
0xe0, 0x7f, 0xe0, 0x0, 0xff, 0xff, 0xfe, 0x7,
0xf0, 0x3f, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0x3,
0xf8, 0x1f, 0xff, 0x0, 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,
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, 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, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6BF "🚿" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xe3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xe0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x78, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1e, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x80, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xe0, 0x1f, 0x0, 0x0, 0x0, 0x1, 0xff,
0x83, 0xf8, 0xf, 0xe0, 0x0, 0x0, 0xf3, 0xff,
0xff, 0xf7, 0x83, 0xc0, 0x0, 0x0, 0x7f, 0xfc,
0x3, 0xfc, 0x39, 0xe0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0xf, 0x83, 0xf8, 0x0, 0x0, 0x3, 0x83,
0xf0, 0x0, 0x7c, 0x3e, 0x0, 0x0, 0x0, 0x7e,
0x1f, 0x0, 0x3, 0xc7, 0x80, 0x0, 0x0, 0xf,
0xf0, 0xf8, 0x0, 0x3c, 0x60, 0x0, 0x0, 0x1,
0xcf, 0x87, 0x80, 0x3, 0xdc, 0x0, 0x0, 0x0,
0x38, 0x78, 0x78, 0x0, 0x3f, 0x80, 0x0, 0x0,
0x3, 0x87, 0x87, 0xc0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x70, 0x3c, 0x3c, 0x0, 0x38, 0x0, 0x0,
0x0, 0x7, 0x3, 0xc3, 0xc0, 0x7, 0x0, 0x0,
0x0, 0x0, 0x70, 0x3c, 0x3c, 0x0, 0x60, 0x0,
0x0, 0x0, 0xf, 0x3, 0xc3, 0xc0, 0xe, 0x0,
0x0, 0x0, 0x0, 0xf0, 0x3c, 0x3c, 0x1, 0xc0,
0x0, 0x0, 0x0, 0xf, 0x1, 0xc1, 0xc0, 0x18,
0x0, 0x0, 0x0, 0x0, 0xf0, 0x1c, 0x1c, 0x3,
0x0, 0x0, 0x0, 0x6, 0xf, 0x1, 0xe1, 0xc0,
0x70, 0x0, 0x0, 0x7, 0xc0, 0xf0, 0x1e, 0x1c,
0xe, 0x0, 0x0, 0x3, 0xf0, 0xf, 0x1, 0xe1,
0xc1, 0xc0, 0x0, 0x0, 0x7e, 0x0, 0xf0, 0x1e,
0x3c, 0x38, 0x0, 0x0, 0x1f, 0xc0, 0xf, 0x1,
0xe3, 0xc7, 0x0, 0x0, 0x3, 0xf0, 0x0, 0xf0,
0x1e, 0x3c, 0xe0, 0x0, 0x0, 0x7e, 0x0, 0xf,
0x1, 0xe3, 0x98, 0x0, 0x0, 0x7, 0x80, 0x0,
0xf0, 0x1e, 0x3b, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x1, 0xe7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x70, 0x1e, 0x7c, 0x0, 0x0, 0x0, 0x0,
0x3c, 0x7, 0x81, 0xc7, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x80, 0x78, 0x1c, 0xe0, 0x0, 0x0, 0x0,
0x7, 0xf0, 0x7, 0x81, 0xce, 0x0, 0x0, 0x0,
0x1, 0xfc, 0x0, 0x78, 0x19, 0xc0, 0x0, 0x0,
0x0, 0x3f, 0x80, 0x7, 0x83, 0xb8, 0x0, 0x0,
0x0, 0x7, 0xf0, 0x0, 0x3c, 0x37, 0x0, 0x0,
0x3, 0x80, 0x7c, 0x0, 0x3, 0xc2, 0xe0, 0x0,
0x3, 0xf0, 0x6, 0x0, 0x0, 0x1e, 0x78, 0x0,
0x0, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0,
0x0, 0x3f, 0x80, 0x0, 0x0, 0xe0, 0xf, 0x80,
0x0, 0x7, 0xf0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xfe, 0x0, 0x0, 0x3f, 0x0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0xf, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x3, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x7, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x78,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0xe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+1F6C0 "🛀" */
0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0x8e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0x83, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc1, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x60, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x18, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x18,
0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x6, 0xc,
0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x3, 0x6,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x7, 0x0, 0xee,
0x0, 0x0, 0x3, 0xff, 0xf0, 0xf, 0xe0, 0x3e,
0x0, 0x0, 0x3, 0xff, 0xfc, 0x6, 0x30, 0x0,
0x7, 0xc0, 0x1, 0xff, 0xfe, 0x6, 0xc, 0x0,
0x7, 0xf0, 0x1, 0xff, 0xff, 0x83, 0x6, 0x0,
0x7, 0x1c, 0x0, 0xff, 0xff, 0xc1, 0x83, 0x0,
0x3, 0x6, 0x0, 0x7f, 0xff, 0xe0, 0xe3, 0x80,
0x1, 0x81, 0x80, 0x3f, 0xff, 0xf0, 0x3f, 0x80,
0x0, 0xc0, 0xc0, 0x1f, 0xff, 0xf8, 0xf, 0x80,
0x0, 0x0, 0x60, 0xf, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x30, 0x3, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x18, 0x1, 0xff, 0xfe, 0x0, 0x0,
0x3, 0xe0, 0xc, 0x0, 0x7f, 0xff, 0x80, 0x0,
0x7, 0xfc, 0x6, 0x0, 0x1f, 0xff, 0xf8, 0x0,
0x7, 0xff, 0x3, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe1, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x30, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x3, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x81, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x78,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0xf,
0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x70, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0,
0x70, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x7c, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x7e, 0x0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0,
/* U+1F6C1 "🛁" */
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe3, 0x8e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0xf, 0xf9,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x1, 0xfe,
0x30, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x31,
0xcc, 0x0, 0x0, 0x0, 0x0, 0x6, 0x70, 0xc,
0x33, 0x80, 0x0, 0x0, 0x0, 0x1, 0x8e, 0x1,
0x8c, 0x60, 0x0, 0x0, 0x0, 0x0, 0x61, 0xe0,
0x63, 0x18, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x3e,
0x18, 0xc6, 0x0, 0x0, 0x0, 0x0, 0x3, 0x83,
0xe6, 0x31, 0x80, 0x0, 0x0, 0x1, 0xe0, 0x70,
0x3f, 0x8c, 0x60, 0x0, 0x0, 0x0, 0xfc, 0xf,
0x3, 0xe3, 0x18, 0x0, 0x0, 0x0, 0x73, 0x81,
0xf0, 0x38, 0xc6, 0x0, 0x0, 0x0, 0x18, 0x60,
0x3f, 0xe, 0x31, 0x80, 0x0, 0x0, 0x6, 0x18,
0x3, 0xff, 0xc, 0x60, 0x0, 0x0, 0x1, 0x86,
0x0, 0x3f, 0xc3, 0x18, 0x0, 0x0, 0x0, 0x73,
0x80, 0x0, 0x47, 0xc6, 0x0, 0x0, 0x0, 0xf,
0xc3, 0xc0, 0x3, 0xf9, 0x80, 0x0, 0x0, 0x1,
0xe1, 0xf8, 0x0, 0xc6, 0x60, 0x0, 0x0, 0xc,
0x0, 0xe7, 0x0, 0x30, 0x98, 0x0, 0x0, 0xf,
0xc0, 0x30, 0xc0, 0x8, 0x26, 0x0, 0x0, 0x7,
0xf8, 0x1c, 0x30, 0x3, 0x19, 0x80, 0x0, 0x3,
0x87, 0xf, 0x9e, 0xf8, 0xc6, 0x60, 0x0, 0x0,
0xc0, 0xc7, 0x7f, 0xff, 0x9f, 0x18, 0x0, 0x0,
0x30, 0x31, 0x86, 0x30, 0x71, 0xc6, 0x0, 0x1f,
0xfe, 0xc, 0xc0, 0xc, 0xf, 0x31, 0xfc, 0x1f,
0xff, 0xef, 0x30, 0x1, 0xf, 0xfc, 0x7f, 0x8e,
0x0, 0xff, 0x8c, 0x0, 0x43, 0xf, 0x18, 0x73,
0x0, 0x3, 0xfb, 0x0, 0x31, 0x81, 0xc6, 0xc,
0xc0, 0x0, 0x1f, 0xe0, 0xc, 0x60, 0x71, 0x83,
0x3f, 0xfe, 0x0, 0xfe, 0x7, 0x18, 0x1c, 0x60,
0xc7, 0xff, 0xf8, 0x7, 0xff, 0x86, 0x7, 0x1c,
0xe0, 0x30, 0x1f, 0xc0, 0x7f, 0xe0, 0xc3, 0xc7,
0xfe, 0xe, 0x0, 0xfe, 0x1, 0xff, 0xff, 0xff,
0xff, 0xc3, 0x80, 0x7, 0xe0, 0x7, 0xff, 0xff,
0xc0, 0x30, 0x60, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0xc, 0x18, 0x0, 0x1, 0xfc, 0x0, 0x0,
0x0, 0x7, 0x6, 0x0, 0x0, 0xf, 0xfc, 0x0,
0x0, 0xf, 0x81, 0xc0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xc0, 0x70, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x30, 0xc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc, 0x3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x0, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x60, 0x6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x18, 0x1, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0x0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0x80, 0xc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x60, 0x3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0x0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0x0, 0x18, 0x38,
0x0, 0x0, 0x0, 0x3, 0x83, 0x0, 0x7, 0x6e,
0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f,
0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0,
0x3, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0,
0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80,
0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x3, 0xf8,
0x0,
/* U+1F6C2 "🛂" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 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, 0xc0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x1f, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xfc, 0x0,
0xf, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xfe, 0x0,
0x7, 0xff, 0xff, 0xdf, 0xfc, 0xff, 0xff, 0x0,
0x3, 0xff, 0xff, 0xe0, 0x3e, 0x7f, 0xff, 0x80,
0x3, 0xff, 0xff, 0xf0, 0x7, 0x3f, 0xff, 0xe0,
0x1, 0xff, 0xff, 0xf8, 0x3, 0x9f, 0xff, 0xf8,
0x1, 0xff, 0xff, 0xfc, 0x1, 0xcf, 0xff, 0xfe,
0x1, 0xff, 0xff, 0xfe, 0x0, 0xe7, 0xff, 0xff,
0x81, 0xff, 0xff, 0xff, 0x0, 0x73, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x80, 0x39, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x1c, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0xe, 0x7f, 0xff,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0x3f, 0xff,
0x0, 0x7, 0x7f, 0xff, 0xf8, 0x3, 0x9f, 0xff,
0x0, 0x7, 0x9f, 0xff, 0xfc, 0x1, 0xff, 0xff,
0x0, 0x7, 0x87, 0xff, 0xff, 0x0, 0xff, 0xff,
0x0, 0x7, 0x83, 0xff, 0xff, 0xf0, 0x7f, 0xff,
0x0, 0x3, 0x80, 0xff, 0xff, 0xfe, 0x3f, 0xff,
0x0, 0x3, 0xc0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0x80, 0x3, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0x80, 0x3, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0x80, 0x81, 0xc3, 0xf, 0xff, 0xff, 0xff, 0xff,
0x0, 0xc1, 0xe1, 0x87, 0xff, 0xff, 0xe0, 0x0,
0x0, 0xe1, 0xe0, 0xc3, 0xff, 0xff, 0xf0, 0x0,
0x0, 0xf1, 0xe0, 0x61, 0xff, 0xff, 0xf8, 0x0,
0x0, 0xf8, 0xf0, 0x30, 0xff, 0xff, 0xfc, 0x0,
0x0, 0xfc, 0xf0, 0x18, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xfe, 0xf0, 0xc, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x70, 0x6, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x3, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x1, 0x87, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0xc3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x61, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x30, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x18, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x3, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x1, 0x87, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0xc3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x73, 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, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6C3 "🛃" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 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, 0xc0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x83, 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, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x7, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x7, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x7, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x7, 0x83, 0xff, 0xff, 0x8f, 0xff, 0xff,
0x0, 0x3, 0x80, 0xff, 0xff, 0x87, 0xff, 0xff,
0x0, 0x3, 0xc0, 0x7f, 0xff, 0xc3, 0xff, 0xff,
0x0, 0x3, 0xc0, 0x3f, 0xff, 0xe1, 0xff, 0xff,
0x0, 0x3, 0xc0, 0x1f, 0xff, 0xf0, 0xff, 0xff,
0x0, 0x81, 0xc3, 0xf, 0xff, 0xf8, 0x7f, 0xff,
0x0, 0xc1, 0xe1, 0x87, 0xff, 0xfc, 0x3e, 0x0,
0x0, 0xe1, 0xe0, 0xc3, 0xff, 0xfe, 0x1f, 0x0,
0x0, 0xf1, 0xe0, 0x61, 0xff, 0xff, 0xf, 0x80,
0x0, 0xf8, 0xe0, 0x30, 0xff, 0xff, 0x87, 0xc0,
0x0, 0xfc, 0xf0, 0x18, 0x7f, 0xff, 0xc3, 0xff,
0xff, 0xfe, 0xf0, 0xc, 0x3f, 0xff, 0xe1, 0xff,
0xff, 0xff, 0xf0, 0x6, 0x1f, 0xff, 0xf0, 0xff,
0xff, 0xff, 0xf0, 0x3, 0xf, 0xff, 0xf8, 0x7f,
0xff, 0xff, 0xf8, 0x1, 0x87, 0xff, 0xfc, 0x3f,
0xff, 0xff, 0xf8, 0x0, 0xc3, 0xff, 0xfe, 0x1f,
0xff, 0xff, 0xf8, 0x0, 0x61, 0xff, 0xff, 0xf,
0xff, 0xff, 0xf8, 0x0, 0x30, 0xff, 0xff, 0x87,
0xff, 0xff, 0xfc, 0x0, 0x18, 0x7f, 0xff, 0xe3,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff,
0x0, 0x0, 0x1f, 0xff, 0xfe, 0x1f, 0xff, 0xff,
0x80, 0x0, 0xf, 0x80, 0x3, 0xf, 0xff, 0xff,
0xc0, 0x0, 0x7, 0xc0, 0x1, 0x87, 0xff, 0xff,
0xe0, 0x0, 0x3, 0xe0, 0x0, 0xc3, 0xff, 0xff,
0xf8, 0x0, 0x3, 0xf0, 0x0, 0x73, 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, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6C4 "🛄" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 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, 0xc0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc7, 0xff, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0x8f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xc7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xe3, 0xff,
0xff, 0xff, 0xff, 0x81, 0xc0, 0x0, 0x0, 0x3c,
0xf, 0xff, 0xff, 0x80, 0xe0, 0x0, 0x0, 0x1e,
0x3, 0xff, 0xff, 0x80, 0x70, 0x0, 0x0, 0xf,
0x0, 0xff, 0xff, 0xc0, 0x38, 0x0, 0x0, 0x7,
0x80, 0x7f, 0xff, 0xe0, 0x1c, 0x0, 0x0, 0x3,
0xc0, 0x3f, 0xff, 0xf0, 0xe, 0x0, 0x0, 0x1,
0xe0, 0x1f, 0xff, 0xf8, 0x7, 0x0, 0x0, 0x0,
0xf0, 0xf, 0xff, 0xfc, 0x3, 0x80, 0x0, 0x0,
0x78, 0x7, 0xff, 0xfe, 0x1, 0xc0, 0x0, 0x0,
0x3c, 0x3, 0xff, 0xff, 0x0, 0xe0, 0x0, 0x0,
0x1e, 0x1, 0xff, 0xff, 0x80, 0x70, 0x0, 0x0,
0xf, 0x0, 0xff, 0xff, 0xc0, 0x38, 0x0, 0x0,
0x7, 0x80, 0x7f, 0xff, 0xe0, 0x1c, 0x0, 0x0,
0x3, 0xc0, 0x3f, 0xff, 0xf0, 0xe, 0x0, 0x0,
0x1, 0xe0, 0x1f, 0xff, 0xf8, 0x7, 0x0, 0x0,
0x0, 0xf0, 0xf, 0xff, 0xfc, 0x3, 0x80, 0x0,
0x0, 0x78, 0x7, 0xff, 0xfe, 0x1, 0xc0, 0x0,
0x0, 0x3c, 0x3, 0xff, 0xff, 0x0, 0xe0, 0x0,
0x0, 0x1e, 0x1, 0xff, 0xff, 0x80, 0x70, 0x0,
0x0, 0xf, 0x0, 0xff, 0xff, 0xc0, 0x38, 0x0,
0x0, 0x7, 0x80, 0x7f, 0xff, 0xe0, 0x1c, 0x0,
0x0, 0x3, 0xc0, 0x3f, 0xff, 0xf0, 0xe, 0x0,
0x0, 0x1, 0xe0, 0x1f, 0xff, 0xf8, 0x7, 0x0,
0x0, 0x0, 0xf0, 0xf, 0xff, 0xfc, 0x3, 0x80,
0x0, 0x0, 0x78, 0x7, 0xff, 0xfe, 0x1, 0xc0,
0x0, 0x0, 0x3c, 0x3, 0xff, 0xff, 0x0, 0xe0,
0x0, 0x0, 0x1e, 0x1, 0xff, 0xff, 0x80, 0x70,
0x0, 0x0, 0xf, 0x0, 0xff, 0xff, 0xc0, 0x38,
0x0, 0x0, 0x7, 0x80, 0x7f, 0xff, 0xf0, 0x1c,
0x0, 0x0, 0x3, 0xc0, 0x7f, 0xff, 0xfc, 0xe,
0x0, 0x0, 0x1, 0xe0, 0x7f, 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, 0xe3,
0xf8, 0x7f, 0x1f, 0xc7, 0xf8, 0xff, 0xff, 0xe0,
0xf8, 0x1f, 0x7, 0xc1, 0xf8, 0x3f, 0xff, 0xf0,
0x7c, 0xf, 0x83, 0xe0, 0xfc, 0x1f, 0xff, 0xf8,
0x3e, 0x7, 0xc1, 0xf0, 0x7e, 0xf, 0xff, 0xfc,
0x1f, 0x3, 0xe0, 0xf8, 0x3f, 0x7, 0xff, 0xff,
0x1f, 0xc3, 0xf8, 0xfe, 0x3f, 0xc7, 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, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6C5 "🛅" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 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, 0xf8, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf9, 0xef, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf9, 0xfb, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0xfc, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x7e, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x3f, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0x9f, 0x9e, 0x67, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc7, 0x9f, 0x33, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0x99, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 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, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf3, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x7f, 0xfe, 0x7f, 0xff, 0xf0, 0x7,
0xff, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0xf0, 0x1,
0xff, 0xff, 0x9f, 0xff, 0x9f, 0xff, 0xf9, 0xfe,
0xff, 0xff, 0xcf, 0xff, 0xcf, 0xff, 0xfc, 0xff,
0x7f, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xfe, 0x7f,
0xbf, 0xff, 0xf3, 0xff, 0xf3, 0xf0, 0x38, 0x0,
0x1, 0xc1, 0xf9, 0xff, 0xf9, 0xf0, 0x1c, 0x0,
0x0, 0xe0, 0x7c, 0xff, 0xfc, 0xf8, 0xe, 0x0,
0x0, 0x70, 0x3e, 0x7f, 0xfe, 0x7c, 0x7, 0x0,
0x0, 0x38, 0x1f, 0x3f, 0xff, 0x3e, 0x3, 0x80,
0x0, 0x1c, 0xf, 0x9f, 0xff, 0x9f, 0x1, 0xc0,
0x0, 0xe, 0x7, 0xcf, 0xff, 0xcf, 0x80, 0xe0,
0x0, 0x7, 0x3, 0xe7, 0xff, 0xe7, 0xc0, 0x70,
0x0, 0x3, 0x81, 0xf3, 0xff, 0xf3, 0xe0, 0x38,
0x0, 0x1, 0xc0, 0xf9, 0xff, 0xf9, 0xf0, 0x1c,
0x0, 0x0, 0xe0, 0x7c, 0xff, 0xfc, 0xf8, 0xe,
0x0, 0x0, 0x70, 0x3e, 0x7f, 0xfe, 0x7c, 0x7,
0x0, 0x0, 0x38, 0x1f, 0x3f, 0xff, 0x3e, 0x3,
0x80, 0x0, 0x1c, 0xf, 0x9f, 0xff, 0x9f, 0x1,
0xc0, 0x0, 0xe, 0x7, 0xcf, 0xff, 0xcf, 0x80,
0xe0, 0x0, 0x7, 0x3, 0xe7, 0xff, 0xe7, 0xc0,
0x70, 0x0, 0x3, 0x81, 0xf3, 0xff, 0xf3, 0xe0,
0x38, 0x0, 0x1, 0xc0, 0xf9, 0xff, 0xf9, 0xf0,
0x1c, 0x0, 0x0, 0xe0, 0x7c, 0xff, 0xfc, 0xf8,
0xe, 0x0, 0x0, 0x70, 0x3e, 0x7f, 0xfe, 0x7c,
0x7, 0x0, 0x0, 0x38, 0x1f, 0x3f, 0xff, 0x3e,
0x3, 0x80, 0x0, 0x1c, 0xf, 0x9f, 0xff, 0x9f,
0x81, 0xc0, 0x0, 0xe, 0xf, 0xcf, 0xff, 0xcf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xff, 0xe7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xf3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfc,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x1, 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, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6CB "🛋" */
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x1e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60,
0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x1, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0x0, 0xc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3e, 0xc, 0x3c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x60, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0x3, 0x3, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x18, 0x78,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x18, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0xe0, 0x0, 0x1c, 0x0, 0x3, 0x80,
0x0, 0x0, 0xe, 0x0, 0x0, 0xe0, 0x0, 0xc,
0x0, 0x0, 0x0, 0x70, 0x0, 0x7, 0x0, 0x0,
0x60, 0x0, 0x0, 0x3, 0x80, 0x0, 0x38, 0x0,
0x3, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x1, 0xc0,
0x0, 0x18, 0x0, 0x0, 0x0, 0xe0, 0x0, 0xe,
0x0, 0x0, 0xc0, 0x0, 0x0, 0x7, 0x0, 0x0,
0x70, 0x0, 0x6, 0x0, 0x0, 0x0, 0x38, 0x0,
0x3, 0x80, 0x0, 0x30, 0x0, 0x0, 0x1, 0xc0,
0x0, 0x1c, 0x0, 0x1, 0x80, 0x0, 0x3f, 0xfe,
0x0, 0x0, 0xe0, 0x0, 0xf, 0xff, 0x87, 0xff,
0xf0, 0x0, 0x7, 0x0, 0x0, 0x7f, 0xff, 0x79,
0xe3, 0x80, 0x0, 0x38, 0x0, 0x3, 0xf, 0x3f,
0x87, 0x1c, 0x0, 0x1, 0xc0, 0x0, 0x18, 0x70,
0xfc, 0x38, 0xe0, 0x0, 0xe, 0x0, 0x0, 0xc3,
0x87, 0xe1, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x1c, 0x3f, 0xe, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xf8, 0xe1, 0xf8, 0x73, 0x80, 0x0, 0x1c, 0x0,
0x0, 0xe7, 0xf, 0xc3, 0xb8, 0x0, 0x0, 0xe0,
0x0, 0x3, 0xb8, 0x7e, 0x1f, 0x80, 0x0, 0x7,
0x0, 0x0, 0xf, 0xc3, 0xf0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x1f, 0x87, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0xfc, 0x38, 0x0,
0x0, 0xe, 0x0, 0x0, 0x3, 0x87, 0xe1, 0xc0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x1c, 0x3f, 0xe,
0x0, 0x0, 0x3, 0x80, 0x0, 0x0, 0xe1, 0xf8,
0x70, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x7, 0xf,
0xc3, 0x80, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x38,
0x7e, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc3, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7b, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0x80,
0x0, 0x0, 0x0, 0x3f, 0x80, 0x0, 0x1, 0xfc,
0x0, 0x0, 0x0, 0x1, 0xfc, 0x0, 0x0, 0xf,
0xe0, 0x0, 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0,
0x7f, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x0, 0x0,
0x3, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x0,
/* U+1F6CC "🛌" */
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0xcf, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0xc3, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xc0, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xc0,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0xc0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0xc0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0xc0, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe0, 0xc0, 0x33, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0xc0, 0x37, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0xc0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xc3, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xcf,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0,
0xfe, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xe0, 0xf8, 0x7, 0xff, 0xff, 0xff, 0x80, 0x0,
0x0, 0xe0, 0xe0, 0x1, 0xff, 0x7, 0x1f, 0xfc,
0x0, 0x0, 0xe0, 0xc0, 0x0, 0xfc, 0xf, 0x0,
0xff, 0xff, 0x0, 0xe0, 0xe0, 0x0, 0x78, 0x1e,
0x0, 0x7, 0xff, 0xc0, 0xe0, 0xf8, 0x0, 0x70,
0x1c, 0x0, 0x0, 0x1, 0xf0, 0xe0, 0xfe, 0x0,
0xe0, 0x38, 0x0, 0x0, 0x0, 0x78, 0xe0, 0xff,
0xff, 0xc0, 0x38, 0x0, 0x0, 0x0, 0x3c, 0xe0,
0xff, 0xff, 0x80, 0x70, 0x0, 0x0, 0x0, 0x1c,
0xe0, 0xc0, 0x3, 0x80, 0x70, 0x0, 0x0, 0x0,
0xe, 0xe0, 0xc0, 0x3, 0x80, 0xe0, 0x0, 0x0,
0x0, 0xe, 0xe0, 0xc0, 0x3, 0x0, 0xe0, 0x0,
0x0, 0x0, 0xe, 0xe0, 0xc0, 0x3, 0x0, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xe0, 0xc0, 0x7, 0x1,
0xc0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0xc0, 0x7,
0x1, 0x80, 0x0, 0x0, 0x0, 0x7, 0xe0, 0xc0,
0x6, 0x1, 0x80, 0x0, 0x0, 0x0, 0x7, 0xe0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xe0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87,
0xe0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0x87, 0xe0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0x87, 0xe0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x87, 0xe0, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x87, 0xe0, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x87, 0xe0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0xe0, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff,
/* U+1F6CD "🛍" */
0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x78, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc1, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0xf, 0x9e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x30, 0x37, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0xc1, 0xcc, 0x70, 0x0, 0x0, 0x0, 0x0, 0x3,
0x6, 0x38, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xc,
0x18, 0xe3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x30,
0x67, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x1, 0x87, 0xff, 0xff,
0xff, 0x1, 0x80, 0x0, 0x6, 0x1f, 0xff, 0xfc,
0x0, 0x6, 0x0, 0x0, 0x18, 0x67, 0xe0, 0x0,
0x0, 0x18, 0x0, 0x0, 0x61, 0x86, 0x0, 0x0,
0x6, 0x60, 0x0, 0x1, 0x86, 0x18, 0x0, 0x0,
0xff, 0x80, 0x0, 0x6, 0x18, 0x60, 0x0, 0x7,
0xff, 0x80, 0x0, 0x18, 0x61, 0x80, 0x0, 0x1c,
0x3f, 0x80, 0x0, 0x61, 0x86, 0x0, 0x0, 0x61,
0xff, 0x0, 0x1, 0x86, 0x18, 0x0, 0x3, 0x8f,
0xdc, 0x0, 0x6, 0x18, 0x60, 0x0, 0xe, 0x33,
0x38, 0x0, 0x18, 0x61, 0x80, 0x0, 0x38, 0xcc,
0x68, 0x0, 0x61, 0x86, 0x0, 0x0, 0xe3, 0x7f,
0xfe, 0x1, 0x86, 0x18, 0x0, 0x1, 0xff, 0xff,
0xff, 0x6, 0x18, 0x60, 0x3, 0xff, 0xff, 0xff,
0xfc, 0x18, 0x61, 0x80, 0xf, 0xff, 0xff, 0xff,
0xf0, 0x61, 0x86, 0x0, 0x31, 0xff, 0xff, 0xe0,
0xc1, 0x86, 0x18, 0x0, 0xc7, 0xff, 0xc0, 0x3,
0x6, 0x18, 0x60, 0x3, 0x19, 0xc0, 0x0, 0xc,
0x18, 0x61, 0x80, 0xc, 0x63, 0x0, 0x0, 0x30,
0x61, 0x86, 0x0, 0x31, 0x8c, 0x0, 0x0, 0xc1,
0x86, 0x18, 0x0, 0xc6, 0x30, 0x0, 0x3, 0x6,
0x18, 0x60, 0x3, 0x18, 0xc0, 0x0, 0xc, 0x18,
0x61, 0x80, 0xc, 0x63, 0x0, 0x0, 0x30, 0x61,
0x86, 0x0, 0x31, 0x8c, 0x0, 0x0, 0xc1, 0x86,
0x18, 0x0, 0xc6, 0x30, 0x0, 0x3, 0x6, 0x18,
0x60, 0x3, 0x18, 0xc0, 0x0, 0xc, 0x18, 0x61,
0x80, 0xc, 0x63, 0x0, 0x0, 0x30, 0x61, 0x86,
0x0, 0x31, 0x8c, 0x0, 0x0, 0xc1, 0x86, 0x18,
0x0, 0xc6, 0x30, 0x0, 0x3, 0xe, 0x18, 0x60,
0x3, 0x18, 0xc0, 0x0, 0xc, 0x30, 0xe1, 0x80,
0xc, 0x63, 0x0, 0x0, 0x30, 0xc7, 0xc6, 0x0,
0x31, 0x8c, 0x0, 0x0, 0xc3, 0x1b, 0x18, 0x0,
0xc6, 0x30, 0x0, 0x3, 0xc, 0xec, 0x60, 0x3,
0x18, 0xc0, 0x0, 0xc, 0x37, 0x39, 0x80, 0xc,
0x63, 0x0, 0x0, 0x31, 0xd8, 0x66, 0x0, 0x31,
0x8c, 0x0, 0x0, 0xc7, 0xc1, 0xd8, 0x0, 0xc6,
0x30, 0x0, 0x3, 0x9f, 0x3, 0x60, 0x3, 0x38,
0xc0, 0x0, 0x6, 0x78, 0xd, 0x80, 0x19, 0xe3,
0x0, 0x0, 0x19, 0xc0, 0x3e, 0x0, 0x67, 0xcc,
0x0, 0x0, 0x6f, 0xc0, 0x78, 0x1, 0xbb, 0x30,
0x0, 0x1, 0x8f, 0xc1, 0xe0, 0x7, 0xce, 0xc0,
0x0, 0x6, 0xf, 0xc3, 0x80, 0x1e, 0x1b, 0x0,
0x0, 0x1c, 0xf, 0xee, 0x3f, 0xf8, 0x6c, 0x0,
0x0, 0x70, 0x7, 0xff, 0xff, 0xc1, 0xf0, 0x0,
0x0, 0xc0, 0x7, 0xff, 0x8f, 0x83, 0xc0, 0x0,
0x1f, 0x0, 0x3, 0x0, 0xf, 0xcf, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x3f, 0xff,
0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0,
/* U+1F6CE "🛎" */
0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1e, 0xf, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0xc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x1f,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xe0, 0x7f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xc0, 0x0, 0x3f, 0x0, 0x0,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x7c, 0x0,
0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x1, 0xe0,
0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x78, 0x10, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0xf, 0x7, 0x80, 0x0,
0x0, 0xe, 0x0, 0x0, 0x0, 0xe0, 0xf0, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x1c, 0x1e, 0x0,
0x0, 0x0, 0x3, 0x80, 0x0, 0x1, 0xc3, 0xc0,
0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x38, 0x38,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x3, 0x7,
0x0, 0x0, 0x0, 0x0, 0xc, 0x0, 0x0, 0x70,
0x70, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x7,
0xe, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x0,
0x60, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x60, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x78, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x3, 0xc0, 0x7, 0x87, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x1e, 0x0, 0x70, 0x0, 0xff, 0xfc,
0x0, 0x0, 0x0, 0xe0, 0x7, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xc0, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0xf, 0xff,
0xfe, 0x0, 0x0, 0xf, 0xff, 0xff, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7,
0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1e,
0x70, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0xe7, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x0,
0xe, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf3, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xfc, 0x7, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff,
0xe0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0,
/* U+1F6CF "🛏" */
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe1, 0xcf, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe1, 0xc3, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe1, 0xc0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1, 0xc0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1,
0xc0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe1, 0xc0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe1, 0xc0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe1, 0xc0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe1, 0xc0, 0x38, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe1, 0xc0, 0x7c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe1, 0xc7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1, 0xcf,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1,
0xfe, 0x1, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe1, 0xf8, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe1, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0x0, 0xe1, 0xc0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xc0, 0xe1, 0xe0, 0x0, 0x7c, 0x3e,
0x0, 0x0, 0x1, 0xe0, 0xe1, 0xf0, 0x0, 0x70,
0x78, 0x0, 0x0, 0x0, 0x70, 0xe1, 0xfe, 0x0,
0xe0, 0xf0, 0x0, 0x0, 0x0, 0x38, 0xe1, 0xff,
0xff, 0xc0, 0xe0, 0x0, 0x0, 0x0, 0x1c, 0xe1,
0xff, 0xff, 0x81, 0xc0, 0x0, 0x0, 0x0, 0x1c,
0xe1, 0xc0, 0x3, 0x81, 0xc0, 0x0, 0x0, 0x0,
0xe, 0xe1, 0xc0, 0x3, 0x81, 0xc0, 0x0, 0x0,
0x0, 0xe, 0xe1, 0xc0, 0x3, 0x3, 0x80, 0x0,
0x0, 0x0, 0xe, 0xe1, 0xc0, 0x3, 0x3, 0x80,
0x0, 0x0, 0x0, 0xf, 0xe1, 0xc0, 0x3, 0x3,
0x80, 0x0, 0x0, 0x0, 0x7, 0xe1, 0xc0, 0x3,
0x3, 0x80, 0x0, 0x0, 0x0, 0x7, 0xe1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xe1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87,
0xe1, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0x87, 0xe1, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0x87, 0xe1, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x87, 0xe1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x87, 0xe1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x87, 0xe1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x87, 0xe1, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x87, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff,
/* U+1F6D0 "🛐" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 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, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x7e, 0x1, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xf0, 0xf,
0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0x80,
0x7f, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xfc,
0x3, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, 0xff,
0xe0, 0xff, 0xff, 0xbf, 0xff, 0xfc, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xf8,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xf8,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf, 0xf8,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xf8,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf8,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x78,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x18,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x20, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x30, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x38, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x3e, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3f, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x3, 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, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6D1 "🛑" */
0x0, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x7c, 0x0,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x3f, 0xf, 0xff, 0xff, 0x87, 0xc0,
0x0, 0x0, 0x3f, 0xf, 0xff, 0xff, 0xe1, 0xf0,
0x0, 0x0, 0x3f, 0xf, 0xff, 0xff, 0xf8, 0x7e,
0x0, 0x0, 0x3f, 0xf, 0xff, 0xff, 0xfe, 0x1f,
0x80, 0x0, 0x3f, 0xf, 0xff, 0xff, 0xff, 0x87,
0xe0, 0x0, 0x3f, 0xf, 0xff, 0xff, 0xff, 0xe1,
0xf8, 0x0, 0x3f, 0xf, 0xff, 0xff, 0xff, 0xf8,
0x7e, 0x0, 0x3f, 0xf, 0xff, 0xff, 0xff, 0xfe,
0x1f, 0x80, 0x3f, 0xf, 0xff, 0xff, 0xff, 0xff,
0x87, 0xe0, 0x3f, 0xf, 0xff, 0xff, 0xff, 0xff,
0xe1, 0xf8, 0x3f, 0xf, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x7e, 0x3f, 0xf, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x1f, 0xbf, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0x87, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe1, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x7f, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x3f, 0xcf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x9f, 0xe7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xcf, 0xf3, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe7, 0xf9, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf3, 0xfc, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf9, 0xfe, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0xff, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x7f, 0x9f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x3f, 0xcf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x9f, 0xe7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xcf, 0xf3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe7, 0xf9, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf3, 0xfc, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf9, 0xfe, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0xff, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x7f, 0x9f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x3f, 0xcf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x9f, 0xe7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xcf, 0xf3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe7, 0xf9, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf3, 0xfc, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf9, 0xfe, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xc3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xf0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x7e, 0xfc, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x7e, 0x3f, 0xf,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x7e, 0xf, 0xc3,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x7e, 0x3, 0xf0,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x7e, 0x0, 0xfc,
0x3f, 0xff, 0xff, 0xff, 0xf8, 0x7e, 0x0, 0x3f,
0xf, 0xff, 0xff, 0xff, 0xf8, 0x7e, 0x0, 0xf,
0xc3, 0xff, 0xff, 0xff, 0xf8, 0x7e, 0x0, 0x3,
0xf0, 0xff, 0xff, 0xff, 0xf8, 0x7e, 0x0, 0x0,
0xfc, 0x3f, 0xff, 0xff, 0xf8, 0x7e, 0x0, 0x0,
0x3f, 0xf, 0xff, 0xff, 0xf8, 0x7e, 0x0, 0x0,
0xf, 0xc3, 0xff, 0xff, 0xf8, 0x7e, 0x0, 0x0,
0x3, 0xf0, 0xff, 0xff, 0xf8, 0x7c, 0x0, 0x0,
0x0, 0xfc, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0,
0x0, 0x3f, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0,
/* U+1F6D2 "🛒" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x78, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0xe, 0x18, 0x8, 0x18, 0x18, 0x10,
0x18, 0x0, 0x70, 0xc0, 0x40, 0xc1, 0x80, 0x81,
0x80, 0x3, 0x86, 0x6, 0x6, 0xc, 0x8, 0xc,
0x0, 0x1c, 0x30, 0x30, 0x20, 0x60, 0x40, 0xe0,
0x0, 0xe1, 0x81, 0x83, 0x3, 0x6, 0x6, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1,
0xc3, 0x3, 0x6, 0xc, 0x18, 0x18, 0x0, 0xe,
0x18, 0x10, 0x20, 0xc0, 0x81, 0xc0, 0x0, 0x70,
0xc0, 0x83, 0x6, 0x4, 0xc, 0x0, 0x3, 0x86,
0xc, 0x18, 0x30, 0x60, 0xe0, 0x0, 0x1c, 0x30,
0x60, 0xc1, 0x82, 0x6, 0x0, 0x0, 0xe1, 0x83,
0x6, 0x18, 0x30, 0x70, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x1, 0xc3, 0x6, 0x18,
0x30, 0xc1, 0xc0, 0x0, 0xe, 0x18, 0x20, 0xc3,
0x6, 0xe, 0x0, 0x0, 0x70, 0xc1, 0x6, 0x18,
0x20, 0xe0, 0x0, 0x3, 0x86, 0x18, 0x20, 0xc3,
0x7, 0x0, 0x0, 0x1c, 0x30, 0xc3, 0x4, 0x18,
0x70, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1c, 0x7, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x80, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0x3, 0xc0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x70, 0xf8, 0x0, 0x0,
0x1f, 0x0, 0x0, 0x1, 0x7, 0xc0, 0x0, 0x0,
0xf8, 0x0, 0x0, 0x0, 0x7f, 0x0, 0x0, 0xf,
0xe0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0, 0xff,
0x80, 0x0, 0x0, 0x37, 0x70, 0x0, 0xe, 0xee,
0x0, 0x0, 0x1, 0xb9, 0x80, 0x0, 0x67, 0x30,
0x0, 0x0, 0xc, 0xcc, 0x0, 0x3, 0x39, 0x80,
0x0, 0x0, 0x60, 0x60, 0x0, 0x18, 0xc, 0x0,
0x0, 0x3, 0x7, 0x0, 0x0, 0xe0, 0xe0, 0x0,
0x0, 0x1c, 0x70, 0x0, 0x3, 0x8e, 0x0, 0x0,
0x0, 0x7f, 0x0, 0x0, 0xf, 0xe0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0,
/* U+1F6D5 "🛕" */
0x0, 0x0, 0x0, 0x60, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7c, 0x3e, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x3, 0x0,
0xc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x7, 0x80, 0x1, 0xc0,
0x0, 0x0, 0x1, 0xe0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x78, 0x0, 0x1, 0xc0, 0x0, 0x0, 0xe,
0x0, 0x0, 0x3c, 0x0, 0x0, 0x3, 0x80, 0x0,
0x3, 0x80, 0x0, 0x6, 0xe0, 0x0, 0x0, 0x3b,
0x80, 0x0, 0xdc, 0x0, 0x60, 0x7, 0x60, 0x0,
0x3f, 0x0, 0xc, 0x0, 0xfe, 0x0, 0x7, 0xe0,
0x1, 0x80, 0xf, 0xe0, 0x1, 0xfc, 0x0, 0x78,
0x1, 0xfc, 0x0, 0x1f, 0x80, 0x1f, 0x80, 0x3f,
0x80, 0x3, 0x70, 0x1, 0xe0, 0x7, 0x30, 0x0,
0x6e, 0x0, 0x7e, 0x0, 0xe6, 0x0, 0xd, 0xc0,
0xf, 0xc0, 0x1c, 0xc0, 0x7, 0xf8, 0x3, 0xfc,
0x3, 0xfc, 0x0, 0xff, 0x0, 0x33, 0x0, 0x7f,
0x80, 0xc, 0xe0, 0xc, 0x30, 0xe, 0x30, 0x1,
0x9c, 0x3, 0xff, 0x1, 0xc6, 0x0, 0x33, 0x80,
0xff, 0xf0, 0x38, 0xc0, 0xf, 0xf0, 0x1f, 0xfe,
0x7, 0xfc, 0x1, 0xfe, 0x7, 0xff, 0xe0, 0xff,
0x80, 0x31, 0xc0, 0xc0, 0xc, 0x1c, 0x20, 0x6,
0x38, 0x7f, 0xff, 0xe3, 0x84, 0x1, 0xff, 0xf,
0xff, 0xfc, 0x7f, 0xc0, 0x3f, 0xe3, 0xff, 0xff,
0xcf, 0xfc, 0x6, 0x1c, 0x7f, 0xff, 0xf9, 0xc1,
0x0, 0xc3, 0x9f, 0xff, 0xff, 0x38, 0x20, 0x18,
0x71, 0xc0, 0x0, 0xe7, 0x4, 0x3, 0xe, 0x38,
0x0, 0x1c, 0xe0, 0x81, 0xff, 0xc7, 0x3f, 0xf3,
0x9f, 0xfc, 0x3f, 0xf8, 0xe7, 0xfe, 0x73, 0xff,
0x83, 0x7, 0x1c, 0xff, 0xce, 0x70, 0x60, 0x60,
0xe3, 0x9f, 0xf9, 0xce, 0xc, 0xc, 0x1c, 0x73,
0xff, 0x39, 0xc1, 0x81, 0x83, 0x8e, 0x7f, 0xe7,
0x38, 0x30, 0x30, 0x71, 0xcf, 0xfc, 0xe7, 0x6,
0x6, 0xe, 0x39, 0xff, 0x9c, 0xe0, 0xc0, 0xc1,
0xc7, 0x3f, 0xf3, 0x9c, 0x18, 0x18, 0x38, 0xe7,
0xfe, 0x73, 0x83, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xfe, 0x0,
0xf, 0xff, 0xff, 0x0, 0x7, 0xc0, 0x1, 0x80,
0x0, 0x60, 0x0, 0xff, 0xff, 0xf0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
/* U+1F6D6 "🛖" */
0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xf0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x3e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x6, 0x3, 0xc0, 0x0,
0x0, 0x0, 0x78, 0x0, 0x0, 0x1c, 0x7, 0x80,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x38, 0xf,
0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x60,
0x1e, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0xc0, 0x3c, 0x0, 0x0, 0x3, 0x80, 0x40, 0x0,
0x3, 0x80, 0x70, 0x0, 0x0, 0x1c, 0x3, 0x80,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0xe0, 0xc,
0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x7, 0x80,
0x60, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x3c,
0x0, 0x80, 0x0, 0x0, 0x6, 0xf, 0x0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x40, 0x1c, 0x1c, 0x0,
0x7, 0x6, 0x0, 0x0, 0x3, 0x0, 0x30, 0x38,
0x0, 0x3c, 0x30, 0x0, 0x0, 0x6, 0x0, 0x60,
0xf0, 0x1, 0xe0, 0xc0, 0x0, 0x0, 0xc, 0x0,
0xc1, 0xe0, 0x7, 0x6, 0x0, 0x0, 0x0, 0x30,
0x3, 0x3, 0x80, 0x3c, 0x8, 0x0, 0x0, 0x0,
0x60, 0x4, 0xf, 0x0, 0xe0, 0x0, 0x0, 0x0,
0x1, 0x80, 0x0, 0x1c, 0x7, 0x0, 0x0, 0x0,
0x0, 0x6, 0x0, 0x0, 0x38, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc0, 0x1, 0xc3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x7, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0xe,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0,
0x39, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xee, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x60, 0xc3,
0x86, 0x18, 0x30, 0x61, 0x87, 0xc, 0x39, 0xc7,
0x9e, 0x7c, 0xf1, 0xe3, 0xcf, 0x9e, 0x78, 0xe3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x7, 0xef, 0x3c, 0x79, 0xe1, 0xe7, 0x8f, 0x3d,
0xf8, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x0, 0x38, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x70, 0x0, 0xe0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x1, 0xc0, 0x3, 0x80, 0x0, 0x7,
0xff, 0x80, 0x0, 0x7, 0x0, 0xe, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x1c, 0x0, 0x38, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x70, 0x0, 0xe0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x1, 0xc0, 0x3,
0x80, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7, 0x0,
0xe, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x1c,
0x0, 0x38, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x70, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x81, 0xc0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0xe, 0x7, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x38, 0x1c, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0xe0, 0x70, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x3, 0x81, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
/* U+1F6D7 "🛗" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 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, 0xfd, 0xff, 0xfc, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xfe, 0xf, 0xff, 0x9f, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xcf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc7, 0xff, 0xe7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xf3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xf9, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xe0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xf8, 0xf,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xfe, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xef,
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, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x7f, 0xff, 0xf8, 0xff, 0xff, 0xff,
0xff, 0xff, 0x3f, 0xff, 0xfc, 0x7f, 0xff, 0xff,
0xff, 0xff, 0x9f, 0xff, 0xfe, 0x3f, 0x9f, 0xf3,
0xff, 0x1f, 0xcf, 0xff, 0xff, 0x1f, 0xc7, 0xf8,
0xff, 0xf, 0xe7, 0xff, 0xff, 0x8f, 0xe3, 0xfc,
0x7f, 0x87, 0xf3, 0xff, 0xff, 0xc7, 0xf3, 0xfe,
0x7f, 0xe3, 0xf9, 0xff, 0xff, 0xe3, 0xff, 0xff,
0xff, 0xff, 0xfc, 0xff, 0xff, 0xf1, 0xf0, 0x3e,
0x3, 0xe0, 0x3e, 0x7f, 0xff, 0xf8, 0xf8, 0x1f,
0x1, 0xe0, 0x1f, 0x3f, 0xff, 0xfc, 0x7c, 0xf,
0x80, 0xf0, 0xf, 0x9f, 0xff, 0xfe, 0x3e, 0x7,
0xc0, 0x78, 0x7, 0xcf, 0xff, 0xff, 0x1f, 0x3,
0xe0, 0x3c, 0x3, 0xe7, 0xff, 0xff, 0x8f, 0x81,
0xf0, 0x1e, 0x1, 0xf3, 0xff, 0xff, 0xc7, 0xc0,
0xf8, 0xf, 0x0, 0xf9, 0xff, 0xff, 0xe3, 0xe0,
0x7c, 0x7, 0x80, 0x7c, 0xff, 0xff, 0xf1, 0xf8,
0x7f, 0xf, 0xf0, 0x7e, 0x7f, 0xff, 0xf8, 0xfc,
0xbf, 0x97, 0xf9, 0x3f, 0x3f, 0xff, 0xfc, 0x7e,
0x5f, 0xcb, 0xfc, 0x9f, 0x9f, 0xff, 0xfe, 0x3f,
0x2f, 0xe5, 0xfe, 0x4f, 0xcf, 0xff, 0xff, 0x1f,
0x97, 0xf2, 0xff, 0x27, 0xe7, 0xff, 0xff, 0x8f,
0xcb, 0xf9, 0x7f, 0x93, 0xf3, 0xff, 0xff, 0xc7,
0xe5, 0xfc, 0xbf, 0xc9, 0xf9, 0xff, 0xff, 0xe3,
0xf2, 0xfe, 0x5f, 0xe4, 0xfc, 0xff, 0xff, 0xf1,
0xf9, 0x7f, 0x2f, 0xf2, 0x7e, 0x7f, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0x9f, 0xff, 0xfe,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x1, 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, 0xfb,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
/* U+1F6DC "🛜" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xdf, 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, 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, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xf8, 0x7,
0xff, 0xff, 0xff, 0xff, 0x81, 0xff, 0xff, 0xc0,
0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xfe, 0xf, 0xff, 0xff, 0xff,
0x83, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff,
0xf0, 0x7f, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff,
0xfe, 0x1f, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff,
0xff, 0x87, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xe1, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff,
0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf, 0xff,
0xf8, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff,
0xff, 0x7, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff,
0xff, 0xe1, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff,
0xff, 0xf8, 0x7f, 0xff, 0xff, 0xff, 0x3f, 0xff,
0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x3f, 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x7f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xff, 0xff, 0x9f, 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, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc7, 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, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6DD "🛝" */
0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0x86, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x30, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0xe,
0xc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x1, 0xc1,
0x80, 0x0, 0x0, 0x0, 0xe, 0x70, 0x3f, 0xb0,
0x0, 0x0, 0x0, 0x1, 0xc6, 0x7, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x30, 0xc0, 0xc7, 0xf8, 0x0,
0x0, 0x0, 0x6, 0x18, 0x38, 0xf, 0x80, 0x0,
0x0, 0x1, 0xe1, 0x87, 0x0, 0x78, 0x0, 0x0,
0x0, 0x3f, 0xbf, 0xfc, 0x3, 0x80, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf0, 0x38, 0x0, 0x0, 0x0,
0xc3, 0xf8, 0x3f, 0x83, 0x0, 0x0, 0x0, 0x18,
0x1f, 0x80, 0x78, 0x70, 0x0, 0x0, 0x7, 0x3,
0x38, 0x3, 0x86, 0x0, 0x0, 0x0, 0xf8, 0x63,
0x80, 0x70, 0xe0, 0x0, 0x0, 0x1f, 0xfc, 0x38,
0x7, 0xc, 0x0, 0x0, 0x3, 0x7f, 0x83, 0x0,
0xe1, 0xc0, 0x0, 0x0, 0x60, 0xf8, 0x70, 0xc,
0x38, 0x0, 0x0, 0xc, 0x3, 0x86, 0x1, 0xc3,
0x0, 0x0, 0x3, 0x80, 0x30, 0xc0, 0x18, 0x70,
0x0, 0x0, 0x70, 0x7e, 0x1c, 0x3, 0x6, 0x0,
0x0, 0xc, 0xff, 0xe1, 0x80, 0x70, 0xc0, 0x0,
0x1, 0xff, 0xc, 0x30, 0x6, 0x1c, 0x0, 0x0,
0x3e, 0x1, 0xc7, 0x0, 0xc1, 0x80, 0x0, 0xe,
0x0, 0x38, 0x60, 0x1c, 0x30, 0x0, 0x1, 0xc0,
0xf, 0xc, 0x1, 0x87, 0x0, 0x0, 0x30, 0x1f,
0xf1, 0xc0, 0x38, 0x60, 0x0, 0x6, 0x3f, 0xfe,
0x18, 0x3, 0xe, 0x0, 0x0, 0xff, 0xc3, 0xc3,
0x0, 0x61, 0xc0, 0x0, 0x3f, 0x80, 0x4c, 0x30,
0xe, 0x18, 0x0, 0x7, 0x0, 0x19, 0x86, 0x0,
0xc3, 0x80, 0x0, 0xe0, 0x3, 0x30, 0xc0, 0x18,
0x30, 0x0, 0x18, 0x7, 0xe3, 0xc, 0x3, 0x86,
0x0, 0x3, 0xf, 0xfc, 0x61, 0x80, 0x30, 0xe0,
0x0, 0x7f, 0xf1, 0xc, 0x30, 0x6, 0xc, 0x0,
0x1f, 0xe0, 0x60, 0xc3, 0x0, 0x61, 0xc0, 0x3,
0xc0, 0xc, 0x18, 0x60, 0xc, 0x38, 0x0, 0x60,
0x1, 0x83, 0xe, 0x1, 0xc3, 0x80, 0xc, 0x0,
0x30, 0x30, 0xc0, 0x18, 0x38, 0x1, 0x80, 0x0,
0x6, 0x18, 0x3, 0x7, 0x80, 0x70, 0x0, 0x0,
0xe3, 0x80, 0x30, 0x3e, 0xe, 0x0, 0x0, 0xc,
0x30, 0x7, 0x3, 0xf9, 0x80, 0x0, 0x1, 0x86,
0x0, 0x70, 0x1f, 0xb0, 0x0, 0x0, 0x38, 0x60,
0x7, 0x0, 0x78, 0x0, 0x0, 0x3, 0xe, 0x0,
0x78, 0x3, 0x0, 0x0, 0x0, 0x70, 0xf0, 0x7,
0xc0, 0x60, 0x0, 0x0, 0x6, 0xf, 0xc0, 0x3f,
0xc, 0x0, 0x0, 0x0, 0xe0, 0x7e, 0x1, 0xfd,
0x80, 0x0, 0x0, 0x1e, 0x1, 0xe0, 0x7, 0xf0,
0x0, 0x0, 0x3, 0xe0, 0xc, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x7e, 0x1, 0x80, 0xf, 0xc0, 0x0,
0x0, 0xe, 0xf8, 0x30, 0x1f, 0xf8, 0x0, 0x0,
0x1, 0xc7, 0xe6, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x38, 0x3f, 0xff, 0xe3, 0x80, 0x0, 0x0, 0x7,
0x0, 0xff, 0xc0, 0x70, 0x0, 0x0, 0x0, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x60, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xc,
0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x1, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x0, 0x0,
/* U+1F6DE "🛞" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xf8, 0x0, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x7f, 0xf0, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x1, 0xff, 0xff, 0x0, 0xf0,
0x0, 0x0, 0x3c, 0x7, 0xe1, 0xc3, 0xf0, 0x1e,
0x0, 0x0, 0x3c, 0xf, 0x80, 0xe0, 0x3e, 0x7,
0x80, 0x0, 0x3c, 0xf, 0x0, 0x70, 0x7, 0x81,
0xe0, 0x0, 0x3c, 0x1f, 0x80, 0x38, 0x3, 0xf0,
0x70, 0x0, 0x1c, 0x1e, 0xe0, 0x1c, 0x3, 0xbc,
0x1c, 0x0, 0x1c, 0x1c, 0x30, 0xe, 0x3, 0x87,
0x7, 0x0, 0x1e, 0x1c, 0x1c, 0x7, 0x1, 0xc1,
0xc3, 0xc0, 0xe, 0x1c, 0x7, 0x3, 0x81, 0xc0,
0x70, 0xe0, 0xe, 0x1c, 0x3, 0x81, 0xc0, 0xe0,
0x1c, 0x38, 0xf, 0x1e, 0x0, 0xe0, 0xe0, 0xe0,
0xf, 0x1c, 0x7, 0xe, 0x0, 0x30, 0x70, 0x60,
0x3, 0x87, 0x3, 0x8f, 0x80, 0x1c, 0x38, 0x70,
0x3, 0xe3, 0x83, 0x87, 0xf0, 0x6, 0x1c, 0x30,
0x7, 0xf0, 0xe1, 0xc7, 0x7e, 0x3, 0x8e, 0x38,
0xf, 0x9c, 0x71, 0xc3, 0x8f, 0x80, 0xc7, 0x38,
0xf, 0x8e, 0x3c, 0xe3, 0x81, 0xf0, 0x73, 0x9c,
0x1f, 0x3, 0x8e, 0x71, 0xc0, 0x7e, 0x1d, 0xdc,
0x3f, 0x1, 0xc7, 0x38, 0xe0, 0xf, 0x86, 0xec,
0x3e, 0x0, 0xe3, 0xb8, 0x60, 0x1, 0xf3, 0xfe,
0x7c, 0x0, 0x70, 0xfc, 0x70, 0x0, 0x7e, 0xfe,
0xfc, 0x0, 0x1c, 0x7e, 0x38, 0x0, 0xf, 0xff,
0xf8, 0x0, 0xe, 0x3f, 0x1c, 0x0, 0x1, 0xf1,
0xf0, 0x0, 0x7, 0x1f, 0x8e, 0x0, 0x0, 0x70,
0x70, 0x0, 0x3, 0x8f, 0xc7, 0xff, 0xff, 0xf8,
0x3f, 0xff, 0xff, 0xc7, 0xe3, 0xff, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xe3, 0xf1, 0xc0, 0x0, 0xe,
0xe, 0x0, 0x0, 0x71, 0xf8, 0xe0, 0x0, 0x1f,
0x8f, 0xc0, 0x0, 0x38, 0xfc, 0x70, 0x0, 0x1f,
0xff, 0xf0, 0x0, 0x1c, 0x7e, 0x38, 0x0, 0x3f,
0x7f, 0x7e, 0x0, 0xe, 0x3f, 0xe, 0x0, 0x7e,
0x7f, 0xcf, 0xc0, 0xe, 0x3d, 0xc7, 0x0, 0xfe,
0x37, 0x63, 0xf8, 0x7, 0x1c, 0xe3, 0x80, 0xfc,
0x3b, 0xb8, 0x7e, 0x3, 0x8e, 0x71, 0xe1, 0xf8,
0x19, 0xce, 0xf, 0xc3, 0xc7, 0x38, 0x73, 0xf0,
0x1c, 0xe7, 0x1, 0xf9, 0xc7, 0x8e, 0x3b, 0xf0,
0x1c, 0x71, 0xc0, 0x7f, 0xe3, 0x87, 0xf, 0xe0,
0xc, 0x38, 0x60, 0xf, 0xe1, 0xc1, 0xc7, 0xc0,
0xe, 0x1c, 0x38, 0x1, 0xf1, 0xc0, 0xe1, 0xc0,
0x6, 0xe, 0xc, 0x0, 0x70, 0xe0, 0x78, 0xf0,
0x7, 0x7, 0x7, 0x0, 0x78, 0xe0, 0x1c, 0x38,
0x7, 0x3, 0x81, 0xc0, 0x38, 0x70, 0x7, 0xe,
0x3, 0x81, 0xc0, 0xe0, 0x38, 0x70, 0x3, 0xc3,
0x83, 0x80, 0xe0, 0x38, 0x38, 0x78, 0x0, 0xe0,
0xe1, 0xc0, 0x70, 0x1c, 0x38, 0x38, 0x0, 0x38,
0x3d, 0xc0, 0x38, 0x7, 0x78, 0x38, 0x0, 0x1e,
0xf, 0xc0, 0x1c, 0x1, 0xf8, 0x38, 0x0, 0x7,
0x81, 0xe0, 0xe, 0x0, 0xf0, 0x3c, 0x0, 0x1,
0xe0, 0x7c, 0x7, 0x1, 0xf0, 0x3c, 0x0, 0x0,
0x78, 0xf, 0xc3, 0x87, 0xe0, 0x3c, 0x0, 0x0,
0x1e, 0x1, 0xff, 0xff, 0xc0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0xf, 0xfe, 0x0, 0x78, 0x0, 0x0,
0x0, 0xf8, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe0, 0x0, 0x3, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0x0, 0x1f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0,
/* U+1F6DF "🛟" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xfe, 0x1, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xc6, 0x0, 0x67, 0xc0, 0x0,
0x0, 0x0, 0xf, 0x83, 0x0, 0x30, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0x1, 0x80, 0x18, 0x1f, 0x0,
0x0, 0x0, 0x1e, 0x0, 0xc0, 0xc, 0x3, 0xc0,
0x0, 0x0, 0x1c, 0x0, 0x60, 0x6, 0x0, 0x70,
0x0, 0x0, 0x3c, 0x0, 0x30, 0x3, 0x0, 0x1e,
0x0, 0x0, 0x3c, 0x0, 0x18, 0x1, 0x80, 0x7,
0x80, 0x0, 0x3c, 0x0, 0xc, 0x0, 0xc0, 0x1,
0xe0, 0x0, 0x1c, 0x0, 0x6, 0x0, 0x60, 0x0,
0x70, 0x0, 0x1c, 0x0, 0x3, 0x80, 0x70, 0x0,
0x1c, 0x0, 0x1c, 0x0, 0x0, 0xc0, 0x30, 0x0,
0x7, 0x0, 0x1e, 0x0, 0x0, 0x60, 0x18, 0x0,
0x3, 0xc0, 0xe, 0x0, 0x0, 0x30, 0xc, 0x0,
0x0, 0xe0, 0xe, 0x0, 0x0, 0x1c, 0xe, 0x0,
0x0, 0x38, 0x7, 0x0, 0x0, 0x7, 0xfe, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0xf, 0xff, 0x80,
0x0, 0x7, 0x3, 0x80, 0x0, 0x1f, 0x1, 0xf0,
0x0, 0x3, 0x83, 0x80, 0x0, 0x1e, 0x0, 0x3c,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x3c, 0x0, 0x7,
0x80, 0x0, 0x71, 0xc0, 0x0, 0x3c, 0x0, 0x1,
0xc0, 0x0, 0x3c, 0xe0, 0x0, 0x1c, 0x0, 0x0,
0x70, 0x0, 0xe, 0x70, 0x0, 0x1c, 0x0, 0x0,
0x1c, 0x0, 0x7, 0x3f, 0xff, 0x9e, 0x0, 0x0,
0xe, 0x3f, 0xff, 0xbf, 0xff, 0xfe, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0x0, 0x3f, 0x0, 0x0,
0x1, 0xf8, 0x1, 0xfe, 0x0, 0x7, 0x0, 0x0,
0x0, 0x70, 0x0, 0x3f, 0x0, 0x3, 0x80, 0x0,
0x0, 0x38, 0x0, 0x1f, 0x80, 0x1, 0xc0, 0x0,
0x0, 0x1c, 0x0, 0xf, 0xc0, 0x0, 0xe0, 0x0,
0x0, 0xe, 0x0, 0x7, 0xe0, 0x0, 0x70, 0x0,
0x0, 0x7, 0x0, 0x3, 0xf0, 0x0, 0x38, 0x0,
0x0, 0x3, 0x80, 0x1, 0xf8, 0xff, 0xfc, 0x0,
0x0, 0x1, 0xff, 0xf8, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x3, 0x80,
0x0, 0x0, 0xe0, 0x3, 0xff, 0x0, 0x1, 0xc0,
0x0, 0x0, 0x70, 0x0, 0x1d, 0xc0, 0x0, 0xf0,
0x0, 0x0, 0x70, 0x0, 0x1c, 0xe0, 0x0, 0x38,
0x0, 0x0, 0x38, 0x0, 0xe, 0x70, 0x0, 0xe,
0x0, 0x0, 0x38, 0x0, 0x7, 0x3c, 0x0, 0x3,
0x80, 0x0, 0x38, 0x0, 0x7, 0x8e, 0x0, 0x1,
0xe0, 0x0, 0x3c, 0x0, 0x3, 0x87, 0x0, 0x0,
0x3c, 0x0, 0x78, 0x0, 0x1, 0xc1, 0xc0, 0x0,
0xf, 0x80, 0xf8, 0x0, 0x1, 0xc0, 0xe0, 0x0,
0x1, 0xff, 0xf0, 0x0, 0x0, 0xe0, 0x38, 0x0,
0x0, 0x3f, 0xf0, 0x0, 0x0, 0xe0, 0x1c, 0x0,
0x0, 0x38, 0x1c, 0x0, 0x0, 0x70, 0x7, 0x0,
0x0, 0x18, 0x6, 0x0, 0x0, 0x70, 0x3, 0xc0,
0x0, 0xc, 0x3, 0x0, 0x0, 0x78, 0x0, 0xe0,
0x0, 0x6, 0x1, 0x80, 0x0, 0x38, 0x0, 0x38,
0x0, 0x7, 0x0, 0xe0, 0x0, 0x38, 0x0, 0xe,
0x0, 0x3, 0x0, 0x30, 0x0, 0x38, 0x0, 0x7,
0x80, 0x1, 0x80, 0x18, 0x0, 0x3c, 0x0, 0x1,
0xe0, 0x0, 0xc0, 0xc, 0x0, 0x3c, 0x0, 0x0,
0x78, 0x0, 0x60, 0x6, 0x0, 0x3c, 0x0, 0x0,
0xe, 0x0, 0x30, 0x3, 0x0, 0x38, 0x0, 0x0,
0x3, 0xc0, 0x18, 0x1, 0x80, 0x78, 0x0, 0x0,
0x0, 0xf8, 0xc, 0x0, 0xc0, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0x6, 0x0, 0x61, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xe3, 0x0, 0x33, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xc0, 0x3f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
/* U+1F6E0 "🛠" */
0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x7, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0x3, 0xf8, 0x7, 0x1,
0xf0, 0x3c, 0x0, 0x0, 0x0, 0xf, 0x0, 0x1e,
0xf, 0x0, 0x38, 0x0, 0x0, 0x0, 0x7c, 0x3,
0xfc, 0x3c, 0x1, 0xf0, 0x0, 0x0, 0x1, 0xe0,
0x3f, 0xe0, 0x70, 0xf, 0x80, 0x0, 0x0, 0x7,
0x81, 0xfe, 0x1, 0xc0, 0x3e, 0x0, 0x0, 0x0,
0x1e, 0x7, 0xe0, 0x7, 0x81, 0xf0, 0x0, 0x0,
0x0, 0xf8, 0x1f, 0x0, 0xe, 0x3, 0xc0, 0x0,
0x0, 0x3, 0xc0, 0x38, 0x0, 0x1c, 0x7, 0x0,
0x0, 0x0, 0xf, 0x0, 0x70, 0x0, 0x70, 0xe,
0x0, 0x10, 0x0, 0x3c, 0x0, 0x70, 0x0, 0xe0,
0x1c, 0x0, 0x70, 0x0, 0xf0, 0x0, 0xf0, 0x1,
0xc0, 0x3c, 0x3, 0xe0, 0x1, 0xc0, 0x0, 0x70,
0x3, 0x80, 0x38, 0x1f, 0xc0, 0x3, 0x80, 0x0,
0x60, 0x7, 0x0, 0x78, 0x7f, 0x80, 0x7, 0x0,
0x1, 0xc0, 0xe, 0x0, 0x7b, 0xe7, 0x0, 0x6,
0x0, 0x3, 0x80, 0x1c, 0x0, 0x7f, 0xc, 0x0,
0xe, 0x0, 0x1e, 0x0, 0x1c, 0x0, 0x38, 0x18,
0xf, 0x38, 0x0, 0x7c, 0x0, 0x38, 0x0, 0x0,
0x70, 0x3f, 0xe0, 0x1, 0xfc, 0x0, 0x78, 0x0,
0x0, 0xc1, 0xe3, 0x80, 0x7, 0x9c, 0x1, 0xe0,
0x0, 0x3, 0x87, 0x80, 0x0, 0x1e, 0x1c, 0xf,
0x80, 0x0, 0xe, 0x1e, 0x0, 0x3e, 0xf8, 0x1c,
0x3c, 0x0, 0x0, 0x38, 0x70, 0x0, 0xff, 0xe0,
0x1c, 0xf0, 0x0, 0x0, 0xe0, 0xe0, 0x3, 0xff,
0xe0, 0x1f, 0xc0, 0x1c, 0x7, 0x81, 0xc0, 0x7,
0x1c, 0xe0, 0x1f, 0x0, 0x7f, 0xfe, 0x1, 0xc0,
0xe, 0x0, 0xe0, 0x3c, 0x0, 0xdf, 0xe0, 0x3,
0x80, 0xc, 0x0, 0xe0, 0xf0, 0x3, 0x0, 0x0,
0x3, 0x80, 0x18, 0x0, 0xe3, 0xc0, 0xe, 0x0,
0x0, 0x7, 0x80, 0x30, 0x1, 0xef, 0x0, 0x38,
0x0, 0x0, 0x7, 0x80, 0xe0, 0x1, 0xfc, 0x0,
0xe0, 0x0, 0x0, 0x7, 0x83, 0x80, 0x1, 0xf0,
0x3, 0x80, 0x0, 0x0, 0x7, 0x9e, 0x0, 0x7,
0xc0, 0xe, 0x0, 0x0, 0x0, 0x7, 0xf0, 0x0,
0x1e, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x78, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xe0, 0x1, 0x9e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x80, 0x7, 0x1e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1e, 0x0, 0x1c, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x70, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x1, 0xc0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x7,
0x80, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x3e, 0x0,
0x1f, 0x80, 0x3c, 0x0, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x33, 0x80, 0x3c, 0x0, 0x0, 0x0, 0x3,
0xc0, 0x0, 0xc3, 0x80, 0x3c, 0x0, 0x0, 0x0,
0xf, 0x0, 0x3, 0x3, 0x80, 0x3c, 0x0, 0x0,
0x0, 0x3c, 0x0, 0xe, 0x7, 0x0, 0x3c, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x38, 0x7, 0x0, 0x3c,
0x0, 0x0, 0x7, 0xc0, 0x0, 0xe0, 0x7, 0x0,
0x3c, 0x0, 0x0, 0x1f, 0x0, 0x3, 0x80, 0x7,
0x0, 0x3c, 0x0, 0x0, 0x7c, 0x0, 0xe, 0x0,
0x7, 0x0, 0x3c, 0x0, 0x1, 0xf0, 0x0, 0x18,
0x0, 0x6, 0x0, 0x3c, 0x0, 0x3, 0xc0, 0x0,
0x60, 0x0, 0xe, 0x0, 0x3c, 0x0, 0xf, 0x0,
0x1, 0x80, 0x0, 0xe, 0x0, 0x3c, 0x0, 0x3c,
0x70, 0x7, 0x0, 0x0, 0xe, 0x0, 0x7c, 0x0,
0x71, 0xf0, 0x1c, 0x0, 0x0, 0xe, 0x0, 0x78,
0x0, 0xe3, 0xe0, 0x70, 0x0, 0x0, 0xe, 0x0,
0x78, 0x1, 0xc7, 0xc1, 0xc0, 0x0, 0x0, 0xc,
0x0, 0x70, 0x3, 0x87, 0x3, 0x0, 0x0, 0x0,
0x1c, 0x0, 0xe0, 0x7, 0x0, 0xc, 0x0, 0x0,
0x0, 0x1c, 0x3, 0xc0, 0x7, 0x0, 0x30, 0x0,
0x0, 0x0, 0x1c, 0xf, 0x0, 0xf, 0x0, 0xc0,
0x0, 0x0, 0x0, 0x1c, 0x3c, 0x0, 0xf, 0x7,
0x0, 0x0, 0x0, 0x0, 0x18, 0xf0, 0x0, 0xf,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x0,
/* U+1F6E1 "🛡" */
0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e,
0x7c, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x7e,
0x0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x3f, 0x0,
0x0, 0x0, 0x0, 0xfe, 0x0, 0x1f, 0xe0, 0x0,
0x0, 0x7f, 0xe0, 0x0, 0x7, 0xfe, 0x0, 0xff,
0xfe, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x60, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x3,
0xf0, 0x0, 0x0, 0xff, 0x0, 0x0, 0xf, 0xf8,
0x0, 0x0, 0x7e, 0x0, 0x0, 0xf9, 0xfc, 0x0,
0x0, 0xfc, 0x0, 0xf, 0xc3, 0xff, 0x0, 0x1,
0xf8, 0x3, 0xfe, 0x7, 0xff, 0xf0, 0x3, 0xf0,
0x7f, 0xe0, 0xf, 0xff, 0xfe, 0x7, 0xe0, 0xf8,
0x0, 0x1f, 0xff, 0xfc, 0xf, 0xc1, 0x80, 0x0,
0x3f, 0xff, 0xf8, 0x1f, 0x83, 0x0, 0x0, 0x7f,
0xff, 0xf0, 0x3f, 0x6, 0x0, 0x0, 0xff, 0xff,
0xe0, 0x7e, 0xc, 0x0, 0x1, 0xff, 0xff, 0xc0,
0xee, 0x18, 0x0, 0x3, 0xff, 0xff, 0x83, 0x9c,
0x30, 0x0, 0x7, 0xff, 0xff, 0x7, 0x38, 0x60,
0x0, 0xf, 0xff, 0xfe, 0xe, 0x70, 0x40, 0x0,
0x1f, 0xff, 0xf8, 0x1c, 0xe0, 0xc0, 0x0, 0x3f,
0xff, 0xf0, 0x39, 0xc1, 0x80, 0x0, 0x7f, 0xff,
0xe0, 0x73, 0x83, 0x0, 0x0, 0xff, 0xff, 0xc0,
0xe3, 0x86, 0x0, 0x1, 0xff, 0xff, 0x83, 0x87,
0xc, 0x0, 0x3, 0xff, 0xff, 0x7, 0xe, 0x8,
0x0, 0x7, 0xff, 0xfc, 0xe, 0x1c, 0x18, 0x0,
0xf, 0xff, 0xf8, 0x1c, 0x18, 0x30, 0x0, 0x1f,
0xff, 0xf0, 0x70, 0x38, 0x60, 0x0, 0x3f, 0xff,
0xe0, 0xe0, 0x70, 0x60, 0x0, 0x7f, 0xff, 0x81,
0xc0, 0xe0, 0xc0, 0x0, 0xff, 0xff, 0x3, 0x80,
0xe1, 0x80, 0x1, 0xff, 0xfe, 0xe, 0x1, 0xc1,
0x80, 0x3, 0xff, 0xf8, 0x1c, 0x3, 0x83, 0x0,
0x7, 0xff, 0xf0, 0x38, 0x3, 0x86, 0x0, 0xf,
0xff, 0xe0, 0xe0, 0x7, 0x6, 0x0, 0x1f, 0xff,
0x81, 0xc0, 0xe, 0xc, 0x0, 0x3f, 0xff, 0x3,
0x80, 0xe, 0xc, 0x0, 0x7f, 0xfc, 0xe, 0x0,
0x1c, 0x1c, 0x0, 0xff, 0xf8, 0x1c, 0x0, 0x1c,
0x18, 0x1, 0xff, 0xe0, 0x70, 0x0, 0x38, 0x38,
0x3, 0xff, 0x80, 0xe0, 0x0, 0x38, 0x38, 0x7,
0xff, 0x3, 0x80, 0x0, 0x70, 0x30, 0xf, 0xfc,
0x7, 0x0, 0x0, 0x70, 0x30, 0x1f, 0xf0, 0x1c,
0x0, 0x0, 0x70, 0x70, 0x3f, 0xe0, 0x70, 0x0,
0x0, 0xe0, 0x70, 0x7f, 0x80, 0xe0, 0x0, 0x0,
0xe0, 0x78, 0xfe, 0x3, 0x80, 0x0, 0x0, 0xe0,
0x79, 0xf8, 0xe, 0x0, 0x0, 0x1, 0xe0, 0x3f,
0xc0, 0x3c, 0x0, 0x0, 0x1, 0xe0, 0x3f, 0x0,
0xf0, 0x0, 0x0, 0x1, 0xe0, 0x18, 0x3, 0xc0,
0x0, 0x0, 0x1, 0xe0, 0x0, 0xf, 0x0, 0x0,
0x0, 0x1, 0xe0, 0x0, 0x3c, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x1,
0xf0, 0x7, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0,
/* U+1F6E2 "🛢" */
0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff,
0xff, 0xff, 0x0, 0x0, 0x7f, 0xc0, 0x1, 0xff,
0x0, 0xf, 0xc0, 0x0, 0x0, 0x7e, 0x1, 0xf0,
0x0, 0x0, 0x0, 0x7c, 0x1e, 0x0, 0x0, 0x0,
0x0, 0xf1, 0xe0, 0x7e, 0x0, 0x0, 0x3, 0xce,
0x3, 0xf0, 0x0, 0x0, 0xe, 0xe0, 0x1f, 0x80,
0xf, 0x80, 0x3f, 0x0, 0x0, 0x0, 0xfe, 0x1,
0xf8, 0x0, 0x0, 0x7, 0xf0, 0xf, 0xe0, 0x0,
0x0, 0x1f, 0x0, 0xf7, 0x80, 0x0, 0x0, 0x0,
0xf, 0x3e, 0x0, 0x0, 0x0, 0x0, 0xf9, 0xfc,
0x0, 0x0, 0x0, 0x1f, 0xcf, 0xfc, 0x0, 0x0,
0x7, 0xfe, 0x73, 0xff, 0x0, 0x7, 0xff, 0xf3,
0x83, 0xff, 0xff, 0xff, 0xff, 0x9c, 0x3, 0xff,
0xff, 0xff, 0xfc, 0xe0, 0x0, 0xe, 0x3f, 0xff,
0xe7, 0x0, 0x0, 0x0, 0xff, 0xff, 0x38, 0x0,
0x0, 0x7, 0xff, 0xfb, 0xc0, 0x0, 0x0, 0x3f,
0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xe0,
0x0, 0x0, 0xf, 0xfe, 0x3f, 0x0, 0x0, 0x0,
0x7f, 0xe1, 0xfc, 0x0, 0x0, 0x3, 0xfc, 0x1e,
0xe0, 0x0, 0x0, 0xf, 0x1, 0xe7, 0x0, 0x0,
0x0, 0x0, 0x1f, 0x38, 0x0, 0x0, 0x0, 0x3,
0xf9, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xce, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x70, 0x0, 0x0, 0x1f,
0xff, 0xf3, 0x80, 0x7, 0xff, 0xff, 0xff, 0x9c,
0x0, 0x3f, 0xff, 0xff, 0xfc, 0xe0, 0x0, 0x0,
0x3f, 0xff, 0xe7, 0x0, 0x0, 0x0, 0xff, 0xff,
0x78, 0x0, 0x0, 0x7, 0xff, 0xdf, 0x80, 0x0,
0x0, 0x3f, 0xfc, 0xfc, 0x0, 0x0, 0x1, 0xff,
0xc7, 0xe0, 0x0, 0x0, 0xf, 0xfc, 0x3f, 0x80,
0x0, 0x0, 0x7f, 0x83, 0xdc, 0x0, 0x0, 0x3,
0xf0, 0x1c, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xe7,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x38, 0x0, 0x0,
0x0, 0x3, 0xf9, 0xc0, 0x0, 0x0, 0x0, 0xff,
0xce, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x70, 0x0,
0x0, 0x1f, 0xff, 0xf3, 0x80, 0x7, 0xff, 0xff,
0xff, 0x9c, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0xe0,
0x0, 0x0, 0x3f, 0xff, 0xef, 0x0, 0x0, 0x0,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff,
0x80, 0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0,
0x1, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xf3, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0x8f, 0x0,
0x0, 0x3, 0xff, 0xf8, 0x3e, 0x0, 0x0, 0x1f,
0xff, 0x80, 0x7e, 0x0, 0x0, 0xff, 0xf0, 0x0,
0xff, 0x80, 0x3, 0xfe, 0x0, 0x0, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0,
/* U+1F6E3 "🛣" */
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x39, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7e, 0x0, 0x3, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x1f, 0x80, 0x0, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x7, 0xe1, 0xff, 0xf8, 0x0, 0x0, 0x7,
0xff, 0xe1, 0xf8, 0x7f, 0xfe, 0x0, 0x0, 0x1,
0xff, 0xf8, 0x7e, 0x1f, 0xff, 0x87, 0x0, 0xfc,
0x7f, 0xfe, 0x1f, 0x81, 0xf0, 0xe1, 0xc0, 0x3f,
0x1c, 0x3e, 0x7, 0xe0, 0x7e, 0x38, 0x70, 0xf,
0xc7, 0x1f, 0x81, 0xf8, 0x1d, 0xce, 0x1c, 0x3,
0xf1, 0xce, 0xe0, 0x7e, 0x7, 0x3b, 0x82, 0x0,
0x0, 0x77, 0x38, 0x1f, 0x81, 0xc7, 0xe0, 0x0,
0x0, 0x1f, 0x8e, 0x7, 0xe0, 0x70, 0xf8, 0x20,
0x3, 0x7, 0xe3, 0x81, 0xf8, 0x1c, 0x3e, 0x8,
0x0, 0xc1, 0xf0, 0xe0, 0x7e, 0x7, 0x7, 0x8f,
0x80, 0xfc, 0x78, 0x38, 0x1f, 0x87, 0xff, 0xe1,
0xc0, 0x1e, 0x1f, 0xff, 0x87, 0xe1, 0xff, 0xf8,
0x20, 0x0, 0x7, 0xff, 0xe1, 0xf8, 0x1c, 0xe,
0x0, 0x0, 0x1, 0xc0, 0xe0, 0x7e, 0x7, 0x3,
0x80, 0x0, 0x0, 0x70, 0x38, 0x1f, 0x81, 0xc0,
0xff, 0xff, 0xff, 0xfc, 0xe, 0x7, 0xfc, 0x70,
0x3f, 0xff, 0xff, 0xff, 0x3, 0x9f, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x3f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x1f, 0x81,
0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0x7, 0xe8,
0x7f, 0xf0, 0x0, 0x0, 0x1, 0xff, 0x81, 0xfb,
0x1c, 0x1f, 0x0, 0x0, 0x1, 0xf0, 0xe0, 0x7f,
0xd7, 0x9, 0xe0, 0x0, 0x0, 0xe0, 0x38, 0x3f,
0xf7, 0xce, 0x1c, 0x0, 0x0, 0x70, 0x3f, 0xff,
0xff, 0xf3, 0xc3, 0x80, 0x0, 0x38, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x81, 0xc0, 0x2, 0xcf, 0x99, 0x0, 0xe,
0x7, 0xe0, 0x70, 0x1, 0x33, 0xe6, 0x20, 0x3,
0x81, 0xf8, 0x1c, 0x0, 0xcc, 0xf9, 0xcc, 0x0,
0xe0, 0x7e, 0x7, 0x0, 0x27, 0xff, 0xf1, 0x0,
0x38, 0x1f, 0x81, 0xc0, 0x19, 0x9f, 0xce, 0x60,
0xe, 0x7, 0xe0, 0x70, 0x4, 0xe7, 0xf3, 0x88,
0x3, 0x81, 0xf8, 0x1c, 0x3, 0x39, 0xfc, 0x73,
0x0, 0xe0, 0x7e, 0x0, 0x1, 0x8e, 0x7f, 0x1c,
0x60, 0x0, 0x1f, 0x80, 0x0, 0x67, 0xff, 0xff,
0x18, 0x0, 0x7, 0xe0, 0x0, 0x31, 0xff, 0xff,
0xe3, 0x0, 0x1, 0xf8, 0x0, 0x1c, 0xf3, 0xfe,
0x38, 0xe0, 0x0, 0x7e, 0x0, 0x6, 0x3c, 0xff,
0x8f, 0x18, 0x0, 0x1f, 0x80, 0x3, 0x8f, 0x3f,
0xe3, 0xc7, 0x0, 0x7, 0xe0, 0x0, 0xc7, 0x8f,
0xf8, 0xf8, 0xc0, 0x1, 0xf8, 0x0, 0x71, 0xe3,
0xfe, 0x1e, 0x38, 0x0, 0x7e, 0x0, 0x38, 0xf8,
0xff, 0x87, 0x87, 0x0, 0x1f, 0x80, 0xe, 0x3e,
0x7f, 0xf1, 0xf1, 0xc0, 0x7, 0xe0, 0x7, 0xf,
0xff, 0xff, 0xfc, 0x38, 0x1, 0xf8, 0x1, 0xc7,
0xff, 0xff, 0xff, 0x8e, 0x0, 0x7e, 0x0, 0xe1,
0xf1, 0xff, 0xc3, 0xe1, 0xc0, 0x1f, 0x80, 0x78,
0xfc, 0x7f, 0xf0, 0xfc, 0x78, 0x7, 0xe0, 0x1c,
0x3e, 0x1f, 0xfe, 0x1f, 0xe, 0x1, 0xf8, 0xf,
0x1f, 0x87, 0xff, 0x87, 0xc3, 0xc0, 0x7e, 0x3,
0x87, 0xe3, 0xff, 0xe1, 0xf8, 0x70, 0x1f, 0x81,
0xe1, 0xf8, 0xff, 0xf8, 0x7e, 0x1e, 0x7, 0x70,
0xf0, 0xfc, 0x3f, 0xff, 0xf, 0xc3, 0xc3, 0xdf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0,
/* U+1F6E4 "🛤" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x39, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xf8, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xfe, 0x7, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x1e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x39, 0xf8, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x1c, 0x7e, 0x0, 0x78,
0x0, 0x0, 0x0, 0x0, 0x1e, 0x1f, 0x80, 0xf,
0x0, 0x0, 0x0, 0x0, 0xf, 0x7, 0xe0, 0x1,
0xe0, 0x0, 0x0, 0x0, 0x7, 0x81, 0xf8, 0x0,
0x3c, 0x0, 0x0, 0x0, 0x3, 0x80, 0x7e, 0x0,
0x47, 0x80, 0x0, 0x0, 0x31, 0xc0, 0x1f, 0x80,
0x38, 0xf8, 0x0, 0x0, 0xc, 0xe0, 0x7, 0xe0,
0xe, 0xf, 0xc0, 0x0, 0x3f, 0xf0, 0x1, 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,
0xf8, 0x1f, 0x3, 0x6, 0x30, 0x67, 0xc0, 0x1,
0xfe, 0x7, 0xc1, 0xc1, 0x8c, 0x1d, 0xf0, 0x0,
0x7f, 0x99, 0xf0, 0xf3, 0xff, 0xe3, 0x80, 0x6,
0x1f, 0xf6, 0x0, 0x38, 0x30, 0x60, 0x70, 0x1,
0xc7, 0xff, 0x80, 0x1c, 0xc, 0x18, 0xc, 0x0,
0x71, 0xff, 0xf0, 0x6, 0x6, 0x3, 0x3, 0x81,
0x3c, 0x7f, 0xfc, 0x3, 0x8f, 0xff, 0xf8, 0x60,
0xef, 0x1f, 0xff, 0x0, 0xc7, 0xff, 0xff, 0x18,
0x3f, 0xe7, 0xff, 0xc0, 0x30, 0x30, 0x6, 0x7,
0xf, 0xf9, 0xff, 0xf8, 0x18, 0x1c, 0x1, 0xc0,
0xe7, 0xfe, 0x7f, 0xfe, 0xe, 0x7f, 0xff, 0xff,
0x1c, 0x1f, 0x9f, 0xff, 0x7, 0x3f, 0xff, 0xff,
0xe3, 0x83, 0xe7, 0xe0, 0x3, 0x8f, 0xff, 0xff,
0xf8, 0x70, 0x1, 0xf8, 0x0, 0xc0, 0x30, 0x0,
0x60, 0xc, 0x0, 0x7e, 0x0, 0x70, 0x1c, 0x0,
0x1c, 0x3, 0x0, 0x1f, 0x80, 0x18, 0x6, 0x0,
0x3, 0x0, 0xe0, 0x7, 0xe0, 0x6, 0x7f, 0xff,
0xff, 0xff, 0x18, 0x1, 0xf8, 0x1, 0x9f, 0xff,
0xff, 0xff, 0xe6, 0x0, 0x7e, 0x0, 0xcf, 0xff,
0xff, 0xff, 0xf9, 0xc0, 0x1f, 0x80, 0x33, 0xff,
0xff, 0xff, 0xfe, 0x30, 0x7, 0xe0, 0x1c, 0x6,
0x0, 0x0, 0x38, 0xe, 0x1, 0xf8, 0xe, 0x3,
0x80, 0x0, 0xe, 0x1, 0xc0, 0x7e, 0x7, 0x0,
0xe0, 0x0, 0x3, 0x80, 0x38, 0x1f, 0x83, 0x9f,
0xff, 0xff, 0xff, 0xff, 0xc7, 0x7, 0xe0, 0xcf,
0xff, 0xff, 0xff, 0xff, 0xf8, 0xe1, 0xf8, 0x33,
0xff, 0xff, 0xff, 0xff, 0xff, 0x18, 0x7e, 0x18,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc6, 0x1f, 0x86,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x87, 0xe1,
0x80, 0x70, 0x0, 0x0, 0x7, 0x0, 0x61, 0xfc,
0x60, 0x1c, 0x0, 0x0, 0x1, 0xc0, 0x18, 0xf7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0,
/* U+1F6E5 "🛥" */
0x0, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6, 0x30, 0xc4, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x63, 0xc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0x30, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x63, 0xc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0xe0, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x38, 0x1e, 0x0, 0xf8,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x7, 0x1, 0xc0,
0x6, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x70,
0x1c, 0x40, 0x70, 0x0, 0x0, 0xff, 0xff, 0xf8,
0xe, 0x3, 0x8f, 0xc7, 0x0, 0x0, 0x3, 0x7,
0xff, 0x81, 0xc0, 0x38, 0xfc, 0x30, 0x0, 0x0,
0x30, 0x60, 0x78, 0x38, 0x7, 0x1f, 0xe3, 0x80,
0x0, 0x3, 0x6, 0x6, 0x3, 0x80, 0x71, 0xfc,
0x38, 0x0, 0x0, 0x38, 0x60, 0x60, 0x70, 0xe,
0x0, 0x1, 0x80, 0x0, 0x7, 0xff, 0xff, 0xff,
0xfe, 0xe0, 0x0, 0x1c, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0xc0, 0x0, 0x7,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xfe, 0xc, 0x0,
0x0, 0x30, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xe0, 0x0, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xc0, 0x0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xc0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0xf,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x7, 0xfe, 0x7, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0x80, 0x3f, 0xf0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf3, 0xff, 0x3, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xf0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0x0, 0x38, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x1, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0xf,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xc0,
0x0, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xf8, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0x80, 0x0, 0x7, 0xff, 0xe0, 0x0,
0x0, 0x0, 0xe, 0x7c, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc7, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x18, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+1F6E9 "🛩" */
0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7e, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf0, 0x0, 0xfe, 0x1, 0xc0,
0x0, 0x0, 0x0, 0x7, 0x1f, 0x80, 0x19, 0xe0,
0x7e, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x7c, 0x3,
0x9c, 0x1d, 0xf0, 0x0, 0x0, 0x0, 0x70, 0x3,
0xc0, 0x71, 0xc7, 0xf, 0x80, 0x0, 0x0, 0x1c,
0x0, 0x70, 0xe, 0x39, 0xc0, 0x7c, 0x0, 0x0,
0x7, 0x0, 0x1e, 0x1, 0xc3, 0xf0, 0x7, 0x0,
0x0, 0x3, 0xc0, 0x3, 0x80, 0x18, 0x3c, 0x1,
0xc0, 0x0, 0x0, 0xf0, 0x0, 0xe0, 0x3, 0x7,
0x0, 0x78, 0x0, 0x0, 0x38, 0x0, 0x38, 0x0,
0x60, 0x70, 0x1e, 0x0, 0x0, 0xe, 0x0, 0xe,
0x0, 0xc, 0xe, 0x3, 0x80, 0x0, 0x3, 0x80,
0x1, 0xc0, 0x1, 0xc0, 0xe0, 0xe0, 0x0, 0x0,
0xe0, 0x0, 0x70, 0x0, 0x38, 0xf, 0xf8, 0x0,
0x0, 0x38, 0x0, 0x1c, 0x0, 0xf, 0x1, 0xff,
0xfe, 0x0, 0xe, 0x0, 0x7, 0x0, 0x3, 0xf8,
0x3, 0xff, 0xfc, 0x7, 0x80, 0x0, 0xe0, 0x0,
0x73, 0xc0, 0x0, 0x7f, 0xf1, 0xe0, 0x0, 0x38,
0x0, 0x1c, 0x3c, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0xe, 0x0, 0x7, 0x3, 0xc0, 0x0, 0x0, 0xfe,
0x0, 0x3, 0x80, 0x1, 0xc0, 0x1c, 0x0, 0x0,
0x3, 0xf0, 0x0, 0x70, 0x0, 0x70, 0x1, 0xc0,
0x0, 0x0, 0x1f, 0x80, 0x1c, 0x0, 0x1c, 0x0,
0x7c, 0xc, 0x0, 0x0, 0xf8, 0x7, 0x0, 0x7,
0x0, 0x1f, 0xc1, 0xe0, 0x0, 0x7, 0x81, 0xc0,
0x0, 0xe0, 0xf, 0xbc, 0x3c, 0x80, 0x0, 0x78,
0x38, 0x0, 0x1f, 0x3, 0xc1, 0xc7, 0x9c, 0x0,
0xf, 0x8e, 0x0, 0x1, 0xf1, 0xf0, 0x1c, 0x33,
0xe0, 0x3, 0xfb, 0x80, 0x0, 0xf, 0xf8, 0x1,
0xc0, 0x7c, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x7e,
0x0, 0x1e, 0xf, 0x9e, 0x3f, 0xfc, 0x0, 0x0,
0x7, 0x0, 0x1, 0xe0, 0x71, 0xe3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x1e, 0x2, 0x3c, 0x7f,
0xfe, 0x0, 0x60, 0x0, 0x0, 0x1, 0xe0, 0x7,
0x87, 0xfb, 0xf0, 0x3c, 0x0, 0x0, 0x0, 0xe,
0x0, 0xf8, 0xfe, 0x1f, 0x7, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x7, 0xf, 0x81, 0xf1, 0xe0, 0x0,
0x0, 0x0, 0x1f, 0xc0, 0x21, 0xe0, 0xf, 0x78,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0xef, 0x0, 0x0, 0x0, 0x1, 0xc1, 0xf8, 0x0,
0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x38, 0x7,
0xc0, 0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0xe,
0x0, 0x1e, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x3, 0x80, 0x0, 0xf0, 0x0, 0xf, 0x80, 0x0,
0x0, 0x0, 0xe0, 0x0, 0xf, 0x80, 0x3, 0xf0,
0x0, 0x0, 0x0, 0x38, 0x0, 0x3, 0xfe, 0x0,
0x7e, 0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0xff,
0xf8, 0x1f, 0xc0, 0x0, 0x0, 0x1, 0x80, 0x0,
0x79, 0xc7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x1e, 0x3c, 0x1f, 0xf0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x7, 0x8f, 0xc0, 0x1e, 0x0, 0x0,
0x0, 0x7, 0x0, 0x1, 0xe1, 0xf8, 0x7, 0x80,
0x0, 0x0, 0x1, 0xc0, 0x0, 0xf0, 0x3f, 0x1,
0xf0, 0x0, 0x0, 0x0, 0x70, 0x0, 0x3c, 0x3,
0xe0, 0x3c, 0x0, 0x0, 0x0, 0x1c, 0x0, 0xf,
0x0, 0x30, 0x7, 0x80, 0x0, 0x0, 0x3, 0x80,
0x3, 0xc0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0xe0, 0x1, 0xe0, 0x0, 0x0, 0x18, 0x0, 0x0,
0x0, 0x38, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x0, 0x1e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x80, 0x7, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xc0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x38, 0x7, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+1F6EB "🛫" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xf1, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xf0, 0x7f, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xf0, 0x3c, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0xe, 0x3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x20,
0x80, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e,
0x4, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0x4, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0x80, 0x80, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xc1, 0x0, 0x0, 0x70, 0x0,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x20, 0x0, 0x3c,
0x0, 0x0, 0x30, 0x0, 0x1, 0xf0, 0x4, 0x0,
0xf, 0xc, 0x0, 0xf, 0x0, 0x0, 0xf8, 0x8,
0x0, 0x7, 0xc1, 0xc0, 0x1, 0xf8, 0x0, 0x7c,
0x1, 0x0, 0x1, 0xe0, 0x38, 0x0, 0x1f, 0x80,
0x1f, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x80, 0x3,
0xff, 0xff, 0xff, 0xff, 0x80, 0x7e, 0x7f, 0x18,
0x3, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xc7,
0x3, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf0, 0xf,
0xf8, 0x80, 0x7f, 0xff, 0xff, 0xff, 0xfe, 0x38,
0x7, 0xff, 0x10, 0xf, 0xff, 0xff, 0xff, 0xff,
0xc6, 0x3, 0xef, 0xfc, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xf8, 0xc1, 0xf1, 0xff, 0x80, 0x0, 0x0,
0xf, 0x80, 0x3f, 0xb8, 0xf8, 0x1f, 0xe0, 0x0,
0x0, 0x3, 0xe0, 0x7, 0xfe, 0xfc, 0x3, 0xf0,
0x0, 0x0, 0x0, 0xf0, 0x40, 0x7f, 0xfe, 0x0,
0x38, 0x0, 0x0, 0x0, 0x3e, 0x8, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0,
0x3f, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8,
0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e,
0x7, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xe3, 0xef, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xe0, 0x3f, 0xff, 0xf8, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x3c, 0x3f, 0xe3,
0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x3,
0xf8, 0x7, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xf7, 0xf0, 0xe, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xf0, 0xf, 0xe, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf8, 0xff, 0x7, 0x80,
0x0, 0x0, 0x0, 0x0, 0x1, 0xfc, 0x1, 0x83,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0,
0x3, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xe1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
/* U+1F6EC "🛬" */
0x0, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0xe0,
0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xc0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x33,
0xff, 0xff, 0xf0, 0x3, 0xe0, 0x0, 0x0, 0x3,
0x9f, 0xc1, 0xff, 0xfc, 0x7c, 0x0, 0x0, 0x3,
0xf8, 0x7f, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0xf,
0xff, 0xe0, 0x3c, 0x0, 0x1f, 0xfc, 0x0, 0x0,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0,
0x0, 0x0, 0x3c, 0x0, 0x60, 0x0, 0xf, 0xf8,
0x0, 0x0, 0x1, 0xf0, 0x6, 0x60, 0x0, 0xf,
0xf0, 0x0, 0x0, 0x7, 0xc0, 0x6, 0x60, 0x0,
0x1f, 0xc0, 0x0, 0x0, 0x1f, 0x0, 0x6, 0x60,
0x0, 0x3e, 0x0, 0x0, 0x0, 0x7e, 0x10, 0x6,
0x60, 0x0, 0xf0, 0x0, 0x0, 0x1, 0xfb, 0xfc,
0x6, 0x0, 0x7, 0x0, 0x0, 0x0, 0x3, 0xff,
0xf8, 0x0, 0x0, 0x38, 0x0, 0x0, 0x1, 0xff,
0xff, 0xc0, 0x0, 0x3, 0xc0, 0x0, 0x3, 0xff,
0xff, 0xf0, 0x0, 0x1, 0xfe, 0x60, 0xf, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x0, 0xf7, 0xff, 0xff,
0xff, 0xf0, 0x3f, 0xf0, 0x0, 0x7, 0x7f, 0xff,
0xff, 0xfe, 0x0, 0xff, 0xff, 0xe3, 0xf3, 0xff,
0xfd, 0xff, 0x30, 0xc, 0x1f, 0xff, 0xfe, 0x0,
0x0, 0x1f, 0xe3, 0x0, 0xc0, 0xe3, 0xff, 0x80,
0x0, 0x0, 0xfe, 0x30, 0xc, 0xe, 0x6, 0x0,
0x0, 0x0, 0x7, 0xe3, 0x1, 0xe0, 0x0, 0x60,
0x0, 0x0, 0x0, 0x1e, 0x30, 0x1e, 0x0, 0x6,
0x0, 0x0, 0x0, 0x0, 0x72, 0x0, 0xe0, 0x0,
0xf0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0x7f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xe0, 0x3f, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xf, 0xe0, 0x1f, 0xc0,
0x0, 0x0, 0x0, 0x1f, 0xf0, 0x0, 0xf, 0xff,
0xc0, 0x0, 0x0, 0x1f, 0x87, 0xf0, 0x3, 0xff,
0xff, 0xe0, 0x0, 0x3, 0xf8, 0x4, 0x1, 0xef,
0xff, 0xff, 0xf0, 0x0, 0x3, 0xf8, 0x0, 0xf0,
0x3f, 0xff, 0xff, 0xf0, 0x0, 0x3, 0xf0, 0x7f,
0xff, 0x7, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf1, 0xf3, 0xfe, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0xf, 0x80, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xe7, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x40, 0x0, 0x0,
0x0,
/* U+1F6F0 "🛰" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xc0, 0x0, 0x0, 0xc, 0x0, 0x0,
0x0, 0xe, 0xfe, 0x0, 0x0, 0x1, 0x80, 0x0,
0x0, 0x1, 0xc3, 0xf8, 0x0, 0x0, 0x7c, 0x1,
0x0, 0x0, 0x38, 0xf, 0xe0, 0x0, 0x7f, 0xf0,
0x78, 0x0, 0x7, 0x0, 0x3f, 0x80, 0x3f, 0xdf,
0xdf, 0x80, 0x0, 0xe0, 0x0, 0xfc, 0x1f, 0x98,
0x7f, 0xf0, 0x0, 0x1c, 0x0, 0x3, 0xff, 0xc7,
0x83, 0xff, 0x0, 0x3, 0x80, 0x0, 0xff, 0xe1,
0xf8, 0xf, 0xe0, 0x0, 0x70, 0x0, 0x3f, 0xe0,
0x3f, 0x80, 0xfc, 0x0, 0xe, 0x0, 0xf, 0xfe,
0x3, 0xe0, 0x1f, 0x80, 0x1, 0xc0, 0x7, 0xff,
0xf0, 0x0, 0x1, 0xf0, 0x0, 0x38, 0x1, 0xf0,
0x7f, 0x0, 0x0, 0x3e, 0x0, 0x7, 0x0, 0x7c,
0x7, 0xf0, 0x0, 0x7, 0x0, 0x0, 0xe0, 0x1f,
0x0, 0x7f, 0x0, 0x80, 0x60, 0x0, 0x1c, 0xf,
0xe0, 0x7, 0xf0, 0x1e, 0xe, 0x0, 0x3, 0xe3,
0xfc, 0x0, 0x7e, 0x3, 0xf1, 0xc0, 0x0, 0x7f,
0xff, 0x80, 0x7, 0xe0, 0x7f, 0xf8, 0x0, 0x1,
0xff, 0xf0, 0x0, 0xfc, 0xe, 0x7f, 0x0, 0x0,
0x7, 0xfe, 0x0, 0xf, 0xc1, 0xc1, 0xf8, 0x0,
0x0, 0x3f, 0xc0, 0x1, 0xf8, 0x38, 0xf, 0xe0,
0x0, 0x0, 0xf8, 0x0, 0x1f, 0x7, 0x0, 0x3f,
0x80, 0x0, 0x7, 0x1, 0x83, 0xf0, 0xe0, 0x0,
0xfe, 0x0, 0x0, 0xe0, 0xf0, 0x7e, 0x1c, 0x0,
0x7, 0xf0, 0x0, 0x1c, 0x7e, 0xf, 0xc3, 0x80,
0x0, 0x1f, 0x80, 0x1, 0xff, 0x0, 0xf8, 0x70,
0x0, 0x0, 0xf0, 0x0, 0x3f, 0x80, 0x1f, 0xe,
0x0, 0x0, 0x3e, 0x0, 0xf, 0xc0, 0x3, 0xe7,
0xc0, 0x0, 0xf, 0xc0, 0x7, 0xf0, 0x0, 0x7f,
0xf8, 0x0, 0x3, 0xf8, 0xf, 0xfe, 0x0, 0xf,
0xff, 0x0, 0x1, 0xff, 0x3, 0xf8, 0xe0, 0x1,
0xf8, 0xe0, 0x0, 0x7f, 0xe0, 0x7c, 0x1e, 0x0,
0x3c, 0x1c, 0x0, 0x1f, 0xfc, 0xf, 0x81, 0xc0,
0x7, 0x83, 0xc0, 0x7, 0xff, 0x80, 0xe0, 0x1c,
0x1, 0xf0, 0x7f, 0x3, 0xff, 0xf0, 0x0, 0x3,
0xc0, 0x3c, 0x3, 0xfc, 0xff, 0xfe, 0x0, 0x0,
0x3c, 0xf, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0,
0x3, 0xe1, 0xe0, 0x0, 0x3f, 0xff, 0xf8, 0x0,
0x0, 0x1f, 0xf0, 0x0, 0x1, 0xff, 0xff, 0x0,
0x0, 0x0, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x40,
/* U+1F6F3 "🛳" */
0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xe0,
0x0, 0x7, 0x0, 0x0, 0x1c, 0x0, 0x3, 0xff,
0x0, 0x1, 0xf8, 0x0, 0x6, 0x0, 0x1, 0xff,
0xf8, 0x0, 0xfe, 0x0, 0x1, 0x80, 0x0, 0x7f,
0xfe, 0x0, 0x3e, 0x0, 0x0, 0x60, 0x0, 0xf,
0xff, 0x80, 0xf, 0x80, 0x0, 0x1c, 0x0, 0x1,
0xff, 0xe0, 0x7, 0xe0, 0x0, 0x3, 0xff, 0xff,
0xf7, 0xf8, 0x1, 0xf8, 0x0, 0x0, 0xff, 0xff,
0xfc, 0x6, 0x0, 0x7e, 0x0, 0x0, 0xc, 0x0,
0x7, 0x1, 0x80, 0x3f, 0x80, 0x0, 0x3, 0x0,
0x1, 0xc0, 0x7f, 0x8f, 0xe0, 0x0, 0x0, 0xc0,
0x0, 0x60, 0x1f, 0xff, 0xf8, 0x0, 0x0, 0x70,
0xfe, 0x18, 0x47, 0x1f, 0xff, 0x80, 0x0, 0x1c,
0x7f, 0x86, 0x39, 0xce, 0x7f, 0xe0, 0x0, 0x7,
0x1f, 0xe3, 0x8e, 0x73, 0x9c, 0x18, 0x0, 0x1,
0x87, 0xf8, 0xe0, 0x1c, 0xe7, 0x6, 0x0, 0x0,
0x60, 0x0, 0x38, 0x0, 0x39, 0xc1, 0x80, 0x0,
0x38, 0x0, 0xe, 0x0, 0x0, 0x0, 0x60, 0x0,
0xe, 0x0, 0x3, 0xff, 0x80, 0x0, 0x18, 0x0,
0x3, 0x80, 0x0, 0xff, 0xff, 0xf8, 0x7, 0x80,
0x0, 0xc3, 0xfc, 0x38, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x30, 0xff, 0xe, 0x19, 0xcf, 0xff, 0xff,
0x0, 0xc, 0x3f, 0xc3, 0x6, 0x73, 0x9d, 0xff,
0xc0, 0x7, 0x1f, 0xf0, 0xc1, 0x9c, 0xe7, 0x38,
0x70, 0x1, 0xc0, 0x0, 0x70, 0x27, 0x39, 0xce,
0x1c, 0x0, 0x60, 0x0, 0x1c, 0x0, 0x2, 0x73,
0x87, 0x0, 0x18, 0x0, 0x7, 0x0, 0x0, 0x0,
0x1, 0xcf, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x73, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x1c, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x7, 0x18, 0x0, 0x0, 0x1e, 0x0, 0xff,
0xff, 0xf1, 0xc6, 0x0, 0x0, 0x1, 0xc0, 0x0,
0xf, 0xff, 0xf1, 0xc1, 0x80, 0x0, 0x30, 0x0,
0x0, 0xf, 0xff, 0x70, 0xf1, 0xe3, 0x8e, 0x0,
0x0, 0x3, 0x7, 0xdc, 0x3c, 0x78, 0xe1, 0x80,
0x0, 0x1, 0x80, 0x37, 0xf, 0x1e, 0x38, 0x7f,
0x0, 0x0, 0xc0, 0xc, 0xc0, 0x0, 0x4, 0xf,
0xff, 0xf0, 0x70, 0xc3, 0x30, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xf8, 0x70, 0xcc, 0x0, 0x0, 0x0,
0x0, 0x7, 0xfc, 0xc, 0x33, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x3, 0x3f, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff,
0xff, 0xff, 0xff, 0x0, 0x0, 0x31, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0xc, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0,
/* U+1F6F4 "🛴" */
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe3, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0xc1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1,
0xff, 0x83, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3,
0xff, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf,
0xfe, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfc, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0x1c, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30,
0x39, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x63, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xcc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x98, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6,
0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x31,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x61, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x1c, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x60, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x31, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x63, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x87, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0x18, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xc, 0x30, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x18, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x21, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x41, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0x83, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x6, 0x3, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8, 0x3, 0x80, 0x0, 0x0,
0x0, 0x7f, 0x0, 0x10, 0x83, 0x80, 0x0, 0x0,
0x3, 0xff, 0x80, 0x60, 0x87, 0x0, 0x0, 0x0,
0x1e, 0x7, 0xc0, 0xc3, 0x87, 0x0, 0x0, 0x0,
0x70, 0x1, 0x83, 0x87, 0x87, 0x0, 0x0, 0x1,
0xc0, 0x3, 0x6, 0xf, 0x7, 0x0, 0x0, 0x3,
0x0, 0x6, 0x18, 0xf, 0xf, 0x0, 0x0, 0xe,
0xf, 0xfc, 0x36, 0x1f, 0xe, 0x0, 0x0, 0x18,
0x3f, 0xf8, 0x7c, 0x37, 0xf, 0xff, 0xff, 0xf0,
0xe0, 0x1, 0xf0, 0x6f, 0xf, 0xff, 0xff, 0xff,
0xfc, 0x7, 0xe1, 0xce, 0xe, 0x0, 0x1, 0xff,
0xfe, 0xf, 0xc3, 0xde, 0x1e, 0x0, 0x0, 0xf,
0xfe, 0x3f, 0x87, 0x9e, 0xf, 0xff, 0xff, 0xff,
0x3c, 0x7b, 0x1f, 0x1e, 0xf, 0xff, 0xff, 0xff,
0x3c, 0xf3, 0x3e, 0x3e, 0x0, 0x0, 0x0, 0x3,
0x39, 0xe7, 0xdc, 0x3e, 0x0, 0x0, 0x0, 0x6,
0x73, 0xc7, 0x38, 0x3f, 0x0, 0x0, 0x0, 0x1c,
0xe3, 0xc0, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xf1,
0xc7, 0xc3, 0xc0, 0x0, 0xff, 0xff, 0xff, 0x87,
0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe,
0x7, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf8,
0x3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc0,
/* U+1F6F5 "🛵" */
0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x63, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0x18, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x18, 0xc0, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x6e, 0x3, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xfc, 0x1e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf9, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x78,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x81, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0x80, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x7, 0x0, 0x0, 0x0, 0x7f, 0x0,
0x0, 0x0, 0xc0, 0x38, 0x0, 0x0, 0xf, 0xfe,
0x0, 0x0, 0xe, 0x1, 0xc0, 0x0, 0x1, 0xff,
0xf0, 0x0, 0x0, 0x60, 0x1c, 0x0, 0xff, 0xff,
0xff, 0x80, 0x0, 0x3, 0x0, 0xe0, 0x1f, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x38, 0x7, 0x0, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x1, 0xc0, 0x38, 0x7,
0xff, 0xff, 0xff, 0x0, 0x0, 0xc, 0x1, 0x80,
0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x60, 0x1c,
0x1, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x3, 0x0,
0xe0, 0x1, 0xc0, 0x0, 0x7, 0xe0, 0x0, 0x38,
0x7, 0x0, 0xe, 0x0, 0x0, 0x3f, 0x80, 0x1,
0xc0, 0x38, 0x0, 0x30, 0x0, 0x0, 0xfc, 0x0,
0xe, 0x1, 0xc0, 0x1, 0xc0, 0x0, 0x3, 0xe0,
0x1, 0xe0, 0xe, 0x0, 0xe, 0x0, 0x0, 0xf,
0x0, 0x3f, 0x0, 0x70, 0x0, 0x70, 0x0, 0x0,
0x70, 0x3, 0xc0, 0x3, 0x80, 0x3, 0x80, 0x0,
0x1, 0xc0, 0x38, 0x0, 0xe, 0x0, 0xc, 0x0,
0x0, 0xe, 0x3, 0x80, 0x0, 0x70, 0x0, 0x60,
0x0, 0x0, 0x30, 0x38, 0x0, 0x3, 0xc0, 0x7,
0x0, 0x0, 0x1, 0xc3, 0xc0, 0x0, 0x1f, 0x0,
0x38, 0x0, 0x0, 0x6, 0x1f, 0xfe, 0x0, 0x7c,
0x7, 0xc0, 0x0, 0x0, 0x38, 0xff, 0xfc, 0x3,
0xff, 0xfe, 0x0, 0x0, 0x0, 0xc3, 0xff, 0xf8,
0xf, 0xff, 0xf0, 0x0, 0x0, 0x7, 0x3e, 0x7,
0xe0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x39, 0xc0,
0x7f, 0x81, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xdc,
0x7, 0x7e, 0x3, 0xff, 0x80, 0xff, 0xff, 0xfe,
0xe0, 0x31, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff,
0xfe, 0x7, 0x8e, 0xe0, 0x0, 0x0, 0xf8, 0x38,
0x1c, 0x70, 0x7c, 0x33, 0x80, 0x0, 0x7, 0xc3,
0xe0, 0xe3, 0x83, 0xe1, 0x8e, 0x0, 0x0, 0x7c,
0x1f, 0x7, 0x1c, 0x1f, 0xc, 0x3c, 0x0, 0x7,
0x60, 0xf8, 0x38, 0xe0, 0xf8, 0x60, 0xff, 0xff,
0xf3, 0x87, 0xc1, 0xc7, 0x1, 0x7, 0x1, 0xff,
0xff, 0x1c, 0x8, 0x1e, 0x1c, 0x0, 0x38, 0x0,
0x0, 0x0, 0xe0, 0x0, 0xe0, 0xf0, 0x3, 0x80,
0x0, 0x0, 0x3, 0x80, 0xf, 0x3, 0xc0, 0x3c,
0x0, 0x0, 0x0, 0x1e, 0x0, 0xf0, 0x1f, 0x7,
0xc0, 0x0, 0x0, 0x0, 0x7c, 0x1f, 0x0, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0,
0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0,
0x0,
/* U+1F6F6 "🛶" */
0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe3,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x38, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x60, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0x3, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0x38,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xe1, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x6, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x70,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe1, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x6, 0x1c, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0xe0,
0x0, 0x0, 0x0, 0x8, 0x0, 0x0, 0x0, 0x3,
0x6, 0x0, 0x0, 0x1, 0x1, 0xe0, 0x0, 0x0,
0x0, 0x38, 0x70, 0x0, 0x0, 0x78, 0x1f, 0xe0,
0x0, 0x0, 0x1, 0xc3, 0x0, 0x0, 0x3f, 0x83,
0xff, 0xe0, 0x0, 0x0, 0xc, 0x38, 0x0, 0x3f,
0xfc, 0x3e, 0xff, 0xfc, 0x0, 0x0, 0xe1, 0x81,
0xff, 0xf7, 0xc3, 0xf0, 0xff, 0xff, 0xff, 0xfe,
0xf, 0xff, 0xf8, 0xec, 0x77, 0x83, 0xff, 0xff,
0xff, 0xf0, 0xff, 0xff, 0xe, 0xe7, 0x3c, 0x7f,
0xff, 0xff, 0xff, 0x7, 0x9f, 0xff, 0xce, 0x71,
0xef, 0xff, 0xc0, 0xff, 0xf8, 0x70, 0xff, 0xf8,
0xee, 0xf, 0xff, 0xf8, 0x1f, 0xff, 0xc3, 0x7,
0xff, 0x7, 0xe0, 0x7f, 0xfe, 0x3, 0xff, 0xfc,
0x38, 0x3f, 0xe0, 0x7e, 0x1, 0xff, 0xc0, 0x7f,
0xff, 0xe1, 0xc3, 0xf8, 0x7, 0xe0, 0x7, 0xff,
0xef, 0xff, 0xfe, 0xf, 0xfe, 0x0, 0x7e, 0x0,
0xf, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0x0, 0x7,
0xe0, 0x0, 0x7, 0xff, 0xff, 0xff, 0x83, 0xc0,
0x0, 0x7f, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8,
0x1e, 0x0, 0xf, 0x70, 0x0, 0x0, 0x0, 0x0,
0x3, 0x80, 0xf0, 0x0, 0xe7, 0x80, 0x0, 0x0,
0x0, 0x0, 0x18, 0x7, 0x80, 0x1e, 0x3c, 0x0,
0x0, 0x0, 0x0, 0x1, 0x80, 0x38, 0x3, 0xc1,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x1, 0xc0,
0x78, 0xf, 0x80, 0x0, 0x0, 0x0, 0x1, 0x80,
0xe, 0xf, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x0, 0x77, 0xe0, 0x1, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xc0, 0x7, 0xf8, 0x0, 0x3, 0xfc,
0x0, 0x0, 0x0, 0xc, 0x0, 0x3e, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0xe0, 0x1, 0xc0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xe0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x6, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x30, 0x0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x3, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0,
0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x60, 0x1, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x38, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xf,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x83, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1c, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0,
/* U+1F6F7 "🛷" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xe0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3c, 0xe, 0x1f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x3, 0xc0,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0,
0x78, 0x1c, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x3c, 0xf, 0x3, 0x80, 0x38, 0x0, 0x0, 0x0,
0x0, 0x7, 0x81, 0xc0, 0x70, 0x7, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf0, 0x38, 0xe, 0x0, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x3c, 0x7, 0x1, 0xc0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x7, 0x80, 0xe0,
0x38, 0x3, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x1c, 0x7, 0x0, 0x7c, 0x0, 0x0, 0x0, 0x0,
0x1e, 0x3, 0x80, 0xe0, 0xf, 0xc0, 0x0, 0x0,
0x0, 0x3, 0xc0, 0xf0, 0x1c, 0x1, 0xde, 0x0,
0x0, 0x0, 0x0, 0x78, 0x1e, 0x3, 0x80, 0x38,
0xe0, 0x0, 0x0, 0x0, 0x1e, 0x3, 0xc0, 0x70,
0x7, 0xf, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x70,
0xe, 0x0, 0xe0, 0x70, 0x0, 0x0, 0x0, 0x7c,
0xe, 0x1, 0xc0, 0x1c, 0x7, 0x86, 0x0, 0x0,
0xf, 0xc1, 0xc0, 0x38, 0x3, 0x80, 0x38, 0xf0,
0x0, 0x1, 0xec, 0x38, 0x7, 0x0, 0x70, 0x3,
0xde, 0x0, 0x0, 0x7c, 0xe7, 0x0, 0xe0, 0xe,
0x0, 0x1f, 0xc0, 0x0, 0xf, 0x8f, 0xe0, 0x1c,
0x1, 0xc0, 0x1, 0xf8, 0x0, 0x1, 0xf0, 0xfc,
0x3, 0x80, 0x38, 0x0, 0xf, 0x0, 0x0, 0x3e,
0xd, 0xf0, 0x70, 0x3f, 0x0, 0x1, 0xe0, 0x0,
0x7, 0x80, 0xcf, 0xff, 0xff, 0xe0, 0x0, 0x3c,
0x0, 0x0, 0xf0, 0xc, 0x3f, 0xff, 0xfc, 0x0,
0x7, 0x80, 0x0, 0x3e, 0x1, 0xc7, 0xff, 0xc7,
0x80, 0x0, 0xf0, 0x0, 0x7, 0xc0, 0x1c, 0xf0,
0x0, 0xf8, 0x0, 0x1e, 0x0, 0x3f, 0xf0, 0x1,
0xde, 0x0, 0x1f, 0xc0, 0x3, 0xc0, 0x7, 0xfe,
0x0, 0x1f, 0xc0, 0x3, 0xdc, 0x0, 0x78, 0x0,
0xc4, 0x60, 0x1, 0xf8, 0x0, 0x79, 0xc0, 0x7,
0x0, 0xc, 0x6, 0x0, 0x1f, 0x0, 0xf, 0x1c,
0x0, 0xf0, 0x0, 0xc0, 0xe0, 0x1, 0xe0, 0x1,
0xe0, 0xe0, 0x1e, 0x0, 0xc, 0x1c, 0x0, 0x3c,
0x0, 0x3c, 0xe, 0x3, 0xc0, 0x0, 0x61, 0xc0,
0x7, 0x80, 0x7, 0x80, 0xe0, 0x78, 0x0, 0x6,
0x1c, 0x0, 0xf0, 0x1, 0xf0, 0xe, 0xf, 0x0,
0x0, 0x33, 0x80, 0x1e, 0x3, 0x3c, 0x0, 0x71,
0xe0, 0x0, 0x3, 0xf8, 0x3, 0xc3, 0xff, 0x80,
0x7, 0x3c, 0x0, 0x0, 0x1f, 0xc0, 0xf8, 0x7f,
0xf0, 0x0, 0x77, 0x80, 0x0, 0x0, 0x3e, 0x1f,
0xe, 0x66, 0x0, 0x7, 0xf0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0xc0, 0x60, 0x0, 0x3e, 0x0, 0x0,
0x0, 0x7, 0xf8, 0xc, 0x7, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x3e, 0x0, 0xc0, 0xe0, 0x0,
0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x1c,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x60, 0xc0, 0x1, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xc, 0x0, 0x3c, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x31, 0xc0, 0x7, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x80,
0x1f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3c, 0x3, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf0, 0x7c, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x0, 0x0,
/* U+1F6F8 "🛸" */
0x0, 0x0, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x80, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1e, 0x0, 0x1e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x38, 0x0, 0xf, 0x0, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0x7, 0x80, 0x0,
0x0, 0x0, 0x0, 0x60, 0x7, 0x83, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xe0, 0xf, 0xc1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xc0, 0xf, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x1, 0xc0, 0x7, 0xc0, 0xe0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x7, 0x0, 0xe0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xc6, 0x0, 0x70, 0x0,
0x7, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x70, 0x0,
0xff, 0xff, 0x80, 0x7f, 0xff, 0x0, 0x70, 0x0,
0xff, 0xc0, 0x0, 0x3f, 0xff, 0xc0, 0x70, 0x0,
0xf8, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x70, 0x0,
0xfe, 0x0, 0x0, 0xf, 0xff, 0xfc, 0x70, 0x0,
0x6f, 0x0, 0x0, 0x3, 0xff, 0xfe, 0x70, 0x0,
0x77, 0xc0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0,
0x71, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0,
0x30, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0,
0x38, 0x3f, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x18, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x78, 0x0,
0x1c, 0x3, 0xf0, 0x0, 0x0, 0x0, 0x3c, 0x0,
0x1c, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x1e, 0x0,
0xe, 0x0, 0x1f, 0x80, 0x0, 0x0, 0xe, 0x0,
0x7, 0x0, 0x7, 0xf0, 0x0, 0x0, 0x7, 0x0,
0x7, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x3, 0x80,
0x3, 0x80, 0x60, 0x3f, 0x80, 0x0, 0x1, 0xc0,
0x1, 0xc0, 0xf0, 0x7, 0xf0, 0x0, 0x1, 0xe0,
0x1, 0xe0, 0xf0, 0x0, 0xfe, 0x0, 0x0, 0xf0,
0x0, 0xf0, 0x60, 0x0, 0x1f, 0xe0, 0x0, 0x70,
0x0, 0x78, 0x0, 0xc, 0x3, 0xfc, 0x0, 0x38,
0x0, 0x3c, 0x0, 0x1e, 0x0, 0x7f, 0xc0, 0x1c,
0x0, 0x1e, 0x0, 0x1e, 0x0, 0xf, 0xff, 0x1e,
0x0, 0x7, 0x80, 0x1e, 0x0, 0x0, 0x7f, 0xff,
0x0, 0x3, 0xc0, 0x0, 0x1, 0x80, 0x7, 0xff,
0x0, 0x0, 0xf0, 0x0, 0x3, 0xc0, 0x0, 0xf,
0x0, 0x0, 0x3c, 0x0, 0x3, 0xc0, 0x0, 0x3e,
0x0, 0x0, 0x1f, 0x80, 0x1, 0x80, 0x0, 0x7c,
0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x1, 0xf0,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x7, 0xc0,
0x0, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x1f, 0x0,
0x0, 0x0, 0x0, 0x3, 0xfc, 0x1, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0,
/* U+1F6F9 "🛹" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf0, 0x1f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x78, 0x0, 0x78, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x0, 0x3, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78,
0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xc0, 0x0, 0x0, 0x70, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf8, 0x0, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0,
0x70, 0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0,
0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe0,
0x1c, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x1, 0xc0, 0x0, 0x7, 0x0, 0x0, 0x0,
0x0, 0x3e, 0x1, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0x0, 0xf, 0x80, 0x38, 0x7, 0x0, 0xf,
0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0, 0x70,
0x0, 0xe0, 0x0, 0x0, 0x1, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1e, 0x0, 0x0, 0x0, 0x7e, 0x0,
0x0, 0x1c, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x1f,
0x80, 0x0, 0x1, 0xc0, 0x0, 0x3c, 0x0, 0x0,
0x7, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x80,
0x0, 0x1, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3,
0xf0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0xfe, 0x0, 0x0, 0x1f, 0x80, 0x0, 0x0,
0x0, 0x0, 0x3f, 0x80, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x3, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x1f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc,
0x3, 0xff, 0x0, 0x70, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xe0, 0x78, 0x0, 0x7, 0x0, 0x0, 0x0,
0xf, 0xdf, 0x9e, 0xf, 0x0, 0x8, 0x0, 0x0,
0x0, 0x3, 0xf1, 0xf0, 0xe0, 0xe0, 0x1, 0xc0,
0x18, 0x0, 0x0, 0xfc, 0x1f, 0xe, 0xe, 0x0,
0x0, 0x1, 0xc0, 0x0, 0x3f, 0x1, 0xf9, 0xc0,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xc0, 0xf,
0xfc, 0xe, 0x0, 0x0, 0x70, 0x0, 0x3, 0xe0,
0x0, 0x7f, 0x80, 0x70, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x0, 0x3, 0xe0, 0x7, 0x0, 0x0, 0x0,
0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x38, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x3e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xf0, 0x0, 0xf,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe0,
0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xe0, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x7, 0xe3,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7e, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xe1, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0x30, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+1F6FA "🛺" */
0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7, 0xf8,
0x1, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x7f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf0,
0x0, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x0, 0x0, 0x7f, 0x80,
0x0, 0x0, 0x0, 0x0, 0x1, 0xe0, 0x0, 0x7,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0,
0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0x80, 0x0, 0x1f, 0xe1, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x70, 0x0, 0x3, 0xc, 0x3f, 0xff, 0xff,
0xff, 0xc0, 0xe, 0x0, 0x0, 0xe1, 0x87, 0x0,
0xe, 0x0, 0x18, 0x1, 0xe0, 0x0, 0x18, 0x30,
0xe0, 0x1, 0xc0, 0x3, 0x0, 0x1c, 0x0, 0x7,
0x6, 0x1c, 0x0, 0x38, 0x0, 0x60, 0x3, 0x80,
0x0, 0xe0, 0xc3, 0x80, 0x7, 0x0, 0xc, 0x0,
0x70, 0x0, 0x18, 0x18, 0x70, 0x0, 0xe0, 0x1,
0x80, 0xe, 0x0, 0x3, 0x3, 0xe, 0x0, 0x1c,
0x0, 0x30, 0x1, 0xc0, 0x0, 0xe0, 0x61, 0xc0,
0x3, 0x80, 0x6, 0x0, 0x38, 0x0, 0x1c, 0xc,
0x38, 0x0, 0x70, 0x0, 0xc0, 0x7, 0x0, 0x3,
0x81, 0x87, 0x0, 0xe, 0x0, 0x18, 0x0, 0xf0,
0x0, 0x60, 0x30, 0xe0, 0x1, 0xc0, 0x3, 0x0,
0xe, 0x0, 0xc, 0x6, 0x1c, 0x0, 0x38, 0x0,
0x60, 0x1, 0xc0, 0x3, 0x80, 0xc3, 0x80, 0x7,
0x0, 0xc, 0x0, 0x38, 0x0, 0x7f, 0xf8, 0x70,
0x0, 0xe0, 0x1, 0x80, 0x7, 0x0, 0xf, 0xfe,
0xe, 0x0, 0x1c, 0x0, 0x30, 0x0, 0xe0, 0x1,
0xc0, 0x1, 0xc0, 0x3, 0x80, 0x6, 0x0, 0x1c,
0x0, 0x38, 0x0, 0x38, 0x0, 0x70, 0x0, 0xc0,
0x3, 0x80, 0x7, 0x0, 0x7, 0x0, 0xe, 0x0,
0x18, 0x0, 0x70, 0x0, 0xe0, 0x0, 0xe0, 0x1,
0xc0, 0x3, 0x0, 0xe, 0x0, 0x1f, 0xff, 0xfc,
0x0, 0x38, 0x3, 0xff, 0xff, 0xc0, 0x3, 0xff,
0xff, 0x80, 0x7, 0x0, 0xff, 0xff, 0xf8, 0x78,
0x3f, 0xff, 0xf3, 0xff, 0xe0, 0x3f, 0xff, 0xff,
0x1f, 0x87, 0xff, 0xfe, 0x7f, 0xfc, 0xf, 0xff,
0xff, 0xe7, 0x78, 0xff, 0xff, 0xcf, 0xff, 0x81,
0xfc, 0x1, 0xfc, 0xc7, 0x9f, 0xff, 0xf9, 0xff,
0xf0, 0x3f, 0x80, 0x3f, 0x98, 0xf1, 0xff, 0xff,
0xf, 0xfe, 0x7, 0xf0, 0x7, 0xf3, 0x1e, 0x3f,
0xff, 0xe1, 0xff, 0xc0, 0xff, 0xff, 0xfe, 0x77,
0x83, 0xff, 0xfc, 0x3f, 0xf8, 0x1f, 0xff, 0xff,
0xc7, 0xe0, 0x7f, 0xff, 0x87, 0xff, 0x3, 0xff,
0xff, 0xf8, 0x7e, 0xf, 0xff, 0xf0, 0xff, 0xe0,
0x7f, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xfe, 0x1f,
0xfc, 0xf, 0xff, 0xff, 0xe7, 0xff, 0xff, 0xff,
0xc3, 0xff, 0x81, 0xff, 0xff, 0xfc, 0xff, 0xff,
0xff, 0xf8, 0x7f, 0xf0, 0x3f, 0xff, 0xff, 0xbf,
0xff, 0xff, 0xff, 0xf, 0xfe, 0x7, 0xff, 0xff,
0xf7, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xc0, 0xff,
0xff, 0xfe, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xf8,
0x1f, 0xff, 0xff, 0xde, 0x7f, 0xff, 0xff, 0x87,
0xff, 0x3, 0xff, 0xff, 0xf8, 0x1f, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0x7, 0x1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xe1,
0xc0, 0xe, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x7,
0xfc, 0x38, 0x1, 0xc0, 0x0, 0x0, 0x1, 0xfc,
0x0, 0x7f, 0x8e, 0x0, 0x1c, 0x0, 0x0, 0x0,
0x3f, 0x80, 0x7, 0xf1, 0xc0, 0x3, 0x80, 0x0,
0x0, 0x0, 0xe0, 0x0, 0xe0, 0x38, 0x0, 0x70,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x1c, 0x7, 0x0,
0xe, 0x0, 0x0, 0x0, 0x3, 0x80, 0x3, 0x80,
0xe0, 0x1, 0xc0, 0x0, 0x0, 0x0, 0x70, 0x0,
0x70, 0x1c, 0x0, 0x78, 0x0, 0x0, 0x0, 0x7,
0x0, 0x1e, 0x1, 0xc0, 0xe, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x3, 0x80, 0x3c, 0x3, 0xc0, 0x0,
0x0, 0x0, 0x1e, 0x0, 0xf0, 0x3, 0xe1, 0xf0,
0x0, 0x0, 0x0, 0x1, 0xf0, 0x7c, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0,
0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x1f, 0x80, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0,
/* U+1F6FB "🛻" */
0x0, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0,
0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xe0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x70, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x18, 0x0, 0x1, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe1, 0xff, 0xc7,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf,
0xff, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1c, 0x30, 0x1c, 0x70, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x61, 0xc0, 0x71, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0x86, 0x1, 0xc7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x38, 0x7,
0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70,
0xc0, 0x1c, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0x87, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe, 0x18, 0x1, 0xc7, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x30, 0xe0, 0x7, 0x1c,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc3, 0x0,
0x1c, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6,
0x1c, 0x0, 0x71, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf8, 0x70, 0x1, 0xc7, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xc3, 0xff, 0xff, 0x1f, 0xff,
0xff, 0xff, 0xf0, 0x7f, 0xff, 0xf, 0xff, 0xfc,
0x7f, 0xff, 0xff, 0xff, 0xe1, 0xc0, 0x0, 0x0,
0x0, 0x1, 0xc0, 0x0, 0x0, 0x1, 0x87, 0x0,
0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x6,
0x1f, 0x80, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0,
0x0, 0x1c, 0x7f, 0x0, 0x0, 0x0, 0x0, 0x70,
0x0, 0x0, 0x1, 0xf1, 0xcc, 0x0, 0x0, 0x0,
0x1, 0xc0, 0x0, 0x0, 0xf, 0xc7, 0x18, 0x0,
0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x3f, 0x1c,
0x60, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0,
0xfc, 0x71, 0x80, 0x0, 0x0, 0x0, 0x70, 0x0,
0x0, 0x3, 0xf1, 0xc6, 0x0, 0x0, 0x0, 0x1,
0xc0, 0x0, 0x0, 0xf, 0xc7, 0x18, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x0, 0x3f, 0x1c, 0x60,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0xfc,
0x7f, 0x80, 0x0, 0x0, 0x0, 0x70, 0x0, 0x0,
0x0, 0x71, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xc0,
0x0, 0x0, 0x1, 0xc7, 0x0, 0xff, 0xe0, 0x0,
0x7, 0x0, 0xf, 0xff, 0xff, 0x1c, 0xf, 0xff,
0xc0, 0x0, 0x1c, 0x0, 0xff, 0xff, 0xfc, 0x38,
0x7f, 0xff, 0x80, 0x0, 0x70, 0x3, 0xff, 0xff,
0xf3, 0xff, 0xff, 0xff, 0x0, 0x1, 0xc0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xf1, 0xfe, 0x0, 0x7,
0x0, 0x7f, 0x1f, 0xff, 0xff, 0xff, 0x1, 0xf8,
0x0, 0x1c, 0x3, 0xf0, 0x1f, 0xff, 0xff, 0xf8,
0x3, 0xf0, 0x0, 0x70, 0xf, 0x80, 0x3f, 0xff,
0xff, 0xc0, 0x7, 0xe0, 0x1, 0xc0, 0x7c, 0x0,
0x7f, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xf0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xc0, 0x7, 0xfe, 0x0, 0x70, 0x1,
0xc0, 0x0, 0x0, 0x7, 0x0, 0x1c, 0x0, 0x1,
0xc0, 0x7, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x70,
0x0, 0x7, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x78,
0x3, 0xc0, 0x0, 0xe, 0x1, 0xe0, 0x0, 0x0,
0x0, 0xf0, 0x1e, 0x0, 0x0, 0x3e, 0xf, 0x0,
0x0, 0x0, 0x1, 0xe0, 0xf0, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0,
0x0, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xfc,
0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x7, 0xe0, 0x0,
/* U+1F6FC "🛼" */
0x0, 0x0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0x80, 0x70, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x1, 0xc6, 0x0,
0x0, 0x0, 0x0, 0x70, 0x0, 0xc, 0xf, 0xf8,
0x0, 0x0, 0x0, 0x3, 0x80, 0xf, 0xf3, 0xff,
0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfe, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x1,
0x9f, 0xe0, 0x0, 0x0, 0x0, 0x3, 0x80, 0x0,
0xc, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0,
0x3, 0x70, 0xfb, 0xe0, 0x0, 0x0, 0x1, 0xe0,
0x1, 0xfd, 0xf3, 0xff, 0x80, 0x0, 0x0, 0x7,
0xf, 0xff, 0xc7, 0xff, 0xe, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xf0, 0x1f, 0xf0, 0x30, 0x0, 0x0,
0x0, 0xff, 0xf8, 0x0, 0xff, 0xc1, 0x80, 0x0,
0x0, 0xe, 0x0, 0x0, 0x7, 0xff, 0x1c, 0x0,
0x0, 0x0, 0x70, 0x0, 0x0, 0x3f, 0xdf, 0xc0,
0x0, 0x0, 0x3, 0x80, 0x0, 0x30, 0xce, 0x3c,
0x0, 0x0, 0x0, 0x1c, 0x0, 0x7f, 0x80, 0x38,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0,
0xe0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x3f, 0x80, 0x0, 0x0, 0x0, 0xc, 0x0, 0x0,
0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x60, 0x0,
0x0, 0xe, 0x7c, 0x0, 0x0, 0x0, 0x3, 0xf0,
0x0, 0x0, 0x3, 0xf2, 0x0, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x1,
0xff, 0xff, 0x0, 0x1, 0xef, 0x80, 0x0, 0x0,
0xe, 0x7f, 0xff, 0x0, 0xf, 0x1f, 0xf0, 0x0,
0x0, 0x70, 0xf, 0xfe, 0x0, 0x1, 0xbf, 0x80,
0x0, 0x3, 0x0, 0x1, 0xfc, 0x0, 0x1e, 0x7f,
0x0, 0x0, 0x18, 0x0, 0x1, 0xf0, 0x0, 0x61,
0xfe, 0x0, 0x1, 0xc0, 0x0, 0x3, 0xe0, 0x0,
0x1f, 0xfe, 0x0, 0xe, 0x0, 0x0, 0x7, 0x0,
0x0, 0xf1, 0xfc, 0x0, 0x7f, 0xff, 0x80, 0x1c,
0x0, 0x7, 0x83, 0xf0, 0x3, 0xff, 0xff, 0xc0,
0x70, 0x0, 0x0, 0x3, 0xe0, 0x1f, 0xff, 0xff,
0x83, 0x80, 0x0, 0x0, 0xf, 0x0, 0xff, 0xff,
0xfe, 0xe, 0x0, 0x0, 0x0, 0x3c, 0x7, 0xf0,
0x0, 0xfc, 0x30, 0x0, 0x0, 0x0, 0xf0, 0x38,
0x0, 0x0, 0xe1, 0xc0, 0x0, 0x0, 0x3, 0x80,
0xe0, 0x0, 0x3, 0x86, 0x0, 0x0, 0x0, 0x1c,
0x7, 0x0, 0x0, 0xe, 0x30, 0x0, 0x0, 0x0,
0xe0, 0x1c, 0x0, 0x0, 0x31, 0x80, 0x0, 0x0,
0x7, 0x0, 0xf0, 0x0, 0x1, 0xce, 0x0, 0x0,
0x0, 0x78, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xfc,
0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff,
0xc0, 0x1, 0xff, 0xff, 0x9f, 0xe0, 0x1, 0xff,
0xfe, 0x0, 0x7, 0xff, 0xf8, 0xff, 0x80, 0xf,
0xff, 0xe0, 0x0, 0x3f, 0xff, 0xc3, 0xfe, 0x0,
0x7f, 0xfe, 0x0, 0x0, 0xff, 0xfc, 0x1f, 0xf8,
0x3, 0xc3, 0xf0, 0x0, 0x7, 0xc1, 0xe0, 0xff,
0xe0, 0x3c, 0xf, 0x0, 0x0, 0x1c, 0x7, 0x83,
0xff, 0x83, 0xc0, 0x38, 0x0, 0x1, 0xc0, 0x1c,
0x1f, 0xf8, 0x1c, 0x0, 0xe0, 0x0, 0xc, 0x0,
0x70, 0x7f, 0x0, 0xe0, 0x7, 0x0, 0x0, 0x60,
0x3, 0x81, 0xf0, 0x7, 0x0, 0x38, 0x0, 0x3,
0x0, 0x1c, 0xf, 0x0, 0x38, 0x1, 0xc0, 0x0,
0x18, 0x0, 0xe0, 0x20, 0x1, 0xc0, 0xe, 0x0,
0x0, 0xc0, 0x7, 0x0, 0x0, 0xf, 0x0, 0xe0,
0x0, 0x7, 0x0, 0x70, 0x0, 0x0, 0x3c, 0xf,
0x0, 0x0, 0x1c, 0x7, 0x80, 0x0, 0x0, 0xf0,
0xf0, 0x0, 0x0, 0xf0, 0x78, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x1f, 0xf8, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0,
0x0, 0x3f, 0x0, 0x0, 0x0, 0x1f, 0x80, 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 = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 520, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 1049, .adv_w = 1300, .box_w = 61, .box_h = 61, .ofs_x = 10, .ofs_y = -9},
{.bitmap_index = 1515, .adv_w = 1300, .box_w = 63, .box_h = 62, .ofs_x = 9, .ofs_y = -9},
{.bitmap_index = 2004, .adv_w = 1300, .box_w = 71, .box_h = 65, .ofs_x = 5, .ofs_y = -11},
{.bitmap_index = 2581, .adv_w = 0, .box_w = 1, .box_h = 1, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 2582, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 3111, .adv_w = 1300, .box_w = 68, .box_h = 65, .ofs_x = 6, .ofs_y = -11},
{.bitmap_index = 3664, .adv_w = 1300, .box_w = 74, .box_h = 65, .ofs_x = 3, .ofs_y = -11},
{.bitmap_index = 4266, .adv_w = 1300, .box_w = 62, .box_h = 64, .ofs_x = 10, .ofs_y = -10},
{.bitmap_index = 4762, .adv_w = 1300, .box_w = 51, .box_h = 64, .ofs_x = 15, .ofs_y = -10},
{.bitmap_index = 5170, .adv_w = 1300, .box_w = 62, .box_h = 64, .ofs_x = 9, .ofs_y = -10},
{.bitmap_index = 5666, .adv_w = 1300, .box_w = 66, .box_h = 64, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 6194, .adv_w = 1300, .box_w = 73, .box_h = 65, .ofs_x = 4, .ofs_y = -11},
{.bitmap_index = 6788, .adv_w = 1300, .box_w = 66, .box_h = 66, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 7333, .adv_w = 1300, .box_w = 66, .box_h = 66, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 7878, .adv_w = 1300, .box_w = 66, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 8415, .adv_w = 1300, .box_w = 48, .box_h = 64, .ofs_x = 17, .ofs_y = -10},
{.bitmap_index = 8799, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 9319, .adv_w = 1300, .box_w = 33, .box_h = 64, .ofs_x = 24, .ofs_y = -10},
{.bitmap_index = 9583, .adv_w = 1300, .box_w = 70, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 10143, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 10672, .adv_w = 1300, .box_w = 66, .box_h = 65, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 11209, .adv_w = 1300, .box_w = 57, .box_h = 64, .ofs_x = 12, .ofs_y = -10},
{.bitmap_index = 11665, .adv_w = 1300, .box_w = 56, .box_h = 64, .ofs_x = 13, .ofs_y = -10},
{.bitmap_index = 12113, .adv_w = 1300, .box_w = 54, .box_h = 65, .ofs_x = 14, .ofs_y = -10},
{.bitmap_index = 12552, .adv_w = 1300, .box_w = 54, .box_h = 65, .ofs_x = 14, .ofs_y = -10},
{.bitmap_index = 12991, .adv_w = 1300, .box_w = 54, .box_h = 65, .ofs_x = 14, .ofs_y = -10},
{.bitmap_index = 13430, .adv_w = 1300, .box_w = 74, .box_h = 56, .ofs_x = 4, .ofs_y = -6},
{.bitmap_index = 13948, .adv_w = 1300, .box_w = 54, .box_h = 65, .ofs_x = 14, .ofs_y = -10},
{.bitmap_index = 14387, .adv_w = 1300, .box_w = 54, .box_h = 65, .ofs_x = 14, .ofs_y = -10},
{.bitmap_index = 14826, .adv_w = 1300, .box_w = 54, .box_h = 65, .ofs_x = 14, .ofs_y = -10},
{.bitmap_index = 15265, .adv_w = 1300, .box_w = 66, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 15802, .adv_w = 1300, .box_w = 64, .box_h = 65, .ofs_x = 9, .ofs_y = -10},
{.bitmap_index = 16322, .adv_w = 1300, .box_w = 68, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 16866, .adv_w = 1300, .box_w = 68, .box_h = 64, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 17410, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 17930, .adv_w = 1300, .box_w = 65, .box_h = 46, .ofs_x = 8, .ofs_y = -1},
{.bitmap_index = 18304, .adv_w = 1300, .box_w = 69, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 18856, .adv_w = 1300, .box_w = 61, .box_h = 64, .ofs_x = 10, .ofs_y = -10},
{.bitmap_index = 19344, .adv_w = 1300, .box_w = 68, .box_h = 64, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 19888, .adv_w = 1300, .box_w = 75, .box_h = 65, .ofs_x = 3, .ofs_y = -10},
{.bitmap_index = 20498, .adv_w = 1300, .box_w = 61, .box_h = 64, .ofs_x = 10, .ofs_y = -10},
{.bitmap_index = 20986, .adv_w = 1300, .box_w = 61, .box_h = 64, .ofs_x = 10, .ofs_y = -10},
{.bitmap_index = 21474, .adv_w = 1300, .box_w = 60, .box_h = 67, .ofs_x = 11, .ofs_y = -11},
{.bitmap_index = 21977, .adv_w = 1300, .box_w = 70, .box_h = 49, .ofs_x = 6, .ofs_y = -3},
{.bitmap_index = 22406, .adv_w = 1300, .box_w = 71, .box_h = 40, .ofs_x = 5, .ofs_y = 2},
{.bitmap_index = 22761, .adv_w = 1300, .box_w = 56, .box_h = 64, .ofs_x = 12, .ofs_y = -10},
{.bitmap_index = 23209, .adv_w = 1300, .box_w = 67, .box_h = 52, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 23645, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 24165, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 24685, .adv_w = 1300, .box_w = 67, .box_h = 52, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 25121, .adv_w = 1300, .box_w = 50, .box_h = 64, .ofs_x = 15, .ofs_y = -10},
{.bitmap_index = 25521, .adv_w = 1300, .box_w = 68, .box_h = 53, .ofs_x = 6, .ofs_y = -5},
{.bitmap_index = 25972, .adv_w = 1300, .box_w = 67, .box_h = 56, .ofs_x = 7, .ofs_y = -6},
{.bitmap_index = 26441, .adv_w = 1300, .box_w = 39, .box_h = 64, .ofs_x = 21, .ofs_y = -10},
{.bitmap_index = 26753, .adv_w = 1300, .box_w = 64, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 27265, .adv_w = 1300, .box_w = 62, .box_h = 64, .ofs_x = 10, .ofs_y = -10},
{.bitmap_index = 27761, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 28281, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 28801, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 29330, .adv_w = 1300, .box_w = 72, .box_h = 59, .ofs_x = 5, .ofs_y = -8},
{.bitmap_index = 29861, .adv_w = 1300, .box_w = 72, .box_h = 65, .ofs_x = 5, .ofs_y = -11},
{.bitmap_index = 30446, .adv_w = 1300, .box_w = 71, .box_h = 65, .ofs_x = 5, .ofs_y = -10},
{.bitmap_index = 31023, .adv_w = 1300, .box_w = 71, .box_h = 64, .ofs_x = 5, .ofs_y = -10},
{.bitmap_index = 31591, .adv_w = 1300, .box_w = 77, .box_h = 65, .ofs_x = 2, .ofs_y = -10},
{.bitmap_index = 32217, .adv_w = 1300, .box_w = 70, .box_h = 42, .ofs_x = 5, .ofs_y = 1},
{.bitmap_index = 32585, .adv_w = 1300, .box_w = 69, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 33137, .adv_w = 1300, .box_w = 80, .box_h = 65, .ofs_x = 1, .ofs_y = -11},
{.bitmap_index = 33787, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 34307, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 34827, .adv_w = 1300, .box_w = 77, .box_h = 64, .ofs_x = 2, .ofs_y = -10},
{.bitmap_index = 35443, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 35963, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 36483, .adv_w = 1300, .box_w = 69, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 37035, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 37555, .adv_w = 1300, .box_w = 62, .box_h = 64, .ofs_x = 10, .ofs_y = -10},
{.bitmap_index = 38051, .adv_w = 1300, .box_w = 70, .box_h = 66, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 38629, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 39149, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 39669, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 40189, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 40709, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 41229, .adv_w = 1300, .box_w = 67, .box_h = 64, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 41765, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 42285, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 42805, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 43325, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 43845, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 44365, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 44885, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 45405, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 45925, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 46445, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 46965, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 47485, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 48005, .adv_w = 1300, .box_w = 65, .box_h = 66, .ofs_x = 8, .ofs_y = -12},
{.bitmap_index = 48542, .adv_w = 1300, .box_w = 65, .box_h = 66, .ofs_x = 8, .ofs_y = -12},
{.bitmap_index = 49079, .adv_w = 1300, .box_w = 65, .box_h = 66, .ofs_x = 8, .ofs_y = -12},
{.bitmap_index = 49616, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 50136, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 50656, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 51176, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 51696, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 52216, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 52736, .adv_w = 1300, .box_w = 69, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 53288, .adv_w = 1300, .box_w = 67, .box_h = 64, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 53824, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 54344, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 54864, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 55393, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 55913, .adv_w = 1300, .box_w = 67, .box_h = 64, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 56449, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 56969, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 57489, .adv_w = 1300, .box_w = 65, .box_h = 66, .ofs_x = 8, .ofs_y = -12},
{.bitmap_index = 58026, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 58546, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 59066, .adv_w = 1300, .box_w = 67, .box_h = 65, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 59611, .adv_w = 1300, .box_w = 74, .box_h = 67, .ofs_x = 4, .ofs_y = -12},
{.bitmap_index = 60231, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 60751, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 61271, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 61791, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 62311, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 62831, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 63351, .adv_w = 1300, .box_w = 72, .box_h = 62, .ofs_x = 5, .ofs_y = -9},
{.bitmap_index = 63909, .adv_w = 1300, .box_w = 72, .box_h = 62, .ofs_x = 4, .ofs_y = -9},
{.bitmap_index = 64467, .adv_w = 1300, .box_w = 72, .box_h = 62, .ofs_x = 5, .ofs_y = -9},
{.bitmap_index = 65025, .adv_w = 1300, .box_w = 72, .box_h = 62, .ofs_x = 5, .ofs_y = -9},
{.bitmap_index = 65583, .adv_w = 1300, .box_w = 72, .box_h = 62, .ofs_x = 5, .ofs_y = -9},
{.bitmap_index = 66141, .adv_w = 1300, .box_w = 72, .box_h = 62, .ofs_x = 5, .ofs_y = -9},
{.bitmap_index = 66699, .adv_w = 1300, .box_w = 72, .box_h = 62, .ofs_x = 5, .ofs_y = -9},
{.bitmap_index = 67257, .adv_w = 1300, .box_w = 72, .box_h = 60, .ofs_x = 5, .ofs_y = -9},
{.bitmap_index = 67797, .adv_w = 1300, .box_w = 72, .box_h = 62, .ofs_x = 5, .ofs_y = -9},
{.bitmap_index = 68355, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 68875, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 69395, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 69915, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 70435, .adv_w = 1300, .box_w = 74, .box_h = 55, .ofs_x = 4, .ofs_y = -6},
{.bitmap_index = 70944, .adv_w = 1300, .box_w = 69, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 71496, .adv_w = 1300, .box_w = 77, .box_h = 61, .ofs_x = 2, .ofs_y = -9},
{.bitmap_index = 72084, .adv_w = 1300, .box_w = 77, .box_h = 62, .ofs_x = 2, .ofs_y = -9},
{.bitmap_index = 72681, .adv_w = 1300, .box_w = 76, .box_h = 62, .ofs_x = 3, .ofs_y = -9},
{.bitmap_index = 73270, .adv_w = 1300, .box_w = 69, .box_h = 62, .ofs_x = 6, .ofs_y = -9},
{.bitmap_index = 73805, .adv_w = 1300, .box_w = 53, .box_h = 64, .ofs_x = 14, .ofs_y = -10},
{.bitmap_index = 74229, .adv_w = 1300, .box_w = 72, .box_h = 65, .ofs_x = 5, .ofs_y = -11},
{.bitmap_index = 74814, .adv_w = 1300, .box_w = 70, .box_h = 52, .ofs_x = 6, .ofs_y = -4},
{.bitmap_index = 75269, .adv_w = 1300, .box_w = 74, .box_h = 55, .ofs_x = 4, .ofs_y = -6},
{.bitmap_index = 75778, .adv_w = 1300, .box_w = 63, .box_h = 64, .ofs_x = 9, .ofs_y = -10},
{.bitmap_index = 76282, .adv_w = 1300, .box_w = 63, .box_h = 63, .ofs_x = 9, .ofs_y = -10},
{.bitmap_index = 76779, .adv_w = 1300, .box_w = 76, .box_h = 58, .ofs_x = 3, .ofs_y = -7},
{.bitmap_index = 77330, .adv_w = 1300, .box_w = 69, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 77882, .adv_w = 1300, .box_w = 74, .box_h = 56, .ofs_x = 4, .ofs_y = -6},
{.bitmap_index = 78400, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 78929, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 79449, .adv_w = 1300, .box_w = 49, .box_h = 65, .ofs_x = 16, .ofs_y = -11},
{.bitmap_index = 79848, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 80368, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 80897, .adv_w = 1300, .box_w = 69, .box_h = 65, .ofs_x = 6, .ofs_y = -11},
{.bitmap_index = 81458, .adv_w = 1300, .box_w = 63, .box_h = 65, .ofs_x = 9, .ofs_y = -11},
{.bitmap_index = 81970, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 82499, .adv_w = 1300, .box_w = 73, .box_h = 50, .ofs_x = 4, .ofs_y = -3},
{.bitmap_index = 82956, .adv_w = 1300, .box_w = 71, .box_h = 65, .ofs_x = 5, .ofs_y = -11},
{.bitmap_index = 83533, .adv_w = 1300, .box_w = 66, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 84070, .adv_w = 1300, .box_w = 59, .box_h = 65, .ofs_x = 11, .ofs_y = -11},
{.bitmap_index = 84550, .adv_w = 1300, .box_w = 76, .box_h = 58, .ofs_x = 3, .ofs_y = -7},
{.bitmap_index = 85101, .adv_w = 1300, .box_w = 77, .box_h = 65, .ofs_x = 2, .ofs_y = -11},
{.bitmap_index = 85727, .adv_w = 1300, .box_w = 76, .box_h = 65, .ofs_x = 2, .ofs_y = -11},
{.bitmap_index = 86345, .adv_w = 1300, .box_w = 76, .box_h = 59, .ofs_x = 2, .ofs_y = -8},
{.bitmap_index = 86906, .adv_w = 1300, .box_w = 70, .box_h = 66, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 87484, .adv_w = 1300, .box_w = 76, .box_h = 52, .ofs_x = 2, .ofs_y = -4},
{.bitmap_index = 87978, .adv_w = 1300, .box_w = 64, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 88490, .adv_w = 1300, .box_w = 72, .box_h = 46, .ofs_x = 5, .ofs_y = -1},
{.bitmap_index = 88904, .adv_w = 1300, .box_w = 75, .box_h = 61, .ofs_x = 3, .ofs_y = -9},
{.bitmap_index = 89476, .adv_w = 1300, .box_w = 75, .box_h = 49, .ofs_x = 3, .ofs_y = -3},
{.bitmap_index = 89936, .adv_w = 1300, .box_w = 75, .box_h = 62, .ofs_x = 3, .ofs_y = -9},
{.bitmap_index = 90518, .adv_w = 1300, .box_w = 72, .box_h = 55, .ofs_x = 5, .ofs_y = -6},
{.bitmap_index = 91013, .adv_w = 1300, .box_w = 77, .box_h = 62, .ofs_x = 2, .ofs_y = -9},
{.bitmap_index = 91610, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 92130, .adv_w = 1300, .box_w = 66, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 92667, .adv_w = 1300, .box_w = 67, .box_h = 65, .ofs_x = 7, .ofs_y = -11},
{.bitmap_index = 93212, .adv_w = 1300, .box_w = 65, .box_h = 66, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 93749, .adv_w = 1300, .box_w = 64, .box_h = 65, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 94269, .adv_w = 1300, .box_w = 71, .box_h = 65, .ofs_x = 5, .ofs_y = -11},
{.bitmap_index = 94846, .adv_w = 1300, .box_w = 72, .box_h = 58, .ofs_x = 4, .ofs_y = -7},
{.bitmap_index = 95368, .adv_w = 1300, .box_w = 77, .box_h = 36, .ofs_x = 2, .ofs_y = 4},
{.bitmap_index = 95715, .adv_w = 1300, .box_w = 78, .box_h = 36, .ofs_x = 2, .ofs_y = 4},
{.bitmap_index = 96066, .adv_w = 1300, .box_w = 31, .box_h = 64, .ofs_x = 25, .ofs_y = -10},
{.bitmap_index = 96314, .adv_w = 1300, .box_w = 67, .box_h = 64, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 96850, .adv_w = 1300, .box_w = 61, .box_h = 64, .ofs_x = 10, .ofs_y = -10},
{.bitmap_index = 97338, .adv_w = 1300, .box_w = 64, .box_h = 66, .ofs_x = 9, .ofs_y = -11},
{.bitmap_index = 97866, .adv_w = 1300, .box_w = 37, .box_h = 64, .ofs_x = 22, .ofs_y = -10},
{.bitmap_index = 98162, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 98682, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 99211, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 99731, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 100251, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 100771, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 101291, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 101811, .adv_w = 1300, .box_w = 73, .box_h = 49, .ofs_x = 5, .ofs_y = -3},
{.bitmap_index = 102259, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 102779, .adv_w = 1300, .box_w = 60, .box_h = 64, .ofs_x = 10, .ofs_y = -10},
{.bitmap_index = 103259, .adv_w = 1300, .box_w = 72, .box_h = 65, .ofs_x = 5, .ofs_y = -11},
{.bitmap_index = 103844, .adv_w = 1300, .box_w = 36, .box_h = 64, .ofs_x = 23, .ofs_y = -10},
{.bitmap_index = 104132, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 104652, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 105172, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 105701, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 106230, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 106759, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 107288, .adv_w = 1300, .box_w = 48, .box_h = 64, .ofs_x = 16, .ofs_y = -10},
{.bitmap_index = 107672, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 108201, .adv_w = 1300, .box_w = 67, .box_h = 64, .ofs_x = 7, .ofs_y = -10},
{.bitmap_index = 108737, .adv_w = 1300, .box_w = 65, .box_h = 58, .ofs_x = 8, .ofs_y = -7},
{.bitmap_index = 109209, .adv_w = 1300, .box_w = 66, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 109746, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 110275, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 110804, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 111333, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 111862, .adv_w = 1300, .box_w = 69, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 112414, .adv_w = 1300, .box_w = 72, .box_h = 49, .ofs_x = 5, .ofs_y = -3},
{.bitmap_index = 112855, .adv_w = 1300, .box_w = 62, .box_h = 65, .ofs_x = 9, .ofs_y = -11},
{.bitmap_index = 113359, .adv_w = 1300, .box_w = 68, .box_h = 62, .ofs_x = 7, .ofs_y = -9},
{.bitmap_index = 113886, .adv_w = 1300, .box_w = 72, .box_h = 49, .ofs_x = 5, .ofs_y = -3},
{.bitmap_index = 114327, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 114856, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 115385, .adv_w = 1300, .box_w = 61, .box_h = 65, .ofs_x = 10, .ofs_y = -11},
{.bitmap_index = 115881, .adv_w = 1300, .box_w = 51, .box_h = 64, .ofs_x = 15, .ofs_y = -10},
{.bitmap_index = 116289, .adv_w = 1300, .box_w = 70, .box_h = 64, .ofs_x = 6, .ofs_y = -10},
{.bitmap_index = 116849, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 117369, .adv_w = 1300, .box_w = 65, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 117898, .adv_w = 1300, .box_w = 59, .box_h = 65, .ofs_x = 12, .ofs_y = -11},
{.bitmap_index = 118378, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 118898, .adv_w = 1300, .box_w = 65, .box_h = 64, .ofs_x = 8, .ofs_y = -10},
{.bitmap_index = 119418, .adv_w = 1300, .box_w = 71, .box_h = 64, .ofs_x = 5, .ofs_y = -10},
{.bitmap_index = 119986, .adv_w = 1300, .box_w = 55, .box_h = 64, .ofs_x = 13, .ofs_y = -10},
{.bitmap_index = 120426, .adv_w = 1300, .box_w = 45, .box_h = 64, .ofs_x = 18, .ofs_y = -10},
{.bitmap_index = 120786, .adv_w = 1300, .box_w = 66, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 121323, .adv_w = 1300, .box_w = 66, .box_h = 65, .ofs_x = 8, .ofs_y = -11},
{.bitmap_index = 121860, .adv_w = 1300, .box_w = 76, .box_h = 47, .ofs_x = 3, .ofs_y = -2},
{.bitmap_index = 122307, .adv_w = 1300, .box_w = 75, .box_h = 64, .ofs_x = 4, .ofs_y = -10},
{.bitmap_index = 122907, .adv_w = 1300, .box_w = 75, .box_h = 64, .ofs_x = 3, .ofs_y = -10},
{.bitmap_index = 123507, .adv_w = 1300, .box_w = 68, .box_h = 65, .ofs_x = 7, .ofs_y = -11},
{.bitmap_index = 124060, .adv_w = 1300, .box_w = 67, .box_h = 46, .ofs_x = 7, .ofs_y = -1},
{.bitmap_index = 124446, .adv_w = 1300, .box_w = 66, .box_h = 65, .ofs_x = 7, .ofs_y = -11},
{.bitmap_index = 124983, .adv_w = 1300, .box_w = 63, .box_h = 64, .ofs_x = 9, .ofs_y = -10},
{.bitmap_index = 125487, .adv_w = 1300, .box_w = 69, .box_h = 65, .ofs_x = 6, .ofs_y = -11},
{.bitmap_index = 126048, .adv_w = 1300, .box_w = 76, .box_h = 58, .ofs_x = 3, .ofs_y = -7},
{.bitmap_index = 126599, .adv_w = 1300, .box_w = 76, .box_h = 56, .ofs_x = 3, .ofs_y = -6},
{.bitmap_index = 127131, .adv_w = 1300, .box_w = 64, .box_h = 46, .ofs_x = 9, .ofs_y = -1},
{.bitmap_index = 127499, .adv_w = 1300, .box_w = 76, .box_h = 52, .ofs_x = 3, .ofs_y = -4},
{.bitmap_index = 127993, .adv_w = 1300, .box_w = 75, .box_h = 66, .ofs_x = 4, .ofs_y = -11},
{.bitmap_index = 128612, .adv_w = 1300, .box_w = 78, .box_h = 52, .ofs_x = 2, .ofs_y = -4},
{.bitmap_index = 129119, .adv_w = 1300, .box_w = 69, .box_h = 65, .ofs_x = 6, .ofs_y = -11}
};
/*---------------------
* CHARACTER MAPPING
*--------------------*/
static const uint16_t unicode_list_0[] = {
0x0, 0xf, 0x11, 0x47, 0x5f, 0xd70a
};
static const uint8_t glyph_id_ofs_list_5[] = {
0, 1, 2, 3, 4, 5, 6, 7,
0, 0, 8, 9, 10, 0, 0, 0,
0, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 0, 0, 0, 21, 0,
22, 23, 0, 0, 0, 24, 0, 0,
25, 26, 27, 28, 29, 30, 31, 32,
33, 34
};
/*Collect the unicode lists and glyph_id offsets*/
static const lv_font_fmt_txt_cmap_t cmaps[] =
{
{
.range_start = 9989, .range_length = 55051, .glyph_id_start = 1,
.unicode_list = unicode_list_0, .glyph_id_ofs_list = NULL, .list_length = 6, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
},
{
.range_start = 128192, .range_length = 62, .glyph_id_start = 7,
.unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY
},
{
.range_start = 128255, .range_length = 1, .glyph_id_start = 69,
.unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY
},
{
.range_start = 128512, .range_length = 80, .glyph_id_start = 70,
.unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY
},
{
.range_start = 128640, .range_length = 70, .glyph_id_start = 150,
.unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY
},
{
.range_start = 128715, .range_length = 50, .glyph_id_start = 220,
.unicode_list = NULL, .glyph_id_ofs_list = glyph_id_ofs_list_5, .list_length = 50, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_FULL
}
};
/*--------------------
* ALL CUSTOM DATA
*--------------------*/
#if LVGL_VERSION_MAJOR == 8
/*Store all the custom data of the font*/
static lv_font_fmt_txt_glyph_cache_t cache;
#endif
#if LVGL_VERSION_MAJOR >= 8
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 = 6,
.bpp = 1,
.kern_classes = 0,
.bitmap_format = 0,
#if LVGL_VERSION_MAJOR == 8
.cache = &cache
#endif
};
/*-----------------
* PUBLIC FONT
*----------------*/
/*Initialize a public general font descriptor*/
#if LVGL_VERSION_MAJOR >= 8
const lv_font_t NotoEmoji64 = {
#else
lv_font_t NotoEmoji64 = {
#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 = 68, /*The maximum line height required by the font*/
.base_line = 12, /*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) || LVGL_VERSION_MAJOR >= 8
.underline_position = 39,
.underline_thickness = 4,
#endif
//.static_bitmap = 0,
.dsc = &font_dsc, /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */
#if LV_VERSION_CHECK(8, 2, 0) || LVGL_VERSION_MAJOR >= 9
.fallback = NULL,
#endif
.user_data = NULL,
};
#endif /*#if NOTOEMOJI64*/
|
train_000.parquet/702
|
{
"file_path": "main/NotoEmoji64.c",
"repo_id": "0015/Grid_Board",
"size": 807474,
"token_count": 712276
}
|
/**
* @file main.cpp
* @brief Main firmware entry point for the Grid Board project.
*
* Grid Board is an interactive 12x5 grid display system built with ESP32-P4 Nano with 10.1-inch display (Waveshare)
* and LVGL, featuring animated characters, emoji support, and Bluetooth Low Energy (BLE)
* communication with a Flutter-based mobile controller.
*
* This project is designed for creative message display,
* and mobile-to-device communication over BLE.
*
* Author: Eric Nam
* YouTube: https://youtube.com/@thatproject
* Repository: https://github.com/0015/Grid_Board
*/
#include "esp_log.h"
#include "esp_err.h"
#include "esp_check.h"
#include "esp_memory_utils.h"
#include "esp_random.h"
#include "esp_timer.h"
#include "nvs_flash.h"
#include "ble_server.h"
#include "esp_heap_caps.h"
#include "bsp/esp-bsp.h"
#include "bsp_board_extra.h"
#include "bsp/display.h"
#include "lvgl.h"
#include "driver/gpio.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/semphr.h"
#include <stdio.h>
#include <string.h>
#include <string>
#include <vector>
#include <algorithm>
#include <random>
#include "grid_board.hpp"
extern const uint8_t card_pcm_start[] asm("_binary_card_pcm_start");
extern const uint8_t card_pcm_end[] asm("_binary_card_pcm_end");
// Global grid board instance
static GridBoard grid_board;
static const char *device_name = "Grid_Board";
static std::string target_text = " WELCOME😀 TO 📌GRID BOARD❤ ";
static QueueHandle_t sfx_queue = nullptr;
void card_flip_sfx_task(void *param)
{
static int64_t last_sfx_time = 0;
const int MIN_SFX_INTERVAL_MS = 33;
size_t pcm_size = card_pcm_end - card_pcm_start;
size_t bytes_written = 0;
bool active = true;
while (1)
{
uint8_t msg;
if (xQueueReceive(sfx_queue, &msg, portMAX_DELAY) == pdTRUE)
{
if (msg == 0)
{
// "Pause" - just go idle until new non-zero request arrives
active = false;
continue;
}
// Only play if in active mode
int64_t now = esp_timer_get_time() / 1000; // ms
if (now - last_sfx_time >= MIN_SFX_INTERVAL_MS)
{
last_sfx_time = now;
bsp_extra_i2s_write((void *)card_pcm_start, pcm_size, &bytes_written, 200);
}
active = true;
}
}
}
void start_sfx_task()
{
if (!sfx_queue)
sfx_queue = xQueueCreate(8, sizeof(uint8_t));
xTaskCreate(card_flip_sfx_task, "card_flip_sfx_task", 4096, nullptr, 3, nullptr);
}
void start_card_flip_sound_task()
{
if (sfx_queue)
{
uint8_t msg = 1;
xQueueSend(sfx_queue, &msg, 0);
}
}
void stop_card_flip_sound_task()
{
if (sfx_queue)
{
// Flush any queued SFX requests
uint8_t dummy;
while (xQueueReceive(sfx_queue, &dummy, 0) == pdTRUE)
;
uint8_t exit_msg = 0;
xQueueSend(sfx_queue, &exit_msg, 0);
}
}
// Main UI initialization function
void ui_gridboard_animation_start(lv_obj_t *parent)
{
// Set up the sound callback
grid_board.set_sound_callback(start_card_flip_sound_task, stop_card_flip_sound_task);
// Initialize the grid board
grid_board.initialize(parent);
if (target_text.empty())
{
ESP_LOGI(device_name, "Target text is empty, skipping animation.");
return;
}
lv_timer_create([](lv_timer_t *t)
{
lv_timer_del(t);
// Process and animate the welcome text
grid_board.process_text_and_animate(target_text); }, 5000, NULL);
}
// Audio system initialization
void app_audio_init()
{
ESP_ERROR_CHECK(bsp_extra_codec_init());
ESP_ERROR_CHECK(bsp_extra_player_init());
// Set volume and unmute
bsp_extra_codec_volume_set(80, NULL);
bsp_extra_codec_mute_set(false);
// Enable power amplifier
gpio_set_direction(BSP_POWER_AMP_IO, GPIO_MODE_OUTPUT);
gpio_set_level(BSP_POWER_AMP_IO, 1);
ESP_LOGI("AUDIO", "Audio system initialized");
}
// BLE callback functions
static void on_connect(bool connected)
{
ESP_LOGI(device_name, "BLE %s", connected ? "Connected" : "Disconnected");
}
static void on_data_received(const uint8_t *data, uint16_t len)
{
// Convert received data to string
std::string received_text;
received_text.reserve(len + 1);
for (int i = 0; i < len; i++)
{
received_text += (char)data[i];
}
ESP_LOGI(device_name, "Received text: '%s' (length: %d)", received_text.c_str(), len);
// Update the target text and animate
target_text = received_text;
// Wait for any current animations to finish before starting new ones
while (grid_board.is_animation_running())
{
vTaskDelay(pdMS_TO_TICKS(100));
}
bsp_display_lock(0);
// Process and animate the new text
grid_board.process_text_and_animate(target_text);
bsp_display_unlock();
}
extern "C" void app_main(void)
{
esp_err_t ret = nvs_flash_init();
if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND)
{
ESP_ERROR_CHECK(nvs_flash_erase());
ret = nvs_flash_init();
}
ESP_ERROR_CHECK(ret);
ble_server_register_callbacks(on_connect, on_data_received);
ble_server_start(device_name);
// Initialize audio system
app_audio_init();
start_sfx_task();
bsp_display_cfg_t cfg = {
.lvgl_port_cfg = ESP_LVGL_PORT_INIT_CONFIG(),
//.buffer_size = BSP_LCD_DRAW_BUFF_SIZE,
.buffer_size = 800 * 10, // 10 lines buffer (16kB at RGB565)
.double_buffer = BSP_LCD_DRAW_BUFF_DOUBLE,
.flags = {
.buff_dma = true,
.buff_spiram = false,
.sw_rotate = true,
}};
bsp_display_start_with_config(&cfg);
bsp_display_backlight_on();
lv_disp_t *disp = lv_disp_get_default();
bsp_display_rotate(disp, LV_DISP_ROTATION_90);
bsp_display_lock(0);
ui_gridboard_animation_start(lv_screen_active());
bsp_display_unlock();
}
|
train_000.parquet/703
|
{
"file_path": "main/main.cpp",
"repo_id": "0015/Grid_Board",
"size": 6120,
"token_count": 2384
}
|
/*******************************************************************************
* Size: 140 px
* Bpp: 1
* Opts: --bpp 1 --size 140 --no-compress --stride 1 --align 1 --font ShareTech-Regular.ttf --range 32-127,160-255,8211,8212,8216,8217,8220,8221,8226,8230,215,247,8722,8800,8804,8805,8364,163,165,8482,174,169 --format lvgl -o ShareTech140.c
******************************************************************************/
#ifdef __has_include
#if __has_include("lvgl.h")
#ifndef LV_LVGL_H_INCLUDE_SIMPLE
#define LV_LVGL_H_INCLUDE_SIMPLE
#endif
#endif
#endif
#ifdef LV_LVGL_H_INCLUDE_SIMPLE
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
#ifndef SHARETECH140
#define SHARETECH140 1
#endif
#if SHARETECH140
/*-----------------
* BITMAPS
*----------------*/
/*Store the image of the glyphs*/
static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
/* U+0020 " " */
0x0,
/* U+0021 "!" */
0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f,
0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9,
0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff,
0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7,
0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff,
0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f,
0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe,
0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f,
0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9,
0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff,
0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7,
0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff,
0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f,
0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe,
0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 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+0022 "\"" */
0xff, 0xf8, 0x3, 0xff, 0xff, 0xff, 0x0, 0x7f,
0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xfc, 0x1,
0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xf0,
0x7, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff,
0xc0, 0x1f, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff,
0xff, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0xf, 0xff,
0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3f,
0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xfe, 0x0,
0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0x7f, 0xf0,
0x1, 0xff, 0xcf, 0xfe, 0x0, 0x3f, 0xf9, 0xff,
0xc0, 0x7, 0xff, 0x3f, 0xf8, 0x0, 0xff, 0xe7,
0xff, 0x0, 0x1f, 0xfc, 0xff, 0xe0, 0x3, 0xff,
0x9f, 0xfc, 0x0, 0x7f, 0xf3, 0xff, 0x80, 0xf,
0xfe, 0x3f, 0xe0, 0x0, 0xff, 0x87, 0xfc, 0x0,
0x1f, 0xf0, 0xff, 0x80, 0x3, 0xfe, 0x1f, 0xf0,
0x0, 0x7f, 0xc3, 0xfe, 0x0, 0xf, 0xf8, 0x7f,
0xc0, 0x1, 0xff, 0xf, 0xf8, 0x0, 0x3f, 0xe1,
0xff, 0x0, 0x7, 0xfc, 0x1f, 0xc0, 0x0, 0x7f,
0x3, 0xf8, 0x0, 0xf, 0xe0,
/* U+0023 "#" */
0x0, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x0, 0x1,
0xff, 0xc0, 0x7, 0xff, 0x0, 0x0, 0xf, 0xfe,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf0, 0x1,
0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0xf, 0xfe,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x0, 0x7,
0xff, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xc0, 0x7,
0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x0,
0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xff, 0xe0,
0x3, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0x1f,
0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0xff, 0xe0,
0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x0,
0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f,
0xf0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80,
0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x80,
0x0, 0x7, 0xff, 0x0, 0x1f, 0xfc, 0x0, 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, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x0, 0x3,
0xff, 0x80, 0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfc,
0x0, 0x7f, 0xf0, 0x0, 0x0, 0xff, 0xe0, 0x3,
0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0x1f, 0xfc,
0x0, 0x0, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x0,
0x1, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x0, 0xf,
0xfe, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf0,
0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0xf,
0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x0,
0x7, 0xff, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f,
0xf8, 0x0, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xc0,
0x7, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x3f,
0xf8, 0x0, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xc0,
0x0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x0,
0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xff,
0xe0, 0x3, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0,
0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0xff,
0xe0, 0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0x0,
0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff,
0x80, 0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x7f, 0xf0, 0x0, 0x0, 0xff, 0xe0, 0x3, 0xff,
0x80, 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, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x1, 0xff, 0xc0, 0x7,
0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x0,
0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xff, 0xe0,
0x3, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0x1f,
0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0xff, 0xe0,
0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x0,
0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x7f,
0xf0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80,
0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x80,
0x0, 0x7, 0xff, 0x0, 0x1f, 0xfc, 0x0, 0x0,
0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x0, 0x1, 0xff,
0xc0, 0x7, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x0,
0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf0, 0x1, 0xff,
0xc0, 0x0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0x0,
0xff, 0xe0, 0x3, 0xff, 0x80, 0x0, 0x7, 0xff,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0xff, 0xe0, 0x0, 0x1, 0xff, 0xc0, 0x7, 0xff,
0x0, 0x0,
/* U+0024 "$" */
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xc0,
0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff,
0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff,
0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff,
0x0, 0x3, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f,
0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xfe, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xf, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff,
0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xf,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x3f, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
/* U+0025 "%" */
0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff,
0x80, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfc,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x1, 0xff, 0xe0,
0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff,
0xc0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80,
0x0, 0x0, 0x3, 0xff, 0x0, 0x1, 0xff, 0x80,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xfe,
0x0, 0x3, 0xff, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x0, 0x1f, 0xf8, 0x0, 0x3, 0xff, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xf0,
0x0, 0x7, 0xfe, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x7f, 0xe0, 0x0, 0xf, 0xfc, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xc0,
0x0, 0x1f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0x80, 0x0, 0x3f, 0xf0, 0x0,
0xf, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0,
0x0, 0x7f, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xfe, 0x0, 0x0, 0xff, 0xc0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0,
0x1, 0xff, 0x80, 0x0, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x1f, 0xf8, 0x0, 0x3, 0xff, 0x0, 0x1,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0,
0x7, 0xfe, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x7f, 0xe0, 0x0, 0xf, 0xfc, 0x0, 0xf,
0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0,
0x1f, 0xf8, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x1, 0xff, 0x80, 0x0, 0x3f, 0xf0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0,
0x7f, 0xe0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x7, 0xfe, 0x0, 0x0, 0xff, 0xc0, 0x1, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x1,
0xff, 0x80, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x1f, 0xf8, 0x0, 0x3, 0xff, 0x0, 0xf, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x7,
0xfe, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xe0, 0x0, 0xf, 0xfc, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x1f,
0xf8, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1,
0xff, 0x80, 0x0, 0x3f, 0xf0, 0x1, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x7f,
0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7,
0xfe, 0x0, 0x0, 0xff, 0xc0, 0xf, 0xfe, 0x0,
0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x1, 0xff,
0x80, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xf8, 0x0, 0x3, 0xff, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x7, 0xfe,
0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xe0, 0x0, 0xf, 0xfc, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x1f, 0xf8,
0x7, 0xff, 0x80, 0x3, 0xff, 0xe0, 0x1, 0xff,
0x80, 0x0, 0x3f, 0xf0, 0xf, 0xfe, 0x0, 0x3f,
0xff, 0xf8, 0x3, 0xff, 0x0, 0x0, 0x7f, 0xe0,
0x3f, 0xfc, 0x1, 0xff, 0xff, 0xfc, 0x7, 0xfe,
0x0, 0x0, 0xff, 0xc0, 0x7f, 0xf8, 0x7, 0xff,
0xff, 0xfc, 0xf, 0xfc, 0x0, 0x1, 0xff, 0x80,
0xff, 0xe0, 0x1f, 0xff, 0xff, 0xfc, 0x1f, 0xfc,
0x0, 0x7, 0xfe, 0x3, 0xff, 0xc0, 0x7f, 0xff,
0xff, 0xfc, 0x1f, 0xf8, 0x0, 0xf, 0xfc, 0x7,
0xff, 0x81, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xf8,
0x0, 0x3f, 0xf8, 0xf, 0xfe, 0x7, 0xff, 0xff,
0xff, 0xfc, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x3f,
0xfc, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x7f, 0xf8,
0x3, 0xff, 0xc0, 0x7f, 0xf8, 0x3f, 0xfc, 0x0,
0x7f, 0xf8, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff,
0xe0, 0x7f, 0xf0, 0x0, 0x7f, 0xf0, 0xff, 0xff,
0xff, 0xfe, 0x3, 0xff, 0xc0, 0xff, 0xc0, 0x0,
0x7f, 0xe0, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xff,
0x83, 0xff, 0x80, 0x0, 0xff, 0xc0, 0xff, 0xff,
0xff, 0xe0, 0xf, 0xfe, 0x7, 0xfe, 0x0, 0x0,
0xff, 0xc0, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xfc,
0xf, 0xfc, 0x0, 0x1, 0xff, 0x80, 0xff, 0xff,
0xfe, 0x0, 0x7f, 0xf0, 0x1f, 0xf8, 0x0, 0x3,
0xff, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0xff, 0xe0,
0x3f, 0xf0, 0x0, 0x7, 0xfe, 0x0, 0x1f, 0xff,
0x0, 0x3, 0xff, 0xc0, 0x7f, 0xe0, 0x0, 0xf,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0,
0xff, 0xc0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x1, 0xff, 0x80, 0x0, 0x3f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3,
0xff, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf0, 0x7, 0xfe, 0x0, 0x0, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xf,
0xfc, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x1f, 0xf8, 0x0, 0x3, 0xff,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x3f,
0xf0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x7f, 0xe0, 0x0, 0xf, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0xff,
0xc0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf0, 0x1, 0xff, 0x80, 0x0, 0x3f, 0xf0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3, 0xff,
0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x7, 0xfe, 0x0, 0x0, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xfc,
0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x1f, 0xf8, 0x0, 0x3, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xf0,
0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x7f, 0xe0, 0x0, 0xf, 0xfc, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0xff, 0xc0,
0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x1, 0xff, 0x80, 0x0, 0x3f, 0xf0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x0, 0x3, 0xff, 0x0,
0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x7, 0xfe, 0x0, 0x0, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0xf, 0xfc, 0x0,
0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x1f, 0xf8, 0x0, 0x3, 0xff, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x3f, 0xf0, 0x0,
0x7, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x7f, 0xe0, 0x0, 0xf, 0xfc, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xc0, 0x0,
0x1f, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x1, 0xff, 0x80, 0x0, 0x3f, 0xf0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0x0, 0x0,
0x7f, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x7, 0xff, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x7, 0xfe, 0x0, 0x3,
0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0xf, 0xfe, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0,
/* U+0026 "&" */
0x0, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x1, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0x80,
0x0, 0x7f, 0xf8, 0x0, 0x3f, 0xff, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0xf, 0xff, 0x80, 0x0, 0x7,
0xff, 0x80, 0x7, 0xff, 0xc0, 0x0, 0x1, 0xff,
0xe0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0xf,
0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x7, 0xff, 0x80, 0xf, 0xff, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff,
0x80, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xf, 0xff,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x7, 0xff, 0x80, 0xf, 0xff, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80,
0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x7, 0xff, 0x80, 0xf, 0xff, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7,
0xff, 0x80, 0xf, 0xff, 0x80, 0x0, 0x1, 0xff,
0xe0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x1f, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x3,
0xff, 0xf0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0xff,
0xff, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0x80, 0x0,
/* U+0027 "'" */
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, 0x7f, 0xf3, 0xff, 0x9f, 0xfc, 0xff,
0xe7, 0xff, 0x3f, 0xf9, 0xff, 0xcf, 0xfe, 0x3f,
0xe1, 0xff, 0xf, 0xf8, 0x7f, 0xc3, 0xfe, 0x1f,
0xf0, 0xff, 0x87, 0xfc, 0x1f, 0xc0, 0xfe, 0x0,
/* U+0028 "(" */
0x0, 0x0, 0xff, 0xf0, 0x0, 0x1f, 0xfe, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x7f, 0xfc, 0x0, 0xf,
0xff, 0x80, 0x1, 0xff, 0xf0, 0x0, 0x1f, 0xfe,
0x0, 0x3, 0xff, 0xe0, 0x0, 0x7f, 0xfc, 0x0,
0x7, 0xff, 0x80, 0x0, 0xff, 0xf0, 0x0, 0x1f,
0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x3f, 0xfe,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x0,
0x7, 0xff, 0x80, 0x0, 0xff, 0xf0, 0x0, 0xf,
0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1f, 0xfe,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff,
0x80, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80,
0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0,
0x7f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff,
0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0,
0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf,
0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff,
0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0,
0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0,
0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff,
0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0,
0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf,
0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff,
0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0,
0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0,
0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff,
0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0,
0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf,
0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff,
0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0,
0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0,
0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff,
0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0,
0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf,
0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff,
0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0,
0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0,
0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0,
0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x3,
0xff, 0x80, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff,
0x80, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0,
0xf, 0xff, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x7,
0xff, 0x80, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff,
0xe0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xfc, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x1f, 0xff,
/* U+0029 ")" */
0xff, 0xf0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3f,
0xfc, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x1f, 0xff,
0x0, 0x0, 0xff, 0xf8, 0x0, 0x7, 0xff, 0x80,
0x0, 0x7f, 0xfc, 0x0, 0x3, 0xff, 0xe0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf,
0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff,
0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0xff, 0xe0, 0x0,
0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff,
0x80, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x3f, 0xfc, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f,
0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe,
0x0, 0x1, 0xff, 0xe0, 0x0, 0xf, 0xfe, 0x0,
0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0,
0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff,
0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0,
0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf,
0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff,
0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0,
0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0,
0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff,
0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0,
0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf,
0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff,
0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0,
0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0,
0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff,
0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0,
0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf,
0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff,
0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0,
0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0,
0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff,
0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0,
0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf,
0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff,
0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f,
0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8,
0x0, 0x7, 0xff, 0x80, 0x0, 0xff, 0xf0, 0x0,
0xf, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f,
0xfe, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc,
0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0,
0xf, 0xff, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x3f,
0xfe, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x7f, 0xfc,
0x0, 0xf, 0xff, 0x80, 0x0, 0xff, 0xf0, 0x0,
0x1f, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x7f,
0xfc, 0x0, 0xf, 0xff, 0x80, 0x0,
/* U+002A "*" */
0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0x80, 0x0, 0x0, 0x10, 0x0, 0x3, 0xff, 0x80,
0x0, 0x0, 0x1c, 0x0, 0x1, 0xff, 0x80, 0x0,
0x30, 0x1f, 0x80, 0x1, 0xff, 0x80, 0x1, 0xf8,
0x3f, 0xe0, 0x1, 0xff, 0x80, 0xf, 0xf8, 0x3f,
0xfc, 0x1, 0xff, 0x0, 0x3f, 0xf8, 0x3f, 0xff,
0x1, 0xff, 0x1, 0xff, 0xfc, 0x7f, 0xff, 0xe1,
0xff, 0x7, 0xff, 0xfc, 0x7f, 0xff, 0xf9, 0xff,
0x3f, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1,
0xff, 0xef, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc7, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0xc7,
0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x83, 0xff,
0xc0, 0x0, 0x0, 0xf, 0xff, 0x3, 0xff, 0xe0,
0x0, 0x0, 0x1f, 0xff, 0x1, 0xff, 0xf0, 0x0,
0x0, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x0, 0x0,
0x7f, 0xfc, 0x0, 0xff, 0xfc, 0x0, 0x0, 0xff,
0xfc, 0x0, 0x7f, 0xfe, 0x0, 0x1, 0xff, 0xf8,
0x0, 0x3f, 0xff, 0x0, 0x3, 0xff, 0xf0, 0x0,
0x3f, 0xff, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x1f,
0xff, 0x80, 0x7, 0xff, 0xe0, 0x0, 0x1f, 0xff,
0x80, 0x1, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x0,
0x0, 0xff, 0xc0, 0x0, 0x7, 0xfe, 0x0, 0x0,
0x7f, 0x80, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x1f,
0x80, 0x0, 0x3, 0xf0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x1, 0xe0, 0x0, 0x0, 0x6, 0x0, 0x0,
0x1, 0x80, 0x0,
/* U+002B "+" */
0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80,
0x0, 0x3, 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, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x0, 0x0,
/* U+002C "," */
0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0,
0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3,
0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f,
0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff,
0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x7f, 0xfe,
0x7, 0xff, 0xe0, 0x7f, 0xfc, 0x7, 0xff, 0xc0,
0xff, 0xf8, 0xf, 0xff, 0x80, 0xff, 0xf8, 0x1f,
0xff, 0x1, 0xff, 0xf0, 0x1f, 0xfe, 0x1, 0xff,
0xe0, 0x3f, 0xfc, 0x3, 0xff, 0xc0, 0x3f, 0xf8,
0x7, 0xff, 0x80, 0x7f, 0xf0, 0x7, 0xff, 0x0,
0x7f, 0xf0, 0x0,
/* U+002D "-" */
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, 0xf0,
/* U+002E "." */
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+002F "/" */
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff,
0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0,
0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe,
0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3,
0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0,
0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc,
0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff,
0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0,
0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf,
0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff,
0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0,
0x3f, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0,
0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc,
0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff,
0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
/* U+0030 "0" */
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xfe, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff,
0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xe0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x1f, 0xff, 0xf0, 0xf,
0xff, 0xf8, 0x3f, 0xff, 0x80, 0x1, 0xff, 0xfc,
0x3f, 0xff, 0x0, 0x0, 0xff, 0xfc, 0x3f, 0xfe,
0x0, 0x0, 0x7f, 0xfc, 0x7f, 0xfc, 0x0, 0x0,
0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe,
0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0,
0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0x7f, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8,
0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0,
0x1f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x3f, 0xfe,
0x3f, 0xfe, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xff,
0x0, 0x0, 0xff, 0xfc, 0x3f, 0xff, 0x80, 0x1,
0xff, 0xfc, 0x1f, 0xff, 0xf0, 0xf, 0xff, 0xf8,
0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x1, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff,
0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x3f, 0xfe, 0x0, 0x0,
/* U+0031 "1" */
0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x80,
0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xff, 0xff,
0x0, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff,
0xbf, 0xfc, 0x0, 0xf, 0xff, 0xf1, 0xff, 0xe0,
0x0, 0x7f, 0xfc, 0xf, 0xff, 0x0, 0x3, 0xff,
0x0, 0x7f, 0xf8, 0x0, 0x1f, 0xe0, 0x3, 0xff,
0xc0, 0x0, 0xf8, 0x0, 0x1f, 0xfe, 0x0, 0x7,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff,
0xff, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xff,
0xff, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff,
0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xff,
0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
/* U+0032 "2" */
0x1f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x80, 0x0, 0x7, 0xff, 0xff, 0xff, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xff,
0xff, 0xff, 0xfc, 0x0, 0xf, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x3,
0xff, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0,
0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x3,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0,
0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0,
0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x1,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80,
0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0,
0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0,
0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0,
0xff, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xfe,
0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0,
0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f,
0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0,
0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xff, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0,
0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 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, 0xc0,
/* U+0033 "3" */
0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xff,
0xc0, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff,
0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff,
0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff,
0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xe0,
0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0,
0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x3,
0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xf0, 0x7,
0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff,
0xc0, 0x7, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff,
0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0,
0x7, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff,
0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0x7,
0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0,
0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f,
0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0,
0x0, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xfc,
0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,
0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff,
0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff,
0xe0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff,
0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0,
0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xfe,
0x0, 0x0,
/* U+0034 "4" */
0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0xff, 0xf0, 0x0, 0x7, 0xff, 0x0, 0x3f, 0xfc,
0x0, 0x3, 0xff, 0xc0, 0xf, 0xff, 0x0, 0x0,
0xff, 0xf0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc,
0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x3f,
0xfc, 0x0, 0x3, 0xff, 0xc0, 0xf, 0xff, 0x0,
0x1, 0xff, 0xe0, 0x3, 0xff, 0xc0, 0x0, 0x7f,
0xf8, 0x0, 0xff, 0xf0, 0x0, 0x1f, 0xfe, 0x0,
0x3f, 0xfc, 0x0, 0x7, 0xff, 0x80, 0xf, 0xff,
0x0, 0x3, 0xff, 0xe0, 0x3, 0xff, 0xc0, 0x0,
0xff, 0xf0, 0x0, 0xff, 0xf0, 0x0, 0x3f, 0xfc,
0x0, 0x3f, 0xfc, 0x0, 0xf, 0xff, 0x0, 0xf,
0xff, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0,
0x1, 0xff, 0xf0, 0x0, 0xff, 0xf0, 0x0, 0x7f,
0xf8, 0x0, 0x3f, 0xfc, 0x0, 0x1f, 0xfe, 0x0,
0xf, 0xff, 0x0, 0x7, 0xff, 0x80, 0x3, 0xff,
0xc0, 0x1, 0xff, 0xe0, 0x0, 0xff, 0xf0, 0x0,
0xff, 0xf8, 0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xfc,
0x0, 0xf, 0xff, 0x0, 0xf, 0xff, 0x0, 0x3,
0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0xff, 0xf0,
0x1, 0xff, 0xf0, 0x0, 0x3f, 0xfc, 0x0, 0x7f,
0xfc, 0x0, 0xf, 0xff, 0x0, 0x1f, 0xfe, 0x0,
0x3, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0xff,
0xf0, 0x1, 0xff, 0xe0, 0x0, 0x3f, 0xfc, 0x0,
0xff, 0xf8, 0x0, 0xf, 0xff, 0x0, 0x3f, 0xfe,
0x0, 0x3, 0xff, 0xc0, 0xf, 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, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0,
/* U+0035 "5" */
0x3f, 0xff, 0xff, 0xff, 0xfe, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0x87,
0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff,
0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff, 0xff, 0xff,
0xfc, 0x3f, 0xff, 0xff, 0xff, 0xfe, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xf, 0xff, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0xf,
0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff,
0xf8, 0x3, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff,
0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x7f, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0,
0x7, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff,
0xf8, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0,
0x3, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x7f, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff,
0xff, 0xfe, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf,
0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff,
0xff, 0x3, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff,
0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
/* U+0036 "6" */
0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x3,
0xff, 0xff, 0xff, 0x80, 0x0, 0xf, 0xff, 0xff,
0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80,
0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff,
0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff,
0xff, 0x80, 0x7, 0xff, 0xff, 0xff, 0xff, 0x80,
0xf, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1f, 0xff,
0xff, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0,
0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xfc,
0xff, 0xf0, 0x0, 0x0, 0xff, 0xfc, 0xff, 0xf0,
0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf0, 0x0, 0x0,
0x3f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe,
0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0x7f, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf8,
0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0,
0x1f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x3f, 0xfe,
0x3f, 0xfe, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xff,
0x0, 0x0, 0xff, 0xfc, 0x3f, 0xff, 0x80, 0x1,
0xff, 0xfc, 0x1f, 0xff, 0xe0, 0x7, 0xff, 0xf8,
0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x1, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff,
0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7f, 0xfe, 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, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0,
0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f,
0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f,
0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f,
0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1f,
0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1f,
0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1f,
0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xf,
0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xf,
0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0xf,
0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
/* U+0038 "8" */
0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x1, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff,
0xfe, 0x0, 0x3f, 0xff, 0xc0, 0x3f, 0xfe, 0x0,
0x1, 0xff, 0xf0, 0x1f, 0xff, 0x0, 0x0, 0x3f,
0xfe, 0x7, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x81,
0xff, 0xe0, 0x0, 0x1, 0xff, 0xe0, 0x7f, 0xf8,
0x0, 0x0, 0x7f, 0xf8, 0x3f, 0xfc, 0x0, 0x0,
0xf, 0xff, 0xf, 0xff, 0x0, 0x0, 0x3, 0xff,
0xc3, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0xff,
0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0,
0x0, 0xf, 0xff, 0xf, 0xff, 0x0, 0x0, 0x3,
0xff, 0xc3, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0,
0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc,
0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0x0, 0x0,
0x3, 0xff, 0xc3, 0xff, 0xc0, 0x0, 0x0, 0xff,
0xf0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x3f,
0xfc, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0x0,
0x0, 0x3, 0xff, 0xc3, 0xff, 0xc0, 0x0, 0x0,
0xff, 0xf0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc,
0x3f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff,
0x0, 0x0, 0x3, 0xff, 0xc3, 0xff, 0xc0, 0x0,
0x0, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x0, 0x3f,
0xfc, 0x3f, 0xfe, 0x0, 0x0, 0x1f, 0xfe, 0x7,
0xff, 0x80, 0x0, 0x7, 0xff, 0x81, 0xff, 0xf0,
0x0, 0x3, 0xff, 0xe0, 0x7f, 0xfc, 0x0, 0x0,
0xff, 0xf8, 0xf, 0xff, 0x80, 0x0, 0x7f, 0xfc,
0x3, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0x0, 0x7f,
0xff, 0x80, 0x7f, 0xff, 0x80, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xf8, 0x0,
0xf, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x7, 0xff, 0xf8, 0x0, 0x7f,
0xff, 0x83, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xf0,
0xff, 0xf8, 0x0, 0x0, 0x7f, 0xfc, 0x7f, 0xfc,
0x0, 0x0, 0xf, 0xff, 0x9f, 0xfe, 0x0, 0x0,
0x1, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x0, 0x7f,
0xfb, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xf9, 0xff,
0xe0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xfc, 0x0,
0x0, 0xf, 0xff, 0x9f, 0xff, 0x0, 0x0, 0x7,
0xff, 0xe3, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xf0,
0xff, 0xff, 0x0, 0x3, 0xff, 0xfc, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0xf, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0,
0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xf0, 0x0, 0x0,
/* U+0039 "9" */
0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff,
0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xe0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xe0, 0x7,
0xff, 0xf8, 0x3f, 0xff, 0x80, 0x1, 0xff, 0xf8,
0x3f, 0xff, 0x0, 0x0, 0xff, 0xfc, 0x3f, 0xfe,
0x0, 0x0, 0x7f, 0xfc, 0x7f, 0xfc, 0x0, 0x0,
0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe,
0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xfe, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf8,
0x0, 0x0, 0xf, 0xff, 0x7f, 0xf8, 0x0, 0x0,
0xf, 0xff, 0x7f, 0xfc, 0x0, 0x0, 0xf, 0xff,
0x7f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x3f, 0xff,
0x0, 0x0, 0xf, 0xff, 0x3f, 0xff, 0xc0, 0x0,
0xf, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1,
0xff, 0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8,
0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff,
0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xff,
0xff, 0xf8, 0x0, 0x0,
/* U+003A ":" */
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, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 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+003B ";" */
0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0,
0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3,
0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f,
0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff,
0xf0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x3f,
0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff,
0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff,
0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3, 0xff, 0xf0,
0x3f, 0xff, 0x3, 0xff, 0xf0, 0x3f, 0xff, 0x3,
0xff, 0xf0, 0x7f, 0xfe, 0x7, 0xff, 0xe0, 0x7f,
0xfc, 0x7, 0xff, 0xc0, 0xff, 0xf8, 0xf, 0xff,
0x80, 0xff, 0xf8, 0x1f, 0xff, 0x1, 0xff, 0xf0,
0x1f, 0xfe, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x3,
0xff, 0xc0, 0x3f, 0xf8, 0x7, 0xff, 0x80, 0x7f,
0xf0, 0x7, 0xff, 0x0, 0x7f, 0xf0, 0x0,
/* U+003C "<" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x80, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
/* U+003D "=" */
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, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 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, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc,
/* U+003E ">" */
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+003F "?" */
0xff, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xfe,
0x0, 0xf, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff,
0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x3,
0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff,
0xf8, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff,
0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0xff,
0xfc, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x3,
0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0,
0x0, 0x7f, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xf8,
0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xfe, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0,
0x1f, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xfe, 0x0,
0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff,
0xc0, 0x0, 0x1, 0xff, 0xfe, 0x0, 0x0, 0xf,
0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0,
0x1, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xe0,
0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x3, 0xff,
0xf8, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0,
0x7f, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0,
0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff,
0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x3,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0,
0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xfc,
0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0xf,
0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0,
0x0, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0,
0x0, 0x0,
/* U+0040 "@" */
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xf0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xf8, 0x3f, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x3f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xfc, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x7f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x1, 0xff,
0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x1, 0xff, 0xfe, 0x0, 0x7, 0xff,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xf0,
0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x3, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0x0, 0x7,
0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x3, 0xff,
0x80, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x7, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0,
0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7,
0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0,
0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7,
0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff,
0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0,
0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7,
0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0,
0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7,
0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff,
0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0,
0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7,
0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0,
0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x7,
0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff,
0x0, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x7, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0,
0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7,
0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0xf, 0xff,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x3, 0xff, 0x80,
0x0, 0xf, 0xff, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x3, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x3, 0xff, 0xf0, 0x0, 0x3f,
0xff, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x3, 0xff,
0xfc, 0x1, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x1f, 0xfe, 0xff, 0xf0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x1f, 0xfe, 0xff, 0xf0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xfe,
0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x7f, 0xfe, 0xff, 0xf0, 0x0, 0x3f, 0xff,
0xff, 0xfc, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xf0,
0x0, 0x1f, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff,
0xfc, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xe0,
0x7f, 0xff, 0xff, 0xf8, 0xff, 0xf0, 0x0, 0x3,
0xff, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xf0, 0xff,
0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xc0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x7f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
/* U+0041 "A" */
0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfc, 0x3f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfc, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf8, 0x1f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf8, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xe0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0,
0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
/* U+0042 "B" */
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xfc, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff,
0x0, 0x0, 0x1f, 0xff, 0xe3, 0xff, 0xc0, 0x0,
0x1, 0xff, 0xf8, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xff, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xcf,
0xff, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0,
0x0, 0x0, 0x3f, 0xfc, 0xff, 0xf0, 0x0, 0x0,
0x7, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x1, 0xff,
0xef, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xfb, 0xff,
0xc0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0,
0x0, 0x7, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x1,
0xff, 0xef, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xfb,
0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0,
0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc, 0x0, 0x0,
0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x0, 0x7f,
0xfb, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0xff,
0xf0, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc, 0x0,
0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x0,
0x7f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe,
0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc,
0x0, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0,
0x0, 0x7f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x3f,
0xfc, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x3f,
0xfc, 0x0, 0x0, 0x7, 0xff, 0xcf, 0xff, 0x0,
0x0, 0x1, 0xff, 0xe3, 0xff, 0xc0, 0x0, 0x0,
0xff, 0xf8, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xfe,
0x3f, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xf0, 0x0,
0x1, 0xff, 0xfe, 0x3f, 0xfc, 0x0, 0x0, 0xf,
0xff, 0xcf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf3,
0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf0,
0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc, 0x0, 0x0,
0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x7,
0xff, 0xef, 0xff, 0x0, 0x0, 0x3, 0xff, 0xfb,
0xff, 0xc0, 0x0, 0x3, 0xff, 0xfc, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x0,
/* U+0043 "C" */
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x7f,
0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff,
0x80, 0x1f, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff,
0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff,
0xc0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff,
0xe1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff,
0xc0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0x0,
0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff,
0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff,
0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f,
0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff,
0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x7f, 0xff, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x7, 0xff, 0xff, 0xfc,
/* U+0044 "D" */
0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xe0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3,
0xff, 0xc0, 0x0, 0x3, 0xff, 0xfe, 0x7f, 0xf8,
0x0, 0x0, 0xf, 0xff, 0xcf, 0xff, 0x0, 0x0,
0x0, 0xff, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0xf,
0xff, 0xbf, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf7,
0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf,
0xff, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xef,
0xff, 0x0, 0x0, 0x0, 0x7f, 0xfd, 0xff, 0xe0,
0x0, 0x0, 0x1f, 0xff, 0xbf, 0xfc, 0x0, 0x0,
0x7, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x3, 0xff,
0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0,
/* U+0045 "E" */
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, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff,
0x8f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xf8, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 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, 0xf0,
/* U+0046 "F" */
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, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff,
0x8f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0,
/* U+0047 "G" */
0x0, 0x0, 0x1f, 0xff, 0xff, 0xf0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0,
0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf8,
0x0, 0x0, 0xf, 0xff, 0x7f, 0xf8, 0x0, 0x0,
0xf, 0xff, 0x7f, 0xfc, 0x0, 0x0, 0xf, 0xff,
0x3f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x3f, 0xff,
0x0, 0x0, 0xf, 0xff, 0x3f, 0xff, 0x80, 0x0,
0xf, 0xff, 0x1f, 0xff, 0xf0, 0x0, 0xf, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xff,
/* U+0048 "H" */
0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 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,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3,
0xff, 0xc0,
/* U+0049 "I" */
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, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
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,
/* U+004A "J" */
0x3, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff,
0xff, 0xfc, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x1f,
0xff, 0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff,
0xe0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff,
0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0x3,
0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3,
0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0,
0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xfe,
0x0, 0x0, 0xf, 0xff, 0xf8, 0xff, 0xff, 0xff,
0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff,
0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xfc,
0xf, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff,
0xff, 0xc0, 0x3f, 0xff, 0xff, 0xfe, 0x0, 0x7f,
0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xf0, 0x0, 0x0,
/* U+004B "K" */
0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xe7, 0xff,
0x80, 0x0, 0x0, 0x3f, 0xfe, 0x3f, 0xfc, 0x0,
0x0, 0x3, 0xff, 0xf1, 0xff, 0xe0, 0x0, 0x0,
0x1f, 0xff, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff,
0xf0, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x83,
0xff, 0xc0, 0x0, 0x0, 0xff, 0xf8, 0x1f, 0xfe,
0x0, 0x0, 0xf, 0xff, 0xc0, 0xff, 0xf0, 0x0,
0x0, 0x7f, 0xfc, 0x7, 0xff, 0x80, 0x0, 0x7,
0xff, 0xc0, 0x3f, 0xfc, 0x0, 0x0, 0x7f, 0xfe,
0x1, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xe0, 0xf,
0xff, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x7f, 0xf8,
0x0, 0x1, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0x0,
0x1f, 0xff, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff,
0xf8, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x80,
0x7, 0xff, 0x80, 0x0, 0xff, 0xf8, 0x0, 0x3f,
0xfc, 0x0, 0x7, 0xff, 0xc0, 0x1, 0xff, 0xe0,
0x0, 0x7f, 0xfc, 0x0, 0xf, 0xff, 0x0, 0x7,
0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x0, 0x3f, 0xfe,
0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xe0, 0x0,
0x1f, 0xfe, 0x0, 0x3f, 0xff, 0x0, 0x0, 0xff,
0xf0, 0x1, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x80,
0x1f, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0xff,
0xf8, 0x0, 0x1, 0xff, 0xe0, 0xf, 0xff, 0x80,
0x0, 0xf, 0xff, 0x0, 0xff, 0xfc, 0x0, 0x0,
0x7f, 0xf8, 0x7, 0xff, 0xc0, 0x0, 0x3, 0xff,
0xc0, 0x7f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x3,
0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x3f, 0xfe,
0x0, 0x0, 0x7, 0xff, 0x83, 0xff, 0xe0, 0x0,
0x0, 0x3f, 0xfc, 0x1f, 0xff, 0x0, 0x0, 0x1,
0xff, 0xe1, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xf, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xf8, 0xff,
0xf8, 0x0, 0x0, 0x3, 0xff, 0xcf, 0xff, 0x80,
0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xfc, 0x0, 0x0,
0x0, 0xff, 0xf7, 0xff, 0xc0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xfc,
0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xe7, 0xff,
0xc0, 0x0, 0x0, 0xff, 0xfe, 0x1f, 0xff, 0x0,
0x0, 0x7, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x0,
0x3f, 0xff, 0x7, 0xff, 0xe0, 0x0, 0x1, 0xff,
0xf0, 0x1f, 0xff, 0x0, 0x0, 0xf, 0xff, 0x80,
0xff, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x3, 0xff,
0xe0, 0x0, 0x3, 0xff, 0xc0, 0x1f, 0xff, 0x80,
0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xfc, 0x0, 0x0,
0xff, 0xf0, 0x3, 0xff, 0xf0, 0x0, 0x7, 0xff,
0x80, 0xf, 0xff, 0x80, 0x0, 0x3f, 0xfc, 0x0,
0x7f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x1, 0xff,
0xf0, 0x0, 0xf, 0xff, 0x0, 0xf, 0xff, 0xc0,
0x0, 0x7f, 0xf8, 0x0, 0x3f, 0xfe, 0x0, 0x3,
0xff, 0xc0, 0x1, 0xff, 0xf8, 0x0, 0x1f, 0xfe,
0x0, 0x7, 0xff, 0xc0, 0x0, 0xff, 0xf0, 0x0,
0x3f, 0xff, 0x0, 0x7, 0xff, 0x80, 0x0, 0xff,
0xf8, 0x0, 0x3f, 0xfc, 0x0, 0x7, 0xff, 0xe0,
0x1, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0x0, 0xf,
0xff, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x7f, 0xf8,
0x0, 0x3, 0xff, 0xe0, 0x3, 0xff, 0xc0, 0x0,
0x1f, 0xff, 0x80, 0x1f, 0xfe, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xf0,
0x7, 0xff, 0x80, 0x0, 0xf, 0xff, 0x80, 0x3f,
0xfc, 0x0, 0x0, 0x7f, 0xfe, 0x1, 0xff, 0xe0,
0x0, 0x1, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0,
0xf, 0xff, 0xc0, 0x7f, 0xf8, 0x0, 0x0, 0x3f,
0xfe, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xc0, 0xff,
0xf0, 0x0, 0x0, 0x3f, 0xff, 0x7, 0xff, 0x80,
0x0, 0x0, 0xff, 0xf8, 0x3f, 0xfc, 0x0, 0x0,
0x7, 0xff, 0xe1, 0xff, 0xe0, 0x0, 0x0, 0x1f,
0xff, 0xf, 0xff, 0x0, 0x0, 0x0, 0xff, 0xfc,
0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xe3, 0xff,
0xc0, 0x0, 0x0, 0x1f, 0xff, 0x9f, 0xfe, 0x0,
0x0, 0x0, 0x7f, 0xfc, 0xff, 0xf0, 0x0, 0x0,
0x3, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x0, 0xf,
0xff, 0x80,
/* U+004C "L" */
0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 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,
/* U+004D "M" */
0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xfe, 0xff, 0xe0, 0x0, 0x3, 0xff,
0x7f, 0xff, 0xff, 0x7f, 0xf0, 0x0, 0x1, 0xff,
0xbf, 0xff, 0xff, 0xbf, 0xf8, 0x0, 0x0, 0xff,
0xdf, 0xff, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0xff,
0xef, 0xff, 0xff, 0xe7, 0xff, 0x0, 0x0, 0x7f,
0xe7, 0xff, 0xff, 0xf3, 0xff, 0x80, 0x0, 0x3f,
0xf3, 0xff, 0xff, 0xf9, 0xff, 0xc0, 0x0, 0x1f,
0xf9, 0xff, 0xff, 0xfc, 0x7f, 0xf0, 0x0, 0x1f,
0xf8, 0xff, 0xff, 0xfe, 0x3f, 0xf8, 0x0, 0xf,
0xfc, 0x7f, 0xff, 0xff, 0x1f, 0xfc, 0x0, 0x7,
0xfe, 0x3f, 0xff, 0xff, 0x8f, 0xfe, 0x0, 0x7,
0xff, 0x1f, 0xff, 0xff, 0xc3, 0xff, 0x80, 0x3,
0xff, 0xf, 0xff, 0xff, 0xe1, 0xff, 0xc0, 0x1,
0xff, 0x87, 0xff, 0xff, 0xf0, 0xff, 0xe0, 0x0,
0xff, 0xc3, 0xff, 0xff, 0xf8, 0x3f, 0xf0, 0x0,
0xff, 0xe1, 0xff, 0xff, 0xfc, 0x1f, 0xfc, 0x0,
0x7f, 0xe0, 0xff, 0xff, 0xfe, 0xf, 0xfe, 0x0,
0x3f, 0xf0, 0x7f, 0xff, 0xff, 0x7, 0xff, 0x0,
0x1f, 0xf8, 0x3f, 0xff, 0xff, 0x81, 0xff, 0x80,
0x1f, 0xf8, 0x1f, 0xff, 0xff, 0xc0, 0xff, 0xe0,
0xf, 0xfc, 0xf, 0xff, 0xff, 0xe0, 0x7f, 0xf0,
0x7, 0xfe, 0x7, 0xff, 0xff, 0xf0, 0x3f, 0xf8,
0x3, 0xff, 0x3, 0xff, 0xff, 0xf8, 0xf, 0xfc,
0x3, 0xff, 0x1, 0xff, 0xff, 0xfc, 0x7, 0xff,
0x1, 0xff, 0x80, 0xff, 0xff, 0xfe, 0x3, 0xff,
0x80, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0x0, 0xff,
0xc0, 0x7f, 0xc0, 0x3f, 0xff, 0xff, 0x80, 0x7f,
0xf0, 0x7f, 0xe0, 0x1f, 0xff, 0xff, 0xc0, 0x3f,
0xf8, 0x3f, 0xf0, 0xf, 0xff, 0xff, 0xe0, 0x1f,
0xfc, 0x1f, 0xf8, 0x7, 0xff, 0xff, 0xf0, 0x7,
0xfe, 0xf, 0xf8, 0x3, 0xff, 0xff, 0xf8, 0x3,
0xff, 0x8f, 0xfc, 0x1, 0xff, 0xff, 0xfc, 0x1,
0xff, 0xc7, 0xfe, 0x0, 0xff, 0xff, 0xfe, 0x0,
0xff, 0xe3, 0xff, 0x0, 0x7f, 0xff, 0xff, 0x0,
0x3f, 0xf1, 0xff, 0x0, 0x3f, 0xff, 0xff, 0x80,
0x1f, 0xfd, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xc0,
0xf, 0xfe, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xe0,
0x3, 0xff, 0x7f, 0xc0, 0x7, 0xff, 0xff, 0xf0,
0x1, 0xff, 0xbf, 0xe0, 0x3, 0xff, 0xff, 0xf8,
0x0, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xff, 0xfc,
0x0, 0x7f, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xfe,
0x0, 0x1f, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff,
0x0, 0xf, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff,
0x80, 0x7, 0xff, 0xfe, 0x0, 0x1f, 0xff, 0xff,
0xc0, 0x3, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff,
0xe0, 0x0, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff,
0xf0, 0x0, 0x7f, 0xff, 0x80, 0x3, 0xff, 0xff,
0xf8, 0x0, 0x3f, 0xff, 0xc0, 0x1, 0xff, 0xff,
0xfc, 0x0, 0xf, 0xff, 0xc0, 0x0, 0xff, 0xff,
0xfe, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x7f, 0xff,
0xff, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x3f, 0xff,
0xff, 0x80, 0x1, 0xff, 0xf8, 0x0, 0x1f, 0xff,
0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x0, 0xf, 0xff,
0xff, 0xe0, 0x0, 0x3f, 0xfc, 0x0, 0x7, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0,
/* U+004E "N" */
0xff, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x3, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xff, 0xfb,
0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xdf, 0xfc,
0x0, 0x1, 0xff, 0xff, 0xfe, 0xff, 0xe0, 0x0,
0xf, 0xff, 0xff, 0xf7, 0xff, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x9f, 0xf8, 0x0, 0x3, 0xff, 0xff,
0xfc, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0xe7,
0xff, 0x0, 0x0, 0xff, 0xff, 0xff, 0x3f, 0xf8,
0x0, 0x7, 0xff, 0xff, 0xf8, 0xff, 0xc0, 0x0,
0x3f, 0xff, 0xff, 0xc7, 0xff, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x3f, 0xf8, 0x0, 0xf, 0xff, 0xff,
0xf1, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0x87,
0xfe, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x3f, 0xf8,
0x0, 0x1f, 0xff, 0xff, 0xe1, 0xff, 0xc0, 0x0,
0xff, 0xff, 0xff, 0xf, 0xfe, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x3f, 0xf0, 0x0, 0x3f, 0xff, 0xff,
0xc1, 0xff, 0x80, 0x1, 0xff, 0xff, 0xfe, 0xf,
0xfe, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x7f, 0xf0,
0x0, 0x7f, 0xff, 0xff, 0x83, 0xff, 0x80, 0x3,
0xff, 0xff, 0xfc, 0xf, 0xfc, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x7f, 0xf0, 0x0, 0xff, 0xff, 0xff,
0x3, 0xff, 0x80, 0x7, 0xff, 0xff, 0xf8, 0x1f,
0xfc, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x7f, 0xe0,
0x1, 0xff, 0xff, 0xfe, 0x3, 0xff, 0x80, 0xf,
0xff, 0xff, 0xf0, 0x1f, 0xfc, 0x0, 0x7f, 0xff,
0xff, 0x80, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xfc,
0x3, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x1f,
0xfc, 0x0, 0xff, 0xff, 0xff, 0x0, 0xff, 0xe0,
0x7, 0xff, 0xff, 0xf8, 0x7, 0xff, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x1f, 0xf8, 0x1, 0xff, 0xff,
0xfe, 0x0, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xf0,
0x7, 0xff, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x3f,
0xf8, 0x3, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xc0,
0x1f, 0xff, 0xff, 0xe0, 0x7, 0xfe, 0x0, 0xff,
0xff, 0xff, 0x0, 0x3f, 0xf8, 0x7, 0xff, 0xff,
0xf8, 0x1, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xc0,
0xf, 0xfe, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x3f,
0xf0, 0xf, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xc0,
0x7f, 0xff, 0xff, 0x80, 0xf, 0xfe, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x7f, 0xf0, 0x1f, 0xff, 0xff,
0xe0, 0x1, 0xff, 0x80, 0xff, 0xff, 0xff, 0x0,
0xf, 0xfe, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x7f,
0xf0, 0x3f, 0xff, 0xff, 0xc0, 0x3, 0xff, 0x81,
0xff, 0xff, 0xfe, 0x0, 0xf, 0xfc, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x7f, 0xf0, 0x7f, 0xff, 0xff,
0x80, 0x3, 0xff, 0x83, 0xff, 0xff, 0xfc, 0x0,
0x1f, 0xfc, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0xff,
0xe0, 0xff, 0xff, 0xff, 0x0, 0x3, 0xff, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x1f, 0xfc, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0xff, 0xe1, 0xff, 0xff, 0xfe,
0x0, 0x7, 0xff, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x1f, 0xf8, 0x7f, 0xff, 0xff, 0x80, 0x0, 0xff,
0xe3, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x3f, 0xf8, 0xff, 0xff,
0xff, 0x0, 0x0, 0xff, 0xc7, 0xff, 0xff, 0xf8,
0x0, 0x7, 0xff, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x3f, 0xf9, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xff,
0xcf, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xfe, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x3f, 0xfb, 0xff, 0xff,
0xfc, 0x0, 0x1, 0xff, 0xdf, 0xff, 0xff, 0xe0,
0x0, 0xf, 0xfe, 0xff, 0xff, 0xff, 0x0, 0x0,
0x7f, 0xf7, 0xff, 0xff, 0xf8, 0x0, 0x1, 0xff,
0xbf, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0xf, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3, 0xff,
0xff, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x3, 0xff,
0xff, 0xc0,
/* U+004F "O" */
0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0x80, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xff, 0xc0,
0x0, 0x7f, 0xff, 0xc1, 0xff, 0xfc, 0x0, 0x0,
0x1f, 0xff, 0xc3, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xff, 0x87, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff,
0x1f, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x3f, 0xfd, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3f, 0xfb, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x1f, 0xfc, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x7f, 0xf9, 0xff, 0xe0, 0x0, 0x0,
0x0, 0xff, 0xf3, 0xff, 0xe0, 0x0, 0x0, 0x3,
0xff, 0xe3, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff,
0x87, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xf,
0xff, 0xe0, 0x0, 0x0, 0xff, 0xfe, 0xf, 0xff,
0xf8, 0x0, 0xf, 0xff, 0xf8, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xe0,
0x0, 0x0,
/* U+0050 "P" */
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0x80, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xe0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x3f, 0xfc, 0x0,
0x0, 0x7f, 0xff, 0x9f, 0xfe, 0x0, 0x0, 0xf,
0xff, 0xcf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf7,
0xff, 0x80, 0x0, 0x0, 0xff, 0xfb, 0xff, 0xc0,
0x0, 0x0, 0x3f, 0xfd, 0xff, 0xe0, 0x0, 0x0,
0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x0,
0x7f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfd,
0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf0,
0x0, 0x0, 0x7f, 0xfe, 0x7f, 0xf8, 0x0, 0x0,
0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff,
0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff,
0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff, 0xff,
0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+0051 "Q" */
0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff,
0x0, 0x1, 0xff, 0xff, 0x0, 0xf, 0xff, 0xe0,
0x0, 0x0, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0x0,
0x0, 0x1, 0xff, 0xf8, 0x0, 0xff, 0xf8, 0x0,
0x0, 0x3, 0xff, 0xe0, 0x7, 0xff, 0xc0, 0x0,
0x0, 0x7, 0xff, 0xc0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7f, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf,
0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf,
0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x1f, 0xff, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0,
0x7f, 0xfc, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x7,
0xff, 0xe0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x3f,
0xff, 0x80, 0x7, 0xff, 0xfc, 0x0, 0x7, 0xff,
0xfc, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x3, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xf8,
0x0, 0x3, 0xff, 0xff, 0xff, 0x87, 0xff, 0xf0,
0x0, 0x0, 0x7f, 0xff, 0xe0, 0xf, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x18, 0x0,
/* U+0052 "R" */
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xf0,
0x0, 0x1, 0xff, 0xfe, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x7f, 0xfe, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xff, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xff, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0x0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff,
0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0,
0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0,
0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0,
0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7,
0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff,
0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80,
0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff,
0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0,
0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0,
0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0,
0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7,
0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff,
0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80,
0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff,
0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0,
0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0,
0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0,
0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7,
0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff,
0x80, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80,
0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff,
0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x1f, 0xff, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xff, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f,
0xfe, 0x0, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xfe,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x3f, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3f,
0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1f, 0xff,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0x0, 0x0,
0xff, 0xf0, 0x0, 0xf, 0xff, 0x80, 0x0, 0xff,
0xf0, 0x0, 0xf, 0xff, 0x80, 0x0, 0xff, 0xf0,
0x0, 0x7, 0xff, 0xc0, 0x0, 0xff, 0xf0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0xff, 0xf0, 0x0, 0x3,
0xff, 0xe0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff,
0xe0, 0x0, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xf0,
0x0, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xf0, 0x0,
0xff, 0xf0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0xff,
0xf0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0xff, 0xf0,
0x0, 0x0, 0xff, 0xf8, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x7f, 0xfc, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3f,
0xfe, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0x80, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0xff, 0xf0, 0x0, 0x0, 0x7,
0xff, 0xc0, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff,
0xe0, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xe0,
0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0xff,
0xf0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0xff, 0xf0,
0x0, 0x0, 0x1, 0xff, 0xf8, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xf8, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xf8, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x7f, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f,
0xfc, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3f, 0xff,
/* U+0053 "S" */
0x0, 0x0, 0x1f, 0xff, 0xff, 0xf0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff,
0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfc, 0x0,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xc1, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0,
0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xff,
0x80, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0x80, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xe0,
0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff,
0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x3f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff,
0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0,
/* U+0054 "T" */
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, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0,
/* U+0055 "U" */
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xe7, 0xff,
0x80, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0,
0x0, 0x1, 0xff, 0xe7, 0xff, 0xc0, 0x0, 0x0,
0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff,
0xc3, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xfc, 0x3f,
0xff, 0x80, 0x0, 0x1f, 0xff, 0xc1, 0xff, 0xff,
0x0, 0xf, 0xff, 0xf8, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff,
0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x3, 0xff, 0xf8, 0x0, 0x0,
/* U+0056 "V" */
0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0xf, 0xff, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x3f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xff, 0x0,
0x0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0,
0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0,
0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x7, 0xff, 0x0, 0x0, 0x0, 0xff, 0xe0,
0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x7,
0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff,
0x80, 0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80,
0x0, 0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0,
0x1, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x1,
0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0, 0x3, 0xff,
0xc0, 0x3, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xc0,
0x3, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0x3,
0xff, 0xc0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff,
0xc0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xe0,
0x0, 0x7, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0,
0x7, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0, 0x7,
0xff, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x7, 0xff,
0x0, 0x0, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x0,
0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0,
0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff,
0xf0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0xff, 0xf0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x1f, 0xfc, 0x0, 0x0,
0x3f, 0xf8, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f,
0xf8, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3f,
0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xfe,
0x0, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0,
0x7f, 0xf0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0xff,
0xe0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0xff, 0xe0,
0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0,
0x7, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x7,
0xff, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x81,
0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x81, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0x81, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0x83, 0xff, 0x80, 0x0,
0x0, 0x3, 0xff, 0x83, 0xff, 0x80, 0x0, 0x0,
0x3, 0xff, 0x83, 0xff, 0x80, 0x0, 0x0, 0x3,
0xff, 0xc3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff,
0xc3, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc7,
0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc7, 0xff,
0x0, 0x0, 0x0, 0x1, 0xff, 0xc7, 0xff, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe7, 0xfe, 0x0, 0x0, 0x0,
0x0, 0xff, 0xef, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xef, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff,
0xef, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xef,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0,
/* U+0057 "W" */
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xdf, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xf7, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xfd, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0x7f, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xdf, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf7, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfd, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xdf, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf7, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfd, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x7f, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0x9f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xe7, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xf9, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x9f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe7, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf9, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x7f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x8f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe3,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe,
0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0x8f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xe3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xf8, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xfe, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0x8f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xe3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xf8, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xfe, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xf, 0xfe, 0x0, 0x3, 0xff, 0x80,
0x0, 0xff, 0xc3, 0xff, 0x80, 0x1, 0xff, 0xe0,
0x0, 0x3f, 0xf0, 0xff, 0xe0, 0x0, 0x7f, 0xfc,
0x0, 0xf, 0xfc, 0x3f, 0xf8, 0x0, 0x1f, 0xff,
0x0, 0x3, 0xff, 0xf, 0xfe, 0x0, 0x7, 0xff,
0xc0, 0x0, 0xff, 0xc3, 0xff, 0x80, 0x3, 0xff,
0xf8, 0x0, 0x3f, 0xf0, 0xff, 0xe0, 0x0, 0xff,
0xfe, 0x0, 0xf, 0xfc, 0x3f, 0xf8, 0x0, 0x3f,
0xff, 0x80, 0x3, 0xff, 0xf, 0xfe, 0x0, 0xf,
0xff, 0xe0, 0x0, 0xff, 0xc1, 0xff, 0x80, 0x7,
0xff, 0xfc, 0x0, 0x3f, 0xf0, 0x7f, 0xe0, 0x1,
0xff, 0xff, 0x0, 0xf, 0xfc, 0x1f, 0xf8, 0x0,
0x7f, 0xff, 0xc0, 0x3, 0xff, 0x7, 0xfe, 0x0,
0x1f, 0xff, 0xf0, 0x0, 0xff, 0xc1, 0xff, 0x80,
0xf, 0xff, 0xfe, 0x0, 0x3f, 0xf0, 0x7f, 0xe0,
0x3, 0xff, 0xff, 0x80, 0xf, 0xfc, 0x1f, 0xf8,
0x0, 0xff, 0xbf, 0xe0, 0x3, 0xff, 0x7, 0xff,
0x0, 0x3f, 0xef, 0xf8, 0x1, 0xff, 0xc1, 0xff,
0xc0, 0x1f, 0xfb, 0xff, 0x0, 0x7f, 0xf0, 0x7f,
0xf0, 0x7, 0xfc, 0xff, 0xc0, 0x1f, 0xfc, 0x1f,
0xfc, 0x1, 0xff, 0x3f, 0xf0, 0x7, 0xff, 0x7,
0xff, 0x0, 0xff, 0xc7, 0xfc, 0x1, 0xff, 0x81,
0xff, 0xc0, 0x3f, 0xf1, 0xff, 0x80, 0x7f, 0xe0,
0x7f, 0xf0, 0xf, 0xf8, 0x7f, 0xe0, 0x1f, 0xf8,
0x1f, 0xfc, 0x3, 0xfe, 0x1f, 0xf8, 0x7, 0xfe,
0x7, 0xff, 0x1, 0xff, 0x87, 0xfe, 0x1, 0xff,
0x81, 0xff, 0xc0, 0x7f, 0xe0, 0xff, 0xc0, 0x7f,
0xe0, 0x7f, 0xf0, 0x1f, 0xf0, 0x3f, 0xf0, 0x1f,
0xf8, 0x1f, 0xfc, 0x7, 0xfc, 0xf, 0xfc, 0x7,
0xfe, 0x7, 0xff, 0x3, 0xff, 0x3, 0xff, 0x1,
0xff, 0x80, 0xff, 0xc0, 0xff, 0xc0, 0x7f, 0xe0,
0x7f, 0xe0, 0x3f, 0xf0, 0x3f, 0xe0, 0x1f, 0xf8,
0x1f, 0xf8, 0xf, 0xfc, 0xf, 0xf8, 0x7, 0xfe,
0x7, 0xfe, 0x3, 0xff, 0x7, 0xfe, 0x1, 0xff,
0xc1, 0xff, 0x80, 0xff, 0xc1, 0xff, 0x80, 0x7f,
0xf0, 0x7f, 0xe0, 0x3f, 0xf0, 0x7f, 0xc0, 0xf,
0xfc, 0x1f, 0xf8, 0xf, 0xfc, 0x1f, 0xf0, 0x3,
0xff, 0x7, 0xfe, 0x3, 0xff, 0xf, 0xfc, 0x0,
0xff, 0xe3, 0xff, 0x80, 0xff, 0xe3, 0xff, 0x0,
0x3f, 0xf8, 0xff, 0xe0, 0x3f, 0xf8, 0xff, 0xc0,
0x7, 0xfe, 0x3f, 0xf8, 0xf, 0xfe, 0x3f, 0xe0,
0x1, 0xff, 0x8f, 0xfe, 0x3, 0xff, 0x9f, 0xf8,
0x0, 0x7f, 0xf3, 0xff, 0x80, 0xff, 0xe7, 0xfe,
0x0, 0x1f, 0xfc, 0xff, 0xc0, 0x3f, 0xf9, 0xff,
0x80, 0x7, 0xff, 0x3f, 0xf0, 0xf, 0xfe, 0x7f,
0xc0, 0x0, 0xff, 0xcf, 0xfc, 0x3, 0xff, 0xbf,
0xf0, 0x0, 0x3f, 0xfb, 0xff, 0x0, 0xff, 0xef,
0xfc, 0x0, 0xf, 0xfe, 0xff, 0xc0, 0x3f, 0xfb,
0xff, 0x0, 0x3, 0xff, 0xbf, 0xf0, 0xf, 0xfe,
0xff, 0x80, 0x0, 0x7f, 0xef, 0xfc, 0x3, 0xff,
0xff, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0x0, 0xff,
0xff, 0xf8, 0x0, 0x7, 0xff, 0xff, 0xc0, 0x1f,
0xff, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x7,
0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x1,
0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff, 0x0,
0x7f, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xff, 0xc0,
0x1f, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xf0,
0x7, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xfc,
0x1, 0xff, 0xff, 0x80, 0x0, 0x7, 0xff, 0xff,
0x0,
/* U+0058 "X" */
0x3f, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc1,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x1f,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0xff,
0xf8, 0x0, 0x0, 0x0, 0xff, 0xf8, 0xf, 0xff,
0x80, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x7f, 0xfc,
0x0, 0x0, 0x1, 0xff, 0xf0, 0x7, 0xff, 0xc0,
0x0, 0x0, 0x3f, 0xfe, 0x0, 0x7f, 0xfe, 0x0,
0x0, 0x3, 0xff, 0xe0, 0x3, 0xff, 0xe0, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0x3f, 0xfe, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x1, 0xff, 0xf0, 0x0, 0x0,
0xff, 0xf8, 0x0, 0x1f, 0xff, 0x0, 0x0, 0xf,
0xff, 0x80, 0x0, 0xff, 0xf8, 0x0, 0x0, 0xff,
0xf0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x1f, 0xff,
0x0, 0x0, 0x7f, 0xfc, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x7, 0xff, 0xc0, 0x0, 0x3f, 0xfe, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x7f, 0xfc, 0x0, 0x0,
0x3f, 0xfe, 0x0, 0x7, 0xff, 0x80, 0x0, 0x1,
0xff, 0xf0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1f,
0xff, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0xff,
0xf8, 0x1, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0x80, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xc0,
0x3f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7, 0xff,
0x80, 0x0, 0x0, 0x1, 0xff, 0xf0, 0xff, 0xf8,
0x0, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf9, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x9f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf9, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf9, 0xff, 0xe0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x9f, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x0, 0x0,
0x1, 0xff, 0xe0, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x3f, 0xfe, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7f,
0xfc, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x1, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x80,
0x1f, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x1,
0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0xf,
0xff, 0x80, 0x0, 0x3, 0xff, 0xe0, 0x0, 0xff,
0xf8, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x7, 0xff,
0xc0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x7f, 0xfc,
0x0, 0x0, 0x7f, 0xfc, 0x0, 0x3, 0xff, 0xe0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x3f, 0xfe, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xe0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x1,
0xff, 0xf0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x1f,
0xff, 0x0, 0x0, 0xf, 0xff, 0x80, 0x3, 0xff,
0xe0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x3f, 0xfe,
0x0, 0x0, 0xf, 0xff, 0xc0, 0x7, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xfc, 0x0, 0x7f, 0xfc, 0x0,
0x0, 0x7, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x0,
0x0, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x0, 0x0,
0x3, 0xff, 0xf0, 0x1f, 0xff, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x1,
0xff, 0xf8, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x1f,
0xff, 0x83, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff,
0xf8, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff,
0xc7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xef,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfe,
/* U+0059 "Y" */
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfd,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf7,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x8f,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x3f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc1, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff,
0xe0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0xf, 0xff,
0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x3f, 0xff,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x7f, 0xfc,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1, 0xff, 0xf0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x3, 0xff, 0xe0,
0x0, 0x0, 0xf, 0xff, 0x0, 0xf, 0xff, 0x80,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x1f, 0xff, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x7f, 0xfc, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0xff, 0xf8, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xe0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xc0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0xf, 0xff, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x1, 0xff, 0xf0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x80,
0x0, 0x0, 0xf, 0xff, 0x80, 0x1f, 0xfc, 0x0,
0x0, 0x0, 0x3f, 0xfe, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x3, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xf0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x83, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0xf, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xfc, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf1, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xe7, 0xff, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xbf, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
/* U+005A "Z" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0,
0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf,
0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0,
0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe,
/* U+005B "[" */
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, 0x80, 0x0, 0x7f, 0xf0, 0x0,
0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f,
0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0,
0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3,
0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe,
0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0,
0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f,
0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0,
0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff,
0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80,
0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1,
0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff,
0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0,
0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf,
0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8,
0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f,
0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0,
0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0,
0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff,
0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7,
0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc,
0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0,
0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f,
0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0,
0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3,
0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe,
0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0,
0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f,
0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0,
0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff,
0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80,
0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1,
0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff,
0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0,
0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf,
0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8,
0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 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, 0x80,
/* U+005C "\\" */
0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0,
0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0,
0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0,
0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xfe,
0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0,
0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc,
0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff,
0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf,
0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff,
0x80, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0,
0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff,
0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0,
0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x1,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0,
/* U+005D "]" */
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, 0x3, 0xff, 0x80, 0x0, 0x7f,
0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0,
0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0,
0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff,
0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7,
0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc,
0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0,
0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f,
0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0,
0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3,
0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe,
0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0,
0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f,
0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0,
0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff,
0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80,
0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1,
0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff,
0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0,
0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf,
0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8,
0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f,
0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0,
0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0,
0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff,
0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7,
0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc,
0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0,
0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f,
0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, 0x0,
0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3,
0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0xf, 0xfe,
0x0, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0,
0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f,
0xfc, 0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0,
0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0, 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, 0x80,
/* U+005E "^" */
0x0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf7, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff,
0xf3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe3,
0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe3, 0xff,
0xc0, 0x0, 0x0, 0x1, 0xff, 0xc1, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc1, 0xff, 0xe0, 0x0,
0x0, 0x3, 0xff, 0x81, 0xff, 0xe0, 0x0, 0x0,
0x7, 0xff, 0x80, 0xff, 0xe0, 0x0, 0x0, 0x7,
0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf,
0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff,
0x80, 0x1, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x80,
0x1, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xc0, 0x3,
0xff, 0xe0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff,
0xc0, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0,
0x0, 0x3, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0,
0x1, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x1,
0xff, 0xf0, 0xf, 0xff, 0x80, 0x0, 0x0, 0xff,
0xf0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x1f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x7f, 0xfc, 0x0, 0x0, 0x0,
0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff,
/* U+005F "_" */
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, 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,
/* U+0060 "`" */
0x7f, 0xff, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x1,
0xff, 0xf8, 0x0, 0x3, 0xff, 0xf0, 0x0, 0xf,
0xff, 0xe0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x3f,
0xff, 0x80, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0xff,
0xfc, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x3, 0xff,
0xf0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0xf, 0xff,
0x80, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3f, 0xfe,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xc0,
/* U+0061 "a" */
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xf8,
0x7, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xe0, 0x1f,
0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x7f, 0xf8,
0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff,
0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0,
0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff,
0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7,
0xff, 0x80, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfe,
0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf8, 0x7,
0xff, 0xc0, 0x0, 0x7, 0xff, 0xf0, 0x1f, 0xff,
0xc0, 0x0, 0x3f, 0xff, 0xf0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f, 0xff,
0xff, 0xff, 0xdf, 0xff, 0xc0, 0x7f, 0xff, 0xff,
0xfe, 0x3f, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xf0,
0x3f, 0xfc, 0x0, 0x1f, 0xff, 0xfe, 0x0, 0x3f,
0xf0,
/* U+0062 "b" */
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x7f, 0xfe, 0x0, 0x0, 0xff, 0xf3,
0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0x80, 0x3,
0xff, 0xfc, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xfc,
0xff, 0xfc, 0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf8,
0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8, 0x0, 0x0,
0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe,
0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf0,
0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf0, 0x0, 0x0,
0xff, 0xfc, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xfc,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x0,
/* U+0063 "c" */
0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0xf, 0xff,
0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x7,
0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff,
0xe0, 0x7f, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff,
0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0xff, 0x1f,
0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff,
0xfc, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf8,
0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0xf,
0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xfc,
0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x1,
0xff, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff,
0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff,
0x7, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff,
0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x1,
0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff,
0xe0, 0x0, 0xf, 0xff, 0xff, 0xc0,
/* U+0064 "d" */
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xfc,
0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0x7f,
0xfe, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xfe, 0x0,
0x0, 0x7, 0xff, 0xbf, 0xfe, 0x0, 0x0, 0x3,
0xff, 0xdf, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xef,
0xff, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xdf, 0xfe,
0x0, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0,
0x1, 0xff, 0xf7, 0xff, 0xc0, 0x0, 0x0, 0xff,
0xfb, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xfc, 0xff,
0xfc, 0x0, 0x0, 0xff, 0xfe, 0x7f, 0xff, 0x80,
0x3, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f,
0xff, 0xff, 0xf7, 0xff, 0x0, 0xf, 0xff, 0xff,
0xe3, 0xff, 0x80, 0x0, 0x3f, 0xff, 0x1, 0xff,
0xc0,
/* U+0065 "e" */
0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xff, 0xff,
0xf0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff, 0xff,
0xf8, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xf0, 0xff, 0xfe, 0x0, 0x1f, 0xff,
0xe3, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xc7, 0xff,
0xc0, 0x0, 0x7, 0xff, 0xcf, 0xff, 0x0, 0x0,
0xf, 0xff, 0x9f, 0xfe, 0x0, 0x0, 0xf, 0xff,
0x7f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 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, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff,
0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff,
0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf8, 0x0,
/* U+0066 "f" */
0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0x0,
0x3, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff,
0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0, 0x1f,
0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff,
0x0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff,
0xff, 0xff, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0,
0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff,
0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff,
0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc,
0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff,
0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff,
0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff,
0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0,
/* U+0067 "g" */
0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc3, 0xff, 0xfc, 0x0, 0x0,
0xf, 0xff, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x3f,
0xfc, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf1,
0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xc7, 0xff,
0x80, 0x0, 0x0, 0xf, 0xff, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xcf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xcf, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xf3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xcf,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xcf, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xe1, 0xff,
0xe0, 0x0, 0x0, 0x7, 0xff, 0x87, 0xff, 0xc0,
0x0, 0x0, 0x3f, 0xfe, 0x1f, 0xff, 0x80, 0x0,
0x1, 0xff, 0xf0, 0x3f, 0xff, 0x0, 0x0, 0xf,
0xff, 0xc0, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x1, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfe, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0,
/* U+0068 "h" */
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x7f, 0xff, 0x0, 0x0, 0xff, 0xf3,
0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x80, 0x3,
0xff, 0xfc, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xfc,
0xff, 0xfc, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8,
0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8, 0x0, 0x0,
0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff,
/* U+0069 "i" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xbf,
0xfd, 0xff, 0xef, 0xff, 0x7f, 0xfb, 0xff, 0xdf,
0xfe, 0xff, 0xf7, 0xff, 0xbf, 0xfd, 0xff, 0xef,
0xff, 0x7f, 0xfb, 0xff, 0xdf, 0xfe, 0xff, 0xf7,
0xff, 0xbf, 0xfd, 0xff, 0xef, 0xff, 0x7f, 0xfb,
0xff, 0xdf, 0xfe, 0xff, 0xf7, 0xff, 0xbf, 0xfd,
0xff, 0xef, 0xff, 0x7f, 0xfb, 0xff, 0xdf, 0xfe,
0xff, 0xf7, 0xff, 0xbf, 0xfd, 0xff, 0xef, 0xff,
0x7f, 0xfb, 0xff, 0xdf, 0xfe, 0xff, 0xf7, 0xff,
0xbf, 0xfd, 0xff, 0xef, 0xff, 0x7f, 0xfb, 0xff,
0xdf, 0xfe, 0xff, 0xf7, 0xff, 0xbf, 0xfd, 0xff,
0xef, 0xff, 0x7f, 0xfb, 0xff, 0xdf, 0xfe, 0xff,
0xf7, 0xff, 0xbf, 0xfd, 0xff, 0xef, 0xff, 0x7f,
0xfb, 0xff, 0xdf, 0xfe, 0xff, 0xf7, 0xff, 0xbf,
0xfd, 0xff, 0xef, 0xff, 0x7f, 0xfb, 0xff, 0xc0,
/* U+006A "j" */
0x0, 0x0, 0x7f, 0xfc, 0x0, 0x1, 0xff, 0xf0,
0x0, 0x7, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0x1, 0xff, 0xf0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x0, 0x0,
0x7f, 0xfc, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x7,
0xff, 0xc0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff,
0xc0, 0x0, 0x3f, 0xfe, 0xff, 0xff, 0xff, 0xfb,
0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0x3f,
0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xe3, 0xff,
0xff, 0xff, 0xf, 0xff, 0xff, 0xf8, 0x3f, 0xff,
0xff, 0xc0, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff,
0x80, 0x0,
/* U+006B "k" */
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7,
0xff, 0xf7, 0xff, 0x80, 0x0, 0x7, 0xff, 0xf3,
0xff, 0xc0, 0x0, 0x7, 0xff, 0xf1, 0xff, 0xe0,
0x0, 0x7, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x7,
0xff, 0xf0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0xf0,
0x3f, 0xfc, 0x0, 0x7, 0xff, 0xf0, 0x1f, 0xfe,
0x0, 0x3, 0xff, 0xf0, 0xf, 0xff, 0x0, 0x3,
0xff, 0xf8, 0x7, 0xff, 0x80, 0x3, 0xff, 0xf8,
0x3, 0xff, 0xc0, 0x3, 0xff, 0xf8, 0x1, 0xff,
0xe0, 0x3, 0xff, 0xf8, 0x0, 0xff, 0xf0, 0x3,
0xff, 0xf8, 0x0, 0x7f, 0xf8, 0x3, 0xff, 0xf8,
0x0, 0x3f, 0xfc, 0x3, 0xff, 0xf8, 0x0, 0x1f,
0xfe, 0x1, 0xff, 0xf8, 0x0, 0xf, 0xff, 0x1,
0xff, 0xfc, 0x0, 0x7, 0xff, 0x81, 0xff, 0xfc,
0x0, 0x3, 0xff, 0xc1, 0xff, 0xfc, 0x0, 0x1,
0xff, 0xe1, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xf1,
0xff, 0xfc, 0x0, 0x0, 0x7f, 0xf9, 0xff, 0xfc,
0x0, 0x0, 0x3f, 0xfc, 0xff, 0xfc, 0x0, 0x0,
0x1f, 0xfe, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x1, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0x80, 0x0, 0x3, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xff, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x7f, 0xfe,
0x3f, 0xfe, 0x0, 0x0, 0x3f, 0xfe, 0xf, 0xff,
0x80, 0x0, 0x1f, 0xfe, 0x7, 0xff, 0xc0, 0x0,
0xf, 0xff, 0x1, 0xff, 0xf0, 0x0, 0x7, 0xff,
0x80, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x3f,
0xfe, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xff, 0x80,
0x0, 0xff, 0xf0, 0x7, 0xff, 0xc0, 0x0, 0x7f,
0xf8, 0x1, 0xff, 0xf0, 0x0, 0x3f, 0xfc, 0x0,
0xff, 0xfc, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfe,
0x0, 0xf, 0xff, 0x0, 0x1f, 0xff, 0x80, 0x7,
0xff, 0x80, 0x7, 0xff, 0xc0, 0x3, 0xff, 0xc0,
0x3, 0xff, 0xf0, 0x1, 0xff, 0xe0, 0x0, 0xff,
0xf8, 0x0, 0xff, 0xf0, 0x0, 0x7f, 0xfe, 0x0,
0x7f, 0xf8, 0x0, 0x1f, 0xff, 0x80, 0x3f, 0xfc,
0x0, 0xf, 0xff, 0xc0, 0x1f, 0xfe, 0x0, 0x3,
0xff, 0xf0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf8,
0x7, 0xff, 0x80, 0x0, 0x7f, 0xfe, 0x3, 0xff,
0xc0, 0x0, 0x1f, 0xff, 0x1, 0xff, 0xe0, 0x0,
0xf, 0xff, 0xc0, 0xff, 0xf0, 0x0, 0x3, 0xff,
0xf0, 0x7f, 0xf8, 0x0, 0x1, 0xff, 0xf8, 0x3f,
0xfc, 0x0, 0x0, 0x7f, 0xfe, 0x1f, 0xfe, 0x0,
0x0, 0x3f, 0xff, 0xf, 0xff, 0x0, 0x0, 0xf,
0xff, 0xc7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xe3,
0xff, 0xc0, 0x0, 0x1, 0xff, 0xf9, 0xff, 0xe0,
0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf0, 0x0, 0x0,
0x3f, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff,
0xc0,
/* U+006C "l" */
0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf,
0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff,
0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff,
0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0,
0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0,
0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf,
0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff,
0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff,
0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0,
0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0,
0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf,
0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff,
0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff,
0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0,
0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0,
0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf,
0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff,
0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff,
0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0,
0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0,
0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf,
0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff,
0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff,
0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0,
0xf, 0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0,
0xff, 0xf0, 0xf, 0xff, 0x0, 0xff, 0xf0, 0xf,
0xff, 0x0, 0xff, 0xf0, 0xf, 0xff, 0x0, 0xff,
0xf8, 0xf, 0xff, 0xc0, 0xff, 0xff, 0xf7, 0xff,
0xff, 0x7f, 0xff, 0xf7, 0xff, 0xff, 0x3f, 0xff,
0xf1, 0xff, 0xff, 0x1f, 0xff, 0xf0, 0x7f, 0xff,
0x3, 0xff, 0xf0, 0xf, 0xff,
/* U+006D "m" */
0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x1, 0xff, 0xc7, 0xff, 0xff, 0x80, 0x1,
0xff, 0xff, 0xc0, 0x3, 0xff, 0xbf, 0xff, 0xff,
0xe0, 0xf, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xf0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff,
0xf8, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff,
0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf3, 0xff, 0xff, 0x0, 0x3f, 0xff,
0xff, 0x80, 0x1f, 0xff, 0xe7, 0xff, 0xf0, 0x0,
0x1f, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xcf, 0xff,
0xc0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x7, 0xff,
0xdf, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0,
0xf, 0xff, 0xbf, 0xfe, 0x0, 0x0, 0x1f, 0xff,
0x80, 0x0, 0xf, 0xff, 0x7f, 0xf8, 0x0, 0x0,
0x3f, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x3, 0xff, 0xc0,
/* U+006E "n" */
0xff, 0xe0, 0x7f, 0xff, 0x0, 0x0, 0xff, 0xe3,
0xff, 0xff, 0xf0, 0x0, 0xff, 0xef, 0xff, 0xff,
0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x80, 0x3,
0xff, 0xfc, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xfc,
0xff, 0xfc, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8,
0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8, 0x0, 0x0,
0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff,
/* U+006F "o" */
0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff,
0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf,
0xff, 0xff, 0xff, 0xff, 0xfe, 0xf, 0xff, 0xf0,
0x0, 0x7f, 0xff, 0x87, 0xff, 0xe0, 0x0, 0xf,
0xff, 0xc7, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xf3,
0xff, 0xe0, 0x0, 0x0, 0xff, 0xf9, 0xff, 0xe0,
0x0, 0x0, 0x3f, 0xfc, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x3f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x3f,
0xfc, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x7f,
0xfc, 0x0, 0x0, 0x1f, 0xff, 0x3f, 0xff, 0x0,
0x0, 0x1f, 0xff, 0x8f, 0xff, 0xc0, 0x0, 0x1f,
0xff, 0x87, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xc1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x3, 0xff, 0xf8, 0x0, 0x0,
/* U+0070 "p" */
0xff, 0xe0, 0x7f, 0xfe, 0x0, 0x0, 0xff, 0xe3,
0xff, 0xff, 0xf0, 0x0, 0xff, 0xef, 0xff, 0xff,
0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0x80, 0x3,
0xff, 0xfc, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xfc,
0xff, 0xfc, 0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf8,
0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8, 0x0, 0x0,
0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe,
0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf0,
0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf0, 0x0, 0x0,
0xff, 0xfc, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xfc,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0,
/* U+0071 "q" */
0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80, 0x3,
0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xf0,
0x0, 0x1, 0xff, 0xe7, 0xff, 0xe0, 0x0, 0x0,
0xff, 0xf7, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfb,
0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfd, 0xff, 0xe0,
0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x3f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x1f,
0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x7f,
0xfc, 0x0, 0x0, 0xf, 0xff, 0xbf, 0xff, 0x0,
0x0, 0xf, 0xff, 0xcf, 0xff, 0xc0, 0x0, 0xf,
0xff, 0xe7, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xf3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0xff, 0xff, 0xfe, 0x7f, 0xf8, 0x0,
0x3, 0xff, 0xf0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
/* U+0072 "r" */
0xff, 0xe0, 0x3f, 0xff, 0xff, 0xf0, 0xff, 0xff,
0xff, 0xf9, 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, 0x0, 0x1f, 0xff, 0xe0,
0x0, 0xf, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xe0,
0x0, 0x3, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xf0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0,
/* U+0073 "s" */
0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff,
0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x3,
0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, 0xff, 0xff,
0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x1f, 0xff,
0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xf8,
0x3f, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff, 0xff,
0xff, 0xf8, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0,
0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xff,
0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff,
0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0x3,
0xff, 0xff, 0xff, 0xf8, 0x1, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x7,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfe,
0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0,
0x0, 0x0, 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff,
0xfe, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff,
0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf8,
0x7f, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff,
0xff, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x7f,
0xff, 0xff, 0xff, 0x0, 0x7f, 0xff, 0xff, 0xf8,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
/* U+0074 "t" */
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 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, 0xfe, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1f,
0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x3, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xfc, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff,
0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0,
0x7f, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff,
0xff, 0x80, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0,
0x7f, 0xff, 0xe0,
/* U+0075 "u" */
0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x3, 0xff, 0xdf, 0xfe, 0x0,
0x0, 0x7, 0xff, 0xbf, 0xfc, 0x0, 0x0, 0x1f,
0xff, 0x7f, 0xfc, 0x0, 0x0, 0x3f, 0xfe, 0xff,
0xf8, 0x0, 0x0, 0xff, 0xfc, 0xff, 0xfc, 0x0,
0x3, 0xff, 0xf9, 0xff, 0xfe, 0x0, 0x3f, 0xff,
0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff,
0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff,
0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0x7f, 0xf0,
0x0, 0xff, 0xff, 0xf8, 0xff, 0xe0, 0x0, 0x1f,
0xff, 0x1, 0xff, 0xc0,
/* U+0076 "v" */
0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf9, 0xff, 0xe0,
0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xe0, 0x0,
0x0, 0x1, 0xff, 0xe7, 0xff, 0xc0, 0x0, 0x0,
0x7, 0xff, 0xcf, 0xff, 0x80, 0x0, 0x0, 0xf,
0xff, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f,
0xfe, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x7f, 0xfc,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x7f, 0xf8, 0x0,
0x0, 0x3, 0xff, 0xc0, 0xff, 0xf8, 0x0, 0x0,
0x7, 0xff, 0x81, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xfe, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfc,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0x7,
0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff,
0x80, 0x0, 0x3, 0xff, 0xc0, 0xf, 0xff, 0x0,
0x0, 0x7, 0xff, 0x80, 0x1f, 0xfe, 0x0, 0x0,
0xf, 0xff, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0xff, 0xf0, 0x0,
0xff, 0xf0, 0x0, 0x1, 0xff, 0xe0, 0x1, 0xff,
0xf0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xe0,
0x0, 0xf, 0xff, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x1f, 0xfe, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3f,
0xfc, 0x0, 0xf, 0xff, 0x80, 0x0, 0x7f, 0xf0,
0x0, 0xf, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x1f, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f,
0xfc, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xfc,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7f,
0xf8, 0x0, 0x1, 0xff, 0xe0, 0x0, 0xff, 0xf0,
0x0, 0x3, 0xff, 0xe0, 0x1, 0xff, 0xc0, 0x0,
0x3, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0, 0x7,
0xff, 0x80, 0xf, 0xff, 0x0, 0x0, 0xf, 0xff,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x0,
0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x7f, 0xf8, 0x3, 0xff, 0x80, 0x0,
0x0, 0x7f, 0xf8, 0x7, 0xff, 0x0, 0x0, 0x0,
0xff, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x7f, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0xff,
0xe0, 0x0, 0x0, 0x7, 0xff, 0x81, 0xff, 0xc0,
0x0, 0x0, 0xf, 0xff, 0x7, 0xff, 0x80, 0x0,
0x0, 0xf, 0xfe, 0xf, 0xfe, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xf1, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0x80,
0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0x0, 0x0,
0x0, 0x3, 0xff, 0xdf, 0xfc, 0x0, 0x0, 0x0,
0x3, 0xff, 0xbf, 0xf8, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfe, 0x0,
0x0, 0x0,
/* U+0077 "w" */
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0x9f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xe7, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf9,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x9f, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0x0,
0x0, 0x7, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xc3,
0xff, 0xe0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0,
0xff, 0xe0, 0x7f, 0xf8, 0x0, 0x0, 0x7f, 0xfc,
0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfe, 0x0, 0x0,
0x1f, 0xff, 0x80, 0x0, 0x1f, 0xfe, 0x7, 0xff,
0x80, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x7, 0xff,
0x81, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xf8, 0x0,
0x1, 0xff, 0xe0, 0x7f, 0xfc, 0x0, 0x0, 0xff,
0xfe, 0x0, 0x0, 0x7f, 0xf0, 0xf, 0xff, 0x0,
0x0, 0x3f, 0xff, 0xc0, 0x0, 0x1f, 0xfc, 0x3,
0xff, 0xc0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x7,
0xff, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xfc,
0x0, 0x3, 0xff, 0xc0, 0x3f, 0xfc, 0x0, 0x1,
0xff, 0xff, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff,
0x0, 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x3f, 0xf8,
0x1, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0xf8, 0x0,
0xf, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0xf, 0xff,
0xfe, 0x0, 0x3, 0xff, 0x80, 0x1f, 0xfe, 0x0,
0x3, 0xff, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x7,
0xff, 0x80, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x7f,
0xf8, 0x1, 0xff, 0xe0, 0x0, 0x7f, 0xff, 0xfc,
0x0, 0x1f, 0xfc, 0x0, 0x3f, 0xfc, 0x0, 0x1f,
0xff, 0xff, 0x0, 0x7, 0xff, 0x0, 0xf, 0xff,
0x0, 0x7, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xc0,
0x3, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xf0, 0x0,
0x7f, 0xf0, 0x0, 0xff, 0xf0, 0x0, 0xff, 0xef,
0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xfc, 0x0,
0x3f, 0xfb, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x7,
0xff, 0x80, 0xf, 0xfc, 0xff, 0xe0, 0x3, 0xff,
0x80, 0x1, 0xff, 0xe0, 0x3, 0xff, 0x3f, 0xf8,
0x0, 0xff, 0xe0, 0x0, 0x7f, 0xf8, 0x1, 0xff,
0xcf, 0xff, 0x0, 0x3f, 0xf8, 0x0, 0x1f, 0xfe,
0x0, 0x7f, 0xf1, 0xff, 0xc0, 0x1f, 0xfe, 0x0,
0x7, 0xff, 0x80, 0x1f, 0xf8, 0x7f, 0xf0, 0x7,
0xff, 0x0, 0x0, 0xff, 0xe0, 0x7, 0xfe, 0x1f,
0xfc, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x3,
0xff, 0x87, 0xff, 0x80, 0x7f, 0xf0, 0x0, 0xf,
0xff, 0x0, 0xff, 0xe0, 0xff, 0xe0, 0x1f, 0xfc,
0x0, 0x3, 0xff, 0xc0, 0x3f, 0xf0, 0x3f, 0xf8,
0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xfc,
0xf, 0xfe, 0x3, 0xff, 0x80, 0x0, 0x1f, 0xfc,
0x7, 0xff, 0x3, 0xff, 0xc0, 0xff, 0xe0, 0x0,
0x7, 0xff, 0x81, 0xff, 0xc0, 0x7f, 0xf0, 0x3f,
0xf8, 0x0, 0x1, 0xff, 0xe0, 0x7f, 0xe0, 0x1f,
0xfc, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x3f,
0xf8, 0x7, 0xff, 0x3, 0xff, 0x80, 0x0, 0x1f,
0xfe, 0xf, 0xfe, 0x1, 0xff, 0xc1, 0xff, 0xc0,
0x0, 0x3, 0xff, 0x83, 0xff, 0x80, 0x7f, 0xf8,
0x7f, 0xf0, 0x0, 0x0, 0xff, 0xe0, 0xff, 0xc0,
0xf, 0xfe, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xfc,
0x7f, 0xf0, 0x3, 0xff, 0x87, 0xff, 0x0, 0x0,
0xf, 0xff, 0x1f, 0xfc, 0x0, 0xff, 0xe1, 0xff,
0xc0, 0x0, 0x3, 0xff, 0xc7, 0xfe, 0x0, 0x3f,
0xfc, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf1, 0xff,
0x80, 0x7, 0xff, 0x3f, 0xf8, 0x0, 0x0, 0x1f,
0xfc, 0xff, 0xe0, 0x1, 0xff, 0xcf, 0xfe, 0x0,
0x0, 0x7, 0xff, 0xbf, 0xf8, 0x0, 0x7f, 0xf3,
0xff, 0x80, 0x0, 0x1, 0xff, 0xef, 0xfc, 0x0,
0x1f, 0xfe, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfb,
0xff, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x3f,
0xff, 0xff, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf8,
0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x3f,
0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xff,
0xf8, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0,
0x1f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xf0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0,
0x1f, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x3f,
0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0,
0x0, 0xf, 0xff, 0xfc, 0x0, 0x0,
/* U+0078 "x" */
0x3f, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xf0, 0xff,
0xfc, 0x0, 0x0, 0xf, 0xff, 0x81, 0xff, 0xf0,
0x0, 0x0, 0x3f, 0xfe, 0x7, 0xff, 0xe0, 0x0,
0x1, 0xff, 0xf0, 0xf, 0xff, 0x80, 0x0, 0x7,
0xff, 0xc0, 0x3f, 0xff, 0x0, 0x0, 0x3f, 0xfe,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0xff, 0xf8, 0x1,
0xff, 0xf8, 0x0, 0x7, 0xff, 0xc0, 0x3, 0xff,
0xe0, 0x0, 0x1f, 0xfe, 0x0, 0xf, 0xff, 0xc0,
0x0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x3f, 0xfe, 0x0, 0x1f, 0xff,
0x0, 0x0, 0xff, 0xfc, 0x0, 0x7f, 0xf8, 0x0,
0x1, 0xff, 0xf0, 0x3, 0xff, 0xe0, 0x0, 0x7,
0xff, 0xe0, 0xf, 0xff, 0x0, 0x0, 0xf, 0xff,
0x80, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfc, 0xf, 0xff,
0x0, 0x0, 0x1, 0xff, 0xf8, 0x7f, 0xfc, 0x0,
0x0, 0x3, 0xff, 0xe1, 0xff, 0xe0, 0x0, 0x0,
0x7, 0xff, 0xcf, 0xff, 0x80, 0x0, 0x0, 0x1f,
0xff, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x1f, 0xff, 0x7f, 0xfc, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff,
0xe1, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x7,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfc, 0xf, 0xff,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfe, 0x0,
0x0, 0xf, 0xff, 0x80, 0x7f, 0xfc, 0x0, 0x0,
0x7f, 0xfc, 0x1, 0xff, 0xf0, 0x0, 0x1, 0xff,
0xf0, 0x3, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x80,
0xf, 0xff, 0x80, 0x0, 0x3f, 0xfe, 0x0, 0x1f,
0xff, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x7f, 0xfc,
0x0, 0x7, 0xff, 0xc0, 0x0, 0xff, 0xf8, 0x0,
0x3f, 0xfe, 0x0, 0x3, 0xff, 0xf0, 0x1, 0xff,
0xf0, 0x0, 0x7, 0xff, 0xc0, 0x7, 0xff, 0xc0,
0x0, 0x1f, 0xff, 0x80, 0x3f, 0xfe, 0x0, 0x0,
0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x0, 0x0, 0xff,
0xfc, 0x7, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xf0,
0x1f, 0xff, 0x0, 0x0, 0x7, 0xff, 0xe0, 0xff,
0xf8, 0x0, 0x0, 0xf, 0xff, 0xc3, 0xff, 0xe0,
0x0, 0x0, 0x3f, 0xff, 0x1f, 0xff, 0x0, 0x0,
0x0, 0x7f, 0xfe, 0xff, 0xfc, 0x0, 0x0, 0x1,
0xff, 0xfb, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff,
0xf0,
/* U+0079 "y" */
0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x7f, 0xfb, 0xff, 0xe0,
0x0, 0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0,
0x0, 0x1, 0xff, 0xe7, 0xff, 0xc0, 0x0, 0x0,
0x7, 0xff, 0x8f, 0xff, 0x80, 0x0, 0x0, 0xf,
0xff, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f,
0xfe, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x3f, 0xfc,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x7f, 0xf8, 0x0,
0x0, 0x3, 0xff, 0xc0, 0xff, 0xf8, 0x0, 0x0,
0x7, 0xff, 0x81, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xfe, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfc,
0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0x7,
0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff,
0x80, 0x0, 0x1, 0xff, 0xc0, 0xf, 0xff, 0x0,
0x0, 0x7, 0xff, 0x80, 0x1f, 0xff, 0x0, 0x0,
0xf, 0xff, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x7f, 0xf8, 0x0, 0x1, 0xff, 0xe0, 0x0, 0xff,
0xf0, 0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xe0,
0x0, 0x7, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x1f, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f,
0xfc, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf0,
0x0, 0xf, 0xff, 0x80, 0x0, 0xff, 0xe0, 0x0,
0xf, 0xff, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1f,
0xfe, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3f, 0xfc,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x1f, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0xff, 0xe0, 0x1, 0xff, 0xc0, 0x0,
0x1, 0xff, 0xe0, 0x3, 0xff, 0x80, 0x0, 0x3,
0xff, 0xc0, 0x7, 0xff, 0x0, 0x0, 0x3, 0xff,
0x80, 0x1f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80,
0x3f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x1f, 0xfc, 0x3, 0xff, 0x80, 0x0,
0x0, 0x3f, 0xfc, 0x7, 0xff, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x7f, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xff,
0xe0, 0x0, 0x0, 0x1, 0xff, 0xc1, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0x83, 0xff, 0x0, 0x0,
0x0, 0x7, 0xff, 0x8f, 0xfe, 0x0, 0x0, 0x0,
0x7, 0xff, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0xf,
0xfe, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x7f, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x3f, 0xfb, 0xff, 0x80,
0x0, 0x0, 0x0, 0x7f, 0xf7, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+007A "z" */
0x1f, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xff,
0x8f, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xc7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff,
0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xe3, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0,
0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff,
0xe0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff,
0x80, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0,
0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff,
0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0,
0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xfe,
0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0,
0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0,
0xf, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0,
0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x3f, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0,
0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x7f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80,
0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0,
0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x1,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0,
0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xff,
0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xfe,
0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff,
0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff,
0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80,
/* U+007B "{" */
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7f, 0xff,
0x0, 0x1, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff,
0x0, 0x7, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff,
0x0, 0xf, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff,
0x0, 0x1f, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff,
0x0, 0x1f, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xf0, 0x0,
0x7, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xe0, 0x0,
0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0x80, 0x0,
0xff, 0xff, 0x80, 0x0, 0xff, 0xfe, 0x0, 0x0,
0xff, 0xfc, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0,
0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0,
0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0x80, 0x0,
0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xe0, 0x0,
0x7, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xf0, 0x0,
0x0, 0x7f, 0xf0, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0x0,
0x0, 0x1f, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff,
0x0, 0x1f, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff,
0x0, 0xf, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff,
0x0, 0x3, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff,
0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0xf, 0xff,
/* U+007C "|" */
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, 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,
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, 0xe0,
/* U+007D "}" */
0xff, 0xf0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0,
0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xc0, 0x0,
0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xf0, 0x0,
0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xf8, 0x0,
0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xf8, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xfe, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x80,
0x0, 0x7, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xff,
0x0, 0x3, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff,
0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0xff, 0xff,
0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x1f, 0xff,
0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0xff, 0xff,
0x0, 0x1, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff,
0x0, 0x3, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff,
0x0, 0x7, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x80,
0x0, 0xf, 0xfe, 0x0, 0x0, 0xf, 0xfe, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf8, 0x0,
0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xf8, 0x0,
0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xf0, 0x0,
0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xe0, 0x0,
0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0x80, 0x0,
0xff, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
/* U+007E "~" */
0x0, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf8, 0x0, 0x0, 0x3, 0x3, 0xff, 0xff, 0x0,
0x0, 0xf, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x3f,
0x3f, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0x3, 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, 0x7f, 0xff,
0xff, 0xff, 0xff, 0x80, 0xf, 0xff, 0xff, 0xfe,
0xfe, 0x0, 0x1, 0xff, 0xff, 0xf8, 0xf0, 0x0,
0x0, 0x3f, 0xff, 0xc0, 0xc0, 0x0, 0x0, 0x7,
0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xfc, 0x0,
/* U+00A0 " " */
0x0,
/* U+00A1 "¡" */
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, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0x9f, 0xfe,
0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f,
0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9,
0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff,
0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7,
0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff,
0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f,
0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe,
0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f,
0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9,
0xff, 0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff,
0xe7, 0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7,
0xff, 0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff,
0x9f, 0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f,
0xfe, 0x7f, 0xf9, 0xff, 0xe7, 0xff, 0x9f, 0xfe,
0x7f, 0xf9, 0xff, 0xe0,
/* U+00A2 "¢" */
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x7,
0xff, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff,
0xff, 0x80, 0x7, 0xff, 0xff, 0xff, 0x0, 0x3f,
0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xfc,
0x7, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff,
0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff,
0xff, 0xff, 0xff, 0xc7, 0xff, 0xff, 0xff, 0xff,
0x9f, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x1, 0xff,
0xf8, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0,
0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x3f,
0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff,
0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xe1,
0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff,
0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x7f, 0xff, 0xff, 0xfc,
0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xff,
0xff, 0xf0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfc,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
0x7f, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0,
/* U+00A3 "£" */
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff,
0x80, 0x1, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x7f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 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, 0xff, 0xff, 0xf0,
/* U+00A4 "¤" */
0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4,
0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x70, 0x1, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xc0, 0x1f, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0x1, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xfc, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf1, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xdf, 0xff, 0xc0, 0xf,
0xff, 0xfe, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xf,
0xff, 0xff, 0xff, 0x7, 0xff, 0xfb, 0xff, 0xfd,
0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0x8f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x3, 0xff, 0xfe, 0x0, 0x0,
0xff, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xc0, 0x0,
0x1, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xfc, 0x0,
0x0, 0x7, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xc0,
0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x3, 0xff,
0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7,
0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xe0,
0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff,
0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x3, 0xff,
0xf0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0x7f,
0xff, 0xc0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff,
0xfe, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xdf,
0xff, 0xe1, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff,
0x7f, 0xfe, 0x0, 0x7f, 0xff, 0xf0, 0x3, 0xff,
0xf1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xf0, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xf0, 0x1, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x0, 0x6, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x30, 0x0,
/* U+00A5 "¥" */
0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe7, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfe,
0x0, 0x0, 0x0, 0x7, 0xff, 0xc3, 0xff, 0xe0,
0x0, 0x0, 0x0, 0xff, 0xf8, 0x3f, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0x81, 0xff, 0xf0, 0x0,
0x0, 0x1, 0xff, 0xf0, 0x1f, 0xff, 0x80, 0x0,
0x0, 0x1f, 0xff, 0x0, 0xff, 0xf8, 0x0, 0x0,
0x3, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x0, 0x0,
0x3f, 0xfe, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff,
0x80, 0x3, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf8,
0x0, 0x1f, 0xff, 0x0, 0x0, 0xf, 0xff, 0x0,
0x1, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xf0, 0x0,
0x1f, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0xff, 0xf8, 0x0, 0x3, 0xff, 0xe0, 0x0, 0xf,
0xff, 0x80, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x7, 0xff,
0xc0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfe,
0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xe0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x1,
0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x3, 0xff,
0xe0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x7, 0xff, 0xc0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x7, 0xff, 0x80, 0x0,
0x0, 0x3, 0xff, 0xe0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0xf, 0xff, 0x0, 0x0, 0x0,
0x1, 0xff, 0xf1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xbf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xfb, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
/* U+00A6 "¦" */
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, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 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, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0,
/* U+00A7 "§" */
0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0,
0xf, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff,
0xff, 0x80, 0x1f, 0xff, 0xff, 0xff, 0xc0, 0xf,
0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff,
0xf0, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xff,
0xff, 0xff, 0xfc, 0x7, 0xff, 0xf0, 0x0, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x1,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0xf,
0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xff,
0xe0, 0x1, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff,
0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff,
0x1, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff,
0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x7f, 0xfc, 0x0, 0xff, 0xfe, 0x7f, 0xf8, 0x0,
0x1f, 0xff, 0x3f, 0xfc, 0x0, 0x7, 0xff, 0x9f,
0xfc, 0x0, 0x3, 0xff, 0xdf, 0xfe, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x1f, 0xfe, 0xff, 0xf0, 0x0, 0xf, 0xfe, 0x7f,
0xf8, 0x0, 0xf, 0xff, 0x3f, 0xfe, 0x0, 0x7,
0xff, 0x9f, 0xff, 0xc0, 0xf, 0xff, 0x87, 0xff,
0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff,
0xc0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3f, 0xff,
0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff, 0xe0,
0x7, 0xff, 0xff, 0xff, 0xe0, 0x1, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xfe, 0x0,
0x7, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0,
0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0,
0x3, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8,
0x7, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff,
0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xfc, 0x0,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff,
0xfc, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x1f,
0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0,
/* U+00A8 "¨" */
0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0xf, 0xff,
/* U+00A9 "©" */
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0,
0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xfc, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xc3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf3, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xdf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfb, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x1, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xff,
0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x7,
0xff, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xf8,
0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3f,
0xff, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80,
0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x3, 0xff,
0xff, 0xf0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff,
0xff, 0x80, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0,
0x1f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xf8, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0x0, 0x0, 0xff, 0x80, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x1f,
0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xfc,
0x0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0x80, 0x0, 0x7f, 0x80, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0,
0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xc0, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0,
0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xe0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xfc, 0x0, 0x3, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x7f,
0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf0,
0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xfe, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x3f, 0xc0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0,
0x7, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x3,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0x80, 0x0, 0x7f, 0x80, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xf0, 0x0, 0xf, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x1, 0xfe,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0,
0x0, 0x3f, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xf8, 0x0, 0x7, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0xff, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0,
0x1f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xfc, 0x0, 0x3, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0x80, 0x0, 0x7f, 0x80, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0xf,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xfe,
0x0, 0x1, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xc0, 0x0, 0x3f, 0xc0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0,
0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xe0, 0x0, 0x1f, 0xe0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0,
0x7f, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xf0, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x1f,
0xff, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xff, 0xf8,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3f,
0xff, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xc0,
0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x1, 0xff,
0xff, 0xf8, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x1f, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xff,
0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0,
0x3, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff,
0xfc, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x7f, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xcf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xf9, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xf8, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0,
/* U+00AA "ª" */
0xf, 0xff, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x1,
0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x3f,
0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xf8,
0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0,
0x3, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80,
0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7f, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0,
0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0xf,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x1,
0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff,
0x80, 0xf, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff,
0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff, 0xf0,
0xf, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff,
0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x7,
0xff, 0xc0, 0x3, 0xff, 0x3, 0xff, 0x80, 0x1,
0xff, 0x81, 0xff, 0x80, 0x0, 0xff, 0xc1, 0xff,
0xc0, 0x0, 0x7f, 0xe0, 0xff, 0xc0, 0x0, 0x3f,
0xf0, 0x7f, 0xe0, 0x0, 0x1f, 0xf8, 0x3f, 0xf0,
0x0, 0xf, 0xfc, 0x1f, 0xf8, 0x0, 0x7, 0xfe,
0xf, 0xfc, 0x0, 0x3, 0xff, 0x7, 0xfe, 0x0,
0x1, 0xff, 0x83, 0xff, 0x0, 0x0, 0xff, 0xc1,
0xff, 0x80, 0x0, 0x7f, 0xe0, 0xff, 0xc0, 0x0,
0x3f, 0xf0, 0x7f, 0xf0, 0x0, 0x1f, 0xf8, 0x3f,
0xf8, 0x0, 0x1f, 0xfc, 0xf, 0xff, 0x0, 0x1f,
0xfe, 0x7, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff,
0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff,
0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff,
0xc0, 0xff, 0xff, 0xfc, 0xff, 0xe0, 0x7, 0xff,
0xf8, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xf8, 0x1f, 0xff, 0xff, 0xff, 0xfc,
0xf, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff,
0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0x81,
0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x3f,
0xff, 0xff, 0xff, 0xf8, 0x1f, 0xff, 0xff, 0xff,
0xfc, 0x0,
/* U+00AB "«" */
0x0, 0x7, 0xfc, 0x0, 0x1f, 0xf0, 0x0, 0x7f,
0xe0, 0x0, 0xff, 0x80, 0x3, 0xfe, 0x0, 0xf,
0xfc, 0x0, 0x3f, 0xf0, 0x0, 0x7f, 0xe0, 0x1,
0xff, 0x80, 0x7, 0xfe, 0x0, 0xf, 0xfc, 0x0,
0x3f, 0xf0, 0x0, 0xff, 0xc0, 0x1, 0xff, 0x80,
0x7, 0xfe, 0x0, 0x1f, 0xf8, 0x0, 0x7f, 0xf0,
0x0, 0xff, 0xc0, 0x3, 0xff, 0x0, 0xf, 0xfe,
0x0, 0x3f, 0xf8, 0x0, 0x7f, 0xe0, 0x1, 0xff,
0xc0, 0x7, 0xff, 0x0, 0xf, 0xfc, 0x0, 0x3f,
0xf8, 0x0, 0xff, 0xe0, 0x1, 0xff, 0xc0, 0x7,
0xff, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0,
0xff, 0xe0, 0x3, 0xff, 0x80, 0xf, 0xff, 0x0,
0x3f, 0xfc, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xe0,
0x7, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x3f, 0xfc,
0x0, 0xff, 0xf0, 0x1, 0xff, 0xc0, 0x7, 0xff,
0x80, 0x1f, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0xff,
0xf0, 0x3, 0xff, 0xc0, 0xf, 0xff, 0x0, 0x3f,
0xfe, 0x0, 0x7f, 0xf8, 0x1, 0xff, 0xe0, 0x7,
0xff, 0xc0, 0xf, 0xff, 0x0, 0x3f, 0xfe, 0x0,
0xff, 0xf8, 0x1, 0xff, 0xe0, 0x7, 0xff, 0xc0,
0x1f, 0xff, 0x0, 0x3f, 0xfe, 0x0, 0xff, 0xf8,
0x1, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0x7, 0xff,
0x80, 0x1f, 0xff, 0x0, 0x3f, 0xfc, 0x0, 0xff,
0xf8, 0x1, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0x7,
0xff, 0x80, 0x1f, 0xfe, 0x0, 0x3f, 0xfc, 0x0,
0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x3, 0xff, 0xc0,
0x7, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x1f, 0xfc,
0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0, 0x3, 0xff,
0xc0, 0x7, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x1f,
0xfc, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xe0, 0x1,
0xff, 0xc0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0,
0x1f, 0xfc, 0x0, 0x3f, 0xf0, 0x0, 0x7f, 0xe0,
0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0xf, 0xfe,
0x0, 0x1f, 0xfc, 0x0, 0x3f, 0xf0, 0x0, 0x7f,
0xe0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x7,
0xfe, 0x0, 0xf, 0xfc, 0x0, 0x3f, 0xf0, 0x0,
0x7f, 0xe0, 0x0, 0xff, 0xc0, 0x1, 0xff, 0x80,
0x7, 0xfe, 0x0, 0xf, 0xfc, 0x0, 0x3f, 0xf0,
0x0, 0x7f, 0xe0, 0x0, 0xff, 0xc0, 0x1, 0xff,
0x0, 0x7, 0xfe, 0x0, 0xf, 0xfc, 0x0, 0x1f,
0xf0, 0x0, 0x3f, 0xe0, 0x0, 0xff, 0x80,
/* U+00AC "¬" */
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, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0,
/* U+00AD "" */
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, 0xf0,
/* U+00AE "®" */
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0,
0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xfc, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xc3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf3, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xdf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfb, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x3,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x7,
0xff, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xff, 0xfc,
0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xff, 0x80,
0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xff,
0xff, 0xf0, 0x0, 0x7, 0xff, 0xff, 0xff, 0x80,
0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0xff, 0x0,
0x3f, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0,
0x1f, 0xe0, 0x1, 0xff, 0x0, 0x1, 0xff, 0xff,
0xf8, 0x0, 0x3, 0xfc, 0x0, 0x3f, 0xf0, 0x0,
0x3f, 0xff, 0xff, 0x0, 0x0, 0x7f, 0x80, 0x3,
0xfe, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0xf,
0xf0, 0x0, 0x7f, 0xc0, 0x0, 0xff, 0xff, 0xfc,
0x0, 0x1, 0xfe, 0x0, 0xf, 0xf8, 0x0, 0x1f,
0xff, 0xff, 0x80, 0x0, 0x3f, 0xc0, 0x1, 0xff,
0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xf8,
0x0, 0x3f, 0xe0, 0x0, 0x7f, 0xff, 0xfe, 0x0,
0x0, 0xff, 0x0, 0x7, 0xfc, 0x0, 0xf, 0xff,
0xff, 0xc0, 0x0, 0x1f, 0xe0, 0x0, 0xff, 0x80,
0x1, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xfc, 0x0,
0x1f, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0,
0x7f, 0x80, 0x3, 0xfe, 0x0, 0x7, 0xff, 0xff,
0xe0, 0x0, 0xf, 0xf0, 0x0, 0x7f, 0xc0, 0x0,
0xff, 0xff, 0xfc, 0x0, 0x1, 0xfe, 0x0, 0xf,
0xf8, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x3f,
0xc0, 0x1, 0xff, 0x0, 0x3, 0xff, 0xff, 0xf0,
0x0, 0x7, 0xf8, 0x0, 0x3f, 0xe0, 0x0, 0x7f,
0xff, 0xfe, 0x0, 0x0, 0xff, 0x0, 0xf, 0xfc,
0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xe0,
0x1, 0xff, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0,
0x3, 0xfc, 0x0, 0xff, 0xe0, 0x0, 0x3f, 0xff,
0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf8, 0x0,
0x7, 0xff, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xff,
0xff, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x1,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xff,
0x80, 0x0, 0x3f, 0xff, 0xff, 0xe0, 0x0, 0x3,
0xff, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0xff,
0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0,
0x0, 0x1f, 0xe0, 0x7f, 0xc0, 0x0, 0x1, 0xff,
0xff, 0xf8, 0x0, 0x3, 0xfc, 0x7, 0xf8, 0x0,
0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x7f, 0x80,
0xff, 0x80, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0,
0xf, 0xf0, 0xf, 0xf0, 0x0, 0x0, 0xff, 0xff,
0xfc, 0x0, 0x1, 0xfe, 0x1, 0xff, 0x0, 0x0,
0x1f, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xc0, 0x1f,
0xe0, 0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x7,
0xf8, 0x3, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xfe,
0x0, 0x0, 0xff, 0x0, 0x3f, 0xc0, 0x0, 0xf,
0xff, 0xff, 0xc0, 0x0, 0x1f, 0xe0, 0x7, 0xfc,
0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xfc,
0x0, 0x7f, 0x80, 0x0, 0x3f, 0xff, 0xff, 0x0,
0x0, 0x7f, 0x80, 0xf, 0xf8, 0x0, 0x7, 0xff,
0xff, 0xe0, 0x0, 0xf, 0xf0, 0x0, 0xff, 0x0,
0x0, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xfe, 0x0,
0x1f, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0,
0x3f, 0xc0, 0x1, 0xfe, 0x0, 0x3, 0xff, 0xff,
0xf0, 0x0, 0x7, 0xf8, 0x0, 0x3f, 0xe0, 0x0,
0x7f, 0xff, 0xfe, 0x0, 0x0, 0xff, 0x0, 0x3,
0xfc, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x1f,
0xe0, 0x0, 0x7f, 0xc0, 0x1, 0xff, 0xff, 0xf8,
0x0, 0x3, 0xfc, 0x0, 0x7, 0xf8, 0x0, 0x3f,
0xff, 0xff, 0x0, 0x0, 0x7f, 0x80, 0x0, 0xff,
0x80, 0x7, 0xff, 0xff, 0xe0, 0x0, 0xf, 0xf0,
0x0, 0xf, 0xf0, 0x0, 0xff, 0xff, 0xfc, 0x0,
0x1, 0xfe, 0x0, 0x1, 0xff, 0x0, 0x1f, 0xff,
0xff, 0x80, 0x0, 0x3f, 0xc0, 0x0, 0x1f, 0xe0,
0x3, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xf8, 0x0,
0x3, 0xfe, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x7f, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xcf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xf9, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xf8, 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0,
/* U+00AF "¯" */
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,
/* U+00B0 "°" */
0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff,
0xfc, 0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3,
0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff,
0xe0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff,
0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xfc,
0x3f, 0xfe, 0x0, 0x7f, 0xfc, 0x7f, 0xf8, 0x0,
0x1f, 0xfe, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x7f,
0xe0, 0x0, 0x7, 0xfe, 0xff, 0xe0, 0x0, 0x7,
0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0,
0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff,
0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0,
0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff,
0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3,
0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0,
0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff,
0xff, 0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0,
0x3, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xff,
0xc0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x3,
0xff, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x7f, 0xe0,
0x0, 0x7, 0xfe, 0x7f, 0xf0, 0x0, 0xf, 0xfe,
0x7f, 0xf8, 0x0, 0x1f, 0xfe, 0x3f, 0xfe, 0x0,
0x7f, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x1f,
0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff,
0xf0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff,
0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff,
0xe0, 0x0,
/* U+00B1 "±" */
0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80,
0x0, 0x3, 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, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x7, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 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, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
/* U+00B2 "²" */
0x3f, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xc0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff,
0xc0, 0x3f, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff,
0xff, 0x3, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff,
0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0x0, 0x0,
0xf, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x3, 0xff, 0x80,
0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x1f, 0xf8,
0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x1, 0xff,
0x80, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x1f,
0xf8, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x1,
0xff, 0x80, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0x1f, 0xf8, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0,
0x1, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xe0, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0xf, 0xfc, 0x0,
0x0, 0x3, 0xff, 0x0, 0x0, 0x1, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7, 0xff,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 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, 0xc0,
/* U+00B3 "³" */
0xff, 0xff, 0xe0, 0x1, 0xff, 0xff, 0xf8, 0x3,
0xff, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xfe, 0xf,
0xff, 0xff, 0xfe, 0x1f, 0xff, 0xff, 0xfe, 0x3f,
0xff, 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xfc, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xf8, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x3, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0x0,
0xf, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0,
0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0,
0xff, 0xe0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x3,
0xff, 0x80, 0x0, 0x7, 0xff, 0x0, 0x0, 0xf,
0xfe, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0xf, 0xff,
0x81, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xf8,
0x7, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0x80,
0x1f, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0x0,
0x7f, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0x1,
0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xf8, 0x0,
0x0, 0x3f, 0xf0, 0x0, 0x0, 0x7f, 0xe0, 0x0,
0x0, 0xff, 0xc0, 0x0, 0x1, 0xff, 0x80, 0x0,
0x3, 0xff, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0,
0xf, 0xfc, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0,
0x3f, 0xf0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0xff, 0xc0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x3,
0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x3, 0xff,
0xef, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff,
0x3f, 0xff, 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0x83,
0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xf0, 0xf,
0xff, 0xfe, 0x0, 0x0,
/* U+00B4 "´" */
0x0, 0x3, 0xff, 0xfc, 0x0, 0xf, 0xff, 0xe0,
0x0, 0x7f, 0xff, 0x0, 0x3, 0xff, 0xf8, 0x0,
0x1f, 0xff, 0xc0, 0x0, 0x7f, 0xfe, 0x0, 0x3,
0xff, 0xf0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0xff,
0xfc, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x1f, 0xff,
0x0, 0x0, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xc0,
0x0, 0x1f, 0xff, 0x0, 0x0, 0xff, 0xf8, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x3f, 0xfe, 0x0, 0x1,
0xff, 0xf0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
/* U+00B5 "µ" */
0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x7, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xf8, 0x0, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0,
0x3, 0xff, 0xff, 0xff, 0xfe, 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, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xfe, 0x1f,
0xff, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+00B6 "¶" */
0x0, 0x0, 0x7f, 0xff, 0xf0, 0xf, 0xfe, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x1f, 0xfc, 0x0, 0xff,
0xff, 0xff, 0xc0, 0x3f, 0xf8, 0x7, 0xff, 0xff,
0xff, 0x80, 0x7f, 0xf0, 0x3f, 0xff, 0xff, 0xff,
0x0, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xfe, 0x1,
0xff, 0xc3, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff,
0x87, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, 0x1f,
0xff, 0xff, 0xff, 0xf0, 0xf, 0xfe, 0x7f, 0xff,
0xff, 0xff, 0xe0, 0x1f, 0xfc, 0xff, 0xff, 0x80,
0x0, 0x0, 0x3f, 0xf9, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x7f, 0xf7, 0xff, 0xe0, 0x0, 0x0, 0x0,
0xff, 0xef, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff,
0xdf, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xbf,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xdf, 0xfe,
0x0, 0x0, 0x0, 0x3, 0xff, 0xbf, 0xfc, 0x0,
0x0, 0x0, 0x7, 0xff, 0x7f, 0xfc, 0x0, 0x0,
0x0, 0xf, 0xfe, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x1f, 0xfc, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f,
0xf9, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf1,
0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xe3, 0xff,
0xff, 0xff, 0xfe, 0x1, 0xff, 0xc3, 0xff, 0xff,
0xff, 0xfc, 0x3, 0xff, 0x83, 0xff, 0xff, 0xff,
0xf8, 0x7, 0xff, 0x3, 0xff, 0xff, 0xff, 0xf0,
0xf, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xe0, 0x1f,
0xfc, 0x1, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xf8,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x7f, 0xf0, 0x0,
0xf, 0xff, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0,
0x1f, 0xfe, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3f,
0xfc, 0x3, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xf8,
0x7, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf,
0xfe, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xfc,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x3f, 0xf8, 0x0,
0x0, 0x7, 0xff, 0x80, 0x7f, 0xf0, 0x0, 0x0,
0xf, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x1f,
0xfe, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfc,
0x3, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xf8, 0x7,
0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xfe,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x1f, 0xfc, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x3f, 0xf8, 0x0, 0x0,
0x7, 0xff, 0x80, 0x7f, 0xf0, 0x0, 0x0, 0xf,
0xff, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfe,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfc, 0x3,
0xff, 0x80, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff,
0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xfe, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x1f, 0xfc, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x3f, 0xf8, 0x0, 0x0, 0x7,
0xff, 0x80, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xff,
0x0, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfe, 0x1,
0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfc, 0x3, 0xff,
0x80, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0x0,
0x0, 0x0, 0xff, 0xf0, 0xf, 0xfe, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x1f, 0xfc, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x3f, 0xf8, 0x0, 0x0, 0x7, 0xff,
0x80, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0,
0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff,
0xc0, 0x0, 0x0, 0x3f, 0xfc, 0x3, 0xff, 0x80,
0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0x0, 0x0,
0x0, 0xff, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x1f, 0xfc, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x3f, 0xf8, 0x0, 0x0, 0x7, 0xff, 0x80,
0x7f, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff,
0xe0, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xc0,
0x0, 0x0, 0x3f, 0xfc, 0x3, 0xff, 0x80, 0x0,
0x0, 0x7f, 0xf8, 0x7, 0xff, 0x0, 0x0, 0x0,
0xff, 0xf0, 0xf, 0xfe, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x1f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x3f, 0xf8, 0x0, 0x0, 0x7, 0xff, 0x80, 0x7f,
0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x3f, 0xfc, 0x3, 0xff, 0x80, 0x0, 0x0,
0x7f, 0xf8, 0x7, 0xff, 0x0, 0x0, 0x0, 0xff,
0xf0, 0xf, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x1f, 0xfc,
/* U+00B7 "·" */
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+00B8 "¸" */
0x3f, 0xf0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xf0,
0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xf0, 0x0, 0x3f,
0xf0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xf0, 0x0,
0x3f, 0xf0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xff,
0xc0, 0x3f, 0xff, 0xf0, 0x3f, 0xff, 0xfc, 0x3f,
0xff, 0xfc, 0x3f, 0xff, 0xfe, 0x3f, 0xff, 0xfe,
0x3f, 0xff, 0xfe, 0x0, 0xf, 0xff, 0x0, 0x7,
0xff, 0x0, 0x3, 0xff, 0x0, 0x3, 0xff, 0x0,
0x3, 0xff, 0x0, 0x3, 0xff, 0x0, 0x3, 0xff,
0x0, 0x7, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xfe, 0xff,
0xff, 0xfe, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xf0, 0xff, 0xff, 0xe0, 0xff, 0xff,
0x0,
/* U+00B9 "¹" */
0x0, 0xf, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xc0,
0x0, 0x1f, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xfc,
0x0, 0x3f, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0xf, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0xff, 0xff, 0xff, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0xf, 0xfe, 0x3f, 0xf0, 0x3, 0xfc,
0xf, 0xfc, 0x0, 0xfc, 0x3, 0xff, 0x0, 0x38,
0x0, 0xff, 0xc0, 0x8, 0x0, 0x3f, 0xf0, 0x0,
0x0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x0,
0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xf0,
0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff,
0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x3f,
0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3,
0xff, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0,
0x3f, 0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0,
0x3, 0xff, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0,
0x0, 0x3f, 0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0,
0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xff, 0xc0,
0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0xf, 0xfc,
0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0xff,
0xc0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0xf,
0xfc, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0,
0xff, 0xc0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0,
0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0,
0x0, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xf0, 0x0,
0x0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0x0,
0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xf0,
0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3, 0xff,
0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x3f,
0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3,
0xff, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0,
0x3f, 0xf0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xf7,
0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff,
0x7f, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff,
0xf7, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff,
0xff, 0x7f, 0xff, 0xff, 0xff, 0xc0,
/* U+00BA "º" */
0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xff,
0xf0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x3f,
0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xfc,
0x3, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xff,
0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x7f,
0xfc, 0x0, 0xff, 0xf8, 0xff, 0xe0, 0x0, 0x7f,
0xf1, 0xff, 0x80, 0x0, 0x7f, 0xe7, 0xff, 0x0,
0x0, 0xff, 0xef, 0xfc, 0x0, 0x0, 0xff, 0xdf,
0xf8, 0x0, 0x1, 0xff, 0xbf, 0xf0, 0x0, 0x3,
0xff, 0x7f, 0xe0, 0x0, 0x7, 0xfe, 0xff, 0xc0,
0x0, 0xf, 0xfd, 0xff, 0x80, 0x0, 0x1f, 0xfb,
0xff, 0x0, 0x0, 0x3f, 0xf7, 0xfe, 0x0, 0x0,
0x7f, 0xef, 0xfc, 0x0, 0x0, 0xff, 0xdf, 0xf8,
0x0, 0x1, 0xff, 0xbf, 0xf0, 0x0, 0x3, 0xff,
0x7f, 0xe0, 0x0, 0x7, 0xfe, 0xff, 0xc0, 0x0,
0xf, 0xfd, 0xff, 0x80, 0x0, 0x1f, 0xfb, 0xff,
0x0, 0x0, 0x3f, 0xf7, 0xfe, 0x0, 0x0, 0x7f,
0xef, 0xfc, 0x0, 0x0, 0xff, 0xdf, 0xf8, 0x0,
0x1, 0xff, 0xbf, 0xf0, 0x0, 0x3, 0xff, 0x7f,
0xe0, 0x0, 0x7, 0xfe, 0xff, 0xc0, 0x0, 0xf,
0xfd, 0xff, 0x80, 0x0, 0x1f, 0xfb, 0xff, 0x0,
0x0, 0x3f, 0xf7, 0xfe, 0x0, 0x0, 0x7f, 0xef,
0xfc, 0x0, 0x0, 0xff, 0xdf, 0xf8, 0x0, 0x1,
0xff, 0xbf, 0xf0, 0x0, 0x3, 0xff, 0x7f, 0xe0,
0x0, 0x7, 0xfe, 0xff, 0xe0, 0x0, 0x1f, 0xfc,
0xff, 0xc0, 0x0, 0x3f, 0xf1, 0xff, 0xc0, 0x0,
0xff, 0xe3, 0xff, 0xe0, 0x7, 0xff, 0xc3, 0xff,
0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xfe,
0x7, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, 0xff,
0xff, 0xe0, 0x7, 0xff, 0xff, 0xff, 0x80, 0x7,
0xff, 0xff, 0xfe, 0x0, 0x1, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 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,
0xfe,
/* U+00BB "»" */
0x7f, 0xc0, 0x1, 0xff, 0x0, 0x3, 0xfe, 0x0,
0xf, 0xfc, 0x0, 0x1f, 0xf8, 0x0, 0x3f, 0xe0,
0x0, 0x7f, 0xc0, 0x1, 0xff, 0x80, 0x3, 0xff,
0x0, 0xf, 0xfc, 0x0, 0x1f, 0xf8, 0x0, 0x3f,
0xf0, 0x0, 0xff, 0xe0, 0x1, 0xff, 0x80, 0x3,
0xff, 0x0, 0xf, 0xfc, 0x0, 0x1f, 0xf8, 0x0,
0x7f, 0xf0, 0x0, 0xff, 0xe0, 0x1, 0xff, 0x80,
0x3, 0xff, 0x0, 0xf, 0xfe, 0x0, 0x1f, 0xfc,
0x0, 0x7f, 0xf0, 0x0, 0xff, 0xe0, 0x1, 0xff,
0xc0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0, 0x1f,
0xfc, 0x0, 0x7f, 0xf0, 0x0, 0xff, 0xe0, 0x1,
0xff, 0xc0, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x0,
0x1f, 0xfc, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xf0,
0x1, 0xff, 0xc0, 0x7, 0xff, 0x80, 0xf, 0xff,
0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0xff,
0xf0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x80, 0xf,
0xff, 0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xf8, 0x0,
0xff, 0xf0, 0x3, 0xff, 0xe0, 0x7, 0xff, 0xc0,
0xf, 0xff, 0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xfc,
0x0, 0xff, 0xf8, 0x3, 0xff, 0xe0, 0x7, 0xff,
0xc0, 0xf, 0xff, 0x0, 0x3f, 0xfe, 0x0, 0x7f,
0xf8, 0x1, 0xff, 0xf0, 0x7, 0xff, 0xc0, 0xf,
0xff, 0x0, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x1,
0xff, 0xe0, 0x7, 0xff, 0x80, 0x1f, 0xff, 0x0,
0x3f, 0xfc, 0x0, 0xff, 0xf0, 0x3, 0xff, 0xc0,
0x7, 0xff, 0x80, 0x1f, 0xfe, 0x0, 0x7f, 0xf8,
0x0, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0xf, 0xff,
0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0xff,
0xe0, 0x3, 0xff, 0x80, 0xf, 0xff, 0x0, 0x1f,
0xfc, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x3,
0xff, 0x80, 0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0,
0x7f, 0xf0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x0,
0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0xff, 0xe0,
0x1, 0xff, 0x80, 0x7, 0xff, 0x0, 0x1f, 0xfc,
0x0, 0x3f, 0xf0, 0x0, 0xff, 0xc0, 0x3, 0xff,
0x80, 0x7, 0xfe, 0x0, 0x1f, 0xf8, 0x0, 0x7f,
0xf0, 0x0, 0xff, 0xc0, 0x3, 0xff, 0x0, 0x7,
0xfe, 0x0, 0x1f, 0xf8, 0x0, 0x7f, 0xe0, 0x0,
0xff, 0x80, 0x3, 0xff, 0x0, 0xf, 0xfc, 0x0,
0x1f, 0xf0, 0x0, 0x7f, 0xc0, 0x1, 0xff, 0x80,
0x3, 0xfe, 0x0, 0xf, 0xf8, 0x0, 0x0,
/* U+00BC "¼" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x3, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0xf, 0xfe,
0x3f, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xfc, 0xf, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xfc,
0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x0, 0x38, 0x0, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x8,
0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0,
0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x1,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0,
0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xfc, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0,
0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0,
0x0, 0xf, 0xfe, 0x1, 0xff, 0x0, 0x0, 0x0,
0x0, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x80,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x3f, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf0,
0xf, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x3, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xfe,
0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf0,
0x0, 0x0, 0x3, 0xff, 0x80, 0x7f, 0xe0, 0x0,
0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x7, 0xfe, 0x0,
0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x1f,
0xfc, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x3,
0xff, 0x80, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xff, 0x0, 0x0, 0x0, 0xff, 0xe0, 0xf, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0,
0x7f, 0xf8, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xf0, 0x0, 0x0, 0x1f, 0xfc, 0x1, 0xff,
0x80, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0,
0x7, 0xff, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0,
0x3, 0xff, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0,
0x0, 0xff, 0xe0, 0xf, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xf0, 0x0, 0x0, 0x3f, 0xf8, 0x3,
0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x3, 0xff, 0x0, 0x0, 0x7, 0xff, 0x0,
0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0,
0x0, 0x1, 0xff, 0xc0, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0xff, 0xe0,
0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc,
0x0, 0x0, 0x3f, 0xf8, 0x1, 0xff, 0x80, 0x0,
0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xc0, 0x0, 0x7, 0xff, 0x0, 0x3f, 0xf8, 0x1f,
0xf8, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x1, 0xff,
0xc0, 0xf, 0xfc, 0x7, 0xfe, 0x0, 0x0, 0xf,
0xfc, 0x0, 0x0, 0xff, 0xf0, 0x3, 0xff, 0x1,
0xff, 0x80, 0x0, 0x3, 0xff, 0x0, 0x0, 0x3f,
0xf8, 0x0, 0xff, 0xc0, 0x7f, 0xe0, 0x0, 0x0,
0xff, 0xc0, 0x0, 0xf, 0xfe, 0x0, 0x7f, 0xf0,
0x1f, 0xf8, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x7,
0xff, 0x0, 0x1f, 0xf8, 0x7, 0xfe, 0x0, 0x0,
0xf, 0xfc, 0x0, 0x1, 0xff, 0xc0, 0x7, 0xfe,
0x1, 0xff, 0x80, 0x7f, 0xff, 0xff, 0xff, 0xc0,
0x7f, 0xf0, 0x1, 0xff, 0x80, 0x7f, 0xe0, 0x1f,
0xff, 0xff, 0xff, 0xf0, 0x3f, 0xf8, 0x0, 0xff,
0xe0, 0x1f, 0xf8, 0x7, 0xff, 0xff, 0xff, 0xfc,
0xf, 0xfe, 0x0, 0x3f, 0xf8, 0x7, 0xfe, 0x1,
0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0x80, 0xf,
0xfc, 0x1, 0xff, 0x80, 0x7f, 0xff, 0xff, 0xff,
0xc1, 0xff, 0xc0, 0x3, 0xff, 0x0, 0x7f, 0xe0,
0x1f, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xf0, 0x1,
0xff, 0xc0, 0x1f, 0xf8, 0x7, 0xff, 0xff, 0xff,
0xfc, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x7, 0xfe,
0x1, 0xff, 0xff, 0xff, 0xff, 0xf, 0xfe, 0x0,
0x1f, 0xf8, 0x1, 0xff, 0x80, 0x7f, 0xff, 0xff,
0xff, 0xc3, 0xff, 0x80, 0x7, 0xfe, 0x0, 0x7f,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x3, 0xff, 0x80, 0x1f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0x0, 0xff, 0xe0, 0x7,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc,
0x0, 0x3f, 0xf0, 0x1, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x0, 0xf, 0xfc, 0x0,
0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xff, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x1f, 0xfc, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0x80, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0,
0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x1,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+00BD "½" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3,
0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff,
0x8f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0,
0x0, 0x0, 0x0, 0x7, 0xfc, 0x1f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xf, 0xc0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x1,
0xff, 0x80, 0x0, 0x0, 0x0, 0x1e, 0x0, 0x7f,
0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0,
0x0, 0x0, 0x20, 0x0, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0,
0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0,
0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc,
0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0,
0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0,
0x0, 0x0, 0xff, 0xc0, 0x3f, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0x80, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0x1, 0xff,
0x80, 0x0, 0x0, 0x7, 0xfe, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0,
0xf, 0xfc, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0,
0x7, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x3,
0xff, 0xff, 0xff, 0x80, 0x0, 0xf, 0xfc, 0x0,
0x0, 0x0, 0x7f, 0xe0, 0x7, 0xff, 0xff, 0xff,
0x80, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0xff,
0xc0, 0xf, 0xff, 0xff, 0xff, 0x80, 0x0, 0x3f,
0xf0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1f, 0xff,
0xff, 0xff, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0x7, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xfc, 0x0,
0x0, 0x0, 0x7f, 0xfe, 0x0, 0x1, 0xff, 0x80,
0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x7f,
0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7,
0xfe, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0xf, 0xfc, 0x0, 0x0,
0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xf0,
0x0, 0x1f, 0xf8, 0x0, 0x0, 0x7, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x3f, 0xf0,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xff, 0xc0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x3f,
0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0x3, 0xff, 0x0, 0x1, 0xff, 0x80, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xfe,
0x0, 0x3, 0xff, 0x0, 0x0, 0x3, 0xff, 0x0,
0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x7, 0xfe,
0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xf8, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0,
0x1f, 0xf8, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xe0, 0x0, 0x3f, 0xf0, 0x0,
0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xc0, 0x0, 0x7f, 0xe0, 0x0, 0x1, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0xff,
0xc0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0x0, 0x1, 0xff, 0x80, 0x0, 0xf,
0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0,
0x3, 0xff, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf8, 0x0, 0x7, 0xfe, 0x0,
0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xf0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x1f,
0xf8, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc7, 0xff, 0xff, 0xff, 0xfc, 0x3,
0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf,
0xff, 0xff, 0xff, 0xf8, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x1f, 0xff, 0xff, 0xff,
0xf0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xf8, 0x3f, 0xff, 0xff, 0xff, 0xe0, 0x3f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7f, 0xff,
0xff, 0xff, 0xc0, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0x81,
0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0x1,
0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xff, 0xff,
0xfe, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x7, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xf8,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0x80, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xc0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x7, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x3, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+00BE "¾" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x7f, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0x80, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x3, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe,
0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x0, 0x3, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80,
0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0,
0xf, 0xff, 0x0, 0xff, 0x80, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff,
0x0, 0x0, 0x3, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x3f, 0xf8, 0x7, 0xfe, 0x0, 0x0, 0x7, 0xff,
0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xfc,
0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x1,
0xff, 0xe0, 0x1f, 0xf0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0x0, 0x0, 0x3, 0xff, 0x80, 0x7f, 0xe0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0xf,
0xff, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x0, 0x0, 0x1f, 0xfc, 0x1, 0xff, 0x80,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f,
0xf8, 0x3, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff,
0xff, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x1, 0xff,
0xc0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x3, 0xff, 0x80, 0x3f, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0xf, 0xff,
0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x1f, 0xfc, 0x1, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x7f, 0xf8,
0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xf0, 0x0, 0xff, 0xf0, 0x7, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xe0, 0x1, 0xff, 0xc0,
0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xc0, 0x7, 0xff, 0x80, 0x3f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0x80, 0xf, 0xff, 0x0,
0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0x0, 0x1f, 0xfc, 0x0, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x0, 0x7f, 0xf8, 0x1,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc,
0x0, 0xff, 0xf0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf8, 0x1, 0xff, 0xc0, 0xf,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0,
0x7, 0xff, 0x80, 0x1f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xe0, 0xf, 0xff, 0x0, 0x3f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0,
0x1f, 0xfc, 0x0, 0xff, 0xe0, 0x7f, 0xe0, 0x0,
0x0, 0x1, 0xff, 0x80, 0x7f, 0xf8, 0x1, 0xff,
0x80, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0x0,
0xff, 0xe0, 0x3, 0xff, 0x1, 0xff, 0x80, 0x0,
0x0, 0xf, 0xfe, 0x1, 0xff, 0xc0, 0x7, 0xfe,
0x3, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x7,
0xff, 0x80, 0x1f, 0xfc, 0x7, 0xfe, 0x0, 0x0,
0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x3f, 0xf0,
0xf, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x3f,
0xfc, 0x0, 0x7f, 0xe0, 0x1f, 0xf8, 0xf, 0xff,
0xff, 0xff, 0xc0, 0x7f, 0xf8, 0x0, 0xff, 0xc0,
0x3f, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0xff,
0xe0, 0x3, 0xff, 0x80, 0x7f, 0xe0, 0x3f, 0xff,
0xff, 0xfe, 0x3, 0xff, 0xc0, 0x7, 0xfe, 0x0,
0xff, 0xc0, 0x7f, 0xff, 0xff, 0xf8, 0x7, 0xff,
0x80, 0xf, 0xfc, 0x1, 0xff, 0x80, 0xff, 0xff,
0xff, 0xf0, 0xf, 0xfe, 0x0, 0x1f, 0xf8, 0x3,
0xff, 0x1, 0xff, 0xff, 0xff, 0xc0, 0x3f, 0xfc,
0x0, 0x7f, 0xf0, 0x7, 0xfe, 0x3, 0xff, 0xff,
0xfe, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xe0, 0xf,
0xfc, 0x7, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xe0,
0x1, 0xff, 0x80, 0x1f, 0xf8, 0xf, 0xff, 0xfe,
0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0x0, 0x3f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0xf, 0xfe, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x1f, 0xfc, 0x0, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x3f, 0xf0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x7f, 0xe0, 0x3, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xf, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7f, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+00BF "¿" */
0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff,
0xf0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0,
0x3f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0,
0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xc0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0,
0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff,
0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x3,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfe,
0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x7,
0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0,
0x1, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xe0,
0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x3, 0xff,
0xf8, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0,
0xff, 0xff, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0,
0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xfe,
0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x3f,
0xff, 0x80, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0,
0x7, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff, 0x80,
0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff,
0xe0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0,
0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0,
0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x80,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0,
0x3, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xf0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x7f,
0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff,
0xc1, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff,
0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xf0, 0xf,
0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff,
0x0, 0x7, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff,
0xff, 0xf0,
/* U+00C0 "À" */
0x0, 0x3, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfc, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfc, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf8, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xe0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xe0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0,
0xf, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
/* U+00C1 "Á" */
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfc, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfc, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfc, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf8, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf8, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf0, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xe0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xe0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xe0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0x80, 0x3, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0x80, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xfe, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xfc, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1f, 0xf8, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x1f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xf0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x7f, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x7f, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xe0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0,
0xf, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
/* U+00C2 "Â" */
0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfe, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xfc, 0x7f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf8, 0x3f, 0xff, 0x0, 0x0,
0x0, 0x1, 0xff, 0xf8, 0x1f, 0xff, 0x80, 0x0,
0x0, 0x3, 0xff, 0xf0, 0xf, 0xff, 0xc0, 0x0,
0x0, 0x7, 0xff, 0xe0, 0x7, 0xff, 0xe0, 0x0,
0x0, 0xf, 0xff, 0xc0, 0x3, 0xff, 0xe0, 0x0,
0x0, 0x1f, 0xff, 0x80, 0x1, 0xff, 0xf0, 0x0,
0x0, 0x3f, 0xff, 0x0, 0x0, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfc, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfc, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf8, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xe0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xe0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0,
0xf, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
/* U+00C3 "Ã" */
0x0, 0x0, 0xf, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x1, 0x80, 0x0,
0x0, 0x1f, 0xff, 0xf8, 0x0, 0x1e, 0x0, 0x0,
0x1, 0xff, 0xff, 0xf8, 0x1, 0xf8, 0x0, 0x0,
0xf, 0xff, 0xff, 0xfc, 0x1f, 0xe0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f,
0xe0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xfc,
0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xc0,
0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0xc, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfd, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf3, 0xff, 0x80, 0x0, 0x0,
0x0, 0x1, 0xff, 0xcf, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x3f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xf8, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xe1, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x3, 0xff, 0x87, 0xff, 0x0, 0x0, 0x0, 0x0,
0xf, 0xfe, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xf0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xc1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f,
0xfc, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff,
0x80, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xfe,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xf8,
0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0,
0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80,
0x7f, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xfc, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x3,
0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xc0, 0xf,
0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x7, 0xff,
0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x1f, 0xfc,
0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x1, 0xff, 0xc0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x7, 0xff, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0xf, 0xfe, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x7f, 0xf0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x1,
0xff, 0xc0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0xff,
0xe0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x3, 0xff,
0x80, 0x0, 0xf, 0xff, 0x0, 0x0, 0xf, 0xfe,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff,
0x80, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x81, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x7, 0xff, 0xc3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf1, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xe7, 0xff, 0x80, 0x0,
0x0, 0x0, 0xf, 0xff, 0x9f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xfb, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xfc,
/* U+00C4 "Ä" */
0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xc0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0x80, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0xf, 0xfe, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xef, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0x9f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfe,
0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xe1,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc3,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0x87,
0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0xf,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x1f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x7f,
0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x7f,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x0, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x7, 0xfe, 0x1, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x3, 0xff,
0x80, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x7, 0xff,
0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0xf, 0xfe,
0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x1f, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x0, 0xff, 0xe0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0x80, 0x3, 0xff, 0x80,
0x0, 0x0, 0xf, 0xfe, 0x0, 0x7, 0xff, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x3, 0xff, 0x80, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x1, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x3f, 0xf8, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x7,
0xff, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf,
0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0x80,
0x0, 0x0, 0xf, 0xff, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x7f, 0xfc, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xe0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x3, 0xff, 0xe0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x7, 0xff, 0xc0, 0x7f, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x3f, 0xfe, 0xf, 0xff, 0x80, 0x0, 0x0,
0x0, 0x7f, 0xfc, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x1, 0xff, 0xf1, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xe3, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x7, 0xff, 0x8f, 0xff, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x9f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xfc,
/* U+00C5 "Å" */
0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xf8, 0x1f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xf0, 0xf, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xe0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xe0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xe0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xe0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xe0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xe0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xe0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xe0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xe0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf0, 0x7, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf0, 0xf, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xf, 0xf8, 0x1f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfc, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfc, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf8, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xf8, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xe0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xe0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0xf, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x1f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x3f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xe0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0,
0xf, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xe0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
/* U+00C6 "Æ" */
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xfe, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xbf, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfd,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xc7, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf1, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfc, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x7, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xc0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x7f, 0xf0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xf8, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff,
0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xff, 0xbf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xef, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0,
/* U+00C7 "Ç" */
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x7f,
0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff,
0x80, 0x1f, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff,
0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff,
0xc0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff,
0xe1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff,
0xc0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0x0,
0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0xf, 0xff,
0xe0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff,
0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f,
0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x0,
0xff, 0xff, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x7, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xfc,
0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0,
0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff,
0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x1f, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0,
0x0, 0xf, 0xff, 0xff, 0x80, 0x0, 0x1, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0,
0xf, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80,
0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0,
0x7, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xc0,
0x0, 0x3, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0,
0x0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3f,
0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0x0,
0x0, 0x0, 0xff, 0xff, 0x0, 0x0,
/* U+00C8 "È" */
0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0,
0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 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, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff,
0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff,
0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 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, 0xf0,
/* U+00C9 "É" */
0x0, 0x0, 0x0, 0xf, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x80,
0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 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, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff,
0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff,
0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 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, 0xf0,
/* U+00CA "Ê" */
0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x7, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff,
0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7f,
0xfc, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xe3, 0xff,
0xf0, 0x0, 0x1f, 0xff, 0x7, 0xff, 0xe0, 0x0,
0xff, 0xf8, 0xf, 0xff, 0xc0, 0x7, 0xff, 0xe0,
0x1f, 0xff, 0x80, 0x3f, 0xff, 0x0, 0x3f, 0xff,
0x1, 0xff, 0xf8, 0x0, 0x7f, 0xfe, 0xf, 0xff,
0xc0, 0x0, 0xff, 0xfc, 0x3f, 0xfe, 0x0, 0x1,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 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, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff,
0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff,
0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 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, 0xc0,
/* U+00CB "Ë" */
0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x7f, 0xf8,
0x0, 0x7, 0xff, 0x81, 0xff, 0xe0, 0x0, 0x1f,
0xfe, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x1f,
0xfe, 0x0, 0x1, 0xff, 0xe0, 0x7f, 0xf8, 0x0,
0x7, 0xff, 0x81, 0xff, 0xe0, 0x0, 0x1f, 0xfe,
0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x1f, 0xfe,
0x0, 0x1, 0xff, 0xe0, 0x7f, 0xf8, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 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, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 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, 0xf0,
/* U+00CC "Ì" */
0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0,
0xf, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xf8, 0x0,
0x0, 0x7f, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0x80,
0x0, 0x7, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xf8,
0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x1f, 0xff,
0x80, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0xff,
0xf8, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0xf,
0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xfb, 0xff,
0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xfe, 0xff,
0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xbf,
0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xef,
0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xfb,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x3, 0xff, 0xc0, 0x7, 0xff, 0xff,
0xff, 0xfb, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff,
0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff,
0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xdf, 0xff,
0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xf7, 0xff,
0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfc,
/* U+00CD "Í" */
0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x7f, 0xff,
0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x7f, 0xff,
0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x7f, 0xff,
0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x7f, 0xfe,
0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x3f, 0xfe,
0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x3f, 0xfe,
0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf7, 0xff,
0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xfd, 0xff,
0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0x7f,
0xff, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xdf,
0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xf7,
0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x7, 0xff, 0x80, 0xf, 0xff, 0xff,
0xff, 0xf7, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff,
0xff, 0xfd, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff,
0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xbf, 0xff,
0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xef, 0xff,
0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0xf8,
/* U+00CE "Î" */
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xe0, 0x0, 0x0, 0xf,
0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x7,
0xff, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xf9, 0xff,
0xf0, 0x0, 0x1f, 0xff, 0x1f, 0xff, 0x80, 0x3,
0xff, 0xf0, 0xff, 0xfc, 0x0, 0x7f, 0xfe, 0x7,
0xff, 0xe0, 0xf, 0xff, 0xc0, 0x3f, 0xff, 0x1,
0xff, 0xf8, 0x1, 0xff, 0xf8, 0x3f, 0xff, 0x0,
0xf, 0xff, 0xc7, 0xff, 0xe0, 0x0, 0x7f, 0xfe,
0xff, 0xfc, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xc0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x3,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xc0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0,
0x3, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xc0, 0x3, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xc0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0,
/* U+00CF "Ï" */
0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff,
0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf,
0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff,
0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff,
0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0,
0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff,
0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf,
0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff,
0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff,
0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0,
0xf, 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff,
0xff, 0xf0,
/* U+00D0 "Ð" */
0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x7f, 0xff, 0xc0, 0x7, 0xff, 0x80, 0x0, 0x0,
0xff, 0xfc, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x7,
0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x3f,
0xfe, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf0,
0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7,
0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff,
0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80,
0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0,
0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0,
0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf,
0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7,
0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff,
0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80,
0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0xf, 0xff, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff,
0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80,
0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0,
0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0,
0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf,
0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7,
0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff,
0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80,
0x0, 0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0,
0x0, 0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0,
0xf, 0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf,
0xff, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0xf, 0xff, 0xe0, 0x7, 0xff, 0x80,
0x0, 0x3, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0,
/* U+00D1 "Ñ" */
0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfe, 0x0, 0x0, 0x60, 0x0, 0x7, 0xff,
0xfc, 0x0, 0xf, 0x0, 0x1, 0xff, 0xff, 0xfc,
0x0, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x3f,
0xc0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0xf, 0xf8, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x7e, 0x0, 0x1f, 0xff, 0xfe,
0x0, 0x3, 0xc0, 0x0, 0x3f, 0xff, 0xc0, 0x0,
0x18, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xe0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x7, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1, 0xff,
0xff, 0xff, 0xff, 0x0, 0x0, 0xf, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0xf, 0xff, 0xff, 0xf7, 0xfe, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xbf, 0xf8, 0x0, 0x3,
0xff, 0xff, 0xfd, 0xff, 0xc0, 0x0, 0x1f, 0xff,
0xff, 0xef, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xff,
0x3f, 0xf0, 0x0, 0x7, 0xff, 0xff, 0xf9, 0xff,
0xc0, 0x0, 0x3f, 0xff, 0xff, 0xcf, 0xfe, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x7f, 0xf0, 0x0, 0xf,
0xff, 0xff, 0xf1, 0xff, 0x80, 0x0, 0x7f, 0xff,
0xff, 0x8f, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x7f, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xe3, 0xff,
0x80, 0x0, 0xff, 0xff, 0xff, 0xf, 0xfc, 0x0,
0x7, 0xff, 0xff, 0xf8, 0x7f, 0xf0, 0x0, 0x3f,
0xff, 0xff, 0xc3, 0xff, 0x80, 0x1, 0xff, 0xff,
0xfe, 0x1f, 0xfc, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x7f, 0xe0, 0x0, 0x7f, 0xff, 0xff, 0x83, 0xff,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x1f, 0xfc, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0xff, 0xe0, 0x0, 0xff,
0xff, 0xff, 0x7, 0xff, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x1f, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0xff, 0xe0, 0x1, 0xff, 0xff, 0xfe, 0x7, 0xff,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x3f, 0xf8, 0x0,
0x7f, 0xff, 0xff, 0x80, 0xff, 0xc0, 0x3, 0xff,
0xff, 0xfc, 0x7, 0xff, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x3f, 0xf8, 0x0, 0xff, 0xff, 0xff, 0x1,
0xff, 0xc0, 0x7, 0xff, 0xff, 0xf8, 0x7, 0xfe,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x3f, 0xf8, 0x1,
0xff, 0xff, 0xfe, 0x1, 0xff, 0xc0, 0xf, 0xff,
0xff, 0xf0, 0xf, 0xfe, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x3f, 0xf0, 0x3, 0xff, 0xff, 0xfc, 0x1,
0xff, 0x80, 0x1f, 0xff, 0xff, 0xe0, 0xf, 0xfe,
0x0, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xf0, 0x7,
0xff, 0xff, 0xf8, 0x3, 0xff, 0x80, 0x3f, 0xff,
0xff, 0xc0, 0xf, 0xfc, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x7f, 0xf0, 0xf, 0xff, 0xff, 0xf0, 0x3,
0xff, 0x80, 0x7f, 0xff, 0xff, 0x80, 0x1f, 0xfc,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xe0, 0x1f,
0xff, 0xff, 0xe0, 0x3, 0xff, 0x80, 0xff, 0xff,
0xff, 0x0, 0x1f, 0xfc, 0x7, 0xff, 0xff, 0xf8,
0x0, 0xff, 0xe0, 0x3f, 0xff, 0xff, 0xc0, 0x3,
0xff, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x1f, 0xfc,
0xf, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xe0, 0x7f,
0xff, 0xff, 0x80, 0x7, 0xff, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x1f, 0xf8, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0xff, 0xe0, 0xff, 0xff, 0xff, 0x0, 0x7,
0xff, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xf8,
0x3f, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xc1, 0xff,
0xff, 0xfe, 0x0, 0x7, 0xfe, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x3f, 0xf8, 0x7f, 0xff, 0xff, 0x80,
0x1, 0xff, 0xc3, 0xff, 0xff, 0xfc, 0x0, 0xf,
0xfe, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xf0,
0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xc7, 0xff,
0xff, 0xf8, 0x0, 0xf, 0xfe, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x7f, 0xf1, 0xff, 0xff, 0xfe, 0x0,
0x1, 0xff, 0x8f, 0xff, 0xff, 0xf0, 0x0, 0xf,
0xfe, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xf3,
0xff, 0xff, 0xfc, 0x0, 0x3, 0xff, 0x9f, 0xff,
0xff, 0xe0, 0x0, 0xf, 0xfc, 0xff, 0xff, 0xff,
0x0, 0x0, 0x7f, 0xf7, 0xff, 0xff, 0xf8, 0x0,
0x3, 0xff, 0xbf, 0xff, 0xff, 0xc0, 0x0, 0x1f,
0xfd, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xef,
0xff, 0xff, 0xf0, 0x0, 0x3, 0xff, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x7, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xe0, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80,
/* U+00D2 "Ò" */
0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff,
0xfc, 0x0, 0x7, 0xff, 0xfc, 0x1f, 0xff, 0xc0,
0x0, 0x1, 0xff, 0xfc, 0x3f, 0xff, 0x0, 0x0,
0x1, 0xff, 0xf8, 0x7f, 0xfc, 0x0, 0x0, 0x1,
0xff, 0xf1, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff,
0xf3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe7,
0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xdf, 0xfe,
0x0, 0x0, 0x0, 0x3, 0xff, 0xbf, 0xfc, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xcf, 0xff,
0x0, 0x0, 0x0, 0x7, 0xff, 0x9f, 0xfe, 0x0,
0x0, 0x0, 0xf, 0xff, 0x3f, 0xfe, 0x0, 0x0,
0x0, 0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0, 0x0,
0xff, 0xf8, 0x7f, 0xfe, 0x0, 0x0, 0x3, 0xff,
0xf0, 0xff, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xe0,
0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0x80, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff,
0xfe, 0x0, 0x0, 0x0,
/* U+00D3 "Ó" */
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff,
0xfc, 0x0, 0x7, 0xff, 0xfc, 0x1f, 0xff, 0xc0,
0x0, 0x1, 0xff, 0xfc, 0x3f, 0xff, 0x0, 0x0,
0x1, 0xff, 0xf8, 0x7f, 0xfc, 0x0, 0x0, 0x1,
0xff, 0xf1, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff,
0xf3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xe7,
0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xdf, 0xfe,
0x0, 0x0, 0x0, 0x3, 0xff, 0xbf, 0xfc, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xcf, 0xff,
0x0, 0x0, 0x0, 0x7, 0xff, 0x9f, 0xfe, 0x0,
0x0, 0x0, 0xf, 0xff, 0x3f, 0xfe, 0x0, 0x0,
0x0, 0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0, 0x0,
0xff, 0xf8, 0x7f, 0xfe, 0x0, 0x0, 0x3, 0xff,
0xf0, 0xff, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xe0,
0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0x80, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff,
0xfe, 0x0, 0x0, 0x0,
/* U+00D4 "Ô" */
0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x7, 0xff, 0xcf, 0xff, 0x80, 0x0, 0x0, 0x1f,
0xff, 0x8f, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xfe,
0xf, 0xff, 0x80, 0x0, 0x1, 0xff, 0xf8, 0x1f,
0xff, 0x80, 0x0, 0x7, 0xff, 0xe0, 0x1f, 0xff,
0x80, 0x0, 0x1f, 0xff, 0x80, 0x1f, 0xff, 0x80,
0x0, 0x3f, 0xfe, 0x0, 0x1f, 0xff, 0x80, 0x0,
0xff, 0xf8, 0x0, 0x1f, 0xff, 0x80, 0x3, 0xff,
0xe0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xf8,
0x0, 0xf, 0xff, 0xf8, 0x3f, 0xff, 0x80, 0x0,
0x3, 0xff, 0xf8, 0x7f, 0xfe, 0x0, 0x0, 0x3,
0xff, 0xf0, 0xff, 0xf8, 0x0, 0x0, 0x3, 0xff,
0xe3, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xe7,
0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xcf, 0xff,
0x0, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc, 0x0,
0x0, 0x0, 0x7, 0xff, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x3, 0xff, 0x9f, 0xfe, 0x0,
0x0, 0x0, 0xf, 0xff, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x7f, 0xfc, 0x0, 0x0, 0x0,
0x7f, 0xfc, 0x7f, 0xfc, 0x0, 0x0, 0x1, 0xff,
0xf0, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe1,
0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xc1, 0xff,
0xff, 0x0, 0x1, 0xff, 0xff, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfc,
0x0, 0x0, 0x0,
/* U+00D5 "Õ" */
0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0xc, 0x0, 0x0, 0x7f,
0xff, 0xe0, 0x0, 0x38, 0x0, 0x3, 0xff, 0xff,
0xf0, 0x1, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xfc,
0xf, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x1, 0xff,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xf0, 0x0,
0xff, 0xff, 0xf0, 0x0, 0x7, 0x80, 0x0, 0x7f,
0xff, 0x80, 0x0, 0xc, 0x0, 0x0, 0x1f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3,
0xff, 0xfe, 0x0, 0x3, 0xff, 0xfe, 0xf, 0xff,
0xe0, 0x0, 0x0, 0xff, 0xfe, 0x1f, 0xff, 0x80,
0x0, 0x0, 0xff, 0xfc, 0x3f, 0xfe, 0x0, 0x0,
0x0, 0xff, 0xf8, 0xff, 0xf8, 0x0, 0x0, 0x0,
0xff, 0xf9, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff,
0xf3, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xef,
0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xdf, 0xfe,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xe7,
0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xcf, 0xff,
0x0, 0x0, 0x0, 0x7, 0xff, 0x9f, 0xff, 0x0,
0x0, 0x0, 0x1f, 0xff, 0x1f, 0xff, 0x0, 0x0,
0x0, 0x7f, 0xfc, 0x3f, 0xff, 0x0, 0x0, 0x1,
0xff, 0xf8, 0x7f, 0xff, 0x0, 0x0, 0x7, 0xff,
0xf0, 0x7f, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xc0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0x0, 0x0, 0x0,
/* U+00D6 "Ö" */
0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x7, 0xff, 0x80,
0x0, 0x7f, 0xf8, 0x0, 0xf, 0xff, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0,
0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xff, 0x80, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x7f, 0xff, 0xc0, 0x0, 0x7f,
0xff, 0xc1, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff,
0xc3, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x87,
0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0x1f, 0xff,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x3f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x3f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x1f, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x7f, 0xf9, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff,
0xf3, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xe3,
0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x87, 0xff,
0xe0, 0x0, 0x0, 0x3f, 0xff, 0xf, 0xff, 0xe0,
0x0, 0x0, 0xff, 0xfe, 0xf, 0xff, 0xf8, 0x0,
0xf, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0,
/* U+00D7 "×" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0,
0x0, 0x0, 0x0, 0x60, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x78, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x7e,
0x0, 0xff, 0x0, 0x0, 0x0, 0x7f, 0x80, 0xff,
0xc0, 0x0, 0x0, 0x7f, 0xe0, 0xff, 0xf0, 0x0,
0x0, 0x7f, 0xf8, 0xff, 0xfc, 0x0, 0x0, 0x7f,
0xfe, 0x7f, 0xff, 0x0, 0x0, 0x7f, 0xff, 0x1f,
0xff, 0xc0, 0x0, 0x7f, 0xff, 0x7, 0xff, 0xf0,
0x0, 0x7f, 0xff, 0x1, 0xff, 0xfc, 0x0, 0x7f,
0xff, 0x0, 0x7f, 0xff, 0x0, 0x7f, 0xff, 0x0,
0x1f, 0xff, 0xc0, 0x7f, 0xff, 0x0, 0xf, 0xff,
0xf0, 0x7f, 0xff, 0x80, 0x3, 0xff, 0xfc, 0x7f,
0xff, 0x80, 0x0, 0xff, 0xff, 0x7f, 0xff, 0x80,
0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x0, 0xf,
0xff, 0xff, 0xff, 0x80, 0x0, 0x3, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0,
0xf, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff,
0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0x0, 0x0, 0x7f, 0xff, 0xbf, 0xff, 0xc0,
0x0, 0x7f, 0xff, 0x8f, 0xff, 0xf0, 0x0, 0x7f,
0xff, 0x83, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0x80,
0xff, 0xff, 0x0, 0x7f, 0xff, 0x80, 0x3f, 0xff,
0xc0, 0x7f, 0xff, 0x80, 0xf, 0xff, 0xf0, 0x7f,
0xff, 0x80, 0x3, 0xff, 0xfc, 0x7f, 0xff, 0x80,
0x0, 0xff, 0xff, 0x3f, 0xff, 0x80, 0x0, 0x3f,
0xff, 0x8f, 0xff, 0x80, 0x0, 0xf, 0xff, 0x83,
0xff, 0x0, 0x0, 0x1, 0xff, 0x80, 0xff, 0x0,
0x0, 0x0, 0x7f, 0x80, 0x3f, 0x0, 0x0, 0x0,
0x1f, 0x80, 0xf, 0x0, 0x0, 0x0, 0x7, 0x80,
0x3, 0x0, 0x0, 0x0, 0x1, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0,
/* U+00D8 "Ø" */
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x7, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x7, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff,
0xf8, 0x0, 0x3f, 0xff, 0xf8, 0x3f, 0xff, 0x80,
0x0, 0xff, 0xff, 0xf8, 0x7f, 0xfe, 0x0, 0x1,
0xff, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x3, 0xff,
0xff, 0xe3, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xff,
0xe7, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xcf,
0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x9f, 0xfc,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x7f, 0xf8, 0x0,
0x0, 0xff, 0xcf, 0xff, 0xff, 0xf0, 0x0, 0x3,
0xff, 0x9f, 0xff, 0xff, 0xe0, 0x0, 0x7, 0xff,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0xf, 0xfe, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x3f, 0xf8, 0xff, 0xff,
0xff, 0x0, 0x0, 0x7f, 0xf1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0xff, 0xe3, 0xff, 0xff, 0xfc, 0x0,
0x1, 0xff, 0x87, 0xff, 0xff, 0xf8, 0x0, 0x7,
0xff, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xfe,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x7f, 0xf0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0xff, 0xe0, 0xff, 0xff, 0xff,
0x0, 0x1, 0xff, 0xc1, 0xff, 0xff, 0xfe, 0x0,
0x3, 0xff, 0x83, 0xff, 0xff, 0xfc, 0x0, 0xf,
0xfe, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xfc,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xf8, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0xff, 0xe0, 0x3f, 0xff,
0xff, 0xc0, 0x1, 0xff, 0xc0, 0x7f, 0xff, 0xff,
0x80, 0x3, 0xff, 0x80, 0xff, 0xff, 0xff, 0x0,
0x7, 0xff, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x1f,
0xfc, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xf8,
0x7, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xf0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0xff, 0xe0, 0x1f, 0xff,
0xff, 0xe0, 0x3, 0xff, 0x80, 0x3f, 0xff, 0xff,
0xc0, 0x7, 0xff, 0x0, 0x7f, 0xff, 0xff, 0x80,
0xf, 0xfe, 0x0, 0xff, 0xff, 0xff, 0x0, 0x3f,
0xf8, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xf0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0xff, 0xe0, 0x7,
0xff, 0xff, 0xf8, 0x1, 0xff, 0xc0, 0xf, 0xff,
0xff, 0xf0, 0x7, 0xff, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0xf, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x1f, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x7f,
0xf8, 0x0, 0xff, 0xff, 0xff, 0x0, 0xff, 0xe0,
0x1, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xc0, 0x3,
0xff, 0xff, 0xfc, 0x3, 0xff, 0x80, 0x7, 0xff,
0xff, 0xf8, 0xf, 0xfe, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x1f, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x3f, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x7f,
0xf0, 0x0, 0x7f, 0xff, 0xff, 0x81, 0xff, 0xc0,
0x0, 0xff, 0xff, 0xff, 0x3, 0xff, 0x80, 0x1,
0xff, 0xff, 0xfe, 0x7, 0xff, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x1f, 0xfc, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x3f, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x7f, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0xff,
0xe0, 0x0, 0x3f, 0xff, 0xff, 0xc3, 0xff, 0x80,
0x0, 0x7f, 0xff, 0xff, 0x87, 0xff, 0x0, 0x0,
0xff, 0xff, 0xff, 0xf, 0xfe, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x7f, 0xf0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0xff, 0xe0, 0x0, 0xf, 0xff, 0xff, 0xf1, 0xff,
0xc0, 0x0, 0x1f, 0xff, 0xff, 0xe7, 0xff, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xcf, 0xfe, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x9f, 0xfc, 0x0, 0x0, 0xff,
0xff, 0xff, 0x3f, 0xf8, 0x0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x3, 0xff, 0x9f, 0xff,
0xff, 0xc0, 0x0, 0xf, 0xff, 0x3f, 0xff, 0xff,
0x80, 0x0, 0x1f, 0xfe, 0x7f, 0xff, 0xff, 0x0,
0x0, 0x7f, 0xfc, 0xff, 0xff, 0xfc, 0x0, 0x1,
0xff, 0xf0, 0xff, 0xff, 0xf8, 0x0, 0x7, 0xff,
0xe1, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xc1,
0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x7, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0,
/* U+00D9 "Ù" */
0x3, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xe7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x7f,
0xf8, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0xc0,
0x0, 0x0, 0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0,
0x7, 0xff, 0xc3, 0xff, 0xf0, 0x0, 0x0, 0xff,
0xfc, 0x3f, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xc1,
0xff, 0xff, 0x0, 0xf, 0xff, 0xf8, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0,
/* U+00DA "Ú" */
0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0,
0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xe7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x7f,
0xf8, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0xc0,
0x0, 0x0, 0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0,
0x7, 0xff, 0xc3, 0xff, 0xf0, 0x0, 0x0, 0xff,
0xfc, 0x3f, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xc1,
0xff, 0xff, 0x0, 0xf, 0xff, 0xf8, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0,
/* U+00DB "Û" */
0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xbf,
0xff, 0x0, 0x0, 0x1, 0xff, 0xf1, 0xff, 0xf8,
0x0, 0x0, 0x3f, 0xfe, 0xf, 0xff, 0xc0, 0x0,
0x7, 0xff, 0xc0, 0x7f, 0xfc, 0x0, 0x0, 0xff,
0xfc, 0x3, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0x80,
0x1f, 0xff, 0x0, 0x3, 0xff, 0xf0, 0x0, 0xff,
0xf8, 0x0, 0x3f, 0xfe, 0x0, 0x7, 0xff, 0xc0,
0x7, 0xff, 0xc0, 0x0, 0x3f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x7f,
0xf8, 0x0, 0x0, 0x1, 0xff, 0xe7, 0xff, 0x80,
0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xfc, 0x0, 0x0,
0x3, 0xff, 0xe3, 0xff, 0xe0, 0x0, 0x0, 0x7f,
0xfc, 0x3f, 0xff, 0x0, 0x0, 0xf, 0xff, 0xc3,
0xff, 0xf8, 0x0, 0x1, 0xff, 0xfc, 0x1f, 0xff,
0xf0, 0x0, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x3, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0x80, 0x0, 0x0,
/* U+00DC "Ü" */
0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x1f,
0xfe, 0x0, 0x1, 0xff, 0xe0, 0x1, 0xff, 0xe0,
0x0, 0x1f, 0xfe, 0x0, 0x1f, 0xfe, 0x0, 0x1,
0xff, 0xe0, 0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfe,
0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x1,
0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x1f, 0xfe,
0x0, 0x1, 0xff, 0xe0, 0x1, 0xff, 0xe0, 0x0,
0x1f, 0xfe, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xe7, 0xff,
0x80, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8, 0x0,
0x0, 0x1, 0xff, 0xe7, 0xff, 0xc0, 0x0, 0x0,
0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff,
0xc3, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xfc, 0x3f,
0xff, 0x80, 0x0, 0x1f, 0xff, 0xc1, 0xff, 0xff,
0x0, 0xf, 0xff, 0xf8, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff,
0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x3, 0xff, 0xf8, 0x0, 0x0,
/* U+00DD "Ý" */
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfd, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xf7, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x8f, 0xff, 0x80, 0x0, 0x0, 0x0,
0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7,
0xff, 0xc1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff,
0xf8, 0xf, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x1, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x3, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0x0,
0xf, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x1f, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x7f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3,
0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7,
0xff, 0xc0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x1f,
0xff, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x3f,
0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xff,
0xf8, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7, 0xff,
0xc0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfe,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xf0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x80,
0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x3,
0xff, 0x80, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x7f,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x83, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0xf, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf1, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xe7, 0xff, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0,
/* U+00DE "Þ" */
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xff, 0x8f, 0xff, 0x0, 0x0, 0x1f,
0xff, 0xe7, 0xff, 0x80, 0x0, 0x3, 0xff, 0xf3,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfd, 0xff, 0xe0,
0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0x7, 0xff,
0xbf, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x3f, 0xfd, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xfe,
0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0x7f, 0xf8,
0x0, 0x0, 0x1f, 0xff, 0xbf, 0xfc, 0x0, 0x0,
0x1f, 0xff, 0x9f, 0xfe, 0x0, 0x0, 0x3f, 0xff,
0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xff,
0x80, 0xf, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+00DF "ß" */
0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff,
0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0xf, 0xff, 0xe0, 0x0, 0xff, 0xff,
0x0, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xf8, 0x7,
0xff, 0xc0, 0x0, 0x7, 0xff, 0xe0, 0x3f, 0xfc,
0x0, 0x0, 0x1f, 0xff, 0x3, 0xff, 0xe0, 0x0,
0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x3,
0xff, 0xc0, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0x7, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xf8, 0x3f,
0xfc, 0x0, 0x0, 0x3, 0xff, 0xc1, 0xff, 0xe0,
0x0, 0x0, 0x1f, 0xfe, 0xf, 0xff, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x7f, 0xf8, 0x0, 0x0, 0x7,
0xff, 0x83, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xfc,
0x1f, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xff,
0xf0, 0x0, 0x0, 0xf, 0xff, 0x7, 0xff, 0x80,
0x0, 0x0, 0x7f, 0xf8, 0x3f, 0xfc, 0x0, 0x0,
0x3, 0xff, 0xc1, 0xff, 0xe0, 0x0, 0x0, 0x1f,
0xfe, 0xf, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x7f, 0xf8, 0x0, 0x0, 0x7, 0xff, 0x83, 0xff,
0xc0, 0x0, 0x0, 0x3f, 0xfc, 0x1f, 0xfe, 0x0,
0x0, 0x7f, 0xff, 0xe0, 0xff, 0xf0, 0x0, 0x3f,
0xff, 0xff, 0x7, 0xff, 0x80, 0x7, 0xff, 0xff,
0xf8, 0x3f, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xc1,
0xff, 0xe0, 0x7, 0xff, 0xff, 0xfe, 0xf, 0xff,
0x0, 0x7f, 0xff, 0xff, 0xf0, 0x7f, 0xf8, 0x7,
0xff, 0xff, 0xff, 0x83, 0xff, 0xc0, 0x3f, 0xff,
0xff, 0xfc, 0x1f, 0xfe, 0x3, 0xff, 0xff, 0xff,
0xe0, 0xff, 0xf0, 0x1f, 0xff, 0xc0, 0x0, 0x7,
0xff, 0x80, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfc,
0xf, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x7f,
0xf8, 0x0, 0x0, 0xf, 0xff, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0,
0x3, 0xff, 0xc0, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xfe, 0x7, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf0,
0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x81, 0xff,
0xe0, 0x0, 0x0, 0x3f, 0xfc, 0xf, 0xff, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x7f, 0xf8, 0x0, 0x0,
0xf, 0xff, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f,
0xf8, 0xf, 0xff, 0x80, 0x0, 0x3, 0xff, 0xc0,
0x7f, 0xfe, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff,
0xff, 0xf0, 0x0, 0xff, 0xf0, 0xf, 0xff, 0xff,
0xf0, 0x7, 0xff, 0x80, 0x7f, 0xff, 0xff, 0xe0,
0x3f, 0xfc, 0x1, 0xff, 0xff, 0xff, 0x81, 0xff,
0xe0, 0x7, 0xff, 0xff, 0xff, 0xf, 0xff, 0x0,
0x1f, 0xff, 0xff, 0xf8, 0x7f, 0xf8, 0x0, 0x7f,
0xff, 0xff, 0xe3, 0xff, 0xc0, 0x1, 0xff, 0xff,
0xff, 0x9f, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xfc,
0xff, 0xf0, 0x0, 0x3, 0xff, 0xff, 0xf7, 0xff,
0x80, 0x0, 0x0, 0x1f, 0xff, 0xbf, 0xfc, 0x0,
0x0, 0x0, 0x7f, 0xfd, 0xff, 0xe0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x7f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff,
0xdf, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0xff,
0xf0, 0x1f, 0xff, 0xff, 0xff, 0xe7, 0xff, 0x80,
0xff, 0xff, 0xff, 0xff, 0x3f, 0xfc, 0x7, 0xff,
0xff, 0xff, 0xf1, 0xff, 0xe0, 0x3f, 0xff, 0xff,
0xff, 0x8f, 0xff, 0x1, 0xff, 0xff, 0xff, 0xf8,
0x7f, 0xf8, 0xf, 0xff, 0xff, 0xff, 0x83, 0xff,
0xc0, 0x7f, 0xff, 0xff, 0xf0, 0x1f, 0xfe, 0x3,
0xff, 0xff, 0xff, 0x0, 0xff, 0xf0, 0x1f, 0xff,
0xff, 0xe0, 0x7, 0xff, 0x80, 0xff, 0xff, 0xf0,
0x0, 0x0,
/* U+00E0 "à" */
0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xe0, 0x0,
0x7, 0xff, 0x80, 0x7f, 0xfe, 0x0, 0x0, 0x1f,
0xfe, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8,
0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x1f,
0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0,
0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff,
0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0,
0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff,
0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x80, 0x0,
0x3, 0xff, 0xe0, 0x1f, 0xfe, 0x0, 0x0, 0xf,
0xff, 0x80, 0x7f, 0xfc, 0x0, 0x0, 0x7f, 0xff,
0x1, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xff, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x3, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xfc, 0x7,
0xff, 0xff, 0xff, 0xe3, 0xff, 0xf0, 0x3, 0xff,
0xff, 0xff, 0x3, 0xff, 0xc0, 0x1, 0xff, 0xff,
0xe0, 0x3, 0xff,
/* U+00E1 "á" */
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xe0, 0x0,
0x7, 0xff, 0x80, 0x7f, 0xfe, 0x0, 0x0, 0x1f,
0xfe, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8,
0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x1f,
0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0,
0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff,
0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0,
0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff,
0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x80, 0x0,
0x3, 0xff, 0xe0, 0x1f, 0xfe, 0x0, 0x0, 0xf,
0xff, 0x80, 0x7f, 0xfc, 0x0, 0x0, 0x7f, 0xff,
0x1, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xff, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x3, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xfc, 0x7,
0xff, 0xff, 0xff, 0xe3, 0xff, 0xf0, 0x3, 0xff,
0xff, 0xff, 0x3, 0xff, 0xc0, 0x1, 0xff, 0xff,
0xe0, 0x3, 0xff,
/* U+00E2 "â" */
0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xfd,
0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xe3, 0xff,
0xe0, 0x0, 0x0, 0x1f, 0xff, 0x7, 0xff, 0xc0,
0x0, 0x0, 0xff, 0xf8, 0xf, 0xff, 0x80, 0x0,
0x7, 0xff, 0xe0, 0x1f, 0xff, 0x0, 0x0, 0x3f,
0xff, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0xff, 0xf8,
0x0, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xc0, 0x1,
0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x0, 0x3, 0xff,
0xe0, 0x1, 0xff, 0xf8, 0x0, 0x7, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, 0xe0, 0x0,
0x7, 0xff, 0x80, 0x7f, 0xfe, 0x0, 0x0, 0x1f,
0xfe, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x7f, 0xf8,
0x7, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x1f,
0xfe, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0,
0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff,
0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0,
0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff,
0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x80, 0x0,
0x3, 0xff, 0xe0, 0x1f, 0xfe, 0x0, 0x0, 0xf,
0xff, 0x80, 0x7f, 0xfc, 0x0, 0x0, 0x7f, 0xff,
0x1, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xff, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x3, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xfc, 0x7,
0xff, 0xff, 0xff, 0xe3, 0xff, 0xf0, 0x3, 0xff,
0xff, 0xff, 0x3, 0xff, 0xc0, 0x1, 0xff, 0xff,
0xe0, 0x3, 0xff,
/* U+00E3 "ã" */
0x0, 0x3, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xf8, 0x0, 0x0, 0x20, 0x0, 0x3, 0xff,
0xf8, 0x0, 0x3, 0x80, 0x0, 0x1f, 0xff, 0xf8,
0x0, 0x1e, 0x0, 0x1, 0xff, 0xff, 0xfc, 0x1,
0xf8, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x1f, 0xe0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xf8, 0x3f,
0xff, 0xff, 0xe0, 0x0, 0x3f, 0x80, 0x1f, 0xff,
0xff, 0x0, 0x0, 0xf8, 0x0, 0x1f, 0xff, 0xf8,
0x0, 0x3, 0x80, 0x0, 0x1f, 0xff, 0x80, 0x0,
0x8, 0x0, 0x0, 0x1f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x80, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x3, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff,
0xfe, 0x0, 0x0, 0x7f, 0xf8, 0x7, 0xff, 0xe0,
0x0, 0x1, 0xff, 0xe0, 0x1f, 0xff, 0x0, 0x0,
0x7, 0xff, 0x80, 0x7f, 0xf8, 0x0, 0x0, 0x1f,
0xfe, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8,
0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f,
0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0,
0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff,
0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0,
0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff,
0xf8, 0x0, 0x0, 0x3f, 0xfe, 0x1, 0xff, 0xe0,
0x0, 0x0, 0xff, 0xf8, 0x7, 0xff, 0xc0, 0x0,
0x7, 0xff, 0xf0, 0x1f, 0xff, 0xc0, 0x0, 0x3f,
0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xdf,
0xff, 0xc0, 0x7f, 0xff, 0xff, 0xfe, 0x3f, 0xff,
0x0, 0x3f, 0xff, 0xff, 0xf0, 0x3f, 0xfc, 0x0,
0x1f, 0xff, 0xff, 0x0, 0x3f, 0xf0,
/* U+00E4 "ä" */
0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x0, 0x1f,
0xfe, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x7f, 0xf8,
0x0, 0x7, 0xff, 0x80, 0x1, 0xff, 0xe0, 0x0,
0x1f, 0xfe, 0x0, 0x7, 0xff, 0x80, 0x0, 0x7f,
0xf8, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x1,
0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x7, 0xff,
0x80, 0x0, 0x7f, 0xf8, 0x0, 0x1f, 0xfe, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff,
0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
0x7f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, 0x80,
0x0, 0x1f, 0xfe, 0x1, 0xff, 0xf8, 0x0, 0x0,
0x7f, 0xf8, 0x7, 0xff, 0xc0, 0x0, 0x1, 0xff,
0xe0, 0x1f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0x80,
0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0,
0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8,
0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f,
0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff, 0xf0,
0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff,
0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfe, 0x0,
0x0, 0xf, 0xff, 0x80, 0x7f, 0xf8, 0x0, 0x0,
0x3f, 0xfe, 0x1, 0xff, 0xf0, 0x0, 0x1, 0xff,
0xfc, 0x7, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xfc,
0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfc, 0xf, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xf0,
0x1f, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xc0, 0xf,
0xff, 0xff, 0xf8, 0x1f, 0xff, 0x0, 0x3, 0xff,
0xff, 0x80, 0xf, 0xfc,
/* U+00E5 "å" */
0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x1, 0xff, 0x3, 0xfe, 0x0, 0x0, 0x0,
0xf, 0xf8, 0x7, 0xf8, 0x0, 0x0, 0x0, 0x3f,
0xe0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0xff, 0x0,
0x3f, 0xc0, 0x0, 0x0, 0x3, 0xfc, 0x0, 0xff,
0x0, 0x0, 0x0, 0xf, 0xf0, 0x3, 0xfc, 0x0,
0x0, 0x0, 0x3f, 0xc0, 0xf, 0xf0, 0x0, 0x0,
0x0, 0xff, 0x0, 0x3f, 0xc0, 0x0, 0x0, 0x3,
0xfc, 0x0, 0xff, 0x0, 0x0, 0x0, 0xf, 0xf0,
0x3, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xc0, 0xf,
0xf0, 0x0, 0x0, 0x0, 0xff, 0x0, 0x3f, 0xc0,
0x0, 0x0, 0x3, 0xfe, 0x0, 0xff, 0x0, 0x0,
0x0, 0x7, 0xf8, 0x7, 0xf8, 0x0, 0x0, 0x0,
0x1f, 0xf0, 0x3f, 0xe0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x1,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xff,
0xff, 0xff, 0x80, 0x0, 0x7f, 0xff, 0xff, 0xff,
0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xf8, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x80,
0x1, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xf,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xf,
0xff, 0xe0, 0x0, 0x7, 0xff, 0x80, 0x7f, 0xfe,
0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xf0, 0x0,
0x0, 0x7f, 0xf8, 0x7, 0xff, 0x80, 0x0, 0x1,
0xff, 0xe0, 0x1f, 0xfe, 0x0, 0x0, 0x7, 0xff,
0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0,
0x0, 0x7, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xf8, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0xff,
0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xf8, 0xf, 0xff, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x0, 0x7,
0xff, 0x80, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8, 0xf,
0xff, 0x80, 0x0, 0x3, 0xff, 0xe0, 0x1f, 0xfe,
0x0, 0x0, 0xf, 0xff, 0x80, 0x7f, 0xfc, 0x0,
0x0, 0x7f, 0xff, 0x1, 0xff, 0xfc, 0x0, 0x3,
0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xfd,
0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xe3, 0xff,
0xf0, 0x3, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xc0,
0x0, 0xff, 0xff, 0xe0, 0x7, 0xff,
/* U+00E6 "æ" */
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3f, 0xff,
0xe0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x0,
0xff, 0xff, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff,
0xff, 0x80, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf,
0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff,
0x80, 0x3, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff,
0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0xf, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0x0,
0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff,
0xff, 0x80, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0,
0x0, 0x1f, 0xff, 0xc0, 0x0, 0x3, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xf8,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xfc, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff,
0x80, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0,
0x1f, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x7, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0,
0x3, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf8, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x7f, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xff,
0xff, 0xf8, 0x1, 0xff, 0xff, 0xff, 0xff, 0xc7,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff,
0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0x80, 0x7,
0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xff, 0xf0,
0x0, 0x3, 0xff, 0xff, 0xfe, 0x0,
/* U+00E7 "ç" */
0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0xf, 0xff,
0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x7,
0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff,
0xe0, 0x7f, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff,
0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0xff, 0x1f,
0xff, 0xff, 0xff, 0xfe, 0x3f, 0xff, 0xff, 0xff,
0xfc, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xf8,
0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0xf,
0xff, 0x80, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xfc,
0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x1,
0xff, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff,
0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff,
0x3, 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff,
0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x1,
0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff,
0xe0, 0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x3f,
0xf0, 0x0, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0xff, 0xc0, 0x0, 0x0, 0x1, 0xff, 0xfc,
0x0, 0x0, 0x3, 0xff, 0xff, 0x0, 0x0, 0x7,
0xff, 0xff, 0x0, 0x0, 0xf, 0xff, 0xff, 0x0,
0x0, 0x1f, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff,
0xfe, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0, 0x0,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xf8,
0x0, 0x0, 0x0, 0x3f, 0xf0, 0x0, 0x0, 0x0,
0x7f, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xc0, 0x0,
0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff,
0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0xf, 0xff, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xff,
0xc0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x7f,
0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xf8, 0x0,
0x1, 0xff, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xff,
0x80, 0x0, 0x7, 0xff, 0xf8, 0x0,
/* U+00E8 "è" */
0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xfc, 0x0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0,
0xf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x3f, 0xff, 0x80, 0x7, 0xff,
0xf8, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xf1, 0xff,
0xf0, 0x0, 0x1, 0xff, 0xf3, 0xff, 0xc0, 0x0,
0x3, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x3, 0xff,
0xdf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 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, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80,
0x0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfe, 0x0,
/* U+00E9 "é" */
0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0,
0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xfe,
0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x1,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xfc, 0x0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0,
0xf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x3f, 0xff, 0x80, 0x7, 0xff,
0xf8, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xf1, 0xff,
0xf0, 0x0, 0x1, 0xff, 0xf3, 0xff, 0xc0, 0x0,
0x3, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x3, 0xff,
0xdf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 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, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80,
0x0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfe, 0x0,
/* U+00EA "ê" */
0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfe,
0x0, 0x0, 0x0, 0xf, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x7, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xfc,
0xff, 0xfc, 0x0, 0x1, 0xff, 0xf8, 0xff, 0xf8,
0x0, 0x7, 0xff, 0xe0, 0xff, 0xf8, 0x0, 0xf,
0xff, 0x80, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x1,
0xff, 0xf8, 0x0, 0xff, 0xf8, 0x1, 0xff, 0xf8,
0x3, 0xff, 0xf0, 0x1, 0xff, 0xf8, 0xf, 0xff,
0xc0, 0x1, 0xff, 0xf8, 0x1f, 0xff, 0x0, 0x1,
0xff, 0xf0, 0x7f, 0xfc, 0x0, 0x3, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xfc, 0x0, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x0,
0xf, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff,
0xfe, 0x3, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x3f, 0xff, 0x80, 0x7, 0xff,
0xf8, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xf1, 0xff,
0xf0, 0x0, 0x1, 0xff, 0xf3, 0xff, 0xc0, 0x0,
0x3, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x3, 0xff,
0xdf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xbf, 0xfc,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 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, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff,
0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf8,
0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80,
0x0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfe, 0x0,
/* U+00EB "ë" */
0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x1f, 0xfe,
0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x3,
0xff, 0xc0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80,
0xff, 0xf0, 0x0, 0xf, 0xff, 0x1, 0xff, 0xe0,
0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x3f,
0xfc, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0xf,
0xff, 0x0, 0x0, 0xff, 0xf0, 0x1f, 0xfe, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf8,
0x0, 0x7, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x7f, 0xff, 0x0, 0xf, 0xff, 0xf1,
0xff, 0xf8, 0x0, 0x7, 0xff, 0xe3, 0xff, 0xe0,
0x0, 0x3, 0xff, 0xe7, 0xff, 0x80, 0x0, 0x7,
0xff, 0xcf, 0xff, 0x0, 0x0, 0x7, 0xff, 0xbf,
0xfe, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf8, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 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, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x1, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xff,
0xf8, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x1, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff,
0x80, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff,
0xff, 0xfc, 0x0,
/* U+00EC "ì" */
0x7f, 0xfc, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x3,
0xff, 0xf0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0xf,
0xff, 0xc0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x3f,
0xff, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0xff,
0xf8, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x3, 0xff,
0xe0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0xf, 0xff,
0x80, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x1, 0xff, 0xe0, 0x0, 0x7, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0,
/* U+00ED "í" */
0x0, 0x1, 0xff, 0xfc, 0x0, 0xf, 0xff, 0xe0,
0x0, 0x7f, 0xff, 0x0, 0x3, 0xff, 0xf8, 0x0,
0xf, 0xff, 0xc0, 0x0, 0x7f, 0xfe, 0x0, 0x3,
0xff, 0xf0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x7f,
0xfc, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x1f, 0xff,
0x80, 0x0, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xe0,
0x0, 0x1f, 0xff, 0x0, 0x0, 0xff, 0xf8, 0x0,
0x7, 0xff, 0xc0, 0x0, 0x3f, 0xfe, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x3, 0xff, 0xc0, 0x0,
/* U+00EE "î" */
0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3f,
0xff, 0x80, 0x0, 0x0, 0x3, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xe0, 0x0, 0x0, 0xf,
0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xe0, 0x0, 0xf, 0xff, 0x9f, 0xff, 0x0, 0x1,
0xff, 0xf0, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0xf,
0xff, 0xc0, 0x7, 0xff, 0xe0, 0x7f, 0xfe, 0x0,
0x7f, 0xfc, 0x3, 0xff, 0xe0, 0xf, 0xff, 0x80,
0x1f, 0xff, 0x1, 0xff, 0xf0, 0x0, 0xff, 0xf8,
0x3f, 0xff, 0x0, 0xf, 0xff, 0xc7, 0xff, 0xe0,
0x0, 0x7f, 0xfe, 0xff, 0xfc, 0x0, 0x3, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
/* U+00EF "ï" */
0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0,
/* U+00F0 "ð" */
0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x1, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x1, 0xff, 0xff, 0xff,
0xfc, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x0,
0x1, 0xff, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff,
0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xe3,
0xff, 0xfc, 0x0, 0x1, 0xff, 0xe0, 0xff, 0xfc,
0x0, 0x1, 0xff, 0xc0, 0x7f, 0xfc, 0x0, 0x3,
0xff, 0xc0, 0x3f, 0xfe, 0x0, 0x3, 0xff, 0x80,
0x3f, 0xfe, 0x0, 0x7, 0xff, 0x80, 0x1f, 0xfe,
0x0, 0x7, 0xff, 0x0, 0x1f, 0xfe, 0x0, 0xf,
0xfe, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x7f, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff, 0xff,
0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xff, 0x3f, 0xff, 0xc0, 0x0, 0xf, 0xff,
0x3f, 0xff, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xfe,
0x0, 0x0, 0xf, 0xff, 0x7f, 0xfc, 0x0, 0x0,
0xf, 0xff, 0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff,
0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0x7f, 0xf0, 0x0, 0x0, 0xf, 0xfe,
0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xf8,
0x0, 0x0, 0x1f, 0xfe, 0x7f, 0xfc, 0x0, 0x0,
0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x0, 0x7f, 0xfc,
0x3f, 0xff, 0x0, 0x0, 0xff, 0xfc, 0x3f, 0xff,
0x80, 0x1, 0xff, 0xf8, 0x1f, 0xff, 0xe0, 0x7,
0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x7, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0,
/* U+00F1 "ñ" */
0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0x0, 0x0, 0x4, 0x0, 0x1f, 0xff, 0xe0,
0x0, 0x1c, 0x0, 0x3f, 0xff, 0xf8, 0x0, 0x7c,
0x0, 0xff, 0xff, 0xfe, 0x0, 0xfc, 0x1, 0xff,
0xff, 0xff, 0x83, 0xfc, 0x1, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xff, 0xfc,
0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1, 0xff,
0x7, 0xff, 0xff, 0xfc, 0x1, 0xfc, 0x0, 0xff,
0xff, 0xf8, 0x1, 0xf0, 0x0, 0x3f, 0xff, 0xf0,
0x1, 0xc0, 0x0, 0xf, 0xff, 0xc0, 0x1, 0x0,
0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xe0, 0x7f, 0xff, 0x0, 0x0, 0xff, 0xe3,
0xff, 0xff, 0xf0, 0x0, 0xff, 0xef, 0xff, 0xff,
0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x80, 0x3,
0xff, 0xfc, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xfc,
0xff, 0xfc, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8,
0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8, 0x0, 0x0,
0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff,
/* U+00F2 "ò" */
0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0x80, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xc0,
0x1, 0xff, 0xfe, 0x1f, 0xff, 0x80, 0x0, 0x3f,
0xff, 0x1f, 0xff, 0x80, 0x0, 0xf, 0xff, 0xcf,
0xff, 0x80, 0x0, 0x3, 0xff, 0xe7, 0xff, 0x80,
0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0,
0x7f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x0, 0xff,
0xf3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf9, 0xff,
0xf0, 0x0, 0x0, 0x7f, 0xfc, 0xff, 0xfc, 0x0,
0x0, 0x7f, 0xfe, 0x3f, 0xff, 0x0, 0x0, 0x7f,
0xfe, 0x1f, 0xff, 0xe0, 0x0, 0xff, 0xff, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80,
0xf, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xf, 0xff, 0xe0, 0x0, 0x0,
/* U+00F3 "ó" */
0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x1,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xc0,
0x1, 0xff, 0xfe, 0x1f, 0xff, 0x80, 0x0, 0x3f,
0xff, 0x1f, 0xff, 0x80, 0x0, 0xf, 0xff, 0xcf,
0xff, 0x80, 0x0, 0x3, 0xff, 0xe7, 0xff, 0x80,
0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0,
0x7f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x0, 0xff,
0xf3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf9, 0xff,
0xf0, 0x0, 0x0, 0x7f, 0xfc, 0xff, 0xfc, 0x0,
0x0, 0x7f, 0xfe, 0x3f, 0xff, 0x0, 0x0, 0x7f,
0xfe, 0x1f, 0xff, 0xe0, 0x0, 0xff, 0xff, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80,
0xf, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xf, 0xff, 0xe0, 0x0, 0x0,
/* U+00F4 "ô" */
0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xfc, 0x0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x0,
0xf, 0xff, 0x9f, 0xff, 0x0, 0x0, 0xf, 0xff,
0x8f, 0xff, 0x80, 0x0, 0xf, 0xff, 0x83, 0xff,
0xe0, 0x0, 0xf, 0xff, 0xc0, 0xff, 0xf8, 0x0,
0x7, 0xff, 0xc0, 0x3f, 0xfe, 0x0, 0x7, 0xff,
0xc0, 0x1f, 0xff, 0x80, 0x7, 0xff, 0xc0, 0x7,
0xff, 0xe0, 0x7, 0xff, 0xc0, 0x1, 0xff, 0xf0,
0x7, 0xff, 0xe0, 0x0, 0x7f, 0xfc, 0x3, 0xff,
0xe0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7f,
0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff,
0xff, 0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3f,
0xff, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xc0,
0x1, 0xff, 0xfe, 0x1f, 0xff, 0x80, 0x0, 0x3f,
0xff, 0x1f, 0xff, 0x80, 0x0, 0xf, 0xff, 0xcf,
0xff, 0x80, 0x0, 0x3, 0xff, 0xe7, 0xff, 0x80,
0x0, 0x0, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0,
0x7f, 0xfb, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x0, 0xff, 0xf7, 0xff, 0x80, 0x0, 0x0, 0xff,
0xf3, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf9, 0xff,
0xf0, 0x0, 0x0, 0x7f, 0xfc, 0xff, 0xfc, 0x0,
0x0, 0x7f, 0xfe, 0x3f, 0xff, 0x0, 0x0, 0x7f,
0xfe, 0x1f, 0xff, 0xe0, 0x0, 0xff, 0xff, 0x7,
0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff,
0xff, 0x80, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80,
0xf, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff,
0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, 0xff,
0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xf, 0xff, 0xe0, 0x0, 0x0,
/* U+00F5 "õ" */
0x0, 0x3, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xfe, 0x0, 0x0, 0x8, 0x0, 0x1f, 0xff, 0xe0,
0x0, 0x1c, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0x3e,
0x0, 0x3f, 0xff, 0xff, 0x80, 0x3f, 0x0, 0x3f,
0xff, 0xff, 0xf0, 0x7f, 0x80, 0x1f, 0xff, 0xff,
0xff, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, 0xff,
0xe0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3,
0xfe, 0xf, 0xff, 0xff, 0xf8, 0x1, 0xfc, 0x0,
0xff, 0xff, 0xf8, 0x0, 0xf8, 0x0, 0x1f, 0xff,
0xf8, 0x0, 0x70, 0x0, 0x3, 0xff, 0xf0, 0x0,
0x20, 0x0, 0x0, 0x7f, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0,
0x0, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1, 0xff,
0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x1, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1, 0xff,
0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff,
0xe0, 0xff, 0xff, 0x0, 0x7, 0xff, 0xf8, 0x7f,
0xfe, 0x0, 0x0, 0xff, 0xfc, 0x7f, 0xfe, 0x0,
0x0, 0x3f, 0xff, 0x3f, 0xfe, 0x0, 0x0, 0xf,
0xff, 0x9f, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xcf,
0xff, 0x0, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xdf, 0xfe,
0x0, 0x0, 0x3, 0xff, 0xcf, 0xff, 0x0, 0x0,
0x1, 0xff, 0xe7, 0xff, 0xc0, 0x0, 0x1, 0xff,
0xf3, 0xff, 0xf0, 0x0, 0x1, 0xff, 0xf8, 0xff,
0xfc, 0x0, 0x1, 0xff, 0xf8, 0x7f, 0xff, 0x80,
0x3, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xfc, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x3, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x7f,
0xff, 0xff, 0xfc, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0,
0x0,
/* U+00F6 "ö" */
0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x3, 0xff,
0xc0, 0x0, 0x3f, 0xfc, 0x1, 0xff, 0xe0, 0x0,
0x1f, 0xfe, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff,
0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x3f,
0xfc, 0x0, 0x3, 0xff, 0xc0, 0x1f, 0xfe, 0x0,
0x1, 0xff, 0xe0, 0xf, 0xff, 0x0, 0x0, 0xff,
0xf0, 0x7, 0xff, 0x80, 0x0, 0x7f, 0xf8, 0x3,
0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x80,
0x3f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3f, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x1f, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x1f, 0xff, 0xe0, 0x0, 0xff, 0xff,
0xf, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x8f, 0xff,
0xc0, 0x0, 0x7, 0xff, 0xe7, 0xff, 0xc0, 0x0,
0x1, 0xff, 0xf3, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xf9, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xfd, 0xff,
0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xfb,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xf9, 0xff, 0xe0,
0x0, 0x0, 0x3f, 0xfc, 0xff, 0xf8, 0x0, 0x0,
0x3f, 0xfe, 0x7f, 0xfe, 0x0, 0x0, 0x3f, 0xff,
0x1f, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xf, 0xff,
0xf0, 0x0, 0x7f, 0xff, 0x83, 0xff, 0xff, 0xff,
0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0xff,
0xc0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x0,
0xf, 0xff, 0xff, 0xff, 0x80, 0x0, 0x1, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0,
0x0, 0x0,
/* U+00F7 "÷" */
0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 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, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0,
0x0, 0x0,
/* U+00F8 "ø" */
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0x80, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x3, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xfe, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80,
0x0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff,
0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0x80,
0x7f, 0xff, 0xfc, 0x3f, 0xff, 0x0, 0x3f, 0xff,
0xfe, 0x3f, 0xff, 0x0, 0x1f, 0xff, 0xff, 0x9f,
0xff, 0x0, 0xf, 0xff, 0xff, 0xcf, 0xff, 0x0,
0xf, 0xff, 0xff, 0xe7, 0xff, 0x80, 0x7, 0xff,
0xff, 0xf7, 0xff, 0x80, 0x3, 0xff, 0x3f, 0xff,
0xff, 0xc0, 0x3, 0xff, 0x9f, 0xff, 0xff, 0xe0,
0x1, 0xff, 0xcf, 0xff, 0xff, 0xf0, 0x0, 0xff,
0xc7, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xe3, 0xff,
0xff, 0xfc, 0x0, 0x7f, 0xf1, 0xff, 0xff, 0xfe,
0x0, 0x3f, 0xf8, 0xff, 0xff, 0xff, 0x0, 0x1f,
0xf8, 0x7f, 0xff, 0xff, 0x80, 0x1f, 0xfc, 0x3f,
0xff, 0xff, 0xc0, 0xf, 0xfe, 0x1f, 0xff, 0xff,
0xe0, 0x7, 0xfe, 0xf, 0xff, 0xff, 0xf0, 0x3,
0xff, 0x7, 0xff, 0xff, 0xf8, 0x3, 0xff, 0x83,
0xff, 0xff, 0xfc, 0x1, 0xff, 0xc1, 0xff, 0xff,
0xfe, 0x0, 0xff, 0xc0, 0xff, 0xff, 0xff, 0x0,
0xff, 0xe0, 0x7f, 0xff, 0xff, 0x80, 0x7f, 0xf0,
0x3f, 0xff, 0xff, 0xc0, 0x3f, 0xf0, 0x1f, 0xff,
0xff, 0xe0, 0x3f, 0xf8, 0xf, 0xff, 0xff, 0xf0,
0x1f, 0xfc, 0x7, 0xff, 0xff, 0xf8, 0xf, 0xfe,
0x3, 0xff, 0xff, 0xfc, 0x7, 0xfe, 0x1, 0xff,
0xff, 0xfe, 0x7, 0xff, 0x0, 0xff, 0xff, 0xff,
0x3, 0xff, 0x80, 0x7f, 0xff, 0xff, 0x81, 0xff,
0x80, 0x3f, 0xff, 0xff, 0xc1, 0xff, 0xc0, 0x1f,
0xff, 0xff, 0xe0, 0xff, 0xe0, 0xf, 0xff, 0xff,
0xf0, 0x7f, 0xf0, 0x7, 0xff, 0xff, 0xf8, 0x3f,
0xf0, 0x3, 0xff, 0xff, 0xfc, 0x3f, 0xf8, 0x1,
0xff, 0xff, 0xfe, 0x1f, 0xfc, 0x0, 0xff, 0xff,
0xff, 0xf, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0x8f,
0xfe, 0x0, 0x3f, 0xff, 0xff, 0xc7, 0xff, 0x0,
0x1f, 0xff, 0xff, 0xe3, 0xff, 0x80, 0xf, 0xff,
0xff, 0xf1, 0xff, 0x80, 0x7, 0xff, 0xff, 0xf9,
0xff, 0xc0, 0x3, 0xff, 0xff, 0xfc, 0xff, 0xe0,
0x1, 0xff, 0xef, 0xff, 0x7f, 0xe0, 0x1, 0xff,
0xe7, 0xff, 0xff, 0xf0, 0x0, 0xff, 0xf3, 0xff,
0xff, 0xf8, 0x0, 0xff, 0xf9, 0xff, 0xff, 0xfc,
0x0, 0xff, 0xfc, 0x7f, 0xff, 0xfc, 0x0, 0xff,
0xfc, 0x3f, 0xff, 0xfe, 0x1, 0xff, 0xfe, 0xf,
0xff, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0x0, 0x1, 0xff, 0xff, 0xff,
0xff, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xfc, 0x0,
0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0x80, 0x0, 0x0, 0x0, 0x1, 0xff, 0x80,
0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe,
0x0, 0x0, 0x0, 0x0,
/* U+00F9 "ù" */
0x1, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x3, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0,
0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0xff, 0xf7, 0xff, 0x80,
0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x7,
0xff, 0xdf, 0xff, 0x0, 0x0, 0xf, 0xff, 0xbf,
0xfe, 0x0, 0x0, 0x3f, 0xff, 0x3f, 0xff, 0x0,
0x0, 0xff, 0xfe, 0x7f, 0xff, 0x80, 0xf, 0xff,
0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x7f, 0xff, 0xff, 0xdf, 0xfc,
0x0, 0x3f, 0xff, 0xfe, 0x3f, 0xf8, 0x0, 0x7,
0xff, 0xc0, 0x7f, 0xf0,
/* U+00FA "ú" */
0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0,
0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x0,
0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x80, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0xff, 0xf7, 0xff, 0x80,
0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x7,
0xff, 0xdf, 0xff, 0x0, 0x0, 0xf, 0xff, 0xbf,
0xfe, 0x0, 0x0, 0x3f, 0xff, 0x3f, 0xff, 0x0,
0x0, 0xff, 0xfe, 0x7f, 0xff, 0x80, 0xf, 0xff,
0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x7f, 0xff, 0xff, 0xdf, 0xfc,
0x0, 0x3f, 0xff, 0xfe, 0x3f, 0xf8, 0x0, 0x7,
0xff, 0xc0, 0x7f, 0xf0,
/* U+00FB "û" */
0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x1,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfc,
0x0, 0x0, 0x0, 0xf, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff,
0xff, 0xf8, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf8,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xfd,
0xff, 0xf8, 0x0, 0x1, 0xff, 0xf1, 0xff, 0xf8,
0x0, 0x7, 0xff, 0xc1, 0xff, 0xf0, 0x0, 0x1f,
0xff, 0x1, 0xff, 0xf0, 0x0, 0x7f, 0xfe, 0x1,
0xff, 0xf0, 0x1, 0xff, 0xf8, 0x3, 0xff, 0xf0,
0x3, 0xff, 0xe0, 0x3, 0xff, 0xf0, 0xf, 0xff,
0x80, 0x3, 0xff, 0xf0, 0x3f, 0xfe, 0x0, 0x3,
0xff, 0xe0, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff,
0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff,
0xff, 0x80, 0x0, 0x0, 0xff, 0xf7, 0xff, 0x80,
0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0, 0x7,
0xff, 0xdf, 0xff, 0x0, 0x0, 0xf, 0xff, 0xbf,
0xfe, 0x0, 0x0, 0x3f, 0xff, 0x3f, 0xff, 0x0,
0x0, 0xff, 0xfe, 0x7f, 0xff, 0x80, 0xf, 0xff,
0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff,
0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff,
0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0xff,
0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x7f, 0xff, 0xff, 0xdf, 0xfc,
0x0, 0x3f, 0xff, 0xfe, 0x3f, 0xf8, 0x0, 0x7,
0xff, 0xc0, 0x7f, 0xf0,
/* U+00FC "ü" */
0x1f, 0xfe, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc,
0x0, 0x3, 0xff, 0xc0, 0x7f, 0xf8, 0x0, 0x7,
0xff, 0x80, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x1,
0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x3, 0xff, 0xc0,
0x0, 0x3f, 0xfc, 0x7, 0xff, 0x80, 0x0, 0x7f,
0xf8, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x1f,
0xfe, 0x0, 0x1, 0xff, 0xe0, 0x3f, 0xfc, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff,
0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80,
0x0, 0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0,
0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff,
0xc0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0,
0x0, 0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc,
0x0, 0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff,
0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0,
0x7, 0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff,
0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x7,
0xff, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7f,
0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff,
0x0, 0x0, 0x1, 0xff, 0xef, 0xff, 0x0, 0x0,
0x3, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0xf, 0xff,
0xbf, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0x7f, 0xfc,
0x0, 0x0, 0x7f, 0xfe, 0x7f, 0xfe, 0x0, 0x1,
0xff, 0xfc, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xf9,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83,
0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, 0xff,
0xff, 0xff, 0xfe, 0x1, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0xff, 0xff, 0xff, 0xbf, 0xf8, 0x0,
0x7f, 0xff, 0xfc, 0x7f, 0xf0, 0x0, 0xf, 0xff,
0x80, 0xff, 0xe0,
/* U+00FD "ý" */
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x7f, 0xf9, 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff,
0xe3, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc3,
0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x87, 0xff,
0xc0, 0x0, 0x0, 0xf, 0xff, 0xf, 0xff, 0x80,
0x0, 0x0, 0x3f, 0xfc, 0xf, 0xff, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x3f, 0xfe, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x7f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80,
0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff,
0xf8, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xf0,
0x0, 0x0, 0x3f, 0xfc, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x7f, 0xf0, 0x3, 0xff, 0xc0, 0x0, 0x1,
0xff, 0xe0, 0x7, 0xff, 0xc0, 0x0, 0x3, 0xff,
0xc0, 0x7, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0,
0xf, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x1f,
0xff, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x7f, 0xf8, 0x0, 0x1,
0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff,
0x80, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3,
0xff, 0xe0, 0x0, 0x3f, 0xf8, 0x0, 0x3, 0xff,
0xc0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x80,
0x1, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x0, 0x3,
0xff, 0x80, 0x0, 0xf, 0xff, 0x0, 0x7, 0xff,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xf8, 0x0, 0x0,
0x3f, 0xf8, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xe0, 0x7,
0xff, 0x0, 0x0, 0x1, 0xff, 0xe0, 0xf, 0xfe,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x1f, 0xfc, 0x0,
0x0, 0x7, 0xff, 0x80, 0x3f, 0xf8, 0x0, 0x0,
0x7, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0, 0xf,
0xff, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe,
0x3, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xfc, 0x7,
0xff, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x1f, 0xfc,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x3f, 0xf8, 0x0,
0x0, 0x0, 0x7f, 0xf0, 0x7f, 0xf0, 0x0, 0x0,
0x0, 0xff, 0xe0, 0xff, 0xc0, 0x0, 0x0, 0x1,
0xff, 0xe3, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff,
0xc7, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0x8f,
0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0x9f, 0xf8,
0x0, 0x0, 0x0, 0x7, 0xff, 0x3f, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x1f, 0xfd, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0,
0x3, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x0,
0x0, 0x0, 0x0, 0x0,
/* U+00FE "þ" */
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x3f, 0xfe, 0x0, 0x0, 0xff, 0xf3,
0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff,
0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0x80, 0x3,
0xff, 0xfc, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xfc,
0xff, 0xfc, 0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf8,
0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf8, 0x0, 0x0,
0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x1f, 0xfe, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xfe,
0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0xff, 0xf0,
0x0, 0x0, 0x7f, 0xfe, 0xff, 0xf0, 0x0, 0x0,
0xff, 0xfc, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xfc,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0xff,
0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff,
0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0,
0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0,
/* U+00FF "ÿ" */
0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x1,
0xff, 0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x3f, 0xfc, 0x0, 0x7, 0xff, 0x80,
0x0, 0x7f, 0xf8, 0x0, 0xf, 0xff, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x1f, 0xfe, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0x80, 0x0,
0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x0, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xfc, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x3f, 0xfd, 0xff, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xf1, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff,
0xe3, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, 0xc7,
0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0x87, 0xff,
0x80, 0x0, 0x0, 0x1f, 0xfe, 0xf, 0xff, 0x80,
0x0, 0x0, 0x3f, 0xfc, 0x1f, 0xff, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x3f, 0xfc, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x7f, 0xfc, 0x0, 0x0, 0x7, 0xff, 0x80,
0x7f, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xf0,
0x0, 0x0, 0x3f, 0xf8, 0x3, 0xff, 0xe0, 0x0,
0x0, 0xff, 0xf0, 0x3, 0xff, 0xc0, 0x0, 0x1,
0xff, 0xe0, 0x7, 0xff, 0x80, 0x0, 0x3, 0xff,
0x80, 0xf, 0xff, 0x80, 0x0, 0x7, 0xff, 0x0,
0xf, 0xff, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xfe,
0x0, 0x0, 0x7f, 0xf0, 0x0, 0x3f, 0xfc, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x7f, 0xf8, 0x0, 0x3,
0xff, 0xc0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff,
0x80, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xfe, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x0, 0x3,
0xff, 0xc0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff,
0xc0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x80,
0x1, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x0, 0x3,
0xff, 0x80, 0x0, 0x1f, 0xfe, 0x0, 0xf, 0xff,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xf8, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x7f,
0xf0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xf0,
0x3, 0xff, 0x80, 0x0, 0x1, 0xff, 0xe0, 0x7,
0xff, 0x0, 0x0, 0x1, 0xff, 0xc0, 0xf, 0xfe,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x1f, 0xfc, 0x0,
0x0, 0x7, 0xff, 0x80, 0x7f, 0xf0, 0x0, 0x0,
0x7, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x0, 0xf,
0xfe, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xfe,
0x3, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfc, 0xf,
0xfe, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x1f, 0xfc,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x3f, 0xf8, 0x0,
0x0, 0x0, 0xff, 0xf0, 0x7f, 0xe0, 0x0, 0x0,
0x0, 0xff, 0xe1, 0xff, 0xc0, 0x0, 0x0, 0x1,
0xff, 0xc3, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff,
0xc7, 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0x8f,
0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0x3f, 0xf8,
0x0, 0x0, 0x0, 0xf, 0xff, 0x7f, 0xf0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x1f, 0xfd, 0xff, 0x80, 0x0, 0x0, 0x0,
0x3f, 0xfb, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0,
0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
0xe0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0,
0x1, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x3,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x0,
0x0, 0x0, 0x0, 0x0,
/* U+2013 "–" */
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, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0,
/* U+2014 "—" */
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, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xfc,
/* U+2018 "‘" */
0x1, 0xff, 0x80, 0xff, 0xc0, 0x7f, 0xe0, 0x7f,
0xf0, 0x3f, 0xf0, 0x1f, 0xf8, 0x1f, 0xfc, 0xf,
0xfe, 0x7, 0xff, 0x7, 0xff, 0x3, 0xff, 0x81,
0xff, 0xc1, 0xff, 0xe0, 0xff, 0xf0, 0xff, 0xf0,
0x7f, 0xf8, 0x3f, 0xfc, 0x3f, 0xfe, 0x1f, 0xff,
0xf, 0xff, 0xf, 0xff, 0x87, 0xff, 0xc3, 0xff,
0xe1, 0xff, 0xf0, 0xff, 0xf8, 0x7f, 0xfc, 0x3f,
0xfe, 0x1f, 0xff, 0xf, 0xff, 0x87, 0xff, 0xc3,
0xff, 0xe1, 0xff, 0xf0, 0xff, 0xf8, 0x7f, 0xfc,
0x0,
/* U+2019 "’" */
0xf, 0xff, 0x87, 0xff, 0xc3, 0xff, 0xe1, 0xff,
0xf0, 0xff, 0xf8, 0x7f, 0xfc, 0x3f, 0xfe, 0x1f,
0xff, 0xf, 0xff, 0x87, 0xff, 0xc3, 0xff, 0xe1,
0xff, 0xf0, 0xff, 0xf8, 0x7f, 0xfc, 0x3f, 0xfc,
0x3f, 0xfe, 0x1f, 0xff, 0xf, 0xff, 0x7, 0xff,
0x83, 0xff, 0xc3, 0xff, 0xc1, 0xff, 0xe0, 0xff,
0xe0, 0x7f, 0xf0, 0x3f, 0xf8, 0x3f, 0xf8, 0x1f,
0xfc, 0xf, 0xfe, 0x7, 0xfe, 0x3, 0xff, 0x3,
0xff, 0x81, 0xff, 0x80, 0xff, 0xc0, 0x7f, 0xe0,
0x0,
/* U+201C "“" */
0x1, 0xff, 0x80, 0x7, 0xfe, 0x3, 0xff, 0x0,
0xf, 0xfc, 0x7, 0xfe, 0x0, 0x1f, 0xf8, 0x1f,
0xfc, 0x0, 0x7f, 0xf0, 0x3f, 0xf8, 0x0, 0xff,
0xc0, 0x7f, 0xe0, 0x1, 0xff, 0x81, 0xff, 0xc0,
0x7, 0xff, 0x3, 0xff, 0x80, 0xf, 0xfe, 0x7,
0xff, 0x0, 0x1f, 0xfc, 0x1f, 0xfe, 0x0, 0x7f,
0xf0, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x7f, 0xf0,
0x1, 0xff, 0xc1, 0xff, 0xe0, 0x7, 0xff, 0x83,
0xff, 0xc0, 0xf, 0xff, 0xf, 0xff, 0x0, 0x3f,
0xfc, 0x1f, 0xfe, 0x0, 0x7f, 0xf8, 0x3f, 0xfc,
0x0, 0xff, 0xf0, 0xff, 0xf8, 0x3, 0xff, 0xe1,
0xff, 0xf0, 0x7, 0xff, 0xc3, 0xff, 0xc0, 0xf,
0xff, 0xf, 0xff, 0x80, 0x3f, 0xfe, 0x1f, 0xff,
0x0, 0x7f, 0xfc, 0x3f, 0xfe, 0x0, 0xff, 0xf8,
0x7f, 0xfc, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x3,
0xff, 0xe1, 0xff, 0xf0, 0x7, 0xff, 0xc3, 0xff,
0xe0, 0xf, 0xff, 0x87, 0xff, 0xc0, 0x1f, 0xff,
0xf, 0xff, 0x80, 0x3f, 0xfe, 0x1f, 0xff, 0x0,
0x7f, 0xfc, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x7f,
0xfc, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x3, 0xff,
0xe1, 0xff, 0xf0, 0x7, 0xff, 0xc0,
/* U+201D "”" */
0xf, 0xff, 0x80, 0x3f, 0xfe, 0x1f, 0xff, 0x0,
0x7f, 0xfc, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x7f,
0xfc, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x3, 0xff,
0xe1, 0xff, 0xf0, 0x7, 0xff, 0xc3, 0xff, 0xe0,
0xf, 0xff, 0x87, 0xff, 0xc0, 0x1f, 0xff, 0xf,
0xff, 0x80, 0x3f, 0xfe, 0x1f, 0xff, 0x0, 0x7f,
0xfc, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x7f, 0xfc,
0x1, 0xff, 0xf0, 0xff, 0xf8, 0x3, 0xff, 0xe1,
0xff, 0xf0, 0x7, 0xff, 0xc3, 0xff, 0xc0, 0xf,
0xff, 0xf, 0xff, 0x80, 0x3f, 0xfe, 0x1f, 0xff,
0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0, 0xff, 0xf0,
0x7f, 0xf8, 0x1, 0xff, 0xe0, 0xff, 0xf0, 0x3,
0xff, 0xc3, 0xff, 0xc0, 0xf, 0xff, 0x7, 0xff,
0x80, 0x1f, 0xfe, 0xf, 0xfe, 0x0, 0x3f, 0xf8,
0x1f, 0xfc, 0x0, 0x7f, 0xf0, 0x3f, 0xf8, 0x1,
0xff, 0xe0, 0xff, 0xe0, 0x3, 0xff, 0x81, 0xff,
0xc0, 0x7, 0xff, 0x3, 0xff, 0x80, 0xf, 0xfe,
0x7, 0xfe, 0x0, 0x1f, 0xf8, 0xf, 0xfc, 0x0,
0x7f, 0xf0, 0x3f, 0xf8, 0x0, 0xff, 0xe0, 0x7f,
0xe0, 0x1, 0xff, 0x80, 0xff, 0xc0, 0x3, 0xff,
0x1, 0xff, 0x80, 0x7, 0xfe, 0x0,
/* U+2022 "•" */
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, 0x80,
/* U+2026 "…" */
0xff, 0xfc, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x3,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x80,
0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff,
0xf8, 0x0, 0x3, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x1f, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff, 0xfc,
0x0, 0x1, 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff,
0xff, 0xc0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x3f,
0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xf8, 0x0,
0x3, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff,
0x80, 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x1,
0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x1f, 0xff, 0x80, 0x0, 0x3f, 0xff, 0xff,
0xfc, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x3, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x80, 0x0,
0x3f, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xf8,
0x0, 0x3, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x1f,
0xff, 0x80, 0x0, 0x3f, 0xff,
/* U+20AC "€" */
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x0, 0xf,
0xff, 0xff, 0xff, 0x80, 0x0, 0x7, 0xff, 0xff,
0xff, 0xf0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xfe,
0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff,
0xff, 0xff, 0xff, 0x0, 0x3, 0xff, 0xff, 0xff,
0xff, 0xe0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xfc,
0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff,
0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f,
0xff, 0xff, 0xff, 0xff, 0xfe, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff,
0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff,
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe,
0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff,
0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff,
0xff, 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf, 0xff,
0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff,
0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff,
0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf,
0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x3f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0,
0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0x80, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7,
0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xff,
0xff, 0xff, 0xf0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x1f, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xff,
0xfc,
/* U+2122 "™" */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x3f, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x1f,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff,
0xff, 0x0, 0x0, 0xff, 0xc0, 0x0, 0xff, 0xff,
0xc0, 0x1, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xe0,
0x0, 0x7f, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xc0,
0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xef, 0xf8, 0x0,
0x7f, 0xbf, 0xe0, 0x0, 0x1f, 0xf8, 0x0, 0x1f,
0xf7, 0xfc, 0x0, 0x7f, 0xdf, 0xf0, 0x0, 0xf,
0xfc, 0x0, 0xf, 0xfb, 0xfe, 0x0, 0x3f, 0xef,
0xf8, 0x0, 0x7, 0xfe, 0x0, 0x7, 0xfc, 0xff,
0x80, 0x1f, 0xe7, 0xfc, 0x0, 0x3, 0xff, 0x0,
0x3, 0xfe, 0x7f, 0xc0, 0xf, 0xf3, 0xfe, 0x0,
0x1, 0xff, 0x80, 0x1, 0xff, 0x3f, 0xe0, 0xf,
0xf9, 0xff, 0x0, 0x0, 0xff, 0xc0, 0x0, 0xff,
0x9f, 0xf8, 0x7, 0xfc, 0xff, 0x80, 0x0, 0x7f,
0xe0, 0x0, 0x7f, 0xc7, 0xfc, 0x3, 0xfc, 0x7f,
0xc0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xe3, 0xfe,
0x1, 0xfe, 0x3f, 0xe0, 0x0, 0x1f, 0xf8, 0x0,
0x1f, 0xf1, 0xff, 0x1, 0xff, 0x1f, 0xf0, 0x0,
0xf, 0xfc, 0x0, 0xf, 0xf8, 0x7f, 0xc0, 0xff,
0x8f, 0xf8, 0x0, 0x7, 0xfe, 0x0, 0x7, 0xfc,
0x3f, 0xe0, 0x7f, 0x87, 0xfc, 0x0, 0x3, 0xff,
0x0, 0x3, 0xfe, 0x1f, 0xf0, 0x3f, 0xc3, 0xfe,
0x0, 0x1, 0xff, 0x80, 0x1, 0xff, 0xf, 0xf8,
0x3f, 0xe1, 0xff, 0x0, 0x0, 0xff, 0xc0, 0x0,
0xff, 0x83, 0xfe, 0x1f, 0xe0, 0xff, 0x80, 0x0,
0x7f, 0xe0, 0x0, 0x7f, 0xc1, 0xff, 0xf, 0xf0,
0x7f, 0xc0, 0x0, 0x3f, 0xf0, 0x0, 0x3f, 0xe0,
0xff, 0x87, 0xf8, 0x3f, 0xe0, 0x0, 0x1f, 0xf8,
0x0, 0x1f, 0xf0, 0x3f, 0xc7, 0xfc, 0x1f, 0xf0,
0x0, 0xf, 0xfc, 0x0, 0xf, 0xf8, 0x1f, 0xf3,
0xfc, 0xf, 0xf8, 0x0, 0x7, 0xfe, 0x0, 0x7,
0xfc, 0xf, 0xf9, 0xfe, 0x7, 0xfc, 0x0, 0x3,
0xff, 0x0, 0x3, 0xfe, 0x7, 0xfc, 0xff, 0x3,
0xfe, 0x0, 0x1, 0xff, 0x80, 0x1, 0xff, 0x1,
0xfe, 0xff, 0x1, 0xff, 0x0, 0x0, 0xff, 0xc0,
0x0, 0xff, 0x80, 0xff, 0xff, 0x80, 0xff, 0x80,
0x0, 0x7f, 0xe0, 0x0, 0x7f, 0xc0, 0x7f, 0xff,
0xc0, 0x7f, 0xc0, 0x0, 0x3f, 0xf0, 0x0, 0x3f,
0xe0, 0x3f, 0xff, 0xe0, 0x3f, 0xe0, 0x0, 0x1f,
0xf8, 0x0, 0x1f, 0xf0, 0xf, 0xff, 0xe0, 0x1f,
0xf0, 0x0, 0xf, 0xfc, 0x0, 0xf, 0xf8, 0x7,
0xff, 0xf0, 0xf, 0xf8, 0x0, 0x7, 0xfe, 0x0,
0x7, 0xfc, 0x3, 0xff, 0xf8, 0x7, 0xfc, 0x0,
0x3, 0xff, 0x0, 0x3, 0xfe, 0x0, 0xff, 0xfc,
0x3, 0xfe, 0x0, 0x1, 0xff, 0x80, 0x1, 0xff,
0x0, 0x7f, 0xfc, 0x1, 0xff, 0x0, 0x0, 0xff,
0xc0, 0x0, 0xff, 0x80, 0x3f, 0xfe, 0x0, 0xff,
0x80, 0x0, 0x7f, 0xe0, 0x0, 0x7f, 0xc0, 0x1f,
0xff, 0x0, 0x7f, 0xc0, 0x0, 0x3f, 0xf0, 0x0,
0x3f, 0xe0, 0x7, 0xff, 0x0, 0x3f, 0xe0, 0x0,
0x1f, 0xf8, 0x0, 0x1f, 0xf0, 0x3, 0xff, 0x80,
0x1f, 0xf0, 0x0, 0xf, 0xfc, 0x0, 0xf, 0xf8,
0x1, 0xff, 0xc0, 0xf, 0xf8, 0x0, 0x7, 0xfe,
0x0, 0x7, 0xfc, 0x0, 0x7f, 0xe0, 0x7, 0xfc,
0x0, 0x3, 0xff, 0x0, 0x3, 0xfe, 0x0, 0x3f,
0xe0, 0x3, 0xfe, 0x0, 0x1, 0xff, 0x80, 0x1,
0xff, 0x0, 0x1f, 0xf0, 0x1, 0xff, 0x0, 0x0,
0xff, 0xc0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0,
0xff, 0x80, 0x0, 0x7f, 0xe0, 0x0, 0x7f, 0xc0,
0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0, 0x3f, 0xf0,
0x0, 0x3f, 0xe0, 0x0, 0x0, 0x0, 0x3f, 0xe0,
0x0, 0x1f, 0xf8, 0x0, 0x1f, 0xf0, 0x0, 0x0,
0x0, 0x1f, 0xf0, 0x0, 0xf, 0xfc, 0x0, 0xf,
0xf8, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x7,
0xfe, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0, 0x7,
0xfc, 0x0, 0x3, 0xff, 0x0, 0x3, 0xfe, 0x0,
0x0, 0x0, 0x3, 0xfe, 0x0, 0x1, 0xff, 0x80,
0x1, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff, 0x0,
0x0, 0xff, 0xc0, 0x0, 0xff, 0x80, 0x0, 0x0,
0x0, 0xff, 0x80, 0x0, 0x7f, 0xe0, 0x0, 0x7f,
0xc0, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0, 0x3f,
0xf0, 0x0, 0x3f, 0xe0, 0x0, 0x0, 0x0, 0x3f,
0xe0, 0x0, 0x1f, 0xf8, 0x0, 0x1f, 0xf0, 0x0,
0x0, 0x0, 0x1f, 0xf0, 0x0, 0xf, 0xfc, 0x0,
0xf, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0,
0x7, 0xfe, 0x0, 0x7, 0xfc, 0x0, 0x0, 0x0,
0x7, 0xfc, 0x0, 0x3, 0xff, 0x0, 0x3, 0xfe,
0x0, 0x0, 0x0, 0x3, 0xfe, 0x0, 0x1, 0xff,
0x80, 0x1, 0xff, 0x0, 0x0, 0x0, 0x1, 0xff,
0x0, 0x0, 0xff, 0xc0, 0x0, 0xff, 0x80, 0x0,
0x0, 0x0, 0xff, 0x80, 0x0, 0x7f, 0xe0, 0x0,
0x7f, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xc0, 0x0,
0x3f, 0xf0, 0x0, 0x3f, 0xe0, 0x0, 0x0, 0x0,
0x3f, 0xe0, 0x0, 0x1f, 0xf8, 0x0, 0x1f, 0xf0,
0x0, 0x0, 0x0, 0x1f, 0xf0, 0x0, 0xf, 0xfc,
0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xf8,
0x0, 0x7, 0xfe, 0x0, 0x7, 0xfc, 0x0, 0x0,
0x0, 0x7, 0xfc, 0x0, 0x3, 0xff, 0x0, 0x3,
0xfe, 0x0, 0x0, 0x0, 0x3, 0xfe,
/* U+2212 "−" */
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, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xc0,
/* U+2260 "≠" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xc0, 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,
0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xf8, 0x0, 0x0, 0x1, 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, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80,
0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0xf,
0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0,
/* U+2264 "≤" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0,
0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x1,
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xfc,
0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x80, 0x0,
0x0, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f,
0xff, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xff,
0xff, 0x80, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x1, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x7, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf8, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0x0,
0x0, 0x0, 0x1, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xe0, 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x1f, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0,
0x3f, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xff,
0xff, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff,
0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x1, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0,
0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3,
0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0x80,
0x0, 0x0, 0x0, 0xf, 0xff, 0xfc, 0x0, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x80, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 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, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc,
/* U+2265 "≥" */
0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x3,
0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xe0,
0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xc0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0,
0x1, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf,
0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff,
0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf8,
0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1,
0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3, 0xff,
0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfe,
0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0,
0x3f, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff,
0x80, 0x0, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0,
0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0,
0x0, 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x1f,
0xff, 0xc0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xfe,
0x0, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x0, 0x3f, 0xff, 0xff, 0x80, 0x0, 0x0,
0xf, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff,
0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xff,
0xff, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xc0,
0x0, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0,
0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xff,
0xff, 0xff, 0xc0, 0x0, 0x7, 0xff, 0xff, 0xff,
0xf0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xfe, 0x0,
0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x0, 0xf,
0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xff,
0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff,
0x80, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0,
0x0, 0x1, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f,
0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xfc,
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0,
0x0, 0x7, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0,
0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 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, 0xff,
0xff, 0xff, 0xff, 0xff, 0xfc
};
/*---------------------
* 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 = 582, .box_w = 1, .box_h = 1, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 1, .adv_w = 560, .box_w = 14, .box_h = 98, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 173, .adv_w = 806, .box_w = 35, .box_h = 34, .ofs_x = 8, .ofs_y = 64},
{.bitmap_index = 322, .adv_w = 1053, .box_w = 53, .box_h = 98, .ofs_x = 6, .ofs_y = 0},
{.bitmap_index = 972, .adv_w = 1053, .box_w = 46, .box_h = 125, .ofs_x = 10, .ofs_y = -16},
{.bitmap_index = 1691, .adv_w = 1917, .box_w = 95, .box_h = 98, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 2855, .adv_w = 1136, .box_w = 58, .box_h = 98, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 3566, .adv_w = 459, .box_w = 13, .box_h = 34, .ofs_x = 8, .ofs_y = 64},
{.bitmap_index = 3622, .adv_w = 717, .box_w = 28, .box_h = 132, .ofs_x = 8, .ofs_y = -17},
{.bitmap_index = 4084, .adv_w = 717, .box_w = 28, .box_h = 132, .ofs_x = 8, .ofs_y = -17},
{.bitmap_index = 4546, .adv_w = 1075, .box_w = 56, .box_h = 53, .ofs_x = 6, .ofs_y = 48},
{.bitmap_index = 4917, .adv_w = 1232, .box_w = 53, .box_h = 54, .ofs_x = 12, .ofs_y = 17},
{.bitmap_index = 5275, .adv_w = 515, .box_w = 20, .box_h = 33, .ofs_x = 3, .ofs_y = -20},
{.bitmap_index = 5358, .adv_w = 1109, .box_w = 46, .box_h = 10, .ofs_x = 12, .ofs_y = 39},
{.bitmap_index = 5416, .adv_w = 515, .box_w = 14, .box_h = 14, .ofs_x = 9, .ofs_y = 0},
{.bitmap_index = 5441, .adv_w = 728, .box_w = 44, .box_h = 129, .ofs_x = 1, .ofs_y = -15},
{.bitmap_index = 6151, .adv_w = 1053, .box_w = 48, .box_h = 98, .ofs_x = 9, .ofs_y = 0},
{.bitmap_index = 6739, .adv_w = 1053, .box_w = 45, .box_h = 98, .ofs_x = 11, .ofs_y = 0},
{.bitmap_index = 7291, .adv_w = 1053, .box_w = 45, .box_h = 98, .ofs_x = 9, .ofs_y = 0},
{.bitmap_index = 7843, .adv_w = 1053, .box_w = 40, .box_h = 98, .ofs_x = 11, .ofs_y = 0},
{.bitmap_index = 8333, .adv_w = 1053, .box_w = 50, .box_h = 98, .ofs_x = 9, .ofs_y = 0},
{.bitmap_index = 8946, .adv_w = 1053, .box_w = 41, .box_h = 98, .ofs_x = 11, .ofs_y = 0},
{.bitmap_index = 9449, .adv_w = 1053, .box_w = 48, .box_h = 98, .ofs_x = 9, .ofs_y = 0},
{.bitmap_index = 10037, .adv_w = 1053, .box_w = 43, .box_h = 98, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 10564, .adv_w = 1053, .box_w = 50, .box_h = 98, .ofs_x = 8, .ofs_y = 0},
{.bitmap_index = 11177, .adv_w = 1053, .box_w = 48, .box_h = 98, .ofs_x = 9, .ofs_y = 0},
{.bitmap_index = 11765, .adv_w = 515, .box_w = 14, .box_h = 70, .ofs_x = 9, .ofs_y = 0},
{.bitmap_index = 11888, .adv_w = 515, .box_w = 20, .box_h = 89, .ofs_x = 3, .ofs_y = -19},
{.bitmap_index = 12111, .adv_w = 1232, .box_w = 53, .box_h = 64, .ofs_x = 12, .ofs_y = 15},
{.bitmap_index = 12535, .adv_w = 1232, .box_w = 53, .box_h = 38, .ofs_x = 12, .ofs_y = 25},
{.bitmap_index = 12787, .adv_w = 1232, .box_w = 53, .box_h = 64, .ofs_x = 12, .ofs_y = 15},
{.bitmap_index = 13211, .adv_w = 735, .box_w = 38, .box_h = 98, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 13677, .adv_w = 1826, .box_w = 88, .box_h = 98, .ofs_x = 13, .ofs_y = 0},
{.bitmap_index = 14755, .adv_w = 1120, .box_w = 64, .box_h = 98, .ofs_x = 3, .ofs_y = 0},
{.bitmap_index = 15539, .adv_w = 1165, .box_w = 50, .box_h = 98, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 16152, .adv_w = 934, .box_w = 43, .box_h = 98, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 16679, .adv_w = 1178, .box_w = 51, .box_h = 98, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 17304, .adv_w = 1060, .box_w = 46, .box_h = 98, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 17868, .adv_w = 1026, .box_w = 46, .box_h = 98, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 18432, .adv_w = 1098, .box_w = 48, .box_h = 98, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 19020, .adv_w = 1232, .box_w = 53, .box_h = 98, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 19670, .adv_w = 710, .box_w = 32, .box_h = 98, .ofs_x = 6, .ofs_y = 0},
{.bitmap_index = 20062, .adv_w = 851, .box_w = 39, .box_h = 98, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 20540, .adv_w = 1102, .box_w = 53, .box_h = 98, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 21190, .adv_w = 918, .box_w = 44, .box_h = 98, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 21729, .adv_w = 1411, .box_w = 65, .box_h = 98, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 22526, .adv_w = 1225, .box_w = 53, .box_h = 98, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 23176, .adv_w = 1219, .box_w = 55, .box_h = 98, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 23850, .adv_w = 1100, .box_w = 49, .box_h = 98, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 24451, .adv_w = 1219, .box_w = 62, .box_h = 106, .ofs_x = 10, .ofs_y = -8},
{.bitmap_index = 25273, .adv_w = 1165, .box_w = 56, .box_h = 98, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 25959, .adv_w = 983, .box_w = 46, .box_h = 98, .ofs_x = 8, .ofs_y = 0},
{.bitmap_index = 26523, .adv_w = 952, .box_w = 55, .box_h = 98, .ofs_x = 2, .ofs_y = 0},
{.bitmap_index = 27197, .adv_w = 1198, .box_w = 52, .box_h = 98, .ofs_x = 11, .ofs_y = 0},
{.bitmap_index = 27834, .adv_w = 1060, .box_w = 56, .box_h = 98, .ofs_x = 5, .ofs_y = 0},
{.bitmap_index = 28520, .adv_w = 1319, .box_w = 66, .box_h = 98, .ofs_x = 9, .ofs_y = 0},
{.bitmap_index = 29329, .adv_w = 1111, .box_w = 60, .box_h = 98, .ofs_x = 5, .ofs_y = 0},
{.bitmap_index = 30064, .adv_w = 1100, .box_w = 62, .box_h = 98, .ofs_x = 3, .ofs_y = 0},
{.bitmap_index = 30824, .adv_w = 977, .box_w = 48, .box_h = 98, .ofs_x = 6, .ofs_y = 0},
{.bitmap_index = 31412, .adv_w = 728, .box_w = 27, .box_h = 131, .ofs_x = 12, .ofs_y = -17},
{.bitmap_index = 31855, .adv_w = 728, .box_w = 44, .box_h = 129, .ofs_x = 1, .ofs_y = -15},
{.bitmap_index = 32565, .adv_w = 728, .box_w = 27, .box_h = 131, .ofs_x = 6, .ofs_y = -17},
{.bitmap_index = 33008, .adv_w = 1091, .box_w = 56, .box_h = 48, .ofs_x = 6, .ofs_y = 59},
{.bitmap_index = 33344, .adv_w = 1142, .box_w = 71, .box_h = 10, .ofs_x = 1, .ofs_y = -24},
{.bitmap_index = 33433, .adv_w = 679, .box_w = 30, .box_h = 19, .ofs_x = 7, .ofs_y = 81},
{.bitmap_index = 33505, .adv_w = 1053, .box_w = 54, .box_h = 70, .ofs_x = 6, .ofs_y = 0},
{.bitmap_index = 33978, .adv_w = 1111, .box_w = 48, .box_h = 98, .ofs_x = 11, .ofs_y = 0},
{.bitmap_index = 34566, .adv_w = 894, .box_w = 39, .box_h = 70, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 34908, .adv_w = 1122, .box_w = 49, .box_h = 98, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 35509, .adv_w = 1044, .box_w = 47, .box_h = 70, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 35921, .adv_w = 685, .box_w = 40, .box_h = 98, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 36411, .adv_w = 1107, .box_w = 54, .box_h = 94, .ofs_x = 8, .ofs_y = -24},
{.bitmap_index = 37046, .adv_w = 1122, .box_w = 48, .box_h = 98, .ofs_x = 11, .ofs_y = 0},
{.bitmap_index = 37634, .adv_w = 549, .box_w = 13, .box_h = 98, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 37794, .adv_w = 549, .box_w = 30, .box_h = 122, .ofs_x = -6, .ofs_y = -24},
{.bitmap_index = 38252, .adv_w = 1039, .box_w = 49, .box_h = 98, .ofs_x = 11, .ofs_y = 0},
{.bitmap_index = 38853, .adv_w = 560, .box_w = 20, .box_h = 98, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 39098, .adv_w = 1613, .box_w = 79, .box_h = 70, .ofs_x = 11, .ofs_y = 0},
{.bitmap_index = 39790, .adv_w = 1122, .box_w = 48, .box_h = 70, .ofs_x = 11, .ofs_y = 0},
{.bitmap_index = 40210, .adv_w = 1104, .box_w = 49, .box_h = 70, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 40639, .adv_w = 1111, .box_w = 48, .box_h = 94, .ofs_x = 11, .ofs_y = -24},
{.bitmap_index = 41203, .adv_w = 1122, .box_w = 49, .box_h = 94, .ofs_x = 10, .ofs_y = -24},
{.bitmap_index = 41779, .adv_w = 746, .box_w = 33, .box_h = 70, .ofs_x = 11, .ofs_y = 0},
{.bitmap_index = 42068, .adv_w = 894, .box_w = 40, .box_h = 70, .ofs_x = 8, .ofs_y = 0},
{.bitmap_index = 42418, .adv_w = 697, .box_w = 37, .box_h = 87, .ofs_x = 3, .ofs_y = 0},
{.bitmap_index = 42821, .adv_w = 1095, .box_w = 47, .box_h = 70, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 43233, .adv_w = 1035, .box_w = 55, .box_h = 70, .ofs_x = 5, .ofs_y = 0},
{.bitmap_index = 43715, .adv_w = 1501, .box_w = 82, .box_h = 70, .ofs_x = 6, .ofs_y = 0},
{.bitmap_index = 44433, .adv_w = 1039, .box_w = 54, .box_h = 70, .ofs_x = 6, .ofs_y = 0},
{.bitmap_index = 44906, .adv_w = 1037, .box_w = 55, .box_h = 95, .ofs_x = 5, .ofs_y = -25},
{.bitmap_index = 45560, .adv_w = 903, .box_w = 43, .box_h = 70, .ofs_x = 6, .ofs_y = 0},
{.bitmap_index = 45937, .adv_w = 728, .box_w = 32, .box_h = 132, .ofs_x = 6, .ofs_y = -17},
{.bitmap_index = 46465, .adv_w = 650, .box_w = 11, .box_h = 129, .ofs_x = 15, .ofs_y = -15},
{.bitmap_index = 46643, .adv_w = 728, .box_w = 32, .box_h = 132, .ofs_x = 8, .ofs_y = -17},
{.bitmap_index = 47171, .adv_w = 1142, .box_w = 48, .box_h = 16, .ofs_x = 12, .ofs_y = 37},
{.bitmap_index = 47267, .adv_w = 582, .box_w = 1, .box_h = 1, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 47268, .adv_w = 560, .box_w = 14, .box_h = 98, .ofs_x = 10, .ofs_y = -28},
{.bitmap_index = 47440, .adv_w = 1053, .box_w = 39, .box_h = 100, .ofs_x = 14, .ofs_y = -16},
{.bitmap_index = 47928, .adv_w = 1053, .box_w = 50, .box_h = 98, .ofs_x = 9, .ofs_y = 0},
{.bitmap_index = 48541, .adv_w = 1277, .box_w = 69, .box_h = 71, .ofs_x = 5, .ofs_y = 7},
{.bitmap_index = 49154, .adv_w = 1053, .box_w = 60, .box_h = 98, .ofs_x = 3, .ofs_y = 0},
{.bitmap_index = 49889, .adv_w = 650, .box_w = 11, .box_h = 129, .ofs_x = 15, .ofs_y = -15},
{.bitmap_index = 50067, .adv_w = 1053, .box_w = 41, .box_h = 98, .ofs_x = 13, .ofs_y = 0},
{.bitmap_index = 50570, .adv_w = 795, .box_w = 40, .box_h = 10, .ofs_x = 5, .ofs_y = 83},
{.bitmap_index = 50620, .adv_w = 1792, .box_w = 83, .box_h = 98, .ofs_x = 15, .ofs_y = 0},
{.bitmap_index = 51637, .adv_w = 885, .box_w = 41, .box_h = 97, .ofs_x = 7, .ofs_y = 1},
{.bitmap_index = 52135, .adv_w = 1042, .box_w = 45, .box_h = 58, .ofs_x = 10, .ofs_y = 13},
{.bitmap_index = 52462, .adv_w = 1288, .box_w = 61, .box_h = 34, .ofs_x = 10, .ofs_y = 15},
{.bitmap_index = 52722, .adv_w = 1109, .box_w = 46, .box_h = 10, .ofs_x = 12, .ofs_y = 39},
{.bitmap_index = 52780, .adv_w = 1792, .box_w = 83, .box_h = 98, .ofs_x = 15, .ofs_y = 0},
{.bitmap_index = 53797, .adv_w = 728, .box_w = 36, .box_h = 10, .ofs_x = 5, .ofs_y = 85},
{.bitmap_index = 53842, .adv_w = 813, .box_w = 40, .box_h = 42, .ofs_x = 6, .ofs_y = 56},
{.bitmap_index = 54052, .adv_w = 1232, .box_w = 53, .box_h = 71, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 54523, .adv_w = 918, .box_w = 34, .box_h = 69, .ofs_x = 12, .ofs_y = 29},
{.bitmap_index = 54817, .adv_w = 918, .box_w = 31, .box_h = 69, .ofs_x = 13, .ofs_y = 29},
{.bitmap_index = 55085, .adv_w = 679, .box_w = 30, .box_h = 19, .ofs_x = 6, .ofs_y = 81},
{.bitmap_index = 55157, .adv_w = 1107, .box_w = 47, .box_h = 94, .ofs_x = 11, .ofs_y = -24},
{.bitmap_index = 55710, .adv_w = 1142, .box_w = 55, .box_h = 98, .ofs_x = 7, .ofs_y = 0},
{.bitmap_index = 56384, .adv_w = 515, .box_w = 14, .box_h = 14, .ofs_x = 9, .ofs_y = 36},
{.bitmap_index = 56409, .adv_w = 676, .box_w = 24, .box_h = 35, .ofs_x = 9, .ofs_y = -28},
{.bitmap_index = 56514, .adv_w = 918, .box_w = 34, .box_h = 69, .ofs_x = 13, .ofs_y = 29},
{.bitmap_index = 56808, .adv_w = 932, .box_w = 39, .box_h = 97, .ofs_x = 10, .ofs_y = 1},
{.bitmap_index = 57281, .adv_w = 1042, .box_w = 45, .box_h = 58, .ofs_x = 10, .ofs_y = 13},
{.bitmap_index = 57608, .adv_w = 1960, .box_w = 98, .box_h = 128, .ofs_x = 12, .ofs_y = -14},
{.bitmap_index = 59176, .adv_w = 1960, .box_w = 103, .box_h = 128, .ofs_x = 12, .ofs_y = -14},
{.bitmap_index = 60824, .adv_w = 1960, .box_w = 95, .box_h = 128, .ofs_x = 14, .ofs_y = -14},
{.bitmap_index = 62344, .adv_w = 806, .box_w = 38, .box_h = 98, .ofs_x = 6, .ofs_y = -28},
{.bitmap_index = 62810, .adv_w = 1120, .box_w = 64, .box_h = 118, .ofs_x = 3, .ofs_y = 0},
{.bitmap_index = 63754, .adv_w = 1120, .box_w = 64, .box_h = 118, .ofs_x = 3, .ofs_y = 0},
{.bitmap_index = 64698, .adv_w = 1120, .box_w = 64, .box_h = 119, .ofs_x = 3, .ofs_y = 0},
{.bitmap_index = 65650, .adv_w = 1120, .box_w = 62, .box_h = 117, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 66557, .adv_w = 1120, .box_w = 63, .box_h = 114, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 67455, .adv_w = 1120, .box_w = 64, .box_h = 119, .ofs_x = 3, .ofs_y = 0},
{.bitmap_index = 68407, .adv_w = 1676, .box_w = 93, .box_h = 98, .ofs_x = 4, .ofs_y = 0},
{.bitmap_index = 69547, .adv_w = 934, .box_w = 43, .box_h = 126, .ofs_x = 10, .ofs_y = -28},
{.bitmap_index = 70225, .adv_w = 1060, .box_w = 46, .box_h = 118, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 70904, .adv_w = 1060, .box_w = 46, .box_h = 118, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 71583, .adv_w = 1060, .box_w = 46, .box_h = 119, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 72268, .adv_w = 1060, .box_w = 46, .box_h = 114, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 72924, .adv_w = 710, .box_w = 33, .box_h = 118, .ofs_x = 5, .ofs_y = 0},
{.bitmap_index = 73411, .adv_w = 710, .box_w = 33, .box_h = 118, .ofs_x = 6, .ofs_y = 0},
{.bitmap_index = 73898, .adv_w = 710, .box_w = 44, .box_h = 119, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 74553, .adv_w = 710, .box_w = 40, .box_h = 114, .ofs_x = 2, .ofs_y = 0},
{.bitmap_index = 75123, .adv_w = 1189, .box_w = 60, .box_h = 98, .ofs_x = 3, .ofs_y = 0},
{.bitmap_index = 75858, .adv_w = 1225, .box_w = 53, .box_h = 117, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 76634, .adv_w = 1219, .box_w = 55, .box_h = 118, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 77446, .adv_w = 1219, .box_w = 55, .box_h = 118, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 78258, .adv_w = 1219, .box_w = 55, .box_h = 119, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 79077, .adv_w = 1219, .box_w = 55, .box_h = 117, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 79882, .adv_w = 1219, .box_w = 55, .box_h = 114, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 80666, .adv_w = 1232, .box_w = 49, .box_h = 49, .ofs_x = 14, .ofs_y = 19},
{.bitmap_index = 80967, .adv_w = 1219, .box_w = 55, .box_h = 124, .ofs_x = 10, .ofs_y = -13},
{.bitmap_index = 81820, .adv_w = 1198, .box_w = 52, .box_h = 118, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 82587, .adv_w = 1198, .box_w = 52, .box_h = 118, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 83354, .adv_w = 1198, .box_w = 52, .box_h = 119, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 84128, .adv_w = 1198, .box_w = 52, .box_h = 114, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 84869, .adv_w = 1100, .box_w = 62, .box_h = 118, .ofs_x = 3, .ofs_y = 0},
{.bitmap_index = 85784, .adv_w = 1145, .box_w = 49, .box_h = 98, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 86385, .adv_w = 1163, .box_w = 53, .box_h = 98, .ofs_x = 11, .ofs_y = 0},
{.bitmap_index = 87035, .adv_w = 1053, .box_w = 54, .box_h = 100, .ofs_x = 6, .ofs_y = 0},
{.bitmap_index = 87710, .adv_w = 1053, .box_w = 54, .box_h = 100, .ofs_x = 6, .ofs_y = 0},
{.bitmap_index = 88385, .adv_w = 1053, .box_w = 54, .box_h = 100, .ofs_x = 6, .ofs_y = 0},
{.bitmap_index = 89060, .adv_w = 1053, .box_w = 54, .box_h = 98, .ofs_x = 6, .ofs_y = 0},
{.bitmap_index = 89722, .adv_w = 1053, .box_w = 54, .box_h = 93, .ofs_x = 6, .ofs_y = 0},
{.bitmap_index = 90350, .adv_w = 1053, .box_w = 54, .box_h = 104, .ofs_x = 6, .ofs_y = 0},
{.bitmap_index = 91052, .adv_w = 1548, .box_w = 82, .box_h = 70, .ofs_x = 6, .ofs_y = 0},
{.bitmap_index = 91770, .adv_w = 894, .box_w = 39, .box_h = 98, .ofs_x = 10, .ofs_y = -28},
{.bitmap_index = 92248, .adv_w = 1044, .box_w = 47, .box_h = 100, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 92836, .adv_w = 1044, .box_w = 47, .box_h = 100, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 93424, .adv_w = 1044, .box_w = 47, .box_h = 100, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 94012, .adv_w = 1044, .box_w = 47, .box_h = 93, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 94559, .adv_w = 549, .box_w = 30, .box_h = 100, .ofs_x = -3, .ofs_y = 0},
{.bitmap_index = 94934, .adv_w = 549, .box_w = 30, .box_h = 100, .ofs_x = 7, .ofs_y = 0},
{.bitmap_index = 95309, .adv_w = 549, .box_w = 44, .box_h = 100, .ofs_x = -5, .ofs_y = 0},
{.bitmap_index = 95859, .adv_w = 549, .box_w = 40, .box_h = 93, .ofs_x = -3, .ofs_y = 0},
{.bitmap_index = 96324, .adv_w = 1127, .box_w = 48, .box_h = 105, .ofs_x = 11, .ofs_y = 0},
{.bitmap_index = 96954, .adv_w = 1122, .box_w = 48, .box_h = 98, .ofs_x = 11, .ofs_y = 0},
{.bitmap_index = 97542, .adv_w = 1104, .box_w = 49, .box_h = 100, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 98155, .adv_w = 1104, .box_w = 49, .box_h = 100, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 98768, .adv_w = 1104, .box_w = 49, .box_h = 100, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 99381, .adv_w = 1104, .box_w = 49, .box_h = 98, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 99982, .adv_w = 1104, .box_w = 49, .box_h = 93, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 100552, .adv_w = 1232, .box_w = 53, .box_h = 69, .ofs_x = 12, .ofs_y = 9},
{.bitmap_index = 101010, .adv_w = 1104, .box_w = 49, .box_h = 96, .ofs_x = 10, .ofs_y = -13},
{.bitmap_index = 101598, .adv_w = 1095, .box_w = 47, .box_h = 100, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 102186, .adv_w = 1095, .box_w = 47, .box_h = 100, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 102774, .adv_w = 1095, .box_w = 47, .box_h = 100, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 103362, .adv_w = 1095, .box_w = 47, .box_h = 93, .ofs_x = 10, .ofs_y = 0},
{.bitmap_index = 103909, .adv_w = 1037, .box_w = 55, .box_h = 125, .ofs_x = 5, .ofs_y = -25},
{.bitmap_index = 104769, .adv_w = 1129, .box_w = 48, .box_h = 122, .ofs_x = 11, .ofs_y = -24},
{.bitmap_index = 105501, .adv_w = 1037, .box_w = 55, .box_h = 118, .ofs_x = 5, .ofs_y = -25},
{.bitmap_index = 106313, .adv_w = 1232, .box_w = 53, .box_h = 10, .ofs_x = 12, .ofs_y = 39},
{.bitmap_index = 106380, .adv_w = 1355, .box_w = 67, .box_h = 10, .ofs_x = 9, .ofs_y = 39},
{.bitmap_index = 106464, .adv_w = 504, .box_w = 17, .box_h = 34, .ofs_x = 8, .ofs_y = 64},
{.bitmap_index = 106537, .adv_w = 504, .box_w = 17, .box_h = 34, .ofs_x = 6, .ofs_y = 64},
{.bitmap_index = 106610, .adv_w = 851, .box_w = 39, .box_h = 34, .ofs_x = 8, .ofs_y = 64},
{.bitmap_index = 106776, .adv_w = 851, .box_w = 39, .box_h = 34, .ofs_x = 6, .ofs_y = 64},
{.bitmap_index = 106942, .adv_w = 650, .box_w = 21, .box_h = 21, .ofs_x = 10, .ofs_y = 33},
{.bitmap_index = 106998, .adv_w = 1501, .box_w = 76, .box_h = 14, .ofs_x = 9, .ofs_y = 0},
{.bitmap_index = 107131, .adv_w = 1053, .box_w = 51, .box_h = 98, .ofs_x = 8, .ofs_y = 0},
{.bitmap_index = 107756, .adv_w = 1658, .box_w = 89, .box_h = 71, .ofs_x = 6, .ofs_y = 27},
{.bitmap_index = 108546, .adv_w = 1232, .box_w = 53, .box_h = 10, .ofs_x = 12, .ofs_y = 39},
{.bitmap_index = 108613, .adv_w = 1232, .box_w = 53, .box_h = 68, .ofs_x = 12, .ofs_y = 10},
{.bitmap_index = 109064, .adv_w = 1232, .box_w = 53, .box_h = 78, .ofs_x = 12, .ofs_y = 0},
{.bitmap_index = 109581, .adv_w = 1232, .box_w = 53, .box_h = 78, .ofs_x = 12, .ofs_y = 0}
};
/*---------------------
* CHARACTER MAPPING
*--------------------*/
static const uint16_t unicode_list_2[] = {
0x0, 0x1, 0x5, 0x6, 0x9, 0xa, 0xf, 0x13,
0x99, 0x10f, 0x1ff, 0x24d, 0x251, 0x252
};
/*Collect the unicode lists and glyph_id offsets*/
static const lv_font_fmt_txt_cmap_t cmaps[] =
{
{
.range_start = 32, .range_length = 95, .glyph_id_start = 1,
.unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY
},
{
.range_start = 160, .range_length = 96, .glyph_id_start = 96,
.unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY
},
{
.range_start = 8211, .range_length = 595, .glyph_id_start = 192,
.unicode_list = unicode_list_2, .glyph_id_ofs_list = NULL, .list_length = 14, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
}
};
/*-----------------
* KERNING
*----------------*/
/*Map glyph_ids to kern left classes*/
static const uint8_t kern_left_class_mapping[] =
{
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 1, 2, 3, 2,
0, 0, 4, 0, 0, 0, 0, 0,
5, 0, 0, 6, 6, 1, 1, 1,
0, 0, 7, 8, 9, 10, 0, 11,
0, 0, 0, 0, 12, 13, 0, 0,
10, 14, 10, 15, 16, 17, 0, 18,
19, 20, 21, 0, 0, 0, 0, 0,
0, 0, 22, 23, 24, 0, 23, 0,
25, 26, 0, 0, 27, 28, 26, 26,
23, 23, 26, 29, 30, 0, 26, 31,
32, 33, 31, 34, 0, 0, 0, 3,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 35, 3, 3, 0, 0,
0, 1, 0, 0, 0, 26, 0, 6,
0, 0, 0, 36, 0, 0, 0, 0,
7, 7, 7, 7, 7, 7, 0, 9,
0, 0, 0, 0, 0, 0, 0, 0,
10, 0, 10, 10, 10, 10, 10, 0,
10, 0, 0, 0, 0, 21, 10, 0,
37, 38, 39, 39, 39, 37, 23, 24,
37, 38, 39, 39, 0, 0, 0, 0,
0, 39, 37, 38, 39, 39, 39, 1,
26, 37, 38, 39, 39, 40, 23, 41,
3, 3, 0, 0, 0, 0, 6, 2,
0, 0, 3, 1, 1, 1
};
/*Map glyph_ids to kern right classes*/
static const uint8_t kern_right_class_mapping[] =
{
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 1, 2, 3, 2,
0, 0, 4, 5, 0, 0, 0, 0,
6, 0, 0, 7, 7, 1, 1, 1,
0, 0, 8, 0, 9, 0, 0, 0,
9, 0, 0, 10, 0, 0, 0, 0,
9, 0, 9, 0, 11, 12, 0, 13,
14, 15, 16, 17, 0, 0, 0, 0,
0, 0, 18, 0, 19, 19, 19, 0,
18, 0, 0, 0, 0, 0, 20, 20,
19, 20, 19, 20, 21, 0, 20, 22,
23, 24, 22, 25, 0, 0, 0, 3,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 26, 3, 3, 0, 0,
0, 1, 0, 0, 0, 20, 0, 7,
0, 0, 0, 27, 0, 0, 0, 0,
8, 8, 8, 8, 8, 8, 8, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 9, 9, 9, 9, 9, 0,
9, 0, 0, 0, 0, 16, 0, 0,
28, 29, 30, 30, 30, 31, 18, 0,
28, 29, 30, 30, 0, 0, 0, 0,
0, 30, 28, 29, 30, 30, 30, 1,
19, 28, 29, 30, 30, 32, 0, 33,
3, 3, 0, 0, 0, 0, 7, 2,
0, 0, 3, 1, 1, 1
};
/*Kern values between classes*/
static const int8_t kern_class_values[] =
{
0, 0, 0, -30, -24, -48, 0, 0,
0, 0, 0, -48, -18, -6, -30, -42,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, -36, 0,
0, 0, 0, 0, -72, -60, -12, 0,
-84, 0, 0, 0, 0, 0, -54, -36,
0, 0, 0, 0, 0, 0, 0, 0,
-54, -54, 0, 0, 0, -36, -30, -60,
0, -24, 0, -72, 0, -54, -36, -12,
0, -60, 0, 0, 0, 0, 0, -12,
-6, -24, -48, 0, 0, 0, 0, 0,
0, -12, -12, -24, 0, -36, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -30, -119, -48, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
-36, -12, 0, 0, -36, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
-24, 0, 0, 0, 0, 0, -24, 0,
0, -60, -48, 0, 0, 0, 0, 0,
0, 0, 0, -24, -18, 0, 0, -36,
-18, 0, 0, 0, 0, -24, -24, 0,
0, 0, 0, 0, 0, 0, 0, 0,
-24, -18, -24, -6, -6, -18, -18, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, -72, 0, 0, 0, 0, 0,
-24, 0, 0, 0, 0, 0, 0, 0,
0, 0, -12, 0, 0, -12, -6, 0,
0, -66, -48, 0, 0, 0, 0, -12,
-12, 0, 0, 0, 0, 0, 0, 0,
-24, 0, -36, 0, -24, -18, -12, -24,
-36, -6, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, -108, 0, 0, 0, 0,
0, -36, 0, 0, 0, 0, 0, 0,
0, 0, 0, -18, -18, -12, -18, -12,
-12, -12, -12, -24, -24, -12, -12, -12,
-12, -12, -12, 0, 0, 0, 0, 0,
0, 0, 0, -24, 0, 0, 0, 0,
0, 0, 0, 0, -6, -24, 0, -6,
-36, -24, 0, 0, 0, 0, 0, 0,
0, 0, -36, -36, 0, 0, -72, 0,
0, 0, 0, 0, -24, 0, 0, -42,
-36, -18, 0, -54, 0, 0, 0, 0,
0, -24, -12, 0, 0, 0, 0, 0,
0, 0, 0, -24, -24, 0, -119, 0,
0, 0, 0, 0, -48, 0, -30, 0,
-24, -18, 0, 0, -18, 0, -36, -42,
-12, -36, -12, -12, -12, -12, 0, 0,
-24, -12, -12, -24, -12, -12, 0, 0,
0, 0, 0, 0, 0, 0, -12, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, -18, 0, 0, 0, 0, -6, 0,
0, 0, 0, 0, -18, -12, 0, 0,
0, 0, 0, 0, 0, 0, -18, -18,
-48, -72, -54, 0, 0, 0, -36, -60,
-24, 0, -18, 0, 0, 0, 0, 0,
0, -78, -84, -72, -78, -72, -72, -72,
-72, -78, -60, -54, -66, 0, -66, -66,
0, -18, -60, -36, 0, 0, 0, -12,
-48, -18, 0, 0, 0, 0, 0, 0,
0, 0, -24, -36, -18, -24, -18, -18,
-18, -18, -30, -18, -18, -18, -12, -18,
-18, -12, -6, -12, -12, 0, 0, 0,
0, 0, -12, 0, 0, 0, 0, 0,
0, 0, 0, -6, -12, 0, -6, 0,
0, 0, 0, -18, -6, -6, -6, 0,
-6, -6, 0, -30, 0, 0, 0, 0,
0, 0, 0, -24, 0, 0, 0, 0,
0, 0, 0, 0, -12, -24, 0, -12,
-24, -18, 0, 0, 0, 0, 0, 0,
0, 0, -24, -24, -42, -84, -60, 0,
0, 0, -36, 0, -36, 0, -18, 0,
0, 0, 0, 0, 0, -72, -78, -48,
-72, -48, -48, -48, -48, -72, -48, -54,
-54, -36, -54, -54, -36, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
-78, -24, -6, -6, -72, 0, 0, 0,
0, 0, 0, -10, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, -84, -36, -12, -24, -78, 0, 0,
0, 0, 0, -18, -12, -18, 0, 0,
0, 0, 0, 0, 0, -18, -18, 0,
0, -60, 0, 0, 0, 0, 0, 0,
0, 0, -78, -24, -6, -6, -72, 0,
0, -12, 0, 0, 0, -10, 0, 0,
-24, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, -84, -24, -6, -6, -72,
0, 0, 0, 0, 0, -12, -10, 0,
0, 0, 0, 0, 0, 0, 0, -12,
-12, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -84, -18, 0, 0,
-48, 0, 0, 0, 0, 0, -12, -6,
0, 0, 0, 0, 0, 0, 0, 0,
-12, -12, 0, 0, -30, 0, 0, 0,
0, 0, 0, 0, 0, -84, -18, 0,
0, -48, 0, 0, -18, 0, 0, -12,
-6, 0, 0, -30, 0, 0, 0, 0,
0, -12, -12, 0, 0, -36, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, -60, -66, 0,
0, 0, 0, -24, 0, 0, 0, 0,
0, 0, 0, 0, 0, -6, -18, 0,
-6, 0, 0, 0, 0, -30, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
-78, -24, -6, -6, -72, 0, 0, 0,
0, -12, 0, -10, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, -54,
-12, 0, 0, 0, 0, -24, 0, 0,
0, -84, -18, 0, 0, -48, 0, 0,
-18, 0, 0, -12, -6, 0, 0, -18,
0, 0, 0, 0, 0, -12, -12, 0,
-36, -6, 0, 0, 0, 0, -18, 0,
0, 0, -84, -18, 0, 0, -48, 0,
-10, -12, 0, -10, -12, -6, 0, 0,
-12, 0, 0, 0, 0, 0, -12, -12,
0, 0, -24, 0, 0, 0, 0, 0,
0, 0, 0, -84, -18, 0, 0, -48,
0, 0, -18, 0, 0, -12, -6, 0,
0, -30, 0, 0, 0, 0, 0, -12,
-12, 0, 0, -24, 0, 0, 0, 0,
0, 0, 0, 0, -84, -18, 0, 0,
-48, 0, 0, 0, 0, 0, -12, -6,
0, 0, -12, 0, 0, 0, 0, 0,
-12, -12, 0, 0, 0, 0, 0, 0,
0, -18, 0, -36, 0, -60, -18, -6,
0, -48, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, -36, 0, -54, 0, -78, -30,
-18, 0, -72, 0, 0, 0, 0, 0,
-18, -12, -30, -30, 0, 0, 0, 0,
0, 0, -18, -18, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, -60,
-24, -6, 0, -66, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
-48, -12, 0, 0, -36, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, -12, 0, 0, -36, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
-54, -12, 0, 0, 0, 0, -24, 0,
0, 0, -48, -12, 0, 0, -36, 0,
0, -18, 0, 0, 0, 0, 0, 0,
-18, 0, 0, 0, 0, 0, 0, 0,
0, -54, -12, 0, 0, 0, 0, -24,
0, 0, 0, 0, -12, 0, 0, -36,
0, 0, -18, 0, 0, 0, 0, 0,
0, -18, 0, 0, 0, 0, 0, 0,
0
};
/*Collect the kern class' data in one place*/
static const lv_font_fmt_txt_kern_classes_t kern_classes =
{
.class_pair_values = kern_class_values,
.left_class_mapping = kern_left_class_mapping,
.right_class_mapping = kern_right_class_mapping,
.left_class_cnt = 41,
.right_class_cnt = 33,
};
/*--------------------
* ALL CUSTOM DATA
*--------------------*/
#if LVGL_VERSION_MAJOR == 8
/*Store all the custom data of the font*/
static lv_font_fmt_txt_glyph_cache_t cache;
#endif
#if LVGL_VERSION_MAJOR >= 8
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 = &kern_classes,
.kern_scale = 30,
.cmap_num = 3,
.bpp = 1,
.kern_classes = 1,
.bitmap_format = 0,
#if LVGL_VERSION_MAJOR == 8
.cache = &cache
#endif
};
/*-----------------
* PUBLIC FONT
*----------------*/
/*Initialize a public general font descriptor*/
#if LVGL_VERSION_MAJOR >= 8
const lv_font_t ShareTech140 = {
#else
lv_font_t ShareTech140 = {
#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 = 147, /*The maximum line height required by the font*/
.base_line = 28, /*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) || LVGL_VERSION_MAJOR >= 8
.underline_position = -11,
.underline_thickness = 7,
#endif
//.static_bitmap = 0,
.dsc = &font_dsc, /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */
#if LV_VERSION_CHECK(8, 2, 0) || LVGL_VERSION_MAJOR >= 9
.fallback = NULL,
#endif
.user_data = NULL,
};
#endif /*#if SHARETECH140*/
|
train_000.parquet/704
|
{
"file_path": "main/ShareTech140.c",
"repo_id": "0015/Grid_Board",
"size": 697777,
"token_count": 603715
}
|
#pragma once
#include "lvgl.h"
#include <string>
#include <vector>
// Grid dimensions
#define GRID_COLS 12
#define GRID_ROWS 5
#define GRID_SLOT_WIDTH 96
#define GRID_SLOT_HEIGHT 150
#define GRID_GAP 10
#define GRID_SCREEN_WIDTH 1280
#define GRID_SCREEN_HEIGHT 800
// Animation constants
#define MAX_PARALLEL_ANIMATIONS 10
// Forward declarations
LV_FONT_DECLARE(ShareTech140);
LV_FONT_DECLARE(NotoEmoji64);
// Character slot structure for animation management
typedef struct
{
char utf8_char[8];
int row;
int col;
int retry_index;
std::vector<char> shuffled_chars;
std::vector<const char *> shuffled_emojis;
} GridCharacterSlot;
class GridBoard {
public:
// Constructor/Destructor
GridBoard();
~GridBoard();
// Main interface functions
void initialize(lv_obj_t *parent);
void process_text_and_animate(const std::string& text);
void clear_display();
// Animation control
void start_animation_batch();
bool is_animation_running() const;
// Callback for external sound triggering
void set_sound_callback(void (*on_start)(), void (*on_end)());
private:
// Grid management
void create_grid(lv_obj_t *parent);
lv_obj_t* create_card(lv_obj_t *slot, const char *text, const lv_font_t *font);
// Animation functions
void animate_card_to_slot(lv_obj_t *card, const char *target);
static void animation_ready_callback(lv_anim_t *a);
static void timer_callback(lv_timer_t *t);
// Card dropping logic
void on_card_dropped(lv_obj_t *card);
// Utility functions
bool is_emoji(const char *utf8_char);
void utf8_to_upper_ascii(char *utf8_char);
int utf8_char_len(unsigned char c);
// Member variables
lv_obj_t *slots[GRID_ROWS][GRID_COLS];
std::vector<GridCharacterSlot> animation_queue;
int running_animations;
// SFX callback functions
void (*start_card_flip_sound_task)();
void (*stop_card_flip_sound_task)();
// Static character sets
static const char *card_chars;
static const char *emoji_chars[];
static const int total_emoji_cards;
static const int total_cards;
};
extern GridBoard* get_grid_board_instance();
|
train_000.parquet/705
|
{
"file_path": "main/grid_board.hpp",
"repo_id": "0015/Grid_Board",
"size": 2235,
"token_count": 829
}
|
## All my scripts, tools and guides
<img src="https://hitscounter.dev/api/hit?url=https%3A%2F%2F007revad.github.io%2F&label=Visitors&icon=github&color=%23198754&message=&style=flat&tz=UTC">
#### Contents
- [Plex](#plex)
- [Synology docker](#synology-docker)
- [Synology recovery](#synology-recovery)
- [Other Synology scripts](#other-synology-scripts)
- [Synology hardware restrictions](#synology-hardware-restrictions)
- [2025 plus models](#2025-plus-models)
- [How To Guides](#how-to-guides)
- [Synology dev](#synology-dev)
***
### Plex
- **<a href="https://github.com/007revad/Synology_Plex_Backup">Synology_Plex_Backup</a>**
- A script to backup Plex to a tgz file foror DSM 7 and DSM 6.
- Works for Plex Synology package and Plex in docker.
- **<a href="https://github.com/007revad/Asustor_Plex_Backup">Asustor_Plex_Backup</a>**
- Backup your Asustor's Plex Media Server settings and database.
- **<a href="https://github.com/007revad/Linux_Plex_Backup">Linux_Plex_Backup</a>**
- Backup your Linux Plex Media Server's settings and database.
- **<a href="https://github.com/007revad/Plex_Server_Sync">Plex_Server_Sync</a>**
- Sync your main Plex server database & metadata to a backup Plex server.
- Works for Synology, Asustor, Linux and supports Plex package or Plex in docker.
[Back to Contents](#contents)
### Synology docker
- **<a href="https://github.com/007revad/Synology_Docker_Export">Synology_Docker_export</a>**
- Export all Synology Container Manager or Docker containers' settings as json files to your docker shared folder.
- **<a href="https://github.com/007revad/Synology_ContainerManager_IPv6">Synology_ContainerManager_IPv6</a>**
- Enable IPv6 for Container Manager's bridge network.
- **<a href="https://github.com/007revad/ContainerManager_for_all_armv8">ContainerManager_for_all_armv8</a>**
- Script to install Container Manager on a RS819, DS119j, DS418, DS418j, DS218, DS218play or DS118.
- **<a href="https://github.com/007revad/Docker_Autocompose">Docker_Autocompose</a>**
- Create .yml files from your docker existing containers.
- **<a href="https://github.com/007revad/Synology_docker_cleanup">Synology_docker_cleanup</a>**
- Remove orphan docker btrfs subvolumes and images in Synology DSM 7 and DSM 6.
[Back to Contents](#contents)
### Synology recovery
- **<a href="https://github.com/007revad/Synology_DSM_reinstall">Synology_DSM_reinstall</a>**
- Easily re-install the same DSM version without losing any data or settings.
- **<a href="https://github.com/007revad/Synology_Recover_Data">Synology_Recover_Data</a>**
- A script to make it easy to recover your data from your Synology's drives using a computer.
- **<a href="https://github.com/007revad/Synology_clear_drive_error">Synology clear drive error</a>**
- Clear drive critical errors so DSM will let you use the drive.
- **<a href="https://github.com/007revad/Synology_DSM_Telnet_Password">Synology_DSM_Telnet_Password</a>**
- Synology DSM Recovery Telnet Password of the Day generator.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/Synoboot_backup">Synoboot_backup</a>**
- Back up synoboot after each DSM update so you can recover from a corrupt USBDOM.
[Back to Contents](#contents)
### Other Synology scripts
- **<a href="https://github.com/007revad/Synology_app_mover">Synology_app_mover</a>**
- Easily move Synology packages from one volume to another volume.
- **<a href="https://github.com/007revad/Video_Station_for_DSM_722">Video_Station_for_DSM_722</a>**
- Script to install Video Station in DSM 7.2.2
- **<a href="https://github.com/007revad/SS_Motion_Detection">SS_Motion_Detection</a>**
- Installs previous Surveillance Station and Advanced Media Extensions versions so motion detection and HEVC are supported.
- **<a href="https://github.com/007revad/Synology_Config_Backup">Synology_Config_Backup</a>**
- Backup and export your Synology DSM configuration.
- **<a href="https://github.com/007revad/Synology_CPU_temperature">Synology_CPU_temperature</a>**
- Get and log Synology NAS CPU temperature via SSH.
- **<a href="https://github.com/007revad/Synology_SMART_info">Synology_SMART_info</a>**
- Show Synology smart test progress or smart health and attributes.
- **<a href="https://github.com/007revad/Synology_Cleanup_Coredumps">Synology_Cleanup_Coredumps</a>**
- Cleanup memory core dumps from crashed processes.
- **<a href="https://github.com/007revad/Synology_toggle_reset_button">Synology_toggle_reset_button</a>**
- Script to disable or enable the reset button and show current setting.
- **<a href="https://github.com/007revad/Synology_Download_Station_Chrome_Extension">Synology_Download_Station_Chrome_Extension</a>**
- Download Station Chrome Extension.
- **<a href="https://github.com/007revad/Seagate_lowCurrentSpinup">Seagate_lowCurrentSpinup</a>**
- This script avoids the need to buy and install a higher wattage power supply when using multiple large Seagate SATA HDDs.
[Back to Contents](#contents)
### Synology hardware restrictions
- **<a href="https://github.com/007revad/Synology_HDD_db">Synology_HDD_db</a>**
- Add your SATA or SAS HDDs and SSDs plus SATA and NVMe M.2 drives to your Synology's compatible drive databases, including your Synology M.2 PCIe card and Expansion Unit databases.
- **<a href="https://github.com/007revad/Synology_enable_M2_volume">Synology_enable_M2_volume</a>**
- Enable creating volumes with non-Synology M.2 drives.
- Enable Health Info for non-Synology NVMe drives (not in DSM 7.2.1 or later).
- **<a href="https://github.com/007revad/Synology_M2_volume">Synology_M2_volume</a>**
- Easily create an M.2 volume on Synology NAS.
- **<a href="https://github.com/007revad/Synology_enable_M2_card">Synology_enable_M2_card</a>**
- Enable Synology M.2 PCIe cards in Synology NAS that don't officially support them.
- **<a href="https://github.com/007revad/Synology_enable_eunit">Synology_enable_eunit</a>**
- Enable an unsupported Synology eSATA Expansion Unit models.
- **<a href="https://github.com/007revad/Synology_enable_Deduplication">Synology_enable_Deduplication</a>**
- Enable deduplication with non-Synology SSDs and unsupported NAS models.
- **<a href="https://github.com/007revad/Synology_SHR_switch">Synology_SHR_switch</a>**
- Easily switch between SHR and RAID Groups, or enable RAID F1.
- **<a href="https://github.com/007revad/Synology_enable_sequential_IO">Synology_enable_sequential_IO</a>**
- Enables sequential I/O for your SSD caches, like DSM 6 had.
- **<a href="https://github.com/007revad/Synology_Information_Wiki">Synology_Information_Wiki</a>**
- Information about Synology hardware.
[Back to Contents](#contents)
### 2025 plus models
- **<a href="https://github.com/007revad/Transcode_for_x25">Transcode_for_x25</a>**
- Installs the modules needed for Plex or Jellyfin hardware transcoding in DS425+ and DS225+.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md">2025 series or later Plus models</a>**
- Unverified 3rd party drive limitations and unofficial solutions.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#setting-up-a-new-2025-or-later-plus-model-with-only-unverified-hdds">Setup with only 3rd party drives</a>**
- Setting up a new 2025 or later plus model with only unverified HDDs.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#deleting-and-recreating-your-storage-pool-on-unverified-hdds">Recreating storage pool on migrated drives</a>**
- Deleting and recreating your storage pool on unverified HDDs.
[Back to Contents](#contents)
### How To Guides
- **<a href="https://github.com/007revad/Synology_SSH_key_setup">Synology_SSH_key_setup</a>**
- How to setup SSH key authentication for your Synology.
[Back to Contents](#contents)
### Synology dev
- **<a href="https://github.com/007revad/Download_Synology_Archive">Download_Synology_Archive</a>**
- Download all or part of the Synology archive.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/ScriptNotify">ScriptNotify</a>**
- DSM 7 package to allow your scripts to send DSM notifications.
- **<a href="https://github.com/007revad/DTC_GUI_for_Windows">DTC_GUI_for_Windows</a>**
- GUI for DTC.exe for Windows.
[Back to Contents](#contents)
|
train_000.parquet/706
|
{
"file_path": "my-other-scripts.md",
"repo_id": "007revad/Synology_ContainerManager_IPv6",
"size": 9099,
"token_count": 3421
}
|
#!/usr/bin/env bash
#------------------------------------------------------------------------------
# Synology enable IPv6 on bridge network in Container Manager or Docker
#
# Github: https://github.com/007revad/Synology_ContainerManager_IPv6
# Script verified at https://www.shellcheck.net/
#
# To run in a shell (replace /volume1/scripts/ with path to script):
# sudo /volume1/scripts/syno_containermanager_ipv6.sh
#------------------------------------------------------------------------------
#
# Posted in:
# https://www.synology-forum.de/threads/container-manager-oder-docker-auf-ipv6-umstellen.134481/post-1179432
#
# Adapted for ContainerManager from DSM6 post here:
# https://www.synoforum.com/threads/has-anyone-been-successful-in-enabling-ipv6-for-the-docker-daemon.435/
#
# https://fariszr.com/docker-ipv6-setup-with-propagation/
# https://community.home-assistant.io/t/trying-to-get-matter-to-work-with-synology-how-to-enable-ipv6-for-host-on-container-manager/722157/2
#
#------------------------------------------------------------------------------
# If you are using a scope global IPv6 address replace "fe80::1/64"
# with your network's IPv6 CIDR range.
# For example: cidr="2001:db8:1::/64"
# "fe80::1/64" is for local LAN access only.
cidr="fe80::1/64"
#-----------------------------------------------------------------------
scriptver="v2.0.5"
script="Synology_ContainerManager_IPv6"
repo="007revad/Synology_ContainerManager_IPv6"
if [[ $1 != "-n" ]] || [[ $1 != "--nocolor" ]]; then
# Shell Colors
#Black='\e[0;30m' # ${Black}
#Red='\e[0;31m' # ${Red}
Green='\e[0;32m' # ${Green}
#Yellow='\e[0;33m' # ${Yellow}
#Blue='\e[0;34m' # ${Blue}
#Purple='\e[0;35m' # ${Purple}
Cyan='\e[0;36m' # ${Cyan}
#White='\e[0;37m' # ${White}
Error='\e[41m' # ${Error}
Off='\e[0m' # ${Off}
fi
# Check cidr has been set
if [[ -z "$cidr" ]] || [[ "$cidr" == "2001:db8:1::/64" ]]; then
echo -e "\n${Error}ERROR${Off} You need to set cidr to your IPv6 cidr range!\n"
exit 1
fi
# Check script is running as root
if [[ $( whoami ) != "root" ]]; then
echo -e "\n${Error}ERROR${Off} This script must be run as sudo or root!\n"
exit 1
fi
# Check script is running in DSM 7.2 or later
#buildnumber=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION buildnumber)
#if [[ $buildnumber -lt "64555" ]]; then
# echo -e "\n${Error}ERROR${Off} This script only works for DSM 7.2 and later!\n"
# exit 2
#fi
# Check Container Manager is installed
/usr/syno/bin/synopkg status ContainerManager >/dev/null
code="$?"
# DSM 7.2 0 = started, 17 = stopped, 255 = not_installed, 150 = broken
if [[ $code == "0" ]] || [[ $code == "17" ]]; then
Docker="ContainerManager"
fi
# Check Docker is installed
/usr/syno/bin/synopkg status Docker >/dev/null
code="$?"
# DSM 6 to 7.1 0 = started, 3 = stopped, 4 = not_installed, 150 = broken
if [[ $code == "0" ]] || [[ $code == "3" ]]; then
Docker="Docker"
fi
# Exit if ContainerManager or Docker are not installed
if [[ -z $Docker ]]; then
echo -e "\n${Error}ERROR${Off} ContainerManager or Docker not installed!\n"
exit 3
fi
# Show script version
#echo -e "$script $scriptver\ngithub.com/$repo\n"
echo "$script $scriptver"
# Get NAS model
model=$(cat /proc/sys/kernel/syno_hw_version)
# Get DSM full version
productversion=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION productversion)
buildphase=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION buildphase)
buildnumber=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION buildnumber)
smallfixnumber=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION smallfixnumber)
# Show DSM full version and model
if [[ $buildphase == GM ]]; then buildphase=""; fi
if [[ $smallfixnumber -gt "0" ]]; then smallfix="-$smallfixnumber"; fi
echo -e "$model DSM $productversion-$buildnumber$smallfix $buildphase\n"
# Get ContainerManager or Docker version
dockerver=$(/usr/syno/bin/synopkg version "$Docker")
# Show ContainerManager or Docker version
if [[ $dockerver ]]; then echo -e "$Docker $dockerver\n"; fi
#------------------------------------------------------------------------------
# Check latest release with GitHub API
# Get latest release info
# Curl timeout options:
# https://unix.stackexchange.com/questions/94604/does-curl-have-a-timeout
release=$(curl --silent -m 10 --connect-timeout 5 \
"https://api.github.com/repos/$repo/releases/latest")
# Release version
tag=$(echo "$release" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
#shorttag="${tag:1}"
if ! printf "%s\n%s\n" "$tag" "$scriptver" |
sort --check=quiet --version-sort >/dev/null ; then
echo -e "\nThere is a newer version of this script available." |& tee -a "$Log_File"
echo -e "Current version: ${scriptver}\nLatest version: $tag" |& tee -a "$Log_File"
fi
#------------------------------------------------------------------------------
# shellcheck disable=SC2317,SC2329 # Don't warn about unreachable commands in this function
pause(){
# When debugging insert pause command where needed
read -s -r -n 1 -p "Press any key to continue..."
read -r -t 0.1 -s -e -- # Silently consume all input
stty echo echok # Ensure read didn't disable echoing user input
echo -e "\n"
}
show_json(){
# $1 is file
# Show target/dockerd.json contents
echo -e "\nContents of $1" >&2
if [[ -s "$1" ]]; then
jq . "$1"
else
echo -e "${Error}ERROR${Off} File it empty!" >&2
fi
}
edit_file(){
# $1 is file
# $2 is key
# $3 is value
# $4 is flat or pretty
if grep "$2" "$1" | grep -q "$3"; then
echo "Already contains \"$2\": $3" >&2
else
cp -pf "$1" "${1}.tmp"
#sleep 1
if [[ ! -s "${1}.tmp" ]]; then
echo -e "${Error}ERROR${Off} File it empty!" >&2
return 1
fi
if [[ $4 == "flat" ]]; then
# Save as flat json
if [[ $2 == "ipv6" ]]; then
jq -c '. += {"ipv6" : true}' "${1}.tmp" > "$1"
elif [[ $2 == "fixed-cidr-v6" ]]; then
jq -c --arg value "$3" '. += {"fixed-cidr-v6" : $value}' "${1}.tmp" > "$1"
fi
else
# Save as pretty json
if [[ $2 == "ipv6" ]]; then
jq '. += {"ipv6" : true}' "${1}.tmp" > "$1"
elif [[ $2 == "fixed-cidr-v6" ]]; then
jq --arg value "$3" '. += {"fixed-cidr-v6" : $value}' "${1}.tmp" > "$1"
fi
fi
fi
}
# Stop ContainerManager or Docker
if [[ $Docker == "ContainerManager" ]]; then
echo -e "${Cyan}Stopping${Off} Container Manager\n"
/usr/syno/bin/synopkg stop ContainerManager >/dev/null
elif [[ $Docker == "Docker" ]]; then
echo -e "${Cyan}Stopping${Off} Docker\n"
/usr/syno/bin/synopkg stop Docker >/dev/null
fi
# Files to edit
if [[ $Docker == "ContainerManager" ]]; then
etc_json="/var/packages/ContainerManager/etc/dockerd.json"
target_json="/var/packages/ContainerManager/target/config/dockerd.json"
start_stop_status="/var/packages/ContainerManager/scripts/start-stop-status"
elif [[ $Docker == "Docker" ]]; then
etc_json="/var/packages/Docker/etc/dockerd.json"
target_json="/var/packages/Docker/target/config/dockerd.json"
start_stop_status="/var/packages/Docker/scripts/start-stop-status"
fi
# Backup dockerd.json files
if [[ ! -f "${etc_json}.bak" ]]; then
echo -e "${Cyan}Backing up${Off} $etc_json"
cp -p "$etc_json" "${etc_json}.bak"
fi
if [[ ! -f "${target_json}.bak" ]]; then
echo -e "${Cyan}Backing up${Off} $target_json"
cp -p "$target_json" "${target_json}.bak"
fi
# Backup start_stop_status
if [[ ! -f "${start_stop_status}.bak" ]]; then
echo -e "${Cyan}Backing up${Off} $start_stop_status"
cp -p "$start_stop_status" "${start_stop_status}.bak"
fi
# Edit etc/dockerd.json
echo -e "${Cyan}Checking${Off} $etc_json"
if ! grep 'ipv6' "$etc_json" | grep -q 'true' ||\
! grep 'fixed-cidr-v6' "$etc_json" | grep -q "$cidr"; then
echo -e "Editing $etc_json"
fi
if [[ $Docker == "ContainerManager" ]]; then
# Save as flat json
edit_file "$etc_json" ipv6 true flat
edit_file "$etc_json" fixed-cidr-v6 "$cidr" flat
elif [[ $Docker == "Docker" ]]; then
# Save as pretty json
edit_file "$etc_json" ipv6 true flat
edit_file "$etc_json" fixed-cidr-v6 "$cidr" flat
fi
# Edit target/config/dockerd.json
echo -e "${Cyan}Checking${Off} $target_json"
if ! grep 'ipv6' "$target_json" | grep -q 'true' ||\
! grep 'fixed-cidr-v6' "$target_json" | grep -q "$cidr"; then
echo -e "Editing $target_json"
fi
if [[ $Docker == "ContainerManager" ]]; then
# Save as pretty json
edit_file "$target_json" ipv6 true
edit_file "$target_json" fixed-cidr-v6 "$cidr"
elif [[ $Docker == "Docker" ]]; then
# Save as pretty json
edit_file "$target_json" ipv6 true
edit_file "$target_json" fixed-cidr-v6 "$cidr"
fi
# Cleanup tmp files
[ -f "${etc_json}.tmp" ] && rm "${etc_json}.tmp"
[ -f "${target_json}.tmp" ] && rm "${target_json}.tmp"
# Replace $DockerUpdaterBin postinst updatedockerdconf "$(get_install_volume_type)"
# With #$DockerUpdaterBin postinst updatedockerdconf "$(get_install_volume_type)"
echo -e "${Cyan}Checking${Off} $start_stop_status"
# shellcheck disable=SC2016
if ! grep -q '#$DockerUpdaterBin postinst' "$start_stop_status"; then
echo -e "Editing $start_stop_status"
sed -i 's/$DockerUpdaterBin postinst/#$DockerUpdaterBin postinst/' "$start_stop_status"
else
echo "Already edited"
fi
# Show dockerd.json contents
show_json "$etc_json"
show_json "$target_json"
# Show ContainerManager/scripts/start-stop-status line
echo -e "\nLine in $start_stop_status"
# shellcheck disable=SC2016
if grep -q '#$DockerUpdaterBin postinst' "$start_stop_status"; then
line="$(grep '#$DockerUpdaterBin postinst' "$start_stop_status" | xargs)"
echo -e " ${Green}$line${Off}"
else
echo -e "${Error}ERROR${Off} File not edited!"
fi
# Start ContainerManager or Docker
if [[ $Docker == "ContainerManager" ]]; then
echo -e "\n${Cyan}Starting${Off} Container Manager"
/usr/syno/bin/synopkg start ContainerManager >/dev/null
elif [[ $Docker == "Docker" ]]; then
echo -e "\n${Cyan}Starting${Off} Docker"
/usr/syno/bin/synopkg start Docker >/dev/null
fi
echo -e "\nFinished\n"
exit
|
train_000.parquet/707
|
{
"file_path": "syno_containermanager_ipv6.sh",
"repo_id": "007revad/Synology_ContainerManager_IPv6",
"size": 10416,
"token_count": 4175
}
|
/*
* SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
#include "esp_log.h"
#include "esp_check.h"
#include "esp_codec_dev_defaults.h"
#include "esp_err.h"
#include "esp_log.h"
#include "esp_vfs_fat.h"
#include "driver/i2c.h"
#include "driver/i2s_std.h"
#include "driver/gpio.h"
#include "driver/ledc.h"
#include "bsp/esp-bsp.h"
#include "bsp_board_extra.h"
static const char *TAG = "bsp_extra_board";
static esp_codec_dev_handle_t play_dev_handle;
static esp_codec_dev_handle_t record_dev_handle;
static bool _is_audio_init = false;
static bool _is_player_init = false;
static int _vloume_intensity = CODEC_DEFAULT_VOLUME;
static audio_player_cb_t audio_idle_callback = NULL;
static void *audio_idle_cb_user_data = NULL;
static char audio_file_path[128];
/**************************************************************************************************
*
* Extra Board Function
*
**************************************************************************************************/
static esp_err_t audio_mute_function(AUDIO_PLAYER_MUTE_SETTING setting)
{
// Volume saved when muting and restored when unmuting. Restoring volume is necessary
// as es8311_set_voice_mute(true) results in voice volume (REG32) being set to zero.
bsp_extra_codec_mute_set(setting == AUDIO_PLAYER_MUTE ? true : false);
// restore the voice volume upon unmuting
if (setting == AUDIO_PLAYER_UNMUTE) {
ESP_RETURN_ON_ERROR(esp_codec_dev_set_out_vol(play_dev_handle, _vloume_intensity), TAG, "Set Codec volume failed");
}
return ESP_OK;
}
static void audio_callback(audio_player_cb_ctx_t *ctx)
{
if (audio_idle_callback) {
ctx->user_ctx = audio_idle_cb_user_data;
audio_idle_callback(ctx);
}
}
esp_err_t bsp_extra_i2s_read(void *audio_buffer, size_t len, size_t *bytes_read, uint32_t timeout_ms)
{
esp_err_t ret = ESP_OK;
ret = esp_codec_dev_read(record_dev_handle, audio_buffer, len);
*bytes_read = len;
return ret;
}
esp_err_t bsp_extra_i2s_write(void *audio_buffer, size_t len, size_t *bytes_written, uint32_t timeout_ms)
{
esp_err_t ret = ESP_OK;
ret = esp_codec_dev_write(play_dev_handle, audio_buffer, len);
*bytes_written = len;
return ret;
}
esp_err_t bsp_extra_codec_set_fs(uint32_t rate, uint32_t bits_cfg, i2s_slot_mode_t ch)
{
esp_err_t ret = ESP_OK;
esp_codec_dev_sample_info_t fs = {
.sample_rate = rate,
.channel = ch,
.bits_per_sample = bits_cfg,
};
if (play_dev_handle) {
ret = esp_codec_dev_close(play_dev_handle);
}
if (record_dev_handle) {
ret |= esp_codec_dev_close(record_dev_handle);
ret |= esp_codec_dev_set_in_gain(record_dev_handle, CODEC_DEFAULT_ADC_VOLUME);
}
if (play_dev_handle) {
ret |= esp_codec_dev_open(play_dev_handle, &fs);
}
if (record_dev_handle) {
ret |= esp_codec_dev_open(record_dev_handle, &fs);
}
return ret;
}
esp_err_t bsp_extra_codec_volume_set(int volume, int *volume_set)
{
ESP_RETURN_ON_ERROR(esp_codec_dev_set_out_vol(play_dev_handle, volume), TAG, "Set Codec volume failed");
_vloume_intensity = volume;
ESP_LOGI(TAG, "Setting volume: %d", volume);
return ESP_OK;
}
int bsp_extra_codec_volume_get(void)
{
return _vloume_intensity;
}
esp_err_t bsp_extra_codec_mute_set(bool enable)
{
esp_err_t ret = ESP_OK;
ret = esp_codec_dev_set_out_mute(play_dev_handle, enable);
return ret;
}
esp_err_t bsp_extra_codec_dev_stop(void)
{
esp_err_t ret = ESP_OK;
if (play_dev_handle) {
ret = esp_codec_dev_close(play_dev_handle);
}
if (record_dev_handle) {
ret = esp_codec_dev_close(record_dev_handle);
}
return ret;
}
esp_err_t bsp_extra_codec_dev_resume(void)
{
return bsp_extra_codec_set_fs(CODEC_DEFAULT_SAMPLE_RATE, CODEC_DEFAULT_BIT_WIDTH, CODEC_DEFAULT_CHANNEL);
}
esp_err_t bsp_extra_codec_init()
{
if (_is_audio_init) {
return ESP_OK;
}
play_dev_handle = bsp_audio_codec_speaker_init();
assert((play_dev_handle) && "play_dev_handle not initialized");
record_dev_handle = bsp_audio_codec_microphone_init();
assert((record_dev_handle) && "record_dev_handle not initialized");
bsp_extra_codec_set_fs(CODEC_DEFAULT_SAMPLE_RATE, CODEC_DEFAULT_BIT_WIDTH, CODEC_DEFAULT_CHANNEL);
_is_audio_init = true;
return ESP_OK;
}
esp_err_t bsp_extra_player_init(void)
{
if (_is_player_init) {
return ESP_OK;
}
audio_player_config_t config = { .mute_fn = audio_mute_function,
.write_fn = bsp_extra_i2s_write,
.clk_set_fn = bsp_extra_codec_set_fs,
.priority = 5
};
ESP_RETURN_ON_ERROR(audio_player_new(config), TAG, "audio_player_init failed");
audio_player_callback_register(audio_callback, NULL);
_is_player_init = true;
return ESP_OK;
}
esp_err_t bsp_extra_player_del(void)
{
_is_player_init = false;
ESP_RETURN_ON_ERROR(audio_player_delete(), TAG, "audio_player_delete failed");
return ESP_OK;
}
esp_err_t bsp_extra_file_instance_init(const char *path, file_iterator_instance_t **ret_instance)
{
ESP_RETURN_ON_FALSE(path, ESP_FAIL, TAG, "path is NULL");
ESP_RETURN_ON_FALSE(ret_instance, ESP_FAIL, TAG, "ret_instance is NULL");
file_iterator_instance_t *file_iterator = file_iterator_new(path);
ESP_RETURN_ON_FALSE(file_iterator, ESP_FAIL, TAG, "file_iterator_new failed, %s", path);
*ret_instance = file_iterator;
return ESP_OK;
}
esp_err_t bsp_extra_player_play_index(file_iterator_instance_t *instance, int index)
{
ESP_RETURN_ON_FALSE(instance, ESP_FAIL, TAG, "instance is NULL");
ESP_LOGI(TAG, "play_index(%d)", index);
char filename[128];
int retval = file_iterator_get_full_path_from_index(instance, index, filename, sizeof(filename));
ESP_RETURN_ON_FALSE(retval != 0, ESP_FAIL, TAG, "file_iterator_get_full_path_from_index failed");
ESP_LOGI(TAG, "opening file '%s'", filename);
FILE *fp = fopen(filename, "rb");
ESP_RETURN_ON_FALSE(fp, ESP_FAIL, TAG, "unable to open file");
ESP_LOGI(TAG, "Playing '%s'", filename);
ESP_RETURN_ON_ERROR(audio_player_play(fp), TAG, "audio_player_play failed");
memcpy(audio_file_path, filename, sizeof(audio_file_path));
return ESP_OK;
}
esp_err_t bsp_extra_player_play_file(const char *file_path)
{
ESP_LOGI(TAG, "opening file '%s'", file_path);
FILE *fp = fopen(file_path, "rb");
ESP_RETURN_ON_FALSE(fp, ESP_FAIL, TAG, "unable to open file");
ESP_LOGI(TAG, "Playing '%s'", file_path);
ESP_RETURN_ON_ERROR(audio_player_play(fp), TAG, "audio_player_play failed");
memcpy(audio_file_path, file_path, sizeof(audio_file_path));
return ESP_OK;
}
void bsp_extra_player_register_callback(audio_player_cb_t cb, void *user_data)
{
audio_idle_callback = cb;
audio_idle_cb_user_data = user_data;
}
bool bsp_extra_player_is_playing_by_path(const char *file_path)
{
return (strcmp(audio_file_path, file_path) == 0);
}
bool bsp_extra_player_is_playing_by_index(file_iterator_instance_t *instance, int index)
{
return (index == file_iterator_get_index(instance));
}
|
train_000.parquet/708
|
{
"file_path": "components/bsp_extra/src/bsp_board_extra.c",
"repo_id": "0015/Grid_Board",
"size": 7419,
"token_count": 3034
}
|
# Synology Container Manager IPv6
<a href="https://github.com/007revad/Synology_ContainerManager_IPv6/releases"><img src="https://img.shields.io/github/release/007revad/Synology_ContainerManager_IPv6.svg"></a>

[](https://www.paypal.com/paypalme/007revad)
[](https://github.com/sponsors/007revad)
[](https://user-badge.committers.top/australia/007revad)
<!-- [](https://user-badge.committers.top/australia_public/007revad) -->
<!-- [](https://user-badge.committers.top/australia_private/007revad) -->
<!-- [](https://github.com/007revad/Synology_ContainerManager_IPv6/releases) -->
### Description
Enable IPv6 for the bridge network in Container Manager or Docker
The script works in DSM 7 and later.
<p align="left"><img src="/images/success.png"></p>
## Download the script
1. Download the latest version _Source code (zip)_ from https://github.com/007revad/Synology_ContainerManager_IPv6/releases
2. Save the download zip file to a folder on the Synology.
3. Unzip the zip file.
## Edit the script if needed
If your Synology's IPv6 IP address starts with "fe80" you don't need to edit anything.
<p align="left"><img src="/images/cidr.png"></p>
If you are using a scope global IPv6 address replace "fe80::1/64" in the script with your network's IPv6 CIDR range.
For example: `cidr="2001:db8:1::/64"`
## How to run the script
### Run the script via SSH
[How to enable SSH and login to DSM via SSH](https://kb.synology.com/en-global/DSM/tutorial/How_to_login_to_DSM_with_root_permission_via_SSH_Telnet)
Run the script:
```bash
sudo -s /volume1/scripts/syno_containermanager_ipv6.sh
```
> **Note** <br>
> Replace /volume1/scripts/ with the path to where the script is located.
### Scheduling the script in Synology's Task Scheduler
See <a href=how_to_schedule.md/>How to schedule a script in Synology Task Scheduler</a>
## Screenshots
<p align="left"><img src="/images/screenshot.png"></p>
<br>
|
train_000.parquet/709
|
{
"file_path": "README.md",
"repo_id": "007revad/Synology_ContainerManager_IPv6",
"size": 2644,
"token_count": 1060
}
|
# How to schedule a script in Synology Task Scheduler
To schedule a script to run on your Synology at boot-up or shut-down follow these steps:
**Note:** You can setup a schedule task and leave it disabled, so it only runs when you select the task in the Task Scheduler and click on the Run button.
1. Go to **Control Panel** > **Task Scheduler** > click **Create** > and select **Triggered Task**.
2. Select **User-defined script**.
3. Enter a task name.
4. Select **root** as the user (The script needs to run as root).
5. Select **Boot-up** as the event that triggers the task.
6. Leave **Enable** ticked.
7. Click **Task Settings**.
8. Optionally you can tick **Send run details by email** and **Send run details only when the script terminates abnormally** then enter your email address.
9. In the box under **User-defined script** type the path to the script.
- e.g. If you saved the script to a shared folder on volume1 called "scripts" you'd type:
- **/volume1/scripts/syno_containermanager_ipv6.sh**
11. Click **OK** to save the settings.
Here's some screenshots showing what needs to be set:
<p align="leftr"><img src="images/schedule1.png"></p>
<p align="leftr"><img src="images/schedule2.png"></p>
<p align="leftr"><img src="images/schedule3.png"></p>
|
train_000.parquet/710
|
{
"file_path": "how_to_schedule.md",
"repo_id": "007revad/Synology_ContainerManager_IPv6",
"size": 1279,
"token_count": 402
}
|
/*
* SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include <sys/cdefs.h>
#include <stdbool.h>
#include "esp_codec_dev.h"
#include "esp_err.h"
#include "driver/gpio.h"
#include "driver/i2s_std.h"
#include "audio_player.h"
#include "file_iterator.h"
#ifdef __cplusplus
extern "C" {
#endif
#define CODEC_DEFAULT_SAMPLE_RATE (16000)
#define CODEC_DEFAULT_BIT_WIDTH (16)
#define CODEC_DEFAULT_ADC_VOLUME (24.0)
#define CODEC_DEFAULT_CHANNEL (2)
#define CODEC_DEFAULT_VOLUME (60)
#define BSP_LCD_BACKLIGHT_BRIGHTNESS_MAX (95)
#define BSP_LCD_BACKLIGHT_BRIGHTNESS_MIN (0)
#define LCD_LEDC_CH (CONFIG_BSP_DISPLAY_BRIGHTNESS_LEDC_CH)
/**************************************************************************************************
* BSP Extra interface
* Mainly provided some I2S Codec interfaces.
**************************************************************************************************/
/**
* @brief Player set mute.
*
* @param enable: true or false
*
* @return
* - ESP_OK: Success
* - Others: Fail
*/
esp_err_t bsp_extra_codec_mute_set(bool enable);
/**
* @brief Player set volume.
*
* @param volume: volume set
* @param volume_set: volume set response
*
* @return
* - ESP_OK: Success
* - Others: Fail
*/
esp_err_t bsp_extra_codec_volume_set(int volume, int *volume_set);
/**
* @brief Player get volume.
*
* @return
* - volume: volume get
*/
int bsp_extra_codec_volume_get(void);
/**
* @brief Stop I2S function.
*
* @return
* - ESP_OK: Success
* - Others: Fail
*/
esp_err_t bsp_extra_codec_dev_stop(void);
/**
* @brief Resume I2S function.
*
* @return
* - ESP_OK: Success
* - Others: Fail
*/
esp_err_t bsp_extra_codec_dev_resume(void);
/**
* @brief Set I2S format to codec.
*
* @param rate: Sample rate of sample
* @param bits_cfg: Bit lengths of one channel data
* @param ch: Channels of sample
*
* @return
* - ESP_OK: Success
* - Others: Fail
*/
esp_err_t bsp_extra_codec_set_fs(uint32_t rate, uint32_t bits_cfg, i2s_slot_mode_t ch);
/**
* @brief Read data from recoder.
*
* @param audio_buffer: The pointer of receiving data buffer
* @param len: Max data buffer length
* @param bytes_read: Byte number that actually be read, can be NULL if not needed
* @param timeout_ms: Max block time
*
* @return
* - ESP_OK: Success
* - Others: Fail
*/
esp_err_t bsp_extra_i2s_read(void *audio_buffer, size_t len, size_t *bytes_read, uint32_t timeout_ms);
/**
* @brief Write data to player.
*
* @param audio_buffer: The pointer of sent data buffer
* @param len: Max data buffer length
* @param bytes_written: Byte number that actually be sent, can be NULL if not needed
* @param timeout_ms: Max block time
*
* @return
* - ESP_OK: Success
* - Others: Fail
*/
esp_err_t bsp_extra_i2s_write(void *audio_buffer, size_t len, size_t *bytes_written, uint32_t timeout_ms);
/**
* @brief Initialize codec play and record handle.
*
* @return
* - ESP_OK: Success
* - Others: Fail
*/
esp_err_t bsp_extra_codec_init();
/**
* @brief Initialize audio player task.
*
* @param path file path
*
* @return
* - ESP_OK: Success
* - Others: Fail
*/
esp_err_t bsp_extra_player_init(void);
/**
* @brief Delete audio player task.
*
* @return
* - ESP_OK: Success
* - Others: Fail
*/
esp_err_t bsp_extra_player_del(void);
/**
* @brief Initialize a file iterator instance
*
* @param path The file path for the iterator.
* @param ret_instance A pointer to the file iterator instance to be returned.
* @return
* - ESP_OK: Successfully initialized the file iterator instance.
* - ESP_FAIL: Failed to initialize the file iterator instance due to invalid parameters or memory allocation failure.
*/
esp_err_t bsp_extra_file_instance_init(const char *path, file_iterator_instance_t **ret_instance);
/**
* @brief Play the audio file at the specified index in the file iterator
*
* @param instance The file iterator instance.
* @param index The index of the file to play within the iterator.
* @return
* - ESP_OK: Successfully started playing the audio file.
* - ESP_FAIL: Failed to play the audio file due to invalid parameters or file access issues.
*/
esp_err_t bsp_extra_player_play_index(file_iterator_instance_t *instance, int index);
/**
* @brief Play the audio file specified by the file path
*
* @param file_path The path to the audio file to be played.
* @return
* - ESP_OK: Successfully started playing the audio file.
* - ESP_FAIL: Failed to play the audio file due to file access issues.
*/
esp_err_t bsp_extra_player_play_file(const char *file_path);
/**
* @brief Register a callback function for the audio player
*
* @param cb The callback function to be registered.
* @param user_data User data to be passed to the callback function.
*/
void bsp_extra_player_register_callback(audio_player_cb_t cb, void *user_data);
/**
* @brief Check if the specified audio file is currently playing
*
* @param file_path The path to the audio file to check.
* @return
* - true: The specified audio file is currently playing.
* - false: The specified audio file is not currently playing.
*/
bool bsp_extra_player_is_playing_by_path(const char *file_path);
/**
* @brief Check if the audio file at the specified index is currently playing
*
* @param instance The file iterator instance.
* @param index The index of the file to check.
* @return
* - true: The audio file at the specified index is currently playing.
* - false: The audio file at the specified index is not currently playing.
*/
bool bsp_extra_player_is_playing_by_index(file_iterator_instance_t *instance, int index);
#ifdef __cplusplus
}
#endif
|
train_000.parquet/711
|
{
"file_path": "components/bsp_extra/include/bsp_board_extra.h",
"repo_id": "0015/Grid_Board",
"size": 5915,
"token_count": 2011
}
|
import 'dart:io';
import 'dart:async';
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_blue_plus/flutter_blue_plus.dart';
import 'package:shared_preferences/shared_preferences.dart';
const String targetDeviceName = "Grid_Board";
const String serviceUUID = "00ff";
const String charUUID = "ff01";
class SavedGrid {
final String id;
final String name;
final List<List<String>> grid;
final DateTime savedAt;
SavedGrid({
required this.id,
required this.name,
required this.grid,
required this.savedAt,
});
Map<String, dynamic> toJson() {
return {
'id': id,
'name': name,
'grid': grid,
'savedAt': savedAt.toIso8601String(),
};
}
factory SavedGrid.fromJson(Map<String, dynamic> json) {
return SavedGrid(
id: json['id'],
name: json['name'],
grid: List<List<String>>.from(
json['grid'].map((row) => List<String>.from(row))
),
savedAt: DateTime.parse(json['savedAt']),
);
}
}
void main() {
runApp(const MaterialApp(debugShowCheckedModeBanner: false, home: LoadingScreen()));
}
class LoadingScreen extends StatefulWidget {
const LoadingScreen({super.key});
@override
State<LoadingScreen> createState() => _LoadingScreenState();
}
class _LoadingScreenState extends State<LoadingScreen> {
String status = "Scanning for Grid Board...";
bool scanFailed = false;
@override
void initState() {
super.initState();
scanAndConnect();
}
Future<void> scanAndConnect() async {
BluetoothDevice? targetDevice;
BluetoothCharacteristic? targetChar;
try {
// Wait for adapter to be powered on
await FlutterBluePlus.adapterState
.firstWhere((state) => state == BluetoothAdapterState.on);
if (Platform.isAndroid) {
await FlutterBluePlus.startScan(timeout: const Duration(seconds: 10), androidUsesFineLocation: true);
} else if (Platform.isIOS) {
await FlutterBluePlus.startScan(timeout: const Duration(seconds: 10));
}else{
return;
}
FlutterBluePlus.scanResults.listen((results) async {
for (ScanResult r in results) {
if (r.device.advName == targetDeviceName) {
targetDevice = r.device;
await FlutterBluePlus.stopScan();
await targetDevice!.connect();
List<BluetoothService> services = await targetDevice!.discoverServices();
for (var service in services) {
if (service.uuid.toString().contains(serviceUUID)) {
for (var c in service.characteristics) {
if (c.uuid.toString().contains(charUUID)) {
targetChar = c;
Navigator.pushReplacement(
context,
MaterialPageRoute(
builder: (_) => GridScreen(characteristic: targetChar!),
),
);
return;
}
}
}
}
}
}
// Timeout fallback
Future.delayed(const Duration(seconds: 10), () {
if (targetChar == null && mounted) {
setState(() {
scanFailed = true;
status = "Not Found";
});
}
});
});
} catch (e) {
setState(() {
scanFailed = true;
status = "Error: $e";
});
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: scanFailed
? Column(
mainAxisSize: MainAxisSize.min,
children: [
Text(status, style: const TextStyle(fontSize: 20)),
const SizedBox(height: 20),
ElevatedButton(
onPressed: () {
setState(() {
status = "Retrying...";
scanFailed = false;
});
scanAndConnect();
},
child: const Text("Retry"),
),
],
)
: Column(
mainAxisSize: MainAxisSize.min,
children: [
const CircularProgressIndicator(),
const SizedBox(height: 20),
Text(status, style: const TextStyle(fontSize: 20)),
],
),
),
);
}
}
class GridScreen extends StatefulWidget {
final BluetoothCharacteristic characteristic;
const GridScreen({super.key, required this.characteristic});
@override
State<GridScreen> createState() => _GridScreenState();
}
class _GridScreenState extends State<GridScreen> {
final int rows = 5;
final int cols = 12;
final List<List<String>> slotGrid =
List.generate(5, (_) => List.filled(12, " "));
int cursorRow = 2;
int cursorCol = 0;
final FocusNode _textFocus = FocusNode();
final TextEditingController _textController = TextEditingController();
String _previousText = '';
static const List<String> emojiList = [
"✅", "✔", "✖", "❌", "❤", "📀", "📁", "📂", "📃", "📄", "📅", "📆", "📇", "📈", "📉", "📊", "📋", "📌", "📍", "📎", "📏", "📐", "📑", "📒", "📓", "📔", "📕", "📖", "📗", "📘", "📙", "📚", "📛", "📜", "📝", "📞", "📟", "📠", "📡", "📢", "📣", "📤", "📥", "📦", "📧", "📨", "📩", "📪", "📫", "📬", "📭", "📮", "📯", "📰", "📱", "📲", "📳", "📴", "📵", "📶", "📷", "📸", "📹", "📺", "📻", "📼", "📽", "📿", "😀", "😁", "😂", "😃", "😄", "😅", "😆", "😇", "😈", "😉", "😊", "😋", "😌", "😍", "😎", "😏", "😐", "😑", "😒", "😓", "😔", "😕", "😖", "😗", "😘", "😙", "😚", "😛", "😜", "😝", "😞", "😟", "😠", "😡", "😢", "😣", "😤", "😥", "😦", "😧", "😨", "😩", "😪", "😫", "😬", "😭", "😮", "😯", "😰", "😱", "😲", "😳", "😴", "😵", "😶", "😷", "😸", "😹", "😺", "😻", "😼", "😽", "😾", "😿", "🙀", "🙁", "🙂", "🙃", "🙄", "🙅", "🙆", "🙇", "🙈", "🙉", "🙊", "🙋", "🙌", "🙍", "🙎", "🙏", "🚀", "🚁", "🚂", "🚃", "🚄", "🚅", "🚆", "🚇", "🚈", "🚉", "🚊", "🚋", "🚌", "🚍", "🚎", "🚏", "🚐", "🚑", "🚒", "🚓", "🚔", "🚕", "🚖", "🚗", "🚘", "🚙", "🚚", "🚛", "🚜", "🚝", "🚞", "🚟", "🚠", "🚡", "🚢", "🚣", "🚤", "🚥", "🚦", "🚧", "🚨", "🚩", "🚪", "🚫", "🚬", "🚭", "🚮", "🚯", "🚰", "🚱", "🚲", "🚳", "🚴", "🚵", "🚶", "🚷", "🚸", "🚹", "🚺", "🚻", "🚼", "🚽", "🚾", "🚿", "🛀", "🛁", "🛂", "🛃", "🛄", "🛅", "🛋", "🛌", "🛍", "🛎", "🛏", "🛐", "🛑", "🛒", "🛕", "🛖", "🛗", "🛜", "🛝", "🛞", "🛟", "🛠", "🛡", "🛢", "🛣", "🛤", "🛥", "🛩", "🛫", "🛬", "🛰", "🛳", "🛴", "🛵", "🛶", "🛷", "🛸", "🛹", "🛺", "🛻", "🛼"
];
void _handleTextChange(String text) {
print("Text changed: '$text', previous: '$_previousText'");
if (text.length < _previousText.length) {
// Backspace detected - text got shorter
setState(() {
slotGrid[cursorRow][cursorCol] = " ";
moveCursorBack();
});
} else if (text.length > _previousText.length && text.isNotEmpty) {
// New character added
final char = text.characters.last.toUpperCase();
setState(() {
slotGrid[cursorRow][cursorCol] = char;
moveCursorForward();
});
}
// Update previous text and clear controller
_previousText = text;
Future.microtask(() {
_textController.clear();
_previousText = '';
});
}
@override
void initState() {
super.initState();
WidgetsBinding.instance.addPostFrameCallback((_) {
FocusScope.of(context).requestFocus(_textFocus);
});
}
void moveCursorForward() {
cursorCol++;
if (cursorCol >= cols) {
cursorCol = 0;
cursorRow++;
if (cursorRow >= rows) {
cursorRow = 0;
}
}
}
void moveCursorBack() {
if (cursorCol > 0) {
cursorCol--;
} else if (cursorRow > 0) {
cursorRow--;
cursorCol = cols - 1;
}
}
void onCellTapped(int row, int col) {
setState(() {
cursorRow = row;
cursorCol = col;
});
Future.delayed(const Duration(milliseconds: 100), () {
FocusScope.of(context).requestFocus(_textFocus);
});
}
void onCellLongPressed(int row, int col) async {
String? selectedEmoji = await showDialog<String>(
context: context,
builder: (context) => AlertDialog(
title: const Text("Select Emoji"),
content: SizedBox(
width: double.maxFinite,
height: 300,
child: GridView.count(
crossAxisCount: 6,
children: emojiList.map((emoji) {
return GestureDetector(
onTap: () => Navigator.pop(context, emoji),
child: Center(child: Text(emoji, style: const TextStyle(fontSize: 24))),
);
}).toList(),
),
),
),
);
if (selectedEmoji != null) {
setState(() {
cursorRow = row;
cursorCol = col;
slotGrid[row][col] = selectedEmoji;
moveCursorForward();
});
}
}
void clearGrid() {
setState(() {
for (var row = 0; row < rows; row++) {
for (var col = 0; col < cols; col++) {
slotGrid[row][col] = ' ';
}
}
cursorRow = 2;
cursorCol = 0;
});
}
Future<void> saveGrid() async {
String? gridName = await showDialog<String>(
context: context,
builder: (context) {
String name = '';
return AlertDialog(
title: const Text('Save Grid'),
content: TextField(
onChanged: (value) => name = value,
decoration: const InputDecoration(
hintText: 'Enter grid name...',
border: OutlineInputBorder(),
),
autofocus: true,
),
actions: [
TextButton(
onPressed: () => Navigator.pop(context),
child: const Text('Cancel'),
),
TextButton(
onPressed: () => Navigator.pop(context, name.trim()),
child: const Text('Save'),
),
],
);
},
);
if (gridName != null && gridName.isNotEmpty) {
final prefs = await SharedPreferences.getInstance();
final savedGrids = await _loadSavedGrids();
final newGrid = SavedGrid(
id: DateTime.now().millisecondsSinceEpoch.toString(),
name: gridName,
grid: slotGrid.map((row) => List<String>.from(row)).toList(),
savedAt: DateTime.now(),
);
savedGrids.add(newGrid);
final gridsJson = savedGrids.map((grid) => grid.toJson()).toList();
await prefs.setString('saved_grids', jsonEncode(gridsJson));
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text('Grid "$gridName" saved successfully!')),
);
}
}
}
Future<List<SavedGrid>> _loadSavedGrids() async {
final prefs = await SharedPreferences.getInstance();
final gridsJson = prefs.getString('saved_grids');
if (gridsJson == null) return [];
final List<dynamic> gridsList = jsonDecode(gridsJson);
return gridsList.map((json) => SavedGrid.fromJson(json)).toList();
}
void _showLoadDialog() async {
final savedGrids = await _loadSavedGrids();
if (savedGrids.isEmpty) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('No saved grids found!')),
);
return;
}
showDialog(
context: context,
builder: (context) => AlertDialog(
title: const Text('Load Grid'),
content: SizedBox(
width: double.maxFinite,
height: (savedGrids.length * 220.0).clamp(200.0, MediaQuery.of(context).size.height * 0.7),
child: ListView.builder(
itemCount: savedGrids.length,
itemBuilder: (context, index) {
final grid = savedGrids[index];
return Card(
margin: const EdgeInsets.symmetric(vertical: 4),
child: Padding(
padding: const EdgeInsets.all(8),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Expanded(
child: Text(
grid.name,
style: const TextStyle(
fontSize: 16,
fontWeight: FontWeight.bold,
),
),
),
IconButton(
icon: const Icon(Icons.delete, color: Colors.red),
onPressed: () async {
savedGrids.removeAt(index);
final prefs = await SharedPreferences.getInstance();
final gridsJson = savedGrids.map((g) => g.toJson()).toList();
await prefs.setString('saved_grids', jsonEncode(gridsJson));
Navigator.pop(context);
_showLoadDialog(); // Refresh the dialog
},
),
],
),
Text(
'Saved: ${grid.savedAt.day}/${grid.savedAt.month}/${grid.savedAt.year} '
'${grid.savedAt.hour.toString().padLeft(2, '0')}:${grid.savedAt.minute.toString().padLeft(2, '0')}',
style: TextStyle(
fontSize: 12,
color: Colors.grey[600],
),
),
const SizedBox(height: 8),
// Preview Grid
Container(
height: 120,
decoration: BoxDecoration(
border: Border.all(color: Colors.grey[300]!),
borderRadius: BorderRadius.circular(4),
),
child: GridView.builder(
physics: const NeverScrollableScrollPhysics(),
itemCount: 60, // 5 rows × 12 cols
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 12,
mainAxisSpacing: 1,
crossAxisSpacing: 1,
),
itemBuilder: (context, cellIndex) {
int row = cellIndex ~/ 12;
int col = cellIndex % 12;
String cellContent = ' ';
if (row < grid.grid.length && col < grid.grid[row].length) {
cellContent = grid.grid[row][col];
}
return Container(
alignment: Alignment.center,
decoration: BoxDecoration(
color: cellContent == ' ' ? Colors.grey[100] : Colors.blue[50],
border: Border.all(color: Colors.grey[200]!, width: 0.5),
),
child: Text(
cellContent,
style: const TextStyle(
fontFamily: 'NotoEmoji',
fontSize: 10,
),
),
);
},
),
),
const SizedBox(height: 8),
SizedBox(
width: double.infinity,
child: ElevatedButton(
onPressed: () {
setState(() {
for (int r = 0; r < rows; r++) {
for (int c = 0; c < cols; c++) {
if (r < grid.grid.length && c < grid.grid[r].length) {
slotGrid[r][c] = grid.grid[r][c];
}
}
}
cursorRow = 2;
cursorCol = 0;
});
Navigator.pop(context);
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text('Grid "${grid.name}" loaded!')),
);
},
child: const Text('Load This Grid'),
),
),
],
),
),
);
},
),
),
actions: [
TextButton(
onPressed: () => Navigator.pop(context),
child: const Text('Cancel'),
),
],
),
);
}
Future<void> sendGridToESP() async {
try {
final device = widget.characteristic.device;
final charUUID = widget.characteristic.uuid;
final serviceUUID = widget.characteristic.serviceUuid;
// If disconnected, reconnect and rediscover services/characteristics
if (device.isDisconnected) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text("Reconnecting to Grid Board...")),
);
await device.connect(autoConnect: false);
await Future.delayed(const Duration(milliseconds: 800)); // Wait a moment
await device.discoverServices();
}
// Always get the latest characteristic after connect/discover
BluetoothCharacteristic? targetChar;
List<BluetoothService> services = await device.discoverServices();
for (var service in services) {
if (service.uuid == serviceUUID) {
for (var char in service.characteristics) {
if (char.uuid == charUUID) {
targetChar = char;
break;
}
}
}
if (targetChar != null) break;
}
if (targetChar == null) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text("Failed to find BLE characteristic.")),
);
return;
}
// Send the data
String flatGrid = slotGrid.expand((row) => row).map((c) => c.isEmpty ? ' ' : c).join();
if (flatGrid.length < 60) flatGrid = flatGrid.padRight(60);
await targetChar.write(utf8.encode(flatGrid));
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text("Grid sent to ESP32")),
);
} catch (e) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text("Failed to send grid: $e")),
);
}
}
@override
void dispose() {
_textController.dispose();
_textFocus.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("Card Grid"),
actions: [
IconButton(
icon: const Icon(Icons.save),
onPressed: saveGrid,
tooltip: 'Save Grid',
),
IconButton(
icon: const Icon(Icons.folder_open),
onPressed: _showLoadDialog,
tooltip: 'Load Grid',
),
],
),
resizeToAvoidBottomInset: false,
body: SafeArea(
child: KeyboardListener(
focusNode: FocusNode(),
autofocus: false,
onKeyEvent: (KeyEvent event) {
if (event is KeyDownEvent &&
event.logicalKey == LogicalKeyboardKey.backspace) {
setState(() {
slotGrid[cursorRow][cursorCol] = " ";
moveCursorBack();
});
}
},
child: Column(
children: [
Expanded(
child: GridView.builder(
itemCount: rows * cols,
padding: const EdgeInsets.all(8),
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 12,
mainAxisSpacing: 4,
crossAxisSpacing: 4,
),
itemBuilder: (context, index) {
int row = index ~/ cols;
int col = index % cols;
bool isSelected = (row == cursorRow && col == cursorCol);
return GestureDetector(
onTap: () => onCellTapped(row, col),
onLongPress: () => onCellLongPressed(row, col),
child: Container(
alignment: Alignment.center,
decoration: BoxDecoration(
color: isSelected ? Colors.yellow[300] : Colors.grey[200],
border: Border.all(color: Colors.black26),
),
child: Text(
slotGrid[row][col],
style: const TextStyle(
fontFamily: 'NotoEmoji',
fontSize: 20,
fontWeight: FontWeight.bold,
),
),
),
);
},
),
),
// Hidden TextField to trigger keyboard and detect input + backspace
SizedBox(
height: 0,
width: 0,
child: TextField(
focusNode: _textFocus,
controller: _textController,
onChanged: _handleTextChange,
keyboardType: TextInputType.text,
textInputAction: TextInputAction.done,
autocorrect: false,
enableSuggestions: false,
enableInteractiveSelection: false,
textCapitalization: TextCapitalization.characters,
decoration: const InputDecoration(border: InputBorder.none),
style: const TextStyle(fontSize: 1, color: Colors.transparent),
cursorColor: Colors.transparent,
),
),
Padding(
padding: EdgeInsets.only(
left: 16,
right: 16,
top: 8,
bottom: MediaQuery.of(context).viewInsets.bottom + 8,
),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
ElevatedButton.icon(
icon: const Icon(Icons.clear_all),
label: const Text("Clear Grid"),
onPressed: clearGrid,
),
ElevatedButton.icon(
icon: const Icon(Icons.send),
label: const Text("Send Grid (60 chars)"),
onPressed: sendGridToESP,
),
],
),
),
],
),
),
),
);
}
}
|
train_000.parquet/712
|
{
"file_path": "grid_board_app/lib/main.dart",
"repo_id": "0015/Grid_Board",
"size": 23412,
"token_count": 7888
}
|
#!/usr/bin/env bash
#-----------------------------------------------------------------------------------
# Shamelessly borrowed from ctrlaltdelete
# https://www.synology-forum.de/threads/docker-container-backup.134937/post-1186059
#
# This uses the same method that Container Manager uses
#
# Works for running and stopped containers
#-----------------------------------------------------------------------------------
# Delete json exports older than X days
DeleteOlder=7
# Specify containers to ignore
# For example:
# IgnoredContainers=(jitsi_jicofo jitsi_jvb jitsi_prosody jitsi_web synology_docviewer_2 synology_docviewer_1)
IgnoredContainers=
#-----------------------------------------------------------------------------------
scriptver="v1.0.2"
script=Synology_Docker_Export
repo="007revad/Synology_Docker_Export"
scriptname=syno_docker_export
ding(){
printf \\a
}
# Check script is running as root
if [[ $( whoami ) != "root" ]]; then
ding
echo -e "${Error}ERROR${Off} This script must be run as sudo or root!"
exit 1 # Not running as sudo or root
fi
# Get NAS model
model=$(cat /proc/sys/kernel/syno_hw_version)
#modelname="$model"
# Show script version
#echo -e "$script $scriptver\ngithub.com/$repo\n"
echo "$script $scriptver"
# Get DSM full version
productversion=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION productversion)
buildphase=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION buildphase)
buildnumber=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION buildnumber)
smallfixnumber=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION smallfixnumber)
# Show DSM full version and model
if [[ $buildphase == GM ]]; then buildphase=""; fi
if [[ $smallfixnumber -gt "0" ]]; then smallfix="-$smallfixnumber"; fi
echo "$model DSM $productversion-$buildnumber$smallfix $buildphase"
#ExportDate="$(date +%Y-%m-%d_%H-%M)"
ExportDate="$(date +%Y%m%d_%H%M)"
# Get docker share location
# DSM 7.2.1 synoshare --get-real-path and older DSM synoshare --getmap docker
# are case insensitive (docker or Docker both work)
if [[ $buildnumber -gt "64570" ]]; then
# DSM 7.2.1 and later
DockerShare=$(synoshare --get-real-path docker)
else
# DSM 7.2 and earlier
DockerShare=$(synoshare --getmap docker | grep volume | cut -d"[" -f2 | cut -d"]" -f1)
fi
if [[ ! -d "${DockerShare}" ]]; then
ding
echo -e "\nERROR docker shared folder not found!\n"
exit 1
else
ExportDir="${DockerShare}/docker_exports"
fi
[ ! -d "${ExportDir}" ] && mkdir -p "${ExportDir}"
echo -e "\nExporting container settings to ${ExportDir}\n"
# Get list of all containers (running and stopped)
for container in $(docker ps --all --format "{{ .Names }}"); do
if grep -q "$container" <<< "${IgnoredContainers[@]}" ; then
echo "Skipping ${container} on ignore list."
continue
else
export_file="${ExportDir:?}/${container}_${ExportDate}.json"
#echo "Exporting ${container} json to ${ExportDir}"
echo "Exporting ${container} json"
# synowebapi -s or --silent does not work
/usr/syno/bin/synowebapi --exec api=SYNO.Docker.Container.Profile method=export version=1 outfile="$export_file" name="$container" &>/dev/null
# Check export was successful
if [[ ! -f "$export_file" ]] || [[ $(stat -c %s "$export_file") -eq "0" ]]; then
# No file or 0 bytes
echo "Failed to export $container settings!"
else
chmod 660 "${ExportDir:?}/${container}_${ExportDate}.json"
fi
# Delete backups older than $DeleteOlder days
if [[ $DeleteOlder =~ ^[2-9][0-9]?$ ]]; then
find "$ExportDir" -name "${container}_*.json" -mtime +"$DeleteOlder" -exec rm {} \;
fi
fi
done
echo -e "\nFinished\n"
exit
|
train_000.parquet/713
|
{
"file_path": "syno_docker_export.sh",
"repo_id": "007revad/Synology_Docker_Export",
"size": 3801,
"token_count": 1395
}
|
## All my scripts, tools and guides
<img src="https://hitscounter.dev/api/hit?url=https%3A%2F%2F007revad.github.io%2F&label=Visitors&icon=github&color=%23198754&message=&style=flat&tz=UTC">
#### Contents
- [Plex](#plex)
- [Synology docker](#synology-docker)
- [Synology recovery](#synology-recovery)
- [Other Synology scripts](#other-synology-scripts)
- [Synology hardware restrictions](#synology-hardware-restrictions)
- [2025 plus models](#2025-plus-models)
- [How To Guides](#how-to-guides)
- [Synology dev](#synology-dev)
***
### Plex
- **<a href="https://github.com/007revad/Synology_Plex_Backup">Synology_Plex_Backup</a>**
- A script to backup Plex to a tgz file foror DSM 7 and DSM 6.
- Works for Plex Synology package and Plex in docker.
- **<a href="https://github.com/007revad/Asustor_Plex_Backup">Asustor_Plex_Backup</a>**
- Backup your Asustor's Plex Media Server settings and database.
- **<a href="https://github.com/007revad/Linux_Plex_Backup">Linux_Plex_Backup</a>**
- Backup your Linux Plex Media Server's settings and database.
- **<a href="https://github.com/007revad/Plex_Server_Sync">Plex_Server_Sync</a>**
- Sync your main Plex server database & metadata to a backup Plex server.
- Works for Synology, Asustor, Linux and supports Plex package or Plex in docker.
[Back to Contents](#contents)
### Synology docker
- **<a href="https://github.com/007revad/Synology_Docker_Export">Synology_Docker_export</a>**
- Export all Synology Container Manager or Docker containers' settings as json files to your docker shared folder.
- **<a href="https://github.com/007revad/Synology_ContainerManager_IPv6">Synology_ContainerManager_IPv6</a>**
- Enable IPv6 for Container Manager's bridge network.
- **<a href="https://github.com/007revad/ContainerManager_for_all_armv8">ContainerManager_for_all_armv8</a>**
- Script to install Container Manager on a RS819, DS119j, DS418, DS418j, DS218, DS218play or DS118.
- **<a href="https://github.com/007revad/Docker_Autocompose">Docker_Autocompose</a>**
- Create .yml files from your docker existing containers.
- **<a href="https://github.com/007revad/Synology_docker_cleanup">Synology_docker_cleanup</a>**
- Remove orphan docker btrfs subvolumes and images in Synology DSM 7 and DSM 6.
[Back to Contents](#contents)
### Synology recovery
- **<a href="https://github.com/007revad/Synology_DSM_reinstall">Synology_DSM_reinstall</a>**
- Easily re-install the same DSM version without losing any data or settings.
- **<a href="https://github.com/007revad/Synology_Recover_Data">Synology_Recover_Data</a>**
- A script to make it easy to recover your data from your Synology's drives using a computer.
- **<a href="https://github.com/007revad/Synology_clear_drive_error">Synology clear drive error</a>**
- Clear drive critical errors so DSM will let you use the drive.
- **<a href="https://github.com/007revad/Synology_DSM_Telnet_Password">Synology_DSM_Telnet_Password</a>**
- Synology DSM Recovery Telnet Password of the Day generator.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/Synoboot_backup">Synoboot_backup</a>**
- Back up synoboot after each DSM update so you can recover from a corrupt USBDOM.
[Back to Contents](#contents)
### Other Synology scripts
- **<a href="https://github.com/007revad/Synology_app_mover">Synology_app_mover</a>**
- Easily move Synology packages from one volume to another volume.
- **<a href="https://github.com/007revad/Video_Station_for_DSM_722">Video_Station_for_DSM_722</a>**
- Script to install Video Station in DSM 7.2.2
- **<a href="https://github.com/007revad/SS_Motion_Detection">SS_Motion_Detection</a>**
- Installs previous Surveillance Station and Advanced Media Extensions versions so motion detection and HEVC are supported.
- **<a href="https://github.com/007revad/Synology_Config_Backup">Synology_Config_Backup</a>**
- Backup and export your Synology DSM configuration.
- **<a href="https://github.com/007revad/Synology_CPU_temperature">Synology_CPU_temperature</a>**
- Get and log Synology NAS CPU temperature via SSH.
- **<a href="https://github.com/007revad/Synology_SMART_info">Synology_SMART_info</a>**
- Show Synology smart test progress or smart health and attributes.
- **<a href="https://github.com/007revad/Synology_Cleanup_Coredumps">Synology_Cleanup_Coredumps</a>**
- Cleanup memory core dumps from crashed processes.
- **<a href="https://github.com/007revad/Synology_toggle_reset_button">Synology_toggle_reset_button</a>**
- Script to disable or enable the reset button and show current setting.
- **<a href="https://github.com/007revad/Synology_Download_Station_Chrome_Extension">Synology_Download_Station_Chrome_Extension</a>**
- Download Station Chrome Extension.
- **<a href="https://github.com/007revad/Seagate_lowCurrentSpinup">Seagate_lowCurrentSpinup</a>**
- This script avoids the need to buy and install a higher wattage power supply when using multiple large Seagate SATA HDDs.
[Back to Contents](#contents)
### Synology hardware restrictions
- **<a href="https://github.com/007revad/Synology_HDD_db">Synology_HDD_db</a>**
- Add your SATA or SAS HDDs and SSDs plus SATA and NVMe M.2 drives to your Synology's compatible drive databases, including your Synology M.2 PCIe card and Expansion Unit databases.
- **<a href="https://github.com/007revad/Synology_enable_M2_volume">Synology_enable_M2_volume</a>**
- Enable creating volumes with non-Synology M.2 drives.
- Enable Health Info for non-Synology NVMe drives (not in DSM 7.2.1 or later).
- **<a href="https://github.com/007revad/Synology_M2_volume">Synology_M2_volume</a>**
- Easily create an M.2 volume on Synology NAS.
- **<a href="https://github.com/007revad/Synology_enable_M2_card">Synology_enable_M2_card</a>**
- Enable Synology M.2 PCIe cards in Synology NAS that don't officially support them.
- **<a href="https://github.com/007revad/Synology_enable_eunit">Synology_enable_eunit</a>**
- Enable an unsupported Synology eSATA Expansion Unit models.
- **<a href="https://github.com/007revad/Synology_enable_Deduplication">Synology_enable_Deduplication</a>**
- Enable deduplication with non-Synology SSDs and unsupported NAS models.
- **<a href="https://github.com/007revad/Synology_SHR_switch">Synology_SHR_switch</a>**
- Easily switch between SHR and RAID Groups, or enable RAID F1.
- **<a href="https://github.com/007revad/Synology_enable_sequential_IO">Synology_enable_sequential_IO</a>**
- Enables sequential I/O for your SSD caches, like DSM 6 had.
- **<a href="https://github.com/007revad/Synology_Information_Wiki">Synology_Information_Wiki</a>**
- Information about Synology hardware.
[Back to Contents](#contents)
### 2025 plus models
- **<a href="https://github.com/007revad/Transcode_for_x25">Transcode_for_x25</a>**
- Installs the modules needed for Plex or Jellyfin hardware transcoding in DS425+ and DS225+.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md">2025 series or later Plus models</a>**
- Unverified 3rd party drive limitations and unofficial solutions.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#setting-up-a-new-2025-or-later-plus-model-with-only-unverified-hdds">Setup with only 3rd party drives</a>**
- Setting up a new 2025 or later plus model with only unverified HDDs.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#deleting-and-recreating-your-storage-pool-on-unverified-hdds">Recreating storage pool on migrated drives</a>**
- Deleting and recreating your storage pool on unverified HDDs.
[Back to Contents](#contents)
### How To Guides
- **<a href="https://github.com/007revad/Synology_SSH_key_setup">Synology_SSH_key_setup</a>**
- How to setup SSH key authentication for your Synology.
[Back to Contents](#contents)
### Synology dev
- **<a href="https://github.com/007revad/Download_Synology_Archive">Download_Synology_Archive</a>**
- Download all or part of the Synology archive.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/ScriptNotify">ScriptNotify</a>**
- DSM 7 package to allow your scripts to send DSM notifications.
- **<a href="https://github.com/007revad/DTC_GUI_for_Windows">DTC_GUI_for_Windows</a>**
- GUI for DTC.exe for Windows.
[Back to Contents](#contents)
|
train_000.parquet/714
|
{
"file_path": "my-other-scripts.md",
"repo_id": "007revad/Synology_Docker_Export",
"size": 9099,
"token_count": 3421
}
|
# <img src="images/icon.png" width="40"> Synology Docker Export
<a href="https://github.com/007revad/Synology_Docker_Export/releases"><img src="https://img.shields.io/github/release/007revad/Synology_Docker_Export.svg"></a>

[](https://www.paypal.com/paypalme/007revad)
[](https://github.com/sponsors/007revad)
[](https://user-badge.committers.top/australia/007revad)
### Description
Export all Synology Container Manager or Docker containers' settings as json files to your docker shared folder
- Works with DSM 7's Container Manager and DSM 6's Docker.
- Exports settings for running and stopped containers.
- Optionally specify containers to ignore.
- Optionally set age of old exports to delete.
The exported json files can later be [imported in Synology's Container Manager ui or Docker ui](#importing).
The advantage of the exported json files is they are truly portable as each container's mapped volumes are **not** hard coded to a specific volume. DSM knows what volume each shared folder is located on.
### Download the script
1. Download the latest version _Source code (zip)_ from https://github.com/007revad/Synology_Docker_Export/releases
2. Save the download zip file to a folder on the Synology.
3. Unzip the zip file.
### Options
There are 2 options you can set in the script:
```
# Delete json exports older than X days
DeleteOlder=7
# Specify containers to ignore if you don't want to export their settings
# For example:
# IgnoredContainers=(jitsi_jicofo jitsi_jvb jitsi_prosody jitsi_web synology_docviewer_2)
IgnoredContainers=
```
### To run the script via task scheduler
See [How to run from task scheduler](https://github.com/007revad/Synology_Docker_Export/blob/main/how_to_run_from_scheduler.md)
### To run the script via SSH
[How to enable SSH and login to DSM via SSH](https://kb.synology.com/en-global/DSM/tutorial/How_to_login_to_DSM_with_root_permission_via_SSH_Telnet)
```YAML
sudo -s /volume1/scripts/syno_docker_export.sh
```
**Note:** Replace /volume1/scripts/ with the path to where the script is located.
### Troubleshooting
If the script won't run check the following:
1. Make sure you download the zip file and unzipped it to a folder on your Synology (not on your computer).
2. If the path to the script contains any spaces you need to enclose the path/scriptname in double quotes:
```YAML
sudo -s "/volume1/my scripts/syno_docker_export.sh"
```
3. Make sure you unpacked the zip or rar file that you downloaded and are trying to run the syno_docker_export.sh file.
4. Set the script file as executable:
```YAML
sudo chmod +x "/volume1/scripts/syno_docker_export.sh"
```
### Screenshots
<!--- <p align="center">Description of image 1 goes here</p> /> --->
<p align="center"><img src="/images/script.png"></p>
<br>
<!--- <p align="center">Description of image 2 goes here</p> --->
<p align="center"><img src="/images/exports.png"></p>
### Importing
Importing the exported json files in Synology's Container Manager ui or Docker ui
<!--- <p align="center">Description of image 1 goes here</p> /> --->
<p align="center"><img src="/images/import-1.png"></p>
<br>
<!--- <p align="center">Description of image 2 goes here</p> --->
<p align="center"><img src="/images/import-2.png"></p>
<br>
<!--- <p align="center">Description of image 2 goes here</p> --->
<p align="center"><img src="/images/import-3.png"></p>
[Back to Description](#description)
<br>
|
train_000.parquet/715
|
{
"file_path": "README.md",
"repo_id": "007revad/Synology_Docker_Export",
"size": 3921,
"token_count": 1438
}
|
# How to run a script in Synology Task Scheduler
To run a script from Task Scheduler follow these steps:
**Note:** You can setup a schedule task and leave it disabled, so it only runs when you select the task in the Task Scheduler and click on the Run button.
1. Go to **Control Panel** > **Task Scheduler** > click **Create** > and select **Scheduled Task**.
2. Select **User-defined script**.
3. Enter a task name.
4. Select **root** as the user (The script needs to run as root).
5. Untick **Enable** so it does **not** run on a schedule.
6. Click **Task Settings**.
7. In the box under **User-defined script** type the path to the script.
- e.g. If you saved the script to a shared folder on volume 1 called "scripts" you'd type: **/volume1/scripts/syno_docker-export.sh**
8. Click **OK** to save the settings.
9. Click on the task - but **don't** enable it - then click **Run**.
10. Once the script has run you can delete the task, or keep in case you need it again.
**Here's some screenshots showing what needs to be set:**
<p align="center">Step 1</p>
<p align="center"><img src="images/schedule-1a.png"></p>
<p align="center">Step 2</p>
<p align="center"><img src="images/schedule-2a.png"></p>
<p align="center">Step 3</p>
<p align="center"><img src="images/schedule-3a.png"></p>
<p align="center">Step 4</p>
<p align="center"><img src="images/schedule-4a.png"></p>
|
train_000.parquet/716
|
{
"file_path": "how_to_run_from_scheduler.md",
"repo_id": "007revad/Synology_Docker_Export",
"size": 1387,
"token_count": 472
}
|
## All my scripts, tools and guides
<img src="https://hitscounter.dev/api/hit?url=https%3A%2F%2F007revad.github.io%2F&label=Visitors&icon=github&color=%23198754&message=&style=flat&tz=UTC">
#### Contents
- [Plex](#plex)
- [Synology docker](#synology-docker)
- [Synology recovery](#synology-recovery)
- [Other Synology scripts](#other-synology-scripts)
- [Synology hardware restrictions](#synology-hardware-restrictions)
- [2025 plus models](#2025-plus-models)
- [How To Guides](#how-to-guides)
- [Synology dev](#synology-dev)
***
### Plex
- **<a href="https://github.com/007revad/Synology_Plex_Backup">Synology_Plex_Backup</a>**
- A script to backup Plex to a tgz file foror DSM 7 and DSM 6.
- Works for Plex Synology package and Plex in docker.
- **<a href="https://github.com/007revad/Asustor_Plex_Backup">Asustor_Plex_Backup</a>**
- Backup your Asustor's Plex Media Server settings and database.
- **<a href="https://github.com/007revad/Linux_Plex_Backup">Linux_Plex_Backup</a>**
- Backup your Linux Plex Media Server's settings and database.
- **<a href="https://github.com/007revad/Plex_Server_Sync">Plex_Server_Sync</a>**
- Sync your main Plex server database & metadata to a backup Plex server.
- Works for Synology, Asustor, Linux and supports Plex package or Plex in docker.
[Back to Contents](#contents)
### Synology docker
- **<a href="https://github.com/007revad/Synology_Docker_Export">Synology_Docker_export</a>**
- Export all Synology Container Manager or Docker containers' settings as json files to your docker shared folder.
- **<a href="https://github.com/007revad/Synology_ContainerManager_IPv6">Synology_ContainerManager_IPv6</a>**
- Enable IPv6 for Container Manager's bridge network.
- **<a href="https://github.com/007revad/ContainerManager_for_all_armv8">ContainerManager_for_all_armv8</a>**
- Script to install Container Manager on a RS819, DS119j, DS418, DS418j, DS218, DS218play or DS118.
- **<a href="https://github.com/007revad/Docker_Autocompose">Docker_Autocompose</a>**
- Create .yml files from your docker existing containers.
- **<a href="https://github.com/007revad/Synology_docker_cleanup">Synology_docker_cleanup</a>**
- Remove orphan docker btrfs subvolumes and images in Synology DSM 7 and DSM 6.
[Back to Contents](#contents)
### Synology recovery
- **<a href="https://github.com/007revad/Synology_DSM_reinstall">Synology_DSM_reinstall</a>**
- Easily re-install the same DSM version without losing any data or settings.
- **<a href="https://github.com/007revad/Synology_Recover_Data">Synology_Recover_Data</a>**
- A script to make it easy to recover your data from your Synology's drives using a computer.
- **<a href="https://github.com/007revad/Synology_clear_drive_error">Synology clear drive error</a>**
- Clear drive critical errors so DSM will let you use the drive.
- **<a href="https://github.com/007revad/Synology_DSM_Telnet_Password">Synology_DSM_Telnet_Password</a>**
- Synology DSM Recovery Telnet Password of the Day generator.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/Synoboot_backup">Synoboot_backup</a>**
- Back up synoboot after each DSM update so you can recover from a corrupt USBDOM.
[Back to Contents](#contents)
### Other Synology scripts
- **<a href="https://github.com/007revad/Synology_app_mover">Synology_app_mover</a>**
- Easily move Synology packages from one volume to another volume.
- **<a href="https://github.com/007revad/Video_Station_for_DSM_722">Video_Station_for_DSM_722</a>**
- Script to install Video Station in DSM 7.2.2
- **<a href="https://github.com/007revad/SS_Motion_Detection">SS_Motion_Detection</a>**
- Installs previous Surveillance Station and Advanced Media Extensions versions so motion detection and HEVC are supported.
- **<a href="https://github.com/007revad/Synology_Config_Backup">Synology_Config_Backup</a>**
- Backup and export your Synology DSM configuration.
- **<a href="https://github.com/007revad/Synology_CPU_temperature">Synology_CPU_temperature</a>**
- Get and log Synology NAS CPU temperature via SSH.
- **<a href="https://github.com/007revad/Synology_SMART_info">Synology_SMART_info</a>**
- Show Synology smart test progress or smart health and attributes.
- **<a href="https://github.com/007revad/Synology_Cleanup_Coredumps">Synology_Cleanup_Coredumps</a>**
- Cleanup memory core dumps from crashed processes.
- **<a href="https://github.com/007revad/Synology_toggle_reset_button">Synology_toggle_reset_button</a>**
- Script to disable or enable the reset button and show current setting.
- **<a href="https://github.com/007revad/Synology_Download_Station_Chrome_Extension">Synology_Download_Station_Chrome_Extension</a>**
- Download Station Chrome Extension.
- **<a href="https://github.com/007revad/Seagate_lowCurrentSpinup">Seagate_lowCurrentSpinup</a>**
- This script avoids the need to buy and install a higher wattage power supply when using multiple large Seagate SATA HDDs.
[Back to Contents](#contents)
### Synology hardware restrictions
- **<a href="https://github.com/007revad/Synology_HDD_db">Synology_HDD_db</a>**
- Add your SATA or SAS HDDs and SSDs plus SATA and NVMe M.2 drives to your Synology's compatible drive databases, including your Synology M.2 PCIe card and Expansion Unit databases.
- **<a href="https://github.com/007revad/Synology_enable_M2_volume">Synology_enable_M2_volume</a>**
- Enable creating volumes with non-Synology M.2 drives.
- Enable Health Info for non-Synology NVMe drives (not in DSM 7.2.1 or later).
- **<a href="https://github.com/007revad/Synology_M2_volume">Synology_M2_volume</a>**
- Easily create an M.2 volume on Synology NAS.
- **<a href="https://github.com/007revad/Synology_enable_M2_card">Synology_enable_M2_card</a>**
- Enable Synology M.2 PCIe cards in Synology NAS that don't officially support them.
- **<a href="https://github.com/007revad/Synology_enable_eunit">Synology_enable_eunit</a>**
- Enable an unsupported Synology eSATA Expansion Unit models.
- **<a href="https://github.com/007revad/Synology_enable_Deduplication">Synology_enable_Deduplication</a>**
- Enable deduplication with non-Synology SSDs and unsupported NAS models.
- **<a href="https://github.com/007revad/Synology_SHR_switch">Synology_SHR_switch</a>**
- Easily switch between SHR and RAID Groups, or enable RAID F1.
- **<a href="https://github.com/007revad/Synology_enable_sequential_IO">Synology_enable_sequential_IO</a>**
- Enables sequential I/O for your SSD caches, like DSM 6 had.
- **<a href="https://github.com/007revad/Synology_Information_Wiki">Synology_Information_Wiki</a>**
- Information about Synology hardware.
[Back to Contents](#contents)
### 2025 plus models
- **<a href="https://github.com/007revad/Transcode_for_x25">Transcode_for_x25</a>**
- Installs the modules needed for Plex or Jellyfin hardware transcoding in DS425+ and DS225+.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md">2025 series or later Plus models</a>**
- Unverified 3rd party drive limitations and unofficial solutions.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#setting-up-a-new-2025-or-later-plus-model-with-only-unverified-hdds">Setup with only 3rd party drives</a>**
- Setting up a new 2025 or later plus model with only unverified HDDs.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#deleting-and-recreating-your-storage-pool-on-unverified-hdds">Recreating storage pool on migrated drives</a>**
- Deleting and recreating your storage pool on unverified HDDs.
[Back to Contents](#contents)
### How To Guides
- **<a href="https://github.com/007revad/Synology_SSH_key_setup">Synology_SSH_key_setup</a>**
- How to setup SSH key authentication for your Synology.
[Back to Contents](#contents)
### Synology dev
- **<a href="https://github.com/007revad/Download_Synology_Archive">Download_Synology_Archive</a>**
- Download all or part of the Synology archive.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/ScriptNotify">ScriptNotify</a>**
- DSM 7 package to allow your scripts to send DSM notifications.
- **<a href="https://github.com/007revad/DTC_GUI_for_Windows">DTC_GUI_for_Windows</a>**
- GUI for DTC.exe for Windows.
[Back to Contents](#contents)
|
train_000.parquet/717
|
{
"file_path": "my-other-scripts.md",
"repo_id": "007revad/Synology_docker_cleanup",
"size": 9099,
"token_count": 3421
}
|
#!/usr/bin/env bash
# shellcheck disable=SC2076
#--------------------------------------------------------------------
# Remove orphan docker btrfs subvolumes in Synology DSM 7 and DSM 6
#
# Github: https://github.com/007revad/Synology_docker_cleanup
# Script verified at https://www.shellcheck.net/
#
# To run in a shell (replace /volume1/scripts/ with path to script):
# sudo -s /volume1/scripts/syno_docker_cleanup.sh
#--------------------------------------------------------------------
scriptver="v1.2.4"
script=Synology_docker_cleanup
repo="007revad/Synology_docker_cleanup"
scriptname=syno_docker_cleanup
# Shell Colors
#Black='\e[0;30m' # ${Black}
Red='\e[0;31m' # ${Red}
#Green='\e[0;32m' # ${Green}
Yellow='\e[0;33m' # ${Yellow}
#Blue='\e[0;34m' # ${Blue}
#Purple='\e[0;35m' # ${Purple}
Cyan='\e[0;36m' # ${Cyan}
#White='\e[0;37m' # ${White}
Error='\e[41m' # ${Error}
#Warn='\e[47;31m' # ${Warn}
Off='\e[0m' # ${Off}
# Show script version
echo -e "$script $scriptver\n"
# Check script is running as root
if [[ $( whoami ) != "root" ]]; then
echo -e "${Error}ERROR${Off} This script must be run as sudo or root!"
exit 1
fi
# Check script is running on a Synology NAS
if ! /usr/bin/uname -a | grep -i synology >/dev/null; then
echo -e "${Error}ERROR${Off} This script is NOT running on a Synology NAS!"
echo "Copy the script to a folder on the Synology and run it from there."
exit 1
fi
# Check Container Manager or Docker is installed
if [[ -d /var/packages/ContainerManager ]]; then
docker_pkg="ContainerManager"
docker_pkg_name="Container Manager"
elif [[ -d /var/packages/Docker ]]; then
docker_pkg="Docker"
docker_pkg_name="Docker"
else
echo -e "${Error}ERROR${Off} Container Manager or Docker is not installed!"
exit 1
fi
# Check Container Manager or Docker is running
if ! /usr/syno/bin/synopkg status "$docker_pkg" >/dev/null; then
echo -e "${Error}ERROR${Off} $docker_pkg_name is not running!"
exit 1
fi
# Get volume @docker is on
if [[ $docker_pkg == "ContainerManager" ]]; then
source=$(readlink /var/packages/ContainerManager/var/docker)
else
source=$(readlink /var/packages/Docker/target/docker)
fi
if [[ -d $source ]]; then
volume=$(echo "$source" | cut -d"/" -f2)
else
echo -e "${Error}ERROR${Off} @docker folder not found!"
echo "$source"
exit 1
fi
#volume="volume2" # debug
# Get list of @docker/btrfs/subvolumes
#echo -e "\n${Cyan}@docker/btrfs/subvolumes list:${Off}" # debug
count="0"
for subvol in /"$volume"/@docker/btrfs/subvolumes/*; do
#echo "$subvol" # debug
allsubvolumes+=("$subvol")
count=$((count+1))
done
s=""
if [[ $count -gt "0" ]]; then s="s"; fi
echo -e "$count ${Yellow}total${Off} docker btrfs subvolume$s found."
# Get list of current @docker/btrfs/subvolumes
#echo -e "\n${Cyan}btrfs subvolume list:${Off}" # debug
readarray -t temp < <(btrfs subvolume list -p /"$volume"/@docker/btrfs/subvolumes)
count="0"
for v in "${temp[@]}"; do
#echo "1 $v" # debug
sub=$(echo "$v" | grep '@docker/btrfs/subvolumes' | awk '{print $NF}')
if [[ $sub =~ ^@docker/btrfs/subvolumes/* ]]; then
#echo "/$volume/$sub" # debug
currentsubvolumes+=("/$volume/$sub")
count=$((count+1))
fi
done
s=""
if [[ $count -gt "0" ]]; then s="s"; fi
echo -e "$count ${Yellow}active${Off} docker btrfs subvolume$s found."
# Create list of orphan subvolumes
#echo -e "\n${Cyan}Orphan subvolume list:${Off}" # debug
count="0"
for v in "${allsubvolumes[@]}"; do
if [[ ! "${currentsubvolumes[*]}" =~ "$v" ]]; then
#echo "$v" # debug
orphansubvolumes+=("$v")
count=$((count+1))
fi
done
s=""
if [[ $count -gt "0" ]]; then s="s"; fi
echo -e "$count ${Yellow}orphan${Off} docker btrfs subvolume$s found."
# Stop Container Manager or Docker
#echo -e "\nStopping $docker_pkg_name..."
#/usr/syno/bin/synopkg stop $docker_pkg >/dev/null
# Delete orphan subvolumes
if [[ ${#orphansubvolumes[@]} -gt "0" ]]; then
s=""
if [[ $count -gt "0" ]]; then s="s"; fi
echo -e "\n${Cyan}Deleting $count orphan subvolume$s...${Off}"
for o in "${orphansubvolumes[@]}"; do
#echo "$o" # debug
if [[ -d "$o" ]]; then
if rm -rf "$o"; then
deleted=$((deleted+1))
else
echo -e "${Red}Failed to delete${Off} $o"
failed=$((failed+1))
fi
else
echo -e "${Red}Failed to delete${Off} $o"
failed=$((failed+1))
fi
done
else
echo -e "\n${Yellow}No orphan subvolumes to delete.${Off}"
fi
# Start Container Manager or Docker
#echo -e "\nStarting $docker_pkg_name..."
#/usr/syno/bin/synopkg start $docker_pkg >/dev/null
# Delete dangling images
readarray -t temp < <(docker images --filter "dangling=true")
count=$((${#temp[@]}-1))
if [[ $count -gt "0" ]]; then
s=""
if [[ $count -gt "1" ]]; then s="s"; fi
echo -e "\n${Cyan}Deleting $count orphan image$s...${Off}"
docker rmi "$(docker images -f "dangling=true" -q)"
else
echo -e "\n${Yellow}No dangling images to delete.${Off}"
fi
# Shows results
echo ""
if [[ $deleted -gt "0" ]]; then
echo -e "\n${Yellow}Deleted $deleted orphan subvolumes.${Off}"
# Delete .syno.bak containers
if [[ ! $(docker ps -a --format "{{.Names}}" | grep -qE .*\.syno\.bak$) ]]; then
echo -e "\nYou can now delete any containers with names ending in .syno.bak:"
if [[ $docker_pkg == "ContainerManager" ]]; then
echo " 1. Open Container Manager."
else
echo " 1. Open $docker_pkg."
fi
echo " 2. Click on Container."
echo " 3. Select a container that ends in .syno.bak"
echo " 4. Click on Action and select Delete."
echo " 5. Click on the Delete button."
echo " 6. Repeat steps 3 to 5 for other .syno.bak containers"
fi
fi
if [[ $failed -gt "0" ]]; then
echo -e "\n${Error}ERROR${Off} Failed to delete ${Cyan}$failed${Off} orphan subvolumes!"
fi
|
train_000.parquet/718
|
{
"file_path": "syno_docker_cleanup.sh",
"repo_id": "007revad/Synology_docker_cleanup",
"size": 6082,
"token_count": 2479
}
|
# Synology docker cleanup
<a href="https://github.com/007revad/Synology_docker_cleanup/releases"><img src="https://img.shields.io/github/release/007revad/Synology_docker_cleanup.svg"></a>

[](https://www.paypal.com/paypalme/007revad)
[](https://github.com/sponsors/007revad)
[](https://user-badge.committers.top/australia/007revad)
### Description
Remove orphan docker btrfs subvolumes and dangling images in Synology DSM 7 and DSM 6
### After running the script
If any containers get stuck while updating just stop then start Container Manager (or Docker for DSM 6).
<p align="left"><img src="/images/updating.png"></p>
If you have any duplicate containers whose name ends in .syno.bak select it then click on "Action > Delete".
<p align="left"><img src="/images/syno.bak.png"></p>
### Screenshots
<p align="center">Deleting orphan docker subvolumes</p>
<p align="center"><img src="/images/delete_orphans.png"></p>
<br>
<p align="center">No more orphan docker subvolumes</p>
<p align="center"><img src="/images/no_orphans.png"></p>
<br>
|
train_000.parquet/719
|
{
"file_path": "README.md",
"repo_id": "007revad/Synology_docker_cleanup",
"size": 1483,
"token_count": 609
}
|
#!/bin/bash
#----------------------------------------------------------------------------
# Default DSM telnet password used to be blank.
#
# Generate DSM telnet 'password of the day' if 101-0101 does not work.
#
# https://blog.thomasmarcussen.com/synology-nas-recovery-password-telnet/
#
# In case you don't want to contact Synology here is how it's generated
#
# 1st char = month in hexadecimal, lower case (1=Jan, … , a=Oct, b=Nov, c=Dec)
# 2-3 = month in decimal, zero padded and starting in 1 (01, 02, 03, …, 11, 12)
# 4 = dash
# 5-6 = day of the month in hex (01, 02 .., 0A, .., 1F)
# 7-8 = greatest common divisor between month and day, zero padded. This is always a number between 01 and 12.
#
# If today is Oct 15, the password would be: a10-0f05
# a = month in hex
# 10 = month in decimal
# 0f = day in hex
# 05 = greatest divisor between 10 and 15
#
# https://servicemax.com.au/tips/synology-recovery-mode-telnet/
# https://github.com/adamphetamine/synology/blob/main/telnet-password
#----------------------------------------------------------------------------
script="Synology_DSM_Telnet_Password"
scriptver="1.0.2"
repo="007revad/Synology_DSM_Telnet_Password"
usage(){
cat <<EOF
$script $scriptver - by 007revad
Usage: $(basename "$0") [options]
Options:
--day= Set the day to calculate password from
If --day= is used you must also use --month=
Day must be numeric. e.g. --day=24
--month= Set the month to calculate password from
If --month= is used you must also use --day=
Month must be numeric. e.g. --month=9
-h, --help Show this help message
-v, --version Show the script version
EOF
exit 0
}
scriptversion(){
cat <<EOF
$script $scriptver - by 007revad
See https://github.com/$repo
EOF
exit 0
}
# Save options used
args=("$@")
# Check for flags with getopt
if options="$(getopt -o abcdefghijklmnopqrstuvwxyz0123456789 -l \
day:,month:,help,version -- "${args[@]}")"; then
eval set -- "$options"
while true; do
case "${1,,}" in
-h|--help) # Show usage options
usage
;;
-v|--version) # Show script version
scriptversion
;;
-d|--day) # Set day variable
if [[ $2 =~ ^0[1-9]?$ ]]; then
# Day is 01 to 09
day="${2#?}"
shift
elif [[ $2 =~ ^[1-3][0-9]?$ ]]; then
# Day is 1 to 31
day="$2"
shift
fi
;;
-m|--month) # Set month variable
if [[ $2 =~ ^0[1-9]?$ ]]; then
# Month is 01 to 09
month="${2#?}"
shift
elif [[ $2 =~ ^[1-9][0-9]?$ ]]; then
# Month is 1 to 12
month="$2"
shift
fi
;;
--)
shift
break
;;
*) # Show usage options
echo -e "Invalid option '$1'\n"
usage "$1"
;;
esac
shift
done
else
echo
usage
fi
# Show script name and version
echo -e "$script $scriptver - by 007revad \n"
if [[ -z $month ]] && [[ -z $day ]]; then
# Get current month and day
month=$(date +%-m) # Month (1 to 12)
day=$(date +%-d) # Day of the month (1 to 31)
echo "Today's Day: $day"
echo -e "Today's Month: $month \n"
else
echo "Day: $day"
echo -e "Month: $month \n"
fi
# Validate day and month
if [[ ! $day -gt "0" ]] || [[ ! $day -lt "32" ]]; then
echo "Day is invalid!" && exit
elif [[ ! $month -gt "0" ]] || [[ ! $month -lt "13" ]]; then
echo "Month is invalid!" && exit
fi
# Function to calculate greatest common divisor in Bash
gcd(){
# $1 decimal month as decimal
# $2 decimal day as decimal
if [[ $2 -eq 0 ]]; then
echo "$1"
else
gcd "$2" $(($1 % $2))
fi
}
# Calculate greatest common divisor between month and day
gcd_result=$(gcd "$month" "$day")
# Format and print the password
printf "DSM Telnet Password for today is: %x%02d-%02x%02d\n\n" "$month" "$month" "$day" "$gcd_result"
|
train_000.parquet/720
|
{
"file_path": "dsm_telnet_password.sh",
"repo_id": "007revad/Synology_DSM_Telnet_Password",
"size": 4420,
"token_count": 1554
}
|
## All my scripts, tools and guides
<img src="https://hitscounter.dev/api/hit?url=https%3A%2F%2F007revad.github.io%2F&label=Visitors&icon=github&color=%23198754&message=&style=flat&tz=UTC">
#### Contents
- [Plex](#plex)
- [Synology docker](#synology-docker)
- [Synology recovery](#synology-recovery)
- [Other Synology scripts](#other-synology-scripts)
- [Synology hardware restrictions](#synology-hardware-restrictions)
- [2025 plus models](#2025-plus-models)
- [How To Guides](#how-to-guides)
- [Synology dev](#synology-dev)
***
### Plex
- **<a href="https://github.com/007revad/Synology_Plex_Backup">Synology_Plex_Backup</a>**
- A script to backup Plex to a tgz file foror DSM 7 and DSM 6.
- Works for Plex Synology package and Plex in docker.
- **<a href="https://github.com/007revad/Asustor_Plex_Backup">Asustor_Plex_Backup</a>**
- Backup your Asustor's Plex Media Server settings and database.
- **<a href="https://github.com/007revad/Linux_Plex_Backup">Linux_Plex_Backup</a>**
- Backup your Linux Plex Media Server's settings and database.
- **<a href="https://github.com/007revad/Plex_Server_Sync">Plex_Server_Sync</a>**
- Sync your main Plex server database & metadata to a backup Plex server.
- Works for Synology, Asustor, Linux and supports Plex package or Plex in docker.
[Back to Contents](#contents)
### Synology docker
- **<a href="https://github.com/007revad/Synology_Docker_Export">Synology_Docker_export</a>**
- Export all Synology Container Manager or Docker containers' settings as json files to your docker shared folder.
- **<a href="https://github.com/007revad/Synology_ContainerManager_IPv6">Synology_ContainerManager_IPv6</a>**
- Enable IPv6 for Container Manager's bridge network.
- **<a href="https://github.com/007revad/ContainerManager_for_all_armv8">ContainerManager_for_all_armv8</a>**
- Script to install Container Manager on a RS819, DS119j, DS418, DS418j, DS218, DS218play or DS118.
- **<a href="https://github.com/007revad/Docker_Autocompose">Docker_Autocompose</a>**
- Create .yml files from your docker existing containers.
- **<a href="https://github.com/007revad/Synology_docker_cleanup">Synology_docker_cleanup</a>**
- Remove orphan docker btrfs subvolumes and images in Synology DSM 7 and DSM 6.
[Back to Contents](#contents)
### Synology recovery
- **<a href="https://github.com/007revad/Synology_DSM_reinstall">Synology_DSM_reinstall</a>**
- Easily re-install the same DSM version without losing any data or settings.
- **<a href="https://github.com/007revad/Synology_Recover_Data">Synology_Recover_Data</a>**
- A script to make it easy to recover your data from your Synology's drives using a computer.
- **<a href="https://github.com/007revad/Synology_clear_drive_error">Synology clear drive error</a>**
- Clear drive critical errors so DSM will let you use the drive.
- **<a href="https://github.com/007revad/Synology_DSM_Telnet_Password">Synology_DSM_Telnet_Password</a>**
- Synology DSM Recovery Telnet Password of the Day generator.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/Synoboot_backup">Synoboot_backup</a>**
- Back up synoboot after each DSM update so you can recover from a corrupt USBDOM.
[Back to Contents](#contents)
### Other Synology scripts
- **<a href="https://github.com/007revad/Synology_app_mover">Synology_app_mover</a>**
- Easily move Synology packages from one volume to another volume.
- **<a href="https://github.com/007revad/Video_Station_for_DSM_722">Video_Station_for_DSM_722</a>**
- Script to install Video Station in DSM 7.2.2
- **<a href="https://github.com/007revad/SS_Motion_Detection">SS_Motion_Detection</a>**
- Installs previous Surveillance Station and Advanced Media Extensions versions so motion detection and HEVC are supported.
- **<a href="https://github.com/007revad/Synology_Config_Backup">Synology_Config_Backup</a>**
- Backup and export your Synology DSM configuration.
- **<a href="https://github.com/007revad/Synology_CPU_temperature">Synology_CPU_temperature</a>**
- Get and log Synology NAS CPU temperature via SSH.
- **<a href="https://github.com/007revad/Synology_SMART_info">Synology_SMART_info</a>**
- Show Synology smart test progress or smart health and attributes.
- **<a href="https://github.com/007revad/Synology_Cleanup_Coredumps">Synology_Cleanup_Coredumps</a>**
- Cleanup memory core dumps from crashed processes.
- **<a href="https://github.com/007revad/Synology_toggle_reset_button">Synology_toggle_reset_button</a>**
- Script to disable or enable the reset button and show current setting.
- **<a href="https://github.com/007revad/Synology_Download_Station_Chrome_Extension">Synology_Download_Station_Chrome_Extension</a>**
- Download Station Chrome Extension.
- **<a href="https://github.com/007revad/Seagate_lowCurrentSpinup">Seagate_lowCurrentSpinup</a>**
- This script avoids the need to buy and install a higher wattage power supply when using multiple large Seagate SATA HDDs.
[Back to Contents](#contents)
### Synology hardware restrictions
- **<a href="https://github.com/007revad/Synology_HDD_db">Synology_HDD_db</a>**
- Add your SATA or SAS HDDs and SSDs plus SATA and NVMe M.2 drives to your Synology's compatible drive databases, including your Synology M.2 PCIe card and Expansion Unit databases.
- **<a href="https://github.com/007revad/Synology_enable_M2_volume">Synology_enable_M2_volume</a>**
- Enable creating volumes with non-Synology M.2 drives.
- Enable Health Info for non-Synology NVMe drives (not in DSM 7.2.1 or later).
- **<a href="https://github.com/007revad/Synology_M2_volume">Synology_M2_volume</a>**
- Easily create an M.2 volume on Synology NAS.
- **<a href="https://github.com/007revad/Synology_enable_M2_card">Synology_enable_M2_card</a>**
- Enable Synology M.2 PCIe cards in Synology NAS that don't officially support them.
- **<a href="https://github.com/007revad/Synology_enable_eunit">Synology_enable_eunit</a>**
- Enable an unsupported Synology eSATA Expansion Unit models.
- **<a href="https://github.com/007revad/Synology_enable_Deduplication">Synology_enable_Deduplication</a>**
- Enable deduplication with non-Synology SSDs and unsupported NAS models.
- **<a href="https://github.com/007revad/Synology_SHR_switch">Synology_SHR_switch</a>**
- Easily switch between SHR and RAID Groups, or enable RAID F1.
- **<a href="https://github.com/007revad/Synology_enable_sequential_IO">Synology_enable_sequential_IO</a>**
- Enables sequential I/O for your SSD caches, like DSM 6 had.
- **<a href="https://github.com/007revad/Synology_Information_Wiki">Synology_Information_Wiki</a>**
- Information about Synology hardware.
[Back to Contents](#contents)
### 2025 plus models
- **<a href="https://github.com/007revad/Transcode_for_x25">Transcode_for_x25</a>**
- Installs the modules needed for Plex or Jellyfin hardware transcoding in DS425+ and DS225+.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md">2025 series or later Plus models</a>**
- Unverified 3rd party drive limitations and unofficial solutions.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#setting-up-a-new-2025-or-later-plus-model-with-only-unverified-hdds">Setup with only 3rd party drives</a>**
- Setting up a new 2025 or later plus model with only unverified HDDs.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#deleting-and-recreating-your-storage-pool-on-unverified-hdds">Recreating storage pool on migrated drives</a>**
- Deleting and recreating your storage pool on unverified HDDs.
[Back to Contents](#contents)
### How To Guides
- **<a href="https://github.com/007revad/Synology_SSH_key_setup">Synology_SSH_key_setup</a>**
- How to setup SSH key authentication for your Synology.
[Back to Contents](#contents)
### Synology dev
- **<a href="https://github.com/007revad/Download_Synology_Archive">Download_Synology_Archive</a>**
- Download all or part of the Synology archive.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/ScriptNotify">ScriptNotify</a>**
- DSM 7 package to allow your scripts to send DSM notifications.
- **<a href="https://github.com/007revad/DTC_GUI_for_Windows">DTC_GUI_for_Windows</a>**
- GUI for DTC.exe for Windows.
[Back to Contents](#contents)
|
train_000.parquet/721
|
{
"file_path": "my-other-scripts.md",
"repo_id": "007revad/Synology_DSM_Telnet_Password",
"size": 9099,
"token_count": 3421
}
|
## All my scripts, tools and guides
<img src="https://hitscounter.dev/api/hit?url=https%3A%2F%2F007revad.github.io%2F&label=Visitors&icon=github&color=%23198754&message=&style=flat&tz=UTC">
#### Contents
- [Plex](#plex)
- [Synology docker](#synology-docker)
- [Synology recovery](#synology-recovery)
- [Other Synology scripts](#other-synology-scripts)
- [Synology hardware restrictions](#synology-hardware-restrictions)
- [2025 plus models](#2025-plus-models)
- [How To Guides](#how-to-guides)
- [Synology dev](#synology-dev)
***
### Plex
- **<a href="https://github.com/007revad/Synology_Plex_Backup">Synology_Plex_Backup</a>**
- A script to backup Plex to a tgz file foror DSM 7 and DSM 6.
- Works for Plex Synology package and Plex in docker.
- **<a href="https://github.com/007revad/Asustor_Plex_Backup">Asustor_Plex_Backup</a>**
- Backup your Asustor's Plex Media Server settings and database.
- **<a href="https://github.com/007revad/Linux_Plex_Backup">Linux_Plex_Backup</a>**
- Backup your Linux Plex Media Server's settings and database.
- **<a href="https://github.com/007revad/Plex_Server_Sync">Plex_Server_Sync</a>**
- Sync your main Plex server database & metadata to a backup Plex server.
- Works for Synology, Asustor, Linux and supports Plex package or Plex in docker.
[Back to Contents](#contents)
### Synology docker
- **<a href="https://github.com/007revad/Synology_Docker_Export">Synology_Docker_export</a>**
- Export all Synology Container Manager or Docker containers' settings as json files to your docker shared folder.
- **<a href="https://github.com/007revad/Synology_ContainerManager_IPv6">Synology_ContainerManager_IPv6</a>**
- Enable IPv6 for Container Manager's bridge network.
- **<a href="https://github.com/007revad/ContainerManager_for_all_armv8">ContainerManager_for_all_armv8</a>**
- Script to install Container Manager on a RS819, DS119j, DS418, DS418j, DS218, DS218play or DS118.
- **<a href="https://github.com/007revad/Docker_Autocompose">Docker_Autocompose</a>**
- Create .yml files from your docker existing containers.
- **<a href="https://github.com/007revad/Synology_docker_cleanup">Synology_docker_cleanup</a>**
- Remove orphan docker btrfs subvolumes and images in Synology DSM 7 and DSM 6.
[Back to Contents](#contents)
### Synology recovery
- **<a href="https://github.com/007revad/Synology_DSM_reinstall">Synology_DSM_reinstall</a>**
- Easily re-install the same DSM version without losing any data or settings.
- **<a href="https://github.com/007revad/Synology_Recover_Data">Synology_Recover_Data</a>**
- A script to make it easy to recover your data from your Synology's drives using a computer.
- **<a href="https://github.com/007revad/Synology_clear_drive_error">Synology clear drive error</a>**
- Clear drive critical errors so DSM will let you use the drive.
- **<a href="https://github.com/007revad/Synology_DSM_Telnet_Password">Synology_DSM_Telnet_Password</a>**
- Synology DSM Recovery Telnet Password of the Day generator.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/Synoboot_backup">Synoboot_backup</a>**
- Back up synoboot after each DSM update so you can recover from a corrupt USBDOM.
[Back to Contents](#contents)
### Other Synology scripts
- **<a href="https://github.com/007revad/Synology_app_mover">Synology_app_mover</a>**
- Easily move Synology packages from one volume to another volume.
- **<a href="https://github.com/007revad/Video_Station_for_DSM_722">Video_Station_for_DSM_722</a>**
- Script to install Video Station in DSM 7.2.2
- **<a href="https://github.com/007revad/SS_Motion_Detection">SS_Motion_Detection</a>**
- Installs previous Surveillance Station and Advanced Media Extensions versions so motion detection and HEVC are supported.
- **<a href="https://github.com/007revad/Synology_Config_Backup">Synology_Config_Backup</a>**
- Backup and export your Synology DSM configuration.
- **<a href="https://github.com/007revad/Synology_CPU_temperature">Synology_CPU_temperature</a>**
- Get and log Synology NAS CPU temperature via SSH.
- **<a href="https://github.com/007revad/Synology_SMART_info">Synology_SMART_info</a>**
- Show Synology smart test progress or smart health and attributes.
- **<a href="https://github.com/007revad/Synology_Cleanup_Coredumps">Synology_Cleanup_Coredumps</a>**
- Cleanup memory core dumps from crashed processes.
- **<a href="https://github.com/007revad/Synology_toggle_reset_button">Synology_toggle_reset_button</a>**
- Script to disable or enable the reset button and show current setting.
- **<a href="https://github.com/007revad/Synology_Download_Station_Chrome_Extension">Synology_Download_Station_Chrome_Extension</a>**
- Download Station Chrome Extension.
- **<a href="https://github.com/007revad/Seagate_lowCurrentSpinup">Seagate_lowCurrentSpinup</a>**
- This script avoids the need to buy and install a higher wattage power supply when using multiple large Seagate SATA HDDs.
[Back to Contents](#contents)
### Synology hardware restrictions
- **<a href="https://github.com/007revad/Synology_HDD_db">Synology_HDD_db</a>**
- Add your SATA or SAS HDDs and SSDs plus SATA and NVMe M.2 drives to your Synology's compatible drive databases, including your Synology M.2 PCIe card and Expansion Unit databases.
- **<a href="https://github.com/007revad/Synology_enable_M2_volume">Synology_enable_M2_volume</a>**
- Enable creating volumes with non-Synology M.2 drives.
- Enable Health Info for non-Synology NVMe drives (not in DSM 7.2.1 or later).
- **<a href="https://github.com/007revad/Synology_M2_volume">Synology_M2_volume</a>**
- Easily create an M.2 volume on Synology NAS.
- **<a href="https://github.com/007revad/Synology_enable_M2_card">Synology_enable_M2_card</a>**
- Enable Synology M.2 PCIe cards in Synology NAS that don't officially support them.
- **<a href="https://github.com/007revad/Synology_enable_eunit">Synology_enable_eunit</a>**
- Enable an unsupported Synology eSATA Expansion Unit models.
- **<a href="https://github.com/007revad/Synology_enable_Deduplication">Synology_enable_Deduplication</a>**
- Enable deduplication with non-Synology SSDs and unsupported NAS models.
- **<a href="https://github.com/007revad/Synology_SHR_switch">Synology_SHR_switch</a>**
- Easily switch between SHR and RAID Groups, or enable RAID F1.
- **<a href="https://github.com/007revad/Synology_enable_sequential_IO">Synology_enable_sequential_IO</a>**
- Enables sequential I/O for your SSD caches, like DSM 6 had.
- **<a href="https://github.com/007revad/Synology_Information_Wiki">Synology_Information_Wiki</a>**
- Information about Synology hardware.
[Back to Contents](#contents)
### 2025 plus models
- **<a href="https://github.com/007revad/Transcode_for_x25">Transcode_for_x25</a>**
- Installs the modules needed for Plex or Jellyfin hardware transcoding in DS425+ and DS225+.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md">2025 series or later Plus models</a>**
- Unverified 3rd party drive limitations and unofficial solutions.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#setting-up-a-new-2025-or-later-plus-model-with-only-unverified-hdds">Setup with only 3rd party drives</a>**
- Setting up a new 2025 or later plus model with only unverified HDDs.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#deleting-and-recreating-your-storage-pool-on-unverified-hdds">Recreating storage pool on migrated drives</a>**
- Deleting and recreating your storage pool on unverified HDDs.
[Back to Contents](#contents)
### How To Guides
- **<a href="https://github.com/007revad/Synology_SSH_key_setup">Synology_SSH_key_setup</a>**
- How to setup SSH key authentication for your Synology.
[Back to Contents](#contents)
### Synology dev
- **<a href="https://github.com/007revad/Download_Synology_Archive">Download_Synology_Archive</a>**
- Download all or part of the Synology archive.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/ScriptNotify">ScriptNotify</a>**
- DSM 7 package to allow your scripts to send DSM notifications.
- **<a href="https://github.com/007revad/DTC_GUI_for_Windows">DTC_GUI_for_Windows</a>**
- GUI for DTC.exe for Windows.
[Back to Contents](#contents)
|
train_000.parquet/722
|
{
"file_path": "my-other-scripts.md",
"repo_id": "007revad/Synoboot_backup",
"size": 9099,
"token_count": 3421
}
|
# Synology DSM Recovery Telnet Password
<a href="https://github.com/007revad/Synology_DSM_Telnet_Password/releases"><img src="https://img.shields.io/github/release/007revad/Synology_DSM_Telnet_Password.svg"></a>

[](https://www.paypal.com/paypalme/007revad)
[](https://github.com/sponsors/007revad)
[](https://user-badge.committers.top/australia/007revad)
### Description
Synology DSM Recovery Telnet Password of the Day generator
If a DSM update fails the boot loader will enable telnet to make it possible to recover from the failed DSM update. The DSM recovery telnet password was originally blank. Later Synology changed it to 101-0101
If a blank password or 101-0101 does not work you need to either contact Synology Support for the 'password of the day', or you can run this script which will show you the 'password of the day'.
The script can run on a Synology NAS or any computer or NAS that has bash.
### Options
You can run the script with --day=X and --month=Y to get the telnet password for day X of month Y.
```
Usage: dsm_telnet_password.sh [options]
Options:
--day= Set the day to calculate password from
If --day= is used you must also use --month=
Day must be numeric. e.g. --day=24
--month= Set the month to calculate password from
If --month= is used you must also use --day=
Month must be numeric. e.g. --month=9
-h, --help Show this help message
-v, --version Show the script version
```
### Screen shots
<br>
Script on Windows with WSL
<p align="left"><img src="images/windows2.png"></p>
<br>
Script on Synology NAS
<p align="left"><img src="images/dsm2.png"></p>
<br>
v1.0.2 run with --day and --month options
<p align="left"><img src="images/options.png"></p>
|
train_000.parquet/723
|
{
"file_path": "README.md",
"repo_id": "007revad/Synology_DSM_Telnet_Password",
"size": 2241,
"token_count": 806
}
|
#!/usr/bin/env bash
#------------------------------------------------------------------------------
# Back up synoboot after each DSM update
# so you can recover from a corrupt USBDOM or EEPROM.
#
# Github: https://github.com/007revad/Synoboot_backup
# Script verified at https://www.shellcheck.net/
#
# To run in a shell (replace /volume1/scripts/ with path to script):
# sudo -s /volume1/scripts/synoboot_backup.sh
#------------------------------------------------------------------------------
# Set bakpath to suit the location to backup to
bakpath=/volume1/backups/synoboot
scriptver="v1.0.2"
script=Synoboot_backup
#repo="007revad/Synoboot_backup"
#scriptname=synoboot_backup
# Shell Colors
#Black='\e[0;30m' # ${Black}
#Red='\e[0;31m' # ${Red}
#Green='\e[0;32m' # ${Green}
#Yellow='\e[0;33m' # ${Yellow}
#Blue='\e[0;34m' # ${Blue}
#Purple='\e[0;35m' # ${Purple}
Cyan='\e[0;36m' # ${Cyan}
#White='\e[0;37m' # ${White}
Error='\e[41m' # ${Error}
Off='\e[0m' # ${Off}
# Show script version
#echo -e "$script $scriptver\ngithub.com/$repo\n"
echo "$script $scriptver"
ding(){
printf \\a
}
# Check script is running as root
if [[ $( whoami ) != "root" ]]; then
ding
echo -e "\n${Error}ERROR${Off} This script must be run as sudo or root!\n"
exit 1
fi
# Check script is running on a Synology NAS
if ! /usr/bin/uname -a | grep -i synology >/dev/null; then
ding
echo -e "\n${Error}ERROR${Off} This script is NOT running on a Synology NAS!"
echo -e "Copy the script to a folder on the Synology and run it from there.\n"
exit 1 # Not a Synology NAS
fi
# Check backup folder exists
if [[ ! -d $bakpath ]]; then
ding
echo -e "${Error}ERROR${Off} Backup path not found: ${bakpath}\n"
exit 1
fi
# Get NAS model
model=$(cat /proc/sys/kernel/syno_hw_version)
# Check for dodgy characters after model number
if [[ $model =~ 'pv10-j'$ ]]; then # GitHub syno_hdd_db issue #10
model=${model%??????}+ # replace last 6 chars with +
elif [[ $model =~ '-j'$ ]]; then # GitHub syno_hdd_db issue #2
model=${model%??} # remove last 2 chars
fi
# Get serial number
serial=$(cat /proc/sys/kernel/syno_serial)
# Get DSM full version
productversion=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION productversion)
buildphase=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION buildphase)
buildnumber=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION buildnumber)
smallfixnumber=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION smallfixnumber)
#majorversion=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION majorversion)
# Show DSM full version and model
if [[ $buildphase == GM ]]; then buildphase=""; fi
if [[ $smallfixnumber -gt "0" ]]; then smallfix="-U$smallfixnumber"; fi
echo -e "$model DSM $productversion-$buildnumber$smallfix $buildphase\n"
echo -e "Backup path: ${bakpath}\n"
# Check NAS has /dev/synoboot
if [[ ! -e /dev/synoboot ]]; then
ding
echo -e "${Error}ERROR${Off} /dev/synoboot not found!"
echo -e "Unsupported Synology model: $model\n"
exit 1
fi
# Set backup image name
imgname="${model}_${serial}_synoboot_${productversion}-$buildnumber$smallfix"
# Backup USB DOM synoboot disk
if [[ ! -f ${bakpath}/${imgname}.img ]]; then
echo -e "Backing up ${Cyan}${imgname}.img${Off}"
dd if=/dev/synoboot of="${bakpath:?}/${imgname:?}".img
else
echo -e "synoboot backup already exists: \n${imgname}.img"
fi
# Set backup image name
imgname="${model}_${serial}_synoboot1_${productversion}-$buildnumber$smallfix"
# Backup USB DOM synoboot1 partition
if [[ ! -f ${bakpath}/${imgname}.img ]]; then
echo -e "\nBacking up ${Cyan}${imgname}.img${Off}"
dd if=/dev/synoboot1 of="${bakpath:?}/${imgname:?}".img
else
echo -e "\nsynoboot1 backup already exists: \n${imgname}.img"
fi
# Set backup image name
imgname="${model}_${serial}_synoboot2_${productversion}-$buildnumber$smallfix"
# Backup USB DOM synoboot2 partition
if [[ ! -f ${bakpath}/${imgname}.img ]]; then
echo -e "\nBacking up ${Cyan}${imgname}.img${Off}"
dd if=/dev/synoboot2 of="${bakpath:?}/${imgname:?}".img
else
echo -e "\nsynoboot2 backup already exists: \n${imgname}.img"
fi
echo -e "\nFinished\n"
exit
|
train_000.parquet/724
|
{
"file_path": "synoboot_backup.sh",
"repo_id": "007revad/Synoboot_backup",
"size": 4262,
"token_count": 1704
}
|
# Synoboot backup
<a href="https://github.com/007revad/Synoboot_backup/releases"><img src="https://img.shields.io/github/release/007revad/Synoboot_backup.svg"></a>

[](https://www.paypal.com/paypalme/007revad)
[](https://github.com/sponsors/007revad)
[](https://user-badge.committers.top/australia/007revad)
### Description
Back up synoboot after each DSM update so you can recover from a corrupt USBDOM
For Synology models that have a USBDOM only.
### What does it do
When you run the script, either via SSH or Task Scheduler, it backs up synoboot to the path you set at the top of the script.
It backs up synoboot, as well as synoboot1 and synoboot2.
It only creates a new backup if there are no backups with the same filename. So it will only create backups on the first run and after a DSM update.
The backup filenames include:
1. The Synology model.
2. The Synology's serial number.
3. synoboot or synoboot1 or synoboot2.
4. The DSM version.
1 and 2 are needed so you don't accidentially try to recover a corrupted USBDOM or EEPROM with the wrong image file (in case you have more than one Synology, or migrate the drives to a new Synology).
<p align="center"><img src="/images/filenames.png"></p>
### Download the script
1. Download the latest version _Source code (zip)_ from https://github.com/007revad/Synoboot_backup/releases
2. Save the download zip file to a folder on the Synology.
3. Unzip the zip file.
### To run the script via task scheduler
Schedule the script to run at bootup to automatically create new backups after each DMS update.
See [How to run from task scheduler](https://github.com/007revad/Synoboot_backup/blob/main/how_to_run_from_scheduler.md)
### To run the script via SSH
[How to enable SSH and login to DSM via SSH](https://kb.synology.com/en-global/DSM/tutorial/How_to_login_to_DSM_with_root_permission_via_SSH_Telnet)
```YAML
sudo -s /volume1/scripts/synoboot_backup.sh
```
**Note:** Replace /volume1/scripts/ with the path to where the script is located.
### Troubleshooting
If the script won't run check the following:
1. Make sure you download the zip file and unzipped it to a folder on your Synology (not on your computer).
2. If the path to the script contains any spaces you need to enclose the path/scriptname in double quotes:
```YAML
sudo -s "/volume1/my scripts/synoboot_backup.sh"
```
3. Make sure you unpacked the zip or rar file that you downloaded and are trying to run the synoboot_backup.sh file.
4. Set the script file as executable:
```YAML
sudo chmod +x "/volume1/scripts/synoboot_backup.sh"
```
### Screenshots
<p align="center">Backing up synoboot</p>
<p align="center"><img src="/images/do_backup.png"></p>
<br>
<p align="center">synoboot already backed up for this NAS and DSM version</p>
<p align="center"><img src="/images/already_backed_up.png"></p>
|
train_000.parquet/725
|
{
"file_path": "README.md",
"repo_id": "007revad/Synoboot_backup",
"size": 3285,
"token_count": 1199
}
|
# How to schedule a script in Synology Task Scheduler
To schedule a script to run on your Synology at boot-up or shut-down follow these steps:
**Note:** You can setup a schedule task and leave it disabled, so it only runs when you select the task in the Task Scheduler and click on the Run button.
1. Go to **Control Panel** > **Task Scheduler** > click **Create** > and select **Triggered Task**.
2. Select **User-defined script**.
3. Enter a task name.
4. Select **root** as the user (The script needs to run as root).
5. Select **Boot-up** as the event that triggers the task.
6. Leave **Enable** ticked.
7. Click **Task Settings**.
8. Optionally you can tick **Send run details by email** and **Send run details only when the script terminates abnormally** then enter your email address.
9. In the box under **User-defined script** type the path to the script.
- e.g. If you saved the script to a shared folder on volume1 called "scripts" you'd type:
- **/volume1/scripts/synoboot_backup.sh**
11. Click **OK** to save the settings.
Here's some screenshots showing what needs to be set:
<p align="leftr"><img src="images/schedule1.png"></p>
<p align="leftr"><img src="images/schedule2.png"></p>
<p align="leftr"><img src="images/schedule3.png"></p>
|
train_000.parquet/726
|
{
"file_path": "how_to_run_from_scheduler.md",
"repo_id": "007revad/Synoboot_backup",
"size": 1268,
"token_count": 398
}
|
#!/usr/bin/env bash
# shellcheck disable=SC2076,SC2207,SC2238,SC2129
#------------------------------------------------------------------------------
# Easily move Synology packages from one volume to another volume.
# Also can backup and restore packages.
#
# Github: https://github.com/007revad/Synology_app_mover
# Script verified at https://www.shellcheck.net/
#
# To run in a shell (replace /volume1/scripts/ with path to script):
# sudo -s /volume1/scripts/syno_app_mover.sh
#------------------------------------------------------------------------------
# TODO
# Instead of moving large extra folders copy them to the target volume.
# Then rename the source volume's @downloads to @downloads_backup.
#
# Add ability to move all apps
# https://www.reddit.com/r/synology/comments/1eybzc1/comment/ljcj8re/
#
# Maybe add backing up "/volume#/@iSCSI/VDISK_BLUN" (VMM VMs)
# https://www.synology-forum.de/threads/backup-der-vms.135462/post-1194705
# https://www.synology-forum.de/threads/virtual-machine-manager-vms-sichern.91952/post-944113
#
#------------------------------------------------------------------------------
# DONE Add `@database` as an app that can be moved.
# DONE Added logging
# DONE Added USB Copy to show how to move USB Copy database (move mode only)
#------------------------------------------------------------------------------
scriptver="v4.2.94"
script=Synology_app_mover
repo="007revad/Synology_app_mover"
scriptname=syno_app_mover
logpath="$(dirname "$(realpath "$0")")"
logfile="$logpath/${scriptname}_$(date +%Y-%m-%d_%H-%M).log"
# Prevent Entware or user edited PATH causing issues
# shellcheck disable=SC2155 # Declare and assign separately to avoid masking return values
export PATH=$(echo "$PATH" | sed -e 's/\/opt\/bin:\/opt\/sbin://')
ding(){
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}"
printf \\a
}
# Save options used for getopt
args=("$@")
if [[ $1 == "--debug" ]] || [[ $1 == "-d" ]]; then
set -x
export PS4='`[[ $? == 0 ]] || echo "\e[1;31;40m($?)\e[m\n "`LINE $LINENO '
fi
if [[ $1 == "--trace" ]] || [[ $1 == "-t" ]]; then
trace="yes"
fi
if [[ ${1,,} == "--fix" ]]; then
# Bypass exit if dependent package failed to stop
# For restoring broken package to original volume
fix="yes"
fi
# Check script is running as root
if [[ $( whoami ) != "root" ]]; then
ding
echo -e "${Error}ERROR${Off} This script must be run as sudo or root!"
exit 1 # Not running as root
fi
# Check script is running on a Synology NAS
if ! /usr/bin/uname -a | grep -i synology >/dev/null; then
echo "This script is NOT running on a Synology NAS!"
echo "Copy the script to a folder on the Synology"
echo "and run it from there."
exit 1 # Not a Synology NAS
fi
# Get NAS model
model=$(cat /proc/sys/kernel/syno_hw_version)
#modelname="$model"
# Check for dodgy characters after model number
if [[ $model =~ 'pv10-j'$ ]]; then # GitHub syno_hdd_db issue #10
model=${model%??????}+ # replace last 6 chars with +
elif [[ $model =~ '-j'$ ]]; then # GitHub syno_hdd_db issue #2
model=${model%??} # remove last 2 chars
fi
# Show script version
#echo -e "$script $scriptver\ngithub.com/$repo\n"
echo "$script $scriptver"
# Get DSM full version
productversion=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION productversion)
buildphase=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION buildphase)
buildnumber=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION buildnumber)
smallfixnumber=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION smallfixnumber)
majorversion=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION majorversion)
#minorversion=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION minorversion)
# Show DSM full version and model
if [[ $buildphase == GM ]]; then buildphase=""; fi
if [[ $smallfixnumber -gt "0" ]]; then smallfix="-$smallfixnumber"; fi
echo "$model DSM $productversion-$buildnumber$smallfix $buildphase"
# Show options used
if [[ ${#args[@]} -gt "0" ]]; then
echo -e "Using options: ${args[*]}\n"
else
echo ""
fi
usage(){
cat <<EOF
Usage: $(basename "$0") [options]
Options:
-h, --help Show this help message
-v, --version Show the script version
--autoupdate=AGE Auto update script (useful when script is scheduled)
AGE is how many days old a release must be before
auto-updating. AGE must be a number: 0 or greater
--auto=APP Automatically backup APP (for scheduling backups)
APP can be a single app or a comma separated list
APP can also be 'all' to backup all apps (except
any you excluded in the syno_app_mover.conf)
Examples:
--auto=radarr
--auto=Calender,ContainerManager,radarr
--auto=all
APP names need to be the app's system name
View the system names with the --list option
--list Display installed apps' system names
EOF
}
list_names(){
# List app system names
if ! cd /var/packages; then
echo "Failed to cd to /var/packages!"
exit 1
fi
# Print header
echo -e "Use app system name for --auto option or exclude in conf file\n"
printf -- '-%.0s' {1..62}; echo # print 62 -
echo "APP SYSTEM NAME APP DISPLAY NAME"
printf -- '-%.0s' {1..62}; echo # print 62 -
for p in *; do
if [[ -d "$p" ]]; then
if [[ ! -a "$p/target" ]] ; then
echo -e "\e[41mBroken symlink\e[0m $p"
else
if [[ -f "/var/packages/${p}/INFO" ]]; then
long_name="$(/usr/syno/bin/synogetkeyvalue "/var/packages/${p}/INFO" displayname)"
if [[ -z "$long_name" ]]; then
long_name="$(/usr/syno/bin/synogetkeyvalue "/var/packages/${p}/INFO" package)"
fi
else
# Package with no INFO file
long_name="!!! MISSING INFO FILE !!!"
fi
# Pad with spaces to 29 chars
pad=$(printf -- ' %.0s' {1..29})
printf '%.*s' 29 "$p${pad}"
echo "$long_name"
fi
fi
done < <(find . -maxdepth 1 -type d)
echo ""
exit 0
}
scriptversion(){
cat <<EOF
$script $scriptver - by 007revad
See https://github.com/$repo
EOF
exit 0
}
autoupdate=""
# Check for flags with getopt
if options="$(getopt -o abcdefghijklmnopqrstuvwxyz0123456789 -l \
auto:,list,help,version,autoupdate:,log,debug -- "${args[@]}")"; then
eval set -- "$options"
while true; do
case "${1,,}" in
-h|--help) # Show usage options
usage
exit
;;
-v|--version) # Show script version
scriptversion
;;
-l|--log) # Log
log=yes
;;
-d|--debug) # Show and log debug info
debug=yes
;;
--list) # List installed app's system names
list_names
;;
--auto) # Specify pkgs for scheduled backup
auto="yes"
color=no # Disable colour text in task scheduler emails
mode="Backup"
action="Backing up"
if [[ ${2,,} == "all" ]]; then
all="yes"
elif [[ $2 ]]; then
IFS=',' read -r -a autos <<< "$2"; unset IFS
if [[ ${#autos[@]} -gt "0" ]]; then
for i in "${autos[@]}"; do
# Trim leading and trailing spaces
j=$(echo -n "$i" | xargs)
# Check pkg name exists
if [[ ! -d "/var/packages/$j" ]]; then
echo -e "Invalid auto argument '$j'\n"
else
if readlink -f "/var/packages/$j/target" | grep -q -E '^/volume'; then
autolist+=("$j")
else
skipped+=("$j")
fi
fi
done
else
ding
echo -e "Missing argument to auto!\n"
usage
exit 2 # Missing argument
fi
else
ding
echo -e "Missing argument to auto!\n"
usage
exit 2 # Missing argument
fi
shift
;;
--autoupdate) # Auto update script
autoupdate=yes
if [[ $2 =~ ^[0-9]+$ ]]; then
delay="$2"
shift
else
delay="0"
fi
;;
--)
shift
break
;;
*) # Show usage options
ding
echo -e "Invalid option '$1'\n"
usage
exit 2 # Invalid argument
;;
esac
shift
done
else
echo
usage
exit
fi
# Abort if autolist is empty
if [[ $auto == "yes" ]] && [[ $all != "yes" ]] && [[ ! ${#autolist[@]} -gt "0" ]]; then
ding
echo -e "No apps to backup!\n"
exit 2 # autolist empty
fi
# Show apps to auto backup
#if [[ ${#autolist[@]} -gt "0" ]]; then # debug
# echo -e "Backing up ${autolist[*]}\n" # debug
#fi # debug
if [[ $debug == "yes" ]]; then
set -x
export PS4='`[[ $? == 0 ]] || echo "\e[1;31;40m($?)\e[m\n "`:.$LINENO:'
fi
# Shell Colors
if [[ $color != "no" ]]; then
#Black='\e[0;30m' # ${Black}
Red='\e[0;31m' # ${Red}
#Green='\e[0;32m' # ${Green}
Yellow='\e[0;33m' # ${Yellow}
#Blue='\e[0;34m' # ${Blue}
#Purple='\e[0;35m' # ${Purple}
Cyan='\e[0;36m' # ${Cyan}
#White='\e[0;37m' # ${White}
Error='\e[41m' # ${Error}
#Warn='\e[47;31m' # ${Warn}
Off='\e[0m' # ${Off}
fi
#------------------------------------------------------------------------------
# Check latest release with GitHub API
# Get latest release info
# Curl timeout options:
# https://unix.stackexchange.com/questions/94604/does-curl-have-a-timeout
release=$(curl --silent -m 10 --connect-timeout 5 \
"https://api.github.com/repos/$repo/releases/latest")
# Release version
tag=$(echo "$release" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
shorttag="${tag:1}"
# Release published date
published=$(echo "$release" | grep '"published_at":' | sed -E 's/.*"([^"]+)".*/\1/')
published="${published:0:10}"
published=$(date -d "$published" '+%s')
# Today's date
now=$(date '+%s')
# Days since release published
age=$(((now - published)/(60*60*24)))
# Get script location
# https://stackoverflow.com/questions/59895/
source=${BASH_SOURCE[0]}
while [ -L "$source" ]; do # Resolve $source until the file is no longer a symlink
scriptpath=$( cd -P "$( dirname "$source" )" >/dev/null 2>&1 && pwd )
source=$(readlink "$source")
# If $source was a relative symlink, we need to resolve it
# relative to the path where the symlink file was located
[[ $source != /* ]] && source=$scriptpath/$source
done
scriptpath=$( cd -P "$( dirname "$source" )" >/dev/null 2>&1 && pwd )
scriptfile=$( basename -- "$source" )
echo "Running from: ${scriptpath}/$scriptfile"
#echo "Script location: $scriptpath" # debug
#echo "Source: $source" # debug
#echo "Script filename: $scriptfile" # debug
#echo "tag: $tag" # debug
#echo "scriptver: $scriptver" # debug
cleanup_tmp(){
# Delete downloaded .tar.gz file
if [[ -f "/tmp/$script-$shorttag.tar.gz" ]]; then
if ! rm "/tmp/$script-$shorttag.tar.gz"; then
echo -e "${Error}ERROR${Off} Failed to delete"\
"downloaded /tmp/$script-$shorttag.tar.gz!" >&2
fi
fi
# Delete extracted tmp files
if [[ -d "/tmp/$script-$shorttag" ]]; then
if ! rm -r "/tmp/$script-$shorttag"; then
echo -e "${Error}ERROR${Off} Failed to delete"\
"downloaded /tmp/$script-$shorttag!" >&2
fi
fi
}
if ! printf "%s\n%s\n" "$tag" "$scriptver" |
sort --check=quiet --version-sort >/dev/null ; then
echo -e "\n${Cyan}There is a newer version of this script available.${Off}"
echo -e "Current version: ${scriptver}\nLatest version: $tag"
scriptdl="$scriptpath/$script-$shorttag"
if [[ -f ${scriptdl}.tar.gz ]] || [[ -f ${scriptdl}.zip ]]; then
# They have the latest version tar.gz downloaded but are using older version
echo "You have the latest version downloaded but are using an older version"
sleep 10
elif [[ -d $scriptdl ]]; then
# They have the latest version extracted but are using older version
echo "You have the latest version extracted but are using an older version"
sleep 10
else
if [[ $autoupdate == "yes" ]]; then
if [[ $age -gt "$delay" ]] || [[ $age -eq "$delay" ]]; then
echo "Downloading $tag"
reply=y
else
echo "Skipping as $tag is less than $delay days old."
fi
else
echo -e "${Cyan}Do you want to download $tag now?${Off} [y/n]"
read -r -t 30 reply
fi
if [[ ${reply,,} == "y" ]]; then
# Delete previously downloaded .tar.gz file and extracted tmp files
cleanup_tmp
if cd /tmp; then
url="https://github.com/$repo/archive/refs/tags/$tag.tar.gz"
if ! curl -JLO -m 30 --connect-timeout 5 "$url"; then
echo -e "${Error}ERROR${Off} Failed to download"\
"$script-$shorttag.tar.gz!"
else
if [[ -f /tmp/$script-$shorttag.tar.gz ]]; then
# Extract tar file to /tmp/<script-name>
if ! tar -xf "/tmp/$script-$shorttag.tar.gz" -C "/tmp"; then
echo -e "${Error}ERROR${Off} Failed to"\
"extract $script-$shorttag.tar.gz!"
else
# Set script sh files as executable
if ! chmod a+x "/tmp/$script-$shorttag/"*.sh ; then
permerr=1
echo -e "${Error}ERROR${Off} Failed to set executable permissions"
fi
# Copy new script sh file to script location
if ! cp -p "/tmp/$script-$shorttag/${scriptname}.sh" "${scriptpath}/${scriptfile}";
then
copyerr=1
echo -e "${Error}ERROR${Off} Failed to copy"\
"$script-$shorttag sh file(s) to:\n $scriptpath/${scriptfile}"
fi
# Copy script's conf file to script location if missing
if [[ ! -f "$scriptpath/${scriptname}.conf" ]]; then
# Set permission on config file
if ! chmod 664 "/tmp/$script-$shorttag/${scriptname}.conf"; then
permerr=1
echo -e "${Error}ERROR${Off} Failed to set read/write permissions on:"
echo "$scriptpath/${scriptname}.conf"
fi
# Copy existing conf file settings to new conf file
while read -r LINE; do
if [[ ${LINE:0:1} != "#" ]]; then
if [[ $LINE =~ ^[a-z_]+=.* ]]; then
oldfile="${scriptpath}/${scriptname}.conf"
newfile="/tmp/$script-$shorttag/${scriptname}.conf"
key="${LINE%=*}"
oldvalue="$(synogetkeyvalue "$oldfile" "$key")"
newvalue="$(synogetkeyvalue "$newfile" "$key")"
if [[ $oldvalue != "$newvalue" ]]; then
synosetkeyvalue "$newfile" "$key" "$oldvalue"
fi
fi
fi
done < "${scriptpath}/${scriptname}.conf"
# Copy conf file to script location
if ! cp -p "/tmp/$script-$shorttag/${scriptname}.conf"\
"${scriptpath}/${scriptname}.conf"; then
copyerr=1
echo -e "${Error}ERROR${Off} Failed to copy"\
"$script-$shorttag conf file to:\n $scriptpath/${scriptname}.conf"
else
conftxt=", ${scriptname}.conf"
fi
fi
# Copy new CHANGES.txt file to script location (if script on a volume)
if [[ $scriptpath =~ /volume* ]]; then
# Set permissions on CHANGES.txt
if ! chmod 664 "/tmp/$script-$shorttag/CHANGES.txt"; then
permerr=1
echo -e "${Error}ERROR${Off} Failed to set read/write permissions on:"
echo "$scriptpath/CHANGES.txt"
fi
# Copy new CHANGES.txt file to script location
if ! cp -p "/tmp/$script-$shorttag/CHANGES.txt"\
"${scriptpath}/${scriptname}_CHANGES.txt"; then
echo -e "${Error}ERROR${Off} Failed to copy"\
"$script-$shorttag/CHANGES.txt to:\n $scriptpath"
else
changestxt=" and changes.txt"
fi
fi
# Delete downloaded tmp files
cleanup_tmp
# Notify of success (if there were no errors)
if [[ $copyerr != 1 ]] && [[ $permerr != 1 ]]; then
echo -e "\n$tag ${scriptfile}$conftxt$changestxt downloaded to: ${scriptpath}\n"
# Reload script
printf -- '-%.0s' {1..79}; echo # print 79 -
exec "${scriptpath}/$scriptfile" "${args[@]}"
fi
fi
else
echo -e "${Error}ERROR${Off}"\
"/tmp/$script-$shorttag.tar.gz not found!"
#ls /tmp | grep "$script" # debug
fi
fi
cd "$scriptpath" || echo -e "${Error}ERROR${Off} Failed to cd to script location!"
else
echo -e "${Error}ERROR${Off} Failed to cd to /tmp!"
fi
fi
fi
fi
conffile="${scriptpath}/${scriptname}.conf"
# Fix line endings
# grep can't detect Windows or Mac line endings
# but can detect if there's no Linux endings.
if grep -rIl -m 1 $'\r' "$conffile" >/dev/null; then
# Does not contain Linux line endings
sed -i 's/\r\n/\n/g' "$conffile" # Fix Windows line endings
sed -i 's/\r/\n/g' "$conffile" # Fix Mac line endings
fi
# Add log header
echo "$script $scriptver" > "$logfile"
echo -e "$model DSM $productversion-$buildnumber$smallfix $buildphase\n" >> "$logfile"
echo "Running from: ${scriptpath}/$scriptfile" >> "$logfile"
#------------------------------------------------------------------------------
# Functions
# shellcheck disable=SC2317,SC2329 # Don't warn about unreachable commands in this function
pause(){
# When debugging insert pause command where needed
read -s -r -n 1 -p "Press any key to continue..."
read -r -t 0.1 -s -e -- # Silently consume all input
stty echo echok # Ensure read didn't disable echoing user input
echo -e "\n" |& tee -a "$logfile"
}
# shellcheck disable=SC2317,SC2329 # Don't warn about unreachable commands in this function
debug(){
if [[ $1 == "on" ]]; then
set -x
export PS4='`[[ $? == 0 ]] || echo "\e[1;31;40m($?)\e[m\n "`LINE $LINENO '
elif [[ $1 == "off" ]]; then
set +x
fi
}
progbar(){
# $1 is pid of process
# $2 is string to echo
string="$2"
local dots
local progress
dots=""
while [[ -d /proc/$1 ]]; do
dots="${dots}."
progress="$dots"
if [[ ${#dots} -gt "10" ]]; then
dots=""
progress=" "
fi
echo -ne " ${2}$progress\r"; /usr/bin/sleep 0.3
done
}
progstatus(){
# $1 is return status of process
# $2 is string to echo
# $3 line number function was called from
local tracestring
local pad
tracestring="${FUNCNAME[0]} called from ${FUNCNAME[1]} $3"
pad=$(printf -- ' %.0s' {1..80})
[ "$trace" == "yes" ] && printf '%.*s' 80 "${tracestring}${pad}" && echo ""
if [[ $1 == "0" ]]; then
echo -e "$2 "
else
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} $2 failed!" |& tee -a "$logfile"
echo "$tracestring ($scriptver)" |& tee -a "$logfile"
if [[ $exitonerror != "no" ]]; then
exit 1 # Skip exit if exitonerror != no
fi
fi
exitonerror=""
#echo "return: $1" # debug
}
package_status(){
# $1 is package name
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
# local code
/usr/syno/bin/synopkg status "${1}" >/dev/null
code="$?"
# DSM 7.2 0 = started, 17 = stopped, 255 = not_installed, 150 = broken
# DSM 6 to 7.1 0 = started, 3 = stopped, 4 = not_installed, 150 = broken
if [[ $code == "0" ]]; then
#echo "$1 is started" # debug
return 0
elif [[ $code == "17" ]] || [[ $code == "3" ]]; then
#echo "$1 is stopped" # debug
return 1
elif [[ $code == "255" ]] || [[ $code == "4" ]]; then
#echo "$1 is not installed" # debug
return 255
elif [[ $code == "150" ]]; then
#echo "$1 is broken" # debug
return 150
else
return "$code"
fi
}
package_is_running(){
# $1 is package name
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
/usr/syno/bin/synopkg is_onoff "${1}" >/dev/null
code="$?"
return "$code"
}
wait_status(){
# Wait for package to finish stopping or starting
# $1 is package
# $2 is start or stop
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
local num
if [[ $2 == "start" ]]; then
state="0"
elif [[ $2 == "stop" ]]; then
state="1"
fi
if [[ $state == "0" ]] || [[ $state == "1" ]]; then
num="0"
package_status "$1"
while [[ $? != "$state" ]]; do
sleep 1
num=$((num +1))
if [[ $num -gt "20" ]]; then
break
fi
package_status "$1"
done
fi
}
package_stop(){
# $1 is package name
# $2 is package display name
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
if [[ ${#pkgs_sorted[@]} -gt "1" ]]; then
/usr/syno/bin/synopkg stop "$1" >/dev/null &
else
# Only timeout if there are other packages to process
#timeout 5m /usr/syno/bin/synopkg stop "$1" >/dev/null &
# Docker can take 12 minutes to stop 70 containers
timeout 30m /usr/syno/bin/synopkg stop "$1" >/dev/null &
fi
pid=$!
string="Stopping ${Cyan}${2}${Off}"
echo "Stopping $2" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
# Allow package processes to finish stopping
#wait_status "$1" stop
wait_status "$1" stop &
pid=$!
string="Waiting for ${Cyan}${2}${Off} to stop"
echo "Waiting for $2 to stop" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
}
package_start(){
# $1 is package name
# $2 is package display name
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
if [[ ${#pkgs_sorted[@]} -gt "1" ]]; then
/usr/syno/bin/synopkg start "$1" >/dev/null &
else
# Only timeout if there are other packages to process
#timeout 5m /usr/syno/bin/synopkg start "$1" >/dev/null &
# Docker can take 15 minutes to start 70 containers
timeout 30m /usr/syno/bin/synopkg start "$1" >/dev/null &
fi
pid=$!
string="Starting ${Cyan}${2}${Off}"
echo "Starting $2" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
# Allow package processes to finish starting
#wait_status "$1" start
wait_status "$1" start &
pid=$!
string="Waiting for ${Cyan}${2}${Off} to start"
echo "Waiting for $2 to start" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
}
# shellcheck disable=SC2317 # Don't warn about unreachable commands in this function
package_uninstall(){
# $1 is package name
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
/usr/syno/bin/synopkg uninstall "$1" >/dev/null &
pid=$!
string="Uninstalling ${Cyan}${1}${Off}"
echo "Ininstalling $1" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
}
# shellcheck disable=SC2317 # Don't warn about unreachable commands in this function
package_install(){
# $1 is package name
# $2 is /volume2 etc
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
/usr/syno/bin/synopkg install_from_server "$1" "$2" >/dev/null &
pid=$!
string="Installing ${Cyan}${1}${Off} on ${Cyan}$2${Off}"
echo "Installing $1 on $2" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
}
is_empty(){
# $1 is /path/folder
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
if [[ -d $1 ]]; then
local contents
contents=$(find "$1" -maxdepth 1 -printf '.')
if [[ ${#contents} -gt 1 ]]; then
return 1 # Not empty
fi
fi
}
backup_dir(){
# $1 is folder to backup (@docker etc)
# $2 is volume (/volume1 etc)
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
local perms
if [[ -d "$2/$1" ]]; then
# Make backup folder on $2
if [[ ! -d "${2}/${1}_backup" ]]; then
# Set same permissions as original folder
perms=$(stat -c %a "${2:?}/${1:?}")
if ! mkdir -m "$perms" "${2:?}/${1:?}_backup"; then
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} Failed to create directory!"
echo -e "Line ${LINENO}: ERROR Failed to create directory!" >> "$logfile"
process_error="yes"
if [[ $all != "yes" ]] || [[ $fix != "yes" ]]; then
exit 1 # Skip exit if mode != all and fix != yes
fi
return 1
fi
fi
# Backup $1
if ! is_empty "${2:?}/${1:?}_backup"; then
# @docker_backup folder exists and is not empty
echo -e "There is already a backup of $1" |& tee -a "$logfile"
echo -e "Do you want to overwrite it? [y/n]" |& tee -a "$logfile"
read -r answer
echo "$answer" >> "$logfile"
echo "" |& tee -a "$logfile"
if [[ ${answer,,} != "y" ]]; then
return
fi
fi
cp -prf "${2:?}/${1:?}/." "${2:?}/${1:?}_backup" |& tee -a "$logfile" &
pid=$!
# If string is too long progbar repeats string for each dot
string="Backing up $1 to ${Cyan}${1}_backup${Off}"
echo "Backing up $1 to ${1}_backup" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
fi
}
cdir(){
# $1 is path to cd to
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
if ! cd "$1"; then
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} cd to $1 failed!"
echo -e "Line ${LINENO}: ERROR cd to $1 failed!" >> "$logfile"
process_error="yes"
if [[ $all != "yes" ]] || [[ $fix != "yes" ]]; then
exit 1 # Skip exit if mode != all and fix != yes
fi
return 1
fi
}
create_dir(){
# $1 is source /path/folder
# $2 is target /path/folder
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
# Create target folder with source folder's permissions
if [[ ! -d "$2" ]]; then
# Set same permissions as original folder
perms=$(stat -c %a "${1:?}")
if ! mkdir -m "$perms" "${2:?}"; then
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} Failed to create directory!"
echo -e "Line ${LINENO}: ERROR Failed to create directory!" >> "$logfile"
process_error="yes"
if [[ $all != "yes" ]] || [[ $fix != "yes" ]]; then
exit 1 # Skip exit if mode != all and fix != yes
fi
return 1
fi
fi
}
move_pkg_do(){
# $1 is package name
# $2 is destination volume or path
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
# Move package's @app directories
if [[ ${mode,,} == "move" ]]; then
#mv -f "${source:?}" "${2:?}/${appdir:?}" |& tee -a "$logfile" &
#pid=$!
#string="${action} $source to ${Cyan}$2${Off}"
#echo "${action} $source to $2" >> "$logfile"
#progbar "$pid" "$string"
#wait "$pid"
#progstatus "$?" "$string"
if [[ ! -d "${2:?}/${appdir:?}/${1:?}" ]] ||\
is_empty "${2:?}/${appdir:?}/${1:?}"; then
# Move source folder to target folder
if [[ -w "/$sourcevol" ]]; then
mv -f "${source:?}" "${2:?}/${appdir:?}" |& tee -a "$logfile" &
else
# Source volume is read only
cp -prf "${source:?}" "${2:?}/${appdir:?}" |& tee -a "$logfile" &
fi
pid=$!
string="${action} $source to ${Cyan}$2${Off}"
echo "${action} $source to $2" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
else
# Copy source contents if target folder exists
cp -prf "${source:?}" "${2:?}/${appdir:?}" |& tee -a "$logfile" &
pid=$!
string="Copying $source to ${Cyan}$2${Off}"
echo "Copying $source to $2" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
#rm -rf "${source:?}" |& tee -a "$logfile" &
rm -r --preserve-root "${source:?}" |& tee -a "$logfile" &
pid=$!
exitonerror="no"
string="Removing $source"
echo "$string" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
fi
else
# if ! is_empty "${destination:?}/${appdir:?}/${1:?}"; then
# echo "Skipping ${action,,} ${appdir}/$1 as target is not empty:" |& tee -a "$logfile"
# echo " ${destination}/${appdir}/$1" |& tee -a "$logfile"
# else
#mv -f "${source:?}" "${2:?}/${appdir:?}" |& tee -a "$logfile" &
#pid=$!
#string="${action} $source to ${Cyan}$2${Off}"
#echo "${action} $source to $2" >> "$logfile"
#progbar "$pid" "$string"
#wait "$pid"
#progstatus "$?" "$string"
exitonerror="no" && move_dir "$appdir"
# fi
fi
}
edit_symlinks(){
# $1 is package name
# $2 is destination volume
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
# Edit /var/packages symlinks
case "$appdir" in
@appconf) # etc --> @appconf
rm "/var/packages/${1:?}/etc" |& tee -a "$logfile"
ln -s "${2:?}/@appconf/${1:?}" "/var/packages/${1:?}/etc" |& tee -a "$logfile"
# /usr/syno/etc/packages/$1
# /volume1/@appconf/$1
if [[ -L "/usr/syno/etc/packages/${1:?}" ]]; then
rm "/usr/syno/etc/packages/${1:?}" |& tee -a "$logfile"
ln -s "${2:?}/@appconf/${1:?}" "/usr/syno/etc/packages/${1:?}" |& tee -a "$logfile"
fi
;;
@apphome) # home --> @apphome
rm "/var/packages/${1:?}/home" |& tee -a "$logfile"
ln -s "${2:?}/@apphome/${1:?}" "/var/packages/${1:?}/home" |& tee -a "$logfile"
;;
@appshare) # share --> @appshare
rm "/var/packages/${1:?}/share" |& tee -a "$logfile"
ln -s "${2:?}/@appshare/${1:?}" "/var/packages/${1:?}/share" |& tee -a "$logfile"
;;
@appstore) # target --> @appstore
rm "/var/packages/${1:?}/target" |& tee -a "$logfile"
ln -s "${2:?}/@appstore/${1:?}" "/var/packages/${1:?}/target" |& tee -a "$logfile"
# DSM 6 - Some packages have var symlink
if [[ $majorversion -lt 7 ]]; then
if [[ -L "/var/packages/${1:?}/var" ]]; then
rm "/var/packages/${1:?}/var" |& tee -a "$logfile"
ln -s "${2:?}/@appstore/${1:?}/var" "/var/packages/${1:?}/var" |& tee -a "$logfile"
fi
fi
;;
@apptemp) # tmp --> @apptemp
rm "/var/packages/${1:?}/tmp" |& tee -a "$logfile"
ln -s "${2:?}/@apptemp/${1:?}" "/var/packages/${1:?}/tmp" |& tee -a "$logfile"
;;
@appdata) # var --> @appdata
rm "/var/packages/${1:?}/var" |& tee -a "$logfile"
ln -s "${2:?}/@appdata/${1:?}" "/var/packages/${1:?}/var" |& tee -a "$logfile"
;;
*)
echo -e "${Red}Oops!${Off} appdir: ${appdir}\n"
echo -e "Oops! appdir: ${appdir}\n" >> "$logfile"
return
;;
esac
}
move_pkg(){
# $1 is package name
# $2 is destination volume
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
local appdir
local perms
local destination
local appdirs_tmp
local app_paths_tmp
if [[ ${mode,,} == "backup" ]]; then
destination="$bkpath"
elif [[ ${mode,,} == "restore" ]]; then
destination="$2"
else
destination="$2"
fi
if [[ $majorversion -gt 6 ]]; then
applist=( "@appconf" "@appdata" "@apphome" "@appshare" "@appstore" "@apptemp" )
else
applist=( "@appstore" )
fi
if [[ ${mode,,} == "restore" ]]; then
if ! cdir "$bkpath"; then
process_error="yes"
return 1
fi
sourcevol=$(echo "$bkpath" | cut -d "/" -f2) # var is used later in script
# shellcheck disable=SC1083
while IFS= read -r appdir; do
if [[ "${applist[*]}" =~ "$appdir" ]]; then
appdirs_tmp+=("$appdir")
fi
done < <(find . -name "@app*" -exec basename \{} \;)
# Sort array
IFS=$'\n' appdirs=($(sort <<<"${appdirs_tmp[*]}")); unset IFS
if [[ ${#appdirs[@]} -gt 0 ]]; then
for appdir in "${appdirs[@]}"; do
create_dir "/${sourcevol:?}/${appdir:?}" "${destination:?}/${appdir:?}"
move_pkg_do "$1" "$destination"
done
fi
else
if ! cdir /var/packages; then
process_error="yes"
return 1
fi
# shellcheck disable=SC2162 # `read` without `-r` will mangle backslashes
while read -r link source; do
app_paths_tmp+=("$source")
done < <(find . -maxdepth 2 -type l -ls | grep '/'"${1// /\\\\ }"'$' | cut -d'.' -f2- | sed 's/ ->//')
# Sort array
IFS=$'\n' app_paths=($(sort <<<"${app_paths_tmp[*]}")); unset IFS
if [[ ${#app_paths[@]} -gt 0 ]]; then
for source in "${app_paths[@]}"; do
appdir=$(echo "$source" | cut -d "/" -f3)
sourcevol=$(echo "$source" | cut -d "/" -f2) # var is used later in script
if [[ "${applist[*]}" =~ "$appdir" ]]; then
create_dir "/${sourcevol:?}/${appdir:?}" "${destination:?}/${appdir:?}"
move_pkg_do "$1" "$2"
if [[ ${mode,,} == "move" ]]; then
edit_symlinks "$pkg" "$destination"
fi
fi
done
fi
fi
# Backup or restore DSM 6 /usr/syno/etc/packages/$pkg/
if [[ $majorversion -lt "7" ]]; then
copy_dir_dsm6 "$1" "$2"
fi
}
set_buffer(){
# Set buffer GBs so we don't fill volume
bufferGB=$(/usr/syno/bin/synogetkeyvalue "$conffile" buffer)
if [[ $bufferGB -gt "0" ]]; then
buffer=$((bufferGB *1048576))
else
buffer=0
fi
}
folder_size(){
# $1 is folder to check size of
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
need="" # var is used later in script
needed="" # var is used later in script
if [[ -d "$1" ]]; then
# Get size of $1 folder
need=$(/usr/bin/du -s "$1" | awk '{print $1}')
if [[ ! $need =~ ^[0-9]+$ ]]; then
echo -e "${Yellow}WARNING${Off} Failed to get size of $1"
echo -e "WARNING Failed to get size of $1" >> "$logfile"
need=0
fi
# Add buffer GBs so we don't fill volume
set_buffer
needed=$((need +buffer))
fi
}
vol_free_space(){
# $1 is volume to check free space
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
free="" # var is used later in script
if [[ -d "$1" ]]; then
# Get amount of free space on $1 volume
if [[ $1 =~ ^"/volumeUSB" ]]; then # Issue #63 and #138
tmp_usb="/$(echo "$1" | cut -d"/" -f2)/usbshare"
free=$(df --output=avail "$tmp_usb" | grep -A1 Avail | grep -v Avail)
else
free=$(df --output=avail "$1" | grep -A1 Avail | grep -v Avail)
fi
fi
}
need_show(){
if [[ $need -gt "999999" ]]; then
size_show="$((need /1048576)) GB"
elif [[ $need -gt "999" ]]; then
size_show="$((need /1048)) MB"
else
size_show="$need KB"
fi
}
check_space(){
# $1 is /path/folder
# $2 is source volume or target volume
# $3 is 'extra' or null
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
# Skip USBCopy and @database
if [[ $pkg == USBCopy ]] || [[ $pkg == "@database" ]]; then
return 0
fi
if [[ $3 == "extra" ]]; then
# Get size of extra @ folder
folder_size "$1"
else
# Total size of pkg or all pkgs
need="$all_pkg_size"
# Add buffer GBs so we don't fill volume
set_buffer
needed=$((need +buffer))
fi
# Get amount of free space on target volume
vol_free_space "$2"
# Check we have enough space
if [[ ! $free -gt $needed ]]; then
if [[ $all == "yes" ]] && [[ $3 != "extra" ]]; then
echo -e "${Yellow}WARNING${Off} Not enough space to ${mode,,}"\
"${Cyan}All apps${Off} to $targetvol"
echo -e "WARNING Not enough space to ${mode,,}"\
"All apps to $targetvol" >> "$logfile"
else
echo -e "${Yellow}WARNING${Off} Not enough space to ${mode,,}"\
"/${sourcevol}/${Cyan}$(basename -- "$1")${Off} to $targetvol"
echo -e "WARNING Not enough space to ${mode,,}"\
"/${sourcevol}/$(basename -- "$1") to $targetvol" >> "$logfile"
fi
need_show
echo -en "Free: $((free /1048576)) GB Needed: $size_show" |& tee -a "$logfile"
if [[ $buffer -gt "0" ]]; then
echo -e " (plus $bufferGB GB buffer)\n" |& tee -a "$logfile"
else
echo -e "\n" |& tee -a "$logfile"
fi
return 1
else
return 0
fi
}
show_move_share(){
# $1 is package name
# $2 is share name
# $3 is stopped or running
# $4 is more or null
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
echo -e "\nIf you want to move your $2 shared folder to $targetvol" |& tee -a "$logfile"
echo -e " While ${Cyan}$1${Off} is ${Cyan}$3${Off}:"
echo -e " While $1 is $3:" >> "$logfile"
echo " 1. Go to 'Control Panel > Shared Folders'." |& tee -a "$logfile"
echo " 2. Select your $2 shared folder and click Edit." |& tee -a "$logfile"
echo " 3. Change Location to $targetvol" |& tee -a "$logfile"
echo " 4. Click on Advanced and check that 'Enable data checksums' is selected." |& tee -a "$logfile"
echo " - 'Enable data checksums' is only available if moving to a Btrfs volume." |& tee -a "$logfile"
echo " 5. Click Save." |& tee -a "$logfile"
if [[ $4 == "more" ]]; then
echo " - If $1 has more shared folders repeat steps 2 to 5." |& tee -a "$logfile"
fi
if [[ $3 == "stopped" ]]; then
echo -e " 6. After step 5 has finished start $1 \n" |& tee -a "$logfile"
fi
}
copy_dir_dsm6(){
# Backup or restore DSM 6 /usr/syno/etc/packages/$pkg/
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
# $1 is package name
# $2 is destination volume
local pack
local packshow
local extras
pack="/${pkg:?}"
packshow="${pkg:?}"
if [[ ${mode,,} == "backup" ]]; then
if [[ ! -d "${bkpath:?}/etc" ]]; then
mkdir -m 700 "${bkpath:?}/etc"
fi
#if ! is_empty "/usr/syno/etc/packages/${1:?}"; then
# If string is too long progbar gets messed up
cp -prf "/usr/syno/etc/packages/${1:?}" "${bkpath:?}/etc" |& tee -a "$logfile" &
pid=$!
string="${action} /usr/syno/etc/packages/${Cyan}${1}${Off}"
echo "${action} /usr/syno/etc/packages/${1}" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
#fi
elif [[ ${mode,,} == "restore" ]]; then
#if [[ -d "${bkpath}/$1" ]]; then
# If string is too long progbar gets messed up
cp -prf "${bkpath:?}/etc/${1:?}" "/usr/syno/etc/packages" |& tee -a "$logfile" &
pid=$!
string="${action} $1 to /usr/syno/etc/packages"
echo "$string" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
#fi
fi
}
copy_dir(){
# Used by package backup and restore
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
# $1 is folder (@surveillance etc)
# $2 is "extras" or null
local pack
local packshow
local extras
if [[ $2 == "extras" ]]; then
#pack=""
extras="/extras"
else
pack="/${pkg:?}"
packshow="${pkg:?}"
#extras=""
fi
if [[ ${mode,,} == "backup" ]]; then
if [[ $2 == "extras" ]] && [[ ! -d "${bkpath:?}/extras" ]]; then
mkdir -m 700 "${bkpath:?}/extras"
fi
create_dir "/${sourcevol:?}/${1:?}$pack" "${bkpath:?}${extras}/${1:?}"
#if ! is_empty "/${sourcevol:?}/${1:?}$pack"; then
if [[ $2 == "extras" ]]; then
# If string is too long progbar gets messed up
#cp -prf "/${sourcevol:?}/${1:?}$pack" "${bkpath:?}${extras}" |& tee -a "$logfile" &
if [[ $1 == "@docker" ]]; then
excludeargs=(
"--exclude=subvolumes/*/tmp/" # btfs Issue #120
"--exclude=subvolumes/*/run/" # btfs Issue #120
"--exclude=aufs/diff/*/run/" # aufs (ext4) Issue #117
"--exclude=subvolumes/*/syslog-ng.ctl" # 0 byte file Issue #186
)
rsync -q -aHX --delete --compress-level=0 "${excludeargs[@]}" "/${sourcevol:?}/${1:?}$pack"/ "${bkpath:?}${extras}/${1:?}" |& tee -a "$logfile" &
else
rsync -q -aHX --delete --compress-level=0 "/${sourcevol:?}/${1:?}$pack"/ "${bkpath:?}${extras}/${1:?}" |& tee -a "$logfile" &
fi
pid=$!
string="${action} /${sourcevol}/${1}"
echo "$string" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
else
# If string is too long progbar gets messed up
#cp -prf "/${sourcevol:?}/${1:?}$pack" "${bkpath:?}${extras}/${1:?}" |& tee -a "$logfile" &
rsync -q -aHX --delete --compress-level=0 "/${sourcevol:?}/${1:?}$pack"/ "${bkpath:?}${extras}/${1:?}" |& tee -a "$logfile" &
pid=$!
string="${action} /${sourcevol}/${1}/${Cyan}$pkg${Off}"
echo "${action} /${sourcevol}/${1}/$pkg" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
fi
#fi
elif [[ ${mode,,} == "restore" ]]; then
#if [[ -d "${bkpath}/$1" ]]; then
# If string is too long progbar gets messed up
cp -prf "${bkpath:?}${extras}/${1:?}" "${targetvol:?}" |& tee -a "$logfile" &
pid=$!
if [[ -n "$extras" ]]; then
string="${action} $1 to $targetvol"
echo "$string" >> "$logfile"
else
string="${action} ${1}/${Cyan}$packshow${Off} to $targetvol"
echo "${action} ${1}/$packshow to $targetvol" >> "$logfile"
fi
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
#fi
fi
}
move_dir(){
# $1 is folder (@surveillance etc)
# $2 is "extras" or null
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
# Delete @eaDir to prevent errors
# e.g. "mv: cannot remove '/volume1/@<folder>': Operation not permitted"
if [[ -d "/${sourcevol:?}/${1:?}/@eaDir" ]]; then
rm -rf "/${sourcevol:?}/${1:?}/@eaDir" |& tee -a "$logfile"
fi
# Warn if folder is larger than 1GB
if [[ ! "${applist[*]}" =~ $1 ]]; then
folder_size "/${sourcevol:?}/$1"
if [[ $need -gt "1048576" ]]; then
echo -e "${Red}WARNING $action $1 could take a long time${Off}"
echo -e "WARNING $action $1 could take a long time" >> "$logfile"
fi
fi
if [[ -d "/${sourcevol:?}/${1:?}" ]]; then
if [[ ${mode,,} == "move" ]]; then
if [[ ! -d "/${targetvol:?}/${1:?}" ]]; then
if [[ $1 == "@docker" ]] || [[ $1 == "@img_bkp_cache" ]]; then
# Create @docker folder on target volume
create_dir "/${sourcevol:?}/${1:?}" "${targetvol:?}/${1:?}"
# Move contents of @docker to @docker on target volume
if [[ -w "/$sourcevol" ]]; then
mv -f "/${sourcevol:?}/${1:?}"/* "${targetvol:?}/${1:?}" |& tee -a "$logfile" &
else
# Source volume is read only
cp -prf "/${sourcevol:?}/${1:?}"/* "${targetvol:?}/${1:?}" |& tee -a "$logfile" &
fi
else
if [[ -w "/$sourcevol" ]]; then
mv -f "/${sourcevol:?}/${1:?}" "${targetvol:?}/${1:?}" |& tee -a "$logfile" &
else
# Source volume is read only
cp -prf "/${sourcevol:?}/${1:?}" "${targetvol:?}/${1:?}" |& tee -a "$logfile" &
fi
fi
pid=$!
string="${action} /${sourcevol}/$1 to ${Cyan}$targetvol${Off}"
echo "$string" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
elif ! is_empty "/${sourcevol:?}/${1:?}"; then
# Copy source contents if target folder exists
cp -prf "/${sourcevol:?}/${1:?}" "${targetvol:?}" |& tee -a "$logfile" &
pid=$!
string="Copying /${sourcevol}/$1 to ${Cyan}$targetvol${Off}"
echo "$string" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
# Delete source folder if empty
# if [[ $1 != "@docker" ]]; then
if is_empty "/${sourcevol:?}/${1:?}"; then
rm -rf --preserve-root "/${sourcevol:?}/${1:?}" |& tee -a "$logfile" &
pid=$!
exitonerror="no"
string="Removing /${sourcevol}/$1"
echo "$string" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
fi
fi
# fi
else
copy_dir "$1" "$2"
fi
elif [[ ${mode,,} == "restore" ]]; then
# Restore from USB backup
if [[ -d "/${bkpath:?}/${1:?}" ]]; then
copy_dir "$1" "$2"
fi
else
if [[ ${mode,,} != "restore" ]]; then
echo -e "No /${sourcevol}/$1 to ${mode,,}" |& tee -a "$logfile"
else
echo -e "No ${bkpath}/$1 to ${mode,,}" |& tee -a "$logfile"
fi
fi
}
move_extras(){
# $1 is package name
# $2 is destination /volume
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
local file
local value
# Change /volume1 to /volume2 etc
case "$1" in
ActiveBackup)
exitonerror="no" && move_dir "@ActiveBackup" extras
# /var/packages/ActiveBackup/target/log/
if [[ ${mode,,} != "backup" ]]; then
if ! readlink /var/packages/ActiveBackup/target/log | grep "${2:?}" >/dev/null; then
rm /var/packages/ActiveBackup/target/log |& tee -a "$logfile"
ln -s "${2:?}/@ActiveBackup/log" /var/packages/ActiveBackup/target/log |& tee -a "$logfile"
fi
file=/var/packages/ActiveBackup/target/etc/setting.conf
if [[ -f "$file" ]]; then
echo "{\"conf_repo_volume_path\":\"$2\"}" > "$file"
fi
fi
;;
ActiveBackup-GSuite)
exitonerror="no" && move_dir "@ActiveBackup-GSuite" extras
;;
ActiveBackup-Office365)
exitonerror="no" && move_dir "@ActiveBackup-Office365" extras
;;
AntiVirus)
exitonerror="no" && move_dir "@quarantine" extras
if [[ -d "$sourcevol/.quarantine" ]]; then
mv -f "$sourcevol/.quarantine" "${2:?}/}" |& tee -a "$logfile" &
fi
;;
Chat)
if [[ ${mode,,} == "move" ]]; then
echo -e "Are you going to move the ${Cyan}chat${Off} shared folder to ${Cyan}${targetvol}${Off}? [y/n]"
echo -e "Are you going to move the chat shared folder to ${targetvol}? [y/n]" >> "$logfile"
read -r answer
echo "$answer" >> "$logfile"
echo "" |& tee -a "$logfile"
if [[ ${answer,,} == y ]]; then
# /var/packages/Chat/shares/chat --> /volume1/chat
rm "/var/packages/${1:?}/shares/chat" |& tee -a "$logfile"
ln -s "${2:?}/chat" "/var/packages/${1:?}shares/chat" |& tee -a "$logfile"
# /var/packages/Chat/target/synochat --> /volume1/chat/@ChatWorking
rm "/var/packages/${1:?}/target/synochat" |& tee -a "$logfile"
ln -s "${2:?}/chat/@ChatWorking" "/var/packages/${1:?}target/synochat" |& tee -a "$logfile"
fi
fi
;;
Calendar)
exitonerror="no" && move_dir "@calendar" extras
if [[ -d "/@synocalendar" ]]; then
exitonerror="no" && move_dir "$sourcevol/@synocalendar" extras
fi
file="/var/packages/Calendar/etc/share_link.json"
if [[ -f "$file" ]]; then
if grep "$sourcevol/@calendar/attach" "$file" >/dev/null; then
instring="/$sourcevol/@calendar/attach"
repstring="$2/@calendar/attach"
sed -i 's|'"$instring"'|'"$repstring"'|g' "$file" |& tee -a "$logfile"
chmod 600 "$file" |& tee -a "$logfile"
fi
fi
;;
ContainerManager|Docker)
# /var/services/web_packages/docker ???
# Edit symlink before moving @docker
# If edit after it does not get edited if move @docker errors
if [[ ${mode,,} != "backup" ]]; then
if [[ $majorversion -gt "6" ]]; then
# /var/packages/ContainerManager/var/docker/ --> /volume1/@docker
# /var/packages/Docker/var/docker/ --> /volume1/@docker
if [[ -L "/var/packages/${pkg:?}/var/docker" ]]; then
rm "/var/packages/${pkg:?}/var/docker" |& tee -a "$logfile"
fi
ln -s "${2:?}/@docker" "/var/packages/${pkg:?}/var/docker" |& tee -a "$logfile"
else
# /var/packages/Docker/target/docker/ --> /volume1/@docker
if [[ -L "/var/packages/${pkg:?}/target/docker" ]]; then
rm "/var/packages/${pkg:?}/target/docker" |& tee -a "$logfile"
fi
ln -s "${2:?}/@docker" "/var/packages/${pkg:?}/target/docker" |& tee -a "$logfile"
fi
fi
exitonerror="no" && move_dir "@docker" extras
;;
DownloadStation)
exitonerror="no" && move_dir "@download" extras
;;
GlacierBackup)
exitonerror="no" && move_dir "@GlacierBackup" extras
if [[ ${mode,,} != "backup" ]]; then
file=/var/packages/GlacierBackup/etc/common.conf
if [[ -f "$file" ]]; then
echo "cache_volume=$2" > "$file"
fi
fi
;;
HyperBackup)
# Most of this section is not needed for moving HyperBackup.
# I left it here in case I can use it for some other package in future.
# Moving "@img_bkp_cache" and editing synobackup.conf
# to point the repos to the new location causes backup tasks
# to show as offline with no way to fix them or delete them!
#
# Thankfully HyperBackup recreates the data in @img_bkp_cache
# when the backup task is run, or a resync is done.
# file=/var/packages/HyperBackup/etc/synobackup.conf
# [repo_1]
# client_cache="/volume1/@img_bkp_cache/ClientCache_image_image_local.oJCDvd"
# if [[ -f "$file" ]]; then
# Get list of [repo_#] in $file
# readarray -t contents < "$file"
# for r in "${contents[@]}"; do
# l=$(echo "$r" | grep -E "repo_[0-9]+")
# if [[ -n "$l" ]]; then
# l="${l/]/}" && l="${l/[/}"
# repos+=("$l")
# fi
# done
# Edit values with sourcevol to targetvol
# for section in "${repos[@]}"; do
# value="$(/usr/syno/bin/get_section_key_value "$file" "$section" client_cache)"
# #echo "$value" # debug
# if echo "$value" | grep "$sourcevol" >/dev/null; then
# newvalue="${value/$sourcevol/$targetvol}"
#echo "$newvalue" # debug
#echo "" # debug
# /usr/syno/bin/set_section_key_value "$file" "$section" client_cache "$newvalue"
#echo "set_section_key_value $file $section client_cache $newvalue" # debug
#echo "" # debug
#echo "" # debug
# fi
# done
# fi
# Move @img_bkp folders
#if [[ -d "/${sourcevol}/@img_bkp_cache" ]] ||\
# [[ -d "/${sourcevol}/@img_bkp_mount" ]]; then
# backup_dir "@img_bkp_cache" "$sourcevol"
# backup_dir "@img_bkp_mount" "$sourcevol"
# exitonerror="no" && move_dir "@img_bkp_cache"
# exitonerror="no" && move_dir "@img_bkp_mount"
#fi
if [[ -d "/${sourcevol}/@img_bkp_cache" ]]; then
#backup_dir "@img_bkp_cache" "$sourcevol"
exitonerror="no" && move_dir "@img_bkp_cache" extras
fi
;;
jellyfin)
if [[ ${mode,,} != "backup" ]]; then
file=/var/packages/jellyfin/var/config/system.xml # Issue #171
if [[ -f "$file" ]]; then
sed -i 's|'"/$sourcevol/@appdata"'|'"${2:?}/@appdata"'|g' "$file"
fi
fi
;;
MailPlus-Server)
# Moving MailPlus-Server does not update
# /var/packages/MailPlus-Server/etc/synopkg_conf/reg_volume
# I'm not sure if it matters?
if [[ ${mode,,} != "backup" ]]; then
# Edit symlink /var/spool/@MailPlus-Server -> /volume1/@MailPlus-Server
if ! readlink /var/spool/@MailPlus-Server | grep "${2:?}" >/dev/null; then
rm /var/spool/@MailPlus-Server |& tee -a "$logfile"
ln -s "${2:?}/@MailPlus-Server" /var/spool/@MailPlus-Server |& tee -a "$logfile"
chown -h MailPlus-Server:MailPlus-Server /var/spool/@MailPlus-Server |& tee -a "$logfile"
fi
# Edit logfile /volume1/@maillog/rspamd_redis.log
# in /volume2/@MailPlus-Server/rspamd/redis/redis.conf
file="/$sourcevol/@MailPlus-Server/rspamd/redis/redis.conf"
if [[ -f "$file" ]]; then
if grep "$sourcevol" "$file" >/dev/null; then
sed -i 's|'"logfile /$sourcevol"'|'"logfile ${2:?}"'|g' "$file" |& tee -a "$logfile"
chmod 600 "$file" |& tee -a "$logfile"
fi
fi
fi
exitonerror="no" && move_dir "@maillog" extras
exitonerror="no" && move_dir "@MailPlus-Server" extras
;;
MailServer)
exitonerror="no" && move_dir "@maillog" extras
exitonerror="no" && move_dir "@MailScanner" extras
exitonerror="no" && move_dir "@clamav" extras
;;
Node.js_v*)
if [[ ${mode,,} != "backup" ]]; then
if readlink /usr/local/bin/node | grep "${1:?}" >/dev/null; then
rm /usr/local/bin/node |& tee -a "$logfile"
ln -s "${2:?}/@appstore/${1:?}/usr/local/bin/node" /usr/local/bin/node |& tee -a "$logfile"
fi
for n in /usr/local/node/nvm/versions/* ; do
if readlink "${n:?}/bin/node" | grep "${1:?}" >/dev/null; then
rm "${n:?}/bin/node" |& tee -a "$logfile"
ln -s "${2:?}/@appstore/${1:?}/usr/local/bin/node" "${n:?}/bin/node" |& tee -a "$logfile"
fi
done
fi
;;
PrestoServer)
exitonerror="no" && move_dir "@presto" extras
if [[ ${mode,,} != "backup" ]]; then
file=/var/packages/PrestoServer/etc/db-path.conf
if [[ -f "$file" ]]; then
echo "db-vol=${2:?}" > "$file"
fi
fi
;;
SurveillanceStation)
exitonerror="no" && move_dir "@ssbackup" extras
exitonerror="no" && move_dir "@surveillance" extras
if [[ ${mode,,} != "backup" ]]; then
file=/var/packages/SurveillanceStation/etc/settings.conf
if [[ -f "$file" ]]; then
/usr/syno/bin/synosetkeyvalue "$file" active_volume "${2:?}" |& tee -a "$logfile"
file=/var/packages/SurveillanceStation/target/@surveillance
rm "$file" |& tee -a "$logfile"
ln -s "${2:?}/@surveillance" /var/packages/SurveillanceStation/target |& tee -a "$logfile"
chown -h SurveillanceStation:SurveillanceStation "$file" |& tee -a "$logfile"
fi
fi
;;
synocli*)
#exitonerror="no" && move_dir "@$1"
;;
SynologyApplicationService)
exitonerror="no" && move_dir "@SynologyApplicationService" extras
if [[ ${mode,,} != "backup" ]]; then
file=/var/packages/SynologyApplicationService/etc/settings.conf
if [[ -f "$file" ]]; then
/usr/syno/bin/synosetkeyvalue "$file" volume "${2:?}/@SynologyApplicationService" |& tee -a "$logfile"
fi
fi
;;
SynologyDrive)
# Synology Drive database
# Moving the database in Synology Drive Admin moves @synologydrive
#exitonerror="no" && move_dir "@synologydrive" extras
# Synology Drive ShareSync Folder
exitonerror="no" && move_dir "@SynologyDriveShareSync" extras
if [[ ${mode,,} != "backup" ]]; then
file=/var/packages/SynologyDrive/etc/sharesync/daemon.conf
if [[ -f "$file" ]]; then
sed -i 's|'/"$sourcevol"'|'"${2:?}"'|g' "$file" |& tee -a "$logfile"
chmod 644 "$file" |& tee -a "$logfile"
fi
file=/var/packages/SynologyDrive/etc/sharesync/monitor.conf
if [[ -f "$file" ]]; then
value="$(synogetkeyvalue "$file" system_db_path)"
if [[ -n $value ]]; then
/usr/syno/bin/synosetkeyvalue "$file" system_db_path "${value/${sourcevol}/$(basename "${2:?}")}" |& tee -a "$logfile"
fi
fi
file=/var/packages/SynologyDrive/etc/sharesync/service.conf
if [[ -f "$file" ]]; then
/usr/syno/bin/synosetkeyvalue "$file" volume "${2:?}" |& tee -a "$logfile"
fi
# Moving the database in Synology Drive Admin changes
# the repo symlink and the db-vol setting
# in /var/packages/SynologyDrive/etc/db-path.conf
#if ! readlink /var/packages/SynologyDrive/etc/repo | grep "${2:?}" >/dev/null; then
# rm /var/packages/SynologyDrive/etc/repo |& tee -a "$logfile"
# ln -s "${2:?}/@synologydrive/@sync" /var/packages/SynologyDrive/etc/repo |& tee -a "$logfile"
#fi
fi
;;
WebDAVServer)
exitonerror="no" && move_dir "@webdav" extras
;;
Virtualization)
exitonerror="no" && move_dir "@GuestImage" extras
exitonerror="no" && move_dir "@Repository" extras
# Move Virtual Machines - target must be btrfs
#exitonerror="no" && move_dir "@iSCSI" extras
# VMM creates /volume#/vdsm_repo.conf so no need to move it
;;
*)
return
;;
esac
}
web_packages(){
# $1 is pkg in lower case
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
if [[ $buildnumber -gt "64570" ]]; then
# DSM 7.2.1 and later
# synoshare --get-real-path is case insensitive
web_pkg_path=$(/usr/syno/sbin/synoshare --get-real-path web_packages)
else
# DSM 7.2 and earlier
# synoshare --getmap is case insensitive
web_pkg_path=$(/usr/syno/sbin/synoshare --getmap web_packages | grep volume | cut -d"[" -f2 | cut -d"]" -f1)
# I could also have used:
# web_pkg_path=$(/usr/syno/sbin/synoshare --get web_packages | tr '[]' '\n' | sed -n "9p")
fi
if [[ -d "$web_pkg_path" ]]; then
if [[ -n "${pkg:?}" ]] && [[ -d "$web_pkg_path/${pkg,,}" ]]; then
if [[ ${mode,,} == "backup" ]]; then
if [[ ! -d "${bkpath}/web_packages" ]]; then
mkdir -m 755 "${bkpath:?}/web_packages"
fi
if [[ -d "${bkpath}/web_packages" ]]; then
# If string is too long progbar gets messed up
cp -prf "${web_pkg_path:?}/${1:?}" "${bkpath:?}/web_packages" |& tee -a "$logfile" &
pid=$!
string="${action} $web_pkg_path/${pkg,,}"
echo "$string" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
else
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} Failed to create directory!"
echo -e "Line ${LINENO}: ERROR Failed to create directory!" >> "$logfile"
echo -e " ${bkpath:?}/web_packages\n" |& tee -a "$logfile"
fi
elif [[ ${mode,,} == "restore" ]]; then
if [[ -d "${bkpath}/web_packages/${1}" ]]; then
# If string is too long progbar gets messed up
cp -prf "${bkpath:?}/web_packages/${1:?}" "${web_pkg_path:?}" |& tee -a "$logfile" &
pid=$!
string="${action} $web_pkg_path/${pkg,,}"
echo "$string" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
fi
fi
fi
fi
}
check_pkg_installed(){
# Check if package is installed
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
# $1 is package
# $2 is package name
/usr/syno/bin/synopkg status "${1:?}" >/dev/null
code="$?"
if [[ $code == "255" ]] || [[ $code == "4" ]]; then
ding
echo -e "${Error}ERROR${Off} ${Cyan}${2}${Off} is not installed!"
echo -e "ERROR ${2} is not installed!" >> "$logfile"
echo -e "Install ${Cyan}${2}${Off} then try Restore again"
echo -e "Install ${2} then try Restore again" >> "$logfile"
process_error="yes"
if [[ $all != "yes" ]]; then
exit 1 # Skip exit if mode is All
fi
return 1
else
return 0
fi
}
check_pkg_versions_match(){
# $1 is installed package version
# $2 is backed up package version
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
if [[ $1 != "$2" ]]; then
ding
echo -e "${Yellow}Backup and installed package versions don't match!${Off}"
echo -e "Backup and installed package versions don't match!" >> "$logfile"
echo " Backed up version: $2" |& tee -a "$logfile"
echo " Installed version: $1" |& tee -a "$logfile"
echo "Do you want to continue restoring ${pkg_name}? [y/n]" |& tee -a "$logfile"
read -r reply
if [[ ${reply,,} != "y" ]]; then
exit # Answered no
else
echo "" |& tee -a "$logfile"
fi
fi
}
skip_dev_tools(){
# $1 is $pkg
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
local skip1
local skip2
if [[ ${mode,,} == "backup" ]]; then
skip1="$(/usr/syno/bin/synogetkeyvalue "/var/packages/${package}/INFO" startable)"
skip2="$(/usr/syno/bin/synogetkeyvalue "/var/packages/${package}/INFO" ctl_stop)"
elif [[ ${mode,,} == "restore" ]]; then
skip1="$(/usr/syno/bin/synogetkeyvalue "${backuppath}/syno_app_mover/${package}/INFO" startable)"
skip2="$(/usr/syno/bin/synogetkeyvalue "${backuppath}/syno_app_mover/${package}/INFO" ctl_stop)"
fi
if [[ $skip1 == "no" ]] || [[ $skip2 == "no" ]]; then
return 0
else
return 1
fi
}
prune_dangling(){
if [[ $pkg == "ContainerManager" ]] || [[ $pkg == "Docker" ]]; then
if [[ -w "/$sourcevol" ]]; then
# Start package if needed so we can prune images
if ! package_is_running "$pkg"; then
package_start "$pkg" "$pkg_name"
fi
if [[ ${mode,,} == "restore" ]]; then
# Remove dangling and unused images
echo "Removing dangling and unused docker images" |& tee -a "$logfile"
docker image prune --all --force >/dev/null
else
# Remove dangling images
echo "Removing dangling docker images" |& tee -a "$logfile"
docker image prune --force >/dev/null
fi
else
# Skip read only source volume
echo "/$sourcevol is read only. Skipping:" |& tee -a "$logfile"
echo " - Removing dangling and unused docker images" |& tee -a "$logfile"
fi
fi
}
check_pkg_size(){
# $1 is package name
# $2 is package source volume
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
if [[ $pkg == "@database" ]]; then
size=$(/usr/bin/du -s /var/services/pgsql/ | awk '{print $1}')
else
#size=$(/usr/bin/du -sL /var/packages/"$1"/target | awk '{print $1}')
size=$(/usr/bin/du -s /var/packages/"$1"/target/ | awk '{print $1}')
case "$1" in
ActiveBackup)
if [[ -d "/$sourcevol/@ActiveBackup" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@ActiveBackup | awk '{print $1}')
size=$((size +"$size2"))
fi
;;
ActiveBackup-GSuite)
if [[ -d "/$sourcevol/@ActiveBackup-GSuite" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@ActiveBackup-GSuite | awk '{print $1}')
size=$((size +"$size2"))
fi
;;
ActiveBackup-Office365)
if [[ -d "/$sourcevol/@ActiveBackup-Office365" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@ActiveBackup-Office365 | awk '{print $1}')
size=$((size +"$size2"))
fi
;;
Calendar)
if [[ -d "/$sourcevol/@calendar" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@calendar | awk '{print $1}')
size=$((size +"$size2"))
fi
;;
ContainerManager|Docker)
prune_dangling # Prune dangling docker images
if [[ -d "/$sourcevol/@docker" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@docker | awk '{print $1}')
size=$((size +"$size2"))
fi
;;
DownloadStation)
if [[ -d "/$sourcevol/@download" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@download | awk '{print $1}')
size=$((size +"$size2"))
fi
;;
GlacierBackup)
if [[ -d "/$sourcevol/@GlacierBackup" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@GlacierBackup | awk '{print $1}')
size=$((size +"$size2"))
fi
;;
HyperBackup)
if [[ -d "/$sourcevol/@img_bkp_cache" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@img_bkp_cache | awk '{print $1}')
size=$((size +"$size2"))
fi
;;
MailPlus-Server)
if [[ -d "/$sourcevol/@maillog" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@maillog | awk '{print $1}')
size=$((size +"$size2"))
fi
if [[ -d "/$sourcevol/@MailPlus-Server" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@MailPlus-Server | awk '{print $1}')
size=$((size +"$size2"))
fi
;;
MailServer)
if [[ -d "/$sourcevol/@maillog" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@maillog | awk '{print $1}')
size=$((size +"$size2"))
fi
if [[ -d "/$sourcevol/@MailScanner" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@MailScanner | awk '{print $1}')
size=$((size +"$size2"))
fi
if [[ -d "/$sourcevol/@clamav" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@clamav | awk '{print $1}')
size=$((size +"$size2"))
fi
;;
PrestoServer)
if [[ -d "/$sourcevol/@presto" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@presto | awk '{print $1}')
size=$((size +"$size2"))
fi
;;
SurveillanceStation)
if [[ -d "/$sourcevol/@ssbackup" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@ssbackup | awk '{print $1}')
size=$((size +"$size2"))
fi
if [[ -d "/$sourcevol/@surveillance" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@surveillance | awk '{print $1}')
size=$((size +"$size2"))
fi
;;
SynologyApplicationService)
if [[ -d "/$sourcevol/@SynologyApplicationService" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@SynologyApplicationService | awk '{print $1}')
size=$((size +"$size2"))
fi
;;
SynologyDrive)
# Moving the database in Synology Drive Admin moves @synologydrive
#if [[ -d "/$sourcevol/@synologydrive" ]]; then
# size2=$(/usr/bin/du -s /"$sourcevol"/@synologydrive | awk '{print $1}')
# size=$((size +"$size2"))
#fi
if [[ -d "/$sourcevol/@SynologyDriveShareSync" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@SynologyDriveShareSync | awk '{print $1}')
size=$((size +"$size2"))
fi
;;
WebDAVServer)
if [[ -d "/$sourcevol/@webdav" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@webdav | awk '{print $1}')
size=$((size +"$size2"))
fi
;;
Virtualization)
if [[ -d "/$sourcevol/@GuestImage" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@GuestImage | awk '{print $1}')
size=$((size +"$size2"))
fi
if [[ -d "/$sourcevol/@Repository" ]]; then
size2=$(/usr/bin/du -s /"$sourcevol"/@Repository | awk '{print $1}')
size=$((size +"$size2"))
fi
;;
*)
total_size="$size"
return
;;
esac
fi
total_size="$size"
}
source_fs(){
# $1 is $sourcevol
sourcefs="$(df --print-type "/${1:?}" | tail -n +2 | awk '{print $2}')"
}
target_fs(){
# $1 is $targetvol
targetfs="$(df --print-type "/${1:?}" | tail -n +2 | awk '{print $2}')"
}
#------------------------------------------------------------------------------
# Select mode
echo "" |& tee -a "$logfile"
if [[ $auto == "yes" ]]; then
echo -e "Using auto ${Cyan}${mode}${Off} mode\n"
echo -e "Using auto $mode mode\n" >> tee -a "$logfile"
else
modes=( "Move" "Backup" "Restore" )
x="1"
for m in "${modes[@]}"; do
echo "$x) $m" >> "$logfile"
x=$((x +1))
done
echo "Select the mode " >> "$logfile"
PS3="Select the mode: "
select m in "${modes[@]}"; do
case "$m" in
Move)
mode="Move"
action="Moving"
break
;;
Backup)
mode="Backup"
action="Backing up"
break
;;
Restore)
mode="Restore"
action="Restoring"
break
;;
*)
echo "Invalid choice!" |& tee -a "$logfile"
;;
esac
done
echo -e "You selected ${Cyan}${mode}${Off}\n"
echo -e "You selected ${mode}\n" >> "$logfile"
fi
# Check backup path if mode is backup or restore
if [[ ${mode,,} != "move" ]]; then
if [[ ! -f "$conffile" ]]; then
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} $conffile not found!"
echo -e "Line ${LINENO}: ERROR $conffile not found!" >> "$logfile"
exit 1 # Conf file not found
fi
if [[ ! -r "$conffile" ]]; then
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} $conffile not readable!"
echo -e "Line ${LINENO}: ERROR $conffile not readable!" >> "$logfile"
exit 1 # Conf file not readable
fi
# Get and validate backup path
backuppath="$(/usr/syno/bin/synogetkeyvalue "$conffile" backuppath)"
if [[ -z "$backuppath" ]]; then
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} backuppath missing from ${conffile}!"
echo -e "Line ${LINENO}: ERROR backuppath missing from ${conffile}!" >> "$logfile"
exit 1 # Backup path missing in conf file
elif [[ ! -d "$backuppath" ]]; then
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} Backup folder ${Cyan}$backuppath${Off} not found!"
echo -e "Line ${LINENO}: ERROR Backup folder $backuppath not found!" >> "$logfile"
exit 1 # Backup folder not found
fi
# Get list of excluded packages
exclude="$(/usr/syno/bin/synogetkeyvalue "$conffile" exclude)"
if [[ $exclude ]]; then
IFS=',' read -r -a excludes <<< "$exclude"; unset IFS
# Trim leading and trailing spaces
for i in "${excludes[@]}"; do
excludelist+=($(echo -n "$i" | xargs))
done
fi
# Get age of container settings exports to delete
delete_older="$(/usr/syno/bin/synogetkeyvalue "$conffile" delete_older)"
# Get list of ignored containers
ignored_containers="$(/usr/syno/bin/synogetkeyvalue "$conffile" ignored_containers)"
if [[ $ignored_containers ]]; then
IFS=',' read -r -a ignoreds <<< "$ignored_containers"; unset IFS
# Trim leading and trailing spaces
for i in "${ignoreds[@]}"; do
ignored_containers_list+=($(echo -n "$i" | xargs))
done
fi
fi
if [[ ${mode,,} == "backup" ]]; then
echo -e "Backup path is: ${Cyan}${backuppath}${Off}\n"
echo -e "Backup path is: ${backuppath}\n" >> "$logfile"
elif [[ ${mode,,} == "restore" ]]; then
echo -e "Restore from path is: ${Cyan}${backuppath}${Off}\n"
echo -e "Restore from path is: ${backuppath}\n" >> "$logfile"
fi
# Check USB backup path file system is ext3, ext4 or btrfs if mode is backup
backupvol="$(echo "$backuppath" | cut -d"/" -f2)"
if [[ $backupvol =~ volumeUSB[1-9] ]]; then
filesys="$(mount | grep "/${backupvol:?}/usbshare " | awk '{print $5}')"
if [[ ! $filesys =~ ^ext[3-4]$ ]] && [[ ! $filesys =~ ^btrfs$ ]]; then
ding
echo -e "${Yellow}WARNING${Off} Only backup to ext3, ext4 or btrfs USB partition!"
echo -e "WARNING Only backup to ext3, ext4 or btrfs USB partition!" >> "$logfile"
exit 1 # USB volume is not ext3, ext4 of btrfs
fi
fi
#------------------------------------------------------------------------------
# Select package
declare -A package_names
declare -A package_names_rev
package_infos=( )
if [[ ${mode,,} != "restore" ]]; then
if [[ $auto == "yes" ]] && [[ $all != "yes" ]]; then
# Add auto packages to array
for package in "${autolist[@]}"; do
package_name="$(/usr/syno/bin/synogetkeyvalue "/var/packages/${package}/INFO" displayname)"
if [[ -z "$package_name" ]]; then
package_name="$(/usr/syno/bin/synogetkeyvalue "/var/packages/${package}/INFO" package)"
fi
# Skip packages that are dev tools with no data
if ! skip_dev_tools "$package"; then
#package_infos+=("${package_name}")
package_names["${package_name}"]="${package}"
package_names_rev["${package}"]="${package_name}"
else
echo -e "Skipping non-stoppable app: $package_name" |& tee -a "$logfile"
skip_echo="yes"
fi
done
# Show skipped system apps
if [[ ${#skipped[*]} -gt "0" ]]; then
echo -e "Skipping system app(s): ${skipped[*]}" |& tee -a "$logfile"
skip_echo="yes"
fi
if [[ $skip_echo == "yes" ]]; then
echo "" |& tee -a "$logfile"
fi
else
# Add non-system packages to array
cdir /var/packages || exit
while IFS= read -r -d '' link && IFS= read -r -d '' target; do
if [[ ${link##*/} == "target" ]] && echo "$target" | grep -q 'volume'; then
# Check symlink target exists
if [[ -a "/var/packages${link#.}" ]] ; then
# Skip broken packages with no INFO file
package="$(printf %s "$link" | cut -d'/' -f2 )"
if [[ -f "/var/packages/${package}/INFO" ]]; then
package_volume="$(printf %s "$target" | cut -d'/' -f1,2 )"
package_name="$(/usr/syno/bin/synogetkeyvalue "/var/packages/${package}/INFO" displayname)"
if [[ -z "$package_name" ]]; then
package_name="$(/usr/syno/bin/synogetkeyvalue "/var/packages/${package}/INFO" package)"
fi
# Skip packages that are dev tools with no data
if ! skip_dev_tools "$package"; then
package_infos+=("${package_volume}|${package_name}")
package_names["${package_name}"]="${package}"
package_names_rev["${package}"]="${package_name}"
fi
fi
fi
fi
done < <(find . -maxdepth 2 -type l -printf '%p\0%l\0')
fi
elif [[ ${mode,,} == "restore" ]]; then
# Add list of backed up packages to array
cdir "${backuppath}/syno_app_mover" || exit
for package in *; do
if [[ -d "$package" ]] && [[ $package != "@eaDir" ]]; then
if [[ ${package:0:1} != "-" ]]; then
package_name="$(/usr/syno/bin/synogetkeyvalue "${backuppath}/syno_app_mover/${package}/INFO" displayname)"
if [[ -z "$package_name" ]]; then
package_name="$(/usr/syno/bin/synogetkeyvalue "${backuppath}/syno_app_mover/${package}/INFO" package)"
fi
# Skip packages that are dev tools with no data
if ! skip_dev_tools "$package"; then
package_infos+=("${package_name}")
package_names["${package_name}"]="${package}"
package_names_rev["${package}"]="${package_name}"
fi
fi
fi
done < <(find . -maxdepth 2 -type d)
fi
# Add USB Copy if installed (so we can show how to move USB Copy's database)
if [[ ${mode,,} == "move" ]]; then
package_status USBCopy >/dev/null
code="$?"
if [[ $code -lt "2" ]]; then
package_names["USB Copy"]="USBCopy"
package_names_rev["USBCopy"]="USB Copy"
file="/var/packages/USBCopy/etc/setting.conf"
package_volume=$(synogetkeyvalue "$file" repo_vol_path)
usbcopy_vol="$package_volume"
if [[ ${mode,,} != "restore" ]]; then
package_infos+=("${package_volume}|USB Copy")
elif [[ ${mode,,} == "restore" ]]; then
package_infos+=("USB Copy")
fi
fi
fi
# Add @database if Move selected
if [[ ${mode,,} == "move" ]]; then
package_names["@database"]="@database"
package_names_rev["@database"]="@database"
package_volume="/$(readlink "/var/services/pgsql" | cut -d"/" -f2)"
database_vol="$package_volume"
if [[ ${mode,,} != "restore" ]]; then
package_infos+=("${package_volume}|@database")
elif [[ ${mode,,} == "restore" ]]; then
package_infos+=("@database")
fi
fi
# Sort array
IFS=$'\n' package_infos_sorted=($(sort <<<"${package_infos[*]}")); unset IFS
if [[ $auto != "yes" ]]; then
# Offer to backup or restore all packages
if [[ ${mode,,} == "backup" ]]; then
echo -e "Do you want to backup ${Cyan}All${Off} packages? [y/n]"
echo -e "Do you want to backup All packages? [y/n]" >> "$logfile"
read -r answer
echo "$answer" >> "$logfile"
#echo "" |& tee -a "$logfile"
if [[ ${answer,,} == "y" ]]; then
all="yes"
echo -e "You selected ${Cyan}All${Off}\n"
echo -e "You selected All\n" >> "$logfile"
fi
elif [[ ${mode,,} == "restore" ]]; then
echo -e "Do you want to restore ${Cyan}All${Off} backed up packages? [y/n]"
echo -e "Do you want to restore All backed up packages? [y/n]" >> "$logfile"
read -r answer
#echo "" |& tee -a "$logfile"
if [[ ${answer,,} == "y" ]]; then
all="yes"
echo -e "You selected ${Cyan}All${Off}\n"
echo -e "You selected All\n" >> "$logfile"
fi
fi
if [[ $all != "yes" ]]; then
if [[ ${mode,,} != "restore" ]]; then
# Select package to move or backup
if [[ ${#package_infos_sorted[@]} -gt 0 ]]; then
echo -e "[Installed package list]" |& tee -a "$logfile"
for ((i=1; i<=${#package_infos_sorted[@]}; i++)); do
info="${package_infos_sorted[i-1]}"
before_pipe="${info%%|*}"
after_pipe="${info#*|}"
package_infos_show+=("$before_pipe $after_pipe")
done
fi
if [[ ${#package_infos_show[@]} -gt 0 ]]; then
x="1"
for m in "${package_infos_show[@]}"; do
echo "$x) $m" >> "$logfile"
x=$((x +1))
done
echo "Select the package to ${mode,,} " >> "$logfile"
PS3="Select the package to ${mode,,}: "
select m in "${package_infos_show[@]}"; do
case "$m" in
/volume*)
# Parse selected element of array
package_volume="$(echo "$m" | awk '{print $1}')"
pkg_name=${m#"$package_volume "}
pkg="${package_names[${pkg_name}]}"
break
;;
*)
echo "Invalid choice! $m" |& tee -a "$logfile"
;;
esac
done
else
echo "No movable packages found!" |& tee -a "$logfile"
exit 1
fi
echo -e "You selected ${Cyan}${pkg_name}${Off} in ${Cyan}${package_volume}${Off}\n"
echo -e "You selected ${pkg_name} in ${package_volume}\n" >> "$logfile"
if [[ ${pkg_name} == "USB Copy" ]]; then
linktargetvol="$usbcopy_vol"
elif [[ ${pkg_name} == "@database" ]]; then
linktargetvol="$database_vol"
else
target=$(readlink "/var/packages/${pkg}/target")
linktargetvol="/$(printf %s "${target:?}" | cut -d'/' -f2 )"
fi
elif [[ ${mode,,} == "restore" ]]; then
# Select package to backup
# Select package to restore
if [[ ${#package_infos_sorted[@]} -gt 0 ]]; then
echo -e "[Restorable package list]" |& tee -a "$logfile"
x="1"
for p in "${package_infos_sorted[@]}"; do
echo "$x) $p" >> "$logfile"
x=$((x +1))
done
echo "Select the package to restore " >> "$logfile"
PS3="Select the package to restore: "
select pkg_name in "${package_infos_sorted[@]}"; do
if [[ $pkg_name ]]; then
pkg="${package_names[${pkg_name}]}"
if [[ -d $pkg ]]; then
echo -e "You selected ${Cyan}${pkg_name}${Off}\n"
echo -e "You selected ${pkg_name}\n" >> "$logfile"
break
else
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} $pkg_name not found!"
echo -e "Line ${LINENO}: ERROR $pkg_name not found!" >> "$logfile"
exit 1 # Selected package not found
fi
else
echo "Invalid choice!" |& tee -a "$logfile"
fi
done
# Check if package is installed
check_pkg_installed "$pkg" "$pkg_name"
else
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} No package backups found!"
echo -e "Line ${LINENO}: ERROR No package backups found!" >> "$logfile"
exit 1 # No package backups found
fi
fi
fi
fi
# Assign just the selected package to array
if [[ $all != "yes" ]] && [[ $auto != "yes" ]]; then
unset package_names
declare -A package_names
package_names["${pkg_name:?}"]="${pkg:?}"
unset package_names_rev
declare -A package_names_rev
package_names_rev["${pkg:?}"]="${pkg_name:?}"
fi
#------------------------------------------------------------------------------
# Select volume
# Get list of available volumes
volumes=( )
for volume in /volume*; do
# Ignore /volumeUSB# and /volume0
if [[ $volume =~ /volume[1-9][0-9]?$ ]]; then
# Skip volume package is currently installed on
if [[ $volume != "$linktargetvol" ]]; then
# Ignore unmounted volumes
if df -h | grep "$volume" >/dev/null ; then
volumes+=("$volume")
fi
fi
fi
done
# Select destination volume
if [[ ${mode,,} == "move" ]]; then
if [[ ${#volumes[@]} -gt 1 ]]; then
x="1"
for v in "${volumes[@]}"; do
echo "$x) $v" >> "$logfile"
x=$((x +1))
done
echo "Select the destination volume " >> "$logfile"
PS3="Select the destination volume: "
select targetvol in "${volumes[@]}"; do
if [[ $targetvol ]]; then
if [[ -d $targetvol ]]; then
echo -e "You selected ${Cyan}${targetvol}${Off}\n"
echo -e "You selected ${targetvol}\n" >> "$logfile"
break
else
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} $targetvol not found!"
echo -e "Line ${LINENO}: ERROR $targetvol not found!" >> "$logfile"
exit 1 # Target volume not found
fi
else
echo "Invalid choice!" |& tee -a "$logfile"
fi
done
elif [[ ${#volumes[@]} -eq 1 ]]; then
targetvol="${volumes[0]}"
echo -e "Destination volume is ${Cyan}${targetvol}${Off}\n"
echo -e "Destination volume is ${targetvol}\n" >> "$logfile"
else
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} Only 1 volume found!"
echo -e "Line ${LINENO}: ERROR Only 1 volume found!" >> "$logfile"
exit 1 # Only 1 volume
fi
elif [[ ${mode,,} == "backup" ]]; then
targetvol="/$(echo "${backuppath:?}" | cut -d"/" -f2)"
if [[ $all != "yes" ]]; then
echo -e "Destination volume is ${Cyan}${targetvol}${Off}\n"
echo -e "Destination volume is ${targetvol}\n" >> "$logfile"
fi
elif [[ ${mode,,} == "restore" ]]; then
if [[ $all != "yes" ]]; then
targetvol="/$(readlink "/var/packages/${pkg:?}/target" | cut -d"/" -f2)"
echo -e "Destination volume is ${Cyan}${targetvol}${Off}\n"
echo -e "Destination volume is ${targetvol}\n" >> "$logfile"
fi
fi
warn_docker(){
ding
echo -en "${Yellow}WARNING${Off} $action $pkg_name containers from "
echo -e "${Cyan}$sourcefs${Off} volume to ${Cyan}$targetfs${Off} volume"
echo -e "results in needing to migrate the containers. Some may fail to migrate.\n"
echo -n "WARNING $action docker containers from " >> "$logfile"
echo "$sourcefs volume to $targetfs volume" >> "$logfile"
echo -e "results in needing to migrate the containers. Some may fail to migrate.\n" >> "$logfile"
sleep 2
}
# Check source and target filesystem if Docker or Container Manager selected
if [[ ${package_names[*]} =~ "ContainerManager" ]] || [[ ${package_names[*]} =~ "Docker" ]]; then
if [[ $mode == "restore" ]]; then
sourcevol=$(echo "$bkpath" | cut -d "/" -f2)
else
if [[ ${package_names[*]} =~ "ContainerManager" ]]; then
pkg="ContainerManager"
pkg_name="Container Manager"
elif [[ ${package_names[*]} =~ "Docker" ]]; then
pkg="Docker"
pkg_name="Docker"
fi
target=$(readlink "/var/packages/${pkg}/target")
sourcevol="$(printf %s "${target:?}" | cut -d'/' -f2 )"
fi
source_fs "$sourcevol"
target_fs "$targetvol"
if [[ $targetfs != "$sourcefs" ]]; then
# Warn about different filesystems
warn_docker
docker_migrate="yes"
fi
fi
# Check selected pkgs will fit on target volume
# Should add a progress bar?
if [[ "${#package_names[@]}" -gt "1" ]]; then
echo -e "Checking size of selected apps" |& tee -a "$logfile"
else
echo -e "Checking size of ${package_names_rev[*]}" |& tee -a "$logfile"
fi
for pkg in "${package_names[@]}"; do
# Get volume package is installed on
sourcevol="$(readlink "/var/packages/$pkg/target" | cut -d'/' -f2)"
# Get pkg total size
check_pkg_size "$pkg" "/$sourcevol"
all_pkg_size=$((all_pkg_size +total_size))
done
# Abort if not enough space on target volume
if ! check_space "$pkg" "${targetvol:?}" "$all_pkg_size"; then
ding
exit 1 # Not enough space
fi
# Show size of selected packages
if [[ $all_pkg_size -gt "999999" ]]; then
echo -e "Size of selected app(s) is $((all_pkg_size /1048576)) GB\n" |& tee -a "$logfile"
elif [[ $all_pkg_size -gt "999" ]]; then
echo -e "Size of selected app(s) is $((all_pkg_size /1048)) MB\n" |& tee -a "$logfile"
else
echo -e "Size of selected app(s) is $all_pkg_size KB\n" |& tee -a "$logfile"
fi
# Check user is ready
if [[ $auto != "yes" ]]; then
if [[ $all == "yes" ]]; then
if [[ ${mode,,} == "backup" ]]; then
echo -e "Ready to ${Yellow}${mode}${Off} ${Cyan}All${Off} packages to ${Cyan}${backuppath}${Off}? [y/n]"
echo -e "Ready to $mode All packages to ${backuppath}? [y/n]" >> "$logfile"
else
echo -e "Ready to ${Yellow}${mode}${Off} ${Cyan}All${Off} backed up packages? [y/n]"
echo -e "Ready to $mode All backed up packages? [y/n]" >> "$logfile"
fi
elif [[ ${mode,,} == "backup" ]]; then
echo -e "Ready to ${Yellow}${mode}${Off} ${Cyan}${pkg_name}${Off} to ${Cyan}${backuppath}${Off}? [y/n]"
echo -e "Ready to $mode ${Cyan}${pkg_name} to ${backuppath}? [y/n]" >> "$logfile"
else
echo -e "Ready to ${Yellow}${mode}${Off} ${Cyan}${pkg_name}${Off} to ${Cyan}${targetvol}${Off}? [y/n]"
echo -e "Ready to $mode ${pkg_name} to ${targetvol}? [y/n]" >> "$logfile"
fi
read -r answer
echo "$answer" >> "$logfile"
echo "" |& tee -a "$logfile"
if [[ ${answer,,} != y ]]; then
exit # Answered no
fi
fi
# Reset shell's SECONDS var to later show how long the script took
SECONDS=0
#------------------------------------------------------------------------------
# Get list of packages sorted by with dependents, with dependencies then others
# Loop through package_names associative array
for pkg_name in "${!package_names[@]}"; do
pkg="${package_names["$pkg_name"]}"
# Get list of packages with dependents
has_dependtents=()
has_dependtents+=($(/usr/syno/bin/synopkg list --name --depend-on "$pkg"))
if [[ ${#has_dependtents[@]} -gt "0" ]]; then
# Add to list of running packages with dependents
pkgs_with_deps+=("$pkg")
else
# Get list of packages with dependencies
has_deps=""
info="/var/packages/${pkg}/INFO"
has_deps=$(/usr/syno/bin/synogetkeyvalue "$info" install_dep_packages)
if [[ -n "$has_deps" ]]; then
# Add to list of packages with dependencies
dep_pkgs+=("$pkg")
else
# Add to list of other packages
pkgs_no_dep+=("$pkg")
fi
fi
done
# Sort array
IFS=$'\n' pkgs_with_deps_sorted=($(sort -u <<<"${pkgs_with_deps[*]}")); unset IFS
# Sort array
IFS=$'\n' dep_pkgs_sorted=($(sort -u <<<"${dep_pkgs[*]}")); unset IFS
# Sort array
IFS=$'\n' pkgs_no_dep_sorted=($(sort -u <<<"${pkgs_no_dep[*]}")); unset IFS
# Add packages with dependents to pkgs_sorted
for v in "${!pkgs_with_deps_sorted[@]}"; do
pkgs_sorted+=("${pkgs_with_deps_sorted["$v"]}")
done
# Append packages with dependencies to pkgs_sorted
for v in "${!dep_pkgs_sorted[@]}"; do
pkgs_sorted+=("${dep_pkgs_sorted["$v"]}")
done
# Append other packages to pkgs_sorted
for v in "${!pkgs_no_dep_sorted[@]}"; do
pkgs_sorted+=("${pkgs_no_dep_sorted["$v"]}")
done
# Free some memory
unset pkgs_with_deps
unset dep_pkgs
unset pkgs_no_dep
unset pkgs_with_deps_sorted
unset dep_pkgs_sorted
unset pkgs_no_dep_sorted
# Get list of running packages from array sorted by
# with dependents, with dependencies then others
for pkg in "${pkgs_sorted[@]}"; do
if [[ -f "/var/packages/${pkg}/enabled" ]]; then
running_pkgs_sorted+=("$pkg")
fi
done
# Get list of running packages dependent on pgsql service
if [[ ${pkgs_sorted[*]} =~ "@database" ]]; then
# Add running packages that use pgsql that need starting to array
if cd "/var/packages"; then
for package in *; do
if [[ -d "$package" ]]; then
depservice="$(synogetkeyvalue "/var/packages/${package}/INFO" start_dep_services)"
#long_name="$(synogetkeyvalue "/var/packages/${package}/INFO" displayname)"
if echo "$depservice" | grep -q 'pgsql'; then
if package_is_running "$package"; then
running_pkgs_dep_pgsql+=("$package")
fi
fi
fi
done < <(find . -maxdepth 2 -type d)
fi
fi
#------------------------------------------------------------------------------
# Stop the package or packages
stop_packages(){
# Check package is running
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
if package_is_running "$pkg"; then
# Stop package
package_stop "$pkg" "$pkg_name"
# Check package stopped
if package_is_running "$pkg"; then
stop_pkg_fail="yes"
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} Failed to stop ${pkg_name}!" |& tee -a "$logfile"
# echo "${pkg_name} status $code" |& tee -a "$logfile"
process_error="yes"
if [[ $all != "yes" ]] || [[ $fix != "yes" ]]; then
exit 1 # Skip exit if mode != all and fix != yes
fi
return 1
else
stop_pkg_fail=""
fi
if [[ $pkg == "ContainerManager" ]] || [[ $pkg == "Docker" ]]; then
# Stop containerd-shim
killall containerd-shim >/dev/null 2>&1
fi
# else
# skip_start="yes"
fi
}
#------------------------------------------------------------------------------
# Backup extra @folders
backup_extras(){
# $1 is @folder (@docker or @downloads etc)
local extrabakvol
local answer
# Skip if source volume is read only
if [[ -w "/$sourcevol" ]]; then
if [[ ${mode,,} != "backup" ]]; then
if [[ ${mode,,} == "move" ]]; then
extrabakvol="/$sourcevol"
elif [[ ${mode,,} == "restore" ]]; then
extrabakvol="$targetvol"
fi
echo -e "NOTE: A backup of ${Cyan}$1${Off} is required"\
"for recovery if the ${mode,,} fails."
echo -e "NOTE: A backup of $1 is required"\
"for recovery if the ${mode,,} fails." >> "$logfile"
echo -e "Do you want to ${Yellow}backup${Off} the"\
"${Cyan}$1${Off} folder on $extrabakvol? [y/n]"
echo -e "Do you want to backup the"\
"$1 folder on $extrabakvol? [y/n]" >> "$logfile"
read -r answer
echo "$answer" >> "$logfile"
if [[ ${answer,,} == "y" ]]; then
# Check we have enough space
if ! check_space "/${sourcevol}/$1" "/${sourcevol}" extra; then
ding
echo -e "${Error}ERROR${Off} Not enough space on $extrabakvol to backup ${Cyan}$1${Off}!"
echo -e "ERROR Not enough space on $extrabakvol to backup $1!" >> "$logfile"
echo "Do you want to continue ${action,,} ${1}? [y/n]" |& tee -a "$logfile"
read -r answer
echo "$answer" >> "$logfile"
if [[ ${answer,,} != "y" ]]; then
exit # Answered no
fi
else
echo -e "${Red}WARNING Backing up $1 could take a long time${Off}"
echo -e "WARNING Backing up $1 could take a long time" >> "$logfile"
backup_dir "$1" "$extrabakvol"
fi
fi
fi
fi
}
#------------------------------------------------------------------------------
# Move the package or packages
prepare_backup_restore(){
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
# Set bkpath variable
if [[ ${mode,,} != "move" ]]; then
bkpath="${backuppath}/syno_app_mover/$pkg"
fi
# Set targetvol variable
if [[ ${mode,,} == "restore" ]] && [[ $all == "yes" ]]; then
targetvol="/$(readlink "/var/packages/${pkg:?}/target" | cut -d"/" -f2)"
fi
# Check installed package version and backup version
# Get package version
if [[ ${mode,,} != "move" ]]; then
pkgversion=$(/usr/syno/bin/synogetkeyvalue "/var/packages/$pkg/INFO" version)
fi
# Get backup package version
if [[ ${mode,,} == "restore" ]]; then
pkgbackupversion=$(/usr/syno/bin/synogetkeyvalue "$bkpath/INFO" version)
if [[ $pkgversion ]] && [[ $pkgbackupversion ]]; then
check_pkg_versions_match "$pkgversion" "$pkgbackupversion"
fi
fi
# Create package folder if mode is backup
if [[ ${mode,,} == "backup" ]]; then
if [[ ! -d "$bkpath" ]]; then
if ! mkdir -p "${bkpath:?}"; then
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} Failed to create directory!"
echo -e "Line ${LINENO}: ERROR Failed to create directory!" >> "$logfile"
process_error="yes"
if [[ $all != "yes" ]]; then
exit 1 # Skip exit if mode is All
fi
return 1
fi
fi
# Backup package's INFO file
cp -p "/var/packages/$pkg/INFO" "$bkpath/INFO" |& tee -a "$logfile"
fi
}
process_packages(){
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
target=$(readlink "/var/packages/${pkg}/target")
#sourcevol="/$(printf %s "${target:?}" | cut -d'/' -f2 )"
sourcevol="$(printf %s "${target:?}" | cut -d'/' -f2 )"
# Move package
if [[ $pkg == "ContainerManager" ]] || [[ $pkg == "Docker" ]]; then
# Move @docker if package is ContainerManager or Docker
# Check if @docker is on same volume as Docker package
if [[ -d "/${sourcevol}/@docker" ]]; then
# Check we have enough space
if ! check_space "/${sourcevol}/@docker" "${targetvol}" extra; then
ding
echo -e "${Error}ERROR${Off} Not enough space on $targetvol to ${mode,,} ${Cyan}@docker${Off}!"
echo -e "ERROR Not enough space on $targetvol to ${mode,,} @docker!" >> "$logfile"
process_error="yes"
if [[ $all != "yes" ]]; then
exit 1 # Skip exit if mode is All
fi
return 1
fi
fi
# Backup @docker
backup_extras "@docker"
# Move package and edit symlinks
move_pkg "$pkg" "$targetvol"
elif [[ $pkg == "DownloadStation" ]]; then
# Move @download if package is DownloadStation
# Check if @download is on same volume as DownloadStation package
if [[ -d "/${sourcevol}/@download" ]]; then
# Check we have enough space
if ! check_space "/${sourcevol}/@download" "${targetvol}" extra; then
ding
echo -e "${Error}ERROR${Off} Not enough space on $targetvol to ${mode,,} ${Cyan}@download${Off}!"
echo -e "ERROR Not enough space on $targetvol to ${mode,,} @download!" >> "$logfile"
process_error="yes"
if [[ $all != "yes" ]]; then
exit 1 # Skip exit if mode is All
fi
return 1
fi
fi
# Backup @download
backup_extras "@download"
# Move package and edit symlinks
move_pkg "$pkg" "$targetvol"
else
# Move package and edit symlinks
move_pkg "$pkg" "$targetvol"
fi
# Move package's other folders
move_extras "$pkg" "$targetvol"
# Backup or restore package's web_packages folder
if [[ ${mode,,} != "move" ]]; then
web_packages "${pkg,,}"
fi
}
start_packages(){
[ "$trace" == "yes" ] && echo "${FUNCNAME[0]} called from ${FUNCNAME[1]}" |& tee -a "$logfile"
# if [[ $skip_start != "yes" ]]; then
if [[ $pkg != "@database" ]]; then
# Only start package if not already running
if ! package_is_running "$pkg"; then
if [[ ${mode,,} == "backup" ]]; then
answer="y"
elif [[ $all == "yes" ]]; then
answer="y"
else
echo -e "\nDo you want to start ${Cyan}$pkg_name${Off} now? [y/n]"
echo -e "\nDo you want to start $pkg_name now? [y/n]" >> "$logfile"
read -r answer
echo "$answer" >> "$logfile"
fi
if [[ ${answer,,} == "y" ]]; then
# Start package
package_start "$pkg" "$pkg_name"
# Check package started
if ! package_is_running "$pkg"; then
ding
echo -e "Line ${LINENO}: ${Error}ERROR${Off} Failed to start ${pkg_name}!"
echo -e "Line ${LINENO}: ERROR Failed to start ${pkg_name}!" >> "$logfile"
# echo "${pkg_name} status $code" |& tee -a "$logfile"
process_error="yes"
if [[ $all != "yes" ]]; then
exit 1 # Skip exit if mode is All
fi
else
did_start_pkg="yes"
fi
else
no_start_pkg="yes"
fi
fi
fi
# fi
}
check_last_process_time(){
# $1 is pkg
if [[ ${mode,,} != "move" ]]; then
#now=$(date +%s)
if [[ -f "${backuppath}/syno_app_mover/$1/last${mode,,}" ]]; then
last_process_time=$(cat "${backuppath}/syno_app_mover/$1/last${mode,,}")
skip_minutes=$(/usr/syno/bin/synogetkeyvalue "$conffile" skip_minutes)
if [[ $skip_minutes -gt "0" ]]; then
skip_secs=$((skip_minutes *60))
#if $(($(date +%s) +skip_secs)) -gt
if [[ $((last_process_time +skip_secs)) -gt $(date +%s) ]]; then
return 1
fi
fi
fi
fi
}
docker_export(){
local docker_share
local export_dir
local container
local export_file
export_date="$(date +%Y%m%d_%H%M)"
# Get docker share location
if [[ $buildnumber -gt "64570" ]]; then
# DSM 7.2.1 and later
# synoshare --get-real-path is case insensitive (docker or Docker both work)
docker_share=$(/usr/syno/sbin/synoshare --get-real-path docker)
else
# DSM 7.2 and earlier
# synoshare --getmap is case insensitive (docker or Docker both work)
docker_share=$(/usr/syno/sbin/synoshare --getmap docker | grep volume | cut -d"[" -f2 | cut -d"]" -f1)
# I could also have used:
# docker_share=$(/usr/syno/sbin/synoshare --get docker | tr '[]' '\n' | sed -n "9p")
fi
if [[ ! -d "$docker_share" ]]; then
echo "${Error}WARNING${Off} docker shared folder not found!"
echo "WARNING docker shared folder not found!" >> "$logfile"
return
else
export_dir="${docker_share}/app_mover_exports"
fi
if [[ ! -d "$export_dir" ]]; then
if ! mkdir "$export_dir"; then
echo "${Error}WARNING${Off} Failed to create docker export folder!"
echo "WARNING Failed to create docker export folder!" >> "$logfile"
return
else
chmod 755 "$export_dir" |& tee -a "$logfile"
fi
fi
echo "Exporting container settings to ${export_dir}" |& tee -a "$logfile"
# Get list of all containers (running and stopped)
for container in $(docker ps --all --format "{{ .Names }}"); do
if grep -q "$container" <<< "${ignored_containers_list[@]}" ; then
echo "Skipping ${container} on ignore list." |& tee -a "$logfile"
continue
else
export_file="${export_dir:?}/${container}_${export_date}.json"
echo "Exporting $container json" |& tee -a "$logfile"
# synowebapi -s or --silent does not work
/usr/syno/bin/synowebapi --exec api=SYNO.Docker.Container.Profile method=export version=1 outfile="$export_file" name="$container" &>/dev/null
# Check export was successful
if [[ ! -f "$export_file" ]] || [[ $(stat -c %s "$export_file") -eq "0" ]]; then
# No file or 0 bytes
echo "${Error}WARNING${Off} Failed to export $container settings!"
echo "WARNING Failed to export $container settings!" >> "$logfile"
return
else
chmod 660 "${export_dir:?}/${container}_${export_date}.json" |& tee -a "$logfile"
fi
# Delete settings exports older than $delete_older days
if [[ $delete_older =~ ^[2-9][0-9]?$ ]]; then
find "$export_dir" -name "${container,,}_*.json" -mtime +"$delete_older" -exec rm {} \;
fi
fi
done
}
move_database(){
# Get volume where @database currently is
target=$(readlink "/var/services/pgsql")
#sourcevol="/$(printf %s "${target:?}" | cut -d'/' -f2 )"
sourcevol="$(printf %s "${target:?}" | cut -d'/' -f2 )"
# Stop pgsql service
if [[ $majorversion -gt 6 ]]; then
# Stopping the pgsql service also stops dependant apps
systemctl stop pgsql-adapter.service &
else
# DSM 6
synoservicectl --stop pgsql-adapter &
fi
pid=$!
string="Stopping pgsql service and dependent apps"
echo "Stopping pgsql service and dependent apps" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
# Check pgsql service has stopped
if [[ $majorversion -gt 6 ]]; then
# DSM 7, running = 0 stopped = 3
if systemctl status pgsql-adapter.service >/dev/null; then
ding
echo "ERROR Failed to stop pgsql service!" |& tee -a "$logfile"
return 1
#else
# echo "Stopped pgsql service" |& tee -a "$logfile"
fi
else
# DSM 6, running = 0 stopped = 1
if synoservicectl --status pgsql-adapter >/dev/null; then
ding
echo "ERROR Failed to stop pgsql service!" |& tee -a "$logfile"
return 1
#else
# echo "Stopped pgsql service" |& tee -a "$logfile"
fi
fi
# Stop synologand service
if [[ $majorversion -gt 6 ]]; then
systemctl stop synologand &
else
# DSM 6
synoservicectl --stop synologand &
fi
pid=$!
string="Stopping synologand service"
echo "Stopping synologand service" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
# Check synologan service has stopped
if [[ $majorversion -gt 6 ]]; then
# DSM 7, running = 0 stopped = 3
if systemctl status synologand >/dev/null; then
ding
echo "ERROR Failed to stop synologand service!" |& tee -a "$logfile"
return 1
#else
# echo "Stopped synologand service" |& tee -a "$logfile"
fi
else
# DSM 6, running = 0 stopped = 1
if synoservicectl --status synologand >/dev/null; then
ding
echo "ERROR Failed to stop synologand service!" |& tee -a "$logfile"
return 1
#else
# echo "Stopped synologand service" |& tee -a "$logfile"
fi
fi
# Create @database folder if needed
if [[ ! -d "${targetvol:?}/@database" ]]; then
mkdir -m755 "${targetvol:?}/@database"
fi
# Copy pgsql folder
cp -pr "/${sourcevol:?}/@database/pgsql" "${targetvol:?}/@database/pgsql" &
pid=$!
string="Copying pgsql database to $targetvol/@database"
echo "Copying pgsql database to $targetvol/@database" >> "$logfile"
progbar "$pid" "$string"
wait "$pid"
progstatus "$?" "$string" "line ${LINENO}"
# Copy other folders
if [[ -d "/${sourcevol:?}/@database/autoupdate" ]]; then
cp -pr "/${sourcevol:?}/@database/autoupdate" "${targetvol:?}/@database/autoupdate"
fi
if [[ -d "/${sourcevol:?}/@database/synolog" ]]; then
cp -pr "/${sourcevol:?}/@database/synolog" "${targetvol:?}/@database/synolog"
fi
if [[ -d "/${sourcevol:?}/@database/synologan" ]]; then
cp -pr "/${sourcevol:?}/@database/synologan" "${targetvol:?}/@database/synologan"
fi
# Edit pgsql symlink
rm /var/services/pgsql
ln -s "${targetvol:?}/@database/pgsql" /var/services/pgsql
# Edit synologan symlink
rm /var/lib/synologan/database/alert.sqlite
ln -s "${targetvol:?}/@database/synologan/alert.sqlite" /var/lib/synologan/database/alert.sqlite
# Start the pgsql service
echo "Starting pgsql service" |& tee -a "$logfile"
if [[ $majorversion -gt 6 ]]; then
systemctl start pgsql-adapter.service
else
# DSM 6
synoservicectl --start pgsql-adapter
fi
# Check pgsql service is ok
if [[ $majorversion -gt 6 ]]; then
# DSM 7, running = 0 stopped = 3
if ! systemctl status pgsql-adapter.service >/dev/null; then
ding
echo "ERROR Failed to start pgsql service!" |& tee -a "$logfile"
return 1
#else
# echo "Started pgsql service" |& tee -a "$logfile"
fi
else
# DSM 6, running = 0 stopped = 1
if ! synoservicectl --status pgsql-adapter >/dev/null; then
ding
echo "ERROR Failed to start pgsql service!" |& tee -a "$logfile"
return 1
#else
# echo "Started pgsql service" |& tee -a "$logfile"
fi
fi
# Start the synologand service
echo "Starting synologand service" |& tee -a "$logfile"
if [[ $majorversion -gt 6 ]]; then
systemctl start synologand
else
# DSM 6
synoservicectl --start synologand
fi
# Check synologand service is ok
if [[ $majorversion -gt 6 ]]; then
# DSM 7, running = 0 stopped = 3
if ! systemctl status synologand >/dev/null; then
ding
echo "ERROR Failed to start synologand service!" |& tee -a "$logfile"
return 1
#else
# echo "Started synologand service" |& tee -a "$logfile"
fi
else
# DSM 6, running = 0 stopped = 1
if ! synoservicectl --status synologand >/dev/null; then
ding
echo "ERROR Failed to start synologand service!" |& tee -a "$logfile"
return 1
#else
# echo "Started synologand service" |& tee -a "$logfile"
fi
fi
return 0
}
# Loop through pkgs_sorted array and process package
for pkg in "${pkgs_sorted[@]}"; do
pkg_name="${package_names_rev["$pkg"]}"
process_error=""
# Skip backup or restore for excluded apps
if [[ $all == "yes" ]] && [[ "${excludelist[*]}" =~ $pkg ]] &&\
[[ $mode != "move" ]]; then
echo -e "Excluding $pkg\n" |& tee -a "$logfile"
continue
fi
#if [[ $pkg == USBCopy ]] && [[ ${mode,,} == "move" ]]; then
if [[ $pkg == USBCopy ]]; then
# USBCopy only needs database location changed in USB Copy ui
continue
fi
#if [[ $pkg == "@database" ]] && [[ ${mode,,} == "move" ]]; then
if [[ $pkg == "@database" ]]; then
move_database
continue
fi
if [[ $pkg == "ContainerManager" ]] || [[ $pkg == "Docker" ]]; then
if [[ -w "/$sourcevol" ]]; then
# Start package if needed so we can prune images
# and export container configurations
if ! package_is_running "$pkg"; then
package_start "$pkg" "$pkg_name"
fi
if [[ ${mode,,} != "restore" ]]; then
# Export container settings to json files
docker_export
fi
#if [[ ${mode,,} == "restore" ]]; then
# # Remove dangling and unused images
# echo "Removing dangling and unused docker images" |& tee -a "$logfile"
# docker image prune --all --force >/dev/null
#else
# # Remove dangling images
# echo "Removing dangling docker images" |& tee -a "$logfile"
# docker image prune --force >/dev/null
#fi
else
# Skip read only source volume
echo "/$sourcevol is read only. Skipping:" |& tee -a "$logfile"
echo " - Exporting container settings" |& tee -a "$logfile"
#echo " - Removing dangling and unused docker images" |& tee -a "$logfile"
fi
fi
if ! check_last_process_time "$pkg" && [[ $all == "yes" ]]; then
echo "Skipping $pkg_name as a ${mode,,} was done less than $skip_minutes minutes ago" |& tee -a "$logfile"
else
if [[ ${mode,,} != "move" ]]; then
prepare_backup_restore
fi
stop_packages
if [[ ${1,,} == "--test" ]] || [[ ${1,,} == "test" ]]; then
echo "process_packages"
else
if [[ $stop_pkg_fail != "yes" ]]; then
process_packages
if [[ ${mode,,} != "move" ]] && [[ $process_error != "yes" ]]; then
# Save last backup time
echo -n "$(date +%s)" > "${backuppath}/syno_app_mover/$pkg/last${mode,,}"
chmod 755 "${backuppath}/syno_app_mover/$pkg/last${mode,,}" |& tee -a "$logfile"
fi
fi
fi
# shellcheck disable=SC2143 # Use grep -q
if [[ $(echo "${running_pkgs_sorted[@]}" | grep -w "$pkg") ]]; then
start_packages
fi
fi
echo "" |& tee -a "$logfile"
done
#------------------------------------------------------------------------------
# Show how to move related shared folder(s)
docker_volume_edit(){
# Remind user to edit container's volume setting
echo "If you moved shared folders that your $pkg_name containers use" |& tee -a "$logfile"
echo "as volumes you will need to edit your docker compose or .env files," |& tee -a "$logfile"
echo -e "or the container's settings, to point to the changed volume number.\n" |& tee -a "$logfile"
}
suggest_move_share(){
# show_move_share <package-name> <share-name>
if [[ ${mode,,} == "move" ]]; then
case "$pkg" in
ActiveBackup)
show_move_share "Active Backup for Business" ActiveBackupforBusiness stopped
;;
AudioStation)
share_link=$(readlink /var/packages/AudioStation/shares/music)
if [[ $share_link == "/${sourcevol}/music" ]]; then
show_move_share "Audio Station" music stopped more
fi
;;
Chat)
show_move_share "Chat Server" chat stopped
;;
CloudSync)
show_move_share "Cloud Sync" CloudSync stopped
;;
ContainerManager)
show_move_share "Container Manager" docker stopped
docker_volume_edit
;;
Docker)
show_move_share "Docker" docker stopped
docker_volume_edit
;;
MailPlus-Server)
show_move_share "MailPlus Server" MailPlus running
;;
MinimServer)
show_move_share "Minim Server" MinimServer stopped
;;
Plex*Media*Server)
if [[ $majorversion -gt "6" ]]; then
show_move_share "Plex Media Server" PlexMediaServer stopped
else
show_move_share "Plex Media Server" Plex stopped
fi
;;
SurveillanceStation)
show_move_share "Surveillance Station" surveillance stopped
;;
SynologyPhotos)
share_link=$(readlink /var/services/photo)
if [[ -d "$share_link" ]]; then
if [[ $share_link == "/${sourcevol}/photo" ]]; then
show_move_share "Synology Photos" photo stopped
fi
fi
;;
VideoStation)
share_link=$(readlink /var/packages/VideoStation/shares/video)
if [[ $share_link == "/${sourcevol}/video" ]]; then
show_move_share "Video Station" video stopped more
fi
;;
*)
;;
esac
fi
}
if [[ ${mode,,} == "move" ]]; then
if [[ $all == "yes" ]]; then
# Loop through pkgs_sorted array and process package
for pkg in "${pkgs_sorted[@]}"; do
pkg_name="${package_names_rev["$pkg"]}"
suggest_move_share
done
else
suggest_move_share
fi
fi
#------------------------------------------------------------------------------
# Start package and dependent packages that aren't running
# Loop through running_pkgs_sorted array
if [[ $no_start_pkg != "yes" ]]; then
did_start_pkg=""
for pkg in "${running_pkgs_sorted[@]}"; do
pkg_name="${package_names_rev["$pkg"]}"
start_packages
done
if [[ $did_start_pkg == "yes" ]]; then
echo "" |& tee -a "$logfile"
fi
fi
# Start pqsql dependent pkgs that were running but aren't now
# Loop through running_pkgs_dep_pgsql array
if [[ $no_start_pkg != "yes" ]]; then
did_start_pkg=""
for pgsql_pkg in "${running_pkgs_dep_pgsql[@]}"; do
if ! package_is_running "$pgsql_pkg"; then
pgsql_pkg_name="$(synogetkeyvalue "/var/packages/${pgsql_pkg}/INFO" displayname)"
package_start "$pgsql_pkg" "$pgsql_pkg_name"
fi
done
if [[ $did_start_pkg == "yes" ]]; then
echo "" |& tee -a "$logfile"
fi
fi
if [[ $all == "yes" ]]; then
echo -e "Finished ${action,,} all packages\n" |& tee -a "$logfile"
elif [[ $auto == "yes" ]]; then
echo -e "Finished ${action,,} ${pkgs_sorted[*]}\n" |& tee -a "$logfile"
else
echo -e "Finished ${action,,} $pkg_name\n" |& tee -a "$logfile"
fi
# Show how long the script took
end="$SECONDS"
if [[ $end -ge 3600 ]]; then
printf 'Duration: %dh %dm\n\n' $((end/3600)) $((end%3600/60)) |& tee -a "$logfile"
elif [[ $end -ge 60 ]]; then
echo -e "Duration: $((end/60))m $((end%60))s\n" |& tee -a "$logfile"
else
echo -e "Duration: ${end} seconds\n" |& tee -a "$logfile"
fi
#------------------------------------------------------------------------------
# Show how to export and import package's database if dependent on MariaDB10
# Loop through package_names associative array
for pkg_name in "${!package_names[@]}"; do
pkg="${package_names[$pkg_name]}"
if [[ ${mode,,} != "move" ]]; then
info="/var/packages/${pkg}/INFO"
if /usr/syno/bin/synogetkeyvalue "$info" install_dep_packages | grep 'MariaDB' >/dev/null
then
mariadb_list+=("${pkg_name}")
mariadb_show="yes"
fi
fi
done
if [[ $mariadb_show == "yes" ]]; then
if [[ ${mode,,} == "backup" ]]; then
# Show how to export package's database
echo -e "If you want to ${Yellow}backup${Off} the database of"\
"${Cyan}${mariadb_list[*]}${Off} do the following:"
echo -e "If you want to backup the database of"\
"${mariadb_list[*]} do the following:" >> "$logfile"
echo " If you don't have phpMyAdmin installed:" |& tee -a "$logfile"
echo " 1. Install phpMyAdmin." |& tee -a "$logfile"
echo " 2. Open phpMyAdmin" |& tee -a "$logfile"
echo " 3. Log in with user root and your MariaDB password." |& tee -a "$logfile"
echo " Once you are logged in to phpMyAdmin:" |& tee -a "$logfile"
echo " 1. Click on the package name on the left." |& tee -a "$logfile"
echo " 2. Click on the Export tab at the top." |& tee -a "$logfile"
echo " 3. Click on the Export button." |& tee -a "$logfile"
echo -e " 4. Save the export to a safe location.\n" |& tee -a "$logfile"
elif [[ ${mode,,} == "restore" ]]; then
# Show how to import package's exported database
echo -e "If you want to ${Yellow}restore${Off} the database of"\
"${Cyan}${mariadb_list[*]}${Off} do the following:"
echo -e "If you want to restore the database of"\
"${mariadb_list[*]} do the following:" >> "$logfile"
echo " If you don't have phpMyAdmin installed:" |& tee -a "$logfile"
echo " 1. Install phpMyAdmin." |& tee -a "$logfile"
echo " 2. Open phpMyAdmin" |& tee -a "$logfile"
echo " 3. Log in with user root and your MariaDB password." |& tee -a "$logfile"
echo " Once you are logged in to phpMyAdmin:" |& tee -a "$logfile"
echo " 1. Click on the package name on the left." |& tee -a "$logfile"
echo " 2. Click on the Import tab at the top." |& tee -a "$logfile"
echo " 3. Click on the 'Choose file' button." |& tee -a "$logfile"
echo -e " 4. Browse to your exported .sql file and import it.\n" |& tee -a "$logfile"
fi
fi
#------------------------------------------------------------------------------
# Show how to migrate docker containers if different file system
if [[ $docker_migrate == "yes" ]]; then
echo -e "You will need to migrate your containers" |& tee -a "$logfile"
echo " 1. Open Container Manager." |& tee -a "$logfile"
echo " 2. Click the Manage link." |& tee -a "$logfile"
echo " 3. Select the container you want to migrate." |& tee -a "$logfile"
echo " 4. Click Migrate." |& tee -a "$logfile"
echo -e " 5. Click Continue.\n" |& tee -a "$logfile"
fi
#------------------------------------------------------------------------------
# Suggest change location of shared folder(s) if package moved
suggest_change_location(){
# Suggest moving CloudSync database if package is CloudSync
if [[ $pkg == CloudSync ]]; then
# Show how to move CloudSync database
echo -e "If you want to move the CloudSync database to $targetvol" |& tee -a "$logfile"
echo " 1. Open Cloud Sync." |& tee -a "$logfile"
echo " 2. Click Settings." |& tee -a "$logfile"
echo " 3. Change 'Database Location Settings' to $targetvol" |& tee -a "$logfile"
echo -e " 4. Click Save.\n" |& tee -a "$logfile"
fi
# Suggest moving @download if package is DownloadStation
if [[ $pkg == DownloadStation ]]; then
# Show how to move DownloadStation database and temp files
#file="/var/packages/DownloadStation/etc/db-path.conf"
#value="$(/usr/syno/bin/synogetkeyvalue "$file" db-vol)"
#if [[ $value != "$targetvol" ]]; then
echo -e "If you want to move the DownloadStation database & temp files to $targetvol" |& tee -a "$logfile"
echo " 1. Open Download Station." |& tee -a "$logfile"
echo " 2. Click Settings." |& tee -a "$logfile"
echo " 3. Click General." |& tee -a "$logfile"
echo " 4. Change 'Temporary location' to $targetvol" |& tee -a "$logfile"
echo -e " 5. Click OK.\n" |& tee -a "$logfile"
#fi
fi
# Suggest moving Note Station database if package is NoteStation
if [[ $pkg == NoteStation ]]; then
# Show how to move Note Station database
echo -e "If you want to move the Note Station database to $targetvol" |& tee -a "$logfile"
echo " 1. Open Note Station." |& tee -a "$logfile"
echo " 2. Click Settings." |& tee -a "$logfile"
echo " 3. Click Administration." |& tee -a "$logfile"
echo " 4. Change Volume to $targetvol" |& tee -a "$logfile"
echo -e " 5. Click OK.\n" |& tee -a "$logfile"
fi
# Suggest moving Synology Drive database if package is SynologyDrive
if [[ $pkg == SynologyDrive ]]; then
# Show how to move Drive database
file="/var/packages/SynologyDrive/etc/db-path.conf"
value="$(/usr/syno/bin/synogetkeyvalue "$file" db-vol)"
if [[ $value != "$targetvol" ]]; then
echo -e "If you want to move the Synology Drive database to $targetvol" |& tee -a "$logfile"
echo -e "If you're migrating the database from an ext4 volume to a Btrfs volume,\n please review this note: https://github.com/007revad/Synology_app_mover#synology-drive-and-btrfs-snapshots\n" |& tee -a "$logfile"
echo " 1. Open Synology Drive Admin Console." |& tee -a "$logfile"
echo " 2. Click Settings." |& tee -a "$logfile"
echo " 3. Change Location to $targetvol" |& tee -a "$logfile"
echo -e " 4. Click Apply.\n" |& tee -a "$logfile"
fi
fi
# Suggest moving database if package is USBCopy
if [[ $pkg == USBCopy ]]; then
# Show how to move USB Copy database
echo -e "To move the USB Copy database to $targetvol"
echo " 1. Open 'USB Copy'."
echo " 2. Click the gear icon to open settings."
echo " 3. Change Database location to $targetvol"
echo -e " 4. Click OK.\n"
fi
# Suggest moving VMs if package is Virtualization
if [[ $pkg == Virtualization ]]; then
# Show how to move VMs
echo -e "If you want to move your VMs to $targetvol\n" |& tee -a "$logfile"
echo "1. Add $targetvol as Storage in Virtual Machine Manager" |& tee -a "$logfile"
echo " 1. Open Virtual Machine Manager." |& tee -a "$logfile"
echo " 2. Click Storage and Click Add." |& tee -a "$logfile"
echo " 3. Complete the steps to add $targetvol" |& tee -a "$logfile"
echo -e "\n2. Move the VM to $targetvol" |& tee -a "$logfile"
echo " 1. Click on Virtual Machine." |& tee -a "$logfile"
echo " 2. Click on the VM to move." |& tee -a "$logfile"
echo " 3. Shut Down the VM." |& tee -a "$logfile"
echo " 4. Click Action then click Migrate." |& tee -a "$logfile"
echo " 5. Make sure Change Storage is selected." |& tee -a "$logfile"
echo " 6. Click Next." |& tee -a "$logfile"
echo -e " 7. Complete the steps to migrate the VM.\n" |& tee -a "$logfile"
fi
}
if [[ ${mode,,} == "move" ]]; then
if [[ $all == "yes" ]]; then
# Loop through pkgs_sorted array and process package
for pkg in "${pkgs_sorted[@]}"; do
pkg_name="${package_names_rev["$pkg"]}"
suggest_change_location
done
else
suggest_change_location
fi
fi
exit
|
train_000.parquet/727
|
{
"file_path": "syno_app_mover.sh",
"repo_id": "007revad/Synology_app_mover",
"size": 137030,
"token_count": 47634
}
|
## All my scripts, tools and guides
<img src="https://hitscounter.dev/api/hit?url=https%3A%2F%2F007revad.github.io%2F&label=Visitors&icon=github&color=%23198754&message=&style=flat&tz=UTC">
#### Contents
- [Plex](#plex)
- [Synology docker](#synology-docker)
- [Synology recovery](#synology-recovery)
- [Other Synology scripts](#other-synology-scripts)
- [Synology hardware restrictions](#synology-hardware-restrictions)
- [2025 plus models](#2025-plus-models)
- [How To Guides](#how-to-guides)
- [Synology dev](#synology-dev)
***
### Plex
- **<a href="https://github.com/007revad/Synology_Plex_Backup">Synology_Plex_Backup</a>**
- A script to backup Plex to a tgz file foror DSM 7 and DSM 6.
- Works for Plex Synology package and Plex in docker.
- **<a href="https://github.com/007revad/Asustor_Plex_Backup">Asustor_Plex_Backup</a>**
- Backup your Asustor's Plex Media Server settings and database.
- **<a href="https://github.com/007revad/Linux_Plex_Backup">Linux_Plex_Backup</a>**
- Backup your Linux Plex Media Server's settings and database.
- **<a href="https://github.com/007revad/Plex_Server_Sync">Plex_Server_Sync</a>**
- Sync your main Plex server database & metadata to a backup Plex server.
- Works for Synology, Asustor, Linux and supports Plex package or Plex in docker.
[Back to Contents](#contents)
### Synology docker
- **<a href="https://github.com/007revad/Synology_Docker_Export">Synology_Docker_export</a>**
- Export all Synology Container Manager or Docker containers' settings as json files to your docker shared folder.
- **<a href="https://github.com/007revad/Synology_ContainerManager_IPv6">Synology_ContainerManager_IPv6</a>**
- Enable IPv6 for Container Manager's bridge network.
- **<a href="https://github.com/007revad/ContainerManager_for_all_armv8">ContainerManager_for_all_armv8</a>**
- Script to install Container Manager on a RS819, DS119j, DS418, DS418j, DS218, DS218play or DS118.
- **<a href="https://github.com/007revad/Docker_Autocompose">Docker_Autocompose</a>**
- Create .yml files from your docker existing containers.
- **<a href="https://github.com/007revad/Synology_docker_cleanup">Synology_docker_cleanup</a>**
- Remove orphan docker btrfs subvolumes and images in Synology DSM 7 and DSM 6.
[Back to Contents](#contents)
### Synology recovery
- **<a href="https://github.com/007revad/Synology_DSM_reinstall">Synology_DSM_reinstall</a>**
- Easily re-install the same DSM version without losing any data or settings.
- **<a href="https://github.com/007revad/Synology_Recover_Data">Synology_Recover_Data</a>**
- A script to make it easy to recover your data from your Synology's drives using a computer.
- **<a href="https://github.com/007revad/Synology_clear_drive_error">Synology clear drive error</a>**
- Clear drive critical errors so DSM will let you use the drive.
- **<a href="https://github.com/007revad/Synology_DSM_Telnet_Password">Synology_DSM_Telnet_Password</a>**
- Synology DSM Recovery Telnet Password of the Day generator.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/Synoboot_backup">Synoboot_backup</a>**
- Back up synoboot after each DSM update so you can recover from a corrupt USBDOM.
[Back to Contents](#contents)
### Other Synology scripts
- **<a href="https://github.com/007revad/Synology_app_mover">Synology_app_mover</a>**
- Easily move Synology packages from one volume to another volume.
- **<a href="https://github.com/007revad/Video_Station_for_DSM_722">Video_Station_for_DSM_722</a>**
- Script to install Video Station in DSM 7.2.2
- **<a href="https://github.com/007revad/SS_Motion_Detection">SS_Motion_Detection</a>**
- Installs previous Surveillance Station and Advanced Media Extensions versions so motion detection and HEVC are supported.
- **<a href="https://github.com/007revad/Synology_Config_Backup">Synology_Config_Backup</a>**
- Backup and export your Synology DSM configuration.
- **<a href="https://github.com/007revad/Synology_CPU_temperature">Synology_CPU_temperature</a>**
- Get and log Synology NAS CPU temperature via SSH.
- **<a href="https://github.com/007revad/Synology_SMART_info">Synology_SMART_info</a>**
- Show Synology smart test progress or smart health and attributes.
- **<a href="https://github.com/007revad/Synology_Cleanup_Coredumps">Synology_Cleanup_Coredumps</a>**
- Cleanup memory core dumps from crashed processes.
- **<a href="https://github.com/007revad/Synology_toggle_reset_button">Synology_toggle_reset_button</a>**
- Script to disable or enable the reset button and show current setting.
- **<a href="https://github.com/007revad/Synology_Download_Station_Chrome_Extension">Synology_Download_Station_Chrome_Extension</a>**
- Download Station Chrome Extension.
- **<a href="https://github.com/007revad/Seagate_lowCurrentSpinup">Seagate_lowCurrentSpinup</a>**
- This script avoids the need to buy and install a higher wattage power supply when using multiple large Seagate SATA HDDs.
[Back to Contents](#contents)
### Synology hardware restrictions
- **<a href="https://github.com/007revad/Synology_HDD_db">Synology_HDD_db</a>**
- Add your SATA or SAS HDDs and SSDs plus SATA and NVMe M.2 drives to your Synology's compatible drive databases, including your Synology M.2 PCIe card and Expansion Unit databases.
- **<a href="https://github.com/007revad/Synology_enable_M2_volume">Synology_enable_M2_volume</a>**
- Enable creating volumes with non-Synology M.2 drives.
- Enable Health Info for non-Synology NVMe drives (not in DSM 7.2.1 or later).
- **<a href="https://github.com/007revad/Synology_M2_volume">Synology_M2_volume</a>**
- Easily create an M.2 volume on Synology NAS.
- **<a href="https://github.com/007revad/Synology_enable_M2_card">Synology_enable_M2_card</a>**
- Enable Synology M.2 PCIe cards in Synology NAS that don't officially support them.
- **<a href="https://github.com/007revad/Synology_enable_eunit">Synology_enable_eunit</a>**
- Enable an unsupported Synology eSATA Expansion Unit models.
- **<a href="https://github.com/007revad/Synology_enable_Deduplication">Synology_enable_Deduplication</a>**
- Enable deduplication with non-Synology SSDs and unsupported NAS models.
- **<a href="https://github.com/007revad/Synology_SHR_switch">Synology_SHR_switch</a>**
- Easily switch between SHR and RAID Groups, or enable RAID F1.
- **<a href="https://github.com/007revad/Synology_enable_sequential_IO">Synology_enable_sequential_IO</a>**
- Enables sequential I/O for your SSD caches, like DSM 6 had.
- **<a href="https://github.com/007revad/Synology_Information_Wiki">Synology_Information_Wiki</a>**
- Information about Synology hardware.
[Back to Contents](#contents)
### 2025 plus models
- **<a href="https://github.com/007revad/Transcode_for_x25">Transcode_for_x25</a>**
- Installs the modules needed for Plex or Jellyfin hardware transcoding in DS425+ and DS225+.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md">2025 series or later Plus models</a>**
- Unverified 3rd party drive limitations and unofficial solutions.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#setting-up-a-new-2025-or-later-plus-model-with-only-unverified-hdds">Setup with only 3rd party drives</a>**
- Setting up a new 2025 or later plus model with only unverified HDDs.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#deleting-and-recreating-your-storage-pool-on-unverified-hdds">Recreating storage pool on migrated drives</a>**
- Deleting and recreating your storage pool on unverified HDDs.
[Back to Contents](#contents)
### How To Guides
- **<a href="https://github.com/007revad/Synology_SSH_key_setup">Synology_SSH_key_setup</a>**
- How to setup SSH key authentication for your Synology.
[Back to Contents](#contents)
### Synology dev
- **<a href="https://github.com/007revad/Download_Synology_Archive">Download_Synology_Archive</a>**
- Download all or part of the Synology archive.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/ScriptNotify">ScriptNotify</a>**
- DSM 7 package to allow your scripts to send DSM notifications.
- **<a href="https://github.com/007revad/DTC_GUI_for_Windows">DTC_GUI_for_Windows</a>**
- GUI for DTC.exe for Windows.
[Back to Contents](#contents)
|
train_000.parquet/728
|
{
"file_path": "my-other-scripts.md",
"repo_id": "007revad/Synology_app_mover",
"size": 9099,
"token_count": 3421
}
|
# <img src="images/pkg_center_64_blurr.png" width="54"> Synology app mover
<a href="https://github.com/007revad/Synology_app_mover/releases"><img src="https://img.shields.io/github/release/007revad/Synology_app_mover.svg"></a>

[](https://www.paypal.com/paypalme/007revad)
[](https://github.com/sponsors/007revad)
[](https://user-badge.committers.top/australia/007revad)
### Description
Easily move Synology packages from one volume to another volume
You just select the package and the destination volume and the script will stop the app, move it, update the symlinks then start the app.
Handy for moving packages to an SSD volume, or to another volume so you can delete the original volume.
**Now** includes [Backup and Restore modes](/images/backup.png).
- Supports DSM 7. Not fully tested with DSM 6.
- If backing up to a USB drive the partition's file system should be ext3, ext4 of btrfs.
### Packages confirmed working
**NOTE:** Just in case, you should backup your docker compose files or portainer stacks.
<details>
<summary>Click here to see list</summary>
<img src="/images/icons/.png" width="16" height="16">
The icons in this table are [Copyright © 2004-2024 Synology Inc.](https://kb.synology.com/en-br/DSM/help/DSM/Home/about?version=7) or Copyright the 3rd party package developer.
| Package Center Name | System Name | Result |
|---------------------|-------------|--------|
| <img src="/images/icons/ActiveBackup_business_64.png" width="16" height="16"> Active Backup for Business | ActiveBackup | OK |
| <img src="/images/icons/ActiveBackup-GSuite_64.png" width="16" height="16"> Active Backup for Google Workspace | ActiveBackup-GSuite | OK |
| <img src="/images/icons/ActiveBackup-Office365_64.png" width="16" height="16"> Active Backup for Microsoft 365 | ActiveBackup-Office365 | OK |
| <img src="/images/icons/CodecPack_64.png" width="16" height="16"> Advanced Media Extensions | CodecPack | OK |
| <img src="/images/icons/AntiVirus-McAfee_64.png" width="16" height="16"> AntiVirus by McAfee | AntiVirus-McAfee | OK |
| <img src="/images/icons/anti_virus_64.png" width="16" height="16"> AntiVirus Essential | AntiVirus | OK - [Use v4.2.88 or later](https://github.com/007revad/Synology_app_mover/releases) |
| <img src="/images/icons/apache_64.png" width="16" height="16"> Apache HTTP Server 2.4 | Apache2.4 | OK |
| <img src="/images/icons/bb-qq_64.png" width="16" height="16"> AQC111 driver | aqc111 | OK - 3rd party package [link](https://github.com/bb-qq/aqc111) |
| <img src="/images/icons/AudioStation_64.png" width="16" height="16"> Audio Station | AudioStation | OK |
| <img src="/images/icons/AvrLogger_64.png" width="20" height="20"> AvrLogger | AvrLogger | OK - community package [link](https://luenepiet.de/public/Synology/AvrLogger%20(SPK)/) |
| <img src="/images/icons/BitDefenderForMailPlus_64.png" width="16" height="16"> Bitdefender for MailPlus | BitDefenderForMailPlus | OK I think |
| <img src="/images/icons/C2IdentityLDAPAgent_64.png" width="16" height="16"> C2 Identity LDAP Server | C2IdentityLDAPAgent | OK |
| <img src="/images/icons/CMS_64.png" width="16" height="16"> Central Management System | CMS | OK |
| <img src="/images/icons/ChannelsDVR_64.png" width="16" height="16"> Channels DVR | ChannelsDVR | OK - 3rd party package [link](https://getchannels.com/dvr-server/#synology) |
| <img src="/images/icons/CloudSync_64.png" width="16" height="16"> Cloud Sync | CloudSync | OK |
| <img src="/images/icons/ContainerManager_64.png" width="16" height="16"> Container Manager 24.0.2 | ContainerManager | ? |
| <img src="/images/icons/ContainerManager_64.png" width="16" height="16"> Container Manager 20.10.23 | ContainerManager | OK |
| <img src="/images/icons/DNSServer_64.png" width="16" height="16"> DNS Server | DNSServer | OK |
| <img src="/images/icons/docker_64.png" width="20" height="20"> Docker | Docker | OK |
| <img src="/images/icons/DocumentViewer_64.png" width="16" height="16"> Document Viewer | DocumentViewer | OK |
| <img src="/images/icons/download_station_64.png" width="20" height="20"> Download Station | DownloadStation | OK |
| <img src="/images/icons/EmbyServer_64.png" width="16" height="16"> Emby Server | EmbyServer | OK |
| <img src="/images/icons/exFAT-Free_72.png" width="16" height="16"> exFAT Access | exFAT-Free | OK |
| <img src="/images/icons/ffmpeg_72.png" width="18" height="18"> FFmpeg | ffmpeg# | OK - community package |
| <img src="/images/icons/Git_64.png" width="16" height="16"> Git | git | OK - community package |
| <img src="/images/icons/Git_64.png" width="16" height="16"> Git Server | Git | OK |
| <img src="/images/icons/GlacierBackup_64.png" width="16" height="16"> Glacier Backup | GlacierBackup | OK - Need to run backup task again |
| <img src="/images/icons/HyperBackup_64.png" width="16" height="16"> Hyper Backup | HyperBackup | OK |
| <img src="/images/icons/HyperBackupVault_64.png" width="16" height="16"> Hyper Backup Vault | HyperBackupVault | OK |
| <img src="/images/icons/jellyfin-64.png" width="20" height="20"> Jellyfin | jellyfin | OK |
| <img src="/images/icons/DirectoryServer_64.png" width="16" height="16"> LDAP Server | DirectoryServer | OK |
| <img src="/images/icons/LogAnalysis_64.png" width="16" height="16"> LogAnalysis | LogAnalysis | OK - community package [link](https://github.com/toafez/LogAnalysis) |
| <img src="/images/icons/log_center_64.png" width="16" height="16"> Log Center | LogCenter | OK |
| <img src="/images/icons/MailStation_64.png" width="16" height="16"> Mail Station | MailStation | OK |
| <img src="/images/icons/MariaDB10_64.png" width="20" height="20"> MariaDB 10 | MariaDB10 | OK |
| <img src="/images/icons/MediaServer_64.png" width="16" height="16"> Media Server | MediaServer | OK |
| <img src="/images/icons/mediainfo-64.png" width="16" height="16"> MediaInfo | mediainfo | OK - community package |
| <img src="/images/icons/MinimServer_64.png" width="16" height="16"> MinimServer | MinimServer | OK |
| <img src="/images/icons/Mosquitto_64.png" width="16" height="16"> Mosquitto | mosquitto | OK - community package |
| <img src="/images/icons/phpMyAdmin_72.png" width="20" height="20"> phpMyAdmin | phpMyAdmin | OK |
| <img src="/images/icons/Node.js_cropped.png" width="36" height="17"> Node.js | Node.js_v## | OK |
| <img src="/images/icons/NoteStation_64.png" width="16" height="16"> Note Station | NoteStation | OK |
| <img src="/images/icons/PDFViewer_64.png" width="16" height="16"> PDF Viewer | PDFViewer | OK |
| <img src="/images/icons/Perl_64.png" width="16" height="16"> Perl | Perl | OK |
| <img src="/images/icons/PHP_64.png" width="16" height="16"> PHP | PHP#.# | OK |
| <img src="/images/icons/plexmediaserver_48.png" width="16" height="16"> Plex Media Server | PlexMediaServer | OK |
| <img src="/images/icons/PrestoServer_64.png" width="16" height="16"> Presto File Server | PrestoServer | OK |
| <img src="/images/icons/ProxyServer_64.png" width="16" height="16"> Proxy Server | ProxyServer | OK |
| <img src="/images/icons/Python_64.png" width="16" height="16"> Python 3.9 | Python3.9 | OK |
| <img src="/images/icons/bb-qq_64.png" width="16" height="16"> RTL8152/RTL8153 driver | r8152 | OK - 3rd party package [link](https://github.com/bb-qq/r8152) |
| <img src="/images/icons/RadiusServer_64.png" width="16" height="16"> RADIUS Server | RadiusServer | OK |
| <img src="/images/icons/SynoSmisProvider_64.png" width="16" height="16"> SMI-S Provider | SynoSmisProvider | OK |
| <img src="/images/icons/SnapshotReplication_64.png" width="16" height="16"> Snapshot Replication | SnapshotReplication | OK |
| <img src="/images/icons/SSOServer_64.png" width="16" height="16"> SSO Server | SSOServer | OK |
| <img src="/images/icons/StorageAnalyzer_64.png" width="16" height="16"> Storage Analyzer | StorageAnalyzer | OK |
| <img src="/images/icons/SurveillanceStation_64.png" width="16" height="16"> Surveillance Station | SurveillanceStation | OK |
| <img src="/images/icons/synocli_72.png" width="16" height="16"> SynoCli Tools | synocli-"toolname" | OK - community package |
| <img src="/images/icons/SynologyApplicationService_64.png" width="16" height="16"> Synology Application Service | SynologyApplicationService | OK |
| <img src="/images/icons/Calendar_64.png" width="16" height="16"> Synology Calendar | Calendar | OK |
| <img src="/images/icons/Chat_64.png" width="16" height="16"> Synology Chat Server | Chat | OK |
| <img src="/images/icons/Contacts_64.png" width="16" height="16"> Synology Contacts | Contacts | OK |
| <img src="/images/icons/DirectoryServerForWindowsDomain_64.png" width="16" height="16"> Synology Directory Server | DirectoryServerForWindowsDomain | OK |
| <img src="/images/icons/SynologyDrive_64.png" width="16" height="16"> Synology Drive Server | SynologyDrive | OK - see [Synology Drive and Btrfs Snapshots](https://github.com/007revad/Synology_app_mover#synology-drive-and-btrfs-snapshots) |
| <img src="/images/icons/MailServer_64.png" width="16" height="16"> Synology Mail Server | MailServer | OK |
| <img src="/images/icons/MailClient_64.png" width="16" height="16"> Synology MailPlus | MailPlus | OK |
| <img src="/images/icons/MailPlus-Server_64.png" width="16" height="16"> Synology MailPlus Server | MailPlus-Server | OK I think |
| <img src="/images/icons/Spreadsheet_64.png" width="16" height="16"> Synology Office | Spreadsheet | OK |
| <img src="/images/icons/photos_64.png" width="16" height="16"> Synology Photos | SynologyPhotos | OK |
| <img src="/images/icons/Tailscale_64.png" width="16" height="16"> Tailscale | Tailscale | OK |
| <img src="/images/icons/TextEditor_64.png" width="16" height="16"> Text Editor | TextEditor | OK |
| <img src="/images/icons/UniversalViewer_64.png" width="16" height="16"> Universal Viewer | UniversalViewer | OK |
| <img src="/images/icons/USBCopy_64.png" width="18" height="18"> USB Copy | USBCopy | see [moving_extras](moving_extras.md)
| <img src="/images/icons/VideoStation_64.png" width="16" height="16"> Video Station | VideoStation | OK |
| <img src="/images/icons/VirtualManagement_64.png" width="16" height="16"> Virtual Machine Manager | Virtualization | OK |
| <img src="/images/icons/VPNCenter_64.png" width="16" height="16"> VPN Server | VPNCenter | OK |
| <img src="/images/icons/WebStation_64.png" width="16" height="16"> Web Station | WebStation | OK |
| <img src="/images/icons/WebDAVServer_64.png" width="16" height="16"> WebDAV Server | WebDAVServer | OK |
</details>
#### Packages not tested
<details>
<summary>Click here to see list</summary>
<img src="/images/icons/.png" width="16" height="16">
The icons in this table are [Copyright © 2004-2024 Synology Inc.](https://kb.synology.com/en-br/DSM/help/DSM/Home/about?version=7) or Copyright the 3rd party package developer.
| Package | Result / Notes |
|---------|--------|
| <img src="/images/icons/ArchiwareP5_64.png" width="16" height="16"> Archiware P5 | |
| <img src="/images/icons/Sony_BraviaSignage_64.png" width="16" height="16"> BRAVIA Signage | Won't install in Container Manager. It checks if Docker is installed |
| <img src="/images/icons/ContainerManager_64.png" width="16" height="16"> Container Manager 24.0.2 | |
| <img src="/images/icons/DdbBackup_64.png" width="18" height="18"> Data Deposit Box | |
| <img src="/images/icons/diagnosis_64.png" width="20" height="20"> Diagnosis Tool | |
| <img src="/images/icons/domotz_64.png" width="16" height="16"> Domotz Network Monitoring | |
| <img src="/images/icons/elephantdrive_64.png" width="16" height="16"> ElephantDrive | |
| <img src="/images/icons/gateone-64.png" width="16" height="16"> GateOne | |
| <img src="/images/icons/GoodSync_64.png" width="16" height="16"> GoodSync | |
| <img src="/images/icons/iDrive_72.png" width="16" height="16"> IDrive | |
| <img src="/images/icons/jackett-64.png" width="16" height="16"> Jackett | community package |
| <img src="/images/icons/Joomla_64.png" width="16" height="16"> Joomla | |
| <img src="/images/icons/KodExplorer_64.png" width="16" height="16"> KodiExplorer | |
| <img src="/images/icons/MediaWiki_72.png" width="18" height="18"> MediaWiki | |
| <img src="/images/icons/medusa-64.png" width="18" height="18"> Medusa | community package [link](https://github.com/BenjV/SYNO-packages) |
| <img src="/images/icons/MEGAcmd_64.png" width="16" height="16"> MEGAcmd | |
| <img src="/images/icons/mono_64.png" width="18" height="18"> Mono | community package |
| <img src="/images/icons/NBR_64.png" width="16" height="16"> NAKIVO Backup and Replication | |
| <img src="/images/icons/NBR-Transporter_64.png" width="16" height="16"> NAKIVO Transporter | |
| <img src="/images/icons/PACS_64.png" width="16" height="16"> PACS | |
| <img src="/images/icons/PhotoStation_64.png" width="18" height="18"> Photo Station | DSM 6 |
| <img src="/images/icons/radarr-64.png" width="20" height="20"> Radarr | community package |
| <img src="/images/icons/RagicBuilder_64.png" width="20" height="20"> Ragic Cloud DB | |
| <img src="/images/icons/resiliosync-48.png" width="16" height="16"> Resilo Sync | |
| <img src="/images/icons/shellinabox-48.png" width="16" height="16"> Shellinabox | community package |
| <img src="/images/icons/Sonarr_64.png" width="18" height="18"> Sonarr | community package |
| <img src="/images/icons/syncthing-64.png" width="18" height="18"> Syncthing | |
| <img src="/images/icons/TeamViewer_64.png" width="16" height="16"> TeamViewer | |
| <img src="/images/icons/transmission-64.png" width="20" height="20"> Transmission | community package |
| <img src="/images/icons/tvheadend-64.png" width="20" height="20"> Tvheadend | community package |
| <img src="/images/icons/VirtualHere_64.png" width="18" height="18"> VirtualHere | |
| <img src="/images/icons/vtigerCRM_64.png" width="16" height="16"> vtigerCRM | |
| <img src="/images/icons/WebTools-48.png" width="20" height="20"> WebTools | community package |
| <img src="/images/icons/Wordpress_64.png" width="16" height="16"> Wordpress | |
</details>
### Download the script
1. Download the latest version _Source code (zip)_ from https://github.com/007revad/Synology_app_mover/releases
2. Save the download zip file to a folder on the Synology.
3. Unzip the zip file.
### Set backup location
If you want to use use the [backup and restore options](/images/backup.png) you need edit the included **syno_app_mover.conf** file to set the location to backup to.
The **syno_app_mover.conf** file must be in the same folder as the **syno_app_mover.sh file**.
### Settings in syno_app_mover.conf
```YAML
# buffer is used when checking if target volume has enough space
# Add 50 GB buffer so we don't fill the target volume
buffer=50
# The backuppath is only used by Backup and Restore modes
# backuppath should be in the format of /volume/sharename/folder
# For example:
# backuppath="/volume1/backups"
#
# Note: The script will create a syno_app_mover folder in backuppath
backuppath="/volume1/backups"
# Skip backup if previous backup was done less than x minutes ago
# Set to "0" to always backup
# skip_minutes is in minutes
skip_minutes=360
# exclude setting for use when auto="all" option is used to skip specified apps
# For example:
# exclude="ContainerManager"
# exclude="DownloadStation,ContainerManager,HyperBackup"
#
# Note: You need to use the app's system name
# Run syno_app_mover.sh with the --list option to see your app's system names
exclude=
# For Docker or Container Manager's container settings json exports
# Set delete_older to age in days before old exports are deleted
# Set ignored_containers to a list of containers to not export settings
# For example:
# delete_older=7
# ignored_containers="libraspeed-1,netdata"
#
# Note you need use the container's docker name. To see their names via SSH use:
# sudo docker ps -a --format "{{.Names}}"
delete_older=30
ignored_containers=
```
### To run the script via SSH
[How to enable SSH and login to DSM via SSH](https://kb.synology.com/en-global/DSM/tutorial/How_to_login_to_DSM_with_root_permission_via_SSH_Telnet)
```YAML
sudo -s /volume1/scripts/syno_app_mover.sh
```
**Note:** Replace /volume1/scripts/ with the path to where the script is located.
### Options when running the script <a name="options"></a>
There are optional flags you can use when running the script:
```YAML
-h, --help Show this help message
-v, --version Show the script version
--autoupdate=AGE Auto update script (useful when script is scheduled)
AGE is how many days old a release must be before
auto-updating. AGE must be a number: 0 or greater
--auto=APP Automatically backup APP (for scheduling backups)
APP can be a single app or a comma separated list
APP can also be 'all' to backup all apps (except
any you excluded in the syno_app_mover.conf)
Examples:
--auto=radarr
--auto=Calender,ContainerManager,radarr
--auto=all
APP names need to be the app's system name
View the system names with the --list option
--list Display installed apps' system names
```
### Troubleshooting
If the script won't run check the following:
1. Make sure you download the zip file and unzipped it to a folder on your Synology (not on your computer).
2. If the path to the script contains any spaces you need to enclose the path/scriptname in double quotes:
```YAML
sudo -s "/volume1/my scripts/syno_app_mover.sh"
```
3. Make sure you unpacked the zip or rar file that you downloaded and are trying to run the syno_app_mover.sh file.
4. Set the script file as executable:
```YAML
sudo chmod +x "/volume1/scripts/syno_app_mover.sh"
```
### Synology Drive and Btrfs Snapshots
Synology Drive handles file versioning differently based on the underlying file system.
- For **ext4 volumes**, the versioning data is stored in the internal folder (`/volume1/@synologydrive/@sync/repo`).
- For **Btrfs volumes**, versioning is managed through **Btrfs snapshots** (see the [Reddit thread here](https://www.reddit.com/r/synology/comments/82o4pv/comment/dvbskzh/)).
When moving Synology Drive’s database from an **ext4** volume to a **Btrfs** volume, the `@sync/repo` folder containing file versioning data **will not be moved** to the Btrfs volume.
This is because **Btrfs snapshots** handle versioning on the Btrfs side, while ext4 relies on the `@synologydrive` folder for versioning.
However, it seems that you won’t lose your file version history as long as you don’t delete the ext4 volume.
The file versions appear to remain intact on the ext4 volume, and you should be able to access them as long as the volume is still available.
But, removing the ext4 volume will result in the **irreversible loss of all file versions**, as the versioning data is stored exclusively in the `@synologydrive` folder on ext4 volumes.
On the positive side, by moving the database to the Btrfs volume, you'll free up the space previously occupied by the versioning data on the ext4 volume.
For more details, check out this [GitHub discussion](https://github.com/007revad/Synology_app_mover/discussions/200).
### Video - moving Container Manager
<!-- https://github.com/007revad/Synology_app_mover/assets/39733752/8373dc38-2271-45bd-93f5-357669b7ec40 -->
<!-- https://github.com/user-attachments/assets/e308839a-1a3d-402b-9920-dc98901c1234 -->
https://github.com/007revad/Synology_app_mover/assets/e308839a-1a3d-402b-9920-dc98901c1234
### DSM 7 screenshots
<p align="center">Moving a package (with dependencies)</p>
<p align="center"><img src="/images/app2.png"></p>
<br>
<p align="center">Moving packages with shared folders</p>
<p align="center"><img src="/images/app3.png"></p>
<p align="center"><img src="/images/app4.png"></p>
<br>
<p align="center">Moving a package that has a volume location setting</p>
<p align="center"><img src="/images/app5.png"></p>
<br>
<p align="center">Moving Active Backup for Business</p>
<p align="center"><img src="/images/app6.png"></p>
<br>
<p align="center">Backing up Audio Station</p>
<p align="center"><img src="/images/backup.png"></p>
<br>
<p align="center">Backing up with the --auto option</p>
<p align="center"><img src="/images/auto_option.png"></p>
<br>
<p align="center">Output with --list option</p>
<p align="center"><img src="/images/list_option.png"></p>
### Credits
- wallacebrf for extensive beta testing of syno_app_mover v3.
- ctrlaltdelete for the code to export Container Manager/Docker container's settings.
|
train_000.parquet/729
|
{
"file_path": "README.md",
"repo_id": "007revad/Synology_app_mover",
"size": 21195,
"token_count": 7945
}
|
# buffer is used when checking if target volume has enough space
# Add 50 GB buffer so we don't fill the target volume
buffer=50
# The backuppath is only used by Backup and Restore modes
# backuppath should be in the format of /volume/sharename/folder
# For example:
# backuppath="/volume1/backups"
#
# Note: The script will create a syno_app_mover folder in backuppath
backuppath="/volume1/backups"
# Skip backup if previous backup was done less than x minutes ago
# Set to "0" to always backup
# skip_minutes is in minutes
skip_minutes=360
# exclude setting for use when auto="all" option is used to skip specified apps
# For example:
# exclude="ContainerManager"
# exclude="DownloadStation,ContainerManager,HyperBackup"
#
# Note: You need to use the app's system name
# Run syno_app_mover.sh with the --list option to see your app's system names
exclude=
# For Docker or Container Manager's container settings json exports
# Set delete_older to age in days before old exports are deleted
# Set ignored_containers to a list of containers to not export settings
# For example:
# delete_older=7
# ignored_containers="libraspeed-1,netdata"
#
# Note you need use the container's docker name. To see their names via SSH use:
# sudo docker ps -a --format "{{.Names}}"
delete_older=30
ignored_containers=
|
train_000.parquet/730
|
{
"file_path": "syno_app_mover.conf",
"repo_id": "007revad/Synology_app_mover",
"size": 1314,
"token_count": 420
}
|
## All my scripts, tools and guides
<img src="https://hitscounter.dev/api/hit?url=https%3A%2F%2F007revad.github.io%2F&label=Visitors&icon=github&color=%23198754&message=&style=flat&tz=UTC">
#### Contents
- [Plex](#plex)
- [Synology docker](#synology-docker)
- [Synology recovery](#synology-recovery)
- [Other Synology scripts](#other-synology-scripts)
- [Synology hardware restrictions](#synology-hardware-restrictions)
- [2025 plus models](#2025-plus-models)
- [How To Guides](#how-to-guides)
- [Synology dev](#synology-dev)
***
### Plex
- **<a href="https://github.com/007revad/Synology_Plex_Backup">Synology_Plex_Backup</a>**
- A script to backup Plex to a tgz file foror DSM 7 and DSM 6.
- Works for Plex Synology package and Plex in docker.
- **<a href="https://github.com/007revad/Asustor_Plex_Backup">Asustor_Plex_Backup</a>**
- Backup your Asustor's Plex Media Server settings and database.
- **<a href="https://github.com/007revad/Linux_Plex_Backup">Linux_Plex_Backup</a>**
- Backup your Linux Plex Media Server's settings and database.
- **<a href="https://github.com/007revad/Plex_Server_Sync">Plex_Server_Sync</a>**
- Sync your main Plex server database & metadata to a backup Plex server.
- Works for Synology, Asustor, Linux and supports Plex package or Plex in docker.
[Back to Contents](#contents)
### Synology docker
- **<a href="https://github.com/007revad/Synology_Docker_Export">Synology_Docker_export</a>**
- Export all Synology Container Manager or Docker containers' settings as json files to your docker shared folder.
- **<a href="https://github.com/007revad/Synology_ContainerManager_IPv6">Synology_ContainerManager_IPv6</a>**
- Enable IPv6 for Container Manager's bridge network.
- **<a href="https://github.com/007revad/ContainerManager_for_all_armv8">ContainerManager_for_all_armv8</a>**
- Script to install Container Manager on a RS819, DS119j, DS418, DS418j, DS218, DS218play or DS118.
- **<a href="https://github.com/007revad/Docker_Autocompose">Docker_Autocompose</a>**
- Create .yml files from your docker existing containers.
- **<a href="https://github.com/007revad/Synology_docker_cleanup">Synology_docker_cleanup</a>**
- Remove orphan docker btrfs subvolumes and images in Synology DSM 7 and DSM 6.
[Back to Contents](#contents)
### Synology recovery
- **<a href="https://github.com/007revad/Synology_DSM_reinstall">Synology_DSM_reinstall</a>**
- Easily re-install the same DSM version without losing any data or settings.
- **<a href="https://github.com/007revad/Synology_Recover_Data">Synology_Recover_Data</a>**
- A script to make it easy to recover your data from your Synology's drives using a computer.
- **<a href="https://github.com/007revad/Synology_clear_drive_error">Synology clear drive error</a>**
- Clear drive critical errors so DSM will let you use the drive.
- **<a href="https://github.com/007revad/Synology_DSM_Telnet_Password">Synology_DSM_Telnet_Password</a>**
- Synology DSM Recovery Telnet Password of the Day generator.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/Synoboot_backup">Synoboot_backup</a>**
- Back up synoboot after each DSM update so you can recover from a corrupt USBDOM.
[Back to Contents](#contents)
### Other Synology scripts
- **<a href="https://github.com/007revad/Synology_app_mover">Synology_app_mover</a>**
- Easily move Synology packages from one volume to another volume.
- **<a href="https://github.com/007revad/Video_Station_for_DSM_722">Video_Station_for_DSM_722</a>**
- Script to install Video Station in DSM 7.2.2
- **<a href="https://github.com/007revad/SS_Motion_Detection">SS_Motion_Detection</a>**
- Installs previous Surveillance Station and Advanced Media Extensions versions so motion detection and HEVC are supported.
- **<a href="https://github.com/007revad/Synology_Config_Backup">Synology_Config_Backup</a>**
- Backup and export your Synology DSM configuration.
- **<a href="https://github.com/007revad/Synology_CPU_temperature">Synology_CPU_temperature</a>**
- Get and log Synology NAS CPU temperature via SSH.
- **<a href="https://github.com/007revad/Synology_SMART_info">Synology_SMART_info</a>**
- Show Synology smart test progress or smart health and attributes.
- **<a href="https://github.com/007revad/Synology_Cleanup_Coredumps">Synology_Cleanup_Coredumps</a>**
- Cleanup memory core dumps from crashed processes.
- **<a href="https://github.com/007revad/Synology_toggle_reset_button">Synology_toggle_reset_button</a>**
- Script to disable or enable the reset button and show current setting.
- **<a href="https://github.com/007revad/Synology_Download_Station_Chrome_Extension">Synology_Download_Station_Chrome_Extension</a>**
- Download Station Chrome Extension.
- **<a href="https://github.com/007revad/Seagate_lowCurrentSpinup">Seagate_lowCurrentSpinup</a>**
- This script avoids the need to buy and install a higher wattage power supply when using multiple large Seagate SATA HDDs.
[Back to Contents](#contents)
### Synology hardware restrictions
- **<a href="https://github.com/007revad/Synology_HDD_db">Synology_HDD_db</a>**
- Add your SATA or SAS HDDs and SSDs plus SATA and NVMe M.2 drives to your Synology's compatible drive databases, including your Synology M.2 PCIe card and Expansion Unit databases.
- **<a href="https://github.com/007revad/Synology_enable_M2_volume">Synology_enable_M2_volume</a>**
- Enable creating volumes with non-Synology M.2 drives.
- Enable Health Info for non-Synology NVMe drives (not in DSM 7.2.1 or later).
- **<a href="https://github.com/007revad/Synology_M2_volume">Synology_M2_volume</a>**
- Easily create an M.2 volume on Synology NAS.
- **<a href="https://github.com/007revad/Synology_enable_M2_card">Synology_enable_M2_card</a>**
- Enable Synology M.2 PCIe cards in Synology NAS that don't officially support them.
- **<a href="https://github.com/007revad/Synology_enable_eunit">Synology_enable_eunit</a>**
- Enable an unsupported Synology eSATA Expansion Unit models.
- **<a href="https://github.com/007revad/Synology_enable_Deduplication">Synology_enable_Deduplication</a>**
- Enable deduplication with non-Synology SSDs and unsupported NAS models.
- **<a href="https://github.com/007revad/Synology_SHR_switch">Synology_SHR_switch</a>**
- Easily switch between SHR and RAID Groups, or enable RAID F1.
- **<a href="https://github.com/007revad/Synology_enable_sequential_IO">Synology_enable_sequential_IO</a>**
- Enables sequential I/O for your SSD caches, like DSM 6 had.
- **<a href="https://github.com/007revad/Synology_Information_Wiki">Synology_Information_Wiki</a>**
- Information about Synology hardware.
[Back to Contents](#contents)
### 2025 plus models
- **<a href="https://github.com/007revad/Transcode_for_x25">Transcode_for_x25</a>**
- Installs the modules needed for Plex or Jellyfin hardware transcoding in DS425+ and DS225+.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md">2025 series or later Plus models</a>**
- Unverified 3rd party drive limitations and unofficial solutions.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#setting-up-a-new-2025-or-later-plus-model-with-only-unverified-hdds">Setup with only 3rd party drives</a>**
- Setting up a new 2025 or later plus model with only unverified HDDs.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#deleting-and-recreating-your-storage-pool-on-unverified-hdds">Recreating storage pool on migrated drives</a>**
- Deleting and recreating your storage pool on unverified HDDs.
[Back to Contents](#contents)
### How To Guides
- **<a href="https://github.com/007revad/Synology_SSH_key_setup">Synology_SSH_key_setup</a>**
- How to setup SSH key authentication for your Synology.
[Back to Contents](#contents)
### Synology dev
- **<a href="https://github.com/007revad/Download_Synology_Archive">Download_Synology_Archive</a>**
- Download all or part of the Synology archive.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/ScriptNotify">ScriptNotify</a>**
- DSM 7 package to allow your scripts to send DSM notifications.
- **<a href="https://github.com/007revad/DTC_GUI_for_Windows">DTC_GUI_for_Windows</a>**
- GUI for DTC.exe for Windows.
[Back to Contents](#contents)
|
train_000.parquet/731
|
{
"file_path": "my-other-scripts.md",
"repo_id": "007revad/Synology_enable_eunit",
"size": 9099,
"token_count": 3421
}
|
# Synology enable eunit
<a href="https://github.com/007revad/Synology_enable_eunit/releases"><img src="https://img.shields.io/github/release/007revad/Synology_enable_eunit.svg"></a>

[](https://www.paypal.com/paypalme/007revad)
[](https://github.com/sponsors/007revad)
[](https://user-badge.committers.top/australia/007revad)
### Description
Enable unsupported Synology eSATA and InfiniBand Expansion Unit models
This script will allow enabling:
- DX517, DX513, DX213, DX510, RX418, RX415 or RX410 on Synology NAS that have an eSATA port.
- RX1217RP, RX1217, RX1214RP, RX1214, RX1211RP, RX1211, DX1215II, DX1215 or DX1211 on Synology NAS that have an InfiniBand port.
You can enable as many different expansion unit models as you want.
If you have 2 of the same expansion unit model you only need to enable it once for both expansion units to be enabled in DSM.
> **Warning** <br>
> Do ***NOT*** span a storage pool between the NAS and Expansion Unit. After a DSM update the Expansion Unit will be unsupported until you run this script again, which will be hard to do if your only storage pool is offline. Also do ***NOT*** store this script on a volume in the expansion unit.
## Supported NAS Models
### Models with eSATA expansion ports
This script will work for eSATA expansion units with the following Synology NAS models:
| Model | Works | Confirmed |
|---------|-------|-----------|
| DS1823xs+ | yes | |
| DS1821+ | yes | DX513, DX213, RX418 |
| DS1621+ | yes | |
| DS1522+ | yes | |
| DS1520+ | yes | |
| DS923+ | yes | DX513 |
| DS920+ | yes | |
| DS723+ | yes | DX213 |
| DS720+ | yes | DX513, DX213, RX418 |
| RS1221+, RS1221RP+ | yes | DX517 |
| RS822+, RS822RP+ | yes | |
- The DiskStation models above already have DX517 enabled.
- The RackStation models above already have RX418 enabled.
**Models that work without the script**
| Model | Works | Confirmed |
|---------|-------|-----------|
| DS918+ | yes | DX513, DX213 |
| DS718+ | yes | DX513, DX213 |
| DS218+ | yes | DX513, DX213 |
#### eSATA expansion unit speeds
| Model | eSATA Speed | Notes |
|-------|-------------|-------|
| DX517 | 6 Gbps | 600 MB/s |
| RX418 | 6 Gbps | 600 MB/s |
| | |
| DX513 | 3 Gbps | 300 MB/s |
| DX213 | 3 Gbps | 300 MB/s |
| RX415 | 3 Gbps | 300 MB/s |
| | |
| DX510 | 1.5 Gbps | 150 MB/s |
| RX410 | 1.5 Gbps | 150 MB/s |
### Models with InfiniBand expansion ports
This script will work for InfiniBand expansion units with the following Synology NAS models:
| Model | Works | Confirmed |
|---------|-------|-----------|
| RS2421+, RS2421RP+ | yes | |
| RS2821RP+ | yes | |
- The RackStation models above already have RX1217RP and RX1217 enabled.
#### InfiniBand expansion unit speeds
| Model | InfiniBand Speed | Notes |
|-------|-------------|-------|
| RX1217, RX1217RP | 4 x 6 Gbps | 4 x 600 MB/s |
| DX1215II, DX1215 | 4 x 6 Gbps | 4 x 600 MB/s |
| RX1214, RX1214RP | 4 x 6 Gbps | 4 x 600 MB/s |
| | |
| RX1211, RX1211RP | 4 x 3 Gbps | 4 x 300 MB/s |
| DX1211 | 4 x 3 Gbps | 4 x 300 MB/s |
## Download the script
1. Download the latest version _Source code (zip)_ from https://github.com/007revad/Synology_enable_eunit/releases
2. Save the download zip file to a folder on the Synology.
3. Unzip the zip file.
> **Warning** <br>
> Do ***NOT*** save the script to a volumes in the expansion unit as the volume won't be available until after the script has run.
## How to run the script
### Scheduling the script in Synology's Task Scheduler
See <a href=how_to_schedule.md/>How to schedule a script in Synology Task Scheduler</a>
### Run the script via SSH
[How to enable SSH and login to DSM via SSH](https://kb.synology.com/en-global/DSM/tutorial/How_to_login_to_DSM_with_root_permission_via_SSH_Telnet)
Run the script then reboot the Synology:
```bash
sudo -s /volume1/scripts/syno_enable_eunit.sh
```
> **Note** <br>
> Replace /volume1/scripts/ with the path to where the script is located.
### Options:
```YAML
-c, --check Check expansion units status
-r, --restore Restore from backups to undo changes
--unit=EUNIT Automatically enable specified expansion unit
Only needed when script is scheduled
EUNIT is dx517, dx513, dx213, dx510, rx418, rx415,
rx410, rx1217rp, rx1217, rx1214r, rx1214, rxX1211rp,
rx1211, dx1215ii, dx1215 or dx1211
-e, --email Disable colored text in output scheduler emails
--autoupdate=AGE Auto update script (useful when script is scheduled)
AGE is how many days old a release must be before
auto-updating. AGE must be a number: 0 or greater
-h, --help Show this help message
-v, --version Show the script version
```
## What about DSM updates?
After any DSM update you will need to run this script again, if you don't have it scheduled to run at boot.
<br>
## Screenshots
<p align="center">Enable DX513</p>
<p align="center"><img src="/images/esatab.png"></p>
<p align="center">Check option</p>
<p align="center"><img src="/images/enable_dx513b.png"></p>
<p align="center">DS models with eSATA posts only partially have RX418 enabled</p>
<p align="center"><img src="/images/default.png"></p>
<p align="center">Enable RX418</p>
<p align="center"><img src="/images/enable_rx418b.png"></p>
<p align="center">Check option again</p>
<p align="center"><img src="/images/enabled_3b.png"></p>
<p align="center">Restore option</p>
<p align="center"><img src="/images/restore.png"></p>
<p align="center">DS1821+ with a DX213</p>
<p align="center"><img src="/images/1821+dx213-1.png"></p>
<p align="center"><img src="/images/1821+dx213-2.png"></p>
|
train_000.parquet/732
|
{
"file_path": "README.md",
"repo_id": "007revad/Synology_enable_eunit",
"size": 6194,
"token_count": 2536
}
|
# How to schedule a script in Synology Task Scheduler
To schedule a script to run on your Synology at boot-up or shutdown follow these steps:
**Note:** You can setup a schedule task and leave it disabled, so it only runs when you select the task in the Task Scheduler and click on the Run button.
1. Go to **Control Panel** > **Task Scheduler** > click **Create** > and select **Triggered Task**.
2. Select **User-defined script**.
3. Enter a task name.
4. Select **root** as the user (The script needs to run as root).
5. Select **Boot-up** as the event that triggers the task.
6. Leave **Enable** ticked.
7. Click **Task Settings**.
8. Optionally you can tick **Send run details by email** and **Send run details only when the script terminates abnormally** then enter your email address.
9. In the box under **User-defined script** type the path to the script.
- e.g. If you saved the script to a shared folder on volume1 called "scripts" you'd type:
- `/volume1/scripts/syno_enable_eunit.sh -e --unit=EUNIT`
- Replace EUNIT with your expansion unit model: dx517, dx513, dx213, dx510, rx418, rx415 or rx410
11. Click **OK** to save the settings.
Here's some screenshots showing what needs to be set:
<p align="leftr"><img src="images/schedule1.png"></p>
<p align="leftr"><img src="images/schedule2.png"></p>
<p align="leftr"><img src="images/schedule3.png"></p>
|
train_000.parquet/733
|
{
"file_path": "how_to_schedule.md",
"repo_id": "007revad/Synology_enable_eunit",
"size": 1385,
"token_count": 462
}
|
#!/usr/bin/env bash
#-----------------------------------------------------------------------------------
# Enable Expansion Units in Synology NAS that don't officially support them.
#
# Allows using your Synology expansion unit
# in Synology NAS models that aren't on their supported model list.
#
# Github: https://github.com/007revad/Synology_enable_eunit
# Script verified at https://www.shellcheck.net/
#
# To run in a shell (replace /volume1/scripts/ with path to script):
# sudo -i /volume1/scripts/syno_enable_eunit.sh
#-----------------------------------------------------------------------------------
scriptver="v3.0.19"
script=Synology_enable_eunit
repo="007revad/Synology_enable_eunit"
scriptname=syno_enable_eunit
# Check BASH variable is bash
if [ ! "$(basename "$BASH")" = bash ]; then
echo "This is a bash script. Do not run it with $(basename "$BASH")"
printf \\a
exit 1 # Not running in bash
fi
# Check script is running on a Synology NAS
if ! /usr/bin/uname -a | grep -q -i synology; then
echo "This script is NOT running on a Synology NAS!"
echo "Copy the script to a folder on the Synology"
echo "and run it from there."
exit 1 # Not Synology NAS
fi
ding(){
printf \\a
}
usage(){
cat <<EOF
$script $scriptver - by 007revad
Usage: $(basename "$0") [options]
Options:
-c, --check Check expansion units status
-r, --restore Restore from backups to undo changes
--unit=EUNIT Automatically enable specified expansion unit
Only needed when script is scheduled
EUNIT is dx517, dx513, dx213, dx510, rx418, rx415,
rx410, rx1217rp, rx1217, rx1214r, rx1214, rxX1211rp,
rx1211, dx1215ii, dx1215 or dx1211
-e, --email Disable colored text in output scheduler emails
--autoupdate=AGE Auto update script (useful when script is scheduled)
AGE is how many days old a release must be before
auto-updating. AGE must be a number: 0 or greater
-h, --help Show this help message
-v, --version Show the script version
EOF
exit 0
}
scriptversion(){
cat <<EOF
$script $scriptver - by 007revad
See https://github.com/$repo
EOF
exit 0
}
# Save options used for getopt
args=("$@")
autoupdate=""
# Check for flags with getopt
if options="$(getopt -o abcdefghijklmnopqrstuvwxyz0123456789 -l \
check,restore,unit:,help,version,email,autoupdate:,log,debug -- "${args[@]}")"; then
eval set -- "$options"
while true; do
case "${1,,}" in
-h|--help) # Show usage options
usage
;;
-v|--version) # Show script version
scriptversion
;;
-l|--log) # Log
#log=yes
;;
-d|--debug) # Show and log debug info
debug=yes
;;
-c|--check) # Check current settings
check=yes
break
;;
-r|--restore) # Restore original settings
restore=yes
break
;;
--unit) # Specify eunit to enable for task scheduler
if [[ ${2,,} =~ ^(d|r)x[0-9]+(rp|ii)?$ ]]; then
if [[ ${2:(-2)} == "rp" ]]; then
# Convert to upper case except rp at end
unit="$(b=${2:0:-2} && echo -n "${b^^}")rp"
else
# Convert to upper case
unit="${2^^}"
fi
else
echo -e "Invalid argument '$2'\n"
exit 2 # Invalid argument
fi
shift
;;
-e|--email) # Disable colour text in task scheduler emails
color=no
;;
--autoupdate) # Auto update script
autoupdate=yes
if [[ $2 =~ ^[0-9]+$ ]]; then
delay="$2"
shift
else
delay="0"
fi
;;
--)
shift
break
;;
*) # Show usage options
echo -e "Invalid option '$1'\n"
usage "$1"
;;
esac
shift
done
else
echo
usage
fi
if [[ $debug == "yes" ]]; then
set -x
export PS4='`[[ $? == 0 ]] || echo "\e[1;31;40m($?)\e[m\n "`:.$LINENO:'
fi
# Shell Colors
if [[ $color != "no" ]]; then
#Black='\e[0;30m' # ${Black}
#Red='\e[0;31m' # ${Red}
#Green='\e[0;32m' # ${Green}
Yellow='\e[0;33m' # ${Yellow}
#Blue='\e[0;34m' # ${Blue}
#Purple='\e[0;35m' # ${Purple}
Cyan='\e[0;36m' # ${Cyan}
#White='\e[0;37m' # ${White}
Error='\e[41m' # ${Error}
Off='\e[0m' # ${Off}
else
echo "" # For task scheduler email readability
fi
# Check script is running as root
if [[ $( whoami ) != "root" ]]; then
ding
echo -e "${Error}ERROR${Off} This script must be run as sudo or root!"
exit 1 # Not running as sudo or root
fi
# Get DSM major and minor versions
#dsm=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION majorversion)
#dsminor=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION minorversion)
#if [[ $dsm -gt "6" ]] && [[ $dsminor -gt "1" ]]; then
# dsm72="yes"
#fi
#if [[ $dsm -gt "6" ]] && [[ $dsminor -gt "0" ]]; then
# dsm71="yes"
#fi
# Get NAS model
model=$(cat /proc/sys/kernel/syno_hw_version)
#modelname="$model"
# Show script version
#echo -e "$script $scriptver\ngithub.com/$repo\n"
echo "$script $scriptver"
# Get DSM full version
productversion=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION productversion)
buildphase=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION buildphase)
buildnumber=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION buildnumber)
smallfixnumber=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION smallfixnumber)
# Show DSM full version and model
if [[ $buildphase == GM ]]; then buildphase=""; fi
if [[ $smallfixnumber -gt "0" ]]; then smallfix="-$smallfixnumber"; fi
echo -e "$model DSM $productversion-$buildnumber$smallfix $buildphase\n"
# Get StorageManager version
storagemgrver=$(/usr/syno/bin/synopkg version StorageManager)
# Show StorageManager version
if [[ $storagemgrver ]]; then echo -e "StorageManager $storagemgrver\n"; fi
# Show options used
if [[ ${#args[@]} -gt "0" ]]; then
echo "Using options: ${args[*]}"
fi
# Check Synology has a expansion port
# eSATA and InfiniBand ports both appear in syno_slot_mapping as:
# Esata port count: 1
# Eunit port 1 - RX1214
if which syno_slot_mapping >/dev/null; then
esata_ports=$(syno_slot_mapping | grep 'Esata port count' | awk '{print $4}')
if [[ $esata_ports -lt "1" ]]; then
echo -e "${Error}ERROR${Off} Synology NAS has no expansion port(s)!"
exit 1 # No expansion port(s)
fi
else
echo -e "${Error}ERROR${Off} Unsupported Synology NAS model. No syno_slot_mapping command!"
exit 1 # No syno_slot_mapping file
fi
#------------------------------------------------------------------------------
# Check latest release with GitHub API
syslog_set(){
if [[ ${1,,} == "info" ]] || [[ ${1,,} == "warn" ]] || [[ ${1,,} == "err" ]]; then
if [[ $autoupdate == "yes" ]]; then
# Add entry to Synology system log
/usr/syno/bin/synologset1 sys "$1" 0x11100000 "$2"
fi
fi
}
# Get latest release info
# Curl timeout options:
# https://unix.stackexchange.com/questions/94604/does-curl-have-a-timeout
release=$(curl --silent -m 10 --connect-timeout 5 \
"https://api.github.com/repos/$repo/releases/latest")
# Release version
tag=$(echo "$release" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
shorttag="${tag:1}"
# Release published date
published=$(echo "$release" | grep '"published_at":' | sed -E 's/.*"([^"]+)".*/\1/')
published="${published:0:10}"
published=$(date -d "$published" '+%s')
# Today's date
now=$(date '+%s')
# Days since release published
age=$(((now - published)/(60*60*24)))
# Get script location
# https://stackoverflow.com/questions/59895/
source=${BASH_SOURCE[0]}
while [ -L "$source" ]; do # Resolve $source until the file is no longer a symlink
scriptpath=$( cd -P "$( dirname "$source" )" >/dev/null 2>&1 && pwd )
source=$(readlink "$source")
# If $source was a relative symlink, we need to resolve it
# relative to the path where the symlink file was located
[[ $source != /* ]] && source=$scriptpath/$source
done
scriptpath=$( cd -P "$( dirname "$source" )" >/dev/null 2>&1 && pwd )
scriptfile=$( basename -- "$source" )
echo -e "Running from: ${scriptpath}/$scriptfile\n"
# Warn if script located on M.2 drive
scriptvol=$(echo "$scriptpath" | cut -d"/" -f2)
vg=$(lvdisplay | grep /volume_"${scriptvol#volume}" | cut -d"/" -f3)
md=$(pvdisplay | grep -B 1 -E '[ ]'"$vg" | grep /dev/ | cut -d"/" -f3)
if grep "$md" /proc/mdstat | grep -q nvme; then
echo -e "${Yellow}WARNING${Off} Don't store this script on an NVMe volume!"
fi
cleanup_tmp(){
cleanup_err=
# Delete downloaded .tar.gz file
if [[ -f "/tmp/$script-$shorttag.tar.gz" ]]; then
if ! rm "/tmp/$script-$shorttag.tar.gz"; then
echo -e "${Error}ERROR${Off} Failed to delete"\
"downloaded /tmp/$script-$shorttag.tar.gz!" >&2
cleanup_err=1
fi
fi
# Delete extracted tmp files
if [[ -d "/tmp/$script-$shorttag" ]]; then
if ! rm -r "/tmp/$script-$shorttag"; then
echo -e "${Error}ERROR${Off} Failed to delete"\
"downloaded /tmp/$script-$shorttag!" >&2
cleanup_err=1
fi
fi
# Add warning to DSM log
if [[ $cleanup_err ]]; then
syslog_set warn "$script update failed to delete tmp files"
fi
}
if ! printf "%s\n%s\n" "$tag" "$scriptver" |
sort --check=quiet --version-sort >/dev/null ; then
echo -e "\n${Cyan}There is a newer version of this script available.${Off}"
echo -e "Current version: ${scriptver}\nLatest version: $tag"
scriptdl="$scriptpath/$script-$shorttag"
if [[ -f ${scriptdl}.tar.gz ]] || [[ -f ${scriptdl}.zip ]]; then
# They have the latest version tar.gz downloaded but are using older version
echo "You have the latest version downloaded but are using an older version"
sleep 10
elif [[ -d $scriptdl ]]; then
# They have the latest version extracted but are using older version
echo "You have the latest version extracted but are using an older version"
sleep 10
else
if [[ $autoupdate == "yes" ]]; then
if [[ $age -gt "$delay" ]] || [[ $age -eq "$delay" ]]; then
echo "Downloading $tag"
reply=y
else
echo "Skipping as $tag is less than $delay days old."
fi
else
echo -e "${Cyan}Do you want to download $tag now?${Off} [y/n]"
read -r -t 30 reply
fi
if [[ ${reply,,} == "y" ]]; then
# Delete previously downloaded .tar.gz file and extracted tmp files
cleanup_tmp
if cd /tmp; then
url="https://github.com/$repo/archive/refs/tags/$tag.tar.gz"
if ! curl -JLO -m 30 --connect-timeout 5 "$url"; then
echo -e "${Error}ERROR${Off} Failed to download"\
"$script-$shorttag.tar.gz!"
syslog_set warn "$script $tag failed to download"
else
if [[ -f /tmp/$script-$shorttag.tar.gz ]]; then
# Extract tar file to /tmp/<script-name>
if ! tar -xf "/tmp/$script-$shorttag.tar.gz" -C "/tmp"; then
echo -e "${Error}ERROR${Off} Failed to"\
"extract $script-$shorttag.tar.gz!"
syslog_set warn "$script failed to extract $script-$shorttag.tar.gz!"
else
# Set script sh files as executable
if ! chmod a+x "/tmp/$script-$shorttag/"*.sh ; then
permerr=1
echo -e "${Error}ERROR${Off} Failed to set executable permissions"
syslog_set warn "$script failed to set permissions on $tag"
fi
# Copy new script sh file to script location
if ! cp -p "/tmp/$script-$shorttag/${scriptname}.sh" "${scriptpath}/${scriptfile}";
then
copyerr=1
echo -e "${Error}ERROR${Off} Failed to copy"\
"$script-$shorttag sh file(s) to:\n $scriptpath/${scriptfile}"
syslog_set warn "$script failed to copy $tag to script location"
fi
# Copy new CHANGES.txt file to script location (if script on a volume)
if [[ $scriptpath =~ /volume* ]]; then
# Set permissions on CHANGES.txt
if ! chmod 664 "/tmp/$script-$shorttag/CHANGES.txt"; then
permerr=1
echo -e "${Error}ERROR${Off} Failed to set permissions on:"
echo "$scriptpath/CHANGES.txt"
fi
# Copy new CHANGES.txt file to script location
if ! cp -p "/tmp/$script-$shorttag/CHANGES.txt"\
"${scriptpath}/${scriptname}_CHANGES.txt";
then
if [[ $autoupdate != "yes" ]]; then copyerr=1; fi
echo -e "${Error}ERROR${Off} Failed to copy"\
"$script-$shorttag/CHANGES.txt to:\n $scriptpath"
else
changestxt=" and changes.txt"
fi
fi
# Delete downloaded tmp files
cleanup_tmp
# Notify of success (if there were no errors)
if [[ $copyerr != 1 ]] && [[ $permerr != 1 ]]; then
echo -e "\n$tag ${scriptfile}$changestxt downloaded to: ${scriptpath}\n"
syslog_set info "$script successfully updated to $tag"
# Reload script
printf -- '-%.0s' {1..79}; echo # print 79 -
exec "${scriptpath}/$scriptfile" "${args[@]}"
else
syslog_set warn "$script update to $tag had errors"
fi
fi
else
echo -e "${Error}ERROR${Off}"\
"/tmp/$script-$shorttag.tar.gz not found!"
syslog_set warn "/tmp/$script-$shorttag.tar.gz not found"
fi
fi
cd "$scriptpath" || echo -e "${Error}ERROR${Off} Failed to cd to script location!"
else
echo -e "${Error}ERROR${Off} Failed to cd to /tmp!"
syslog_set warn "$script update failed to cd to /tmp"
fi
fi
fi
fi
#------------------------------------------------------------------------------
# Show connected expansion units
#found_eunits=($(syno_slot_mapping | grep 'Eunit port' | awk '{print $NF}'))
read -r -a found_eunits <<< "$(syno_slot_mapping | grep 'Eunit port' | awk '{print $NF}')"
echo "Connected Expansion Units:"
if [[ ${#found_eunits[@]} -gt "0" ]]; then
for e in "${found_eunits[@]}"; do
echo -e "${Cyan}$e${Off}"
done
else
echo -e "${Cyan}None${Off}"
fi
#echo ""
#------------------------------------------------------------------------------
# Set file variables
if [[ -f /etc.defaults/model.dtb ]]; then # Is device tree model
# Get syn_hw_revision, r1 or r2 etc (or just a linefeed if not a revision)
hwrevision=$(cat /proc/sys/kernel/syno_hw_revision)
# If syno_hw_revision is r1 or r2 it's a real Synology,
# and I need to edit model_rN.dtb instead of model.dtb
if [[ $hwrevision =~ r[0-9] ]]; then
hwrev="_$hwrevision"
fi
dtb_file="/etc.defaults/model${hwrev}.dtb"
dtb2_file="/etc/model${hwrev}.dtb"
#dts_file="/etc.defaults/model${hwrev}.dts"
dts_file="/tmp/model${hwrev}.dts"
else
echo -e "${Error}ERROR${Off} Unsupported Synology NAS model. No model.dtb file!"
exit 1 # No model.dtb file
fi
synoinfo="/etc.defaults/synoinfo.conf"
synoinfo2="/etc/synoinfo.conf"
scemd="/usr/syno/bin/scemd"
rebootmsg(){
# Ensure newly connected ebox is in /var/log/diskprediction log.
# Otherwise the new /var/log/diskprediction log is only created a midnight.
/usr/syno/bin/syno_disk_data_collector record
# Reboot prompt
echo -e "\n${Cyan}The Synology needs to restart.${Off}"
echo -e "Type ${Cyan}yes${Off} to reboot now."
echo -e "Type anything else to quit (if you will restart it yourself)."
read -r -t 10 answer
if [[ ${answer,,} != "yes" ]]; then
echo ""
exit
fi
# # Reboot in the background so user can see DSM's "going down" message
# reboot &
if [[ -x /usr/syno/sbin/synopoweroff ]]; then
/usr/syno/sbin/synopoweroff -r || reboot
else
reboot
fi
}
#------------------------------------------------------------------------------
# Restore changes from backups
compare_md5(){
# $1 is file 1
# $2 is file 2
if [[ -f "$1" ]] && [[ -f "$2" ]]; then
if [[ $(md5sum -b "$1" | awk '{print $1}') == $(md5sum -b "$2" | awk '{print $1}') ]];
then
return 0
else
return 1
fi
else
restoreerr=$((restoreerr+1))
return 2
fi
}
restore_orig(){
restoreerr="0"
if [[ -f ${dtb_file}.bak ]] || [[ -f ${synoinfo}.bak ]] || [[ -f ${scemd}.bak ]] ;
then
# Restore synoinfo.conf from backup
# /usr/syno/etc.defaults/synoinfo.conf
if [[ -f ${synoinfo}.bak ]]; then
setting="$(/usr/syno/bin/synogetkeyvalue "${synoinfo}.bak" support_ew_20_eunit)"
setting2="$(/usr/syno/bin/synogetkeyvalue "${synoinfo}" support_ew_20_eunit)"
if [[ $setting != "$setting2" ]]; then
if /usr/syno/bin/synosetkeyvalue "$synoinfo" support_ew_20_eunit "$setting"; then
/usr/syno/bin/synosetkeyvalue "$synoinfo2" support_ew_20_eunit "$setting"
echo -e "Restored ${synoinfo}"
else
restoreerr=$((restoreerr+1))
echo -e "${Error}ERROR${Off} Failed to restore ${synoinfo}!\n"
fi
fi
else
restoreerr=$((restoreerr+1))
echo -e "${Error}ERROR${Off} No backup to restore ${synoinfo} from!\n"
fi
# Restore scemd from backup
if [[ -f ${scemd}.bak ]]; then
if compare_md5 "${scemd}".bak "${scemd}"; then
echo -e "${Cyan}OK${Off} ${scemd}"
else
/usr/bin/systemctl stop scemd.service
if cp -p --force "${scemd}.bak" "${scemd}"; then
echo -e "Restored ${scemd}"
else
restoreerr=$((restoreerr+1))
echo -e "${Error}ERROR${Off} Failed to restore ${scemd}!\n"
fi
/usr/bin/systemctl start scemd.service
fi
#else
# restoreerr=$((restoreerr+1))
# echo -e "${Error}ERROR${Off} No backup to restore ${scemd} from!\n"
fi
# Restore model.dtb from backup
if [[ -f ${dtb_file}.bak ]]; then
# /etc.default/model.dtb
if compare_md5 "${dtb_file}.bak" "${dtb_file}"; then
echo -e "${Cyan}OK${Off} ${dtb_file}"
else
if cp -p --force "${dtb_file}.bak" "${dtb_file}"; then
echo -e "Restored ${dtb_file}"
reboot=yes
else
restoreerr=$((restoreerr+1))
echo -e "${Error}ERROR${Off} Failed to restore ${dtb_file}!\n"
fi
fi
# Restore /etc/model.dtb from /etc.default/model.dtb
if compare_md5 "${dtb_file}.bak" "${dtb2_file}"; then
echo -e "${Cyan}OK${Off} ${dtb2_file}"
else
if cp -p --force "${dtb_file}.bak" "${dtb2_file}"; then
echo -e "Restored ${dtb2_file}"
else
restoreerr=$((restoreerr+1))
echo -e "${Error}ERROR${Off} Failed to restore ${dtb2_file}!\n"
fi
fi
else
restoreerr=$((restoreerr+1))
echo -e "${Error}ERROR${Off} No backup to restore ${dtb2_file} from!\n"
fi
if [[ -z $restoreerr ]] || [[ $restoreerr -lt "1" ]]; then
echo -e "\nRestore successful."
rebootmsg
elif [[ $restoreerr == "1" ]]; then
echo -e "\nThere was $restoreerr restore error!"
else
echo -e "\nThere were $restoreerr restore errors!"
fi
else
echo -e "Nothing to restore."
fi
}
if [[ $restore == "yes" ]]; then
echo ""
restore_orig
echo ""
exit
fi
#----------------------------------------------------------
# Check currently enabled expansion units
supported_eunits=("DX517" "DX513" "DX213" "DX510" "RX418" "RX415" "RX410" \
"RX1217rp" "RX1217" "RX1214rp" "RX1214" "RX1211rp" "RX1211" \
"DX1215II" "DX1215" "DX1211")
check_modeldtb(){
# $1 is DX517 or RX418 etc
if [[ -f "${dtb2_file}" ]]; then
if grep -q "$1"'\b' "${dtb2_file}"; then
echo -e "${Cyan}$1${Off} is enabled in ${Yellow}${dtb2_file}${Off}" >& 2
else
echo -e "${Cyan}$1${Off} is ${Cyan}not${Off} enabled in ${Yellow}${dtb2_file}${Off}" >& 2
fi
fi
if [[ -f "${dtb_file}" ]]; then
if grep -q "$1"'\b' "${dtb_file}"; then
echo -e "${Cyan}$1${Off} is enabled in ${Yellow}${dtb_file}${Off}" >& 2
else
echo -e "${Cyan}$1${Off} is ${Cyan}not${Off} enabled in ${Yellow}${dtb_file}${Off}" >& 2
fi
fi
}
check_enabled(){
echo ""
for e in "${supported_eunits[@]}"; do
if grep -q "$e"'\b' "${dtb_file}"; then
check_modeldtb "${e#Synology-}"
fi
done
echo ""
}
if [[ $check == "yes" ]]; then
#echo ""
check_enabled
exit
fi
#------------------------------------------------------------------------------
# Enable unsupported Synology expansion units
backupdb(){
# Backup file if needed
if [[ -f "$1" ]]; then
if [[ ! -f "$1.bak" ]]; then
if [[ $(basename "$1") == "synoinfo.conf" ]]; then
echo "" >&2 # Formatting for stdout
fi
if [[ $2 == "long" ]]; then
fname="$1"
else
fname=$(basename -- "${1}")
fi
if cp -p "$1" "$1.bak"; then
echo -e "Backed up ${fname}" >&2
else
echo -e "${Error}ERROR 5${Off} Failed to backup ${fname}!" >&2
return 1
fi
fi
# Fix permissions if needed
octal=$(stat -c "%a %n" "$1" | cut -d" " -f1)
if [[ ! $octal -eq 644 ]]; then
chmod 644 "$1"
fi
else
echo -e "${Error}ERROR 5${Off} File not found: ${1}!" >&2
return 1
fi
return 0
}
dts_ebox(){
# $1 is the ebox model
# $2 is the dts file
# Remove last }; so we can append to dts file
sed -i '/^};/d' "$2"
# Append expansion unit node to dts file
if [[ $1 == DX517 ]] || [[ $1 == DX513 ]] || [[ $1 == DX510 ]]; then
cat >> "$2" <<EODX5bay
$1 {
compatible = "Synology";
model = "synology_${1,,}";
pmp_slot@1 {
libata {
EMID = <0x00>;
pmp_link = <0x00>;
};
};
pmp_slot@2 {
libata {
EMID = <0x00>;
pmp_link = <0x01>;
};
};
pmp_slot@3 {
libata {
EMID = <0x00>;
pmp_link = <0x02>;
};
};
pmp_slot@4 {
libata {
EMID = <0x00>;
pmp_link = <0x03>;
};
};
pmp_slot@5 {
libata {
EMID = <0x00>;
pmp_link = <0x04>;
};
};
};
};
EODX5bay
elif [[ $1 == DX213 ]]; then
cat >> "$2" <<EODX213
$1 {
compatible = "Synology";
model = "synology_${1,,}";
pmp_slot@1 {
libata {
EMID = <0x00>;
pmp_link = <0x00>;
};
};
pmp_slot@2 {
libata {
EMID = <0x00>;
pmp_link = <0x01>;
};
};
};
};
EODX213
elif [[ $1 == RX418 ]] || [[ $1 == RX415 ]] || [[ $1 == RX410 ]]; then
cat >> "$2" <<EORX4bay
$1 {
compatible = "Synology";
model = "synology_${1,,}";
pmp_slot@1 {
libata {
EMID = <0x00>;
pmp_link = <0x00>;
};
};
pmp_slot@2 {
libata {
EMID = <0x00>;
pmp_link = <0x01>;
};
};
pmp_slot@3 {
libata {
EMID = <0x00>;
pmp_link = <0x02>;
};
};
pmp_slot@4 {
libata {
EMID = <0x00>;
pmp_link = <0x03>;
};
};
};
};
EORX4bay
elif [[ ${_12bays[*]} =~ $1 ]]; then
cat >> "$2" <<EORX12bay
$1 {
compatible = "Synology";
model = "synology_rx1217rp";
pmp_slot@1 {
libata {
EMID = <0x00>;
pmp_link = <0x00>;
};
};
pmp_slot@2 {
libata {
EMID = <0x00>;
pmp_link = <0x01>;
};
};
pmp_slot@3 {
libata {
EMID = <0x00>;
pmp_link = <0x02>;
};
};
pmp_slot@4 {
libata {
EMID = <0x01>;
pmp_link = <0x00>;
};
};
pmp_slot@5 {
libata {
EMID = <0x01>;
pmp_link = <0x01>;
};
};
pmp_slot@6 {
libata {
EMID = <0x01>;
pmp_link = <0x02>;
};
};
pmp_slot@7 {
libata {
EMID = <0x02>;
pmp_link = <0x00>;
};
};
pmp_slot@8 {
libata {
EMID = <0x02>;
pmp_link = <0x01>;
};
};
pmp_slot@9 {
libata {
EMID = <0x02>;
pmp_link = <0x02>;
};
};
pmp_slot@10 {
libata {
EMID = <0x03>;
pmp_link = <0x00>;
};
};
pmp_slot@11 {
libata {
EMID = <0x03>;
pmp_link = <0x01>;
};
};
pmp_slot@12 {
libata {
EMID = <0x03>;
pmp_link = <0x02>;
};
};
};
};
EORX12bay
fi
}
install_binfile(){
# install_binfile <file> <file-url> <destination> <chmod> <bundled-path> <hash>
# example:
# file_url="https://raw.githubusercontent.com/${repo}/main/bin/dtc"
# install_binfile dtc "$file_url" /usr/bin/dtc a+x bin/dtc
if [[ -f "${scriptpath}/$5" ]]; then
binfile="${scriptpath}/$5"
echo -e "\nInstalling ${1}"
elif [[ -f "${scriptpath}/$(basename -- "$5")" ]]; then
binfile="${scriptpath}/$(basename -- "$5")"
echo -e "\nInstalling ${1}"
else
# Download binfile
if [[ $autoupdate == "yes" ]]; then
reply=y
else
echo -e "\nNeed to download ${1}"
echo -e "${Cyan}Do you want to download ${1}?${Off} [y/n]"
read -r -t 30 reply
fi
if [[ ${reply,,} == "y" ]]; then
echo -e "\nDownloading ${1}"
if ! curl -kL -m 30 --connect-timeout 5 "$2" -o "/tmp/$1"; then
echo -e "${Error}ERROR${Off} Failed to download ${1}!"
#return
exit 1 # Failed to download binfile
fi
binfile="/tmp/${1}"
printf "Downloaded md5: "
md5sum -b "$binfile" | awk '{print $1}'
md5=$(md5sum -b "$binfile" | awk '{print $1}')
if [[ $md5 != "$6" ]]; then
echo "Expected md5: $6"
echo -e "${Error}ERROR${Off} Downloaded $1 md5 hash does not match!"
exit 1 # Downloaded $1 md5 hash does not match
fi
else
echo -e "${Error}ERROR${Off} Cannot add expansion unit without ${1}!"
exit 1 # User answered no
fi
fi
# Set binfile executable
chmod "$4" "$binfile"
# Copy binfile to destination
cp -p "$binfile" "$3"
}
edit_modeldtb(){
# $1 is ebox model
if [[ -f /etc.defaults/model.dtb ]]; then # Is device tree model
# Check if dtc exists and is executable
if [[ ! -x $(which dtc) ]]; then
md5hash="01381dabbe86e13a2f4a8017b5552918"
branch="main"
file_url="https://raw.githubusercontent.com/${repo}/${branch}/bin/dtc"
# install_binfile <file> <file-url> <destination> <chmod> <bundled-path> <hash>
install_binfile dtc "$file_url" /usr/sbin/dtc "a+x" bin/dtc "$md5hash"
fi
# Check again if dtc exists and is executable
if [[ -x /usr/sbin/dtc ]]; then
# Backup model.dtb
backupdb "$dtb_file" || exit 1 # Failed to backup model.dtb
# Output model.dtb to model.dts
dtc -q -I dtb -O dts -o "$dts_file" "$dtb_file" # -q Suppress warnings
chmod 644 "$dts_file"
# Edit model.dts
for c in "${eboxes[@]}"; do
# Edit model.dts if needed
if ! grep -q "$c"'\b' "$dtb_file"; then
dts_ebox "$c" "$dts_file"
echo -e "Added ${Cyan}$c${Off} to ${Yellow}model${hwrev}.dtb${Off}" >&2
reboot=yes
else
echo -e "${Cyan}$c${Off} already enabled in ${Yellow}model${hwrev}.dtb${Off}" >&2
fi
done
# Compile model.dts to model.dtb
dtc -q -I dts -O dtb -o "$dtb_file" "$dts_file" # -q Suppress warnings
# Set owner and permissions for model.dtb
chmod a+r "$dtb_file"
chown root:root "$dtb_file"
cp -pu "$dtb_file" "$dtb2_file" # Copy dtb file to /etc
else
echo -e "${Error}ERROR${Off} Missing /usr/sbin/dtc or not executable!" >&2
exit
fi
fi
}
#------------------------------------------------------------------------------
# Select expansion unit to enable
# Show currently enabled eunit(s)
check_enabled
enable_eunit(){
case "$choice" in
DX517|DX513|DX510)
eboxes=("$choice") && edit_modeldtb
return
;;
DX213)
eboxes=("$choice") && edit_modeldtb
return
;;
RX418|RX415|RX410)
eboxes=("$choice") && edit_modeldtb
return
;;
RX1217rp|RX1214rp|RX1211rp)
eboxes=("$choice")
eboxes+=("${choice//rp}") # Also add non-RP model
edit_modeldtb
return
;;
RX1217|RX1214|RX1211)
eboxes=("$choice") && edit_modeldtb
return
;;
DX1215II|DX1215|DX1211)
eboxes=("$choice") && edit_modeldtb
return
;;
Check)
check_enabled
exit
;;
Restore)
restore_orig
return
;;
Quit) exit ;;
"") echo "Invalid Choice!" ;;
*)
echo -e "$choice not supported yet"
exit
;;
esac
}
_12bays=("RX1217rp" "RX1217" "RX1214rp" "RX1214" "RX1211rp" "RX1211" \
"DX1215II" "DX1215" "DX1211")
eunits=("DX517" "DX513" "DX213" "DX510" "RX418" "RX415" "RX410" \
"RX1217rp" "RX1217" "RX1214rp" "RX1214" "RX1211rp" "RX1211" \
"DX1215II" "DX1215" "DX1211" \
"Restore" "Quit")
if [[ -n $unit ]]; then
# Expansion Unit supplied as argument
if [[ ${eunits[*]} =~ ${unit} ]]; then
choice="${unit}"
echo -e "$choice selected\n"
enable_eunit
else
echo -e "Unsupported expansion unit argument: $unit\n"
exit 2 # Unsupported expansion unit argument
fi
else
PS3="Select your Expansion Unit: "
select choice in "${eunits[@]}"; do
echo -e "You selected $choice \n"
enable_eunit
break
done
fi
#echo ""
#------------------------------------------------------------------------------
# Finished
if [[ $reboot == "yes" ]]; then
rebootmsg
else
echo -e "\nFinished"
fi
|
train_000.parquet/734
|
{
"file_path": "syno_enable_eunit.sh",
"repo_id": "007revad/Synology_enable_eunit",
"size": 32984,
"token_count": 12501
}
|
## All my scripts, tools and guides
<img src="https://hitscounter.dev/api/hit?url=https%3A%2F%2F007revad.github.io%2F&label=Visitors&icon=github&color=%23198754&message=&style=flat&tz=UTC">
#### Contents
- [Plex](#plex)
- [Synology docker](#synology-docker)
- [Synology recovery](#synology-recovery)
- [Other Synology scripts](#other-synology-scripts)
- [Synology hardware restrictions](#synology-hardware-restrictions)
- [2025 plus models](#2025-plus-models)
- [How To Guides](#how-to-guides)
- [Synology dev](#synology-dev)
***
### Plex
- **<a href="https://github.com/007revad/Synology_Plex_Backup">Synology_Plex_Backup</a>**
- A script to backup Plex to a tgz file foror DSM 7 and DSM 6.
- Works for Plex Synology package and Plex in docker.
- **<a href="https://github.com/007revad/Asustor_Plex_Backup">Asustor_Plex_Backup</a>**
- Backup your Asustor's Plex Media Server settings and database.
- **<a href="https://github.com/007revad/Linux_Plex_Backup">Linux_Plex_Backup</a>**
- Backup your Linux Plex Media Server's settings and database.
- **<a href="https://github.com/007revad/Plex_Server_Sync">Plex_Server_Sync</a>**
- Sync your main Plex server database & metadata to a backup Plex server.
- Works for Synology, Asustor, Linux and supports Plex package or Plex in docker.
[Back to Contents](#contents)
### Synology docker
- **<a href="https://github.com/007revad/Synology_Docker_Export">Synology_Docker_export</a>**
- Export all Synology Container Manager or Docker containers' settings as json files to your docker shared folder.
- **<a href="https://github.com/007revad/Synology_ContainerManager_IPv6">Synology_ContainerManager_IPv6</a>**
- Enable IPv6 for Container Manager's bridge network.
- **<a href="https://github.com/007revad/ContainerManager_for_all_armv8">ContainerManager_for_all_armv8</a>**
- Script to install Container Manager on a RS819, DS119j, DS418, DS418j, DS218, DS218play or DS118.
- **<a href="https://github.com/007revad/Docker_Autocompose">Docker_Autocompose</a>**
- Create .yml files from your docker existing containers.
- **<a href="https://github.com/007revad/Synology_docker_cleanup">Synology_docker_cleanup</a>**
- Remove orphan docker btrfs subvolumes and images in Synology DSM 7 and DSM 6.
[Back to Contents](#contents)
### Synology recovery
- **<a href="https://github.com/007revad/Synology_DSM_reinstall">Synology_DSM_reinstall</a>**
- Easily re-install the same DSM version without losing any data or settings.
- **<a href="https://github.com/007revad/Synology_Recover_Data">Synology_Recover_Data</a>**
- A script to make it easy to recover your data from your Synology's drives using a computer.
- **<a href="https://github.com/007revad/Synology_clear_drive_error">Synology clear drive error</a>**
- Clear drive critical errors so DSM will let you use the drive.
- **<a href="https://github.com/007revad/Synology_DSM_Telnet_Password">Synology_DSM_Telnet_Password</a>**
- Synology DSM Recovery Telnet Password of the Day generator.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/Synoboot_backup">Synoboot_backup</a>**
- Back up synoboot after each DSM update so you can recover from a corrupt USBDOM.
[Back to Contents](#contents)
### Other Synology scripts
- **<a href="https://github.com/007revad/Synology_app_mover">Synology_app_mover</a>**
- Easily move Synology packages from one volume to another volume.
- **<a href="https://github.com/007revad/Video_Station_for_DSM_722">Video_Station_for_DSM_722</a>**
- Script to install Video Station in DSM 7.2.2
- **<a href="https://github.com/007revad/SS_Motion_Detection">SS_Motion_Detection</a>**
- Installs previous Surveillance Station and Advanced Media Extensions versions so motion detection and HEVC are supported.
- **<a href="https://github.com/007revad/Synology_Config_Backup">Synology_Config_Backup</a>**
- Backup and export your Synology DSM configuration.
- **<a href="https://github.com/007revad/Synology_CPU_temperature">Synology_CPU_temperature</a>**
- Get and log Synology NAS CPU temperature via SSH.
- **<a href="https://github.com/007revad/Synology_SMART_info">Synology_SMART_info</a>**
- Show Synology smart test progress or smart health and attributes.
- **<a href="https://github.com/007revad/Synology_Cleanup_Coredumps">Synology_Cleanup_Coredumps</a>**
- Cleanup memory core dumps from crashed processes.
- **<a href="https://github.com/007revad/Synology_toggle_reset_button">Synology_toggle_reset_button</a>**
- Script to disable or enable the reset button and show current setting.
- **<a href="https://github.com/007revad/Synology_Download_Station_Chrome_Extension">Synology_Download_Station_Chrome_Extension</a>**
- Download Station Chrome Extension.
- **<a href="https://github.com/007revad/Seagate_lowCurrentSpinup">Seagate_lowCurrentSpinup</a>**
- This script avoids the need to buy and install a higher wattage power supply when using multiple large Seagate SATA HDDs.
[Back to Contents](#contents)
### Synology hardware restrictions
- **<a href="https://github.com/007revad/Synology_HDD_db">Synology_HDD_db</a>**
- Add your SATA or SAS HDDs and SSDs plus SATA and NVMe M.2 drives to your Synology's compatible drive databases, including your Synology M.2 PCIe card and Expansion Unit databases.
- **<a href="https://github.com/007revad/Synology_enable_M2_volume">Synology_enable_M2_volume</a>**
- Enable creating volumes with non-Synology M.2 drives.
- Enable Health Info for non-Synology NVMe drives (not in DSM 7.2.1 or later).
- **<a href="https://github.com/007revad/Synology_M2_volume">Synology_M2_volume</a>**
- Easily create an M.2 volume on Synology NAS.
- **<a href="https://github.com/007revad/Synology_enable_M2_card">Synology_enable_M2_card</a>**
- Enable Synology M.2 PCIe cards in Synology NAS that don't officially support them.
- **<a href="https://github.com/007revad/Synology_enable_eunit">Synology_enable_eunit</a>**
- Enable an unsupported Synology eSATA Expansion Unit models.
- **<a href="https://github.com/007revad/Synology_enable_Deduplication">Synology_enable_Deduplication</a>**
- Enable deduplication with non-Synology SSDs and unsupported NAS models.
- **<a href="https://github.com/007revad/Synology_SHR_switch">Synology_SHR_switch</a>**
- Easily switch between SHR and RAID Groups, or enable RAID F1.
- **<a href="https://github.com/007revad/Synology_enable_sequential_IO">Synology_enable_sequential_IO</a>**
- Enables sequential I/O for your SSD caches, like DSM 6 had.
- **<a href="https://github.com/007revad/Synology_Information_Wiki">Synology_Information_Wiki</a>**
- Information about Synology hardware.
[Back to Contents](#contents)
### 2025 plus models
- **<a href="https://github.com/007revad/Transcode_for_x25">Transcode_for_x25</a>**
- Installs the modules needed for Plex or Jellyfin hardware transcoding in DS425+ and DS225+.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md">2025 series or later Plus models</a>**
- Unverified 3rd party drive limitations and unofficial solutions.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#setting-up-a-new-2025-or-later-plus-model-with-only-unverified-hdds">Setup with only 3rd party drives</a>**
- Setting up a new 2025 or later plus model with only unverified HDDs.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#deleting-and-recreating-your-storage-pool-on-unverified-hdds">Recreating storage pool on migrated drives</a>**
- Deleting and recreating your storage pool on unverified HDDs.
[Back to Contents](#contents)
### How To Guides
- **<a href="https://github.com/007revad/Synology_SSH_key_setup">Synology_SSH_key_setup</a>**
- How to setup SSH key authentication for your Synology.
[Back to Contents](#contents)
### Synology dev
- **<a href="https://github.com/007revad/Download_Synology_Archive">Download_Synology_Archive</a>**
- Download all or part of the Synology archive.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/ScriptNotify">ScriptNotify</a>**
- DSM 7 package to allow your scripts to send DSM notifications.
- **<a href="https://github.com/007revad/DTC_GUI_for_Windows">DTC_GUI_for_Windows</a>**
- GUI for DTC.exe for Windows.
[Back to Contents](#contents)
|
train_000.parquet/735
|
{
"file_path": "my-other-scripts.md",
"repo_id": "007revad/Synology_enable_Deduplication",
"size": 9099,
"token_count": 3421
}
|
#!/usr/bin/env bash
#-------------------------------------------------------------------------------
# Enables data deduplication with non-Synology drives and unsupported NAS models
#
# Github: https://github.com/007revad/Synology_enable_Deduplication
# Script verified at https://www.shellcheck.net/
#
# To run in a shell (replace /volume1/scripts/ with path to script):
# sudo /volume1/scripts/syno_enable_dedupe.sh
#-------------------------------------------------------------------------------
# Added support for DSM 7.0.1 to 7.2 (untested)
scriptver="v1.4.31"
script=Synology_enable_Deduplication
repo="007revad/Synology_enable_Deduplication"
scriptname=syno_enable_dedupe
# Prevent Entware or user edited PATH causing issues
# shellcheck disable=SC2155 # Declare and assign separately to avoid masking return values
export PATH=$(echo "$PATH" | sed -e 's/\/opt\/bin:\/opt\/sbin://')
# Check BASH variable is bash
if [ ! "$(basename "$BASH")" = bash ]; then
echo "This is a bash script. Do not run it with $(basename "$BASH")"
printf \\a
exit 1
fi
# Check script is running on a Synology NAS
if ! /usr/bin/uname -a | grep -i synology >/dev/null; then
echo "This script is NOT running on a Synology NAS!"
echo "Copy the script to a folder on the Synology"
echo "and run it from there."
exit 1
fi
ding(){
printf \\a
}
usage(){
cat <<EOF
$script $scriptver - by 007revad
Usage: $(basename "$0") [options]
Options:
-c, --check Check value in file and backup file
-r, --restore Undo all changes made by the script
-t, --tiny Enable tiny data deduplication (only needs 4GB RAM)
DSM 7.2.1 and later only
--hdd Enable data deduplication for HDDs.
Can cause files to become more fragmented,
resulting in decreased access performance.
-e, --email Disable colored text in output for scheduler emails
--autoupdate=AGE Auto update script (useful when script is scheduled)
AGE is how many days old a release must be before
auto-updating. AGE must be a number: 0 or greater
-s, --skip Skip memory amount check (for testing)
-h, --help Show this help message
-v, --version Show the script version
EOF
exit 0
}
scriptversion(){
cat <<EOF
$script $scriptver - by 007revad
See https://github.com/$repo
EOF
exit 0
}
# Save options used
args=("$@")
autoupdate=""
# Check for flags with getopt
if options="$(getopt -o abcdefghijklmnopqrstuvwxyz0123456789 -l \
skip,check,restore,help,version,tiny,hdd,email,autoupdate:,log,debug -- "$@")"; then
eval set -- "$options"
while true; do
case "${1,,}" in
-h|--help) # Show usage options
usage
;;
-v|--version) # Show script version
scriptversion
;;
-t|--tiny) # Enable tiny deduplication
tiny=yes
;;
--hdd) # Enable deduplication for HDDs (dangerous)
hdd=yes
;;
-s|--skip) # Skip memory amount check (for testing)
skip=yes
;;
-l|--log) # Log
#log=yes
;;
-d|--debug) # Show and log debug info
debug=yes
;;
-c|--check) # Check value in file and backup file
check=yes
break
;;
-r|--restore) # Restore from backups to undo changes
restore=yes
break
;;
-e|--email) # Disable colour text in task scheduler emails
color=no
;;
--autoupdate) # Auto update script
autoupdate=yes
if [[ $2 =~ ^[0-9]+$ ]]; then
delay="$2"
shift
else
delay="0"
fi
;;
--)
shift
break
;;
*) # Show usage options
echo -e "Invalid option '$1'\n"
usage "$1"
;;
esac
shift
done
else
echo
usage
fi
if [[ $debug == "yes" ]]; then
set -x
export PS4='`[[ $? == 0 ]] || echo "\e[1;31;40m($?)\e[m\n "`:.$LINENO:'
fi
# Shell Colors
if [[ $color != "no" ]]; then
#Black='\e[0;30m' # ${Black}
Red='\e[0;31m' # ${Red}
#Green='\e[0;32m' # ${Green}
Yellow='\e[0;33m' # ${Yellow}
#Blue='\e[0;34m' # ${Blue}
#Purple='\e[0;35m' # ${Purple}
Cyan='\e[0;36m' # ${Cyan}
#White='\e[0;37m' # ${White}
Error='\e[41m' # ${Error}
Off='\e[0m' # ${Off}
else
echo "" # For task scheduler email readability
fi
# Check script is running as root
if [[ $( whoami ) != "root" ]]; then
ding
echo -e "${Error}ERROR${Off} This script must be run as sudo or root!"
exit 1
fi
# Get DSM major, minor and micro versions
major=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION majorversion)
minor=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION minorversion)
micro=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION micro)
# Get NAS model
model=$(cat /proc/sys/kernel/syno_hw_version)
#modelname="$model"
# Show script version
#echo -e "$script $scriptver\ngithub.com/$repo\n"
echo "$script $scriptver"
# Get DSM full version
productversion=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION productversion)
buildphase=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION buildphase)
buildnumber=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION buildnumber)
smallfixnumber=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION smallfixnumber)
# Show DSM full version and model
if [[ $buildphase == GM ]]; then buildphase=""; fi
if [[ $smallfixnumber -gt "0" ]]; then smallfix="-$smallfixnumber"; fi
echo -e "$model DSM $productversion-$buildnumber$smallfix $buildphase\n"
# Get StorageManager version
storagemgrver=$(/usr/syno/bin/synopkg version StorageManager)
# Show StorageManager version
if [[ $storagemgrver ]]; then echo -e "StorageManager $storagemgrver \n"; fi
# Show options used
if [[ ${#args[@]} -gt "0" ]]; then
#echo -e "Using options: ${args[*]}\n"
echo -e "Using options: ${args[*]}"
fi
if [[ $major$minor$micro -lt "701" ]]; then
ding
#echo "This script only works for DSM 7.0.1 and later."
echo "Btrfs Data Deduplication only works in DSM 7.0.1 and later."
exit 1
fi
# Check model (and DSM version for that model) supports dedupe
if [[ ! -f /usr/syno/sbin/synobtrfsdedupe ]]; then
arch=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/synoinfo.conf platform_name)
#echo "Your model or DSM version does not support Btrfs Data Deduplication."
echo "Models with $arch CPUs do not support Btrfs Data Deduplication."
echo "Only models with V1000, R1000, Geminilake, Broadwellnkv2, "
echo "Broadwellnk, Broadwell, Purley and Epyc7002 CPUs are supported."
exit
fi
#------------------------------------------------------------------------------
# Check latest release with GitHub API
syslog_set(){
if [[ ${1,,} == "info" ]] || [[ ${1,,} == "warn" ]] || [[ ${1,,} == "err" ]]; then
if [[ $autoupdate == "yes" ]]; then
# Add entry to Synology system log
/usr/syno/bin/synologset1 sys "$1" 0x11100000 "$2"
fi
fi
}
# Get latest release info
# Curl timeout options:
# https://unix.stackexchange.com/questions/94604/does-curl-have-a-timeout
release=$(curl --silent -m 10 --connect-timeout 5 \
"https://api.github.com/repos/$repo/releases/latest")
# Release version
tag=$(echo "$release" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
shorttag="${tag:1}"
# Release published date
published=$(echo "$release" | grep '"published_at":' | sed -E 's/.*"([^"]+)".*/\1/')
published="${published:0:10}"
published=$(date -d "$published" '+%s')
# Today's date
now=$(date '+%s')
# Days since release published
age=$(((now - published)/(60*60*24)))
# Get script location
# https://stackoverflow.com/questions/59895/
source=${BASH_SOURCE[0]}
while [ -L "$source" ]; do # Resolve $source until the file is no longer a symlink
scriptpath=$( cd -P "$( dirname "$source" )" >/dev/null 2>&1 && pwd )
source=$(readlink "$source")
# If $source was a relative symlink, we need to resolve it
# relative to the path where the symlink file was located
[[ $source != /* ]] && source=$scriptpath/$source
done
scriptpath=$( cd -P "$( dirname "$source" )" >/dev/null 2>&1 && pwd )
scriptfile=$( basename -- "$source" )
echo "Running from: ${scriptpath}/$scriptfile"
# Warn if script located on M.2 drive
scriptvol=$(echo "$scriptpath" | cut -d"/" -f2)
vg=$(lvdisplay | grep /volume_"${scriptvol#volume}" | cut -d"/" -f3)
md=$(pvdisplay | grep -B 1 -E '[ ]'"$vg" | grep /dev/ | cut -d"/" -f3)
if cat /proc/mdstat | grep "$md" | grep nvme >/dev/null; then
echo -e "${Yellow}WARNING${Off} Don't store this script on an NVMe volume!"
fi
cleanup_tmp(){
cleanup_err=
# Delete downloaded .tar.gz file
if [[ -f "/tmp/$script-$shorttag.tar.gz" ]]; then
if ! rm "/tmp/$script-$shorttag.tar.gz"; then
echo -e "${Error}ERROR${Off} Failed to delete"\
"downloaded /tmp/$script-$shorttag.tar.gz!" >&2
cleanup_err=1
fi
fi
# Delete extracted tmp files
if [[ -d "/tmp/$script-$shorttag" ]]; then
if ! rm -r "/tmp/$script-$shorttag"; then
echo -e "${Error}ERROR${Off} Failed to delete"\
"downloaded /tmp/$script-$shorttag!" >&2
cleanup_err=1
fi
fi
# Add warning to DSM log
if [[ $cleanup_err ]]; then
syslog_set warn "$script update failed to delete tmp files"
fi
}
if ! printf "%s\n%s\n" "$tag" "$scriptver" |
sort --check=quiet --version-sort >/dev/null ; then
echo -e "\n${Cyan}There is a newer version of this script available.${Off}"
echo -e "Current version: ${scriptver}\nLatest version: $tag"
scriptdl="$scriptpath/$script-$shorttag"
if [[ -f ${scriptdl}.tar.gz ]] || [[ -f ${scriptdl}.zip ]]; then
# They have the latest version tar.gz downloaded but are using older version
echo "You have the latest version downloaded but are using an older version"
sleep 10
elif [[ -d $scriptdl ]]; then
# They have the latest version extracted but are using older version
echo "You have the latest version extracted but are using an older version"
sleep 10
else
if [[ $autoupdate == "yes" ]]; then
if [[ $age -gt "$delay" ]] || [[ $age -eq "$delay" ]]; then
echo "Downloading $tag"
reply=y
else
echo "Skipping as $tag is less than $delay days old."
fi
else
echo -e "${Cyan}Do you want to download $tag now?${Off} [y/n]"
read -r -t 30 reply
fi
if [[ ${reply,,} == "y" ]]; then
# Delete previously downloaded .tar.gz file and extracted tmp files
cleanup_tmp
if cd /tmp; then
url="https://github.com/$repo/archive/refs/tags/$tag.tar.gz"
if ! curl -JLO -m 30 --connect-timeout 5 "$url"; then
echo -e "${Error}ERROR${Off} Failed to download"\
"$script-$shorttag.tar.gz!"
syslog_set warn "$script $tag failed to download"
else
if [[ -f /tmp/$script-$shorttag.tar.gz ]]; then
# Extract tar file to /tmp/<script-name>
if ! tar -xf "/tmp/$script-$shorttag.tar.gz" -C "/tmp"; then
echo -e "${Error}ERROR${Off} Failed to"\
"extract $script-$shorttag.tar.gz!"
syslog_set warn "$script failed to extract $script-$shorttag.tar.gz!"
else
# Set script sh files as executable
if ! chmod a+x "/tmp/$script-$shorttag/"*.sh ; then
permerr=1
echo -e "${Error}ERROR${Off} Failed to set executable permissions"
syslog_set warn "$script failed to set permissions on $tag"
fi
# Copy new script sh file to script location
if ! cp -p "/tmp/$script-$shorttag/${scriptname}.sh" "${scriptpath}/${scriptfile}";
then
copyerr=1
echo -e "${Error}ERROR${Off} Failed to copy"\
"$script-$shorttag sh file(s) to:\n $scriptpath/${scriptfile}"
syslog_set warn "$script failed to copy $tag to script location"
fi
# Copy new CHANGES.txt file to script location (if script on a volume)
if [[ $scriptpath =~ /volume* ]]; then
# Set permissions on CHANGES.txt
if ! chmod 664 "/tmp/$script-$shorttag/CHANGES.txt"; then
permerr=1
echo -e "${Error}ERROR${Off} Failed to set permissions on:"
echo "$scriptpath/CHANGES.txt"
fi
# Copy new CHANGES.txt file to script location
if ! cp -p "/tmp/$script-$shorttag/CHANGES.txt"\
"${scriptpath}/${scriptname}_CHANGES.txt";
then
if [[ $autoupdate != "yes" ]]; then copyerr=1; fi
echo -e "${Error}ERROR${Off} Failed to copy"\
"$script-$shorttag/CHANGES.txt to:\n $scriptpath"
else
changestxt=" and changes.txt"
fi
fi
# Delete downloaded tmp files
cleanup_tmp
# Notify of success (if there were no errors)
if [[ $copyerr != 1 ]] && [[ $permerr != 1 ]]; then
echo -e "\n$tag ${scriptfile}$changestxt downloaded to: ${scriptpath}\n"
syslog_set info "$script successfully updated to $tag"
# Reload script
printf -- '-%.0s' {1..79}; echo # print 79 -
exec "${scriptpath}/$scriptfile" "${args[@]}"
else
syslog_set warn "$script update to $tag had errors"
fi
fi
else
echo -e "${Error}ERROR${Off}"\
"/tmp/$script-$shorttag.tar.gz not found!"
#ls /tmp | grep "$script" # debug
syslog_set warn "/tmp/$script-$shorttag.tar.gz not found"
fi
fi
cd "$scriptpath" || echo -e "${Error}ERROR${Off} Failed to cd to script location!"
else
echo -e "${Error}ERROR${Off} Failed to cd to /tmp!"
syslog_set warn "$script update failed to cd to /tmp"
fi
fi
fi
fi
#------------------------------------------------------------------------------
# Set file variables
synoinfo="/etc.defaults/synoinfo.conf"
synoinfo2="/etc/synoinfo.conf"
#strgmgr="/var/packages/StorageManager/target/ui/storage_panel.js"
libhw="/usr/lib/libhwcontrol.so.1"
if [[ $buildnumber -gt 64570 ]]; then
# DSM 7.2.1 and later
#strgmgr="/var/packages/StorageManager/target/ui/storage_panel.js"
strgmgr="/usr/local/packages/@appstore/StorageManager/ui/storage_panel.js"
else
# DSM 7.0.1 to 7.2
strgmgr="/usr/syno/synoman/webman/modules/StorageManager/storage_panel.js"
fi
if [[ ! -f ${libhw} ]]; then
ding
echo -e "${Error}ERROR${Off} $(basename -- $libhw) not found!"
exit 1
fi
rebootmsg(){
# Reboot prompt
echo -e "\n${Cyan}The Synology needs to restart.${Off}"
echo -e "Type ${Cyan}yes${Off} to reboot now."
echo -e "Type anything else to quit (if you will restart it yourself)."
read -r -t 10 answer
if [[ ${answer,,} != "yes" ]]; then exit; fi
# # Reboot in the background so user can see DSM's "going down" message
# reboot &
if [[ -x /usr/syno/sbin/synopoweroff ]]; then
/usr/syno/sbin/synopoweroff -r || reboot
else
reboot
fi
}
reloadmsg(){
# Reload browser prompt
echo -e "\nFinished"
echo -e "\nIf you have DSM open in a browser you need to"
echo "refresh the browser window or tab."
echo "You may also need to reboot."
exit
}
#----------------------------------------------------------
# Restore changes from backup file
compare_md5(){
# $1 is file 1
# $2 is file 2
if [[ -f "$1" ]] && [[ -f "$2" ]]; then
if [[ $(md5sum -b "$1" | awk '{print $1}') == $(md5sum -b "$2" | awk '{print $1}') ]];
then
return 0
else
return 1
fi
else
restoreerr=$((restoreerr+1))
return 2
fi
}
if [[ $restore == "yes" ]]; then
echo ""
if [[ -f ${synoinfo}.bak ]] || [[ -f ${libhw}.bak ]] ||\
[[ -f ${strgmgr}.${storagemgrver} ]]; then
# Restore synoinfo.conf from backup
if [[ -f ${synoinfo}.bak ]]; then
keyvalues=("support_btrfs_dedupe" "support_tiny_btrfs_dedupe")
for v in "${!keyvalues[@]}"; do
defaultval="$(/usr/syno/bin/synogetkeyvalue ${synoinfo}.bak "${keyvalues[v]}")"
if [[ -z $defaultval ]]; then defaultval="no"; fi
currentval="$(/usr/syno/bin/synogetkeyvalue ${synoinfo} "${keyvalues[v]}")"
if [[ $currentval != "$defaultval" ]]; then
if /usr/syno/bin/synosetkeyvalue "$synoinfo" "${keyvalues[v]}" "$defaultval";
then
restored="yes"
echo "Restored ${keyvalues[v]} = $defaultval"
fi
fi
/usr/syno/bin/synosetkeyvalue "$synoinfo2" "${keyvalues[v]}" "$defaultval"
done
fi
# Restore storage_panel.js from backup
if [[ -f "${strgmgr}.$storagemgrver" ]]; then
string1="(SYNO.SDS.StorageUtils.supportBtrfsDedupe,)"
string2="(SYNO.SDS.StorageUtils.supportBtrfsDedupe&&e.dedup_info.show_config_btn)"
if grep -o "$string1" "${strgmgr}" >/dev/null; then
# Restore string in file
sed -i "s/${string1}/${string2/&&/\\&\\&}/g" "$strgmgr"
# Check we restored string in file
if grep -o "string2" "${strgmgr}" >/dev/null; then
restored="yes"
echo "Restored $(basename -- "$strgmgr")"
else
restoreerr=1
echo -e "${Error}ERROR${Off} Failed to restore $(basename -- "$strgmgr")!"
fi
fi
else
echo "No backup of $(basename -- "$strgmgr") found."
fi
if [[ -f "${libhw}.bak" ]]; then
# Check if backup libhwcontrol size matches
# in case backup is from previous DSM version
filesize=$(wc -c "${libhw}" | awk '{print $1}')
filebaksize=$(wc -c "${libhw}.bak" | awk '{print $1}')
if [[ ! $filesize -eq "$filebaksize" ]]; then
echo -e "${Yellow}WARNING Backup file size is different to file!${Off}"
echo "Do you want to restore this backup? [yes/no]:"
read -r -t 20 answer
if [[ $answer != "yes" ]]; then
exit
fi
fi
# Restore from backup
if ! compare_md5 "$libhw".bak "$libhw"; then
if cp -p "$libhw".bak "$libhw" ; then
restored="yes"
reboot="yes"
echo "Restored $(basename -- "$libhw")"
else
restoreerr=1
echo -e "${Error}ERROR${Off} Failed to restore $(basename -- "$libhw")!"
fi
fi
else
echo "No backup of $(basename -- "$libhw") found."
fi
if [[ -z $restoreerr ]]; then
if [[ $restored == "yes" ]]; then
echo -e "\nRestore successful."
reloadmsg
else
echo -e "Nothing to restore."
fi
fi
if [[ $reboot == "yes" ]]; then
rebootmsg
fi
else
echo -e "No backups to restore from."
fi
exit
fi
#----------------------------------------------------------
# Check NAS has enough memory
if [[ $restore != "yes" ]] && [[ $skip != "yes" ]]; then
IFS=$'\n' read -r -d '' -a array < <(dmidecode -t memory | grep -E "[Ss]ize: [0-9]+ [MG]{1}[B]{1}$")
if [[ ${#array[@]} -gt "0" ]]; then
num="0"
while [[ $num -lt "${#array[@]}" ]]; do
memcheck=$(printf %s "${array[num]}" | awk '{print $1}')
if [[ ${memcheck,,} == "size:" ]]; then
ramsize=$(printf %s "${array[num]}" | awk '{print $2}')
bytes=$(printf %s "${array[num]}" | awk '{print $3}')
if [[ $ramsize =~ ^[0-9]+$ ]]; then # Check $ramsize is numeric
if [[ $bytes == "GB" ]]; then # DSM 7.2 dmidecode returned GB
ramsize=$((ramsize * 1024)) # Convert to MB
fi
if [[ $ramtotal ]]; then
ramtotal=$((ramtotal +ramsize))
else
ramtotal="$ramsize"
fi
fi
fi
num=$((num +1))
done
ramgb=$((ramtotal / 1024))
if [[ $storagemgrver ]]; then
# Only DSM 7.2.1 and later supports tiny dedupe
if [[ $tiny == "yes" ]] || [[ $ramtotal -lt 16384 ]]; then
ramneeded="4096" # Tiny dedupe only needs 4GB ram
tiny="yes"
else
ramneeded="16384" # Needs 16GB ram
tiny=""
fi
else
ramneeded="16384" # Needs 16GB ram
tiny=""
fi
if [[ $ramtotal -lt "$ramneeded" ]]; then
ding
echo -e "\n${Error}ERROR${Off} Not enough memory installed for deduplication: $ramgb GB"
exit 1
else
echo -e "\nNAS has $ramgb GB of memory."
fi
else
ding
echo -e "\n${Error}ERROR${Off} Unable to determine the amount of installed memory!"
exit 1
fi
fi
#----------------------------------------------------------
# Edit libhwcontrol.so.1
findbytes(){
# Get decimal position of matching hex string
match=$(od -v -t x1 "$1" |
sed 's/[^ ]* *//' |
tr '\012' ' ' |
grep -b -i -o "$hexstring" |
#grep -b -i -o "$hexstring ".. |
cut -d ':' -f 1 |
xargs -I % expr % / 3)
# Convert decimal position of matching hex string to hex
array=("$match")
if [[ ${#array[@]} -gt "1" ]]; then
num="0"
while [[ $num -lt "${#array[@]}" ]]; do
poshex=$(printf "%x" "${array[$num]}")
if [[ $debug == "yes" ]]; then
echo "${array[$num]} = $poshex" # debug
fi
seek="${array[$num]}"
xxd=$(xxd -u -l 12 -s "$seek" "$1")
#echo "$xxd" # debug
if [[ $debug == "yes" ]]; then
printf %s "$xxd" | cut -d" " -f1-7
else
printf %s "$xxd" | cut -d" " -f1-7 >/dev/null
fi
bytes=$(printf %s "$xxd" | cut -d" " -f6)
#echo "$bytes" # debug
num=$((num +1))
done
elif [[ -n $match ]]; then
poshex=$(printf "%x" "$match")
if [[ $debug == "yes" ]]; then
echo "$match = $poshex" # debug
fi
seek="$match"
xxd=$(xxd -u -l 12 -s "$seek" "$1")
#echo "$xxd" # debug
if [[ $debug == "yes" ]]; then
printf %s "$xxd" | cut -d" " -f1-7
else
printf %s "$xxd" | cut -d" " -f1-7 >/dev/null
fi
bytes=$(printf %s "$xxd" | cut -d" " -f6)
#echo "$bytes" # debug
else
bytes=""
fi
}
# Check value in file and backup file
if [[ $check == "yes" ]]; then
err=0
# Check if deduplication enabled in synoinfo.conf
sbd=support_btrfs_dedupe
stbd=support_tiny_btrfs_dedupe
setting="$(/usr/syno/bin/synogetkeyvalue "$synoinfo" ${sbd})"
setting2="$(/usr/syno/bin/synogetkeyvalue "$synoinfo" ${stbd})"
# if [[ $tiny != "yes" ]] || [[ $ramtotal -lt 16384 ]]; then
if [[ $setting == "yes" ]]; then
echo -e "\nBtrfs Data Deduplication is ${Cyan}enabled${Off}."
else
echo -e "\nBtrfs Data Deduplication is ${Cyan}not${Off} enabled."
fi
# else
if [[ $setting2 == "yes" ]]; then
echo -e "\nTiny Btrfs Data Deduplication is ${Cyan}enabled${Off}."
else
echo -e "\nTiny Btrfs Data Deduplication is ${Cyan}not${Off} enabled."
fi
# fi
# DSM 7.2.1 only and only if --hdd option used
# Dedupe config button for HDDs and 2.5 inch SSDs in DSM 7.2.1
# if [[ -f "$strgmgr" ]] && [[ $hdd == "yes" ]]; then
if [[ -f "$strgmgr" ]]; then
# StorageManager package is installed and --hdd option used
if ! grep '&&e.dedup_info.show_config_btn' "$strgmgr" >/dev/null; then
echo -e "\nDedupe config menu for HDDs and 2.5\" SSDs is ${Cyan}enabled${Off}."
else
echo -e "\nDedupe config menu for HDDs and 2.5\" SSDs is ${Cyan}not${Off} enabled."
echo "Run the script with the --hdd option if you want it enabled."
fi
fi
# Check value in file
echo -e "\nChecking non-Synology drive supported."
hexstring="80 3E 00 B8 01 00 00 00 90 90 48 8B"
findbytes "$libhw"
if [[ $bytes == "9090" ]]; then
echo -e "File is already edited."
else
hexstring="80 3E 00 B8 01 00 00 00 75 2. 48 8B"
findbytes "$libhw"
if [[ $bytes =~ "752"[0-9] ]]; then
echo -e "File is ${Cyan}not${Off} edited."
else
echo -e "${Red}hex string not found!${Off}"
err=1
fi
fi
# Check value in backup file
if [[ -f ${libhw}.bak ]]; then
echo -e "\nChecking value in backup file."
hexstring="80 3E 00 B8 01 00 00 00 75 2. 48 8B"
findbytes "${libhw}.bak"
if [[ $bytes =~ "752"[0-9] ]]; then
echo -e "Backup file is okay."
else
hexstring="80 3E 00 B8 01 00 00 00 90 90 48 8B"
findbytes "${libhw}.bak"
if [[ $bytes == "9090" ]]; then
echo -e "${Red}Backup file has been edited!${Off}"
else
echo -e "${Red}hex string not found!${Off}"
err=1
fi
fi
else
echo "No backup file found."
fi
exit "$err"
fi
#----------------------------------------------------------
# Backup libhwcontrol
if [[ ! -f ${libhw}.bak ]]; then
if cp -p "$libhw" "$libhw".bak ; then
echo "Backup successful."
else
ding
echo -e "${Error}ERROR${Off} Backup failed!"
exit 1
fi
else
# Check if backup size matches file size
filesize=$(wc -c "$libhw" | awk '{print $1}')
filebaksize=$(wc -c "${libhw}.bak" | awk '{print $1}')
if [[ ! $filesize -eq "$filebaksize" ]]; then
echo -e "${Yellow}WARNING Backup file size is different to file!${Off}"
echo "Maybe you've updated DSM since last running this script?"
echo "Renaming file.bak to file.bak.old"
mv "${libhw}.bak" "$libhw".bak.old
if cp -p "$libhw" "$libhw".bak ; then
echo "Backup successful."
else
ding
echo -e "${Error}ERROR${Off} Backup failed!"
exit 1
fi
#else
# echo "$(basename -- "$libhw") already backed up."
fi
fi
#----------------------------------------------------------
# Edit libhwcontrol
#echo -e "\nChecking $(basename -- "$libhw")."
# Check if the file is already edited
hexstring="80 3E 00 B8 01 00 00 00 90 90 48 8B"
findbytes "$libhw"
if [[ $bytes == "9090" ]]; then
#echo -e "\n$(basename -- "$libhw") already edited."
echo -e "\nNon-Synology drive support already enabled."
else
# Check if the file is okay for editing
hexstring="80 3E 00 B8 01 00 00 00 75 2. 48 8B"
findbytes "$libhw"
if ! [[ $bytes =~ "752"[0-9] ]]; then
ding
echo -e "\n${Red}hex string not found!${Off}"
exit 1
fi
# Replace bytes in file
posrep=$(printf "%x\n" $((0x${poshex}+8)))
if ! printf %s "${posrep}: 9090" | xxd -r - "$libhw"; then
ding
echo -e "${Error}ERROR${Off} Failed to edit $(basename -- "$libhw")!"
exit 1
else
# Check if libhwcontrol.so.1 was successfully edited
#echo -e "\nChecking if file was successfully edited."
hexstring="80 3E 00 B8 01 00 00 00 90 90 48 8B"
findbytes "$libhw"
if [[ $bytes == "9090" ]]; then
#echo -e "File successfully edited."
echo -e "\nEnabled non-Synology drive support."
#echo -e "\n${Cyan}You can now enable data deduplication"\
# "pool in Storage Manager.${Off}"
reboot="yes"
fi
fi
fi
#------------------------------------------------------------------------------
# Edit /etc.defaults/synoinfo.conf
# Backup synoinfo.conf if needed
if [[ ! -f ${synoinfo}.bak ]]; then
if cp -p "$synoinfo" "$synoinfo.bak"; then
echo -e "\nBacked up $(basename -- "$synoinfo")" >&2
else
ding
echo -e "\n${Error}ERROR 5${Off} Failed to backup $(basename -- "$synoinfo")!"
exit 1
fi
fi
enabled=""
sbd=support_btrfs_dedupe
stbd=support_tiny_btrfs_dedupe
# Enable dedupe support if needed
setting="$(/usr/syno/bin/synogetkeyvalue "$synoinfo" ${sbd})"
if [[ $tiny != "yes" ]]; then
if [[ ! $setting ]] || [[ $setting == "no" ]]; then
if [[ -n $sbd ]]; then
/usr/syno/bin/synosetkeyvalue "$synoinfo" "$sbd" yes
/usr/syno/bin/synosetkeyvalue "$synoinfo2" "$sbd" yes
enabled="yes"
fi
elif [[ $setting == "yes" ]]; then
echo -e "\nBtrfs Data Deduplication already enabled."
fi
# Disable support_tiny_btrfs_dedupe
if [[ $enabled == "yes" ]]; then
if grep "$stbd" "$synoinfo" >/dev/null; then
/usr/syno/bin/synosetkeyvalue "$synoinfo" "$stbd" no
fi
if grep "$stbd" "$synoinfo2" >/dev/null; then
/usr/syno/bin/synosetkeyvalue "$synoinfo2" "$stbd" no
fi
fi
fi
# Enable tiny dedupe support if needed
setting="$(/usr/syno/bin/synogetkeyvalue "$synoinfo" ${stbd})"
if [[ $tiny == "yes" ]]; then
if [[ ! $setting ]] || [[ $setting == "no" ]]; then
if [[ -n $stbd ]]; then
/usr/syno/bin/synosetkeyvalue "$synoinfo" "$stbd" yes
/usr/syno/bin/synosetkeyvalue "$synoinfo2" "$stbd" yes
enabled="yes"
fi
elif [[ $setting == "yes" ]]; then
echo -e "\nTiny Btrfs Data Deduplication already enabled."
fi
# Disable support_btrfs_dedupe
if [[ $enabled == "yes" ]]; then
if grep "$sbd" "$synoinfo" >/dev/null; then
/usr/syno/bin/synosetkeyvalue "$synoinfo" "$sbd" no
fi
if grep "$sbd" "$synoinfo2" >/dev/null; then
/usr/syno/bin/synosetkeyvalue "$synoinfo2" "$sbd" no
fi
fi
fi
# Check if we enabled deduplication
setting="$(/usr/syno/bin/synogetkeyvalue "$synoinfo" ${sbd})"
setting2="$(/usr/syno/bin/synogetkeyvalue "$synoinfo" ${stbd})"
if [[ $enabled == "yes" ]]; then
if [[ $tiny != "yes" ]]; then
if [[ $setting == "yes" ]]; then
echo -e "\nEnabled Btrfs Data Deduplication."
reload="yes"
else
ding
echo -e "\n${Error}ERROR${Off} Failed to enable Btrfs Data Deduplication!"
fi
else
if [[ $setting2 == "yes" ]]; then
echo -e "\nEnabled Tiny Btrfs Data Deduplication."
reload="yes"
else
ding
echo -e "\n${Error}ERROR${Off} Failed to enable Tiny Btrfs Data Deduplication!"
fi
fi
fi
#------------------------------------------------------------------------------
# Edit /var/packages/StorageManager/target/ui/storage_panel.js
# Enable dedupe config button for HDDs in DSM 7.2.1
if [[ -f "$strgmgr" ]] && [[ $hdd == "yes" ]]; then
# StorageManager package is installed
if grep '&&e.dedup_info.show_config_btn' "$strgmgr" >/dev/null; then
# Backup storage_panel.js"
storagemgrver="$(synopkg version StorageManager)"
echo ""
if [[ ! -f "${strgmgr}.$storagemgrver" ]]; then
if cp -p "$strgmgr" "${strgmgr}.$storagemgrver"; then
echo -e "Backed up $(basename -- "$strgmgr")"
else
ding
echo -e "${Error}ERROR${Off} Failed to backup $(basename -- "$strgmgr")!"
fi
fi
sed -i 's/&&e.dedup_info.show_config_btn//g' "$strgmgr"
# Check if we edited file
if ! grep '&&e.dedup_info.show_config_btn' "$strgmgr" >/dev/null; then
echo -e "Enabled dedupe config menu for HDDs and 2.5\" SSDs."
reload="yes"
else
ding
echo -e "${Error}ERROR${Off} Failed to enable dedupe config menu for HDDs and 2.5\" SSDs!"
fi
else
echo -e "\nDedupe config menu for HDDs and 2.5\" SSDs already enabled."
fi
elif [[ -f "$strgmgr" ]]; then
if ! grep '&&e.dedup_info.show_config_btn' "$strgmgr" >/dev/null; then
echo -e "\nDedupe config menu for HDDs and 2.5\" SSDs is enabled."
else
echo -e "\nDedupe config menu for HDDs and 2.5\" SSDs not enabled."
echo "Run the script with the --hdd option if you want it enabled."
fi
fi
# Make sure xpe's storage_manager.js.gz includes our changes. Issue #88
if [[ -f "${strgmgr}.gz" ]]; then
gzip -c "${strgmgr}" > "${strgmgr}.gz"
fi
#----------------------------------------------------------
# Finished
if [[ $reboot == "yes" ]]; then
rebootmsg
elif [[ $reload == "yes" ]]; then
reloadmsg
else
echo -e "\nFinished"
fi
exit
|
train_000.parquet/736
|
{
"file_path": "syno_enable_dedupe.sh",
"repo_id": "007revad/Synology_enable_Deduplication",
"size": 35445,
"token_count": 12326
}
|
# Synology enable Deduplication
<a href="https://github.com/007revad/Synology_enable_Deduplication/releases"><img src="https://img.shields.io/github/release/007revad/Synology_enable_Deduplication.svg"></a>

[](https://www.paypal.com/paypalme/007revad)
[](https://github.com/sponsors/007revad)
[](https://user-badge.committers.top/australia/007revad)
### Description
Enable data deduplication with non-Synology SSDs and unsupported NAS models
- Works for any brand SATA SSD, SAS SSD and M.2 SSD drives in DSM 7.01 and later.
- Now works for HDDs in DSM 7.2.1 and later.
- Now works for M.2 drives in a PCIe adapter card (E10M20-T1, M2D20, M2D18 or M2D17) in DSM 7.2.1 and later.
It works on [Synology models that do offically support data deduplication](https://kb.synology.com/en-global/DSM/tutorial/Which_models_support_data_deduplication).
It works in DSM 7.0.1 and later on models with one of the following [CPU architectures](https://kb.synology.com/en-global/DSM/tutorial/What_kind_of_CPU_does_my_NAS_have): V1000, R1000, Geminilake and Broadwellnk.
It works in DSM 7.2.2 and later on models with one of the following [CPU architectures](https://kb.synology.com/en-global/DSM/tutorial/What_kind_of_CPU_does_my_NAS_have): V1000nk, R1000nk and Geminilakenk.
It only works in DSM 7.2.1 and later on models with a Broadwellnkv2, Broadwell, Purley, Epyc7002 CPU.
It does **NOT** work for models with Apollolake, Avoton or Denverton CPUs.
Please [leave a comment in this discussion](https://github.com/007revad/Synology_enable_Deduplication/discussions/31) if it works, or doesn't work, for you.
### Requirements
- Btrfs Tiny Data Deduplication requires 4GB of memory or more.
- Btrfs Data Deduplication requires 16GB of memory or more.
- The volume needs **Usage detail analysis** enabled. See [Enable and View Usage Details](https://kb.synology.com/en-global/DSM/help/DSM/StorageManager/volume_view_usage?version=7).
### Works in DSM 7.2.1 and 7.2.2 for the following models
<details>
<summary>Click here to see list</summary>
| Model | CPU Arch | DSM version | Works | Notes |
|------------|---------------|-------------------------------|--------|-------|
| DS224+ | Geminilake | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| DS1823xs+ | V1000 | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| DS923+ | R1000 | DSM 7.2.2-72806 Update 2 | yes | Use v1.2.14 or later |
| DS923+ | R1000 | DSM 7.3-81180 | yes | Use v1.2.14 or later |
| DS923+ | R1000 | DSM 7.2.2-72806 | yes | Use v1.2.14 or later |
| DS923+ | R1000 | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| DS723+ | R1000 | DSM 7.2.2-72806 Update 3 | yes | Use v1.2.14 or later |
| DS723+ | R1000 | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| DS423+ | Geminilake | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| DS3622xs+ | Broadwellnk | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| DS2422xs+ | V1000 | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| DS1821+ | V1000 | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| DS1621+ | V1000 | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| DS1621xs+ | Broadwellnk | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| DS1522+ | R1000 | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| DS1520+ | Geminilake | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| DS920+ | Geminilake | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| DS720+ | Geminilake | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| DS420+ | Geminilake | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| DS220+ | Geminilake | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| DS3018xs | Broadwellnk | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| DS3017xsII | Broadwell | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| DS3017xs | Broadwell | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| | | | | |
| DVA1622 | Geminilake | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| | | | | |
| RS2423xs+ | V1000 | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| RS822xs+ | V1000 | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| RS422xs+ | R1000 | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| RS4021xs+ | Broadwellnk | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| RS3621RPxs | Broadwellnk | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| RS3621xs+ | Broadwellnk | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| RS2821RPxs+ | V1000 | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| RS2421xs+ | V1000 | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| RS1221xs+ | V1000 | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| RS1619xs+ | Broadwellnk | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| RS3618xs | Broadwell | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| RS3617xs+ | Broadwell | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| RS3617RPxs | Broadwell | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| RS18017xs+ | Broadwell | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| RS4017xs+ | Broadwell | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| | | | | |
| FS6400 | Purley | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| FS3600 | Broadwellnk | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| FS3410 | Broadwellnkv2 | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| FS3400 | Broadwell | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| FS2500 | V1000 | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| FS2017 | Broadwell | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| FS1018 | Broadwellnk | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| | | | | |
| HD6500 | Purley | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| | | | | |
| SA6400 | Epyc7002 | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| SA3610 | Broadwellnkv2 | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| SA3600 | Broadwellnk | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| SA3410 | Broadwellnkv2 | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
| SA3400 | Broadwellnk | DSM 7.2.1-69057 Update 1 to 5 | yes | Use v1.2.14 or later |
</details>
### Models confirmed working with older DSM versions
<details>
<summary>Click here to see list</summary>
| Model | CPU Arch | DSM version | Works | Notes |
|------------|---------------|-------------------------------|--------|-------|
| DS923+ | R1000 | DSM 7.2-64570 Update 1 to 3 | yes | |
| DS923+ | R1000 | DSM 7.2-64570 | yes | |
| DS3622xs+ | Broadwellnk | DSM 7.2-64570 | **No** | Update to DSM 7.2.1 |
| DS3622xs+ | Broadwellnk | DSM 7.2-64561 | yes | |
| DS3622xs+ | Broadwellnk | DSM 7.1.1-42962 Update 1 | **No** | Update to DSM 7.2.1 |
| RS4021xs+ | Broadwellnk | DSM 7.2-64570 | **No** | Update to DSM 7.2.1 |
| RS4021xs+ | Broadwellnk | DSM 7.1.1-42962 Update 2 | yes | |
| DS1821+ | V1000 | DSM 7.2-64570 Update 1 to 3 | yes | |
| DS1821+ | V1000 | DSM 7.2-64570 | yes | |
| DS1821+ | V1000 | DSM 7.2-64561 | yes | |
| DS1821+ | V1000 | DSM 7.1.1-42962 Update 4 | yes | |
| DS1621xs+ | Broadwellnk | DSM 7.2-64570 Update 3 | yes | |
| DS1621xs+ | Broadwellnk | DSM 7.2-64570 | yes | |
| DS920+ | Geminilake | DSM 7.2-64570 Update 1 to 3 | yes | |
| DS920+ | Geminilake | DSM 7.2-64570 | yes | |
| DS720+ | Geminilake | DSM 7.2-64570 Update 1 to 3 | yes | |
| DS720+ | Geminilake | DSM 7.2-64570 | yes | |
| DS3617xs | Broadwell | | **No** | Update to DSM 7.2.1 |
| | | | | |
| | Apollolake | | **No** | DSM missing many required files |
| | Avoton | | **No** | DSM missing many required files |
| | Denverton | | **No** | DSM missing many required files |
</details>
## Download the script
1. Download the latest version _Source code (zip)_ from https://github.com/007revad/Synology_enable_Deduplication/releases
2. Save the download zip file to a folder on the Synology.
3. Unzip the zip file.
## How to run the script
### Running the script via SSH
[How to enable SSH and login to DSM via SSH](https://kb.synology.com/en-global/DSM/tutorial/How_to_login_to_DSM_with_root_permission_via_SSH_Telnet)
**Note:** Replace /volume1/scripts/ with the path to where the script is located.
Run the script then reboot the Synology:
```YAML
sudo -s /volume1/scripts/syno_enable_dedupe.sh
```
**Options:**
```YAML
-c, --check Check value in file and backup file
-r, --restore Undo all changes made by the script
-t, --tiny Enable tiny data deduplication (only needs 4GB RAM)
DSM 7.2.1 and later only
--hdd Enable data deduplication for HDDs.
Can cause files to become more fragmented,
resulting in decreased access performance.
-e, --email Disable colored text in output for scheduler emails
--autoupdate=AGE Auto update script (useful when script is scheduled)
AGE is how many days old a release must be before
auto-updating. AGE must be a number: 0 or greater
-s, --skip Skip memory amount check (for testing)
-h, --help Show this help message
-v, --version Show the script version
```
**Extra Steps:**
To get rid of <a href="images/notification.png">drive database outdated</a> notifications and <a href=images/before_running_syno_hdd_db.png>unrecognised firmware</a> warnings run <a href=https://github.com/007revad/Synology_HDD_db>Synology_HDD_db</a> which will add your drives to DSM's compatibile drive databases, and prevent the drive compatability databases being updated between DSM updates.
```YAML
sudo -s /path-to-script/syno_hdd_db.sh --noupdate
```
### What about DSM updates?
After any DSM update you will need to run this script, and the Synology_HDD_db script again.
### Schedule the script to run at shutdown
Or you can schedule both Synology_enable_Deduplication and Synology_HDD_db to run when the Synology shuts down, to avoid having to remember to run both scripts after a DSM update.
See <a href=how_to_schedule.md/>How to schedule a script in Synology Task Scheduler</a>
<br>
## Screenshots
Here's the result after running the script and rebooting. Note that the DS1821+ is not officially listed as supporting deduplication, and non-Synology SSDs are being used.
<p align="center">Unsupported NAS model with enough memory</p>
<p align="center"><img src="/images/0_ds1821+.png"></p>
<p align="center">Non-Synology SSDs setup as a volume</p>
<p align="center"><img src="/images/1_ds1821+_dedupe_nvmes.png"></p>
<p align="center">Enable Data Deduplication option available after running this script and rebooting</p>
<p align="center"><img src="/images/3_ds1821+_dedupe_option_enabled.png"></p>
<p align="center">Configure Data Deduplication</p>
<p align="center"><img src="/images/4_ds1821+_dedupe_configure.png"></p>
<p align="center">Deduplication finished notification</p>
<p align="center"><img src="/images/5b_ds1821+_dedupe_notification.png"></p>
<p align="center">Deduplications works.</p>
<p align="center"><img src="/images/6b_ds1821+_dedupe_works.png"></p>
<p align="center">Deduplication for HDDs too.</p>
<p align="center"><img src="/images/hdd_dedupe.png"></p>
|
train_000.parquet/737
|
{
"file_path": "README.md",
"repo_id": "007revad/Synology_enable_Deduplication",
"size": 13226,
"token_count": 5583
}
|
# How to schedule a script in Synology Task Scheduler
To schedule a script to run on your Synology at boot-up or shutdown follow these steps:
**Note:** You can setup a schedule task and leave it disabled, so it only runs when you select the task in the Task Scheduler and click on the Run button.
1. Go to **Control Panel** > **Task Scheduler** > click **Create** > and select **Triggered Task**.
2. Select **User-defined script**.
3. Enter a task name.
4. Select **root** as the user (The script needs to run as root).
5. Select **Shutdown** as the event that triggers the task.
6. Leave **Enable** ticked.
7. Click **Task Settings**.
8. Optionally you can tick **Send run details by email** and **Send run details only when the script terminates abnormally** then enter your email address.
9. In the box under **User-defined script** type the path to the script.
- e.g. If you saved the script to a shared folder on volume1 called "scripts" you'd type: **/volume1/scripts/syno_enable_dedupe.sh**
11. Click **OK** to save the settings.
Here's some screenshots showing what needs to be set:
<p align="leftr"><img src="images/schedule1.png"></p>
<p align="leftr"><img src="images/schedule2b.png"></p>
<p align="leftr"><img src="images/schedule3.png"></p>
|
train_000.parquet/738
|
{
"file_path": "how_to_schedule.md",
"repo_id": "007revad/Synology_enable_Deduplication",
"size": 1266,
"token_count": 396
}
|
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/font-awesome.css" />
<link rel="stylesheet" type="text/css" href="css/download-dialog.css" />
</head>
<body>
<div id="add-download" class="modal fade" data-keyboard="false" autocomplete="off">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 class="modal-title" data-message="dialogAdvancedTitle"></h3>
</div>
<div class="modal-body row">
<form class="col-md-6">
<div class="form-group">
<label class="control-label" for="urls" data-message="dialogAdvancedLblUrls"></label>
<textarea class="form-control"
id="urls"
data-bind="value: urls, event: { input: setUrlsTextareaHeight, change: extractUrls }"
data-attr-message="placeholder|dialogAdvancedTooltipUrls"
required></textarea>
</div>
<div class="form-group">
<label class="control-label" for="username" data-message="dialogAdvancedLblUsername"></label>
<input class="form-control" type="text" id="username"
data-bind="value: username"
data-attr-message="placeholder|dialogAdvancedTooltipUsername">
</div>
<div class="form-group">
<label class="control-label" for="password" data-message="dialogAdvancedLblPassword"></label>
<div class="input-group">
<input class="form-control" type="password" id="password"
data-bind="value: password"
data-attr-message="placeholder|dialogAdvancedTooltipPassword">
<span class="input-group-btn">
<button class="btn btn-default" data-toggle-show-password="password" tabindex="-1">
<i class="fa fa-eye"></i>
</button>
</span>
</div>
</div>
<div class="form-group">
<label class="control-label" for="unzip-password" data-message="dialogAdvancedLblUnzipPassword"></label>
<div class="input-group">
<input class="form-control" type="password" id="unzip-password"
data-bind="value: unzipPassword"
data-attr-message="placeholder|dialogAdvancedLblUnzipPassword,data-content|dialogAdvancedTooltipUnzipPassword">
<span class="input-group-btn">
<button class="btn btn-default" data-toggle-show-password="unzip-password" tabindex="-1">
<i class="fa fa-eye"></i>
</button>
</span>
</div>
</div>
</form>
<!-- Folder selection -->
<div class="col-md-6">
<label class="control-label" data-message="dialogAdvancedLblDestinationFolder"></label>
<div class="alert alert-warning"
data-bind="visible: customDestinationFolderSupported() === false">
Your Download Station package version does not support destination folder selection.
</div>
<!-- ko if: customDestinationFolderSupported() !== false -->
<div class="checkbox">
<label>
<input type="checkbox" data-bind="checked: useCustomDestinationFolder, disabled: customDestinationFolderSupported() == null" checked>
<span data-message="dialogAdvancedCheckboxDestinationFolder"></span>
</label>
</div>
<div class="folder-selection" data-bind="click: enableCustomDestinationFolder, css: { disabled: !useCustomDestinationFolder() }">
<div class="folder-selection-overlay"></div>
<ul class="breadcrumb folderpath" data-bind="foreach: folderPath">
<li data-bind="click: $root.setCurrentFolder, attr: { title: path }">
<!-- ko if: $data.path() == $root.currentFolder().path() -->
<span>
<i class="fa fa-home fa-fw" data-bind="visible: !parentFolder"></i>
<span data-bind="visible: parentFolder, text: name"></span>
</span>
<!-- /ko -->
<!-- ko if: $data.path() != $root.currentFolder().path() -->
<a href="#" data-bind="visible: $data.path() != $root.currentFolder().path()">
<i class="fa fa-home fa-fw" data-bind="visible: !parentFolder"></i>
<span data-bind="visible: parentFolder, text: name"></span>
</a>
<!-- /ko -->
</li>
</ul>
<!-- Current folder contents -->
<div class="file-list" data-bind="with: currentFolder">
<div class="list-group">
<!-- ko with: parentFolder -->
<!--a href="#" class="list-group-item list-group-item-info" data-bind="click: $root.setCurrentFolder, attr: { title: path }">
<i class="fa fa-fw fa-level-up fa-flip-horizontal"></i>
<span data-bind="text: name"></span>
</a-->
<!-- /ko -->
<!-- ko if: loadingFolders -->
<span class="list-group-item list-group-item-warning">
<i class="fa fa-fw fa-spinner fa-spin"></i>
<span data-message="dialogAdvancedFolderSelectionLoadingFolders"></span>
</span>
<!-- /ko -->
<!-- ko if: !loadingFolders() && !errorMessage() && folders().length == 0 -->
<span class="list-group-item list-group-item-warning">This folder does not contain any subfolders</span>
<!-- /ko -->
<!-- ko if: !loadingFolders() && errorMessage -->
<span class="list-group-item list-group-item-danger error-message">
<i class="fa fa-fw fa-exclamation-triangle"></i>
<span data-bind="text: errorMessage"></span>
</span>
<!-- /ko -->
<!-- ko foreach: folders -->
<a href="#" class="list-group-item" data-bind="click: $root.setCurrentFolder, attr: { title: path }, css: { 'list-group-item-danger': remove.confirm(), editing: name.editing }">
<i class="fa fa-fw fa-folder-o"></i>
<i class="fa fa-fw fa-folder-open-o"></i>
<!-- ko if: !name.editing() -->
<span class="text-label" data-bind="text: name"></span>
<!-- ko if: !remove.confirm() -->
<!--button data-bind="visible: !$parent.readOnly(), click: remove, clickBubble: false"
class="btn btn-xs btn-link pull-right hover-button">
<i class="fa fa-fw fa-trash-o"></i>
</button-->
<button data-bind="visible: !$parent.readOnly(), click: rename, clickBubble: false"
class="btn btn-xs btn-link pull-right hover-button">
<i class="fa fa-fw fa-pencil"></i>
</button>
<!-- /ko -->
<!-- ko if: remove.confirm() -->
<button data-bind="click: removeCancel, clickBubble: false, disable: remove.removing"
class="btn btn-xs btn-link pull-right">
<i class="fa fa-fw fa-times"></i>
</button>
<button data-bind="click: removeConfirm, clickBubble: false, disable: remove.removing, bsTooltip: { visible: remove.error, title: remove.error, viewport: '#folder-list' }"
class="btn btn-xs btn-link pull-right">
<i class="fa fa-fw fa-check"></i>
</button>
<!-- /ko -->
<!-- /ko -->
<!-- ko if: name.editing() -->
<input data-bind="value: name.unsaved, valueUpdate: 'input', hasFocus: name.focus, disable: name.saving, bsTooltip: { visible: name.error, title: name.error, viewport: '#folder-list' }, event: {keyup: renameKeyUp }" type="text" />
<button data-bind="click: renameCancel, clickBubble: false, disable: name.saving,"
class="btn btn-xs btn-link pull-right">
<i class="fa fa-fw fa-times"></i>
</button>
<button data-bind="click: renameSave, clickBubble: false, disable: name.saving,"
class="btn btn-xs btn-link pull-right">
<i class="fa fa-fw fa-check"></i>
</button>
<!-- /ko -->
</a>
<!-- /ko -->
</div>
</div>
<div class="row" data-bind="visible: !currentFolder().readOnly() && !currentFolder().errorMessage()">
<div class="col-xs-12">
<form class="input-group" data-bind="submit: createNewFolder, css: { 'has-error': newFolderName() && !newFolderNameValid() }">
<input data-bind="value: newFolderName, valueUpdate: 'input', attr: { disabled: newFolderSubmitting() }" type="text" class="form-control" placeholder="New folder name" maxlength="255" />
<span class="input-group-btn">
<button class="btn btn-primary" type="submit" data-bind="click: createNewFolder, attr: { disabled: !newFolderNameValid() || newFolderSubmitting() }">
<i class="fa fa-fw fa-plus" data-bind="visible: !newFolderSubmitting()"></i>
<i class="fa fa-fw fa-spinner fa-spin" data-bind="visible: newFolderSubmitting()"></i>
<span>Create folder</span>
</button>
</span>
</form>
<div class="alert alert-danger" data-bind="visible: newFolderErrorMessage, text: newFolderErrorMessage"></div>
</div>
</div>
<div class="alert alert-danger" data-bind="visible: useCustomDestinationFolder() && !currentFolder().loadingFolders() && !currentFolder().errorMessage() && currentFolder().readOnly">The current folder is read-only. It can't be used as a destination folder.</div>
</div>
<!-- /ko -->
</div>
</div>
<div class="modal-footer">
<span data-bind="visible: submitDownloadError(), text: submitDownloadError" class="text-danger"></span>
<!-- <button type="button" class="btn btn-danger" data-dismiss="modal" data-message="dialogAdvancedBtnCancel"></button> -->
<button data-bind="click: submitDownload, attr: { disabled: !formValid() || submittingDownload() }"
type="button"
class="btn btn-primary">
<i data-bind="visible: !submittingDownload()" class="fa fa-fw fa-plus"></i>
<i data-bind="visible: submittingDownload()" class="fa fa-fw fa-spinner fa-spin"></i>
<span data-message="dialogAdvancedBtnAddDownload"></span>
</button>
</div>
</div>
</div>
</div>
<script src="js/variables.js"></script>
<script src="js/lib/jquery.js"></script>
<script src="js/lib/jquery.deparam.js"></script>
<script src="js/lib/bootstrap.min.js"></script>
<script src="js/lib/knockout.js"></script>
<script src="js/browser-functions.js"></script>
<script src="js/download-dialog.js"></script>
</body>
</html>
|
train_000.parquet/739
|
{
"file_path": "download-dialog.html",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 11354,
"token_count": 5320
}
|
## All my scripts, tools and guides
<img src="https://hitscounter.dev/api/hit?url=https%3A%2F%2F007revad.github.io%2F&label=Visitors&icon=github&color=%23198754&message=&style=flat&tz=UTC">
#### Contents
- [Plex](#plex)
- [Synology docker](#synology-docker)
- [Synology recovery](#synology-recovery)
- [Other Synology scripts](#other-synology-scripts)
- [Synology hardware restrictions](#synology-hardware-restrictions)
- [2025 plus models](#2025-plus-models)
- [How To Guides](#how-to-guides)
- [Synology dev](#synology-dev)
***
### Plex
- **<a href="https://github.com/007revad/Synology_Plex_Backup">Synology_Plex_Backup</a>**
- A script to backup Plex to a tgz file foror DSM 7 and DSM 6.
- Works for Plex Synology package and Plex in docker.
- **<a href="https://github.com/007revad/Asustor_Plex_Backup">Asustor_Plex_Backup</a>**
- Backup your Asustor's Plex Media Server settings and database.
- **<a href="https://github.com/007revad/Linux_Plex_Backup">Linux_Plex_Backup</a>**
- Backup your Linux Plex Media Server's settings and database.
- **<a href="https://github.com/007revad/Plex_Server_Sync">Plex_Server_Sync</a>**
- Sync your main Plex server database & metadata to a backup Plex server.
- Works for Synology, Asustor, Linux and supports Plex package or Plex in docker.
[Back to Contents](#contents)
### Synology docker
- **<a href="https://github.com/007revad/Synology_Docker_Export">Synology_Docker_export</a>**
- Export all Synology Container Manager or Docker containers' settings as json files to your docker shared folder.
- **<a href="https://github.com/007revad/Synology_ContainerManager_IPv6">Synology_ContainerManager_IPv6</a>**
- Enable IPv6 for Container Manager's bridge network.
- **<a href="https://github.com/007revad/ContainerManager_for_all_armv8">ContainerManager_for_all_armv8</a>**
- Script to install Container Manager on a RS819, DS119j, DS418, DS418j, DS218, DS218play or DS118.
- **<a href="https://github.com/007revad/Docker_Autocompose">Docker_Autocompose</a>**
- Create .yml files from your docker existing containers.
- **<a href="https://github.com/007revad/Synology_docker_cleanup">Synology_docker_cleanup</a>**
- Remove orphan docker btrfs subvolumes and images in Synology DSM 7 and DSM 6.
[Back to Contents](#contents)
### Synology recovery
- **<a href="https://github.com/007revad/Synology_DSM_reinstall">Synology_DSM_reinstall</a>**
- Easily re-install the same DSM version without losing any data or settings.
- **<a href="https://github.com/007revad/Synology_Recover_Data">Synology_Recover_Data</a>**
- A script to make it easy to recover your data from your Synology's drives using a computer.
- **<a href="https://github.com/007revad/Synology_clear_drive_error">Synology clear drive error</a>**
- Clear drive critical errors so DSM will let you use the drive.
- **<a href="https://github.com/007revad/Synology_DSM_Telnet_Password">Synology_DSM_Telnet_Password</a>**
- Synology DSM Recovery Telnet Password of the Day generator.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/Synoboot_backup">Synoboot_backup</a>**
- Back up synoboot after each DSM update so you can recover from a corrupt USBDOM.
[Back to Contents](#contents)
### Other Synology scripts
- **<a href="https://github.com/007revad/Synology_app_mover">Synology_app_mover</a>**
- Easily move Synology packages from one volume to another volume.
- **<a href="https://github.com/007revad/Video_Station_for_DSM_722">Video_Station_for_DSM_722</a>**
- Script to install Video Station in DSM 7.2.2
- **<a href="https://github.com/007revad/SS_Motion_Detection">SS_Motion_Detection</a>**
- Installs previous Surveillance Station and Advanced Media Extensions versions so motion detection and HEVC are supported.
- **<a href="https://github.com/007revad/Synology_Config_Backup">Synology_Config_Backup</a>**
- Backup and export your Synology DSM configuration.
- **<a href="https://github.com/007revad/Synology_CPU_temperature">Synology_CPU_temperature</a>**
- Get and log Synology NAS CPU temperature via SSH.
- **<a href="https://github.com/007revad/Synology_SMART_info">Synology_SMART_info</a>**
- Show Synology smart test progress or smart health and attributes.
- **<a href="https://github.com/007revad/Synology_Cleanup_Coredumps">Synology_Cleanup_Coredumps</a>**
- Cleanup memory core dumps from crashed processes.
- **<a href="https://github.com/007revad/Synology_toggle_reset_button">Synology_toggle_reset_button</a>**
- Script to disable or enable the reset button and show current setting.
- **<a href="https://github.com/007revad/Synology_Download_Station_Chrome_Extension">Synology_Download_Station_Chrome_Extension</a>**
- Download Station Chrome Extension.
- **<a href="https://github.com/007revad/Seagate_lowCurrentSpinup">Seagate_lowCurrentSpinup</a>**
- This script avoids the need to buy and install a higher wattage power supply when using multiple large Seagate SATA HDDs.
[Back to Contents](#contents)
### Synology hardware restrictions
- **<a href="https://github.com/007revad/Synology_HDD_db">Synology_HDD_db</a>**
- Add your SATA or SAS HDDs and SSDs plus SATA and NVMe M.2 drives to your Synology's compatible drive databases, including your Synology M.2 PCIe card and Expansion Unit databases.
- **<a href="https://github.com/007revad/Synology_enable_M2_volume">Synology_enable_M2_volume</a>**
- Enable creating volumes with non-Synology M.2 drives.
- Enable Health Info for non-Synology NVMe drives (not in DSM 7.2.1 or later).
- **<a href="https://github.com/007revad/Synology_M2_volume">Synology_M2_volume</a>**
- Easily create an M.2 volume on Synology NAS.
- **<a href="https://github.com/007revad/Synology_enable_M2_card">Synology_enable_M2_card</a>**
- Enable Synology M.2 PCIe cards in Synology NAS that don't officially support them.
- **<a href="https://github.com/007revad/Synology_enable_eunit">Synology_enable_eunit</a>**
- Enable an unsupported Synology eSATA Expansion Unit models.
- **<a href="https://github.com/007revad/Synology_enable_Deduplication">Synology_enable_Deduplication</a>**
- Enable deduplication with non-Synology SSDs and unsupported NAS models.
- **<a href="https://github.com/007revad/Synology_SHR_switch">Synology_SHR_switch</a>**
- Easily switch between SHR and RAID Groups, or enable RAID F1.
- **<a href="https://github.com/007revad/Synology_enable_sequential_IO">Synology_enable_sequential_IO</a>**
- Enables sequential I/O for your SSD caches, like DSM 6 had.
- **<a href="https://github.com/007revad/Synology_Information_Wiki">Synology_Information_Wiki</a>**
- Information about Synology hardware.
[Back to Contents](#contents)
### 2025 plus models
- **<a href="https://github.com/007revad/Transcode_for_x25">Transcode_for_x25</a>**
- Installs the modules needed for Plex or Jellyfin hardware transcoding in DS425+ and DS225+.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md">2025 series or later Plus models</a>**
- Unverified 3rd party drive limitations and unofficial solutions.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#setting-up-a-new-2025-or-later-plus-model-with-only-unverified-hdds">Setup with only 3rd party drives</a>**
- Setting up a new 2025 or later plus model with only unverified HDDs.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#deleting-and-recreating-your-storage-pool-on-unverified-hdds">Recreating storage pool on migrated drives</a>**
- Deleting and recreating your storage pool on unverified HDDs.
[Back to Contents](#contents)
### How To Guides
- **<a href="https://github.com/007revad/Synology_SSH_key_setup">Synology_SSH_key_setup</a>**
- How to setup SSH key authentication for your Synology.
[Back to Contents](#contents)
### Synology dev
- **<a href="https://github.com/007revad/Download_Synology_Archive">Download_Synology_Archive</a>**
- Download all or part of the Synology archive.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/ScriptNotify">ScriptNotify</a>**
- DSM 7 package to allow your scripts to send DSM notifications.
- **<a href="https://github.com/007revad/DTC_GUI_for_Windows">DTC_GUI_for_Windows</a>**
- GUI for DTC.exe for Windows.
[Back to Contents](#contents)
|
train_000.parquet/740
|
{
"file_path": "my-other-scripts.md",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 9099,
"token_count": 3421
}
|
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">License</h3>
</div>
<div class="modal-body">
<p>THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS
OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR
"LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER
APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS
AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS
PROHIBITED.</p>
<p>BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU
ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE.
TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A
CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE
IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND
CONDITIONS.</p>
<p><strong>1. Definitions</strong></p>
<ol type="a">
<li><strong>"Adaptation"</strong> means a work based upon
the Work, or upon the Work and other pre-existing works,
such as a translation, adaptation, derivative work,
arrangement of music or other alterations of a literary
or artistic work, or phonogram or performance and
includes cinematographic adaptations or any other form in
which the Work may be recast, transformed, or adapted
including in any form recognizably derived from the
original, except that a work that constitutes a
Collection will not be considered an Adaptation for the
purpose of this License. For the avoidance of doubt,
where the Work is a musical work, performance or
phonogram, the synchronization of the Work in
timed-relation with a moving image ("synching") will be
considered an Adaptation for the purpose of this
License.</li>
<li><strong>"Collection"</strong> means a collection of
literary or artistic works, such as encyclopedias and
anthologies, or performances, phonograms or broadcasts,
or other works or subject matter other than works listed
in Section 1(f) below, which, by reason of the selection
and arrangement of their contents, constitute
intellectual creations, in which the Work is included in
its entirety in unmodified form along with one or more
other contributions, each constituting separate and
independent works in themselves, which together are
assembled into a collective whole. A work that
constitutes a Collection will not be considered an
Adaptation (as defined above) for the purposes of this
License.</li>
<li><strong>"Distribute"</strong> means to make available
to the public the original and copies of the Work through
sale or other transfer of ownership.</li>
<li><strong>"Licensor"</strong> means the individual,
individuals, entity or entities that offer(s) the Work
under the terms of this License.</li>
<li><strong>"Original Author"</strong> means, in the case
of a literary or artistic work, the individual,
individuals, entity or entities who created the Work or
if no individual or entity can be identified, the
publisher; and in addition (i) in the case of a
performance the actors, singers, musicians, dancers, and
other persons who act, sing, deliver, declaim, play in,
interpret or otherwise perform literary or artistic works
or expressions of folklore; (ii) in the case of a
phonogram the producer being the person or legal entity
who first fixes the sounds of a performance or other
sounds; and, (iii) in the case of broadcasts, the
organization that transmits the broadcast.</li>
<li><strong>"Work"</strong> means the literary and/or
artistic work offered under the terms of this License
including without limitation any production in the
literary, scientific and artistic domain, whatever may be
the mode or form of its expression including digital
form, such as a book, pamphlet and other writing; a
lecture, address, sermon or other work of the same
nature; a dramatic or dramatico-musical work; a
choreographic work or entertainment in dumb show; a
musical composition with or without words; a
cinematographic work to which are assimilated works
expressed by a process analogous to cinematography; a
work of drawing, painting, architecture, sculpture,
engraving or lithography; a photographic work to which
are assimilated works expressed by a process analogous to
photography; a work of applied art; an illustration, map,
plan, sketch or three-dimensional work relative to
geography, topography, architecture or science; a
performance; a broadcast; a phonogram; a compilation of
data to the extent it is protected as a copyrightable
work; or a work performed by a variety or circus
performer to the extent it is not otherwise considered a
literary or artistic work.</li>
<li><strong>"You"</strong> means an individual or entity
exercising rights under this License who has not
previously violated the terms of this License with
respect to the Work, or who has received express
permission from the Licensor to exercise rights under
this License despite a previous violation.</li>
<li><strong>"Publicly Perform"</strong> means to perform
public recitations of the Work and to communicate to the
public those public recitations, by any means or process,
including by wire or wireless means or public digital
performances; to make available to the public Works in
such a way that members of the public may access these
Works from a place and at a place individually chosen by
them; to perform the Work to the public by any means or
process and the communication to the public of the
performances of the Work, including by public digital
performance; to broadcast and rebroadcast the Work by any
means including signs, sounds or images.</li>
<li><strong>"Reproduce"</strong> means to make copies of
the Work by any means including without limitation by
sound or visual recordings and the right of fixation and
reproducing fixations of the Work, including storage of a
protected performance or phonogram in digital form or
other electronic medium.</li>
</ol>
<p><strong>2. Fair Dealing Rights.</strong> Nothing in this
License is intended to reduce, limit, or restrict any uses
free from copyright or rights arising from limitations or
exceptions that are provided for in connection with the
copyright protection under copyright law or other
applicable laws.</p>
<p><strong>3. License Grant.</strong> Subject to the terms
and conditions of this License, Licensor hereby grants You
a worldwide, royalty-free, non-exclusive, perpetual (for
the duration of the applicable copyright) license to
exercise the rights in the Work as stated below:</p>
<ol type="a">
<li>to Reproduce the Work, to incorporate the Work into
one or more Collections, and to Reproduce the Work as
incorporated in the Collections; and,</li>
<li>to Distribute and Publicly Perform the Work including
as incorporated in Collections.</li>
<li>
<p>For the avoidance of doubt:</p>
<ol type="i">
<li><strong>Non-waivable Compulsory License
Schemes</strong>. In those jurisdictions in which the
right to collect royalties through any statutory or
compulsory licensing scheme cannot be waived, the
Licensor reserves the exclusive right to collect such
royalties for any exercise by You of the rights
granted under this License;</li>
<li><strong>Waivable Compulsory License
Schemes</strong>. In those jurisdictions in which the
right to collect royalties through any statutory or
compulsory licensing scheme can be waived, the
Licensor waives the exclusive right to collect such
royalties for any exercise by You of the rights
granted under this License; and,</li>
<li><strong>Voluntary License Schemes</strong>. The
Licensor waives the right to collect royalties,
whether individually or, in the event that the
Licensor is a member of a collecting society that
administers voluntary licensing schemes, via that
society, from any exercise by You of the rights
granted under this License.</li>
</ol>
</li>
</ol>
<p>The above rights may be exercised in all media and
formats whether now known or hereafter devised. The above
rights include the right to make such modifications as are
technically necessary to exercise the rights in other media
and formats, but otherwise you have no rights to make
Adaptations. Subject to Section 8(f), all rights not
expressly granted by Licensor are hereby reserved.</p>
<p><strong>4. Restrictions.</strong> The license granted in
Section 3 above is expressly made subject to and limited by
the following restrictions:</p>
<ol type="a">
<li>You may Distribute or Publicly Perform the Work only
under the terms of this License. You must include a copy
of, or the Uniform Resource Identifier (URI) for, this
License with every copy of the Work You Distribute or
Publicly Perform. You may not offer or impose any terms
on the Work that restrict the terms of this License or
the ability of the recipient of the Work to exercise the
rights granted to that recipient under the terms of the
License. You may not sublicense the Work. You must keep
intact all notices that refer to this License and to the
disclaimer of warranties with every copy of the Work You
Distribute or Publicly Perform. When You Distribute or
Publicly Perform the Work, You may not impose any
effective technological measures on the Work that
restrict the ability of a recipient of the Work from You
to exercise the rights granted to that recipient under
the terms of the License. This Section 4(a) applies to
the Work as incorporated in a Collection, but this does
not require the Collection apart from the Work itself to
be made subject to the terms of this License. If You
create a Collection, upon notice from any Licensor You
must, to the extent practicable, remove from the
Collection any credit as required by Section 4(b), as
requested.</li>
<li>If You Distribute, or Publicly Perform the Work or
Collections, You must, unless a request has been made
pursuant to Section 4(a), keep intact all copyright
notices for the Work and provide, reasonable to the
medium or means You are utilizing: (i) the name of the
Original Author (or pseudonym, if applicable) if
supplied, and/or if the Original Author and/or Licensor
designate another party or parties (e.g., a sponsor
institute, publishing entity, journal) for attribution
("Attribution Parties") in Licensor's copyright notice,
terms of service or by other reasonable means, the name
of such party or parties; (ii) the title of the Work if
supplied; (iii) to the extent reasonably practicable, the
URI, if any, that Licensor specifies to be associated
with the Work, unless such URI does not refer to the
copyright notice or licensing information for the Work.
The credit required by this Section 4(b) may be
implemented in any reasonable manner; provided, however,
that in the case of a Collection, at a minimum such
credit will appear, if a credit for all contributing
authors of the Collection appears, then as part of these
credits and in a manner at least as prominent as the
credits for the other contributing authors. For the
avoidance of doubt, You may only use the credit required
by this Section for the purpose of attribution in the
manner set out above and, by exercising Your rights under
this License, You may not implicitly or explicitly assert
or imply any connection with, sponsorship or endorsement
by the Original Author, Licensor and/or Attribution
Parties, as appropriate, of You or Your use of the Work,
without the separate, express prior written permission of
the Original Author, Licensor and/or Attribution
Parties.</li>
<li>Except as otherwise agreed in writing by the Licensor
or as may be otherwise permitted by applicable law, if
You Reproduce, Distribute or Publicly Perform the Work
either by itself or as part of any Collections, You must
not distort, mutilate, modify or take other derogatory
action in relation to the Work which would be prejudicial
to the Original Author's honor or reputation.</li>
</ol>
<p><strong>5. Representations, Warranties and
Disclaimer</strong></p>
<p>UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN
WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO
REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE
WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING,
WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,
FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE
ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE
PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE.
SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED
WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.</p>
<p><strong>6. Limitation on Liability.</strong> EXCEPT TO
THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL
LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY
SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY
DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK,
EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.</p>
<p><strong>7. Termination</strong></p>
<ol type="a">
<li>This License and the rights granted hereunder will
terminate automatically upon any breach by You of the
terms of this License. Individuals or entities who have
received Collections from You under this License,
however, will not have their licenses terminated provided
such individuals or entities remain in full compliance
with those licenses. Sections 1, 2, 5, 6, 7, and 8 will
survive any termination of this License.</li>
<li>Subject to the above terms and conditions, the
license granted here is perpetual (for the duration of
the applicable copyright in the Work). Notwithstanding
the above, Licensor reserves the right to release the
Work under different license terms or to stop
distributing the Work at any time; provided, however that
any such election will not serve to withdraw this License
(or any other license that has been, or is required to
be, granted under the terms of this License), and this
License will continue in full force and effect unless
terminated as stated above.</li>
</ol>
<p><strong>8. Miscellaneous</strong></p>
<ol type="a">
<li>Each time You Distribute or Publicly Perform the Work
or a Collection, the Licensor offers to the recipient a
license to the Work on the same terms and conditions as
the license granted to You under this License.</li>
<li>If any provision of this License is invalid or
unenforceable under applicable law, it shall not affect
the validity or enforceability of the remainder of the
terms of this License, and without further action by the
parties to this agreement, such provision shall be
reformed to the minimum extent necessary to make such
provision valid and enforceable.</li>
<li>No term or provision of this License shall be deemed
waived and no breach consented to unless such waiver or
consent shall be in writing and signed by the party to be
charged with such waiver or consent.</li>
<li>This License constitutes the entire agreement between
the parties with respect to the Work licensed here. There
are no understandings, agreements or representations with
respect to the Work not specified here. Licensor shall
not be bound by any additional provisions that may appear
in any communication from You. This License may not be
modified without the mutual written agreement of the
Licensor and You.</li>
<li>The rights granted under, and the subject matter
referenced, in this License were drafted utilizing the
terminology of the Berne Convention for the Protection of
Literary and Artistic Works (as amended on September 28,
1979), the Rome Convention of 1961, the WIPO Copyright
Treaty of 1996, the WIPO Performances and Phonograms
Treaty of 1996 and the Universal Copyright Convention (as
revised on July 24, 1971). These rights and subject
matter take effect in the relevant jurisdiction in which
the License terms are sought to be enforced according to
the corresponding provisions of the implementation of
those treaty provisions in the applicable national law.
If the standard suite of rights granted under applicable
copyright law includes additional rights not granted
under this License, such additional rights are deemed to
be included in the License; this License is not intended
to restrict the license of any rights under applicable
law.</li>
</ol>
</div>
|
train_000.parquet/741
|
{
"file_path": "license.html",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 16989,
"token_count": 4869
}
|
# Changelog
## 3.0.15
- Moved Icon-xx.png images to images folder
## 3.0.14
- Removed Analytics that 15 out 65 virus scanners flagged as a Trojan
## 2.2.13
- Resolved JavaScript error in SVG documents
- Removed social media buttons from options page
- Internal changes for compatibility with future browser versions
- Improved error handling when signing in with an account without Download Station permissions
## 2.2.12
- Resolved an issue causing JavaScript errors in the Chrome developer tools.
- Improved device name detection
- Small bugfixes
## 2.2.11
- Session conflicts with the extension and DSM 6.0 have been resolved. You can now use a different user in DSM without being signed out by the extension.
- Bugfixes
## 2.2.10
- DSM 6.0 beta 2 compatibility
- Fixed a Safari issue where the extension could open links to websites or the settings page in an existing pinned tab instead of a new tab
## 2.2.9
- Improved compatibility with the Synology Router (RT1900AC)
- Safari extension signed with a new certificate
## 2.2.8
- Improved error handling when the user doesn't have permissions for the Download Station package
- Added changelog to the settings page
- Prevent Safari from showing a message about unsaved changes when the settings page is closed
- Opening the Download Station web interface now also works with DSM 6.0
- Removing downloads and clearing all finished downloads now works with DSM 6.0
## 2.2.7
- Fixed an issue with user accounts that do not have File Station permissions. The issue caused a "Permission denied" error after opening the "Download advanced" dialog. File Station permissions are required if you want to select a destination folder.
- Other small bugfixes
## 2.2.6
- Removed YouTube video and playlist download buttons to comply with Chrome Web Store policies.
- Improved compatibility with rutracker
## 2.2.5
- Fixed an issue that caused the selected destination folder to be ignored when adding a .torrent or .nzb file.
## 2.2.4
- Added error message for time-outs
- Fixed disappearing settings button in popover in Safari 7 (this was caused by a bug in Safari)
## 2.2.3
- Fixed an issue where the option page became unresponsive when testing/saving connection settings that do not point to a Synology device
## 2.2.2
- Improved DSM version detection for DSM 3.0 - 4.1
- Better error message for unsupported DSM versions
- Added message to settings page about the supported DSM versions
## 2.2.1
- Changes to comply with Opera store
## 2.2.0
- Dropped support for DSM version 4.1 and older.
- The extension now uses DSM's encryption API to encrypt your username and password when logging in. This also applies when you use the extension without SSL (HTTPS).
- The extension will not wake your DiskStation anymore if you disable background status updates. The extension will appear as disconnected after 30 seconds of inactivity.
- Select a destination folder for your download when using the "advanced" option in the context menu.
- Create new folders on your DiskStation (when selecting a destination folder)
- You can now see the ETA for downloads, based on the current download speed and progress
- Background refresh settings moved to the "Connection" tab of the settings page
- New icon and updated design (Bootstrap 3)
- Show the notification for finished torrents after downloading has finished (not after seeding)
- Improved support for torrent URL's that have GET-parameters
- Added Japanese, Slovak and Ukrainian translations
- Fixed an issue where the YouTube button could disappear when navigating between pages on YouTube.
- Fixed an issue that could cause the finished downloads counter to remain visible after the connection to the device was lost.
## 2.1.8
- YouTube download button updated for new YouTube layout
- The extension can now handle download URL's containing a comma
## 2.1.7
- Fixed an issue where in certain cases the finished tasks counter would not be removed from the toolbar button when the connection to the device is lost.
- Improved compatibility with Chrome 38 (keep in mind that the extension may not work properly in pre-release versions of Chrome, use the stable version of Chrome for best compatibility)
## 2.1.6
- Fixed desktop notifications for recent Chrome versions
## 2.1.5
- Replaced Serbian translation with a translation in the cyrillic alphabet
- Fixed small interface bug when the pop-up contains 100 downloads
- Fixed an issue that could cause the dialog from opening behind website content on some websites
- Removed Flattr button from settings page
- Added Reddit sharing button to settings page
## 2.1.4
- Fixed YouTube button for videos with an ID that start with a "-"
- Added Finnish, Slovak and Serbian translation
- Updated the existing translations
## 2.1.3
- Fixed disappearing YouTube button
- Added error message "No destination folder set"
- Show "download finished" notification based on download percentage instead of task status "finished"
## 2.1.2
- Improved DSM 5.0 beta support
## 2.1.1
- Support for the latest DSM 4.3 update
## 2.1.0
- Advanced downloading dialog
- HTTP/FTP username and password
- Unzip password
- Preview of URL's that will be submitted (especially useful when adding multiple links from a selection)
- Fixed an issue that could cause the download button on YouTube to disappear when switching to another video
- Limit the maximum number of visible downloads to 100 to reduce performance impact
- New translations: Arabic, Czech, Indonesian, Korean, Portuguese, Turkish
- Updated the other translations
## 2.0.5
- Fixed an issue that could cause the extensions session to be shared with the users browser session
## 2.0.4
- Correctly determine DSM version number for DSM 4.3
- Added a link to the FAQ-page to the settings page
- Added Brazilian, Chinese and Taiwanese translations
- Updated Danish, Norwegian, Dutch, Russian and Swedish translations
## 2.0.3
- Added Danish, German, Hungarian, Norwegian, Polish, Russian, Spanish and Swedish translation
- Dropped support for settings sync in Chrome because many users like to have different settings on their devices
- Password field on settings page not required
- Better naming of uploaded torrents/nzb's that don't have a correct filename in their URL (/download.php?id=1)
- Show correct icon in Safari toolbar when opening a new window
- Fix for "Adding task" message not disappearing when adding torrent/nzb task
- Fixed sorting of tasks (sorted by date added)
- Small performance/efficiency improvements
## 2.0.2
- Bug fixes for old Chrome versions
## 2.0.1
- Fix for saving settings in older Chrome versions
## 2.0
- Support for the official Download Station API
- Fallback to the Download Redirector API for old devices (DSM < 4.2)
- Redesigned pop-up
- Google Chrome: Settings are synced with your Google account
- Safari: Settings are stored in the secure storage space for extensions
- Pop-up shows the progress of seeding torrents (share ratio)
- Confirm deletion of download tasks
- Buttons to pause/resume all tasks
- The pop-up shows the name of your DiskStation
- Torrents and NZB files are uploaded directly to Download Station
- Toolbar icon indicates if the extension is connected to Download Station
- Download button for YouTube playlists (DSM 4.2 and newer)
- Full support for magnet torrents (DSM 4.2 and newer)
- Magnet, Thunder, QQDL and Emule links are opened with the extension by default (you can change this behaviour in your settings)
- Contextmenu-item will be disabled (Chrome) or hidden (Safari) if the extension is not connected to Download Station
- Added license information to settings page
- Removed the in-page buttons from the Piratebay and Isohunt because magnet links can now be opened with the extension
- Total download/upload speed in the pop-up
- Italian translation
## 1.6.2
- Support for DSM 4.2 beta
- Icon in YouTube button
## 1.6.1
- Fixed the YouTube download button for the new YouTube website
- Added status text for "unpacking" (status 10)
## 1.6.0
- French translation (Thanks to 'secretliar' from the Synology forum!)
- Updated to Chrome Extension manifest version 2
- Fixed a bug that caused all connection tests to fail for usernames that contain a space
- Other minor bug fixes and styling fixes for the new French translation
## 1.5.8
- Private tracker support for Safari 6
- Updated to remove usage of old and deprecated API's
## 1.5.7
- Added missing status message
- Minor translation and bug fixes
## 1.5.6
- Improved support for torrents from The Piratebay
## 1.5.5
- Fixed missing icon in Chrome desktop notifications
## 1.5.4
- Download button on isoHunt.com
- Hide tasks immediately when removing or clearing
- New toolbar icon for Safari
- Last version with support for Chrome 17 and older, update if you are still using an old version!
- Dutch translation for the settings page
## 1.5.3
- Tested with DSM 4.1 beta
- Notification Center support for OS X 10.8 Mountain Lion
- Fixed missing icon in notifications in Safari on OS X 10.7 and older
## 1.5.2
- Added Torcache.net as source for torrent files for magnet links
- Fixed a bug that caused every failed task to show the same error message in stead of more specific errors
## 1.5.0 & 1.5.1
- More responsive status pop-up
- Animations in pop-up (progress bar, adding/removing tasks)
- Smoother adjustment of the pop-up height in Safari when adding/removing tasks
- Updated the Piratebay button for changes on their site
- Visual feedback when a tasks is being submitted to Download Station
- More detailed error messages when a task can't be added
- New option to disable uploading of torrents to a temporary location (disabling will disable support for private trackers)
- Minor bug fixes
## 1.4.6
- Fix for problems with torrent URL's that contain parameters
## 1.4.5
- Support for private torrent sites! The extension will upload the torrent to a temporary location from where Download Station grabs the torrent file. Uploads are deleted after 10 minutes from the temporary location.
- More efficient communication with Download Station.
## 1.4.4
- Added a button to the options page to test your settings
- Hiding YouTube download button if you have a DSM version older than 3.2
- Minor bugfixes
## 1.4.3
- Added support for multiple links
- Updated icons
- Fixed an issue that could cause the pop-up to become unresponsive in Safari
## 1.4.2
- Added partial magnet support using zoink.it.
## 1.4.0
- Bug fixes
## 1.3.0
- Fixed button on thepiratebay.org
- Added button on MegaUpload download page
|
train_000.parquet/742
|
{
"file_path": "changelog.md",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 10568,
"token_count": 2854
}
|
<!DOCTYPE HTML>
<html>
<head>
<title>Synology Download Station extension settings</title>
<meta charset="utf-8" />
<meta name="twitter:widgets:csp" content="on">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/font-awesome.css" />
<link rel="stylesheet" type="text/css" href="css/options.css" />
<script src="js/variables.js"></script>
<script src="js/lib/jquery.js"></script>
<script src="js/lib/bootstrap.min.js"></script>
<script src="js/lib/showdown.min.js"></script>
<script src="js/browser-functions.js"></script>
<script src="js/options.js"></script>
</head>
<body>
<div class="container">
<h1><img src="Icon-128.png" alt="" style="width: 64px; height: 64px;" /> Synology Download Station</h1>
<a id="donate-button" href="#" target="_blank"><img src="css/img/btn_donate.gif" alt="Donate" /></a>
<hr />
<div class="alert alert-warning">
<strong>Important:</strong> This extension only supports DSM 4.2 and later. Is your device running an older DSM version? Please check <a href="https://www.synology.com/support/download" target="_blank">Synology.com</a> to see if you can update your DSM version or download an old version of this extension from <a href="https://www.download-station-extension.com/" target="_blank">download-station-extension.com</a>.
</div>
<div class="tabbable tabs-left">
<ul id="menu" class="nav nav-tabs" style="margin-top: 40px; height: 450px;">
<li class="active"><a href="#connection" data-toggle="tab" data-message="settingsGroupConnection"></a></li>
<li><a href="#other-settings" data-toggle="tab" data-message="settingsGroupOther"></a></li>
<li><a href="https://www.download-station-extension.com/faq" target="_blank">FAQ <i class="fa fa-external-link"></i></a></li>
<li><a href="#about" data-toggle="tab" data-message="settingsGroupHelp"></a></li>
<li><a href="#changelog" data-toggle="tab">Changelog</a></li>
</ul>
<div class="tab-content">
<form id="connection" class="tab-pane fade in active form-horizontal" autocomplete="off">
<fieldset>
<legend data-message="settingsGroupConnection"></legend>
<div class="form-group row hidden">
<div class="col-sm-offset-3 col-sm-9 btn-group">
<button id="disableQuickConnect" type="button" class="btn btn-default">Manual connection</button>
<button id="enableQuickConnect" type="button" class="btn btn-default">
<span>QuickConnect</span>
<span class="label label-warning">Experimental</span>
</button>
</div>
</div>
<!--div id="quickconnect-settings" style="display: none;">
<div class="form-group row">
<label class="control-label col-sm-3" for="quickConnectId">QuickConnect ID</label>
<div class="col-sm-6">
<input class="form-control" type="text" id="quickConnectId" name="quickConnectId" placeholder="QuickConnect ID" required />
</div>
</div>
</div-->
<div id="manual-settings">
<div class="form-group row">
<label class="control-label col-sm-3" data-message="lblProtocol"></label>
<div class="col-sm-2" data-attr-message="title|lblProtocol,data-content|tooltipProtocol">
<div class="radio">
<label><input type="radio" name="protocol" value="http://" required> HTTP</label>
</div>
<div class="radio">
<label><input type="radio" name="protocol" value="https://" required> HTTPS</label>
</div>
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-3" for="url" data-message="lblDomain"></label>
<div class="col-sm-6">
<input class="form-control" type="text" id="url" name="url" data-attr-message="placeholder|placeholderDomain,title|lblDomain,data-content|tooltipDomain" />
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-3" for="port" data-message="lblPort"></label>
<div class="col-sm-2">
<input class="form-control" type="text" id="port" name="port" value="5000" data-attr-message="title|lblPort,data-content|tooltipPort" />
</div>
</div>
</div>
<hr>
<div class="form-group row">
<label class="control-label col-sm-3" for="username" data-message="lblUsername"></label>
<div class="col-sm-6">
<input class="form-control" type="text" id="username" name="username" required data-attr-message="title|lblUsername,data-content|tooltipUsername" />
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-3" for="password" data-message="lblPassword"></label>
<div class="col-sm-6">
<input class="form-control" type="password" id="password" name="password" autocomplete="off" />
</div>
</div>
<hr>
<div class="form-group row">
<div class="col-sm-offset-3 col-sm-9">
<div class="checkbox">
<label>
<input type="checkbox" id="updateInBackground" name="updateInBackground" checked />
<span data-message="lblUpdateInBackground"></span>
</label>
</div>
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-3" for="backgroundUpdateInterval" data-message="lblRefreshInterval"></label>
<div class="col-sm-2">
<input class="form-control" type="number" id="backgroundUpdateInterval" name="backgroundUpdateInterval" value="20" min="5" max="10000" step="5" required />
</div>
</div>
<div class="form-group row">
<div class="col-sm-offset-3 col-sm-9">
<button class="btn btn-default" id="test-connection" type="button">
<i class="fa fa-flask"></i><i class="fa fa-spinner fa-spin" style="display: none;"></i> <span data-message="btnTestConnection"></span>
</button>
<button class="btn btn-primary" type="submit">
<i class="fa fa-save"></i><i class="fa fa-spinner fa-spin" style="display: none;"></i> <span data-message="btnSaveSettings"></span>
</button>
</div>
</div>
</fieldset>
</form>
<form class="tab-pane fade in form-horizontal" id="other-settings">
<fieldset>
<legend data-message="settingsGroupOther"></legend>
<div class="form-group row">
<div class="col-sm-offset-3 col-sm-9">
<div class="checkbox">
<label>
<input type="checkbox" id="hideSeedingTorrents" name="hideSeedingTorrents" />
<span data-message="lblHideSeedingTorrents"></span>
</label>
</div>
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-3" for="email" data-message="lblEmail"></label>
<div class="col-sm-6">
<div class="input-group">
<span class="input-group-addon">
<i id="email-addon" class="fa fa-envelope-o fa-fw"></i>
<i id="email-addon-checking" class="hidden fa fa-spinner fa-spin fa-fw"></i>
<i id="email-addon-success" class="hidden fa fa-check fa-fw"></i>
</span>
<input class="form-control" type="email" id="email" name="email" data-attr-message="title|lblEmail,data-content|tooltipEmail" placeholder="Email address used for donation" />
</div>
<span id="email-check-failed" class="hidden help-block text-warning">A donation with your email address could not be found. You can find the correct address in your confirmation email. Haven't received the confirmation yet? It can sometimes take a while for PayPal or Bitcoin to process the payment. You can check the status in your PayPal account.</span>
</div>
</div>
<div class="form-group row">
<label class="control-label col-sm-3" data-message="lblOpenWithDownloadStation"></label>
<div class="col-sm-6">
<span class="help-block" data-message="tooltipOpenWithDownloadStation"></span>
<div class="checkbox">
<label><input type="checkbox" name="openProtocols" value="magnet:?" /> Magnet torrents (magnet:?)</label>
</div>
<div class="checkbox">
<label><input type="checkbox" name="openProtocols" value="ed2k://" /> Emule (ed2k://)</label>
</div>
<div class="checkbox">
<label><input type="checkbox" name="openProtocols" value="thunder://" /> Thunder (thunder://)</label>
</div>
<div class="checkbox">
<label><input type="checkbox" name="openProtocols" value="flashget://" /> Flashget (flashget://)</label>
</div>
<div class="checkbox">
<label><input type="checkbox" name="openProtocols" value="qqdl://" /> QQDL (qqdl://)</label>
</div>
</div>
</div>
<div class="form-group row">
<div class="col-sm-offset-3 col-sm-9">
<button class="btn btn-primary">
<i class="fa fa-save"></i> <span data-message="btnSaveSettings"></span>
</button>
</div>
</div>
</fieldset>
</form>
<div class="tab-pane fade in" id="about">
<fieldset>
<legend data-message="settingsGroupHelp"></legend>
<p>If you've got questions, bugs to report or requests for new features, please contact me via the Synology forum. You can use <a href="http://forum.synology.com/enu/viewtopic.php?f=10&t=39713" target="_blank">this topic</a> for the Safari version and <a href="http://forum.synology.com/enu/viewtopic.php?f=10&t=44074" target="_blank">this topic</a> for the Google Chrome version of the extension. Please check the <a href="https://www.download-station-extension.com/faq" target="_blank">FAQ-section</a> before posting your question!</p>
<h4>Translation</h4>
<p>Special thanks to the following people for translating this extension:</p>
<div class="row">
<ul class="col-sm-6 list-unstyled">
<li><strong>Arabic:</strong> <a href="https://www.linkedin.com/in/laithsaid" target="_blank">Laith Said</a></li>
<li><strong>Brazilian Portuguese:</strong> Iury Russowsky</li>
<li><strong>Chinese:</strong> Redtank</li>
<li><strong>Finnish:</strong> Seppo Mäki-Torkko</li>
<li><strong>French:</strong> <a href="https://www.linkedin.com/in/romainarquilliere" target="_blank">Romain Arquillière</a></li>
<li><strong>German:</strong> Jonah</li>
<li><strong>Hungarian:</strong> Fabon Imre</li>
<li><strong>Italian:</strong> <a href="http://www.turbino.net" target="_blank">Walter</a></li>
</ul>
<ul class="col-sm-6 list-unstyled">
<li><strong>Japanese:</strong> Takagi Yasuyuki</li>
<li><strong>Polish:</strong> Mikhnal</li>
<li><strong>Portuguese:</strong> Luis Faria</li>
<li><strong>Serbian:</strong> Djura Topalov</li>
<li><strong>Spanish:</strong> <a href="https://unamenos.wordpress.com" target="_blank">Unamenos</a></li>
<li><strong>Swedish:</strong> Henrik Malinowski</li>
<li><strong>Taiwanese:</strong> Noah.Lu</li>
</ul>
</div>
<p>Have you found a mistake in the translation or do you want to help translating the extension into your language? Check <a href="http://www.download-station-extension.com/translate" target="_blank">this website</a> for more information.</p>
<h4>License info</h4>
<p>This work is licensed under a <a rel="license" href="https://creativecommons.org/licenses/by-nd/3.0/">Creative Commons Attribution-NoDerivs 3.0 Unported License</a> (<a data-toggle="modal" href="license.html" data-target="#license-modal">full license text</a>).</p>
<p>This extension uses the following open-source projects:</p>
<ul>
<li><a href="https://jquery.com/" target="_blank">jQuery</a></li>
<li><a href="http://knockoutjs.com/" target="_blank">Knockout</a></li>
<li><a href="http://getbootstrap.com/" target="_blank">Bootstrap</a></li>
<li><a href="http://fontawesome.io/" target="_blank">Font Awesome</a></li>
<li><a href="https://github.com/showdownjs/showdown" target="_blank">Showdown</a></li>
<li><a href="http://www.typescriptlang.org/" target="_blank">TypeScript</a></li>
</ul>
</fieldset>
</div>
<div class="tab-pane fade in" id="changelog">
<fieldset id="changelog-content"></fieldset>
</div>
</div>
</div>
<div class="text-center muted"><small>Version <span id="about-extension-version"></span></small></div>
</div>
<div id="license-modal" class="modal fade out" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content"></div>
</div>
</div>
</body>
</html>
|
train_000.parquet/743
|
{
"file_path": "options.html",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 12971,
"token_count": 5861
}
|
<h1><img src="images/Icon-128.png" alt="" style="width: 64px; height: 64px;" /> Synology Download Station Chrome Extension</h1>
<a href="https://github.com/007revad/Synology_Download_Station_Chrome_Extension/releases"><img src="https://img.shields.io/github/release/007revad/Synology_HDD_db.svg"></a>
[](https://github.com/007revad/Synology_Download_Station_Chrome_Extension/releases)

[](https://user-badge.committers.top/australia/007revad)
### Download Station Extension for Chrome Browser
Adapted from the original work done by LuukD
- https://www.download-station-extension.com/
- https://community.synology.com/enu/forum/1/post/35906
The Safari and Opera versions are [still available](https://www.download-station-extension.com/). But the Chrome extension is no longer available from the Google App Store.
The only changes I've made are to remove the analytics that virus scanners saw as a trojan, and updated the version number.
<br>
**Note:** Chrome will show an error in chrome://extensions/ but it still works in April 2024.
- Manifest version 2 is deprecated, and support will be removed in 2023
I'm working on updating the extension to manifest v3... **July 2025 Update:** It was too hard to update to manifest v3.
<br>
### How to install the extension
1. Enter `chrome://flags` in chrome’s address bar and press Enter.
2. Search for `Allow legacy extension manifest versions`
- 2025 update: See https://www.reddit.com/r/synology/comments/1c5tq2r/comment/nf5ofxw/
4. Enable it and click on the Relaunch button.
5. Download the latest [DownloadStation_Chrome_Extension.zip](https://github.com/007revad/Synology_Download_Station_Chrome_Extension/releases) file.
6. Unpack the DownloadStation_Chrome_Extension.zip archive. Remember the location of the "Synology_Download_Station" folder.
7. Open the Extensions page by either:
- Type `chrome://extensions` in chrome's address bar, or
- Click on the extensions icon > Manage Extensions, or
- Use the menu: ⋮ > Extensions > Manage Extensions.
8. Enable "Developer Mode" on the top right.
9. Select "Load unpacked" option.
10. Find the unpacked extension's folder "Synology_Download_Station".
11. Open the folder.
12. That's it. You can find the extension on the chrome://extensions page.
|
train_000.parquet/744
|
{
"file_path": "README.md",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 2688,
"token_count": 935
}
|
<!DOCTYPE HTML>
<html>
<head>
<title></title>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/font-awesome.css" />
<link rel="stylesheet" href="css/popover.css" />
</head>
<body class="load ltr">
<div data-bind="visible: downloadStationConfigured()">
<h2>
<span data-bind="text: deviceName"></span>
<div class="buttons device-buttons">
<i class="fa fa-fw fa-trash-o" role="button"
data-bind="visible: loggedIn && finishedTasks().length > 0, click: clearFinishedTasks, attr: { title: localizedString('btnClearQueue') }, css: { disabled: clearingFinishedTasks() }"></i>
<i class="fa fa-fw fa-pause" role="button"
data-bind="visible: loggedIn && pausebleTasks().length > 0, click: pauseAll, attr: { title: localizedString('btnPauseAll') }"></i>
<i class="fa fa-fw fa-play" role="button"
data-bind="visible: loggedIn && resumebleTasks().length > 0, click: resumeAll, attr: { title: localizedString('btnResumeAll') }"></i>
<i class="fa fa-fw fa-plus" role="button"
data-bind="visible: loggedIn, click: toggleTaskForm, attr: { title: localizedString('btnAddTask') }"></i>
<i class="fa fa-fw fa-external-link open-webinterface" role="button"
data-bind="visible: downloadStationConfigured() && fullUrl() != null, click: openDownloadStation, attr: { title: localizedString('btnOpenDownloadStation') }"></i>
</div>
</h2>
<form class="new-task" data-bind="submit: addTask, css: { error: newTaskErrorMessage() != null, disabled: formDisabled() }" novalidate>
<div class="overlay"></div>
<div class="input-group">
<input class="form-control url-input" type="url" data-bind="value: urlInput, valueUpdate: 'input', attr: { placeholder: localizedString('urlInputPlaceholder') }" />
<span class="input-group-btn">
<button class="btn btn-default" type="submit" data-bind="text: localizedString('urlFormAddBtn'), enable: urlInputValue()"></button>
</span>
</div>
<div class="alert alert-danger" data-bind="text: newTaskErrorMessage, visible: newTaskErrorMessage"></div>
</form>
<ul class="list-unstyled tasks" data-bind="visible: loggedIn, template: {foreach: visibleTasks, beforeRemove: hideTaskElement, afterAdd: showTaskElement}">
<li data-bind="visible: visible">
<h3>
<span data-bind="text: title"></span>
</h3>
<div class="task-status">
<div class="progress" data-bind="css: progressBarStripedClass()">
<div class="progress-bar" data-bind="style: { width: progress() }, css: progressBarClass()"></div>
</div>
<div class="row">
<div class="col-xs-10 progress-text">
<span data-bind="text: progressText(), attr { title: progressText() }"></span>
</div>
<div class="col-xs-2">
<div class="buttons">
<i data-bind="click: toggleConfirmRemove, attr: { title: $root.localizedString('btnRemove') }" class="fa fa-times" role="button"></i>
<i data-bind="click: pause, css: { disabled: pausing }, visible: pauseButtonVisible(), attr: { title: $root.localizedString('btnPause') }" class="fa fa-pause" role="button"></i>
<i data-bind="click: resume, css: { disabled: resuming } , visible: resumeButtonVisible(), attr: { title: $root.localizedString('btnResume') }" class="fa fa-play" role="button"></i>
<i data-bind="click: resume, css: { disabled: resuming } , visible: status() == 'finished' && (type() == 'bt' || type() == null), attr: { title: $root.localizedString('btnStartSeeding') }" class="fa fa-play" role="button"></i>
</div>
</div>
</div>
</div>
<div class="confirm-delete">
<div class="btn-group">
<button data-bind="click: toggleConfirmRemove, text: $root.localizedString('btnCancel')" class="btn btn-xs btn-default"></button>
<button data-bind="click: remove, text: $root.localizedString('btnRemove')" class="btn btn-xs btn-danger"></button>
</div>
</div>
</li>
</ul>
<div class="block-message" style="font-size: 1.2em; border-top: 0.1em solid rgba(0,0,0,0.05);" data-bind="visible: tasks().length > 100">
<p data-bind="text: maxNumberOfTasksWarning()"></p>
<button class="btn btn-block btn-sm btn-success" data-bind="visible: finishedTasks().length > 0, click: clearFinishedTasks, attr: { disabled: clearingFinishedTasks() }">
<i class="fa fa-trash-o" data-bind="visible: !clearingFinishedTasks()"></i>
<i class="fa fa-spinner fa-spin" data-bind="visible: clearingFinishedTasks()"></i>
<span data-bind="text: localizedString('btnClearQueue')"></span>
</button>
</div>
<div class="block-message" data-bind="visible: statusMessage() == null && loggedIn() && visibleTasks().length == 0, text: localizedString('noActiveTasks')"></div>
<div class="block-message" data-bind="visible: statusMessage() != null, html: statusMessageLocalized()"></div>
</div>
<div class="block-message clickable" data-bind="visible: downloadStationConfigured() == false, text: localizedString('clickToConfigure'), click: openSettings" role="button"></div>
<div class="footer" data-bind="visible: statusMessage() == null && loggedIn() && downloadStationConfigured()">
<span dir="ltr" class="total-rate" data-bind="visible: visibleTasks().length > 0">
<i class="fa fa-arrow-down"></i> <span data-bind="text: totalDownloadSpeedString()"></span>
<i class="fa fa-arrow-up"></i> <span data-bind="text: totalUploadSpeedString()"></span>
</span>
</div>
<i id="open-settings" data-bind="click: openSettings" class="icon-btn fa fa-cog" role="button"></i>
<script src="js/lib/jquery.js"></script>
<script src="js/lib/knockout.js"></script>
<script src="js/lib/knockout.mapping.js"></script>
<script src="js/variables.js"></script>
<script src="js/browser-functions.js"></script>
<script src="js/popover-taskmodel.js"></script>
<script src="js/popover-popovermodel.js"></script>
<script src="js/popover.js"></script>
</body>
</html>
|
train_000.parquet/745
|
{
"file_path": "popover.html",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 5988,
"token_count": 2429
}
|
/// <reference path="./lib/encryption.d.ts" />
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var DownloadStationAPI = (function (_super) {
__extends(DownloadStationAPI, _super);
function DownloadStationAPI(options) {
_super.call(this, options);
this._apiInfoFetched = false;
this._apiInfo = {
'SYNO.API.Info': {
minVersion: 1,
maxVersion: 1,
path: 'query.cgi'
}
};
this.fileStation = new FileStationAPI(this);
}
DownloadStationAPI.prototype._apiCall = function (apiName, apiMethod, apiVersion, params, callback, requestMethod, isUpload, retryOnError) {
var _this = this;
// Get QuickConnect connection details
if (this._settings.quickConnectId && (!this._settings.protocol || !this._settings.url || !this._settings.port)) {
this.getQuickConnectSettings(function (success, data) {
if (success) {
// Apply the settings found with QuickConnect
_this._settings.protocol = data.protocol;
_this._settings.url = data.url;
_this._settings.port = data.port;
_this.deviceInfo.fullUrl = data.protocol + data.url + ":" + data.port;
_this._apiCall(apiName, apiMethod, apiVersion, params, callback, requestMethod, isUpload, retryOnError);
}
else {
_this._setStatus(data);
_this.trigger({ type: 'ready', success: success, message: data });
if (typeof callback === "function") {
callback(success, data);
}
}
});
return;
}
if (!this._settings.protocol || !this._settings.url || !this._settings.port) {
callback(false, this._getErrorString(apiName, 0));
return;
}
if (this.deviceInfo.dsmVersion == null && apiName != "SYNO.DSM.Info" && apiName != "SYNO.API.Info" && apiName != 'SYNO.API.Encryption' && apiName != 'SYNO.API.Auth' && apiName != "SYNO.DownloadStation.Info") {
this._setStatus("connecting");
this.getDsmVersion(function (success, data) {
if (success) {
if (typeof data.version_string === "string" && data.version_string.indexOf("-") != -1) {
data.version_string = $.trim(data.version_string.split("-")[0].replace("DSM", "").replace("SRM", ""));
}
_this.deviceInfo.dsmVersion = data.version;
_this.deviceInfo.dsmVersionString = data.version_string;
_this.deviceInfo.modelName = data.model;
_this.trigger("deviceInfoUpdated");
_this._setStatus(null);
_this._apiCall(apiName, apiMethod, apiVersion, params, callback, requestMethod, isUpload, retryOnError);
}
else {
_this._setStatus(data);
_this.trigger({ type: 'ready', success: success, message: data });
if (typeof callback === "function") {
callback(success, data);
}
}
});
return;
}
if (this.deviceInfo.dsmVersion < 3100 && apiName != "SYNO.DSM.Info" && apiName != "SYNO.API.Info" && apiName != 'SYNO.API.Encryption' && apiName != 'SYNO.API.Auth' && apiName != "SYNO.DownloadStation.Info") {
callback(false, "dsmVersionTooOld");
return;
}
if (!this._apiInfoFetched && apiName != "SYNO.API.Info") {
this._setStatus("connecting");
this.getApiInfo(function (success, data) {
if (success) {
_this._setStatus(null);
_this._apiCall(apiName, apiMethod, apiVersion, params, callback, requestMethod, isUpload, retryOnError);
}
else {
_this._setStatus(data);
_this.trigger({ type: 'ready', success: success, message: data });
if (typeof callback === "function") {
callback(success, data);
}
}
});
return;
}
if (typeof (this._apiInfo[apiName]) === 'undefined') {
var message = this._getErrorString(apiName, 102);
callback(false, message);
return;
}
if (!this._sid && apiName != 'SYNO.API.Info' && apiName != 'SYNO.API.Encryption' && apiName != 'SYNO.API.Auth') {
this.login(function (success, data) {
if (success) {
_this._apiCall(apiName, apiMethod, apiVersion, params, callback, requestMethod, isUpload, retryOnError);
}
else {
_this._setStatus(data);
if (typeof callback === "function") {
callback(success, data);
}
}
_this.trigger({ type: 'ready', success: success, message: data });
});
return;
}
var path = this._apiInfo[apiName].path;
var isUpload = typeof isUpload === "boolean" ? isUpload : false;
var retryOnError = typeof retryOnError === "boolean" ? retryOnError : false;
var requestMethod = typeof requestMethod === "string" ? requestMethod : 'POST';
var apiUrl = this._settings.protocol + this._settings.url + ':' + this._settings.port + '/webapi/' + path;
var formData = new FormData();
var data = {
_sid: this._sid,
api: apiName,
version: apiVersion,
method: apiMethod
};
if (typeof params === 'object')
$.extend(data, params);
if (isUpload) {
for (var key in data) {
if ((data[key] instanceof DSFile) === false)
formData.append(key, data[key]);
}
// Files should always be at the end of the request
for (var key in data) {
if (data[key] !== null && data[key] instanceof DSFile) {
var file = data[key];
formData.append(key, file.getBlob(), file.filename);
}
}
}
var retryOnErrorFunction = function () {
_this.logout(function () {
_this.login(function (success, data) {
if (success !== true) {
callback(false, data);
}
else {
_this._apiCall(apiName, apiMethod, apiVersion, params, callback, requestMethod, isUpload, false);
}
});
});
};
return $.ajax({
type: requestMethod,
url: apiUrl,
dataType: 'json',
data: isUpload ? formData : data,
contentType: isUpload ? false : null,
processData: !isUpload,
timeout: 20000,
cache: false
})
.done(function (data) {
if (_this.connected === false && _this._sid) {
_this.connected = true;
_this.trigger("connected");
}
if (_this._sid && _this._settings.updateInBackground == false) {
clearTimeout(_this._disconnectTimeout);
_this._disconnectTimeout = setTimeout(function () {
if (_this.connected) {
_this.tasks = [];
_this.connected = false;
_this.trigger(["connectionLost", "tasksUpdated"]);
}
}, 30000);
}
// No permission for API, makes session invalid and requires a new login
if (data.success == false && data.error && data.error.code == 105) {
_this._apiInfoFetched = false;
_this._sid = null;
_this.deviceInfo.loggedIn = false;
_this.tasks = [];
_this.connected = false;
_this.trigger(["connectionLost", "tasksUpdated"]);
retryOnError = false;
}
if (typeof (callback) === 'function') {
if (data.success == true) {
callback(true, data.data);
}
else if (retryOnError === true && data.error && data.error.code < 400) {
// Login and retry
retryOnErrorFunction();
}
else if (retryOnError === true) {
// Retry without logging in
_this._apiCall(apiName, apiMethod, apiVersion, params, callback, requestMethod, isUpload, false);
}
else {
var errorcode;
if (typeof data === "undefined" || typeof data.error === "undefined" || typeof data.error.code == "undefined") {
errorcode = 0;
}
else {
errorcode = data.error.code;
}
var additionalErrors = data.error.errors;
var message = _this._getErrorString(apiName, errorcode);
if (Array.isArray(additionalErrors)) {
for (var i = 0; i < additionalErrors.length; i++) {
additionalErrors[i].message = _this._getErrorString(apiName, additionalErrors[i].code);
}
}
callback(false, message, additionalErrors);
}
}
})
.fail(function (xhr, textStatus, errorThrown) {
if (_this.connected) {
_this._apiInfoFetched = false;
_this._sid = null;
_this.deviceInfo.loggedIn = false;
_this.tasks = [];
_this.connected = false;
_this.trigger(["connectionLost", "tasksUpdated"]);
}
if (typeof (callback) === 'function') {
if (textStatus == "timeout") {
callback(false, "requestTimeout");
}
else {
callback(false, _this._getErrorString(apiName, 0));
}
}
});
};
DownloadStationAPI.prototype._getErrorString = function (apiName, errorCode) {
var generalErrors = {
0: 'couldNotConnect',
100: 'unknownError',
101: 'invalidParameter',
102: 'apiDoesNotExist',
103: 'methodDoesNotExist',
104: 'featureNotSupported',
105: 'permissionDenied',
106: 'sessionTimeout',
107: 'sessionInterrupted'
};
var apiErrors = {
'SYNO.API.Auth': {
400: 'invalidUsernameOrPassword',
401: 'accountDisabled',
402: 'permissionDenied',
403: 'twoStepVerificationCodeRequired',
404: 'failedToAuthenticateVerificationCode'
},
'SYNO.DownloadStation.Info': {},
'SYNO.DownloadStation.Task': {
400: 'fileUploadFailed',
401: 'maxNumberOfTasksReached',
402: 'destinationDenied',
403: 'destinationDoesNotExist',
404: 'invalidTaskId',
405: 'invalidTaskAction',
406: 'noDefaultDestinationSet',
407: 'setDestinationFailed',
408: 'fileDoesNotExist'
},
'SYNO.DownloadStation.Statistic': {},
'SYNO.DownloadStation.RSS.Site': {},
'SYNO.DownloadStation.RSS.Feed': {},
"SYNO.DownloadStation.BTSearch": {
400: "unknownError",
401: "invalidParameter",
402: "parseUserSettingsFailed",
403: "getCategoryFailed",
404: "getSearchResultFailed",
405: "getUserSettingsFailed"
},
"SYNO.FileStation": {
400: "invalidParameter",
401: "unknownError",
402: "systemIsTooBusy",
403: "fileOperationNotAllowedForUser",
404: "fileOperationNotAllowedForGroup",
405: "fileOperationNotAllowedForGroup",
406: "couldNotGetPermissionInformationFromAccountServer",
407: "fileStationOperationNotAllowed",
408: "noSuchFileOrDirectory",
409: "Non-supported file system",
410: "failedToConnectToNetworkFileSystem",
411: "readOnlyFileSystem",
412: "fileOrFolderNameTooLongNonEncrypted",
413: "fileOrFolderNameTooLongEncrypted",
414: "fileOrFolderAlreadyExists",
415: "diskQuotaExceeded",
416: "noSpaceOnDevice",
417: "fileStationIOError",
418: "fileStationIllegalNameOrPath",
419: "fileStationIllegalFileName",
420: "fileStationIllegalFileNameFAT",
421: "systemIsTooBusy",
599: "No such task of the file operation" // Not translated
},
"SYNO.FileStation.Delete": {
900: "Failed to delete file(s) or folder(s)." // Not translated
},
"SYNO.FileStation.CreateFolder": {
1100: "fileStationFailedToCreateFolder",
1101: "fileStationNumberOfFolderExceedsSystemLimitation"
},
"SYNO.FileStation.Rename": {
1200: "fileStationFailedToRename"
}
};
var message = generalErrors[errorCode];
if (!message) {
var apiNameArray = apiName.split(".");
while (apiNameArray.length > 0 && !message) {
var apiNamePart = apiNameArray.join(".");
if (typeof (apiErrors[apiNamePart]) === "object") {
message = apiErrors[apiNamePart][errorCode];
}
apiNameArray.pop();
}
}
return message ? message : 'unknownError';
};
DownloadStationAPI.prototype._createTaskObjects = function (dsTasks) {
dsTasks.sort(function (a, b) {
var timeStampA = parseInt(a.additional.detail.create_time);
var timeStampB = parseInt(b.additional.detail.create_time);
return (timeStampA < timeStampB) ? -1 : (timeStampA > timeStampB) ? 1 : 0;
});
var tasks = new Array();
for (var i = 0; i < dsTasks.length; i++) {
var task = dsTasks[i];
var taskTitle;
try {
taskTitle = decodeURIComponent(task.title);
}
catch (error) {
taskTitle = task.title;
}
var newTask = {
id: task.id,
type: task.type,
title: taskTitle,
size: parseInt(task.size),
sizeString: this._bytesToString(task.size),
status: task.status,
errorDetail: task.status == "error" && task.status_extra ? task.status_extra.error_detail : null,
downloadProgressString: ((parseInt(task.additional.transfer.size_downloaded) / parseInt(task.size)) * 100).toString() + "%",
unzipProgress: task.status == "extracting" && task.status_extra ? task.status_extra.unzip_progress : null,
unzipProgressString: task.status == "extracting" && task.status_extra && task.status_extra.unzip_progress ? task.status_extra.unzip_progress.toString() + "%" : null,
sizeDownloaded: parseInt(task.additional.transfer.size_downloaded),
sizeDownloadedString: this._bytesToString(parseInt(task.additional.transfer.size_downloaded)),
sizeUploaded: parseInt(task.additional.transfer.size_uploaded),
sizeUploadedString: this._bytesToString(parseInt(task.additional.transfer.size_uploaded)),
speedDownload: parseInt(task.additional.transfer.speed_download),
speedDownloadString: this._bytesToString(parseInt(task.additional.transfer.speed_download)) + "/s",
speedUpload: parseInt(task.additional.transfer.speed_upload),
speedUploadString: this._bytesToString(parseInt(task.additional.transfer.speed_upload)) + "/s"
};
newTask.uploadRatio = (parseInt(task.additional.transfer.size_uploaded) / parseInt(task.size)) * 100;
newTask.uploadRatioString = (Math.round(newTask.uploadRatio * 100) / 100).toString() + "%";
newTask.eta = null;
newTask.etaString = null;
if (!isNaN(newTask.speedDownload) && !isNaN(newTask.size) && !isNaN(newTask.sizeDownloaded)) {
var remaining = newTask.size - newTask.sizeDownloaded;
if (remaining > 0 && newTask.speedDownload > 0) {
newTask.eta = remaining / newTask.speedDownload;
newTask.etaString = secondsToStr(newTask.eta);
}
else if (remaining > 0) {
newTask.eta = null; // infinite
newTask.etaString = "8";
}
}
tasks.push(newTask);
}
return tasks;
};
DownloadStationAPI.prototype.getSupportedFeatures = function (callback) {
this.getApiInfo(function (success, data) {
var features = {
destinationFolder: false,
fileStationDelete: false
};
if (success) {
if (data['SYNO.DownloadStation.Task'] && data['SYNO.DownloadStation.Task'].minVersion <= 2
&& data['SYNO.DownloadStation.Task'].maxVersion >= 2
&& data['SYNO.FileStation.List']
&& data['SYNO.FileStation.List'].minVersion <= 1
&& data['SYNO.FileStation.List'].maxVersion >= 1) {
features.destinationFolder = true;
}
if (data['SYNO.FileStation.Delete'] && data['SYNO.FileStation.Delete'].minVersion >= 1
&& data['SYNO.FileStation.Delete'].maxVersion <= 1) {
features.fileStationDelete = true;
}
}
if (typeof callback === "function")
callback(features);
});
};
DownloadStationAPI.prototype.getApiInfo = function (callback) {
var _this = this;
var params = {
query: 'ALL'
};
if (this._apiInfoFetched === true) {
callback(true, this._apiInfo);
return;
}
this._apiCall('SYNO.API.Info', 'query', 1, params, function (success, data) {
if (success) {
// Check presence of required API's
if (typeof data['SYNO.API.Auth'] === 'object' && data['SYNO.API.Auth'].minVersion <= 2 && data['SYNO.API.Auth'].maxVersion >= 2 &&
typeof data['SYNO.DownloadStation.Info'] === 'object' && typeof data['SYNO.DownloadStation.Task'] === 'object' &&
typeof data['SYNO.DownloadStation.Schedule'] === 'object' && typeof data['SYNO.DownloadStation.Statistic'] === 'object') {
_this._apiInfo = data;
_this._apiInfoFetched = true;
}
else {
console.log("Not all required API's are supported at the required version.");
success = false;
data = 'requiredApisNotAvailable';
}
}
if (typeof callback === "function")
callback(success, data);
}, 'GET', false, false);
};
DownloadStationAPI.prototype.getDownloadStationApiInfo = function (callback) {
var _this = this;
this._apiCall('SYNO.DownloadStation.Info', 'getinfo', 1, null, function (success, data) {
if (success === true) {
_this._isManager = data.is_manager;
_this._version = data.version;
_this._versionString = data.version_string;
}
if (typeof callback === "function")
callback(success, data);
}, null, false, false);
};
DownloadStationAPI.prototype.getDownloadStationConfig = function (callback) {
this._apiCall("SYNO.DownloadStation.Info", "getconfig", 1, null, callback);
};
DownloadStationAPI.prototype.getDsmVersion = function (callback) {
var _this = this;
if (!this._settings.protocol || !this._settings.url || !this._settings.port) {
if (typeof callback === "function") {
callback(false, "couldNotConnect");
}
return;
}
var url = this._settings.protocol + this._settings.url + ":" + this._settings.port + "/webman/index.cgi";
$.ajax({
url: url,
dataType: "html",
timeout: 20000
})
.done(function (d) {
var result = {};
try {
var data = $(d);
var searchString = "SYNO.SDS.Session";
var sessionInfo = $.trim(data.filter("script:not([src])").filter(":contains(" + searchString + ")").first().text());
if (sessionInfo) {
sessionInfo = sessionInfo.replace("SYNO.SDS.Session = ", "").split("Ext.util.")[0];
sessionInfo = sessionInfo.replace(";", "");
var sessionInfoObj = JSON.parse(sessionInfo);
var deviceName = $.trim(sessionInfoObj.hostname);
if (deviceName.length > 0) {
_this.deviceInfo.deviceName = deviceName;
}
// DSM VERSION
// DSM <= 4.1
var scriptVersion = parseInt(data.filter('script[src]').first().attr('src').split('?v=').pop());
if (scriptVersion && scriptVersion < 3700) {
result.version = scriptVersion.toString();
result.version_string = _this._getDsmVersionString(scriptVersion);
}
else if (sessionInfoObj.fullversion) {
result.version = sessionInfoObj.fullversion.split("-")[0];
result.version_string = _this._getDsmVersionString(parseInt(result.version));
}
else if (sessionInfoObj.version) {
result.version = sessionInfoObj.version;
result.version_string = _this._getDsmVersionString(parseInt(result.version));
}
}
else {
var deviceName = data.filter("title").text().split(decodeURIComponent("-%C2%A0Synology"))[0].trim();
if (deviceName)
_this.deviceInfo.deviceName = deviceName;
}
}
catch (exception) {
}
// DSM 5.0+
if (!result.version || parseInt(result.version) > 4000) {
_this.getApiInfo(function (success, data) {
if (!success) {
callback(false, data);
return;
}
var dsmInfoApi = data['SYNO.DSM.Info'];
if (dsmInfoApi.maxVersion == 1)
_this._apiCall('SYNO.DSM.Info', 'getinfo', 1, null, callback);
else
_this._apiCall('SYNO.DSM.Info', 'getinfo', 2, null, callback);
});
}
else if (typeof callback === "function") {
callback(true, result);
}
})
.fail(function (xhr, textStatus, errorThrown) {
if (typeof (callback) === 'function') {
if (textStatus == "timeout") {
callback(false, "requestTimeout");
}
else {
callback(false, _this._getErrorString(null, 0));
}
}
});
};
DownloadStationAPI.prototype.login = function (callback) {
var _this = this;
var clientTime = Math.floor((new Date()).getTime() / 1000);
var params = {
account: this._settings.username,
passwd: this._settings.password,
format: 'sid',
session: "DownloadStation",
client_time: clientTime,
timezone: getGMTOffset(new Date())
};
this._setStatus("loggingIn");
this._apiCall("SYNO.API.Encryption", "getinfo", 1, { format: "module" }, function (success, data) {
if (success) {
var cipherKey = data.cipherkey;
var rsaModulus = data.public_key;
var cipherToken = data.ciphertoken;
var timeBias = data.server_time - Math.floor(+new Date() / 1000);
var encryptedParams = SYNO.Encryption.EncryptParam(params, cipherKey, rsaModulus, cipherToken, timeBias);
encryptedParams.client_time = clientTime;
params = encryptedParams;
}
var authApiInfo = _this._apiInfo['SYNO.API.Auth'];
var authApiVersion = 2;
if (authApiInfo.maxVersion >= 4) {
authApiVersion = 4;
}
_this._apiCall('SYNO.API.Auth', 'login', authApiVersion, params, function (success, data) {
if (success) {
_this._sid = data.sid;
_this.getDownloadStationApiInfo(function (dsApiSuccess, dsApiData) {
if (dsApiSuccess) {
_this.loadTasks(function (tasksSuccess, tasksData) {
if (tasksSuccess) {
_this.deviceInfo.loggedIn = true;
_this._setStatus(null);
_this.trigger("loginStatusChange");
}
else {
_this.deviceInfo.loggedIn = false;
_this._setStatus(tasksData);
_this.trigger("loginStatusChange");
}
if (typeof callback === 'function')
callback(tasksSuccess, tasksData);
});
}
else {
_this._sid = null;
_this.deviceInfo.loggedIn = false;
_this._setStatus(data);
_this.trigger("loginStatusChange");
if (typeof callback === 'function')
callback(dsApiSuccess, dsApiData);
}
});
}
else {
_this.deviceInfo.loggedIn = false;
_this._setStatus(data);
_this.trigger("loginStatusChange");
if (typeof callback === 'function')
callback(success, data);
}
}, null, false, false);
});
};
DownloadStationAPI.prototype.logout = function (callback) {
var _this = this;
this.stopBackgroundUpdate();
if (!this._sid) {
if (typeof callback === "function")
callback(true, null);
return;
}
var params = {
session: 'DownloadStation'
};
var authApiInfo = this._apiInfo['SYNO.API.Auth'];
var authApiVersion = 2;
if (authApiInfo.maxVersion >= 4) {
authApiVersion = 4;
}
this._apiCall('SYNO.API.Auth', 'logout', authApiVersion, params, function (success, data) {
_this.deviceInfo.loggedIn = false;
_this._sid = null;
_this.tasks = [];
_this.trigger("tasksUpdated");
_this.trigger({ type: 'loginStatusChange', success: success, data: data });
if (typeof callback === "function")
callback(success, data);
}, null, false, false);
};
DownloadStationAPI.prototype.loadTasks = function (callback) {
var _this = this;
var params = {
additional: 'transfer,detail',
offset: 0,
limit: 101
};
this._apiCall('SYNO.DownloadStation.Task', 'list', 1, params, function (success, data) {
if (success) {
_this.tasks = _this._createTaskObjects(data.tasks);
}
else {
_this.tasks = [];
_this._setStatus(data);
}
_this.trigger("tasksUpdated");
if (typeof callback === "function")
callback(success, data);
});
};
DownloadStationAPI.prototype.createTaskFromUrl = function (url, username, password, unzipPassword, destinationFolder, callback) {
var _this = this;
if (!Array.isArray(url))
url = [url];
// Replace comma's in URL's with an percent-encoded comma. This causes the comma to be double-encoded
// to %252C when posted to Download Station. Download Station interprets single-encoded comma's (%2C)
// as seperation character for multiple URL's
for (var i = 0; i < url.length; i++) {
while (url[i].indexOf(",") !== -1) {
url[i] = url[i].replace(",", encodeURIComponent(","));
}
}
var params = {
uri: url.join(",")
};
if (username)
params.username = username;
if (password)
params.password = password;
if (unzipPassword)
params.unzip_password = unzipPassword;
if (destinationFolder) {
if (destinationFolder.charAt(0) == "/")
destinationFolder = destinationFolder.substr(1);
params.destination = destinationFolder;
}
this._apiCall('SYNO.DownloadStation.Task', 'create', 1, params, function (success, data) {
_this.loadTasks();
if (typeof callback === "function")
callback(success, data);
});
};
DownloadStationAPI.prototype.createTaskFromFile = function (file, unzipPassword, destinationFolder, callback) {
var _this = this;
var params = {
file: file
};
if (unzipPassword) {
params.unzip_password = unzipPassword;
}
if (destinationFolder) {
if (destinationFolder.charAt(0) == "/") {
destinationFolder = destinationFolder.substr(1);
}
params.destination = destinationFolder;
}
this._apiCall('SYNO.DownloadStation.Task', 'create', 1, params, function (success, data) {
_this.loadTasks();
if (typeof callback === "function")
callback(success, data);
}, 'POST', true);
};
DownloadStationAPI.prototype.clearFinishedTasks = function (callback) {
var ids = new Array();
for (var i = 0; i < this.tasks.length; i++) {
var task = this.tasks[i];
if (task.status === "finished") {
ids.push(task.id);
}
}
this.deleteTask(ids, callback);
};
;
DownloadStationAPI.prototype.resumeTask = function (ids, callback) {
var _this = this;
if (typeof ids === "string")
ids = [ids];
var params = {
id: ids.join(",")
};
this._apiCall('SYNO.DownloadStation.Task', 'resume', 1, params, function (success, data) {
_this.loadTasks();
if (typeof callback === "function")
callback(success, data);
}, 'POST');
};
DownloadStationAPI.prototype.pauseTask = function (ids, callback) {
var _this = this;
if (typeof ids === "string")
ids = [ids];
var params = {
id: ids.join(",")
};
this._apiCall('SYNO.DownloadStation.Task', 'pause', 1, params, function (success, data) {
_this.loadTasks();
if (typeof callback === "function")
callback(success, data);
}, 'POST');
};
DownloadStationAPI.prototype.deleteTask = function (ids, callback) {
var _this = this;
if (typeof ids === "string")
ids = [ids];
var params = {
id: ids.join(","),
force_complete: false
};
this._apiCall('SYNO.DownloadStation.Task', 'delete', 1, params, function (success, data) {
_this.loadTasks();
if (typeof callback === "function")
callback(success, data);
}, 'POST');
};
//!QuickConnect
DownloadStationAPI.prototype.getQuickConnectServers = function (callback) {
$.ajax({
url: "https://global.quickconnect.to/Serv.php",
data: JSON.stringify({
version: 1,
command: "get_site_list"
}),
processData: false,
dataType: "json",
method: "POST",
timeout: 5000
}).done(function (data) {
if (data.errno != 0 || !data.sites || !Array.isArray(data.sites) || data.sites.length == 0) {
callback(false);
return;
}
callback(true, data.sites);
}).fail(function () {
callback(false);
});
};
DownloadStationAPI.prototype.getQuickConnectDetails = function (serverUrl, https, callback) {
$.ajax({
url: "https://" + serverUrl + "/Serv.php",
data: JSON.stringify({
version: 1,
command: "get_server_info",
id: https ? "dsm_https" : "dsm",
serverID: this._settings.quickConnectId
}),
dataType: "json",
method: "POST",
timeout: 5000
}).done(function (data) {
if (data.errno != 0 ||
!data.server || !data.server.interface || !Array.isArray(data.server.interface) || !data.server.external || !data.server.serverID ||
!data.service || data.service.port == null || data.service.ext_port == null) {
callback(false);
return;
}
var interfaces = [];
var ezid = md5(data.server.serverID);
// Device network interfaces
for (var i = 0; i < data.server.interface.length; i++) {
var interfaceDetails = data.server.interface[i];
interfaces.push({
ip: interfaceDetails.ip,
port: data.service.port,
ezid: ezid
});
}
var externalPort = data.service.ext_port === 0 ? data.service.port : data.service.ext_port;
// Custom DNS
if (data.server.fqdn) {
interfaces.push({
ip: data.server.fqdn.replace(/'/g, ""),
port: externalPort,
ezid: ezid
});
}
// DDNS
if (data.server.ddns) {
interfaces.push({
ip: data.server.ddns.replace(/'/g, ""),
port: externalPort,
ezid: ezid
});
}
// Public IP
interfaces.push({
ip: data.server.external.ip,
port: externalPort,
ezid: ezid
});
callback(true, interfaces);
}).fail(function () {
callback(false);
});
};
DownloadStationAPI.prototype.pingDiskStation = function (https, ip, port, callback) {
var url = (https ? "https://" : "http://") + ip + ":" + port + "/webman/pingpong.cgi";
$.ajax({
url: url,
dataType: "json",
timeout: 20000,
method: "GET"
}).done(function (data) {
if (data.success !== true) {
callback(false);
return;
}
if (data.boot_done !== true) {
console.log("Device on url '%s' has not finished booting.", url);
callback(false);
return;
}
;
callback(true, data.ezid);
}).fail(function () {
callback(false);
});
};
DownloadStationAPI.prototype.getQuickConnectSettings = function (callback) {
var _this = this;
var requireHttps = true;
this.getQuickConnectServers(function (success, servers) {
if (success == false || servers.length == 0) {
callback(false, "quickConnectMainServerUnavailable");
return;
}
var finishedRequestCount = 0;
var resultFound = false;
var pingInterfaces = function (interfaces, pingCallback) {
var finishedPingCount = 0;
var pingResponseFound = false;
$.each(interfaces, function (index, currentInterface) {
_this.pingDiskStation(requireHttps, currentInterface.ip, currentInterface.port, function (success, ezid) {
finishedPingCount++;
if (pingResponseFound) {
return;
}
var validEzid = (ezid == currentInterface.ezid);
if ((success == false || validEzid == false) && finishedPingCount == interfaces.length) {
// No valid ping for any of the interfaces
pingCallback(false);
return;
}
if (success && validEzid) {
pingResponseFound = true;
pingCallback(true, currentInterface);
return;
}
});
});
};
$.each(servers, function (index, currentServer) {
_this.getQuickConnectDetails(currentServer, requireHttps, function (success, interfaces) {
finishedRequestCount++;
if (resultFound) {
return;
}
if (success == false && finishedRequestCount == servers.length) {
// All servers checked but no valid result
callback(false, "quickConnectInformationNotFound");
return;
}
if (success) {
// This is the first request that returned a result, use this one
resultFound = true;
pingInterfaces(interfaces, function (success, connectionDetails) {
if (success) {
callback(true, {
url: connectionDetails.ip,
port: connectionDetails.port,
protocol: requireHttps ? "https://" : "http://"
});
return;
}
// Try QuickConnect tunnel
_this.requestQuickConnectRelay(currentServer, function (success, data) {
if (success) {
callback(success, data);
}
else {
callback(success, "quickConnectTunnelFailed");
}
return;
});
});
}
});
});
});
};
DownloadStationAPI.prototype.requestQuickConnectRelay = function (serverUrl, callback) {
var _this = this;
var serverCode = serverUrl.split(".")[0];
$.ajax({
url: "https://" + serverUrl + "/Serv.php",
data: JSON.stringify({
version: 1,
command: "request_tunnel",
id: "dsm_https",
serverID: this._settings.quickConnectId
}),
dataType: "json",
method: "POST",
timeout: 30000
}).done(function (data) {
if (data.errno != 0 || data.errno == undefined || !data.server || !data.server.external ||
!data.server.serverID || !data.service || data.service.port == null || data.service.ext_port == null) {
callback(false);
return;
}
var hostname = _this._settings.quickConnectId + "." + serverCode.slice(0, 2) + ".quickconnect.to";
var port = data.service.https_port ? data.service.https_port : 443;
_this.pingDiskStation(true, hostname, port, function (success, ezid) {
if (success == false || ezid != md5(data.server.serverID)) {
callback(false);
}
else {
callback(true, {
url: hostname,
port: port,
protocol: "https://"
});
}
});
}).fail(function () {
callback(false);
});
};
return DownloadStationAPI;
}(DownloadStation));
function secondsToStr(s) {
function numberEnding(n) {
return (n > 1) ? 's' : '';
}
var temp = s;
var timeParts = new Array();
var years = Math.floor(temp / 31536000);
if (years) {
timeParts.push(years + " y");
}
var days = Math.floor((temp %= 31536000) / 86400);
if (days) {
timeParts.push(days + " d");
}
var hours = Math.floor((temp %= 86400) / 3600);
if (hours) {
timeParts.push(hours + " h");
}
var minutes = Math.floor((temp %= 3600) / 60);
if (minutes) {
timeParts.push(minutes + " m");
}
var seconds = Math.round(temp % 60);
if (seconds) {
timeParts.push(seconds + " s");
}
if (timeParts.length >= 2)
return timeParts[0] + " " + timeParts[1];
else if (timeParts.length == 1)
return timeParts[0];
else
return 'less than a second'; //'just now' //or other string you like;
}
function getGMTOffset(date) {
return (date.getTimezoneOffset() > 0 ? "-" : "+") +
leftPad(Math.floor(Math.abs(date.getTimezoneOffset()) / 60), 2, "0") +
":" +
leftPad(Math.abs(date.getTimezoneOffset() % 60), 2, "0");
}
function leftPad(d, b, c) {
var a = String(d);
if (!c) {
c = " ";
}
while (a.length < b) {
a = c + a;
}
;
return a;
}
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImpzL2Rvd25sb2Fkc3RhdGlvbi1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsOENBQThDOzs7Ozs7QUF3RTlDO0lBQWlDLHNDQUFlO0lBYTVDLDRCQUFZLE9BQWlDO1FBQ3pDLGtCQUFNLE9BQU8sQ0FBQyxDQUFDO1FBVlgsb0JBQWUsR0FBRyxLQUFLLENBQUM7UUFDeEIsYUFBUSxHQUF3QjtZQUNwQyxlQUFlLEVBQUU7Z0JBQ2IsVUFBVSxFQUFFLENBQUM7Z0JBQ2IsVUFBVSxFQUFFLENBQUM7Z0JBQ2IsSUFBSSxFQUFFLFdBQVc7YUFDcEI7U0FDSixDQUFDO1FBSUUsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLGNBQWMsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUNoRCxDQUFDO0lBRU0scUNBQVEsR0FBZixVQUFnQixPQUFlLEVBQUUsU0FBaUIsRUFBRSxVQUFrQixFQUFFLE1BQTRCLEVBQUUsUUFBc0YsRUFBRSxhQUFzQixFQUFFLFFBQWtCLEVBQUUsWUFBc0I7UUFBaFEsaUJBdVFDO1FBdFFHLHNDQUFzQztRQUN0QyxFQUFFLENBQUEsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLGNBQWMsSUFBSSxDQUFDLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxRQUFRLElBQUksQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLEdBQUcsSUFBSSxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FDOUcsQ0FBQztZQUNHLElBQUksQ0FBQyx1QkFBdUIsQ0FBQyxVQUFDLE9BQU8sRUFBRSxJQUFJO2dCQUN2QyxFQUFFLENBQUEsQ0FBQyxPQUFPLENBQUMsQ0FDWCxDQUFDO29CQUNHLDZDQUE2QztvQkFDN0MsS0FBSSxDQUFDLFNBQVMsQ0FBQyxRQUFRLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQztvQkFDeEMsS0FBSSxDQUFDLFNBQVMsQ0FBQyxHQUFHLEdBQUcsSUFBSSxDQUFDLEdBQUcsQ0FBQztvQkFDOUIsS0FBSSxDQUFD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Q0FBQTtJQUNULENBQUM7SUFBQSxDQUFDO0lBQ0YsTUFBTSxDQUFDLENBQUMsQ0FBQztBQUNiLENBQUMiLCJmaWxlIjoianMvZG93bmxvYWRzdGF0aW9uLWFwaS5qcyIsInNvdXJjZXNDb250ZW50IjpbIi8vLyA8cmVmZXJlbmNlIHBhdGg9XCIuL2xpYi9lbmNyeXB0aW9uLmQudHNcIiAvPlxyXG5cclxuaW50ZXJmYWNlIFN5bm9BcGlJbmZvUmVxdWVzdFxyXG57XHJcbiAgICBxdWVyeTogc3RyaW5nO1xyXG59XHJcblxyXG5pbnRlcmZhY2UgU3lub0FwaUluZm9SZXNwb25zZVxyXG57XHJcbiAgICBba2V5OiBzdHJpbmddOiBTeW5vQXBpSW5mb0RldGFpbHM7XHJcbn1cclxuXHJcbmludGVyZmFjZSBTeW5vQXBpSW5mb0RldGFpbHNcclxue1xyXG4gICAgbWluVmVyc2lvbjogbnVtYmVyO1xyXG4gICAgbWF4VmVyc2lvbjogbnVtYmVyO1xyXG4gICAgcGF0aDogc3RyaW5nO1xyXG59XHJcblxyXG5pbnRlcmZhY2UgU3lub0FwaVJlc3BvbnNlXHJcbntcclxuICAgIHN1Y2Nlc3M6IGJvb2xlYW47XHJcbiAgICBlcnJvcjogU3lub2xvZ3lBcGlFcnJvcjtcclxuICAgIGRhdGE/OiBhbnk7XHJcbn1cclxuXHJcbmludGVyZmFjZSBTeW5vbG9neUFwaUVycm9yXHJcbntcclxuICAgIGNvZGU6IG51bWJlcjtcclxuICAgIGVycm9yczogU3lub2xvZ3lBcGlFcnJvcltdO1xyXG59XHJcblxyXG5pbnRlcmZhY2UgU3lub0FwaUF1dGhMb2dpblJlcXVlc3Rcclxue1xyXG4gICAgYWNjb3VudDogc3RyaW5nO1xyXG4gICAgcGFzc3dkOiBzdHJpbmc7XHJcbiAgICBmb3JtYXQ6IHN0cmluZztcclxuICAgIHNlc3Npb246IHN0cmluZztcclxuICAgIGNsaWVudF90aW1lOiBudW1iZXI7XHJcbiAgICB0aW1lem9uZTogc3RyaW5nO1xyXG59XHJcblxyXG5pbnRlcmZhY2UgU3lub0RzbUluZm9SZXNwb25zZVxyXG57XHJcbiAgICBjb2RlcGFnZT86IHN0cmluZztcclxuICAgIG1vZGVsPzogc3RyaW5nO1xyXG4gICAgcmFtPzogbnVtYmVyO1xyXG4gICAgc2VyaWFsPzogc3RyaW5nO1xyXG4gICAgdGVtcGVyYXR1cmU/OiBudW1iZXI7XHJcbiAgICB0ZW1wZXJhdHVyZV93YXJuPzogYm9vbGVhbjtcclxuICAgIHRpbWU/OiBzdHJpbmc7XHJcbiAgICB1cHRpbWU/OiBudW1iZXI7XHJcbiAgICB2ZXJzaW9uPzogc3RyaW5nO1xyXG4gICAgdmVyc2lvbl9zdHJpbmc/OiBzdHJpbmc7XHJcbn1cclxuXHJcbmludGVyZmFjZSBTeW5vRG93bmxvYWRTdGF0aW9uVGFza0NyZWF0ZVJlcXVlc3Rcclxue1xyXG4gICAgdXJpPzogc3RyaW5nO1xyXG4gICAgZmlsZT86IERTRmlsZTtcclxuICAgIHVzZXJuYW1lPzogc3RyaW5nO1xyXG4gICAgcGFzc3dvcmQ/OiBzdHJpbmc7XHJcbiAgICB1bnppcF9wYXNzd29yZD86IHN0cmluZztcclxuICAgIGRlc3RpbmF0aW9uPzogc3RyaW5nO1xyXG59XHJcblxyXG5pbnRlcmZhY2UgRmVhdHVyZVN1cHBvcnRJbmZvXHJcbntcclxuICAgIGRlc3RpbmF0aW9uRm9sZGVyOiBib29sZWFuO1xyXG4gICAgZmlsZVN0YXRpb25EZWxldGU6IGJvb2xlYW47XHJcbn1cclxuXHJcbmNsYXNzIERvd25sb2FkU3RhdGlvbkFQSSBleHRlbmRzIERvd25sb2FkU3RhdGlvblxyXG57XHJcbiAgICBwdWJsaWMgZmlsZVN0YXRpb246IEZpbGVTdGF0aW9uQVBJO1xyXG5cclxuICAgIHByaXZhdGUgX2FwaUluZm9GZXRjaGVkID0gZmFsc2U7XHJcbiAgICBwcml2YXRlIF9hcGlJbmZvOiBTeW5vQXBpSW5mb1Jlc3BvbnNlID0ge1xyXG4gICAgICAgICdTWU5PLkFQSS5JbmZvJzoge1xyXG4gICAgICAgICAgICBtaW5WZXJzaW9uOiAxLFxyXG4gICAgICAgICAgICBtYXhWZXJzaW9uOiAxLFxyXG4gICAgICAgICAgICBwYXRoOiAncXVlcnkuY2dpJ1xyXG4gICAgICAgIH1cclxuICAgIH07XHJcblxyXG4gICAgY29uc3RydWN0b3Iob3B0aW9uczogSURvd25sb2FkU3RhdGlvblNldHRpbmdzKXtcclxuICAgICAgICBzdXBlcihvcHRpb25zKTtcclxuICAgICAgICB0aGlzLmZpbGVTdGF0aW9uID0gbmV3IEZpbGVTdGF0aW9uQVBJKHRoaXMpO1xyXG4gICAgfVxyXG5cclxuICAgIHB1YmxpYyBfYXBpQ2FsbChhcGlOYW1lOiBzdHJpbmcsIGFwaU1ldGhvZDogc3RyaW5nLCBhcGlWZXJzaW9uOiBudW1iZXIsIHBhcmFtczoge1trZXk6IHN0cmluZ106IGFueX0sIGNhbGxiYWNrOiAoc3VjY2VzczogYm9vbGVhbiwgZGF0YTogYW55LCBhZGRpdGlvbmFsRXJyb3JzPzogU3lub2xvZ3lBcGlFcnJvcltdKSA9PiB2b2lkLCByZXF1ZXN0TWV0aG9kPzogc3RyaW5nLCBpc1VwbG9hZD86IGJvb2xlYW4sIHJldHJ5T25FcnJvcj86IGJvb2xlYW4pIHtcclxuICAgICAgICAvLyBHZXQgUXVpY2tDb25uZWN0IGNvbm5lY3Rpb24gZGV0YWlsc1xyXG4gICAgICAgIGlmKHRoaXMuX3NldHRpbmdzLnF1aWNrQ29ubmVjdElkICYmICghdGhpcy5fc2V0dGluZ3MucHJvdG9jb2wgfHwgIXRoaXMuX3NldHRpbmdzLnVybCB8fCAhdGhpcy5fc2V0dGluZ3MucG9ydCkpXHJcbiAgICAgICAge1xyXG4gICAgICAgICAgICB0aGlzLmdldFF1aWNrQ29ubmVjdFNldHRpbmdzKChzdWNjZXNzLCBkYXRhKSA9PiB7XHJcbiAgICAgICAgICAgICAgICBpZihzdWNjZXNzKVxyXG4gICAgICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgICAgIC8vIEFwcGx5IHRoZSBzZXR0aW5ncyBmb3VuZCB3aXRoIFF1aWNrQ29ubmVjdFxyXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuX3NldHRpbmdzLnByb3RvY29sID0gZGF0YS5wcm90b2NvbDtcclxuICAgICAgICAgICAgICAgICAgICB0aGlzLl9zZXR0aW5ncy51cmwgPSBkYXRhLnVybDtcclxuICAgICAgICAgICAgICAgICAgICB0aGlzLl9zZXR0aW5ncy5wb3J0ID0gZGF0YS5wb3J0O1xyXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuZGV2aWNlSW5mby5mdWxsVXJsID0gZGF0YS5wcm90b2NvbCArIGRhdGEudXJsICsgXCI6XCIgKyBkYXRhLnBvcnQ7XHJcbiAgICAgICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5fYXBpQ2FsbChhcGlOYW1lLCBhcGlNZXRob2QsIGFwaVZlcnNpb24sIHBhcmFtcywgY2FsbGJhY2ssIHJlcXVlc3RNZXRob2QsIGlzVXBsb2FkLCByZXRyeU9uRXJyb3IpO1xyXG4gICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgZWxzZVxyXG4gICAgICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuX3NldFN0YXR1cyhkYXRhKTtcclxuICAgICAgICAgICAgICAgICAgICB0aGlzLnRyaWdnZXIoeyB0eXBlOiAncmVhZHknLCBzdWNjZXNzOiBzdWNjZXNzLCBtZXNzYWdlOiBkYXRhIH0pO1xyXG4gICAgICAgICAgICAgICAgICAgIFxyXG4gICAgICAgICAgICAgICAgICAgIGlmICh0eXBlb2YgY2FsbGJhY2sgPT09IFwiZnVuY3Rpb25cIikge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICBjYWxsYmFjayhzdWNjZXNzLCBkYXRhKTtcclxuICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIH0pO1xyXG4gICAgICAgICAgICByZXR1cm47XHJcbiAgICAgICAgfVxyXG4gICAgICAgIFxyXG4gICAgICAgIGlmICghdGhpcy5fc2V0dGluZ3MucHJvdG9jb2wgfHwgIXRoaXMuX3NldHRpbmdzLnVybCB8fCAhdGhpcy5fc2V0dGluZ3MucG9ydClcclxuICAgICAgICB7XHJcbiAgICAgICAgICAgIGNhbGxiYWNrKGZhbHNlLCB0aGlzLl9nZXRFcnJvclN0cmluZyhhcGlOYW1lLCAwKSk7XHJcbiAgICAgICAgICAgIHJldHVybjtcclxuICAgICAgICB9XHJcbiAgICAgICAgXHJcbiAgICAgICAgaWYodGhpcy5kZXZpY2VJbmZvLmRzbVZlcnNpb24gPT0gbnVsbCAmJiBhcGlOYW1lICE9IFwiU1lOTy5EU00uSW5mb1wiICYmIGFwaU5hbWUgIT0gXCJTWU5PLkFQSS5JbmZvXCIgJiYgYXBpTmFtZSAhPSAnU1lOTy5BUEkuRW5jcnlwdGlvbicgJiYgYXBpTmFtZSAhPSAnU1lOTy5BUEkuQXV0aCcgJiYgYXBpTmFtZSAhPSBcIlNZTk8uRG93bmxvYWRTdGF0aW9uLkluZm9cIilcclxuICAgICAgICB7XHJcbiAgICAgICAgICAgIHRoaXMuX3NldFN0YXR1cyhcImNvbm5lY3RpbmdcIik7XHJcbiAgICAgICAgICAgIHRoaXMuZ2V0RHNtVmVyc2lvbigoc3VjY2VzcywgZGF0YSkgPT4ge1xyXG4gICAgICAgICAgICAgICAgaWYoc3VjY2VzcylcclxuICAgICAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgICAgICBpZih0eXBlb2YgZGF0YS52ZXJzaW9uX3N0cmluZyA9PT0gXCJzdHJpbmdcIiAmJiBkYXRhLnZlcnNpb25fc3RyaW5nLmluZGV4T2YoXCItXCIpICE9IC0xKVxyXG4gICAgICAgICAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgZGF0YS52ZXJzaW9uX3N0cmluZyA9ICQudHJpbShkYXRhLnZlcnNpb25fc3RyaW5nLnNwbGl0KFwiLVwiKVswXS5yZXBsYWNlKFwiRFNNXCIsIFwiXCIpLnJlcGxhY2UoXCJTUk1cIiwgXCJcIikpO1xyXG4gICAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgICB0aGlzLmRldmljZUluZm8uZHNtVmVyc2lvbiA9IGRhdGEudmVyc2lvbjtcclxuICAgICAgICAgICAgICAgICAgICB0aGlzLmRldmljZUluZm8uZHNtVmVyc2lvblN0cmluZyA9IGRhdGEudmVyc2lvbl9zdHJpbmc7XHJcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5kZXZpY2VJbmZvLm1vZGVsTmFtZSA9IGRhdGEubW9kZWw7XHJcbiAgICAgICAgICAgICAgICAgICAgdGhpcy50cmlnZ2VyKFwiZGV2aWNlSW5mb1VwZGF0ZWRcIik7XHJcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5fc2V0U3RhdHVzKG51bGwpO1xyXG4gICAgICAgICAgICAgICAgICAgIFxyXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuX2FwaUNhbGwoYXBpTmFtZSwgYXBpTWV0aG9kLCBhcGlWZXJzaW9uLCBwYXJhbXMsIGNhbGxiYWNrLCByZXF1ZXN0TWV0aG9kLCBpc1VwbG9hZCwgcmV0cnlPbkVycm9yKTtcclxuICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgIGVsc2VcclxuICAgICAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgICAgICB0aGlzLl9zZXRTdGF0dXMoZGF0YSk7XHJcbiAgICAgICAgICAgICAgICAgICAgdGhpcy50cmlnZ2VyKHsgdHlwZTogJ3JlYWR5Jywgc3VjY2Vzczogc3VjY2VzcywgbWVzc2FnZTogZGF0YSB9KTtcclxuICAgICAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgICBpZiAodHlwZW9mIGNhbGxiYWNrID09PSBcImZ1bmN0aW9uXCIpIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgY2FsbGJhY2soc3VjY2VzcywgZGF0YSk7XHJcbiAgICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICB9KTtcclxuICAgICAgICAgICAgcmV0dXJuO1xyXG4gICAgICAgIH1cclxuICAgICAgICBcclxuICAgICAgICBpZih0aGlzLmRldmljZUluZm8uZHNtVmVyc2lvbiA8IDMxMDAgJiYgYXBpTmFtZSAhPSBcIlNZTk8uRFNNLkluZm9cIiAmJiBhcGlOYW1lICE9IFwiU1lOTy5BUEkuSW5mb1wiICYmIGFwaU5hbWUgIT0gJ1NZTk8uQVBJLkVuY3J5cHRpb24nICYmIGFwaU5hbWUgIT0gJ1NZTk8uQVBJLkF1dGgnICYmIGFwaU5hbWUgIT0gXCJTWU5PLkRvd25sb2FkU3RhdGlvbi5JbmZvXCIpXHJcbiAgICAgICAge1xyXG4gICAgICAgICAgICBjYWxsYmFjayhmYWxzZSwgXCJkc21WZXJzaW9uVG9vT2xkXCIpO1xyXG4gICAgICAgICAgICByZXR1cm47XHJcbiAgICAgICAgfVxyXG4gICAgICAgIFxyXG4gICAgICAgIGlmKCF0aGlzLl9hcGlJbmZvRmV0Y2hlZCAmJiBhcGlOYW1lICE9IFwiU1lOTy5BUEkuSW5mb1wiKVxyXG4gICAgICAgIHtcclxuICAgICAgICAgICAgdGhpcy5fc2V0U3RhdHVzKFwiY29ubmVjdGluZ1wiKTtcclxuICAgICAgICAgICAgdGhpcy5nZXRBcGlJbmZvKChzdWNjZXNzLCBkYXRhKSA9PiB7XHJcbiAgICAgICAgICAgICAgICBpZiAoc3VjY2VzcylcclxuICAgICAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgICAgICB0aGlzLl9zZXRTdGF0dXMobnVsbCk7XHJcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5fYXBpQ2FsbChhcGlOYW1lLCBhcGlNZXRob2QsIGFwaVZlcnNpb24sIHBhcmFtcywgY2FsbGJhY2ssIHJlcXVlc3RNZXRob2QsIGlzVXBsb2FkLCByZXRyeU9uRXJyb3IpO1xyXG4gICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgZWxzZVxyXG4gICAgICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuX3NldFN0YXR1cyhkYXRhKTtcclxuICAgICAgICAgICAgICAgICAgICB0aGlzLnRyaWdnZXIoeyB0eXBlOiAncmVhZHknLCBzdWNjZXNzOiBzdWNjZXNzLCBtZXNzYWdlOiBkYXRhIH0pO1xyXG4gICAgICAgIFxyXG4gICAgICAgICAgICAgICAgICAgIGlmICh0eXBlb2YgY2FsbGJhY2sgPT09IFwiZnVuY3Rpb25cIikge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICBjYWxsYmFjayhzdWNjZXNzLCBkYXRhKTtcclxuICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIH0pO1xyXG4gICAgICAgICAgICByZXR1cm47XHJcbiAgICAgICAgfVxyXG4gICAgICAgIFxyXG4gICAgICAgIGlmICh0eXBlb2YgKHRoaXMuX2FwaUluZm9bYXBpTmFtZV0pID09PSAndW5kZWZpbmVkJylcclxuICAgICAgICB7XHJcbiAgICAgICAgICAgIHZhciBtZXNzYWdlID0gdGhpcy5fZ2V0RXJyb3JTdHJpbmcoYXBpTmFtZSwgMTAyKTtcclxuICAgICAgICAgICAgY2FsbGJhY2soZmFsc2UsIG1lc3NhZ2UpO1xyXG4gICAgICAgICAgICByZXR1cm47XHJcbiAgICAgICAgfVxyXG4gICAgICAgIFxyXG4gICAgICAgIGlmKCF0aGlzLl9zaWQgJiYgYXBpTmFtZSAhPSAnU1lOTy5BUEkuSW5mbycgJiYgYXBpTmFtZSAhPSAnU1lOTy5BUEkuRW5jcnlwdGlvbicgJiYgYXBpTmFtZSAhPSAnU1lOTy5BUEkuQXV0aCcpXHJcbiAgICAgICAge1xyXG4gICAgICAgICAgICB0aGlzLmxvZ2luKChzdWNjZXNzLCBkYXRhKSA9PiB7XHJcbiAgICAgICAgICAgICAgICBpZihzdWNjZXNzKVxyXG4gICAgICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuX2FwaUNhbGwoYXBpTmFtZSwgYXBpTWV0aG9kLCBhcGlWZXJzaW9uLCBwYXJhbXMsIGNhbGxiYWNrLCByZXF1ZXN0TWV0aG9kLCBpc1VwbG9hZCwgcmV0cnlPbkVycm9yKTtcclxuICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgIGVsc2VcclxuICAgICAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgICAgICB0aGlzLl9zZXRTdGF0dXMoZGF0YSk7XHJcblxyXG4gICAgICAgICAgICAgICAgICAgIGlmICh0eXBlb2YgY2FsbGJhY2sgPT09IFwiZnVuY3Rpb25cIikge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICBjYWxsYmFjayhzdWNjZXNzLCBkYXRhKTtcclxuICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgIHRoaXMudHJpZ2dlcih7IHR5cGU6ICdyZWFkeScsIHN1Y2Nlc3M6IHN1Y2Nlc3MsIG1lc3NhZ2U6IGRhdGEgfSk7XHJcbiAgICAgICAgICAgIH0pO1xyXG4gICAgICAgICAgICByZXR1cm47XHJcbiAgICAgICAgfVxyXG5cclxuICAgICAgICB2YXIgcGF0aCA9IHRoaXMuX2FwaUluZm9bYXBpTmFtZV0ucGF0aDtcclxuICAgICAgICB2YXIgaXNVcGxvYWQgPSB0eXBlb2YgaXNVcGxvYWQgPT09IFwiYm9vbGVhblwiID8gaXNVcGxvYWQgOiBmYWxzZTtcclxuICAgICAgICB2YXIgcmV0cnlPbkVycm9yID0gdHlwZW9mIHJldHJ5T25FcnJvciA9PT0gXCJib29sZWFuXCIgPyByZXRyeU9uRXJyb3IgOiBmYWxzZTtcclxuICAgICAgICB2YXIgcmVxdWVzdE1ldGhvZCA9IHR5cGVvZiByZXF1ZXN0TWV0aG9kID09PSBcInN0cmluZ1wiID8gcmVxdWVzdE1ldGhvZCA6ICdQT1NUJztcclxuICAgICAgICB2YXIgYXBpVXJsID0gdGhpcy5fc2V0dGluZ3MucHJvdG9jb2wgKyB0aGlzLl9zZXR0aW5ncy51cmwgKyAnOicgKyB0aGlzLl9zZXR0aW5ncy5wb3J0ICsgJy93ZWJhcGkvJyArIHBhdGg7XHJcbiAgICAgICAgdmFyIGZvcm1EYXRhID0gbmV3IEZvcm1EYXRhKCk7XHJcbiAgICAgICAgdmFyIGRhdGE6IHtba2V5OiBzdHJpbmddOiBhbnl9ID0ge1xyXG4gICAgICAgICAgICBfc2lkOiB0aGlzLl9zaWQsXHJcbiAgICAgICAgICAgIGFwaTogYXBpTmFtZSxcclxuICAgICAgICAgICAgdmVyc2lvbjogYXBpVmVyc2lvbixcclxuICAgICAgICAgICAgbWV0aG9kOiBhcGlNZXRob2RcclxuICAgICAgICB9O1xyXG5cclxuICAgICAgICBpZiAodHlwZW9mIHBhcmFtcyA9PT0gJ29iamVjdCcpXHJcbiAgICAgICAgICAgICQuZXh0ZW5kKGRhdGEsIHBhcmFtcyk7XHJcblxyXG4gICAgICAgIGlmIChpc1VwbG9hZCkge1xyXG4gICAgICAgICAgICBmb3IgKHZhciBrZXkgaW4gZGF0YSkge1xyXG4gICAgICAgICAgICAgICAgaWYgKChkYXRhW2tleV0gaW5zdGFuY2VvZiBEU0ZpbGUpID09PSBmYWxzZSlcclxuICAgICAgICAgICAgICAgICAgICBmb3JtRGF0YS5hcHBlbmQoa2V5LCBkYXRhW2tleV0pO1xyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIFxyXG4gICAgICAgICAgICAvLyBGaWxlcyBzaG91bGQgYWx3YXlzIGJlIGF0IHRoZSBlbmQgb2YgdGhlIHJlcXVlc3RcclxuICAgICAgICAgICAgZm9yICh2YXIga2V5IGluIGRhdGEpIHtcclxuICAgICAgICAgICAgICAgIGlmIChkYXRhW2tleV0gIT09IG51bGwgJiYgZGF0YVtrZXldIGluc3RhbmNlb2YgRFNGaWxlKVxyXG4gICAgICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgICAgIHZhciBmaWxlOiBEU0ZpbGUgPSBkYXRhW2tleV07XHJcbiAgICAgICAgICAgICAgICAgICAgZm9ybURhdGEuYXBwZW5kKGtleSwgZmlsZS5nZXRCbG9iKCksIGZpbGUuZmlsZW5hbWUpO1xyXG4gICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgfVxyXG5cclxuICAgICAgICB2YXIgcmV0cnlPbkVycm9yRnVuY3Rpb24gPSAoKSA9PiB7XHJcbiAgICAgICAgICAgIHRoaXMubG9nb3V0KCgpID0+IHtcclxuICAgICAgICAgICAgICAgIHRoaXMubG9naW4oKHN1Y2Nlc3MsIGRhdGEpID0+IHtcclxuICAgICAgICAgICAgICAgICAgICBpZiAoc3VjY2VzcyAhPT0gdHJ1ZSkge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICBjYWxsYmFjayhmYWxzZSwgZGF0YSk7XHJcbiAgICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgICAgIGVsc2Uge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICB0aGlzLl9hcGlDYWxsKGFwaU5hbWUsIGFwaU1ldGhvZCwgYXBpVmVyc2lvbiwgcGFyYW1zLCBjYWxsYmFjaywgcmVxdWVzdE1ldGhvZCwgaXNVcGxvYWQsIGZhbHNlKTtcclxuICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICB9KTtcclxuICAgICAgICAgICAgfSk7XHJcbiAgICAgICAgfTtcclxuXHJcbiAgICAgICAgcmV0dXJuICQuYWpheCh7XHJcbiAgICAgICAgICAgIHR5cGU6IHJlcXVlc3RNZXRob2QsXHJcbiAgICAgICAgICAgIHVybDogYXBpVXJsLFxyXG4gICAgICAgICAgICBkYXRhVHlwZTogJ2pzb24nLFxyXG4gICAgICAgICAgICBkYXRhOiBpc1VwbG9hZCA/IGZvcm1EYXRhIDogZGF0YSxcclxuICAgICAgICAgICAgY29udGVudFR5cGU6IGlzVXBsb2FkID8gZmFsc2UgOiBudWxsLFxyXG4gICAgICAgICAgICBwcm9jZXNzRGF0YTogIWlzVXBsb2FkLFxyXG4gICAgICAgICAgICB0aW1lb3V0OiAyMDAwMCxcclxuICAgICAgICAgICAgY2FjaGU6IGZhbHNlXHJcbiAgICAgICAgfSlcclxuICAgICAgICAuZG9uZSgoZGF0YTogU3lub0FwaVJlc3BvbnNlKSA9PiB7XHJcbiAgICAgICAgICAgIFxyXG4gICAgICAgICAgICBpZih0aGlzLmNvbm5lY3RlZCA9PT0gZmFsc2UgJiYgdGhpcy5fc2lkKSB7XHJcbiAgICAgICAgICAgICAgICB0aGlzLmNvbm5lY3RlZCA9IHRydWU7XHJcbiAgICAgICAgICAgICAgICB0aGlzLnRyaWdnZXIoXCJjb25uZWN0ZWRcIik7XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgIGlmKHRoaXMuX3NpZCAmJiB0aGlzLl9zZXR0aW5ncy51cGRhdGVJbkJhY2tncm91bmQgPT0gZmFsc2UpIHtcclxuICAgICAgICAgICAgICAgIGNsZWFyVGltZW91dCh0aGlzLl9kaXNjb25uZWN0VGltZW91dCk7XHJcbiAgICAgICAgICAgICAgICB0aGlzLl9kaXNjb25uZWN0VGltZW91dCA9IHNldFRpbWVvdXQoKCkgPT4ge1xyXG4gICAgICAgICAgICAgICAgICAgIGlmKHRoaXMuY29ubmVjdGVkKVxyXG4gICAgICAgICAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgdGhpcy50YXNrcyA9IFtdO1xyXG4gICAgICAgICAgICAgICAgICAgICAgICB0aGlzLmNvbm5lY3RlZCA9IGZhbHNlO1xyXG4gICAgICAgICAgICAgICAgICAgICAgICB0aGlzLnRyaWdnZXIoW1wiY29ubmVjdGlvbkxvc3RcIiwgXCJ0YXNrc1VwZGF0ZWRcIl0pO1xyXG4gICAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgIH0sIDxhbnk+MzAwMDApO1xyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIFxyXG4gICAgICAgICAgICAvLyBObyBwZXJtaXNzaW9uIGZvciBBUEksIG1ha2VzIHNlc3Npb24gaW52YWxpZCBhbmQgcmVxdWlyZXMgYSBuZXcgbG9naW5cclxuICAgICAgICAgICAgaWYoZGF0YS5zdWNjZXNzID09IGZhbHNlICYmIGRhdGEuZXJyb3IgJiYgZGF0YS5lcnJvci5jb2RlID09IDEwNSkge1xyXG4gICAgICAgICAgICAgICAgdGhpcy5fYXBpSW5mb0ZldGNoZWQgPSBmYWxzZTtcclxuICAgICAgICAgICAgICAgIHRoaXMuX3NpZCA9IG51bGw7XHJcbiAgICAgICAgICAgICAgICB0aGlzLmRldmljZUluZm8ubG9nZ2VkSW4gPSBmYWxzZTtcclxuICAgICAgICAgICAgICAgIHRoaXMudGFza3MgPSBbXTtcclxuICAgICAgICAgICAgICAgIHRoaXMuY29ubmVjdGVkID0gZmFsc2U7XHJcbiAgICAgICAgICAgICAgICB0aGlzLnRyaWdnZXIoW1wiY29ubmVjdGlvbkxvc3RcIiwgXCJ0YXNrc1VwZGF0ZWRcIl0pO1xyXG4gICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICByZXRyeU9uRXJyb3IgPSBmYWxzZTsgXHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgIGlmICh0eXBlb2YgKGNhbGxiYWNrKSA9PT0gJ2Z1bmN0aW9uJykge1xyXG4gICAgICAgICAgICAgICAgaWYgKGRhdGEuc3VjY2VzcyA9PSB0cnVlKSB7XHJcbiAgICAgICAgICAgICAgICAgICAgY2FsbGJhY2sodHJ1ZSwgZGF0YS5kYXRhKTtcclxuICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgIGVsc2UgaWYgKHJldHJ5T25FcnJvciA9PT0gdHJ1ZSAmJiBkYXRhLmVycm9yICYmIGRhdGEuZXJyb3IuY29kZSA8IDQwMCkge1xyXG4gICAgICAgICAgICAgICAgICAgIC8vIExvZ2luIGFuZCByZXRyeVxyXG4gICAgICAgICAgICAgICAgICAgIHJldHJ5T25FcnJvckZ1bmN0aW9uKCk7XHJcbiAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICBlbHNlIGlmKHJldHJ5T25FcnJvciA9PT0gdHJ1ZSkge1xyXG4gICAgICAgICAgICAgICAgICAgIC8vIFJldHJ5IHdpdGhvdXQgbG9nZ2luZyBpblxyXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuX2FwaUNhbGwoYXBpTmFtZSwgYXBpTWV0aG9kLCBhcGlWZXJzaW9uLCBwYXJhbXMsIGNhbGxiYWNrLCByZXF1ZXN0TWV0aG9kLCBpc1VwbG9hZCwgZmFsc2UpO1xyXG4gICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgZWxzZSB7XHJcbiAgICAgICAgICAgICAgICAgICAgdmFyIGVycm9yY29kZTogbnVtYmVyO1xyXG5cclxuICAgICAgICAgICAgICAgICAgICBpZih0eXBlb2YgZGF0YSA9PT0gXCJ1bmRlZmluZWRcIiB8fCB0eXBlb2YgZGF0YS5lcnJvciA9PT0gXCJ1bmRlZmluZWRcIiB8fCB0eXBlb2YgZGF0YS5lcnJvci5jb2RlID09IFwidW5kZWZpbmVkXCIpIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgZXJyb3Jjb2RlID0gMDtcclxuICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICAgICAgZWxzZXtcclxuICAgICAgICAgICAgICAgICAgICAgICAgZXJyb3Jjb2RlID0gZGF0YS5lcnJvci5jb2RlO1xyXG4gICAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgICB2YXIgYWRkaXRpb25hbEVycm9ycyA9IGRhdGEuZXJyb3IuZXJyb3JzO1xyXG4gICAgICAgICAgICAgICAgICAgIHZhciBtZXNzYWdlID0gdGhpcy5fZ2V0RXJyb3JTdHJpbmcoYXBpTmFtZSwgZXJyb3Jjb2RlKTtcclxuICAgICAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgICBpZihBcnJheS5pc0FycmF5KGFkZGl0aW9uYWxFcnJvcnMpKVxyXG4gICAgICAgICAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgZm9yKHZhciBpID0gMDsgaSA8IGFkZGl0aW9uYWxFcnJvcnMubGVuZ3RoOyBpKyspXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGFkZGl0aW9uYWxFcnJvcnNbaV0ubWVzc2FnZSA9IHRoaXMuX2dldEVycm9yU3RyaW5nKGFwaU5hbWUsIGFkZGl0aW9uYWxFcnJvcnNbaV0uY29kZSk7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICAgICAgY2FsbGJhY2soZmFsc2UsIG1lc3NhZ2UsIGFkZGl0aW9uYWxFcnJvcnMpO1xyXG4gICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgfSlcclxuICAgICAgICAuZmFpbCgoeGhyLCB0ZXh0U3RhdHVzLCBlcnJvclRocm93bikgPT4ge1xyXG4gICAgICAgICAgICBpZih0aGlzLmNvbm5lY3RlZCkge1xyXG4gICAgICAgICAgICAgICAgdGhpcy5fYXBpSW5mb0ZldGNoZWQgPSBmYWxzZTtcclxuICAgICAgICAgICAgICAgIHRoaXMuX3NpZCA9IG51bGw7XHJcbiAgICAgICAgICAgICAgICB0aGlzLmRldmljZUluZm8ubG9nZ2VkSW4gPSBmYWxzZTtcclxuICAgICAgICAgICAgICAgIHRoaXMudGFza3MgPSBbXTtcclxuICAgICAgICAgICAgICAgIHRoaXMuY29ubmVjdGVkID0gZmFsc2U7XHJcbiAgICAgICAgICAgICAgICB0aGlzLnRyaWdnZXIoW1wiY29ubmVjdGlvbkxvc3RcIiwgXCJ0YXNrc1VwZGF0ZWRcIl0pO1xyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIFxyXG4gICAgICAgICAgICBpZiAodHlwZW9mIChjYWxsYmFjaykgPT09ICdmdW5jdGlvbicpe1xyXG4gICAgICAgICAgICAgICAgaWYodGV4dFN0YXR1cyA9PSBcInRpbWVvdXRcIil7XHJcbiAgICAgICAgICAgICAgICAgICAgY2FsbGJhY2soZmFsc2UsIFwicmVxdWVzdFRpbWVvdXRcIik7XHJcbiAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICBlbHNle1xyXG4gICAgICAgICAgICAgICAgICAgIGNhbGxiYWNrKGZhbHNlLCB0aGlzLl9nZXRFcnJvclN0cmluZyhhcGlOYW1lLCAwKSk7XHJcbiAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICB9KTtcclxuICAgIH1cclxuICAgIFxyXG4gICAgcHJpdmF0ZSBfZ2V0RXJyb3JTdHJpbmcgKGFwaU5hbWU6IHN0cmluZywgZXJyb3JDb2RlOiBudW1iZXIpIHtcclxuICAgICAgICB2YXIgZ2VuZXJhbEVycm9yczoge1trZXk6IG51bWJlcl06IHN0cmluZ30gPSB7XHJcbiAgICAgICAgICAgIDA6ICdjb3VsZE5vdENvbm5lY3QnLFxyXG4gICAgICAgICAgICAxMDA6ICd1bmtub3duRXJyb3InLFxyXG4gICAgICAgICAgICAxMDE6ICdpbnZhbGlkUGFyYW1ldGVyJyxcclxuICAgICAgICAgICAgMTAyOiAnYXBpRG9lc05vdEV4aXN0JyxcclxuICAgICAgICAgICAgMTAzOiAnbWV0aG9kRG9lc05vdEV4aXN0JyxcclxuICAgICAgICAgICAgMTA0OiAnZmVhdHVyZU5vdFN1cHBvcnRlZCcsXHJcbiAgICAgICAgICAgIDEwNTogJ3Blcm1pc3Npb25EZW5pZWQnLFxyXG4gICAgICAgICAgICAxMDY6ICdzZXNzaW9uVGltZW91dCcsXHJcbiAgICAgICAgICAgIDEwNzogJ3Nlc3Npb25JbnRlcnJ1cHRlZCdcclxuICAgICAgICB9O1xyXG5cclxuICAgICAgICB2YXIgYXBpRXJyb3JzOiB7W2tleTogc3RyaW5nXToge1trZXk6IG51bWJlcl06IHN0cmluZ319ID0ge1xyXG4gICAgICAgICAgICAnU1lOTy5BUEkuQXV0aCc6IHtcclxuICAgICAgICAgICAgICAgIDQwMDogJ2ludmFsaWRVc2VybmFtZU9yUGFzc3dvcmQnLFxyXG4gICAgICAgICAgICAgICAgNDAxOiAnYWNjb3VudERpc2FibGVkJyxcclxuICAgICAgICAgICAgICAgIDQwMjogJ3Blcm1pc3Npb25EZW5pZWQnLFxyXG4gICAgICAgICAgICAgICAgNDAzOiAndHdvU3RlcFZlcmlmaWNhdGlvbkNvZGVSZXF1aXJlZCcsXHJcbiAgICAgICAgICAgICAgICA0MDQ6ICdmYWlsZWRUb0F1dGhlbnRpY2F0ZVZlcmlmaWNhdGlvbkNvZGUnXHJcbiAgICAgICAgICAgIH0sXHJcbiAgICAgICAgICAgICdTWU5PLkRvd25sb2FkU3RhdGlvbi5JbmZvJzoge1xyXG4gICAgICAgICAgICB9LFxyXG4gICAgICAgICAgICAnU1lOTy5Eb3dubG9hZFN0YXRpb24uVGFzayc6IHtcclxuICAgICAgICAgICAgICAgIDQwMDogJ2ZpbGVVcGxvYWRGYWlsZWQnLFxyXG4gICAgICAgICAgICAgICAgNDAxOiAnbWF4TnVtYmVyT2ZUYXNrc1JlYWNoZWQnLFxyXG4gICAgICAgICAgICAgICAgNDAyOiAnZGVzdGluYXRpb25EZW5pZWQnLFxyXG4gICAgICAgICAgICAgICAgNDAzOiAnZGVzdGluYXRpb25Eb2VzTm90RXhpc3QnLFxyXG4gICAgICAgICAgICAgICAgNDA0OiAnaW52YWxpZFRhc2tJZCcsXHJcbiAgICAgICAgICAgICAgICA0MDU6ICdpbnZhbGlkVGFza0FjdGlvbicsXHJcbiAgICAgICAgICAgICAgICA0MDY6ICdub0RlZmF1bHREZXN0aW5hdGlvblNldCcsXHJcbiAgICAgICAgICAgICAgICA0MDc6ICdzZXREZXN0aW5hdGlvbkZhaWxlZCcsXHJcbiAgICAgICAgICAgICAgICA0MDg6ICdmaWxlRG9lc05vdEV4aXN0J1xyXG4gICAgICAgICAgICB9LFxyXG4gICAgICAgICAgICAnU1lOTy5Eb3dubG9hZFN0YXRpb24uU3RhdGlzdGljJzoge1xyXG4gICAgICAgICAgICB9LFxyXG4gICAgICAgICAgICAnU1lOTy5Eb3dubG9hZFN0YXRpb24uUlNTLlNpdGUnOiB7XHJcbiAgICAgICAgICAgIH0sXHJcbiAgICAgICAgICAgICdTWU5PLkRvd25sb2FkU3RhdGlvbi5SU1MuRmVlZCc6IHtcclxuICAgICAgICAgICAgfSxcclxuICAgICAgICAgICAgXCJTWU5PLkRvd25sb2FkU3RhdGlvbi5CVFNlYXJjaFwiOiB7XHJcbiAgICAgICAgICAgICAgICA0MDA6IFwidW5rbm93bkVycm9yXCIsXHJcbiAgICAgICAgICAgICAgICA0MDE6IFwiaW52YWxpZFBhcmFtZXRlclwiLFxyXG4gICAgICAgICAgICAgICAgNDAyOiBcInBhcnNlVXNlclNldHRpbmdzRmFpbGVkXCIsXHJcbiAgICAgICAgICAgICAgICA0MDM6IFwiZ2V0Q2F0ZWdvcnlGYWlsZWRcIixcclxuICAgICAgICAgICAgICAgIDQwNDogXCJnZXRTZWFyY2hSZXN1bHRGYWlsZWRcIixcclxuICAgICAgICAgICAgICAgIDQwNTogXCJnZXRVc2VyU2V0dGluZ3NGYWlsZWRcIlxyXG4gICAgICAgICAgICB9LFxyXG4gICAgICAgICAgICBcIlNZTk8uRmlsZVN0YXRpb25cIjoge1xyXG4gICAgICAgICAgICAgICAgNDAwOiBcImludmFsaWRQYXJhbWV0ZXJcIixcclxuICAgICAgICAgICAgICAgIDQwMTogXCJ1bmtub3duRXJyb3JcIixcclxuICAgICAgICAgICAgICAgIDQwMjogXCJzeXN0ZW1Jc1Rvb0J1c3lcIixcclxuICAgICAgICAgICAgICAgIDQwMzogXCJmaWxlT3BlcmF0aW9uTm90QWxsb3dlZEZvclVzZXJcIixcclxuICAgICAgICAgICAgICAgIDQwNDogXCJmaWxlT3BlcmF0aW9uTm90QWxsb3dlZEZvckdyb3VwXCIsXHJcbiAgICAgICAgICAgICAgICA0MDU6IFwiZmlsZU9wZXJhdGlvbk5vdEFsbG93ZWRGb3JHcm91cFwiLFxyXG4gICAgICAgICAgICAgICAgNDA2OiBcImNvdWxkTm90R2V0UGVybWlzc2lvbkluZm9ybWF0aW9uRnJvbUFjY291bnRTZXJ2ZXJcIixcclxuICAgICAgICAgICAgICAgIDQwNzogXCJmaWxlU3RhdGlvbk9wZXJhdGlvbk5vdEFsbG93ZWRcIixcclxuICAgICAgICAgICAgICAgIDQwODogXCJub1N1Y2hGaWxlT3JEaXJlY3RvcnlcIixcclxuICAgICAgICAgICAgICAgIDQwOTogXCJOb24tc3VwcG9ydGVkIGZpbGUgc3lzdGVtXCIsIC8vIE5vdCB0cmFuc2xhdGVkXHJcbiAgICAgICAgICAgICAgICA0MTA6IFwiZmFpbGVkVG9Db25uZWN0VG9OZXR3b3JrRmlsZVN5c3RlbVwiLFxyXG4gICAgICAgICAgICAgICAgNDExOiBcInJlYWRPbmx5RmlsZVN5c3RlbVwiLFxyXG4gICAgICAgICAgICAgICAgNDEyOiBcImZpbGVPckZvbGRlck5hbWVUb29Mb25nTm9uRW5jcnlwdGVkXCIsXHJcbiAgICAgICAgICAgICAgICA0MTM6IFwiZmlsZU9yRm9sZGVyTmFtZVRvb0xvbmdFbmNyeXB0ZWRcIixcclxuICAgICAgICAgICAgICAgIDQxNDogXCJmaWxlT3JGb2xkZXJBbHJlYWR5RXhpc3RzXCIsXHJcbiAgICAgICAgICAgICAgICA0MTU6IFwiZGlza1F1b3RhRXhjZWVkZWRcIixcclxuICAgICAgICAgICAgICAgIDQxNjogXCJub1NwYWNlT25EZXZpY2VcIixcclxuICAgICAgICAgICAgICAgIDQxNzogXCJmaWxlU3RhdGlvbklPRXJyb3JcIixcclxuICAgICAgICAgICAgICAgIDQxODogXCJmaWxlU3RhdGlvbklsbGVnYWxOYW1lT3JQYXRoXCIsXHJcbiAgICAgICAgICAgICAgICA0MTk6IFwiZmlsZVN0YXRpb25JbGxlZ2FsRmlsZU5hbWVcIixcclxuICAgICAgICAgICAgICAgIDQyMDogXCJmaWxlU3RhdGlvbklsbGVnYWxGaWxlTmFtZUZBVFwiLFxyXG4gICAgICAgICAgICAgICAgNDIxOiBcInN5c3RlbUlzVG9vQnVzeVwiLFxyXG4gICAgICAgICAgICAgICAgNTk5OiBcIk5vIHN1Y2ggdGFzayBvZiB0aGUgZmlsZSBvcGVyYXRpb25cIiAvLyBOb3QgdHJhbnNsYXRlZFxyXG4gICAgICAgICAgICB9LFxyXG4gICAgICAgICAgICBcIlNZTk8uRmlsZVN0YXRpb24uRGVsZXRlXCI6IHtcclxuICAgICAgICAgICAgICAgIDkwMDogXCJGYWlsZWQgdG8gZGVsZXRlIGZpbGUocykgb3IgZm9sZGVyKHMpLlwiIC8vIE5vdCB0cmFuc2xhdGVkXHJcbiAgICAgICAgICAgIH0sXHJcbiAgICAgICAgICAgIFwiU1lOTy5GaWxlU3RhdGlvbi5DcmVhdGVGb2xkZXJcIjoge1xyXG4gICAgICAgICAgICAgICAgMTEwMDogXCJmaWxlU3RhdGlvbkZhaWxlZFRvQ3JlYXRlRm9sZGVyXCIsXHJcbiAgICAgICAgICAgICAgICAxMTAxOiBcImZpbGVTdGF0aW9uTnVtYmVyT2ZGb2xkZXJFeGNlZWRzU3lzdGVtTGltaXRhdGlvblwiXHJcbiAgICAgICAgICAgIH0sXHJcbiAgICAgICAgICAgIFwiU1lOTy5GaWxlU3RhdGlvbi5SZW5hbWVcIjoge1xyXG4gICAgICAgICAgICAgICAgMTIwMDogXCJmaWxlU3RhdGlvbkZhaWxlZFRvUmVuYW1lXCJcclxuICAgICAgICAgICAgfVxyXG5cclxuICAgICAgICB9XHJcblxyXG4gICAgICAgIHZhciBtZXNzYWdlID0gZ2VuZXJhbEVycm9yc1tlcnJvckNvZGVdO1xyXG4gICAgICAgIFxyXG4gICAgICAgIGlmKCFtZXNzYWdlKVxyXG4gICAgICAgIHtcclxuICAgICAgICAgICAgdmFyIGFwaU5hbWVBcnJheSA9IGFwaU5hbWUuc3BsaXQoXCIuXCIpO1xyXG4gICAgICAgICAgICB3aGlsZShhcGlOYW1lQXJyYXkubGVuZ3RoID4gMCAmJiAhbWVzc2FnZSl7XHJcbiAgICAgICAgICAgICAgICB2YXIgYXBpTmFtZVBhcnQgPSBhcGlOYW1lQXJyYXkuam9pbihcIi5cIik7XHJcbiAgICAgICAgICAgICAgICBpZih0eXBlb2YoYXBpRXJyb3JzW2FwaU5hbWVQYXJ0XSkgPT09IFwib2JqZWN0XCIpIHtcclxuICAgICAgICAgICAgICAgICAgICBtZXNzYWdlID0gYXBpRXJyb3JzW2FwaU5hbWVQYXJ0XVtlcnJvckNvZGVdO1xyXG4gICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICBhcGlOYW1lQXJyYXkucG9wKCk7XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICB9XHJcbiAgICAgICAgXHJcbiAgICAgICAgcmV0dXJuIG1lc3NhZ2UgPyBtZXNzYWdlIDogJ3Vua25vd25FcnJvcic7XHJcbiAgICB9XHJcbiAgICBcclxuICAgIHByaXZhdGUgX2NyZWF0ZVRhc2tPYmplY3RzKGRzVGFza3M6IEFycmF5PGFueT4pIHtcclxuICAgICAgICBkc1Rhc2tzLnNvcnQoKGEsIGIpID0+IHtcclxuICAgICAgICAgICAgdmFyIHRpbWVTdGFtcEEgPSBwYXJzZUludChhLmFkZGl0aW9uYWwuZGV0YWlsLmNyZWF0ZV90aW1lKTtcclxuICAgICAgICAgICAgdmFyIHRpbWVTdGFtcEIgPSBwYXJzZUludChiLmFkZGl0aW9uYWwuZGV0YWlsLmNyZWF0ZV90aW1lKTtcclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgIHJldHVybiAodGltZVN0YW1wQSA8IHRpbWVTdGFtcEIpID8gLTEgOiAodGltZVN0YW1wQSA+IHRpbWVTdGFtcEIpID8gMSA6IDA7XHJcbiAgICAgICAgfSk7XHJcbiAgICAgICAgXHJcbiAgICAgICAgdmFyIHRhc2tzID0gbmV3IEFycmF5PElEb3dubG9hZFN0YXRpb25UYXNrPigpO1xyXG4gICAgICAgIGZvciAodmFyIGkgPSAwOyBpIDwgZHNUYXNrcy5sZW5ndGg7IGkrKykge1xyXG4gICAgICAgICAgICB2YXIgdGFzayA9IGRzVGFza3NbaV07XHJcbiAgICAgICAgICAgIFxyXG4gICAgICAgICAgICB2YXIgdGFza1RpdGxlOiBzdHJpbmc7XHJcbiAgICAgICAgICAgIHRyeSB7XHJcbiAgICAgICAgICAgICAgICB0YXNrVGl0bGUgPSBkZWNvZGVVUklDb21wb25lbnQodGFzay50aXRsZSk7XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgY2F0Y2goZXJyb3IpIHtcclxuICAgICAgICAgICAgICAgIHRhc2tUaXRsZSA9IHRhc2sudGl0bGU7XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgIHZhciBuZXdUYXNrOiBJRG93bmxvYWRTdGF0aW9uVGFzayA9IHtcclxuICAgICAgICAgICAgICAgIGlkOiB0YXNrLmlkLFxyXG4gICAgICAgICAgICAgICAgdHlwZTogdGFzay50eXBlLFxyXG4gICAgICAgICAgICAgICAgdGl0bGU6IHRhc2tUaXRsZSxcclxuICAgICAgICAgICAgICAgIHNpemU6IHBhcnNlSW50KHRhc2suc2l6ZSksXHJcbiAgICAgICAgICAgICAgICBzaXplU3RyaW5nOiB0aGlzLl9ieXRlc1RvU3RyaW5nKHRhc2suc2l6ZSksXHJcbiAgICAgICAgICAgICAgICBzdGF0dXM6IHRhc2suc3RhdHVzLFxyXG4gICAgICAgICAgICAgICAgZXJyb3JEZXRhaWw6IHRhc2suc3RhdHVzID09IFwiZXJyb3JcIiAmJiB0YXNrLnN0YXR1c19leHRyYSA/IHRhc2suc3RhdHVzX2V4dHJhLmVycm9yX2RldGFpbCA6IG51bGwsXHJcbiAgICAgICAgICAgICAgICBkb3dubG9hZFByb2dyZXNzU3RyaW5nOiAoKHBhcnNlSW50KHRhc2suYWRkaXRpb25hbC50cmFuc2Zlci5zaXplX2Rvd25sb2FkZWQpIC8gcGFyc2VJbnQodGFzay5zaXplKSkgKiAxMDApLnRvU3RyaW5nKCkgKyBcIiVcIixcclxuICAgICAgICAgICAgICAgIHVuemlwUHJvZ3Jlc3M6IHRhc2suc3RhdHVzID09IFwiZXh0cmFjdGluZ1wiICYmIHRhc2suc3RhdHVzX2V4dHJhID8gdGFzay5zdGF0dXNfZXh0cmEudW56aXBfcHJvZ3Jlc3MgOiBudWxsLFxyXG4gICAgICAgICAgICAgICAgdW56aXBQcm9ncmVzc1N0cmluZzogdGFzay5zdGF0dXMgPT0gXCJleHRyYWN0aW5nXCIgJiYgdGFzay5zdGF0dXNfZXh0cmEgJiYgdGFzay5zdGF0dXNfZXh0cmEudW56aXBfcHJvZ3Jlc3MgPyB0YXNrLnN0YXR1c19leHRyYS51bnppcF9wcm9ncmVzcy50b1N0cmluZygpICsgXCIlXCIgOiBudWxsLFxyXG4gICAgICAgICAgICAgICAgc2l6ZURvd25sb2FkZWQ6IHBhcnNlSW50KHRhc2suYWRkaXRpb25hbC50cmFuc2Zlci5zaXplX2Rvd25sb2FkZWQpLFxyXG4gICAgICAgICAgICAgICAgc2l6ZURvd25sb2FkZWRTdHJpbmc6IHRoaXMuX2J5dGVzVG9TdHJpbmcocGFyc2VJbnQodGFzay5hZGRpdGlvbmFsLnRyYW5zZmVyLnNpemVfZG93bmxvYWRlZCkpLFxyXG4gICAgICAgICAgICAgICAgc2l6ZVVwbG9hZGVkOiBwYXJzZUludCh0YXNrLmFkZGl0aW9uYWwudHJhbnNmZXIuc2l6ZV91cGxvYWRlZCksXHJcbiAgICAgICAgICAgICAgICBzaXplVXBsb2FkZWRTdHJpbmc6IHRoaXMuX2J5dGVzVG9TdHJpbmcocGFyc2VJbnQodGFzay5hZGRpdGlvbmFsLnRyYW5zZmVyLnNpemVfdXBsb2FkZWQpKSxcclxuICAgICAgICAgICAgICAgIHNwZWVkRG93bmxvYWQ6IHBhcnNlSW50KHRhc2suYWRkaXRpb25hbC50cmFuc2Zlci5zcGVlZF9kb3dubG9hZCksXHJcbiAgICAgICAgICAgICAgICBzcGVlZERvd25sb2FkU3RyaW5nOiB0aGlzLl9ieXRlc1RvU3RyaW5nKHBhcnNlSW50KHRhc2suYWRkaXRpb25hbC50cmFuc2Zlci5zcGVlZF9kb3dubG9hZCkpICsgXCIvc1wiLFxyXG4gICAgICAgICAgICAgICAgc3BlZWRVcGxvYWQ6IHBhcnNlSW50KHRhc2suYWRkaXRpb25hbC50cmFuc2Zlci5zcGVlZF91cGxvYWQpLFxyXG4gICAgICAgICAgICAgICAgc3BlZWRVcGxvYWRTdHJpbmc6IHRoaXMuX2J5dGVzVG9TdHJpbmcocGFyc2VJbnQodGFzay5hZGRpdGlvbmFsLnRyYW5zZmVyLnNwZWVkX3VwbG9hZCkpICsgXCIvc1wiXHJcbiAgICAgICAgICAgIH07XHJcbiAgICAgICAgICAgIFxyXG4gICAgICAgICAgICBuZXdUYXNrLnVwbG9hZFJhdGlvID0gKHBhcnNlSW50KHRhc2suYWRkaXRpb25hbC50cmFuc2Zlci5zaXplX3VwbG9hZGVkKSAvIHBhcnNlSW50KHRhc2suc2l6ZSkpICogMTAwO1xyXG4gICAgICAgICAgICBuZXdUYXNrLnVwbG9hZFJhdGlvU3RyaW5nID0gKE1hdGgucm91bmQobmV3VGFzay51cGxvYWRSYXRpbyAqIDEwMCkgLyAxMDApLnRvU3RyaW5nKCkgKyBcIiVcIjtcclxuICAgICAgICAgICAgbmV3VGFzay5ldGEgID0gbnVsbDtcclxuICAgICAgICAgICAgbmV3VGFzay5ldGFTdHJpbmcgPSBudWxsO1xyXG4gICAgICAgICAgICBcclxuICAgICAgICAgICAgaWYoIWlzTmFOKG5ld1Rhc2suc3BlZWREb3dubG9hZCkgJiYgIWlzTmFOKG5ld1Rhc2suc2l6ZSkgJiYgIWlzTmFOKG5ld1Rhc2suc2l6ZURvd25sb2FkZWQpKXtcclxuICAgICAgICAgICAgICAgIHZhciByZW1haW5pbmcgPSBuZXdUYXNrLnNpemUgLSBuZXdUYXNrLnNpemVEb3dubG9hZGVkO1xyXG4gICAgICAgICAgICAgICAgaWYocmVtYWluaW5nID4gMCAmJiBuZXdUYXNrLnNwZWVkRG93bmxvYWQgPiAwKSB7XHJcbiAgICAgICAgICAgICAgICAgICAgbmV3VGFzay5ldGEgPSByZW1haW5pbmcgLyBuZXdUYXNrLnNwZWVkRG93bmxvYWQ7XHJcbiAgICAgICAgICAgICAgICAgICAgbmV3VGFzay5ldGFTdHJpbmcgPSBzZWNvbmRzVG9TdHIobmV3VGFzay5ldGEpO1xyXG4gICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgZWxzZSBpZihyZW1haW5pbmcgPiAwKSB7XHJcbiAgICAgICAgICAgICAgICAgICAgbmV3VGFzay5ldGEgPSBudWxsOy8vIGluZmluaXRlXHJcbiAgICAgICAgICAgICAgICAgICAgbmV3VGFzay5ldGFTdHJpbmcgPSBcIjhcIjtcclxuICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICBcclxuICAgICAgICAgICAgdGFza3MucHVzaChuZXdUYXNrKTtcclxuICAgICAgICB9XHJcbiAgICAgICAgcmV0dXJuIHRhc2tzO1xyXG4gICAgfVxyXG4gICAgXHJcblxyXG4gICAgcHVibGljIGdldFN1cHBvcnRlZEZlYXR1cmVzKGNhbGxiYWNrOiAoZmVhdHVyZXM6IEZlYXR1cmVTdXBwb3J0SW5mbykgPT4gdm9pZCkge1xyXG4gICAgICAgIFxyXG4gICAgICAgIHRoaXMuZ2V0QXBpSW5mbygoc3VjY2VzcywgZGF0YSkgPT4ge1xyXG4gICAgICAgICAgICB2YXIgZmVhdHVyZXM6IEZlYXR1cmVTdXBwb3J0SW5mbyA9IHtcclxuICAgICAgICAgICAgICAgIGRlc3RpbmF0aW9uRm9sZGVyOiBmYWxzZSxcclxuICAgICAgICAgICAgICAgIGZpbGVTdGF0aW9uRGVsZXRlOiBmYWxzZVxyXG4gICAgICAgICAgICB9O1xyXG4gICAgICAgICAgICBcclxuICAgICAgICAgICAgaWYgKHN1Y2Nlc3MpXHJcbiAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgIGlmIChkYXRhWydTWU5PLkRvd25sb2FkU3RhdGlvbi5UYXNrJ10gJiYgZGF0YVsnU1lOTy5Eb3dubG9hZFN0YXRpb24uVGFzayddLm1pblZlcnNpb24gPD0gMlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgJiYgZGF0YVsnU1lOTy5Eb3dubG9hZFN0YXRpb24uVGFzayddLm1heFZlcnNpb24gPj0gMlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgJiYgZGF0YVsnU1lOTy5GaWxlU3RhdGlvbi5MaXN0J11cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICYmIGRhdGFbJ1NZTk8uRmlsZVN0YXRpb24uTGlzdCddLm1pblZlcnNpb24gPD0gMVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgJiYgZGF0YVsnU1lOTy5GaWxlU3RhdGlvbi5MaXN0J10ubWF4VmVyc2lvbiA+PSAxKSB7XHJcbiAgICAgICAgICAgICAgICAgICAgZmVhdHVyZXMuZGVzdGluYXRpb25Gb2xkZXIgPSB0cnVlO1xyXG4gICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICBpZiAoZGF0YVsnU1lOTy5GaWxlU3RhdGlvbi5EZWxldGUnXSAmJiBkYXRhWydTWU5PLkZpbGVTdGF0aW9uLkRlbGV0ZSddLm1pblZlcnNpb24gPj0gMVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgJiYgZGF0YVsnU1lOTy5GaWxlU3RhdGlvbi5EZWxldGUnXS5tYXhWZXJzaW9uIDw9IDEpIHtcclxuICAgICAgICAgICAgICAgICAgICBmZWF0dXJlcy5maWxlU3RhdGlvbkRlbGV0ZSA9IHRydWU7XHJcbiAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgIGlmKHR5cGVvZiBjYWxsYmFjayA9PT0gXCJmdW5jdGlvblwiKVxyXG4gICAgICAgICAgICAgICAgY2FsbGJhY2soZmVhdHVyZXMpO1xyXG4gICAgICAgIH0pO1xyXG4gICAgfVxyXG5cclxuICAgIHB1YmxpYyBnZXRBcGlJbmZvKGNhbGxiYWNrOiAoc3VjY2VzczogYm9vbGVhbiwgYXBpSW5mbzogYW55KSA9PiB2b2lkKSB7XHJcbiAgICAgICAgdmFyIHBhcmFtczogU3lub0FwaUluZm9SZXF1ZXN0ID0ge1xyXG4gICAgICAgICAgICBxdWVyeTogJ0FMTCdcclxuICAgICAgICB9O1xyXG4gICAgICAgIFxyXG4gICAgICAgIGlmKHRoaXMuX2FwaUluZm9GZXRjaGVkID09PSB0cnVlKSB7XHJcbiAgICAgICAgICAgIGNhbGxiYWNrKHRydWUsIHRoaXMuX2FwaUluZm8pO1xyXG4gICAgICAgICAgICByZXR1cm47XHJcbiAgICAgICAgfVxyXG5cclxuICAgICAgICB0aGlzLl9hcGlDYWxsKCdTWU5PLkFQSS5JbmZvJywgJ3F1ZXJ5JywgMSwgcGFyYW1zLCAoc3VjY2VzcywgZGF0YSkgPT4ge1xyXG4gICAgICAgICAgICBpZiAoc3VjY2Vzcykge1xyXG4gICAgICAgICAgICAgICAgLy8gQ2hlY2sgcHJlc2VuY2Ugb2YgcmVxdWlyZWQgQVBJJ3NcclxuICAgICAgICAgICAgICAgIGlmICh0eXBlb2YgZGF0YVsnU1lOTy5BUEkuQXV0aCddID09PSAnb2JqZWN0JyAmJiBkYXRhWydTWU5PLkFQSS5BdXRoJ10ubWluVmVyc2lvbiA8PSAyICYmIGRhdGFbJ1NZTk8uQVBJLkF1dGgnXS5tYXhWZXJzaW9uID49IDIgJiZcclxuICAgICAgICAgICAgICAgICAgICAgICAgdHlwZW9mIGRhdGFbJ1NZTk8uRG93bmxvYWRTdGF0aW9uLkluZm8nXSA9PT0gJ29iamVjdCcgJiYgdHlwZW9mIGRhdGFbJ1NZTk8uRG93bmxvYWRTdGF0aW9uLlRhc2snXSA9PT0gJ29iamVjdCcgJiZcclxuICAgICAgICAgICAgICAgICAgICAgICAgdHlwZW9mIGRhdGFbJ1NZTk8uRG93bmxvYWRTdGF0aW9uLlNjaGVkdWxlJ10gPT09ICdvYmplY3QnICYmIHR5cGVvZiBkYXRhWydTWU5PLkRvd25sb2FkU3RhdGlvbi5TdGF0aXN0aWMnXSA9PT0gJ29iamVjdCcpIHtcclxuICAgICAgICAgICAgICAgICAgICB0aGlzLl9hcGlJbmZvID0gZGF0YTtcclxuICAgICAgICAgICAgICAgICAgICB0aGlzLl9hcGlJbmZvRmV0Y2hlZCA9IHRydWU7XHJcbiAgICAgICAgICAgICAgICB9XHJcblxyXG4gICAgICAgICAgICAgICAgZWxzZSB7XHJcbiAgICAgICAgICAgICAgICAgICAgY29uc29sZS5sb2coXCJOb3QgYWxsIHJlcXVpcmVkIEFQSSdzIGFyZSBzdXBwb3J0ZWQgYXQgdGhlIHJlcXVpcmVkIHZlcnNpb24uXCIpO1xyXG4gICAgICAgICAgICAgICAgICAgIHN1Y2Nlc3MgPSBmYWxzZTtcclxuICAgICAgICAgICAgICAgICAgICBkYXRhID0gJ3JlcXVpcmVkQXBpc05vdEF2YWlsYWJsZSc7XHJcbiAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgIGlmKHR5cGVvZiBjYWxsYmFjayA9PT0gXCJmdW5jdGlvblwiKVxyXG4gICAgICAgICAgICAgICAgY2FsbGJhY2soc3VjY2VzcywgZGF0YSk7XHJcbiAgICAgICAgfSwgJ0dFVCcsIGZhbHNlLCBmYWxzZSk7XHJcbiAgICB9XHJcbiAgICBcclxuICAgIHB1YmxpYyBnZXREb3dubG9hZFN0YXRpb25BcGlJbmZvKGNhbGxiYWNrOiAoc3VjY2VzczogYm9vbGVhbiwgZGF0YTogYW55KSA9PiB2b2lkKSB7XHJcbiAgICAgICAgdGhpcy5fYXBpQ2FsbCgnU1lOTy5Eb3dubG9hZFN0YXRpb24uSW5mbycsICdnZXRpbmZvJywgMSwgbnVsbCwgKHN1Y2Nlc3MsIGRhdGEpID0+IHtcclxuICAgICAgICAgICAgaWYgKHN1Y2Nlc3MgPT09IHRydWUpIHtcclxuICAgICAgICAgICAgICAgIHRoaXMuX2lzTWFuYWdlciA9IGRhdGEuaXNfbWFuYWdlcjtcclxuICAgICAgICAgICAgICAgIHRoaXMuX3ZlcnNpb24gPSBkYXRhLnZlcnNpb247XHJcbiAgICAgICAgICAgICAgICB0aGlzLl92ZXJzaW9uU3RyaW5nID0gZGF0YS52ZXJzaW9uX3N0cmluZztcclxuICAgICAgICAgICAgfVxyXG5cclxuICAgICAgICAgICAgaWYgKHR5cGVvZiBjYWxsYmFjayA9PT0gXCJmdW5jdGlvblwiKVxyXG4gICAgICAgICAgICAgICAgY2FsbGJhY2soc3VjY2VzcywgZGF0YSk7XHJcbiAgICAgICAgfSwgbnVsbCwgZmFsc2UsIGZhbHNlKTtcclxuICAgIH1cclxuXHJcbiAgICBwdWJsaWMgZ2V0RG93bmxvYWRTdGF0aW9uQ29uZmlnKGNhbGxiYWNrOiAoc3VjY2VzczogYm9vbGVhbiwgZGF0YTogYW55KSA9PiB2b2lkKSB7XHJcbiAgICAgICAgdGhpcy5fYXBpQ2FsbChcIlNZTk8uRG93bmxvYWRTdGF0aW9uLkluZm9cIiwgXCJnZXRjb25maWdcIiwgMSwgbnVsbCwgY2FsbGJhY2spO1xyXG4gICAgfVxyXG5cclxuICAgIHB1YmxpYyBnZXREc21WZXJzaW9uKGNhbGxiYWNrOiAoc3VjY2VzczogYm9vbGVhbiwgZGF0YTogYW55KSA9PiB2b2lkKSB7XHJcbiAgICAgICAgaWYoIXRoaXMuX3NldHRpbmdzLnByb3RvY29sIHx8ICF0aGlzLl9zZXR0aW5ncy51cmwgfHwgIXRoaXMuX3NldHRpbmdzLnBvcnQpXHJcbiAgICAgICAge1xyXG4gICAgICAgICAgICBpZih0eXBlb2YgY2FsbGJhY2sgPT09IFwiZnVuY3Rpb25cIikge1xyXG4gICAgICAgICAgICAgICAgY2FsbGJhY2soZmFsc2UsIFwiY291bGROb3RDb25uZWN0XCIpO1xyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIHJldHVybjtcclxuICAgICAgICB9XHJcbiAgICAgICAgXHJcbiAgICAgICAgdmFyIHVybCA9IHRoaXMuX3NldHRpbmdzLnByb3RvY29sICsgdGhpcy5fc2V0dGluZ3MudXJsICsgXCI6XCIgKyB0aGlzLl9zZXR0aW5ncy5wb3J0ICsgXCIvd2VibWFuL2luZGV4LmNnaVwiO1xyXG4gICAgICAgICQuYWpheCh7XHJcbiAgICAgICAgICAgIHVybDogdXJsLFxyXG4gICAgICAgICAgICBkYXRhVHlwZTogXCJodG1sXCIsXHJcbiAgICAgICAgICAgIHRpbWVvdXQ6IDIwMDAwXHJcbiAgICAgICAgICAgIH0pXHJcbiAgICAgICAgICAgIC5kb25lKChkKSA9PiB7XHJcbiAgICAgICAgICAgICAgICB2YXIgcmVzdWx0OiBTeW5vRHNtSW5mb1Jlc3BvbnNlID0ge307XHJcbiAgICAgICAgICAgICAgICB0cnkge1xyXG4gICAgICAgICAgICAgICAgICAgIHZhciBkYXRhID0gJChkKTtcclxuICAgICAgICAgICAgICAgICAgICB2YXIgc2VhcmNoU3RyaW5nID0gXCJTWU5PLlNEUy5TZXNzaW9uXCI7XHJcbiAgICAgICAgICAgICAgICAgICAgdmFyIHNlc3Npb25JbmZvID0gJC50cmltKGRhdGEuZmlsdGVyKFwic2NyaXB0Om5vdChbc3JjXSlcIikuZmlsdGVyKFwiOmNvbnRhaW5zKFwiICsgc2VhcmNoU3RyaW5nICsgXCIpXCIpLmZpcnN0KCkudGV4dCgpKTtcclxuICAgICAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgICBpZihzZXNzaW9uSW5mbyl7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIHNlc3Npb25JbmZvID0gc2Vzc2lvbkluZm8ucmVwbGFjZShcIlNZTk8uU0RTLlNlc3Npb24gPSBcIiwgXCJcIikuc3BsaXQoXCJFeHQudXRpbC5cIilbMF07XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIHNlc3Npb25JbmZvID0gc2Vzc2lvbkluZm8ucmVwbGFjZShcIjtcIiwgXCJcIik7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIHZhciBzZXNzaW9uSW5mb09iaiA9IEpTT04ucGFyc2Uoc2Vzc2lvbkluZm8pO1xyXG4gICAgICAgICAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgICAgICAgdmFyIGRldmljZU5hbWUgPSAkLnRyaW0oc2Vzc2lvbkluZm9PYmouaG9zdG5hbWUpO1xyXG4gICAgICAgICAgICAgICAgICAgICAgICBpZihkZXZpY2VOYW1lLmxlbmd0aCA+IDApXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuZGV2aWNlSW5mby5kZXZpY2VOYW1lID0gZGV2aWNlTmFtZTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAvLyBEU00gVkVSU0lPTlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAvLyBEU00gPD0gNC4xXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIHZhciBzY3JpcHRWZXJzaW9uID0gcGFyc2VJbnQoZGF0YS5maWx0ZXIoJ3NjcmlwdFtzcmNdJykuZmlyc3QoKS5hdHRyKCdzcmMnKS5zcGxpdCgnP3Y9JykucG9wKCkpO1xyXG4gICAgICAgICAgICAgICAgICAgICAgICBpZihzY3JpcHRWZXJzaW9uICYmIHNjcmlwdFZlcnNpb24gPCAzNzAwKVxyXG4gICAgICAgICAgICAgICAgICAgICAgICB7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICByZXN1bHQudmVyc2lvbiA9IHNjcmlwdFZlcnNpb24udG9TdHJpbmcoKTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHJlc3VsdC52ZXJzaW9uX3N0cmluZyA9IHRoaXMuX2dldERzbVZlcnNpb25TdHJpbmcoc2NyaXB0VmVyc2lvbik7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgICAgICAgICAgLy8gRFNNIDQuM1xyXG4gICAgICAgICAgICAgICAgICAgICAgICBlbHNlIGlmKHNlc3Npb25JbmZvT2JqLmZ1bGx2ZXJzaW9uKVxyXG4gICAgICAgICAgICAgICAgICAgICAgICB7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICByZXN1bHQudmVyc2lvbiA9IHNlc3Npb25JbmZvT2JqLmZ1bGx2ZXJzaW9uLnNwbGl0KFwiLVwiKVswXTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHJlc3VsdC52ZXJzaW9uX3N0cmluZyA9IHRoaXMuX2dldERzbVZlcnNpb25TdHJpbmcocGFyc2VJbnQocmVzdWx0LnZlcnNpb24pKTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAvLyBEU00gNC4yXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIGVsc2UgaWYoc2Vzc2lvbkluZm9PYmoudmVyc2lvbilcclxuICAgICAgICAgICAgICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgcmVzdWx0LnZlcnNpb24gPSBzZXNzaW9uSW5mb09iai52ZXJzaW9uO1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgcmVzdWx0LnZlcnNpb25fc3RyaW5nID0gdGhpcy5fZ2V0RHNtVmVyc2lvblN0cmluZyhwYXJzZUludChyZXN1bHQudmVyc2lvbikpO1xyXG4gICAgICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgICAgIGVsc2Uge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICB2YXIgZGV2aWNlTmFtZSA9IGRhdGEuZmlsdGVyKFwidGl0bGVcIikudGV4dCgpLnNwbGl0KGRlY29kZVVSSUNvbXBvbmVudChcIi0lQzIlQTBTeW5vbG9neVwiKSlbMF0udHJpbSgpO1xyXG4gICAgICAgICAgICAgICAgICAgICAgICBpZihkZXZpY2VOYW1lKVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgdGhpcy5kZXZpY2VJbmZvLmRldmljZU5hbWUgPSBkZXZpY2VOYW1lO1xyXG4gICAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgIGNhdGNoIChleGNlcHRpb24pIHtcclxuICAgICAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgIFxyXG4gICAgICAgICAgICAgICAgLy8gRFNNIDUuMCtcclxuICAgICAgICAgICAgICAgIGlmKCFyZXN1bHQudmVyc2lvbiB8fCBwYXJzZUludChyZXN1bHQudmVyc2lvbikgPiA0MDAwKVxyXG4gICAgICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuZ2V0QXBpSW5mbygoc3VjY2VzcywgZGF0YSkgPT4ge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgICAgICAgaWYoIXN1Y2Nlc3MpIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNhbGxiYWNrKGZhbHNlLCBkYXRhKTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHJldHVybjtcclxuICAgICAgICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgICAgICAgdmFyIGRzbUluZm9BcGkgPSBkYXRhWydTWU5PLkRTTS5JbmZvJ107XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIGlmKGRzbUluZm9BcGkubWF4VmVyc2lvbiA9PSAxKSAvLyBEU00gNi4wIGJldGEgMSBhbmQgb2xkZXJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuX2FwaUNhbGwoJ1NZTk8uRFNNLkluZm8nLCAnZ2V0aW5mbycsIDEsIG51bGwsIGNhbGxiYWNrKTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgZWxzZSAvLyBEU00gNi4wIGJldGEgMiBhbmQgbGF0ZXJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuX2FwaUNhbGwoJ1NZTk8uRFNNLkluZm8nLCAnZ2V0aW5mbycsIDIsIG51bGwsIGNhbGxiYWNrKTsgXHJcbiAgICAgICAgICAgICAgICAgICAgfSk7XHJcbiAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICBlbHNlIGlmKHR5cGVvZiBjYWxsYmFjayA9PT0gXCJmdW5jdGlvblwiKVxyXG4gICAgICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgICAgIGNhbGxiYWNrKHRydWUsIHJlc3VsdCk7XHJcbiAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIH0pXHJcbiAgICAgICAgICAgIC5mYWlsKCh4aHIsIHRleHRTdGF0dXMsIGVycm9yVGhyb3duKSA9PiB7XHJcbiAgICAgICAgICAgICAgICBpZiAodHlwZW9mIChjYWxsYmFjaykgPT09ICdmdW5jdGlvbicpe1xyXG4gICAgICAgICAgICAgICAgICAgIGlmKHRleHRTdGF0dXMgPT0gXCJ0aW1lb3V0XCIpe1xyXG4gICAgICAgICAgICAgICAgICAgICAgICBjYWxsYmFjayhmYWxzZSwgXCJyZXF1ZXN0VGltZW91dFwiKTtcclxuICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICAgICAgZWxzZXtcclxuICAgICAgICAgICAgICAgICAgICAgICAgY2FsbGJhY2soZmFsc2UsIHRoaXMuX2dldEVycm9yU3RyaW5nKG51bGwsIDApKTtcclxuICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIH0pO1xyXG4gICAgfVxyXG4gICAgXHJcbiAgICBwdWJsaWMgbG9naW4oY2FsbGJhY2s6IChzdWNjZXNzOiBib29sZWFuLCBkYXRhOiBhbnkpID0+IHZvaWQpIHtcclxuICAgICAgICB2YXIgY2xpZW50VGltZSA9IE1hdGguZmxvb3IoKG5ldyBEYXRlKCkpLmdldFRpbWUoKSAvIDEwMDApO1xyXG4gICAgICAgIHZhciBwYXJhbXM6IFN5bm9BcGlBdXRoTG9naW5SZXF1ZXN0ID0ge1xyXG4gICAgICAgICAgICBhY2NvdW50OiB0aGlzLl9zZXR0aW5ncy51c2VybmFtZSxcclxuICAgICAgICAgICAgcGFzc3dkOiB0aGlzLl9zZXR0aW5ncy5wYXNzd29yZCxcclxuICAgICAgICAgICAgZm9ybWF0OiAnc2lkJyxcclxuICAgICAgICAgICAgc2Vzc2lvbjogXCJEb3dubG9hZFN0YXRpb25cIixcclxuICAgICAgICAgICAgY2xpZW50X3RpbWU6IGNsaWVudFRpbWUsXHJcbiAgICAgICAgICAgIHRpbWV6b25lOiBnZXRHTVRPZmZzZXQobmV3IERhdGUoKSlcclxuICAgICAgICB9O1xyXG4gICAgICAgIFxyXG4gICAgICAgIHRoaXMuX3NldFN0YXR1cyhcImxvZ2dpbmdJblwiKTtcclxuICAgICAgICBcclxuICAgICAgICB0aGlzLl9hcGlDYWxsKFwiU1lOTy5BUEkuRW5jcnlwdGlvblwiLCBcImdldGluZm9cIiwgMSwgeyBmb3JtYXQ6IFwibW9kdWxlXCIgfSwgKHN1Y2Nlc3MsIGRhdGEpID0+IHtcclxuICAgICAgICAgICAgaWYoc3VjY2VzcylcclxuICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgdmFyIGNpcGhlcktleSA9IGRhdGEuY2lwaGVya2V5O1xyXG4gICAgICAgICAgICAgICAgdmFyIHJzYU1vZHVsdXMgPSBkYXRhLnB1YmxpY19rZXk7XHJcbiAgICAgICAgICAgICAgICB2YXIgY2lwaGVyVG9rZW4gPSBkYXRhLmNpcGhlcnRva2VuO1xyXG4gICAgICAgICAgICAgICAgdmFyIHRpbWVCaWFzID0gZGF0YS5zZXJ2ZXJfdGltZSAtIE1hdGguZmxvb3IoK25ldyBEYXRlKCkgLyAxMDAwKTtcclxuICAgICAgICAgICAgICAgIFxyXG4gICAgICAgICAgICAgICAgdmFyIGVuY3J5cHRlZFBhcmFtcyA9IFNZTk8uRW5jcnlwdGlvbi5FbmNyeXB0UGFyYW0ocGFyYW1zLCBjaXBoZXJLZXksIHJzYU1vZHVsdXMsIGNpcGhlclRva2VuLCB0aW1lQmlhcyk7XHJcbiAgICAgICAgICAgICAgICBlbmNyeXB0ZWRQYXJhbXMuY2xpZW50X3RpbWUgPSBjbGllbnRUaW1lO1xyXG4gICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICBwYXJhbXMgPSBlbmNyeXB0ZWRQYXJhbXM7XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgIHZhciBhdXRoQXBpSW5mbyA9IHRoaXMuX2FwaUluZm9bJ1NZTk8uQVBJLkF1dGgnXTtcclxuICAgICAgICAgICAgdmFyIGF1dGhBcGlWZXJzaW9uID0gMjtcclxuICAgICAgICAgICAgaWYoYXV0aEFwaUluZm8ubWF4VmVyc2lvbiA+PSA0KSB7XHJcbiAgICAgICAgICAgICAgICBhdXRoQXBpVmVyc2lvbiA9IDQ7XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgIHRoaXMuX2FwaUNhbGwoJ1NZTk8uQVBJLkF1dGgnLCAnbG9naW4nLCBhdXRoQXBpVmVyc2lvbiwgcGFyYW1zLCAoc3VjY2VzcywgZGF0YSkgPT4ge1xyXG4gICAgICAgICAgICAgICAgaWYgKHN1Y2Nlc3MpIHtcclxuICAgICAgICAgICAgICAgICAgICB0aGlzLl9zaWQgPSBkYXRhLnNpZDtcclxuICAgICAgICAgICAgICAgICAgICB0aGlzLmdldERvd25sb2FkU3RhdGlvbkFwaUluZm8oKGRzQXBpU3VjY2VzcywgZHNBcGlEYXRhKSA9PiB7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIGlmKGRzQXBpU3VjY2Vzcykge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgdGhpcy5sb2FkVGFza3MoKHRhc2tzU3VjY2VzcywgdGFza3NEYXRhKSA9PiB7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgaWYodGFza3NTdWNjZXNzKSB7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuZGV2aWNlSW5mby5sb2dnZWRJbiA9IHRydWU7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuX3NldFN0YXR1cyhudWxsKTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgdGhpcy50cmlnZ2VyKFwibG9naW5TdGF0dXNDaGFuZ2VcIik7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGVsc2Uge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB0aGlzLmRldmljZUluZm8ubG9nZ2VkSW4gPSBmYWxzZTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgdGhpcy5fc2V0U3RhdHVzKHRhc2tzRGF0YSk7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMudHJpZ2dlcihcImxvZ2luU3RhdHVzQ2hhbmdlXCIpO1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBpZiAodHlwZW9mIGNhbGxiYWNrID09PSAnZnVuY3Rpb24nKVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjYWxsYmFjayh0YXNrc1N1Y2Nlc3MsIHRhc2tzRGF0YSk7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9KTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgICAgICAgICBlbHNlIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuX3NpZCA9IG51bGw7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB0aGlzLmRldmljZUluZm8ubG9nZ2VkSW4gPSBmYWxzZTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMuX3NldFN0YXR1cyhkYXRhKTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRoaXMudHJpZ2dlcihcImxvZ2luU3RhdHVzQ2hhbmdlXCIpO1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBpZiAodHlwZW9mIGNhbGxiYWNrID09PSAnZnVuY3Rpb24nKVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNhbGxiYWNrKGRzQXBpU3VjY2VzcywgZHNBcGlEYXRhKTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgICAgIH0pO1xyXG4gICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgZWxzZSB7XHJcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5kZXZpY2VJbmZvLmxvZ2dlZEluID0gZmFsc2U7XHJcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5fc2V0U3RhdHVzKGRhdGEpO1xyXG4gICAgICAgICAgICAgICAgICAgIHRoaXMudHJpZ2dlcihcImxvZ2luU3RhdHVzQ2hhbmdlXCIpO1xyXG5cclxuICAgICAgICAgICAgICAgICAgICBpZiAodHlwZW9mIGNhbGxiYWNrID09PSAnZnVuY3Rpb24nKVxyXG4gICAgICAgICAgICAgICAgICAgICAgICBjYWxsYmFjayhzdWNjZXNzLCBkYXRhKTtcclxuICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgfSwgbnVsbCwgZmFsc2UsIGZhbHNlKTtcclxuICAgICAgICB9KTtcclxuICAgIH1cclxuICAgIFxyXG4gICAgcHVibGljIGxvZ291dChjYWxsYmFjazogKHN1Y2Nlc3M6IGJvb2xlYW4sIGRhdGE6IGFueSkgPT4gdm9pZCkge1xyXG4gICAgICAgIHRoaXMuc3RvcEJhY2tncm91bmRVcGRhdGUoKTtcclxuICAgICAgICBcclxuICAgICAgICBpZighdGhpcy5fc2lkKVxyXG4gICAgICAgIHtcclxuICAgICAgICAgICAgaWYgKHR5cGVvZiBjYWxsYmFjayA9PT0gXCJmdW5jdGlvblwiKVxyXG4gICAgICAgICAgICAgICAgY2FsbGJhY2sodHJ1ZSwgbnVsbCk7XHJcbiAgICAgICAgICAgIHJldHVybjtcclxuICAgICAgICB9XHJcblxyXG4gICAgICAgIHZhciBwYXJhbXMgPSB7XHJcbiAgICAgICAgICAgIHNlc3Npb246ICdEb3dubG9hZFN0YXRpb24nXHJcbiAgICAgICAgfTtcclxuICAgICAgICBcclxuICAgICAgICB2YXIgYXV0aEFwaUluZm8gPSB0aGlzLl9hcGlJbmZvWydTWU5PLkFQSS5BdXRoJ107XHJcbiAgICAgICAgdmFyIGF1dGhBcGlWZXJzaW9uID0gMjtcclxuICAgICAgICBpZihhdXRoQXBpSW5mby5tYXhWZXJzaW9uID49IDQpIHtcclxuICAgICAgICAgICAgYXV0aEFwaVZlcnNpb24gPSA0O1xyXG4gICAgICAgIH1cclxuXHJcbiAgICAgICAgdGhpcy5fYXBpQ2FsbCgnU1lOTy5BUEkuQXV0aCcsICdsb2dvdXQnLCBhdXRoQXBpVmVyc2lvbiwgcGFyYW1zLCAoc3VjY2VzcywgZGF0YSkgPT4ge1xyXG4gICAgICAgICAgICB0aGlzLmRldmljZUluZm8ubG9nZ2VkSW4gPSBmYWxzZTtcclxuICAgICAgICAgICAgdGhpcy5fc2lkID0gbnVsbDtcclxuICAgICAgICAgICAgdGhpcy50YXNrcyA9IFtdO1xyXG4gICAgICAgICAgICB0aGlzLnRyaWdnZXIoXCJ0YXNrc1VwZGF0ZWRcIik7XHJcbiAgICAgICAgICAgIHRoaXMudHJpZ2dlcih7IHR5cGU6ICdsb2dpblN0YXR1c0NoYW5nZScsIHN1Y2Nlc3M6IHN1Y2Nlc3MsIGRhdGE6IGRhdGEgfSk7XHJcbiAgICAgICAgICAgIGlmICh0eXBlb2YgY2FsbGJhY2sgPT09IFwiZnVuY3Rpb25cIilcclxuICAgICAgICAgICAgICAgIGNhbGxiYWNrKHN1Y2Nlc3MsIGRhdGEpO1xyXG4gICAgICAgIH0sIG51bGwsIGZhbHNlLCBmYWxzZSk7XHJcbiAgICB9XHJcblxyXG4gICAgcHVibGljIGxvYWRUYXNrcyhjYWxsYmFjaz86IChzdWNjZXNzOiBib29sZWFuLCBkYXRhOiBhbnkpID0+IHZvaWQpIHtcclxuICAgICAgICB2YXIgcGFyYW1zID0ge1xyXG4gICAgICAgICAgICBhZGRpdGlvbmFsOiAndHJhbnNmZXIsZGV0YWlsJyxcclxuICAgICAgICAgICAgb2Zmc2V0OiAwLFxyXG4gICAgICAgICAgICBsaW1pdDogMTAxXHJcbiAgICAgICAgfTtcclxuXHJcbiAgICAgICAgdGhpcy5fYXBpQ2FsbCgnU1lOTy5Eb3dubG9hZFN0YXRpb24uVGFzaycsICdsaXN0JywgMSwgcGFyYW1zLCAoc3VjY2VzcywgZGF0YSkgPT4ge1xyXG4gICAgICAgICAgICBpZiAoc3VjY2Vzcykge1xyXG4gICAgICAgICAgICAgICAgdGhpcy50YXNrcyA9IHRoaXMuX2NyZWF0ZVRhc2tPYmplY3RzKGRhdGEudGFza3MpO1xyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIGVsc2Uge1xyXG4gICAgICAgICAgICAgICAgdGhpcy50YXNrcyA9IFtdO1xyXG4gICAgICAgICAgICAgICAgdGhpcy5fc2V0U3RhdHVzKGRhdGEpO1xyXG4gICAgICAgICAgICB9XHJcblxyXG4gICAgICAgICAgICB0aGlzLnRyaWdnZXIoXCJ0YXNrc1VwZGF0ZWRcIik7XHJcblxyXG4gICAgICAgICAgICBpZiAodHlwZW9mIGNhbGxiYWNrID09PSBcImZ1bmN0aW9uXCIpXHJcbiAgICAgICAgICAgICAgICBjYWxsYmFjayhzdWNjZXNzLCBkYXRhKTtcclxuICAgICAgICB9KTtcclxuICAgIH1cclxuICAgIFxyXG4gICAgcHVibGljIGNyZWF0ZVRhc2tGcm9tVXJsKHVybDogc3RyaW5nW10sIHVzZXJuYW1lOiBzdHJpbmcsIHBhc3N3b3JkOiBzdHJpbmcsIHVuemlwUGFzc3dvcmQ6IHN0cmluZywgZGVzdGluYXRpb25Gb2xkZXI6IHN0cmluZywgY2FsbGJhY2s6IChzdWNjZXNzOiBib29sZWFuLCBkYXRhOiBhbnkpID0+IHZvaWQpIHtcclxuICAgICAgICBpZiAoIUFycmF5LmlzQXJyYXkodXJsKSlcclxuICAgICAgICAgICAgdXJsID0gWyg8YW55PnVybCldO1xyXG5cclxuICAgICAgICAvLyBSZXBsYWNlIGNvbW1hJ3MgaW4gVVJMJ3Mgd2l0aCBhbiBwZXJjZW50LWVuY29kZWQgY29tbWEuIFRoaXMgY2F1c2VzIHRoZSBjb21tYSB0byBiZSBkb3VibGUtZW5jb2RlZFxyXG4gICAgICAgIC8vIHRvICUyNTJDIHdoZW4gcG9zdGVkIHRvIERvd25sb2FkIFN0YXRpb24uIERvd25sb2FkIFN0YXRpb24gaW50ZXJwcmV0cyBzaW5nbGUtZW5jb2RlZCBjb21tYSdzICglMkMpXHJcbiAgICAgICAgLy8gYXMgc2VwZXJhdGlvbiBjaGFyYWN0ZXIgZm9yIG11bHRpcGxlIFVSTCdzXHJcbiAgICAgICAgZm9yKHZhciBpID0gMDsgaSA8IHVybC5sZW5ndGg7IGkrKykge1xyXG4gICAgICAgICAgICB3aGlsZSh1cmxbaV0uaW5kZXhPZihcIixcIikgIT09IC0xKSB7XHJcbiAgICAgICAgICAgICAgICB1cmxbaV0gPSB1cmxbaV0ucmVwbGFjZShcIixcIiwgZW5jb2RlVVJJQ29tcG9uZW50KFwiLFwiKSk7XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICB9XHJcbiAgICAgICAgXHJcbiAgICAgICAgdmFyIHBhcmFtczogU3lub0Rvd25sb2FkU3RhdGlvblRhc2tDcmVhdGVSZXF1ZXN0ID0ge1xyXG4gICAgICAgICAgICB1cmk6IHVybC5qb2luKFwiLFwiKVxyXG4gICAgICAgIH07XHJcblxyXG4gICAgICAgIGlmICh1c2VybmFtZSlcclxuICAgICAgICAgICAgcGFyYW1zLnVzZXJuYW1lID0gdXNlcm5hbWU7XHJcblxyXG4gICAgICAgIGlmIChwYXNzd29yZClcclxuICAgICAgICAgICAgcGFyYW1zLnBhc3N3b3JkID0gcGFzc3dvcmQ7XHJcblxyXG4gICAgICAgIGlmICh1bnppcFBhc3N3b3JkKVxyXG4gICAgICAgICAgICBwYXJhbXMudW56aXBfcGFzc3dvcmQgPSB1bnppcFBhc3N3b3JkO1xyXG4gICAgICAgIFxyXG4gICAgICAgIGlmKGRlc3RpbmF0aW9uRm9sZGVyKVxyXG4gICAgICAgIHtcclxuICAgICAgICAgICAgaWYoZGVzdGluYXRpb25Gb2xkZXIuY2hhckF0KDApID09IFwiL1wiKVxyXG4gICAgICAgICAgICAgICAgZGVzdGluYXRpb25Gb2xkZXIgPSBkZXN0aW5hdGlvbkZvbGRlci5zdWJzdHIoMSk7XHJcbiAgICAgICAgICAgIHBhcmFtcy5kZXN0aW5hdGlvbiA9IGRlc3RpbmF0aW9uRm9sZGVyO1xyXG4gICAgICAgIH1cclxuXHJcbiAgICAgICAgdGhpcy5fYXBpQ2FsbCgnU1lOTy5Eb3dubG9hZFN0YXRpb24uVGFzaycsICdjcmVhdGUnLCAxLCBwYXJhbXMsIChzdWNjZXNzLCBkYXRhKSA9PiB7XHJcbiAgICAgICAgICAgIHRoaXMubG9hZFRhc2tzKCk7XHJcbiAgICAgICAgICAgIGlmICh0eXBlb2YgY2FsbGJhY2sgPT09IFwiZnVuY3Rpb25cIilcclxuICAgICAgICAgICAgICAgIGNhbGxiYWNrKHN1Y2Nlc3MsIGRhdGEpO1xyXG4gICAgICAgIH0pO1xyXG4gICAgfVxyXG5cclxuICAgIHB1YmxpYyBjcmVhdGVUYXNrRnJvbUZpbGUoZmlsZTogRFNGaWxlLCB1bnppcFBhc3N3b3JkOiBzdHJpbmcsIGRlc3RpbmF0aW9uRm9sZGVyOiBzdHJpbmcsIGNhbGxiYWNrOiAoc3VjY2VzczogYm9vbGVhbiwgZGF0YTogYW55KSA9PiB2b2lkKSB7XHJcbiAgICAgICAgdmFyIHBhcmFtczogU3lub0Rvd25sb2FkU3RhdGlvblRhc2tDcmVhdGVSZXF1ZXN0ID0ge1xyXG4gICAgICAgICAgICBmaWxlOiBmaWxlXHJcbiAgICAgICAgfTtcclxuXHJcbiAgICAgICAgaWYgKHVuemlwUGFzc3dvcmQpIHtcclxuICAgICAgICAgICAgcGFyYW1zLnVuemlwX3Bhc3N3b3JkID0gdW56aXBQYXNzd29yZDtcclxuICAgICAgICB9XHJcbiAgICAgICAgXHJcbiAgICAgICAgaWYoZGVzdGluYXRpb25Gb2xkZXIpXHJcbiAgICAgICAge1xyXG4gICAgICAgICAgICBpZihkZXN0aW5hdGlvbkZvbGRlci5jaGFyQXQoMCkgPT0gXCIvXCIpIHtcclxuICAgICAgICAgICAgICAgIGRlc3RpbmF0aW9uRm9sZGVyID0gZGVzdGluYXRpb25Gb2xkZXIuc3Vic3RyKDEpO1xyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIHBhcmFtcy5kZXN0aW5hdGlvbiA9IGRlc3RpbmF0aW9uRm9sZGVyO1xyXG4gICAgICAgIH1cclxuICAgICAgICBcclxuICAgICAgICB0aGlzLl9hcGlDYWxsKCdTWU5PLkRvd25sb2FkU3RhdGlvbi5UYXNrJywgJ2NyZWF0ZScsIDEsIHBhcmFtcywgKHN1Y2Nlc3MsIGRhdGEpID0+IHtcclxuICAgICAgICAgICAgdGhpcy5sb2FkVGFza3MoKTtcclxuICAgICAgICAgICAgaWYgKHR5cGVvZiBjYWxsYmFjayA9PT0gXCJmdW5jdGlvblwiKVxyXG4gICAgICAgICAgICAgICAgY2FsbGJhY2soc3VjY2VzcywgZGF0YSk7XHJcbiAgICAgICAgfSwgJ1BPU1QnLCB0cnVlKTtcclxuICAgIH1cclxuXHJcbiAgICBwdWJsaWMgY2xlYXJGaW5pc2hlZFRhc2tzKGNhbGxiYWNrOiAoc3VjY2VzczogYm9vbGVhbiwgZGF0YTogYW55KSA9PiB2b2lkKSB7XHJcbiAgICAgICAgdmFyIGlkcyA9IG5ldyBBcnJheTxzdHJpbmc+KCk7XHJcbiAgICAgICAgZm9yICh2YXIgaSA9IDA7IGkgPCB0aGlzLnRhc2tzLmxlbmd0aDsgaSsrKSB7XHJcbiAgICAgICAgICAgIHZhciB0YXNrID0gdGhpcy50YXNrc1tpXTtcclxuICAgICAgICAgICAgaWYgKHRhc2suc3RhdHVzID09PSBcImZpbmlzaGVkXCIpIHtcclxuICAgICAgICAgICAgICAgIGlkcy5wdXNoKHRhc2suaWQpO1xyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgfVxyXG5cclxuICAgICAgICB0aGlzLmRlbGV0ZVRhc2soaWRzLCBjYWxsYmFjayk7XHJcbiAgICB9O1xyXG5cclxuICAgIHB1YmxpYyByZXN1bWVUYXNrKGlkczogc3RyaW5nW10sIGNhbGxiYWNrOiAoc3VjY2VzczogYm9vbGVhbiwgZGF0YTogYW55KSA9PiB2b2lkKSB7XHJcbiAgICAgICAgaWYgKHR5cGVvZiBpZHMgPT09IFwic3RyaW5nXCIpXHJcbiAgICAgICAgICAgIGlkcyA9IFsoPGFueT5pZHMpXTtcclxuXHJcbiAgICAgICAgdmFyIHBhcmFtcyA9IHtcclxuICAgICAgICAgICAgaWQ6IGlkcy5qb2luKFwiLFwiKVxyXG4gICAgICAgIH07XHJcblxyXG4gICAgICAgIHRoaXMuX2FwaUNhbGwoJ1NZTk8uRG93bmxvYWRTdGF0aW9uLlRhc2snLCAncmVzdW1lJywgMSwgcGFyYW1zLCAoc3VjY2VzcywgZGF0YSkgPT4ge1xyXG4gICAgICAgICAgICB0aGlzLmxvYWRUYXNrcygpO1xyXG4gICAgICAgICAgICBpZiAodHlwZW9mIGNhbGxiYWNrID09PSBcImZ1bmN0aW9uXCIpXHJcbiAgICAgICAgICAgICAgICBjYWxsYmFjayhzdWNjZXNzLCBkYXRhKTtcclxuICAgICAgICB9LCAnUE9TVCcpO1xyXG4gICAgfVxyXG4gICAgXHJcbiAgICBwdWJsaWMgcGF1c2VUYXNrKGlkczogc3RyaW5nW10sIGNhbGxiYWNrOiAoc3VjY2VzczogYm9vbGVhbiwgZGF0YTogYW55KSA9PiB2b2lkKSB7XHJcbiAgICAgICAgaWYgKHR5cGVvZiBpZHMgPT09IFwic3RyaW5nXCIpXHJcbiAgICAgICAgICAgIGlkcyA9IFsoPGFueT5pZHMpXTtcclxuXHJcbiAgICAgICAgdmFyIHBhcmFtcyA9IHtcclxuICAgICAgICAgICAgaWQ6IGlkcy5qb2luKFwiLFwiKVxyXG4gICAgICAgIH07XHJcblxyXG4gICAgICAgIHRoaXMuX2FwaUNhbGwoJ1NZTk8uRG93bmxvYWRTdGF0aW9uLlRhc2snLCAncGF1c2UnLCAxLCBwYXJhbXMsIChzdWNjZXNzLCBkYXRhKSA9PntcclxuICAgICAgICAgICAgdGhpcy5sb2FkVGFza3MoKTtcclxuICAgICAgICAgICAgaWYgKHR5cGVvZiBjYWxsYmFjayA9PT0gXCJmdW5jdGlvblwiKVxyXG4gICAgICAgICAgICAgICAgY2FsbGJhY2soc3VjY2VzcywgZGF0YSk7XHJcbiAgICAgICAgfSwgJ1BPU1QnKTtcclxuICAgIH1cclxuICAgIFxyXG4gICAgcHVibGljIGRlbGV0ZVRhc2soaWRzOiBzdHJpbmdbXSwgY2FsbGJhY2s6IChzdWNjZXNzOiBib29sZWFuLCBkYXRhOiBhbnkpID0+IHZvaWQpIHtcclxuICAgICAgICBpZiAodHlwZW9mIGlkcyA9PT0gXCJzdHJpbmdcIilcclxuICAgICAgICAgICAgaWRzID0gWyg8YW55PmlkcyldO1xyXG5cclxuICAgICAgICB2YXIgcGFyYW1zID0ge1xyXG4gICAgICAgICAgICBpZDogaWRzLmpvaW4oXCIsXCIpLFxyXG4gICAgICAgICAgICBmb3JjZV9jb21wbGV0ZTogZmFsc2VcclxuICAgICAgICB9O1xyXG5cclxuICAgICAgICB0aGlzLl9hcGlDYWxsKCdTWU5PLkRvd25sb2FkU3RhdGlvbi5UYXNrJywgJ2RlbGV0ZScsIDEsIHBhcmFtcywgKHN1Y2Nlc3MsIGRhdGEpID0+IHtcclxuICAgICAgICAgICAgdGhpcy5sb2FkVGFza3MoKTtcclxuICAgICAgICAgICAgaWYgKHR5cGVvZiBjYWxsYmFjayA9PT0gXCJmdW5jdGlvblwiKVxyXG4gICAgICAgICAgICAgICAgY2FsbGJhY2soc3VjY2VzcywgZGF0YSk7XHJcbiAgICAgICAgfSwgJ1BPU1QnKTtcclxuICAgIH1cclxuICAgIFxyXG4gICAgLy8hUXVpY2tDb25uZWN0XHJcbiAgICBwdWJsaWMgZ2V0UXVpY2tDb25uZWN0U2VydmVycyhjYWxsYmFjazogKHN1Y2Nlc3M6IGJvb2xlYW4sIGRhdGE/OiBhbnkpID0+IHZvaWQpIHtcclxuICAgICAgICAkLmFqYXgoe1xyXG4gICAgICAgICAgICB1cmw6XHRcImh0dHBzOi8vZ2xvYmFsLnF1aWNrY29ubmVjdC50by9TZXJ2LnBocFwiLFxyXG4gICAgICAgICAgICBkYXRhOlx0SlNPTi5zdHJpbmdpZnkoe1xyXG4gICAgICAgICAgICAgICAgICAgICAgICB2ZXJzaW9uOiAxLFxyXG4gICAgICAgICAgICAgICAgICAgICAgICBjb21tYW5kOiBcImdldF9zaXRlX2xpc3RcIlxyXG4gICAgICAgICAgICAgICAgICAgIH0pLFxyXG4gICAgICAgICAgICBwcm9jZXNzRGF0YTogZmFsc2UsXHJcbiAgICAgICAgICAgIGRhdGFUeXBlOiBcImpzb25cIixcclxuICAgICAgICAgICAgbWV0aG9kOiBcIlBPU1RcIixcclxuICAgICAgICAgICAgdGltZW91dDogNTAwMFxyXG4gICAgICAgICAgICBcclxuICAgICAgICB9KS5kb25lKChkYXRhKSA9PiB7XHJcbiAgICAgICAgICAgIGlmKGRhdGEuZXJybm8gIT0gMCB8fCAhZGF0YS5zaXRlcyB8fCAhQXJyYXkuaXNBcnJheShkYXRhLnNpdGVzKSB8fCBkYXRhLnNpdGVzLmxlbmd0aCA9PSAwKSB7XHJcbiAgICAgICAgICAgICAgICBjYWxsYmFjayhmYWxzZSk7XHJcbiAgICAgICAgICAgICAgICByZXR1cm47XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgIGNhbGxiYWNrKHRydWUsIGRhdGEuc2l0ZXMpO1xyXG4gICAgICAgIH0pLmZhaWwoKCkgPT4ge1xyXG4gICAgICAgICAgICBjYWxsYmFjayhmYWxzZSk7XHJcbiAgICAgICAgfSk7XHJcbiAgICB9XHJcblxyXG4gICAgcHVibGljIGdldFF1aWNrQ29ubmVjdERldGFpbHMoc2VydmVyVXJsOiBzdHJpbmcsIGh0dHBzOiBib29sZWFuLCBjYWxsYmFjazogKHN1Y2Nlc3M6IGJvb2xlYW4sIGRhdGE/OiBhbnkpID0+IHZvaWQpIHtcclxuICAgICAgICAkLmFqYXgoe1xyXG4gICAgICAgICAgICB1cmw6IFwiaHR0cHM6Ly9cIiArIHNlcnZlclVybCArIFwiL1NlcnYucGhwXCIsXHJcbiAgICAgICAgICAgIGRhdGE6IEpTT04uc3RyaW5naWZ5KHtcclxuICAgICAgICAgICAgICAgIHZlcnNpb246IDEsXHJcbiAgICAgICAgICAgICAgICBjb21tYW5kOiBcImdldF9zZXJ2ZXJfaW5mb1wiLFxyXG4gICAgICAgICAgICAgICAgaWQ6IGh0dHBzID8gXCJkc21faHR0cHNcIiA6IFwiZHNtXCIsIC8vIGRzbSBvciBkc21faHR0cHNcclxuICAgICAgICAgICAgICAgIHNlcnZlcklEOiB0aGlzLl9zZXR0aW5ncy5xdWlja0Nvbm5lY3RJZFxyXG4gICAgICAgICAgICB9KSxcclxuICAgICAgICAgICAgZGF0YVR5cGU6IFwianNvblwiLFxyXG4gICAgICAgICAgICBtZXRob2Q6IFwiUE9TVFwiLFxyXG4gICAgICAgICAgICB0aW1lb3V0OiA1MDAwXHJcbiAgICAgICAgfSkuZG9uZSgoZGF0YSkgPT4ge1xyXG4gICAgICAgICAgICBpZihkYXRhLmVycm5vICE9IDAgfHwgXHJcbiAgICAgICAgICAgICAgICAhZGF0YS5zZXJ2ZXIgfHwgIWRhdGEuc2VydmVyLmludGVyZmFjZSB8fCAhQXJyYXkuaXNBcnJheShkYXRhLnNlcnZlci5pbnRlcmZhY2UpIHx8ICFkYXRhLnNlcnZlci5leHRlcm5hbCB8fCAhZGF0YS5zZXJ2ZXIuc2VydmVySUQgfHwgXHJcbiAgICAgICAgICAgICAgICAhZGF0YS5zZXJ2aWNlIHx8IGRhdGEuc2VydmljZS5wb3J0ID09IG51bGwgfHwgZGF0YS5zZXJ2aWNlLmV4dF9wb3J0ID09IG51bGwpXHJcbiAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgIGNhbGxiYWNrKGZhbHNlKTtcclxuICAgICAgICAgICAgICAgIHJldHVybjtcclxuICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICBcclxuICAgICAgICAgICAgdmFyIGludGVyZmFjZXM6IEFycmF5PGFueT4gPSBbXTtcclxuICAgICAgICAgICAgdmFyIGV6aWQgPSBtZDUoZGF0YS5zZXJ2ZXIuc2VydmVySUQpO1xyXG4gICAgICAgICAgICBcclxuICAgICAgICAgICAgLy8gRGV2aWNlIG5ldHdvcmsgaW50ZXJmYWNlc1xyXG4gICAgICAgICAgICBmb3IgKHZhciBpID0gMDsgaSA8IGRhdGEuc2VydmVyLmludGVyZmFjZS5sZW5ndGg7IGkrKylcclxuICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgdmFyIGludGVyZmFjZURldGFpbHMgPSBkYXRhLnNlcnZlci5pbnRlcmZhY2VbaV07XHJcbiAgICAgICAgICAgICAgICBpbnRlcmZhY2VzLnB1c2goe1xyXG4gICAgICAgICAgICAgICAgICAgIGlwOiBpbnRlcmZhY2VEZXRhaWxzLmlwLFxyXG4gICAgICAgICAgICAgICAgICAgIHBvcnQ6IGRhdGEuc2VydmljZS5wb3J0LFxyXG4gICAgICAgICAgICAgICAgICAgIGV6aWQ6IGV6aWRcclxuICAgICAgICAgICAgICAgIH0pO1xyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIFxyXG4gICAgICAgICAgICB2YXIgZXh0ZXJuYWxQb3J0ID0gZGF0YS5zZXJ2aWNlLmV4dF9wb3J0ID09PSAwID8gZGF0YS5zZXJ2aWNlLnBvcnQgOiBkYXRhLnNlcnZpY2UuZXh0X3BvcnQ7XHJcbiAgICAgICAgICAgIFxyXG4gICAgICAgICAgICAvLyBDdXN0b20gRE5TXHJcbiAgICAgICAgICAgIGlmKGRhdGEuc2VydmVyLmZxZG4pXHJcbiAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgIGludGVyZmFjZXMucHVzaCh7XHJcbiAgICAgICAgICAgICAgICAgICAgaXA6IGRhdGEuc2VydmVyLmZxZG4ucmVwbGFjZSgvJy9nLFwiXCIpLCAvL3JlcGxhY2UgJyBpbiB0aGUgcmV0dXJuZWQgZGRucyBzdHJpbmdcclxuICAgICAgICAgICAgICAgICAgICBwb3J0OiBleHRlcm5hbFBvcnQsXHJcbiAgICAgICAgICAgICAgICAgICAgZXppZDogZXppZFxyXG4gICAgICAgICAgICAgICAgfSk7XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgIC8vIERETlNcclxuICAgICAgICAgICAgaWYoZGF0YS5zZXJ2ZXIuZGRucylcclxuICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgaW50ZXJmYWNlcy5wdXNoKHtcclxuICAgICAgICAgICAgICAgICAgICBpcDogZGF0YS5zZXJ2ZXIuZGRucy5yZXBsYWNlKC8nL2csXCJcIiksIC8vcmVwbGFjZSAnIGluIHRoZSByZXR1cm5lZCBkZG5zIHN0cmluZ1xyXG4gICAgICAgICAgICAgICAgICAgIHBvcnQ6IGV4dGVybmFsUG9ydCxcclxuICAgICAgICAgICAgICAgICAgICBlemlkOiBlemlkXHJcbiAgICAgICAgICAgICAgICB9KTtcclxuICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICBcclxuICAgICAgICAgICAgLy8gUHVibGljIElQXHJcbiAgICAgICAgICAgIGludGVyZmFjZXMucHVzaCh7XHJcbiAgICAgICAgICAgICAgICBpcDogZGF0YS5zZXJ2ZXIuZXh0ZXJuYWwuaXAsXHJcbiAgICAgICAgICAgICAgICBwb3J0OiBleHRlcm5hbFBvcnQsXHJcbiAgICAgICAgICAgICAgICBlemlkOiBlemlkXHJcbiAgICAgICAgICAgIH0pO1xyXG4gICAgICAgICAgICBcclxuICAgICAgICAgICAgY2FsbGJhY2sodHJ1ZSwgaW50ZXJmYWNlcyk7XHJcbiAgICAgICAgfSkuZmFpbCgoKSA9PiB7XHJcbiAgICAgICAgICAgIGNhbGxiYWNrKGZhbHNlKTtcclxuICAgICAgICB9KTtcclxuICAgIH1cclxuICAgIFxyXG4gICAgcHVibGljIHBpbmdEaXNrU3RhdGlvbihodHRwczogYm9vbGVhbiwgaXA6IHN0cmluZywgcG9ydDogbnVtYmVyLCBjYWxsYmFjazogKHN1Y2Nlc3M6IGJvb2xlYW4sIGV6aWQ/OiBzdHJpbmcpID0+IHZvaWQpIHtcclxuICAgICAgICB2YXIgdXJsID0gKGh0dHBzID8gXCJodHRwczovL1wiIDogXCJodHRwOi8vXCIpICsgaXAgKyBcIjpcIiArIHBvcnQgKyBcIi93ZWJtYW4vcGluZ3BvbmcuY2dpXCI7XHJcbiAgICAgICAgXHJcbiAgICAgICAgJC5hamF4KHtcclxuICAgICAgICAgICAgdXJsOiB1cmwsXHJcbiAgICAgICAgICAgIGRhdGFUeXBlOiBcImpzb25cIixcclxuICAgICAgICAgICAgdGltZW91dDogMjAwMDAsIC8vIFNob3VsZCBiZSBlbm91Z2ggdGltZSBmb3IgdGhlIGRldmljZSB0byB3YWtlIHVwIGZyb20gc2xlZXBcclxuICAgICAgICAgICAgbWV0aG9kOiBcIkdFVFwiXHJcbiAgICAgICAgfSkuZG9uZSgoZGF0YSkgPT4ge1xyXG4gICAgICAgICAgICBpZihkYXRhLnN1Y2Nlc3MgIT09IHRydWUpIHtcclxuICAgICAgICAgICAgICAgIGNhbGxiYWNrKGZhbHNlKTtcclxuICAgICAgICAgICAgICAgIHJldHVybjtcclxuICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICBcclxuICAgICAgICAgICAgaWYoZGF0YS5ib290X2RvbmUgIT09IHRydWUpIHtcclxuICAgICAgICAgICAgICAgIGNvbnNvbGUubG9nKFwiRGV2aWNlIG9uIHVybCAnJXMnIGhhcyBub3QgZmluaXNoZWQgYm9vdGluZy5cIiwgdXJsKTtcclxuICAgICAgICAgICAgICAgIGNhbGxiYWNrKGZhbHNlKTtcclxuICAgICAgICAgICAgICAgIHJldHVybjtcclxuICAgICAgICAgICAgfTtcclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgIGNhbGxiYWNrKHRydWUsIGRhdGEuZXppZCk7XHJcbiAgICAgICAgfSkuZmFpbCgoKSA9PiB7XHJcbiAgICAgICAgICAgIGNhbGxiYWNrKGZhbHNlKTtcclxuICAgICAgICB9KTtcclxuICAgIH1cclxuXHJcbiAgICBwdWJsaWMgZ2V0UXVpY2tDb25uZWN0U2V0dGluZ3MoY2FsbGJhY2s6IChzdWNjZXNzOiBib29sZWFuLCBkYXRhOiBhbnkpID0+IHZvaWQpXHJcbiAgICB7XHJcbiAgICAgICAgdmFyIHJlcXVpcmVIdHRwcyA9IHRydWU7XHJcbiAgICAgICAgXHJcbiAgICAgICAgdGhpcy5nZXRRdWlja0Nvbm5lY3RTZXJ2ZXJzKChzdWNjZXNzLCBzZXJ2ZXJzKSA9PiB7XHJcbiAgICAgICAgICAgIGlmIChzdWNjZXNzID09IGZhbHNlIHx8IHNlcnZlcnMubGVuZ3RoID09IDApXHJcbiAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgIGNhbGxiYWNrKGZhbHNlLCBcInF1aWNrQ29ubmVjdE1haW5TZXJ2ZXJVbmF2YWlsYWJsZVwiKTtcclxuICAgICAgICAgICAgICAgIHJldHVybjtcclxuICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICBcclxuICAgICAgICAgICAgdmFyIGZpbmlzaGVkUmVxdWVzdENvdW50ID0gMDtcclxuICAgICAgICAgICAgdmFyIHJlc3VsdEZvdW5kID0gZmFsc2U7XHJcbiAgICAgICAgICAgIFxyXG4gICAgICAgICAgICB2YXIgcGluZ0ludGVyZmFjZXMgPSAoaW50ZXJmYWNlczogQXJyYXk8YW55PiwgcGluZ0NhbGxiYWNrOiAoc3VjY2VzczogYm9vbGVhbiwgZGF0YT86IGFueSkgPT4gdm9pZCkgPT5cclxuICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgdmFyIGZpbmlzaGVkUGluZ0NvdW50ID0gMDtcclxuICAgICAgICAgICAgICAgIHZhciBwaW5nUmVzcG9uc2VGb3VuZCA9IGZhbHNlO1xyXG4gICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAkLmVhY2goaW50ZXJmYWNlcywgKGluZGV4LCBjdXJyZW50SW50ZXJmYWNlKSA9PiB7XHJcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5waW5nRGlza1N0YXRpb24ocmVxdWlyZUh0dHBzLCBjdXJyZW50SW50ZXJmYWNlLmlwLCBjdXJyZW50SW50ZXJmYWNlLnBvcnQsIChzdWNjZXNzLCBlemlkKSA9PiB7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIGZpbmlzaGVkUGluZ0NvdW50Kys7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIFxyXG4gICAgICAgICAgICAgICAgICAgICAgICBpZihwaW5nUmVzcG9uc2VGb3VuZClcclxuICAgICAgICAgICAgICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgcmV0dXJuO1xyXG4gICAgICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIFxyXG4gICAgICAgICAgICAgICAgICAgICAgICB2YXIgdmFsaWRFemlkID0gKGV6aWQgPT0gY3VycmVudEludGVyZmFjZS5lemlkKTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIGlmKChzdWNjZXNzID09IGZhbHNlIHx8IHZhbGlkRXppZCA9PSBmYWxzZSkgJiYgZmluaXNoZWRQaW5nQ291bnQgPT0gaW50ZXJmYWNlcy5sZW5ndGgpXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIC8vIE5vIHZhbGlkIHBpbmcgZm9yIGFueSBvZiB0aGUgaW50ZXJmYWNlc1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgcGluZ0NhbGxiYWNrKGZhbHNlKTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHJldHVybjtcclxuICAgICAgICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgICAgICAgaWYoc3VjY2VzcyAmJiB2YWxpZEV6aWQpXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHBpbmdSZXNwb25zZUZvdW5kID0gdHJ1ZTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHBpbmdDYWxsYmFjayh0cnVlLCBjdXJyZW50SW50ZXJmYWNlKTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHJldHVybjtcclxuICAgICAgICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgICAgIH0pO1xyXG4gICAgICAgICAgICAgICAgfSk7XHJcbiAgICAgICAgICAgIH07XHJcbiAgICAgICAgICAgIFxyXG4gICAgICAgICAgICAkLmVhY2goc2VydmVycywgKGluZGV4LCBjdXJyZW50U2VydmVyKSA9PiB7XHJcbiAgICAgICAgICAgICAgICB0aGlzLmdldFF1aWNrQ29ubmVjdERldGFpbHMoY3VycmVudFNlcnZlciwgcmVxdWlyZUh0dHBzLCAoc3VjY2VzczogYm9vbGVhbiwgaW50ZXJmYWNlczogQXJyYXk8YW55PikgPT4ge1xyXG4gICAgICAgICAgICAgICAgICAgIGZpbmlzaGVkUmVxdWVzdENvdW50Kys7XHJcbiAgICAgICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgaWYocmVzdWx0Rm91bmQpe1xyXG4gICAgICAgICAgICAgICAgICAgICAgICByZXR1cm47XHJcbiAgICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgICAgIFxyXG4gICAgICAgICAgICAgICAgICAgIGlmKHN1Y2Nlc3MgPT0gZmFsc2UgJiYgZmluaXNoZWRSZXF1ZXN0Q291bnQgPT0gc2VydmVycy5sZW5ndGgpXHJcbiAgICAgICAgICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAvLyBBbGwgc2VydmVycyBjaGVja2VkIGJ1dCBubyB2YWxpZCByZXN1bHRcclxuICAgICAgICAgICAgICAgICAgICAgICAgY2FsbGJhY2soZmFsc2UsIFwicXVpY2tDb25uZWN0SW5mb3JtYXRpb25Ob3RGb3VuZFwiKTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgcmV0dXJuO1xyXG4gICAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgICBpZihzdWNjZXNzKVxyXG4gICAgICAgICAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgLy8gVGhpcyBpcyB0aGUgZmlyc3QgcmVxdWVzdCB0aGF0IHJldHVybmVkIGEgcmVzdWx0LCB1c2UgdGhpcyBvbmVcclxuICAgICAgICAgICAgICAgICAgICAgICAgcmVzdWx0Rm91bmQgPSB0cnVlO1xyXG4gICAgICAgICAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgICAgICAgcGluZ0ludGVyZmFjZXMoaW50ZXJmYWNlcywgKHN1Y2Nlc3MsIGNvbm5lY3Rpb25EZXRhaWxzKSA9PiB7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBpZihzdWNjZXNzKVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNhbGxiYWNrKHRydWUsIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgdXJsOiBjb25uZWN0aW9uRGV0YWlscy5pcCxcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgcG9ydDogY29ubmVjdGlvbkRldGFpbHMucG9ydCxcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgcHJvdG9jb2w6IHJlcXVpcmVIdHRwcyA/IFwiaHR0cHM6Ly9cIiA6IFwiaHR0cDovL1wiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSk7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgcmV0dXJuO1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAvLyBUcnkgUXVpY2tDb25uZWN0IHR1bm5lbFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgdGhpcy5yZXF1ZXN0UXVpY2tDb25uZWN0UmVsYXkoY3VycmVudFNlcnZlciwgKHN1Y2Nlc3M6IGJvb2xlYW4sIGRhdGE6IGFueSkgPT4ge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGlmKHN1Y2Nlc3MpIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgY2FsbGJhY2soc3VjY2VzcywgZGF0YSk7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGVsc2Uge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjYWxsYmFjayhzdWNjZXNzLCBcInF1aWNrQ29ubmVjdFR1bm5lbEZhaWxlZFwiKTtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgcmV0dXJuO1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgfSk7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIH0pO1xyXG4gICAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgIH0pO1xyXG4gICAgICAgICAgICB9KTtcclxuICAgICAgICB9KTtcclxuICAgIH1cclxuXHJcbiAgICBwdWJsaWMgcmVxdWVzdFF1aWNrQ29ubmVjdFJlbGF5KHNlcnZlclVybDogc3RyaW5nLCBjYWxsYmFjazogKHN1Y2Nlc3M6IGJvb2xlYW4sIGRhdGE/OiBhbnkpID0+IHZvaWQpIHtcclxuICAgICAgICB2YXIgc2VydmVyQ29kZSA9IHNlcnZlclVybC5zcGxpdChcIi5cIilbMF07XHJcbiAgICAgICAgXHJcbiAgICAgICAgJC5hamF4KHtcclxuICAgICAgICAgICAgdXJsOiBcImh0dHBzOi8vXCIgKyBzZXJ2ZXJVcmwgKyBcIi9TZXJ2LnBocFwiLFxyXG4gICAgICAgICAgICBkYXRhOiBKU09OLnN0cmluZ2lmeSh7XHJcbiAgICAgICAgICAgICAgICB2ZXJzaW9uOiAxLFxyXG4gICAgICAgICAgICAgICAgY29tbWFuZDogXCJyZXF1ZXN0X3R1bm5lbFwiLFxyXG4gICAgICAgICAgICAgICAgaWQ6IFwiZHNtX2h0dHBzXCIsIC8vIGRzbSBvciBkc21faHR0cHNcclxuICAgICAgICAgICAgICAgIHNlcnZlcklEOiB0aGlzLl9zZXR0aW5ncy5xdWlja0Nvbm5lY3RJZFxyXG4gICAgICAgICAgICB9KSxcclxuICAgICAgICAgICAgZGF0YVR5cGU6IFwianNvblwiLFxyXG4gICAgICAgICAgICBtZXRob2Q6IFwiUE9TVFwiLFxyXG4gICAgICAgICAgICB0aW1lb3V0OiAzMDAwMFxyXG4gICAgICAgIH0pLmRvbmUoKGRhdGEpID0+IHtcclxuICAgICAgICAgICAgaWYoZGF0YS5lcnJubyAhPSAwIHx8IGRhdGEuZXJybm8gPT0gdW5kZWZpbmVkIHx8ICFkYXRhLnNlcnZlciB8fCAhZGF0YS5zZXJ2ZXIuZXh0ZXJuYWwgfHwgXHJcbiAgICAgICAgICAgICAgICAhZGF0YS5zZXJ2ZXIuc2VydmVySUQgfHwgIWRhdGEuc2VydmljZSB8fCBkYXRhLnNlcnZpY2UucG9ydCA9PSBudWxsIHx8IGRhdGEuc2VydmljZS5leHRfcG9ydCA9PSBudWxsKVxyXG4gICAgICAgICAgICB7XHJcbiAgICAgICAgICAgICAgICBjYWxsYmFjayhmYWxzZSk7XHJcbiAgICAgICAgICAgICAgICByZXR1cm47XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgIHZhciBob3N0bmFtZSA9IHRoaXMuX3NldHRpbmdzLnF1aWNrQ29ubmVjdElkICsgXCIuXCIgKyBzZXJ2ZXJDb2RlLnNsaWNlKDAsIDIpICsgXCIucXVpY2tjb25uZWN0LnRvXCI7XHJcbiAgICAgICAgICAgIHZhciBwb3J0ID0gZGF0YS5zZXJ2aWNlLmh0dHBzX3BvcnQgPyBkYXRhLnNlcnZpY2UuaHR0cHNfcG9ydCA6IDQ0MztcclxuICAgICAgICAgICAgXHJcbiAgICAgICAgICAgIHRoaXMucGluZ0Rpc2tTdGF0aW9uKHRydWUsIGhvc3RuYW1lLCBwb3J0LCAoc3VjY2VzcywgZXppZCkgPT4ge1xyXG4gICAgICAgICAgICAgICAgaWYoc3VjY2VzcyA9PSBmYWxzZSB8fCBlemlkICE9IG1kNShkYXRhLnNlcnZlci5zZXJ2ZXJJRCkpXHJcbiAgICAgICAgICAgICAgICB7XHJcbiAgICAgICAgICAgICAgICAgICAgY2FsbGJhY2soZmFsc2UpO1xyXG4gICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgZWxzZVxyXG4gICAgICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgICAgIGNhbGxiYWNrKHRydWUsIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgdXJsOiBob3N0bmFtZSxcclxuICAgICAgICAgICAgICAgICAgICAgICAgcG9ydDogcG9ydCxcclxuICAgICAgICAgICAgICAgICAgICAgICAgcHJvdG9jb2w6IFwiaHR0cHM6Ly9cIlxyXG4gICAgICAgICAgICAgICAgICAgIH0pO1xyXG4gICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICB9KTtcclxuICAgICAgICAgICAgXHJcbiAgICAgICAgfSkuZmFpbCgoKSA9PiB7XHJcbiAgICAgICAgICAgIGNhbGxiYWNrKGZhbHNlKTtcclxuICAgICAgICB9KTtcclxuICAgIH1cclxufVxyXG5cclxuXHJcbmZ1bmN0aW9uIHNlY29uZHNUb1N0ciAoczogbnVtYmVyKSB7XHJcblx0XHJcbiAgICBmdW5jdGlvbiBudW1iZXJFbmRpbmcgKG46IG51bWJlcikge1xyXG4gICAgICAgIHJldHVybiAobiA+IDEpID8gJ3MnIDogJyc7XHJcbiAgICB9XHJcblxyXG4gICAgdmFyIHRlbXAgPSBzO1xyXG4gICAgdmFyIHRpbWVQYXJ0cyA9IG5ldyBBcnJheTxzdHJpbmc+KCk7XHJcbiAgICBcclxuICAgIHZhciB5ZWFycyA9IE1hdGguZmxvb3IodGVtcCAvIDMxNTM2MDAwKTtcclxuICAgIGlmICh5ZWFycykge1xyXG4gICAgXHR0aW1lUGFydHMucHVzaCh5ZWFycyArIFwiIHlcIik7XHJcbiAgICB9XHJcbiAgICBcclxuICAgIHZhciBkYXlzID0gTWF0aC5mbG9vcigodGVtcCAlPSAzMTUzNjAwMCkgLyA4NjQwMCk7XHJcbiAgICBpZiAoZGF5cykge1xyXG4gICAgXHR0aW1lUGFydHMucHVzaChkYXlzICsgXCIgZFwiKTtcclxuICAgIH1cclxuXHJcbiAgICB2YXIgaG91cnMgPSBNYXRoLmZsb29yKCh0ZW1wICU9IDg2NDAwKSAvIDM2MDApO1xyXG4gICAgaWYgKGhvdXJzKSB7XHJcbiAgICBcdHRpbWVQYXJ0cy5wdXNoKGhvdXJzICsgXCIgaFwiKTtcclxuICAgIH1cclxuXHJcbiAgICB2YXIgbWludXRlcyA9IE1hdGguZmxvb3IoKHRlbXAgJT0gMzYwMCkgLyA2MCk7XHJcbiAgICBpZiAobWludXRlcykge1xyXG4gICAgXHR0aW1lUGFydHMucHVzaChtaW51dGVzICsgXCIgbVwiKTtcclxuICAgIH1cclxuXHJcbiAgICB2YXIgc2Vjb25kcyA9IE1hdGgucm91bmQodGVtcCAlIDYwKTtcclxuICAgIGlmIChzZWNvbmRzKSB7XHJcbiAgICBcdHRpbWVQYXJ0cy5wdXNoKHNlY29uZHMgKyBcIiBzXCIpO1xyXG4gICAgfVxyXG4gICAgXHJcbiAgICBpZih0aW1lUGFydHMubGVuZ3RoID49IDIpXHJcbiAgICBcdHJldHVybiB0aW1lUGFydHNbMF0gKyBcIiBcIiArIHRpbWVQYXJ0c1sxXTtcclxuICAgIGVsc2UgaWYodGltZVBhcnRzLmxlbmd0aCA9PSAxKVxyXG4gICAgXHRyZXR1cm4gdGltZVBhcnRzWzBdO1xyXG4gICAgZWxzZVxyXG4gICAgXHRyZXR1cm4gJ2xlc3MgdGhhbiBhIHNlY29uZCc7IC8vJ2p1c3Qgbm93JyAvL29yIG90aGVyIHN0cmluZyB5b3UgbGlrZTtcclxufVxyXG5cdFxyXG5mdW5jdGlvbiBnZXRHTVRPZmZzZXQoZGF0ZTogRGF0ZSkge1xyXG4gICAgcmV0dXJuIChkYXRlLmdldFRpbWV6b25lT2Zmc2V0KCkgPiAwID8gXCItXCIgOiBcIitcIikgKyBcclxuICAgICAgICBsZWZ0UGFkKE1hdGguZmxvb3IoTWF0aC5hYnMoZGF0ZS5nZXRUaW1lem9uZU9mZnNldCgpKSAvIDYwKSwgMiwgXCIwXCIpICtcclxuICAgICAgICBcIjpcIiArXHJcbiAgICAgICAgbGVmdFBhZChNYXRoLmFicyhkYXRlLmdldFRpbWV6b25lT2Zmc2V0KCkgJSA2MCksIDIsIFwiMFwiKTtcclxufVxyXG5cdFxyXG5mdW5jdGlvbiBsZWZ0UGFkKGQ6IG51bWJlciwgYjogbnVtYmVyLCBjOiBzdHJpbmcpIHtcclxuICAgIHZhciBhPVN0cmluZyhkKTtcclxuICAgIGlmKCFjKSB7XHJcbiAgICAgICAgYz1cIiBcIjtcclxuICAgIH1cclxuICAgIFxyXG4gICAgd2hpbGUoYS5sZW5ndGg8Yikge1xyXG4gICAgICAgIGE9YythXHJcbiAgICB9O1xyXG4gICAgcmV0dXJuIGE7XHJcbn0iXSwic291cmNlUm9vdCI6Ii9zb3VyY2UvIn0=
|
train_000.parquet/746
|
{
"file_path": "js/downloadstation-api.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 165157,
"token_count": 99454
}
|
var PopoverModel = (function () {
function PopoverModel() {
var _this = this;
this.downloadStationConfigured = ko.observable(false);
this.loggedIn = ko.observable(false);
this.statusMessage = ko.observable();
this.deviceName = ko.observable();
this.dsmVersion = ko.observable();
this.dsmVersionString = ko.observable();
this.fullUrl = ko.observable();
this.tasks = ko.observableArray();
this.urlInput = ko.observable();
this.urlInputValue = ko.computed(function () {
var value = $.trim(_this.urlInput());
return value.length == 0 ? null : value;
});
this.statusMessageLocalized = ko.computed(function () {
if (typeof _this.statusMessage() !== "string")
return null;
else if (_this.statusMessage() == "dsmVersionTooOld") {
return 'Your device seems to be running DSM ' + _this.dsmVersionString() + '-' + _this.dsmVersion() + '. This version is not supported anymore in this version of the extension. You can download an old version of this extension that supports DSM 4.1 and older from <a href="http://www.download-station-extension.com/" target="_blank">this website</a>.';
}
else {
var localizedMessage = extension.getLocalizedString(_this.statusMessage());
if (localizedMessage != _this.statusMessage())
return localizedMessage;
return extension.getLocalizedString("api_error_" + _this.statusMessage());
}
});
this.visibleTasks = ko.computed(function () {
return ko.utils.arrayFilter(_this.tasks(), function (task) {
return task.visible();
});
});
this.pausebleTasks = ko.computed(function () {
return ko.utils.arrayFilter(_this.visibleTasks(), function (task) {
return task.pauseButtonVisible();
});
});
this.resumebleTasks = ko.computed(function () {
return ko.utils.arrayFilter(_this.visibleTasks(), function (task) {
return task.resumeButtonVisible();
});
});
this.finishedTasks = ko.computed(function () {
return ko.utils.arrayFilter(_this.tasks(), function (task) {
return task.status() == "finished";
});
});
this.totalDownloadSpeed = ko.computed(function () {
var tasks = _this.tasks();
var speed = 0;
for (var i = 0; i < tasks.length; i++) {
if (tasks[i].status() != "paused")
speed += tasks[i].speedDownload();
}
return speed;
});
this.totalDownloadSpeedString = ko.computed(function () {
return bytesToString(_this.totalDownloadSpeed()) + "/s";
});
this.totalUploadSpeed = ko.computed(function () {
var tasks = _this.tasks();
var speed = 0;
for (var i = 0; i < tasks.length; i++) {
if (tasks[i].status() != "paused")
speed += tasks[i].speedUpload();
}
return speed;
});
this.totalUploadSpeedString = ko.computed(function () {
return bytesToString(_this.totalUploadSpeed()) + "/s";
});
this.formDisabled = ko.observable(false);
this.newTaskErrorMessage = ko.observable();
this.hideSeedingTorrents = ko.observable(false);
this.clearingFinishedTasks = ko.observable(false);
}
PopoverModel.prototype.maxNumberOfTasksWarning = function () {
return extension.getLocalizedString("maxNumberOfTasksWarning", ["100"]);
};
PopoverModel.prototype.clearFinishedTasks = function (item, event) {
var _this = this;
if ($(event.target).hasClass("disabled"))
return;
this.clearingFinishedTasks(true);
var tasks = this.finishedTasks();
for (var i = 0; i < tasks.length; i++) {
tasks[i].removed(true);
}
getBackgroundPage().clearFinishedTasks(function (success, data) {
_this.clearingFinishedTasks(false);
if (success == false) {
for (var i = 0; i < tasks.length; i++) {
tasks[i].removed(false);
}
}
});
};
PopoverModel.prototype.addTask = function () {
var _this = this;
if (this.urlInputValue()) {
this.formDisabled(true);
this.newTaskErrorMessage(null);
$(".url-input").blur();
getBackgroundPage().createTask(this.urlInputValue(), null, null, null, function (success, data) {
_this.formDisabled(false);
if (success === true) {
_this.urlInput(null);
_this.toggleTaskForm(false);
}
else {
_this.newTaskErrorMessage(extension.getLocalizedString("api_error_" + data));
$(".url-input").focus();
}
});
_gaq.push(['_trackEvent', 'Button', 'Popover AddTaskSubmit']);
}
};
;
PopoverModel.prototype.hideTaskElement = function (elem) {
if (elem.nodeType === 1) {
$(elem).addClass('hidden');
setTimeout(function () { $(elem).remove(); }, 500);
}
};
;
PopoverModel.prototype.showTaskElement = function (elem, index, value) {
if (elem.nodeType === 1) {
$(elem).hide().fadeIn(100);
}
};
;
PopoverModel.prototype.resumeAll = function (item, event) {
if ($(event.target).hasClass("disabled"))
return;
var tasks = ko.utils.arrayFilter(this.visibleTasks(), function (task) {
return task.status() != "finished";
});
var ids = new Array();
$(event.target).addClass("disabled");
for (var i = 0; i < tasks.length; i++) {
var task = tasks[i];
if (!task.resuming()) {
task.resuming(true);
ids.push(task.id());
}
}
getBackgroundPage().resumeTask(ids, function (success) {
$(event.target).removeClass("disabled");
for (var i = 0; i < tasks.length; i++) {
var task = tasks[i];
task.resuming(false);
if (success) {
task.status("waiting");
}
}
});
};
;
PopoverModel.prototype.pauseAll = function (item, event) {
if ($(event.target).hasClass("disabled"))
return;
var tasks = this.pausebleTasks();
var ids = new Array();
$(event.target).addClass("disabled");
for (var i = 0; i < tasks.length; i++) {
var task = tasks[i];
if (!task.pausing()) {
task.pausing(true);
ids.push(task.id());
}
}
getBackgroundPage().pauseTask(ids, function (success) {
$(event.target).removeClass("disabled");
for (var i = 0; i < tasks.length; i++) {
var task = tasks[i];
task.pausing(false);
if (success) {
task.status("paused");
}
}
});
};
;
PopoverModel.prototype.openSettings = function () {
extension.createTab("options.html");
extension.hidePopovers();
_gaq.push(['_trackEvent', 'Button', 'Popover OpenOptionsTab']);
};
;
PopoverModel.prototype.toggleTaskForm = function (visible) {
if (typeof visible === "boolean")
$(".new-task").toggleClass("active", visible);
else
$(".new-task").toggleClass("active");
if ($(".new-task").hasClass("active"))
$(".url-input").focus();
else
$(".url-input").blur();
};
;
PopoverModel.prototype.openDownloadStation = function () {
if (this.fullUrl() != null) {
var url = this.fullUrl();
if (this.dsmVersion() < 7000)
url += "/webman/index.cgi?launchApp=SYNO.SDS.DownloadStation.Application";
else
url += "/index.cgi?launchApp=SYNO.SDS.DownloadStation.Application";
extension.createTab(url);
extension.hidePopovers();
_gaq.push(['_trackEvent', 'Button', 'Popover OpenDownloadStationTab']);
}
};
;
PopoverModel.prototype.localizedString = function (name, substitutions) {
return extension.getLocalizedString(name, substitutions);
};
;
return PopoverModel;
}());
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImpzL3BvcG92ZXItcG9wb3Zlcm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0lBQUE7UUFBQSxpQkFzUEM7UUFwUEEsOEJBQXlCLEdBQUcsRUFBRSxDQUFDLFVBQVUsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUNqRCxhQUFRLEdBQUcsRUFBRSxDQUFDLFVBQVUsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUNoQyxrQkFBYSxHQUFHLEVBQUUsQ0FBQyxVQUFVLEVBQVUsQ0FBQztRQUN4QyxlQUFVLEdBQUcsRUFBRSxDQUFDLFVBQVUsRUFBVSxDQUFDO1FBQ3JDLGVBQVUsR0FBRyxFQUFFLENBQUMsVUFBVSxFQUFVLENBQUM7UUFDckMscUJBQWdCLEdBQUcsRUFBRSxDQUFDLFVBQVUsRUFBVSxDQUFDO1FBQzNDLFlBQU8sR0FBRyxFQUFFLENBQUMsVUFBVSxFQUFVLENBQUM7UUFDbEMsVUFBSyxHQUFHLEVBQUUsQ0FBQyxlQUFlLEVBQWEsQ0FBQztRQUV4QyxhQUFRLEdBQUcsRUFBRSxDQUFDLFVBQVUsRUFBVSxDQUFDO1FBRW5DLGtCQUFhLEdBQUcsRUFBRSxDQUFDLFFBQVEsQ0FBUztZQUNuQyxJQUFJLEtBQUssR0FBRyxDQUFDLENBQUMsSUFBSSxDQUFDLEtBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQyxDQUFDO1lBQ3BDLE1BQU0sQ0FBQyxLQUFLLENBQUMsTUFBTSxJQUFJLENBQUMsR0FBRyxJQUFJLEdBQUcsS0FBSyxDQUFDO1FBQ3pDLENBQUMsQ0FBQyxDQUFDO1FBTUgsMkJBQXNCLEdBQUcsRUFBRSxDQUFDLFFBQVEsQ0FBUztZQUM1QyxFQUFFLENBQUEsQ0FBQyxPQUFPLEtBQUksQ0FBQyxhQUFhLEVBQUUsS0FBSyxRQUFRLENBQUM7Z0JBQzNDLE1BQU0sQ0FBQyxJQUFJLENBQUM7WUFDUCxJQUFJLENBQUMsRUFBRSxDQUFBLENBQUMsS0FBSSxDQUFDLGFBQWEsRUFBRSxJQUFJLGtCQUFrQixDQUFDLENBQUMsQ0FBQztnQkFDakQsTUFB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USxDQUFDLFFBQVEsQ0FBQyxDQUFDO1lBQ3BDLENBQUMsQ0FBQyxZQUFZLENBQUMsQ0FBQyxLQUFLLEVBQUUsQ0FBQztRQUN6QixJQUFJO1lBQ0gsQ0FBQyxDQUFDLFlBQVksQ0FBQyxDQUFDLElBQUksRUFBRSxDQUFDO0lBQ3pCLENBQUM7O0lBRUQsMENBQW1CLEdBQW5CO1FBQ0MsRUFBRSxDQUFBLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxJQUFJLElBQUksQ0FBQyxDQUFDLENBQUM7WUFDM0IsSUFBSSxHQUFHLEdBQUcsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDO1lBQ3pCLEVBQUUsQ0FBQSxDQUFDLElBQUksQ0FBQyxVQUFVLEVBQUUsR0FBRyxJQUFJLENBQUM7Z0JBQzNCLEdBQUcsSUFBSSxrRUFBa0UsQ0FBQztZQUMzRSxJQUFJO2dCQUNILEdBQUcsSUFBSSwyREFBMkQsQ0FBQztZQUVwRSxTQUFTLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxDQUFDO1lBQ3pCLFNBQVMsQ0FBQyxZQUFZLEVBQUUsQ0FBQztZQUN6QixJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsYUFBYSxFQUFHLFFBQVEsRUFBRyxnQ0FBZ0MsQ0FBRSxDQUFFLENBQUM7UUFDNUUsQ0FBQztJQUNGLENBQUM7O0lBRUQsc0NBQWUsR0FBZixVQUFnQixJQUFZLEVBQUUsYUFBdUI7UUFDcEQsTUFBTSxDQUFDLFNBQVMsQ0FBQyxrQkFBa0IsQ0FBQyxJQUFJLEVBQUUsYUFBYSxDQUFDLENBQUM7SUFDMUQsQ0FBQzs7SUFDRixtQkFBQztBQUFELENBdFBBLEFBc1BDLElBQUEiLCJmaWxlIjoianMvcG9wb3Zlci1wb3BvdmVybW9kZWwuanMiLCJzb3VyY2VzQ29udGVudCI6WyJjbGFzcyBQb3BvdmVyTW9kZWwge1xuXG5cdGRvd25sb2FkU3RhdGlvbkNvbmZpZ3VyZWQgPSBrby5vYnNlcnZhYmxlKGZhbHNlKTtcblx0bG9nZ2VkSW4gPSBrby5vYnNlcnZhYmxlKGZhbHNlKTtcblx0c3RhdHVzTWVzc2FnZSA9IGtvLm9ic2VydmFibGU8c3RyaW5nPigpO1xuXHRkZXZpY2VOYW1lID0ga28ub2JzZXJ2YWJsZTxzdHJpbmc+KCk7XG5cdGRzbVZlcnNpb24gPSBrby5vYnNlcnZhYmxlPG51bWJlcj4oKTtcblx0ZHNtVmVyc2lvblN0cmluZyA9IGtvLm9ic2VydmFibGU8c3RyaW5nPigpO1xuXHRmdWxsVXJsID0ga28ub2JzZXJ2YWJsZTxzdHJpbmc+KCk7XG5cdHRhc2tzID0ga28ub2JzZXJ2YWJsZUFycmF5PFRhc2tNb2RlbD4oKTtcblx0XG5cdHVybElucHV0ID0ga28ub2JzZXJ2YWJsZTxzdHJpbmc+KCk7XG5cdFxuXHR1cmxJbnB1dFZhbHVlID0ga28uY29tcHV0ZWQ8c3RyaW5nPigoKSA9PiB7XG5cdFx0dmFyIHZhbHVlID0gJC50cmltKHRoaXMudXJsSW5wdXQoKSk7XG5cdFx0cmV0dXJuIHZhbHVlLmxlbmd0aCA9PSAwID8gbnVsbCA6IHZhbHVlO1xuXHR9KTtcblx0XG5cdG1heE51bWJlck9mVGFza3NXYXJuaW5nKCkge1xuXHRcdHJldHVybiBleHRlbnNpb24uZ2V0TG9jYWxpemVkU3RyaW5nKFwibWF4TnVtYmVyT2ZUYXNrc1dhcm5pbmdcIiwgW1wiMTAwXCJdKTtcblx0fVxuXHRcblx0c3RhdHVzTWVzc2FnZUxvY2FsaXplZCA9IGtvLmNvbXB1dGVkPHN0cmluZz4oKCkgPT4ge1xuXHRcdGlmKHR5cGVvZiB0aGlzLnN0YXR1c01lc3NhZ2UoKSAhPT0gXCJzdHJpbmdcIilcblx0XHRcdHJldHVybiBudWxsO1xuICAgICAgICBlbHNlIGlmKHRoaXMuc3RhdHVzTWVzc2FnZSgpID09IFwiZHNtVmVyc2lvblRvb09sZFwiKSB7XG4gICAgICAgICAgICByZXR1cm4gJ1lvdXIgZGV2aWNlIHNlZW1zIHRvIGJlIHJ1bm5pbmcgRFNNICcgKyB0aGlzLmRzbVZlcnNpb25TdHJpbmcoKSArICctJyArIHRoaXMuZHNtVmVyc2lvbigpICsgJy4gVGhpcyB2ZXJzaW9uIGlzIG5vdCBzdXBwb3J0ZWQgYW55bW9yZSBpbiB0aGlzIHZlcnNpb24gb2YgdGhlIGV4dGVuc2lvbi4gWW91IGNhbiBkb3dubG9hZCBhbiBvbGQgdmVyc2lvbiBvZiB0aGlzIGV4dGVuc2lvbiB0aGF0IHN1cHBvcnRzIERTTSA0LjEgYW5kIG9sZGVyIGZyb20gPGEgaHJlZj1cImh0dHA6Ly93d3cuZG93bmxvYWQtc3RhdGlvbi1leHRlbnNpb24uY29tL1wiIHRhcmdldD1cIl9ibGFua1wiPnRoaXMgd2Vic2l0ZTwvYT4uJztcbiAgICAgICAgfVxuXHRcdGVsc2Uge1xuXHRcdFx0dmFyIGxvY2FsaXplZE1lc3NhZ2UgPSBleHRlbnNpb24uZ2V0TG9jYWxpemVkU3RyaW5nKHRoaXMuc3RhdHVzTWVzc2FnZSgpKTtcblx0XHRcdGlmKGxvY2FsaXplZE1lc3NhZ2UgIT0gdGhpcy5zdGF0dXNNZXNzYWdlKCkpXG5cdFx0XHRcdHJldHVybiBsb2NhbGl6ZWRNZXNzYWdlO1xuXHRcdFx0IHJldHVybiBleHRlbnNpb24uZ2V0TG9jYWxpemVkU3RyaW5nKFwiYXBpX2Vycm9yX1wiICsgdGhpcy5zdGF0dXNNZXNzYWdlKCkpO1xuXHRcdH1cblx0fSk7XG5cdFxuXHR2aXNpYmxlVGFza3MgPSBrby5jb21wdXRlZDxUYXNrTW9kZWxbXT4oKCkgPT4ge1xuXHRcdHJldHVybiBrby51dGlscy5hcnJheUZpbHRlcih0aGlzLnRhc2tzKCksICh0YXNrKSA9PiB7XG5cdFx0XHRyZXR1cm4gdGFzay52aXNpYmxlKCk7XG5cdFx0fSk7XG5cdH0pO1xuXHRcblx0cGF1c2VibGVUYXNrcyA9IGtvLmNvbXB1dGVkPFRhc2tNb2RlbFtdPigoKSA9PiB7XG5cdFx0cmV0dXJuIGtvLnV0aWxzLmFycmF5RmlsdGVyKHRoaXMudmlzaWJsZVRhc2tzKCksICh0YXNrKSA9PiB7XG5cdFx0XHRyZXR1cm4gdGFzay5wYXVzZUJ1dHRvblZpc2libGUoKTtcblx0XHR9KTtcblx0fSk7XG5cdFxuXHRyZXN1bWVibGVUYXNrcyA9IGtvLmNvbXB1dGVkPFRhc2tNb2RlbFtdPigoKSA9PiB7XG5cdFx0cmV0dXJuIGtvLnV0aWxzLmFycmF5RmlsdGVyKHRoaXMudmlzaWJsZVRhc2tzKCksICh0YXNrKSA9PiB7XG5cdFx0XHRyZXR1cm4gdGFzay5yZXN1bWVCdXR0b25WaXNpYmxlKCk7XG5cdFx0fSk7XG5cdH0pOyBcblx0XG5cdGZpbmlzaGVkVGFza3MgPSBrby5jb21wdXRlZDxUYXNrTW9kZWxbXT4oKCkgPT4ge1xuXHRcdHJldHVybiBrby51dGlscy5hcnJheUZpbHRlcih0aGlzLnRhc2tzKCksICh0YXNrKSA9PiB7XG5cdFx0XHRyZXR1cm4gdGFzay5zdGF0dXMoKSA9PSBcImZpbmlzaGVkXCI7XG5cdFx0fSk7XG5cdH0pO1xuXHRcblx0dG90YWxEb3dubG9hZFNwZWVkID0ga28uY29tcHV0ZWQ8bnVtYmVyPigoKSA9PiB7XG5cdFx0dmFyIHRhc2tzID0gdGhpcy50YXNrcygpO1xuXHRcdHZhciBzcGVlZCA9IDA7XG5cdFx0Zm9yKHZhciBpID0gMDsgaSA8IHRhc2tzLmxlbmd0aDsgaSsrKVxuXHRcdHtcblx0XHRcdGlmKHRhc2tzW2ldLnN0YXR1cygpICE9IFwicGF1c2VkXCIpXG5cdFx0XHRcdHNwZWVkICs9IHRhc2tzW2ldLnNwZWVkRG93bmxvYWQoKTtcblx0XHR9XG5cdFx0cmV0dXJuIHNwZWVkO1xuXHR9KTtcblx0XG5cdHRvdGFsRG93bmxvYWRTcGVlZFN0cmluZyA9IGtvLmNvbXB1dGVkPHN0cmluZz4oKCkgPT4ge1xuXHRcdHJldHVybiBieXRlc1RvU3RyaW5nKHRoaXMudG90YWxEb3dubG9hZFNwZWVkKCkpICsgXCIvc1wiO1xuXHR9KVxuXHRcblx0dG90YWxVcGxvYWRTcGVlZCA9IGtvLmNvbXB1dGVkPG51bWJlcj4oKCkgPT4ge1xuXHRcdHZhciB0YXNrcyA9IHRoaXMudGFza3MoKTtcblx0XHR2YXIgc3BlZWQgPSAwO1xuXHRcdGZvcih2YXIgaSA9IDA7IGkgPCB0YXNrcy5sZW5ndGg7IGkrKylcblx0XHR7XG5cdFx0XHRpZih0YXNrc1tpXS5zdGF0dXMoKSAhPSBcInBhdXNlZFwiKVxuXHRcdFx0XHRzcGVlZCArPSB0YXNrc1tpXS5zcGVlZFVwbG9hZCgpO1xuXHRcdH1cblx0XHRyZXR1cm4gc3BlZWQ7XG5cdH0pO1xuXHRcblx0dG90YWxVcGxvYWRTcGVlZFN0cmluZyA9IGtvLmNvbXB1dGVkPHN0cmluZz4oKCkgPT4ge1xuXHRcdHJldHVybiBieXRlc1RvU3RyaW5nKHRoaXMudG90YWxVcGxvYWRTcGVlZCgpKSArIFwiL3NcIjtcblx0fSlcblx0XG5cdGZvcm1EaXNhYmxlZCA9IGtvLm9ic2VydmFibGUoZmFsc2UpO1xuXHRuZXdUYXNrRXJyb3JNZXNzYWdlID0ga28ub2JzZXJ2YWJsZSgpO1xuXHRoaWRlU2VlZGluZ1RvcnJlbnRzID0ga28ub2JzZXJ2YWJsZShmYWxzZSk7XG5cdGNsZWFyaW5nRmluaXNoZWRUYXNrcyA9IGtvLm9ic2VydmFibGUoZmFsc2UpO1xuXHRcblx0Y2xlYXJGaW5pc2hlZFRhc2tzKGl0ZW06IFRhc2tNb2RlbCwgZXZlbnQ6IEV2ZW50KTogdm9pZCB7XG5cdFx0aWYoJChldmVudC50YXJnZXQpLmhhc0NsYXNzKFwiZGlzYWJsZWRcIikpXG5cdFx0XHRyZXR1cm47XG5cdFx0XG5cdFx0dGhpcy5jbGVhcmluZ0ZpbmlzaGVkVGFza3ModHJ1ZSk7XG5cdFx0XG5cdFx0dmFyIHRhc2tzID0gdGhpcy5maW5pc2hlZFRhc2tzKCk7XG5cdFx0Zm9yKHZhciBpID0gMDsgaSA8IHRhc2tzLmxlbmd0aDsgaSsrKSB7XG5cdFx0XHR0YXNrc1tpXS5yZW1vdmVkKHRydWUpO1xuXHRcdH1cblx0XHRcblx0XHRnZXRCYWNrZ3JvdW5kUGFnZSgpLmNsZWFyRmluaXNoZWRUYXNrcygoc3VjY2VzcywgZGF0YSkgPT4ge1xuXHRcdFx0dGhpcy5jbGVhcmluZ0ZpbmlzaGVkVGFza3MoZmFsc2UpO1xuXHRcdFx0XG5cdFx0XHRpZihzdWNjZXNzID09IGZhbHNlKSB7XG5cdFx0XHRcdGZvcih2YXIgaSA9IDA7IGkgPCB0YXNrcy5sZW5ndGg7IGkrKykge1xuXHRcdFx0XHRcdHRhc2tzW2ldLnJlbW92ZWQoZmFsc2UpO1xuXHRcdFx0XHR9XG5cdFx0XHR9XG5cdFx0fSk7XG5cdH1cblx0XG5cdGFkZFRhc2soKTogdm9pZCB7XG5cdFx0aWYodGhpcy51cmxJbnB1dFZhbHVlKCkpe1xuXHRcdFx0dGhpcy5mb3JtRGlzYWJsZWQodHJ1ZSk7XG5cdFx0XHR0aGlzLm5ld1Rhc2tFcnJvck1lc3NhZ2UobnVsbCk7XG5cdFx0XHQkKFwiLnVybC1pbnB1dFwiKS5ibHVyKCk7XG5cdFx0XHRnZXRCYWNrZ3JvdW5kUGFnZSgpLmNyZWF0ZVRhc2sodGhpcy51cmxJbnB1dFZhbHVlKCksIG51bGwsIG51bGwsIG51bGwsIChzdWNjZXNzLCBkYXRhKSA9PiB7XG5cdFx0XHRcdHRoaXMuZm9ybURpc2FibGVkKGZhbHNlKTtcblx0XHRcdFx0aWYoc3VjY2VzcyA9PT0gdHJ1ZSkge1xuXHRcdFx0XHRcdHRoaXMudXJsSW5wdXQobnVsbCk7XG5cdFx0XHRcdFx0dGhpcy50b2dnbGVUYXNrRm9ybShmYWxzZSk7XG5cdFx0XHRcdH1cblx0XHRcdFx0ZWxzZSB7XG5cdFx0XHRcdFx0dGhpcy5uZXdUYXNrRXJyb3JNZXNzYWdlKGV4dGVuc2lvbi5nZXRMb2NhbGl6ZWRTdHJpbmcoXCJhcGlfZXJyb3JfXCIgKyBkYXRhKSk7XG5cdFx0XHRcdFx0JChcIi51cmwtaW5wdXRcIikuZm9jdXMoKTtcblx0XHRcdFx0fVxuXHRcdFx0fSk7XG5cdFx0XHRfZ2FxLnB1c2goWydfdHJhY2tFdmVudCcgLCAnQnV0dG9uJyAsICdQb3BvdmVyIEFkZFRhc2tTdWJtaXQnIF0gKTtcblx0XHR9XG5cdH07XG5cdFxuXHRoaWRlVGFza0VsZW1lbnQoZWxlbTogRWxlbWVudCk6IHZvaWQge1xuXHRcdGlmIChlbGVtLm5vZGVUeXBlID09PSAxKSB7XG5cdFx0XHQkKGVsZW0pLmFkZENsYXNzKCdoaWRkZW4nKTtcblx0XHRcdHNldFRpbWVvdXQoKCkgPT4geyAkKGVsZW0pLnJlbW92ZSgpfSw1MDApO1xuXHRcdH1cblx0fTtcblxuXHRzaG93VGFza0VsZW1lbnQoZWxlbTogRWxlbWVudCwgaW5kZXg6IG51bWJlciwgdmFsdWU6IFRhc2tNb2RlbCk6IHZvaWQge1xuXHRcdGlmKGVsZW0ubm9kZVR5cGUgPT09IDEpIHtcblx0XHRcdCQoZWxlbSkuaGlkZSgpLmZhZGVJbigxMDApO1xuXHRcdH1cblx0fTtcblx0XG5cdHJlc3VtZUFsbChpdGVtOiBhbnksIGV2ZW50OiBFdmVudCk6IHZvaWQge1xuXHRcdGlmKCQoZXZlbnQudGFyZ2V0KS5oYXNDbGFzcyhcImRpc2FibGVkXCIpKVxuXHRcdFx0cmV0dXJuO1xuXHRcdFxuXHRcdHZhciB0YXNrcyA9IGtvLnV0aWxzLmFycmF5RmlsdGVyKHRoaXMudmlzaWJsZVRhc2tzKCksICh0YXNrKSA9PiB7XG4gICAgICAgICAgICByZXR1cm4gdGFzay5zdGF0dXMoKSAhPSBcImZpbmlzaGVkXCI7XG4gICAgICAgIH0pO1xuXG5cdFx0dmFyIGlkcyA9IG5ldyBBcnJheTxzdHJpbmc+KCk7XG5cdFx0XG5cdFx0JChldmVudC50YXJnZXQpLmFkZENsYXNzKFwiZGlzYWJsZWRcIik7XG5cdFx0XG5cdFx0Zm9yKHZhciBpID0gMDsgaSA8IHRhc2tzLmxlbmd0aDsgaSsrKSB7XG5cdFx0XHR2YXIgdGFzayA9IHRhc2tzW2ldO1xuXHRcdFx0aWYoIXRhc2sucmVzdW1pbmcoKSkge1xuXHRcdFx0XHR0YXNrLnJlc3VtaW5nKHRydWUpO1xuXHRcdFx0XHRpZHMucHVzaCh0YXNrLmlkKCkpO1xuXHRcdFx0fVxuXHRcdH1cblx0XHRcblx0XHRnZXRCYWNrZ3JvdW5kUGFnZSgpLnJlc3VtZVRhc2soaWRzLCAoc3VjY2VzczogYm9vbGVhbikgPT4ge1xuXHRcdFx0JChldmVudC50YXJnZXQpLnJlbW92ZUNsYXNzKFwiZGlzYWJsZWRcIik7XG5cdFx0XHRmb3IodmFyIGkgPSAwOyBpIDwgdGFza3MubGVuZ3RoOyBpKyspIHtcblx0XHRcdFx0dmFyIHRhc2sgPSB0YXNrc1tpXTtcblx0XHRcdFx0dGFzay5yZXN1bWluZyhmYWxzZSk7XG5cdFx0XHRcdGlmKHN1Y2Nlc3MpIHtcblx0XHRcdFx0XHR0YXNrLnN0YXR1cyhcIndhaXRpbmdcIik7XG5cdFx0XHRcdH1cblx0XHRcdH1cblx0XHR9KTtcblx0fTtcblx0XG5cdHBhdXNlQWxsKGl0ZW06IGFueSwgZXZlbnQ6IEV2ZW50KTogdm9pZCB7XG5cdFx0aWYoJChldmVudC50YXJnZXQpLmhhc0NsYXNzKFwiZGlzYWJsZWRcIikpXG5cdFx0XHRyZXR1cm47XG5cdFx0XG5cdFx0dmFyIHRhc2tzID0gdGhpcy5wYXVzZWJsZVRhc2tzKCk7XG5cdFx0dmFyIGlkcyA9IG5ldyBBcnJheSgpO1xuXHRcdFxuXHRcdCQoZXZlbnQudGFyZ2V0KS5hZGRDbGFzcyhcImRpc2FibGVkXCIpO1xuXHRcdFxuXHRcdGZvcih2YXIgaSA9IDA7IGkgPCB0YXNrcy5sZW5ndGg7IGkrKykge1xuXHRcdFx0dmFyIHRhc2sgPSB0YXNrc1tpXTtcblx0XHRcdGlmKCF0YXNrLnBhdXNpbmcoKSkge1xuXHRcdFx0XHR0YXNrLnBhdXNpbmcodHJ1ZSk7XG5cdFx0XHRcdGlkcy5wdXNoKHRhc2suaWQoKSk7XG5cdFx0XHR9XG5cdFx0fVxuXHRcdFxuXHRcdGdldEJhY2tncm91bmRQYWdlKCkucGF1c2VUYXNrKGlkcywgKHN1Y2Nlc3M6IGJvb2xlYW4pID0+IHtcblx0XHRcdCQoZXZlbnQudGFyZ2V0KS5yZW1vdmVDbGFzcyhcImRpc2FibGVkXCIpO1xuXHRcdFx0Zm9yKHZhciBpID0gMDsgaSA8IHRhc2tzLmxlbmd0aDsgaSsrKSB7XG5cdFx0XHRcdHZhciB0YXNrID0gdGFza3NbaV07XG5cdFx0XHRcdHRhc2sucGF1c2luZyhmYWxzZSk7XG5cdFx0XHRcdGlmKHN1Y2Nlc3MpIHtcblx0XHRcdFx0XHR0YXNrLnN0YXR1cyhcInBhdXNlZFwiKTtcblx0XHRcdFx0fVxuXHRcdFx0fVxuXHRcdH0pO1xuXHR9O1xuXHRcblx0b3BlblNldHRpbmdzKCk6IHZvaWQge1xuXHRcdGV4dGVuc2lvbi5jcmVhdGVUYWIoXCJvcHRpb25zLmh0bWxcIik7XG5cdFx0ZXh0ZW5zaW9uLmhpZGVQb3BvdmVycygpO1xuXHRcdF9nYXEucHVzaChbJ190cmFja0V2ZW50JyAsICdCdXR0b24nICwgJ1BvcG92ZXIgT3Blbk9wdGlvbnNUYWInIF0gKTtcblx0fTtcblx0XG5cdHRvZ2dsZVRhc2tGb3JtKHZpc2libGU6IGJvb2xlYW4pOiB2b2lkIHtcblx0XHRpZih0eXBlb2YgdmlzaWJsZSA9PT0gXCJib29sZWFuXCIpXG5cdFx0XHQkKFwiLm5ldy10YXNrXCIpLnRvZ2dsZUNsYXNzKFwiYWN0aXZlXCIsIHZpc2libGUpO1xuXHRcdGVsc2Vcblx0XHRcdCQoXCIubmV3LXRhc2tcIikudG9nZ2xlQ2xhc3MoXCJhY3RpdmVcIik7XG5cdFx0XG5cdFx0aWYoJChcIi5uZXctdGFza1wiKS5oYXNDbGFzcyhcImFjdGl2ZVwiKSlcblx0XHRcdCQoXCIudXJsLWlucHV0XCIpLmZvY3VzKCk7XG5cdFx0ZWxzZVxuXHRcdFx0JChcIi51cmwtaW5wdXRcIikuYmx1cigpO1xuXHR9O1xuXHRcblx0b3BlbkRvd25sb2FkU3RhdGlvbigpOiB2b2lkIHtcblx0XHRpZih0aGlzLmZ1bGxVcmwoKSAhPSBudWxsKSB7XG5cdFx0XHR2YXIgdXJsID0gdGhpcy5mdWxsVXJsKCk7XG5cdFx0XHRpZih0aGlzLmRzbVZlcnNpb24oKSA8IDcwMDApIC8vIERTTSA1LjIgYW5kIG9sZGVyXG5cdFx0XHRcdHVybCArPSBcIi93ZWJtYW4vaW5kZXguY2dpP2xhdW5jaEFwcD1TWU5PLlNEUy5Eb3dubG9hZFN0YXRpb24uQXBwbGljYXRpb25cIjtcblx0XHRcdGVsc2UgLy8gRFNNIDYuMCBhbmQgbGF0ZXJcblx0XHRcdFx0dXJsICs9IFwiL2luZGV4LmNnaT9sYXVuY2hBcHA9U1lOTy5TRFMuRG93bmxvYWRTdGF0aW9uLkFwcGxpY2F0aW9uXCI7XG5cdFx0XHRcblx0XHRcdGV4dGVuc2lvbi5jcmVhdGVUYWIodXJsKTtcblx0XHRcdGV4dGVuc2lvbi5oaWRlUG9wb3ZlcnMoKTtcblx0XHRcdF9nYXEucHVzaChbJ190cmFja0V2ZW50JyAsICdCdXR0b24nICwgJ1BvcG92ZXIgT3BlbkRvd25sb2FkU3RhdGlvblRhYicgXSApO1xuXHRcdH1cblx0fTtcblx0XG5cdGxvY2FsaXplZFN0cmluZyhuYW1lOiBzdHJpbmcsIHN1YnN0aXR1dGlvbnM6IHN0cmluZ1tdKTogc3RyaW5nIHtcblx0XHRyZXR1cm4gZXh0ZW5zaW9uLmdldExvY2FsaXplZFN0cmluZyhuYW1lLCBzdWJzdGl0dXRpb25zKTtcblx0fTtcbn0iXSwic291cmNlUm9vdCI6Ii9zb3VyY2UvIn0=
|
train_000.parquet/747
|
{
"file_path": "js/popover-popovermodel.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 30792,
"token_count": 19301
}
|
var IS_SAFARI = (typeof (safari) != "undefined");
var IS_CHROME = (typeof (chrome) != "undefined");
var IS_OPERA = navigator.vendor.indexOf("Opera") != -1;
var DONATION_URL = "http://www.download-station-extension.com/donate";
var SAFARI_UPDATE_MANIFEST = "https://www.download-station-extension.com/downloads/safari-extension-updatemanifest.plist";
var DONATION_CHECK_URL = "https://www.download-station-extension.com/donate/check_email";
var ANALYTICS_ID = 'UA-1458452-7';
try {
if (localStorage["disableGA"] == "true") {
window["_gaUserPrefs"] = { ioo: function () { return true; } };
}
}
catch (exc) { }
String.prototype.extractUrls = function () {
var text = this;
var patt = new RegExp("(https?|magnet|thunder|flashget|qqdl|s?ftps?|ed2k)(://|:?)\\S+", "ig");
var urls = new Array();
do {
var result = patt.exec(text);
if (result != null) {
var url = result[0];
if (url.charAt(url.length - 1) == ",")
url = url.substring(0, url.length - 1);
urls.push(result[0]);
}
} while (result != null);
if (urls.length > 0)
return urls;
else
return [text];
};
Array.prototype.contains = function (item) {
for (var i = 0; i < this.length; i++) {
if (this[i] == item)
return true;
}
return false;
};
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImpzL3ZhcmlhYmxlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxJQUFJLFNBQVMsR0FBRyxDQUFDLE9BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxXQUFXLENBQUMsQ0FBQztBQUNoRCxJQUFJLFNBQVMsR0FBRyxDQUFDLE9BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxXQUFXLENBQUMsQ0FBQztBQUNoRCxJQUFJLFFBQVEsR0FBSSxTQUFTLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztBQUN4RCxJQUFJLFlBQVksR0FBTSxrREFBa0QsQ0FBQztBQUN6RSxJQUFJLHNCQUFzQixHQUFHLDRGQUE0RixDQUFDO0FBQzFILElBQUksa0JBQWtCLEdBQUksK0RBQStELENBQUM7QUFDMUYsSUFBSSxZQUFZLEdBQU8sY0FBYyxDQUFDO0FBRXRDLElBQUksQ0FBQztJQUNKLEVBQUUsQ0FBQSxDQUFDLFlBQVksQ0FBQyxXQUFXLENBQUMsSUFBSSxNQUFNLENBQUMsQ0FBQyxDQUFDO1FBQ2xDLE1BQU8sQ0FBQyxjQUFjLENBQUMsR0FBRyxFQUFFLEdBQUcsRUFBRyxjQUFhLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQztJQUN2RSxDQUFDO0FBQ0YsQ0FBRTtBQUFBLEtBQUssQ0FBQSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQSxDQUFDO0FBRVQsTUFBTSxDQUFDLFNBQVUsQ0FBQyxXQUFXLEdBQUc7SUFDckMsSUFBSSxJQUFJLEdBQUcsSUFBSSxDQUFDO0lBQ2IsSUFBSSxJQUFJLEdBQUcsSUFBSSxNQUFNLENBQUMsZ0VBQWdFLEVBQUUsSUFBSSxDQUFDLENBQUM7SUFDOUYsSUFBSSxJQUFJLEdBQUcsSUFBSSxLQUFLLEVBQUUsQ0FBQztJQUN2QixHQUFHLENBQUM7UUFDQSxJQUFJLE1BQU0sR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBQzdCLEVBQUUsQ0FBQyxDQUFDLE1BQU0sSUFBSSxJQUFJLENBQUMsQ0FBQyxDQUFDO1lBQ2pCLElBQUksR0FBRyxHQUFHLE1BQU0sQ0FBQyxDQUFDLENBQUMsQ0FBQztZQUNwQixFQUFFLENBQUMsQ0FBQyxHQUFHLENBQUMsTUFBTSxDQUFDLEdBQUcsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxDQUFDLElBQUksR0FBRyxDQUFDO2dCQUNsQyxHQUFHLEdBQUcsR0FBRyxDQUFDLFNBQVMsQ0FBQyxDQUFDLEVBQUUsR0FBRyxDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUMsQ0FBQztZQUMzQyxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQ3pCLENBQUM7SUFDTCxDQUFDLFFBQVEsTUFBTSxJQUFJLElBQUksRUFBRTtJQUN6QixFQUFFLENBQUMsQ0FBQyxJQUFJLENBQUMsTUFBTSxHQUFHLENBQUMsQ0FBQztRQUNoQixNQUFNLENBQUMsSUFBSSxDQUFDO0lBQ2hCLElBQUk7UUFDQSxNQUFNLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQztBQUN0QixDQUFDLENBQUM7QUFFSSxLQUFLLENBQUMsU0FBVSxDQUFDLFFBQVEsR0FBRyxVQUFTLElBQVM7SUFDbkQsR0FBRyxDQUFBLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxJQUFJLENBQUMsTUFBTSxFQUFFLENBQUMsRUFBRSxFQUFFLENBQUM7UUFDckMsRUFBRSxDQUFBLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxJQUFJLElBQUksQ0FBQztZQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUM7SUFDakMsQ0FBQztJQUNELE1BQU0sQ0FBQyxLQUFLLENBQUM7QUFDZCxDQUFDLENBQUMiLCJmaWxlIjoianMvdmFyaWFibGVzLmpzIiwic291cmNlc0NvbnRlbnQiOlsidmFyIElTX1NBRkFSSSA9ICh0eXBlb2Yoc2FmYXJpKSAhPSBcInVuZGVmaW5lZFwiKTtcbnZhciBJU19DSFJPTUUgPSAodHlwZW9mKGNocm9tZSkgIT0gXCJ1bmRlZmluZWRcIik7XG52YXIgSVNfT1BFUkEgID0gbmF2aWdhdG9yLnZlbmRvci5pbmRleE9mKFwiT3BlcmFcIikgIT0gLTE7XG52YXIgRE9OQVRJT05fVVJMXHRcdFx0XHQ9IFwiaHR0cDovL3d3dy5kb3dubG9hZC1zdGF0aW9uLWV4dGVuc2lvbi5jb20vZG9uYXRlXCI7XG52YXIgU0FGQVJJX1VQREFURV9NQU5JRkVTVFx0PSBcImh0dHBzOi8vd3d3LmRvd25sb2FkLXN0YXRpb24tZXh0ZW5zaW9uLmNvbS9kb3dubG9hZHMvc2FmYXJpLWV4dGVuc2lvbi11cGRhdGVtYW5pZmVzdC5wbGlzdFwiO1xudmFyIERPTkFUSU9OX0NIRUNLX1VSTFx0XHQ9IFwiaHR0cHM6Ly93d3cuZG93bmxvYWQtc3RhdGlvbi1leHRlbnNpb24uY29tL2RvbmF0ZS9jaGVja19lbWFpbFwiO1xudmFyIEFOQUxZVElDU19JRCBcdFx0XHRcdD0gJ1VBLTE0NTg0NTItNyc7XG5cbnRyeSB7XG5cdGlmKGxvY2FsU3RvcmFnZVtcImRpc2FibGVHQVwiXSA9PSBcInRydWVcIikge1xuXHRcdCg8YW55PndpbmRvdylbXCJfZ2FVc2VyUHJlZnNcIl0gPSB7IGlvbyA6IGZ1bmN0aW9uKCkgeyByZXR1cm4gdHJ1ZTsgfSB9O1xuXHR9XG59IGNhdGNoKGV4Yykge31cblxuKDxhbnk+U3RyaW5nLnByb3RvdHlwZSkuZXh0cmFjdFVybHMgPSBmdW5jdGlvbiAoKSB7XG5cdHZhciB0ZXh0ID0gdGhpcztcbiAgICB2YXIgcGF0dCA9IG5ldyBSZWdFeHAoXCIoaHR0cHM/fG1hZ25ldHx0aHVuZGVyfGZsYXNoZ2V0fHFxZGx8cz9mdHBzP3xlZDJrKSg6Ly98Oj8pXFxcXFMrXCIsIFwiaWdcIik7XG4gICAgdmFyIHVybHMgPSBuZXcgQXJyYXkoKTtcbiAgICBkbyB7XG4gICAgICAgIHZhciByZXN1bHQgPSBwYXR0LmV4ZWModGV4dCk7XG4gICAgICAgIGlmIChyZXN1bHQgIT0gbnVsbCkge1xuICAgICAgICAgICAgdmFyIHVybCA9IHJlc3VsdFswXTtcbiAgICAgICAgICAgIGlmICh1cmwuY2hhckF0KHVybC5sZW5ndGggLSAxKSA9PSBcIixcIilcbiAgICAgICAgICAgICAgICB1cmwgPSB1cmwuc3Vic3RyaW5nKDAsIHVybC5sZW5ndGggLSAxKTtcbiAgICAgICAgICAgIHVybHMucHVzaChyZXN1bHRbMF0pO1xuICAgICAgICB9XG4gICAgfSB3aGlsZSAocmVzdWx0ICE9IG51bGwpO1xuICAgIGlmICh1cmxzLmxlbmd0aCA+IDApXG4gICAgICAgIHJldHVybiB1cmxzO1xuICAgIGVsc2VcbiAgICAgICAgcmV0dXJuIFt0ZXh0XTtcbn07XG5cbig8YW55PkFycmF5LnByb3RvdHlwZSkuY29udGFpbnMgPSBmdW5jdGlvbihpdGVtOiBhbnkpIHtcblx0Zm9yKHZhciBpID0gMDsgaSA8IHRoaXMubGVuZ3RoOyBpKyspIHtcblx0XHRpZih0aGlzW2ldID09IGl0ZW0pIHJldHVybiB0cnVlO1xuXHR9XG5cdHJldHVybiBmYWxzZTtcbn07Il0sInNvdXJjZVJvb3QiOiIvc291cmNlLyJ9
|
train_000.parquet/748
|
{
"file_path": "js/variables.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 5647,
"token_count": 3715
}
|
/// <reference path="../../typings/index.d.ts"/>
var _this = this;
var textDirection = "ltr";
var _gaq = _gaq || [];
_gaq.push(['_setAccount', ANALYTICS_ID]);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = 'https://ssl.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
window.addEventListener('load', function load() {
window.removeEventListener('load', load, false);
document.body.classList.remove('load');
}, false);
var taskMapping = {
create: function (item) {
return new TaskModel(item.data);
},
key: function (item) {
return ko.utils.unwrapObservable(item.id);
}
};
var viewModel = new PopoverModel();
var popoverVisible = false;
var safariPopoverObject;
try {
var deviceInfo = getBackgroundPage().getDeviceInfo();
updateDeviceInfo(deviceInfo);
if (deviceInfo != null) {
var tasks = getBackgroundPage().getTasks();
updateTasks(tasks);
}
if (extension.getLocalizedString("textDirection") == "rtl") {
textDirection = "rtl";
$(document.body).removeClass("ltr").addClass("rtl");
}
extension.storage.get("hideSeedingTorrents", function (storageItems) {
viewModel.hideSeedingTorrents(storageItems["hideSeedingTorrents"] === true);
});
ko.applyBindings(viewModel);
$(document.body).show();
extension.onPopoverVisible(function () {
popoverVisible = true;
getBackgroundPage().setUpdateInterval(3);
var tasks = getBackgroundPage().getTasks();
updateTasks(tasks);
}, "statusPopover");
extension.onPopoverHidden(function () {
popoverVisible = false;
getBackgroundPage().setUpdateInterval();
viewModel.toggleTaskForm(false);
}, "statusPopover");
$(document).on("click", "a[href][target='_blank']", function (event) {
event.preventDefault();
var url = $(_this).prop("href");
extension.createTab(url);
extension.hidePopovers();
_gaq.push(['_trackEvent', 'Button', 'Popover link', url]);
});
updatePopoverSize();
}
catch (exc) {
var bgPage = extension.getBackgroundPage();
if (bgPage != null)
bgPage.console.log(exc);
location.reload(true);
}
;
function getBackgroundPage() {
return extension.getBackgroundPage();
}
function updateDeviceInfo(info) {
if (info !== null) {
viewModel.deviceName(info.deviceName);
viewModel.dsmVersion(info.dsmVersion);
viewModel.dsmVersionString(info.dsmVersionString);
viewModel.fullUrl(info.fullUrl);
viewModel.loggedIn(info.loggedIn);
viewModel.downloadStationConfigured(true);
viewModel.statusMessage(info.status);
}
else {
viewModel.downloadStationConfigured(false);
}
}
function updateTasks(tasks) {
if (!popoverVisible)
return;
// Re-create array to avoid problems with knockout mapping
var taskArray = new Array();
for (var i = 0; i < tasks.length; i++) {
taskArray.push(tasks[i]);
}
ko.mapping.fromJS(taskArray, taskMapping, viewModel.tasks);
}
function updatePopoverSize() {
// Only for Safari, Chrome uses the document height
if (IS_SAFARI) {
var updateSizeFunction = function () {
if (!safariPopoverObject) {
safariPopoverObject = extension.getSafariPopoverObject("statusPopover");
}
if (safariPopoverObject) {
safariPopoverObject.height = document.body.offsetHeight;
safariPopoverObject.width = document.body.offsetWidth;
}
};
var updateSizeInterval;
extension.onPopoverVisible(function () {
updateSizeInterval = setInterval(updateSizeFunction, 50);
updateSizeFunction();
}, "statusPopover");
extension.onPopoverHidden(function () {
clearInterval(updateSizeInterval);
}, "statusPopover");
}
}
function bytesToString(bytes) {
var bytes = parseInt(bytes);
var KILOBYTE = 1024;
var MEGABYTE = KILOBYTE * 1024;
var GIGABYTE = MEGABYTE * 1024;
var TERABYTE = GIGABYTE * 1024;
if (isNaN(bytes)) {
return "0";
}
if (bytes < KILOBYTE) {
return Math.round(bytes * 100) / 100 + ' B';
}
else if (bytes < MEGABYTE) {
return Math.round(bytes / KILOBYTE * 100) / 100 + ' KB';
}
else if (bytes < GIGABYTE) {
return Math.round(bytes / MEGABYTE * 100) / 100 + ' MB';
}
else if (bytes < TERABYTE) {
return Math.round(bytes / GIGABYTE * 100) / 100 + ' GB';
}
else {
return Math.round(bytes / TERABYTE * 100) / 100 + ' TB';
}
}
//# sourceMappingURL=data:application/json;base64,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QztJQUNqQyxJQUFJLFFBQVEsR0FBRyxJQUFJLENBQUM7SUFDcEIsSUFBSSxRQUFRLEdBQUcsUUFBUSxHQUFHLElBQUksQ0FBQztJQUMvQixJQUFJLFFBQVEsR0FBRyxRQUFRLEdBQUcsSUFBSSxDQUFDO0lBQy9CLElBQUksUUFBUSxHQUFHLFFBQVEsR0FBRyxJQUFJLENBQUM7SUFFL0IsRUFBRSxDQUFDLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUNmLE1BQU0sQ0FBQyxHQUFHLENBQUM7SUFDZixDQUFDO0lBQUMsRUFBRSxDQUFDLENBQUMsS0FBSyxHQUFHLFFBQVEsQ0FBQyxDQUFDLENBQUM7UUFDckIsTUFBTSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxHQUFHLEdBQUcsQ0FBQyxHQUFHLEdBQUcsR0FBRyxJQUFJLENBQUE7SUFDL0MsQ0FBQztJQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsQ0FBQyxLQUFLLEdBQUcsUUFBUSxDQUFDLENBQUMsQ0FBQztRQUMxQixNQUFNLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLEdBQUcsUUFBUSxHQUFHLEdBQUcsQ0FBQyxHQUFHLEdBQUcsR0FBRyxLQUFLLENBQUM7SUFDNUQsQ0FBQztJQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsQ0FBQyxLQUFLLEdBQUcsUUFBUSxDQUFDLENBQUMsQ0FBQztRQUMxQixNQUFNLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLEdBQUcsUUFBUSxHQUFHLEdBQUcsQ0FBQyxHQUFHLEdBQUcsR0FBRyxLQUFLLENBQUM7SUFDNUQsQ0FBQztJQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsQ0FBQyxLQUFLLEdBQUcsUUFBUSxDQUFDLENBQUMsQ0FBQztRQUMxQixNQUFNLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLEdBQUcsUUFBUSxHQUFHLEdBQUcsQ0FBQyxHQUFHLEdBQUcsR0FBRyxLQUFLLENBQUM7SUFDNUQsQ0FBQztJQUFDLElBQUksQ0FBQyxDQUFDO1FBQ0osTUFBTSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxHQUFHLFFBQVEsR0FBRyxHQUFHLENBQUMsR0FBRyxHQUFHLEdBQUcsS0FBSyxDQUFDO0lBQzVELENBQUM7QUFDTCxDQUFDIiwiZmlsZSI6ImpzL3BvcG92ZXIuanMiLCJzb3VyY2VzQ29udGVudCI6WyIvLy8gPHJlZmVyZW5jZSBwYXRoPVwiLi4vLi4vdHlwaW5ncy9pbmRleC5kLnRzXCIvPlxuXG52YXIgdGV4dERpcmVjdGlvbiA9IFwibHRyXCI7XG52YXIgX2dhcTogQXJyYXk8YW55PiA9IF9nYXEgfHwgW107XG5fZ2FxLnB1c2goWydfc2V0QWNjb3VudCcsIEFOQUxZVElDU19JRF0pO1xuX2dhcS5wdXNoKFsnX3RyYWNrUGFnZXZpZXcnXSk7XG5cbigoKSA9PiB7XG5cdHZhciBnYSA9IGRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoJ3NjcmlwdCcpO1xuXHRnYS50eXBlID0gJ3RleHQvamF2YXNjcmlwdCc7XG5cdGdhLmFzeW5jID0gdHJ1ZTtcblx0Z2Euc3JjID0gJ2h0dHBzOi8vc3NsLmdvb2dsZS1hbmFseXRpY3MuY29tL2dhLmpzJztcblx0XG5cdHZhciBzID0gZG9jdW1lbnQuZ2V0RWxlbWVudHNCeVRhZ05hbWUoJ3NjcmlwdCcpWzBdO1xuXHRzLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGdhLCBzKTtcbn0pKCk7XG5cbndpbmRvdy5hZGRFdmVudExpc3RlbmVyKCdsb2FkJyxmdW5jdGlvbiBsb2FkKCkge1xuICAgIHdpbmRvdy5yZW1vdmVFdmVudExpc3RlbmVyKCdsb2FkJywgbG9hZCwgZmFsc2UpO1xuICAgIGRvY3VtZW50LmJvZHkuY2xhc3NMaXN0LnJlbW92ZSgnbG9hZCcpO1xufSxmYWxzZSk7XG5cblxuXG52YXIgdGFza01hcHBpbmc6IEtub2Nrb3V0TWFwcGluZ09wdGlvbnMgPSB7XG5cdGNyZWF0ZTpcdChpdGVtOiBLbm9ja291dE1hcHBpbmdDcmVhdGVPcHRpb25zKSA9PiB7XG5cdFx0cmV0dXJuIG5ldyBUYXNrTW9kZWwoaXRlbS5kYXRhKTtcblx0fSxcblx0a2V5OiAoaXRlbTogVGFza01vZGVsKSA9PiB7XG5cdFx0cmV0dXJuIGtvLnV0aWxzLnVud3JhcE9ic2VydmFibGUoaXRlbS5pZCk7XG5cdH1cbn07XG5cbnZhciB2aWV3TW9kZWwgPSBuZXcgUG9wb3Zlck1vZGVsKCk7XG52YXIgcG9wb3ZlclZpc2libGUgPSBmYWxzZTtcbnZhciBzYWZhcmlQb3BvdmVyT2JqZWN0OiBTYWZhcmlFeHRlbnNpb25Qb3BvdmVyO1xuXG50cnl7XG5cdHZhciBkZXZpY2VJbmZvID0gZ2V0QmFja2dyb3VuZFBhZ2UoKS5nZXREZXZpY2VJbmZvKCk7XG5cdHVwZGF0ZURldmljZUluZm8oZGV2aWNlSW5mbyk7XG5cdGlmKGRldmljZUluZm8gIT0gbnVsbCkge1xuXHRcdHZhciB0YXNrcyA9IGdldEJhY2tncm91bmRQYWdlKCkuZ2V0VGFza3MoKTtcblx0XHR1cGRhdGVUYXNrcyh0YXNrcyk7XG5cdH1cblx0aWYoZXh0ZW5zaW9uLmdldExvY2FsaXplZFN0cmluZyhcInRleHREaXJlY3Rpb25cIikgPT0gXCJydGxcIikge1xuXHRcdHRleHREaXJlY3Rpb24gPSBcInJ0bFwiO1xuXHRcdCQoZG9jdW1lbnQuYm9keSkucmVtb3ZlQ2xhc3MoXCJsdHJcIikuYWRkQ2xhc3MoXCJydGxcIik7XG5cdH1cblx0XG5cdGV4dGVuc2lvbi5zdG9yYWdlLmdldChcImhpZGVTZWVkaW5nVG9ycmVudHNcIiwgKHN0b3JhZ2VJdGVtcykgPT4ge1xuXHRcdHZpZXdNb2RlbC5oaWRlU2VlZGluZ1RvcnJlbnRzKHN0b3JhZ2VJdGVtc1tcImhpZGVTZWVkaW5nVG9ycmVudHNcIl0gPT09IHRydWUpO1xuXHR9KTtcblx0XG5cdGtvLmFwcGx5QmluZGluZ3Modmlld01vZGVsKTtcblx0JChkb2N1bWVudC5ib2R5KS5zaG93KCk7XG5cdFxuXHRleHRlbnNpb24ub25Qb3BvdmVyVmlzaWJsZSgoKSA9PiB7XG5cdFx0cG9wb3ZlclZpc2libGUgPSB0cnVlO1xuXHRcdGdldEJhY2tncm91bmRQYWdlKCkuc2V0VXBkYXRlSW50ZXJ2YWwoMyk7XG5cdFx0dmFyIHRhc2tzID0gZ2V0QmFja2dyb3VuZFBhZ2UoKS5nZXRUYXNrcygpO1xuXHRcdHVwZGF0ZVRhc2tzKHRhc2tzKTtcblx0fSwgXCJzdGF0dXNQb3BvdmVyXCIpO1xuXHRcblx0ZXh0ZW5zaW9uLm9uUG9wb3ZlckhpZGRlbigoKSA9PiB7XG5cdFx0cG9wb3ZlclZpc2libGUgPSBmYWxzZTtcblx0XHRnZXRCYWNrZ3JvdW5kUGFnZSgpLnNldFVwZGF0ZUludGVydmFsKCk7XG5cdFx0dmlld01vZGVsLnRvZ2dsZVRhc2tGb3JtKGZhbHNlKTtcblx0fSwgXCJzdGF0dXNQb3BvdmVyXCIpO1xuXHRcblx0JChkb2N1bWVudCkub24oXCJjbGlja1wiLCBcImFbaHJlZl1bdGFyZ2V0PSdfYmxhbmsnXVwiLCAoZXZlbnQpID0+IHtcbiAgICBcdGV2ZW50LnByZXZlbnREZWZhdWx0KCk7XG4gICAgXHR2YXIgdXJsID0gJCh0aGlzKS5wcm9wKFwiaHJlZlwiKTtcbiAgICBcdFxuXHRcdGV4dGVuc2lvbi5jcmVhdGVUYWIodXJsKTtcblx0XHRleHRlbnNpb24uaGlkZVBvcG92ZXJzKCk7XG5cdFx0XG5cdFx0X2dhcS5wdXNoKFsnX3RyYWNrRXZlbnQnICwgJ0J1dHRvbicgLCAnUG9wb3ZlciBsaW5rJywgdXJsXSk7XG5cdH0pO1xuXHRcblx0dXBkYXRlUG9wb3ZlclNpemUoKTtcbn0gY2F0Y2goZXhjKSB7XG5cdHZhciBiZ1BhZ2UgPSBleHRlbnNpb24uZ2V0QmFja2dyb3VuZFBhZ2UoKTtcblx0aWYoYmdQYWdlICE9IG51bGwpXG5cdFx0YmdQYWdlLmNvbnNvbGUubG9nKGV4Yyk7XG5cdGxvY2F0aW9uLnJlbG9hZCh0cnVlKTtcbn07XG5cbmludGVyZmFjZSBEb3dubG9hZFN0YXRpb25FeHRlbnNpb25CYWNrZ3JvdW5kUGFnZSBleHRlbmRzIFdpbmRvdyB7XG4gICAgc2V0VXBkYXRlSW50ZXJ2YWwoaW50ZXJ2YWw/OiBudW1iZXIpOiB2b2lkO1xuICAgIGdldERldmljZUluZm8oKTogSVN5bm9sb2d5RGV2aWNlSW5mbztcbiAgICBnZXRUYXNrcygpOiBJRG93bmxvYWRTdGF0aW9uVGFza1tdO1xuICAgIGNyZWF0ZVRhc2sodXJsOiBzdHJpbmcsIHVzZXJuYW1lPzogc3RyaW5nLCBwYXNzd29yZD86IHN0cmluZywgdW56aXBQYXNzd29yZD86IHN0cmluZywgY2FsbGJhY2s/OiAoc3VjY2VzczogYm9vbGVhbiwgZGF0YTogYW55KSA9PiB2b2lkKTogdm9pZDtcbiAgICBwYXVzZVRhc2soaWRzOiBzdHJpbmd8c3RyaW5nW10sIGNhbGxiYWNrOiAoc3VjY2VzczogYm9vbGVhbiwgZGF0YTogYW55KSA9PiB2b2lkKTogdm9pZDtcbiAgICByZXN1bWVUYXNrKGlkczogc3RyaW5nfHN0cmluZ1tdLCBjYWxsYmFjazogKHN1Y2Nlc3M6IGJvb2xlYW4sIGRhdGE6IGFueSkgPT4gdm9pZCk6IHZvaWQ7XG4gICAgZGVsZXRlVGFzayhpZHM6IHN0cmluZ3xzdHJpbmdbXSwgY2FsbGJhY2s6IChzdWNjZXNzOiBib29sZWFuLCBkYXRhOiBhbnkpID0+IHZvaWQpOiB2b2lkO1xuICAgIGNsZWFyRmluaXNoZWRUYXNrcyhjYWxsYmFjazogKHN1Y2Nlc3M6IGJvb2xlYW4sIGRhdGE6IGFueSkgPT4gdm9pZCk6IHZvaWQ7XG59XG5cbmZ1bmN0aW9uIGdldEJhY2tncm91bmRQYWdlKCk6IERvd25sb2FkU3RhdGlvbkV4dGVuc2lvbkJhY2tncm91bmRQYWdlIHtcbiAgICByZXR1cm4gPERvd25sb2FkU3RhdGlvbkV4dGVuc2lvbkJhY2tncm91bmRQYWdlPmV4dGVuc2lvbi5nZXRCYWNrZ3JvdW5kUGFnZSgpO1xufVxuXG5mdW5jdGlvbiB1cGRhdGVEZXZpY2VJbmZvKGluZm86IElTeW5vbG9neURldmljZUluZm8pIHtcblx0aWYoaW5mbyAhPT0gbnVsbCkge1xuXHRcdHZpZXdNb2RlbC5kZXZpY2VOYW1lKGluZm8uZGV2aWNlTmFtZSk7XG5cdFx0dmlld01vZGVsLmRzbVZlcnNpb24oaW5mby5kc21WZXJzaW9uKTtcblx0XHR2aWV3TW9kZWwuZHNtVmVyc2lvblN0cmluZyhpbmZvLmRzbVZlcnNpb25TdHJpbmcpO1xuXHRcdHZpZXdNb2RlbC5mdWxsVXJsKGluZm8uZnVsbFVybCk7XG5cdFx0dmlld01vZGVsLmxvZ2dlZEluKGluZm8ubG9nZ2VkSW4pO1xuXHRcdHZpZXdNb2RlbC5kb3dubG9hZFN0YXRpb25Db25maWd1cmVkKHRydWUpO1xuXHRcdHZpZXdNb2RlbC5zdGF0dXNNZXNzYWdlKGluZm8uc3RhdHVzKTtcblx0fSBlbHNlIHtcblx0XHR2aWV3TW9kZWwuZG93bmxvYWRTdGF0aW9uQ29uZmlndXJlZChmYWxzZSk7XG5cdH1cbn1cblxuZnVuY3Rpb24gdXBkYXRlVGFza3ModGFza3M6IEFycmF5PElEb3dubG9hZFN0YXRpb25UYXNrPikge1xuXHRpZighcG9wb3ZlclZpc2libGUpXG5cdFx0cmV0dXJuO1xuXHRcblx0Ly8gUmUtY3JlYXRlIGFycmF5IHRvIGF2b2lkIHByb2JsZW1zIHdpdGgga25vY2tvdXQgbWFwcGluZ1xuXHR2YXIgdGFza0FycmF5ID0gbmV3IEFycmF5PElEb3dubG9hZFN0YXRpb25UYXNrPigpO1xuXHRmb3IodmFyIGkgPSAwOyBpIDwgdGFza3MubGVuZ3RoOyBpKyspIHtcblx0XHR0YXNrQXJyYXkucHVzaCh0YXNrc1tpXSk7XG5cdH1cblx0XG5cdGtvLm1hcHBpbmcuZnJvbUpTKHRhc2tBcnJheSwgdGFza01hcHBpbmcsIHZpZXdNb2RlbC50YXNrcyk7XG59XG5cbmZ1bmN0aW9uIHVwZGF0ZVBvcG92ZXJTaXplKCkge1xuXHQvLyBPbmx5IGZvciBTYWZhcmksIENocm9tZSB1c2VzIHRoZSBkb2N1bWVudCBoZWlnaHRcblx0aWYoSVNfU0FGQVJJKSB7XG5cdFx0dmFyIHVwZGF0ZVNpemVGdW5jdGlvbiA9ICgpID0+IHtcblx0XHRcdGlmKCFzYWZhcmlQb3BvdmVyT2JqZWN0KSB7XG5cdFx0XHRcdHNhZmFyaVBvcG92ZXJPYmplY3QgPSBleHRlbnNpb24uZ2V0U2FmYXJpUG9wb3Zlck9iamVjdChcInN0YXR1c1BvcG92ZXJcIik7XG4gICAgICAgICAgICB9XG5cdFx0XHRcblx0XHRcdGlmKHNhZmFyaVBvcG92ZXJPYmplY3QpIHtcblx0XHRcdFx0c2FmYXJpUG9wb3Zlck9iamVjdC5oZWlnaHQgPSBkb2N1bWVudC5ib2R5Lm9mZnNldEhlaWdodDtcblx0XHRcdFx0c2FmYXJpUG9wb3Zlck9iamVjdC53aWR0aCA9IGRvY3VtZW50LmJvZHkub2Zmc2V0V2lkdGg7XG5cdFx0XHR9XG5cdFx0fTtcblx0XHR2YXIgdXBkYXRlU2l6ZUludGVydmFsOiBudW1iZXI7XG5cdFx0ZXh0ZW5zaW9uLm9uUG9wb3ZlclZpc2libGUoKCkgPT4ge1xuXHRcdFx0dXBkYXRlU2l6ZUludGVydmFsID0gc2V0SW50ZXJ2YWwoPGFueT51cGRhdGVTaXplRnVuY3Rpb24sIDUwKTtcblx0XHRcdHVwZGF0ZVNpemVGdW5jdGlvbigpO1xuXHRcdH0sIFwic3RhdHVzUG9wb3ZlclwiKTtcblx0XHRcblx0XHRleHRlbnNpb24ub25Qb3BvdmVySGlkZGVuKCgpID0+IHtcblx0XHRcdGNsZWFySW50ZXJ2YWwodXBkYXRlU2l6ZUludGVydmFsKTtcblx0XHR9LCBcInN0YXR1c1BvcG92ZXJcIik7XG5cdH1cbn1cblxuZnVuY3Rpb24gYnl0ZXNUb1N0cmluZyhieXRlczogbnVtYmVyKSB7XG4gICAgdmFyIGJ5dGVzID0gcGFyc2VJbnQoPGFueT5ieXRlcyk7XG4gICAgdmFyIEtJTE9CWVRFID0gMTAyNDtcbiAgICB2YXIgTUVHQUJZVEUgPSBLSUxPQllURSAqIDEwMjQ7XG4gICAgdmFyIEdJR0FCWVRFID0gTUVHQUJZVEUgKiAxMDI0O1xuICAgIHZhciBURVJBQllURSA9IEdJR0FCWVRFICogMTAyNDtcblxuICAgIGlmIChpc05hTihieXRlcykpIHtcbiAgICAgICAgcmV0dXJuIFwiMFwiO1xuICAgIH0gaWYgKGJ5dGVzIDwgS0lMT0JZVEUpIHtcbiAgICAgICAgcmV0dXJuIE1hdGgucm91bmQoYnl0ZXMgKiAxMDApIC8gMTAwICsgJyBCJ1xuICAgIH0gZWxzZSBpZiAoYnl0ZXMgPCBNRUdBQllURSkge1xuICAgICAgICByZXR1cm4gTWF0aC5yb3VuZChieXRlcyAvIEtJTE9CWVRFICogMTAwKSAvIDEwMCArICcgS0InO1xuICAgIH0gZWxzZSBpZiAoYnl0ZXMgPCBHSUdBQllURSkge1xuICAgICAgICByZXR1cm4gTWF0aC5yb3VuZChieXRlcyAvIE1FR0FCWVRFICogMTAwKSAvIDEwMCArICcgTUInO1xuICAgIH0gZWxzZSBpZiAoYnl0ZXMgPCBURVJBQllURSkge1xuICAgICAgICByZXR1cm4gTWF0aC5yb3VuZChieXRlcyAvIEdJR0FCWVRFICogMTAwKSAvIDEwMCArICcgR0InO1xuICAgIH0gZWxzZSB7XG4gICAgICAgIHJldHVybiBNYXRoLnJvdW5kKGJ5dGVzIC8gVEVSQUJZVEUgKiAxMDApIC8gMTAwICsgJyBUQic7XG4gICAgfVxufSJdLCJzb3VyY2VSb290IjoiL3NvdXJjZS8ifQ==
|
train_000.parquet/749
|
{
"file_path": "js/popover.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 19913,
"token_count": 13081
}
|
function ExtensionUpdater ()
{
"use strict";
var self = this;
this.run = function() {
var currentVersion = extension.getExtensionVersion();
extension.storage.get("extensionVersion", function(storageItems) {
var previousVersion = storageItems.extensionVersion || "1.6.3";
self.update(previousVersion, currentVersion);
extension.storage.set({ extensionVersion: currentVersion});
});
};
this.update = function (fromVersion, toVersion) {
if(this.compareVersion(fromVersion, toVersion) == -1)
{
for (var i = 0; i < this.changes.length; i++)
{
var change = this.changes[i];
if(this.compareVersion(fromVersion, change.version) <= 0 && this.compareVersion(toVersion, change.version) >= 0)
{
change.updateFunction();
console.log("Update function %s executed.", change.version);
extension.storage.set({ extensionVersion: change.version });
}
}
console.log("Extension updated from %s to %s.", fromVersion, toVersion);
_gaq.push(['_trackEvent', 'Startup', 'Updated', 'From ' + fromVersion + ' to ' + toVersion]);
}
};
this.compareVersion = function (version, compareToVersion) {
var v1parts = version.toString().split('.');
var v2parts = compareToVersion.toString().split('.');
while(v1parts.length < v2parts.length) {
v1parts.push(0);
}
while(v2parts.length < v1parts.length) {
v2parts.push(0);
}
for (var i = 0; i < v1parts.length; ++i) {
var v1part = parseInt(v1parts[i]);
var v2part = parseInt(v2parts[i]);
if(isNaN(v1part))
v1part = 0;
if(isNaN(v2part))
v2part = 0;
if (v1part == v2part) {
continue;
}
else if (v1part > v2part) {
return 1;
}
else {
return -1;
}
}
return 0;
};
this.changes = [
/*{
version: "2.0.3",
updateFunction : function() {}
}*/
];
}
|
train_000.parquet/750
|
{
"file_path": "js/updater.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 1848,
"token_count": 813
}
|
ko.bindingHandlers.bsTooltip = {
init: function (element, valueAccessor, allBindingsAccessor, viewModel, bindingContext) {
var options = ko.utils.unwrapObservable(valueAccessor());
var visible = ko.utils.unwrapObservable(options.visible);
var title = ko.utils.unwrapObservable(options.title);
var viewport = ko.utils.unwrapObservable(options.viewport);
$(element).tooltip({
viewport: viewport ? viewport : 'body',
placement: "bottom",
title: options.hasOwnProperty("title") ? title : $(element).prop("title"),
trigger: options.hasOwnProperty("visible") ? "manual" : "hover focus",
template: '<div class="tooltip tooltip-danger"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>'
});
var updateVisible = function (newValue) {
var tip = $(element).data("bs.tooltip").$tip;
var oldState = tip && tip.is(":visible");
if(newValue && !oldState)
$(element).tooltip("show");
else if(!newValue && oldState)
$(element).tooltip("hide");
}
var updateTitle = function (newValue) {
if(!newValue) {
updateVisible(false);
}
else {
$(element).attr('title', newValue)
.attr('data-original-title', newValue)
.tooltip('fixTitle')
.data("bs.tooltip");
var tip = $(element).data("bs.tooltip").$tip;
if(tip)
tip.find(".tooltip-inner").text(newValue);
}
}
var titleSubscription;
if(ko.isObservable(options.title))
{
titleSubscription = options.visible.subscribe(updateTitle);
}
var visibleSubscription;
if(ko.isObservable(options.visible))
{
visibleSubscription = options.visible.subscribe(updateVisible);
}
ko.utils.domNodeDisposal.addDisposeCallback(element, function() {
if(visibleSubscription)
visibleSubscription.dispose();
if(titleSubscription)
titleSubscription.dispose();
$(element).tooltip("destroy");
});
updateVisible(visible);
}
};
var viewModel;
$(document).ready(function(){
// !Localize the page
$('[data-message]').each(function() {
var name = $(this).data('message');
$(this).text(extension.getLocalizedString(name));
});
$('[data-attr-message]').each(function() {
var attributes = $(this).data('attr-message').split(',');
for(var i = 0; i < attributes.length; i++) {
var parts = attributes[i].split('|');
var attr = parts[0];
var name = parts[1];
$(this).attr(attr, extension.getLocalizedString(name));
}
});
$(document).on("click", "[data-toggle-show-password]", function(event) {
event.preventDefault();
var inputId = $(this).data("toggle-show-password");
var passwordInput = $("#" + inputId);
if(passwordInput.prop("type") == "password")
{
$(this).find(".fa").removeClass("fa-eye").addClass("fa-eye-slash");
passwordInput.prop("type", "text");
}
else
{
$(this).find(".fa").removeClass("fa-eye-slash").addClass("fa-eye");
passwordInput.prop("type", "password");
}
passwordInput.focus();
});
/*
$("#url").val(urls.join("\n"));
*/
$(document.body).popover({
placement: "auto left",
trigger: "focus",
container: "body",
selector: "input[data-content], textarea[data-content], select[data-content]"
}).on("shown", function(event) {
event.stopPropagation();
}).on("hidden", function(event) {
event.stopPropagation();
});
var getParams = $.deparam(window.location.search.replace("?", ""));
viewModel = new DownloadDialogViewModel();
viewModel.checkSupportedFeatures();
var initialFolder = createFoldersForPath("/");
viewModel.setCurrentFolder(initialFolder);
viewModel.urls(getParams.url);
ko.applyBindings(viewModel);
$("#add-download").bind("shown.bs.modal", "#add-download", function(event) {
if($(event.target).get(0) === $("#add-download").get(0)){
viewModel.setUrlsTextareaHeight();
}
});
$('#add-download').bind('hidden.bs.modal', "#add-download", function (event) {
if($(event.target).get(0) === $("#add-download").get(0)){
extension.sendMessageToBackground("sendRemoveDialogMessage", { dialogId: getParams.id });
}
});
$('#add-download').modal("show");
});
function createFoldersForPath(path)
{
var levels = path.split("/");
var parentFolder = new Folder({
name: "/",
path: "/",
right: "RO"
}, null);
var folderPath = "";
for(var i = 0; i < levels.length; i++)
{
if(levels[i])
{
folderPath += "/" + levels[i];
parentFolder = new Folder({
name: levels[i],
path: folderPath
}, parentFolder);
}
}
return parentFolder;
}
function DownloadDialogViewModel()
{
"use strict";
var self = this;
this.urls = ko.observable();
this.username = ko.observable();
this.password = ko.observable();
this.unzipPassword = ko.observable();
this.setUrlsTextareaHeight = function() {
var urlsTextarea = $("#urls");
urlsTextarea.css("height", "0px");
var height = urlsTextarea.prop("scrollHeight") + 2;
if(height < 34)
height = 34;
else if(height > 150)
height = 150;
urlsTextarea.css("height", height + "px");
};
this.extractUrls = function()
{
var urls = this.urls().extractUrls().join("\n");
this.urls(urls);
this.setUrlsTextareaHeight();
}
this.submitDownloadError = ko.observable();
this.submittingDownload = ko.observable(false);
this.submitDownload = function(formElement)
{
if(!self.formValid())
return;
var messageData = {
url: this.urls(),
username: this.username(),
password: this.password(),
unzipPassword: this.unzipPassword(),
taskType: 'Dialog'
};
if(self.customDestinationFolderSupported() && self.useCustomDestinationFolder())
{
messageData.destinationFolder = self.currentFolder().path();
}
self.submittingDownload(true);
self.submitDownloadError(null);
extension.sendMessageToBackground("addTask", messageData, function(response)
{
self.submittingDownload(false);
if(!response.success)
{
var errorMessage = response.data ? response.data : "downloadTaskNotAccepted";
self.submitDownloadError(extension.getLocalizedString("api_error_" + errorMessage));
}
else
{
$("#add-download").modal("hide");
}
});
}
this.formValid = ko.computed(function(){
if(!self.urls() || self.urls().extractUrls().length == 0)
return false;
if(self.useCustomDestinationFolder() && (!self.currentFolder() || self.currentFolder().readOnly()))
return false;
return true;
});
this.checkSupportedFeatures = function() {
extension.sendMessageToBackground("getSupportedFeatures", null, function(features){
self.customDestinationFolderSupported(features.destinationFolder);
});
}
this.customDestinationFolderSupported = ko.observable(null);
this.useCustomDestinationFolder = ko.observable(false);
// Folder selection
this.currentFolder = ko.observable();
this.newFolderName = ko.observable();
this.newFolderErrorMessage = ko.observable();
this.newFolderSubmitting = ko.observable(false);
this.newFolderNameValid = ko.computed(function() {
var value = $.trim(self.newFolderName());
var regExp = new RegExp("^[^\\\/\?\*\"\>\<\:\|]*$"); // directory name regex (http://www.regxlib.com/REDetails.aspx?regexp_id=1652)
return value.length > 0 && regExp.test(value);
});
this.folderPath = ko.computed(function(){
var foldersInPath = [];
if(self.currentFolder())
{
foldersInPath.push(self.currentFolder());
var folder = self.currentFolder();
while(folder.parentFolder)
{
folder = folder.parentFolder;
foldersInPath.push(folder);
}
}
return foldersInPath.reverse();
});
this.enableCustomDestinationFolder = function() {
if(!self.useCustomDestinationFolder())
self.useCustomDestinationFolder(true);
}
this.setCurrentFolder = function(folder) {
if(folder.name.editing())
return;
if(!folder.foldersLoaded())
{
folder.refresh();
}
self.currentFolder(folder);
};
this.createNewFolder = function(formElement) {
if(!self.newFolderNameValid() || self.newFolderSubmitting()) return;
this.newFolderErrorMessage(null);
this.newFolderSubmitting(true);
var message = {
path: this.currentFolder().path(),
name: this.newFolderName()
};
extension.sendMessageToBackground("createFolder", message, function(response) {
self.newFolderSubmitting(false);
if(!response.success)
{
var errorMessage;
if(Array.isArray(response.errors) && response.errors.length > 0)
{
errorMessage = response.errors[0].message;
}
else
{
errorMessage = response.data;
}
self.newFolderErrorMessage(extension.getLocalizedString("api_error_" + errorMessage));
}
else
{
self.newFolderName(null);
self.currentFolder().refresh();
}
$(formElement).find("input").focus();
});
};
}
function Folder(details, parent) {
var self = this;
this.parentFolder = parent;
this.name = ko.observable(details.text ? details.text : details.name);
this.path = ko.observable(details.spath ? details.spath : details.path);
this.readOnly = ko.observable(details.right ? details.right == "RO" : false);
this.folders = ko.observableArray();
this.foldersLoaded = ko.observable(false);
this.loadingFolders = ko.observable(false);
this.errorMessage = ko.observable();
this.name.editing = ko.observable(false);
this.name.unsaved = ko.observable();
this.name.error = ko.observable(null);
this.name.saving = ko.observable(false);
this.name.focus = ko.computed(function() {
return self.name.editing();
});
this.refresh = function() {
ko.utils.arrayForEach(this.folders(), function(folder) {
folder.parentFolder = null;
});
this.folders.removeAll();
this.errorMessage(null);
this.loadingFolders(true);
extension.sendMessageToBackground("listFolders", this.path(), function(response) {
if(!response.success)
{
var localizedMessage = extension.getLocalizedString("api_error_" + response.data);
self.errorMessage(localizedMessage);
}
else
{
for(var i = 0; i < response.data.length; i++)
{
var folder = new Folder(response.data[i], self);
}
self.foldersLoaded(true);
}
self.loadingFolders(false);
});
};
this.rename = function(folder, event)
{
self.name.unsaved(self.name());
self.name.editing(true);
}
this.renameSave = function(){
self.name.saving(true);
self.name.error(null);
var message = {
path: this.path(),
name: this.name.unsaved()
};
extension.sendMessageToBackground("rename", message, function(response) {
self.name.saving(false);
if(!response.success)
{
var errorMessage;
if(Array.isArray(response.errors) && response.errors.length > 0)
{
errorMessage = response.errors[0].message;
}
else
{
errorMessage = response.data;
}
self.name.error(extension.getLocalizedString("api_error_" + errorMessage));
}
else
{
self.name.unsaved(null);
self.name(response.data.name);
self.path(response.data.path);
self.name.editing(false);
}
self.name.saving(false);
});
}
this.renameKeyUp = function(data, event) {
if(event.which === 13) // ENTER
self.renameSave();
else if( event.which === 27) { // ESC
self.renameCancel();
}
}
this.renameCancel = function() {
self.name.error(null);
self.name.unsaved(null);
self.name.editing(false);
}
this.remove = function() {
self.remove.confirm(true);
}
this.remove.confirm = ko.observable(false);
this.remove.error = ko.observable(null);
this.remove.removing = ko.observable(false);
this.removeCancel = function() {
self.remove.error(null);
self.remove.confirm(false);
}
this.removeConfirm = function() {
self.remove.removing(true);
self.remove.error(null);
var message = {
path: this.path()
};
extension.sendMessageToBackground("delete", message, function(response) {
self.remove.removing(false);
if(!response.success)
{
var errorMessage;
if(Array.isArray(response.errors) && response.errors.length > 0)
{
errorMessage = response.errors[0].message;
}
else
{
errorMessage = response.data;
}
self.remove.error(extension.getLocalizedString("api_error_" + errorMessage));
}
else
{
self.parentFolder.folders.remove(self);
}
});
}
if(parent)
{
parent.folders.push(this);
}
}
|
train_000.parquet/751
|
{
"file_path": "js/download-dialog.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 12414,
"token_count": 5209
}
|
## All my scripts, tools and guides
<img src="https://hitscounter.dev/api/hit?url=https%3A%2F%2F007revad.github.io%2F&label=Visitors&icon=github&color=%23198754&message=&style=flat&tz=UTC">
#### Contents
- [Plex](#plex)
- [Synology docker](#synology-docker)
- [Synology recovery](#synology-recovery)
- [Other Synology scripts](#other-synology-scripts)
- [Synology hardware restrictions](#synology-hardware-restrictions)
- [2025 plus models](#2025-plus-models)
- [How To Guides](#how-to-guides)
- [Synology dev](#synology-dev)
***
### Plex
- **<a href="https://github.com/007revad/Synology_Plex_Backup">Synology_Plex_Backup</a>**
- A script to backup Plex to a tgz file foror DSM 7 and DSM 6.
- Works for Plex Synology package and Plex in docker.
- **<a href="https://github.com/007revad/Asustor_Plex_Backup">Asustor_Plex_Backup</a>**
- Backup your Asustor's Plex Media Server settings and database.
- **<a href="https://github.com/007revad/Linux_Plex_Backup">Linux_Plex_Backup</a>**
- Backup your Linux Plex Media Server's settings and database.
- **<a href="https://github.com/007revad/Plex_Server_Sync">Plex_Server_Sync</a>**
- Sync your main Plex server database & metadata to a backup Plex server.
- Works for Synology, Asustor, Linux and supports Plex package or Plex in docker.
[Back to Contents](#contents)
### Synology docker
- **<a href="https://github.com/007revad/Synology_Docker_Export">Synology_Docker_export</a>**
- Export all Synology Container Manager or Docker containers' settings as json files to your docker shared folder.
- **<a href="https://github.com/007revad/Synology_ContainerManager_IPv6">Synology_ContainerManager_IPv6</a>**
- Enable IPv6 for Container Manager's bridge network.
- **<a href="https://github.com/007revad/ContainerManager_for_all_armv8">ContainerManager_for_all_armv8</a>**
- Script to install Container Manager on a RS819, DS119j, DS418, DS418j, DS218, DS218play or DS118.
- **<a href="https://github.com/007revad/Docker_Autocompose">Docker_Autocompose</a>**
- Create .yml files from your docker existing containers.
- **<a href="https://github.com/007revad/Synology_docker_cleanup">Synology_docker_cleanup</a>**
- Remove orphan docker btrfs subvolumes and images in Synology DSM 7 and DSM 6.
[Back to Contents](#contents)
### Synology recovery
- **<a href="https://github.com/007revad/Synology_DSM_reinstall">Synology_DSM_reinstall</a>**
- Easily re-install the same DSM version without losing any data or settings.
- **<a href="https://github.com/007revad/Synology_Recover_Data">Synology_Recover_Data</a>**
- A script to make it easy to recover your data from your Synology's drives using a computer.
- **<a href="https://github.com/007revad/Synology_clear_drive_error">Synology clear drive error</a>**
- Clear drive critical errors so DSM will let you use the drive.
- **<a href="https://github.com/007revad/Synology_DSM_Telnet_Password">Synology_DSM_Telnet_Password</a>**
- Synology DSM Recovery Telnet Password of the Day generator.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/Synoboot_backup">Synoboot_backup</a>**
- Back up synoboot after each DSM update so you can recover from a corrupt USBDOM.
[Back to Contents](#contents)
### Other Synology scripts
- **<a href="https://github.com/007revad/Synology_app_mover">Synology_app_mover</a>**
- Easily move Synology packages from one volume to another volume.
- **<a href="https://github.com/007revad/Video_Station_for_DSM_722">Video_Station_for_DSM_722</a>**
- Script to install Video Station in DSM 7.2.2
- **<a href="https://github.com/007revad/SS_Motion_Detection">SS_Motion_Detection</a>**
- Installs previous Surveillance Station and Advanced Media Extensions versions so motion detection and HEVC are supported.
- **<a href="https://github.com/007revad/Synology_Config_Backup">Synology_Config_Backup</a>**
- Backup and export your Synology DSM configuration.
- **<a href="https://github.com/007revad/Synology_CPU_temperature">Synology_CPU_temperature</a>**
- Get and log Synology NAS CPU temperature via SSH.
- **<a href="https://github.com/007revad/Synology_SMART_info">Synology_SMART_info</a>**
- Show Synology smart test progress or smart health and attributes.
- **<a href="https://github.com/007revad/Synology_Cleanup_Coredumps">Synology_Cleanup_Coredumps</a>**
- Cleanup memory core dumps from crashed processes.
- **<a href="https://github.com/007revad/Synology_toggle_reset_button">Synology_toggle_reset_button</a>**
- Script to disable or enable the reset button and show current setting.
- **<a href="https://github.com/007revad/Synology_Download_Station_Chrome_Extension">Synology_Download_Station_Chrome_Extension</a>**
- Download Station Chrome Extension.
- **<a href="https://github.com/007revad/Seagate_lowCurrentSpinup">Seagate_lowCurrentSpinup</a>**
- This script avoids the need to buy and install a higher wattage power supply when using multiple large Seagate SATA HDDs.
[Back to Contents](#contents)
### Synology hardware restrictions
- **<a href="https://github.com/007revad/Synology_HDD_db">Synology_HDD_db</a>**
- Add your SATA or SAS HDDs and SSDs plus SATA and NVMe M.2 drives to your Synology's compatible drive databases, including your Synology M.2 PCIe card and Expansion Unit databases.
- **<a href="https://github.com/007revad/Synology_enable_M2_volume">Synology_enable_M2_volume</a>**
- Enable creating volumes with non-Synology M.2 drives.
- Enable Health Info for non-Synology NVMe drives (not in DSM 7.2.1 or later).
- **<a href="https://github.com/007revad/Synology_M2_volume">Synology_M2_volume</a>**
- Easily create an M.2 volume on Synology NAS.
- **<a href="https://github.com/007revad/Synology_enable_M2_card">Synology_enable_M2_card</a>**
- Enable Synology M.2 PCIe cards in Synology NAS that don't officially support them.
- **<a href="https://github.com/007revad/Synology_enable_eunit">Synology_enable_eunit</a>**
- Enable an unsupported Synology eSATA Expansion Unit models.
- **<a href="https://github.com/007revad/Synology_enable_Deduplication">Synology_enable_Deduplication</a>**
- Enable deduplication with non-Synology SSDs and unsupported NAS models.
- **<a href="https://github.com/007revad/Synology_SHR_switch">Synology_SHR_switch</a>**
- Easily switch between SHR and RAID Groups, or enable RAID F1.
- **<a href="https://github.com/007revad/Synology_enable_sequential_IO">Synology_enable_sequential_IO</a>**
- Enables sequential I/O for your SSD caches, like DSM 6 had.
- **<a href="https://github.com/007revad/Synology_Information_Wiki">Synology_Information_Wiki</a>**
- Information about Synology hardware.
[Back to Contents](#contents)
### 2025 plus models
- **<a href="https://github.com/007revad/Transcode_for_x25">Transcode_for_x25</a>**
- Installs the modules needed for Plex or Jellyfin hardware transcoding in DS425+ and DS225+.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md">2025 series or later Plus models</a>**
- Unverified 3rd party drive limitations and unofficial solutions.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#setting-up-a-new-2025-or-later-plus-model-with-only-unverified-hdds">Setup with only 3rd party drives</a>**
- Setting up a new 2025 or later plus model with only unverified HDDs.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#deleting-and-recreating-your-storage-pool-on-unverified-hdds">Recreating storage pool on migrated drives</a>**
- Deleting and recreating your storage pool on unverified HDDs.
[Back to Contents](#contents)
### How To Guides
- **<a href="https://github.com/007revad/Synology_SSH_key_setup">Synology_SSH_key_setup</a>**
- How to setup SSH key authentication for your Synology.
[Back to Contents](#contents)
### Synology dev
- **<a href="https://github.com/007revad/Download_Synology_Archive">Download_Synology_Archive</a>**
- Download all or part of the Synology archive.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/ScriptNotify">ScriptNotify</a>**
- DSM 7 package to allow your scripts to send DSM notifications.
- **<a href="https://github.com/007revad/DTC_GUI_for_Windows">DTC_GUI_for_Windows</a>**
- GUI for DTC.exe for Windows.
[Back to Contents](#contents)
|
train_000.parquet/752
|
{
"file_path": "my-other-scripts.md",
"repo_id": "007revad/Synology_HDD_db",
"size": 9099,
"token_count": 3421
}
|
/// <reference path="../../typings/jquery/jquery.d.ts"/>
/// <reference path="../../typings/showdown/showdown.d.ts"/>
$(document).ready(function() {
if(location.hash.length > 0)
$("#menu a[href='" + location.hash + "']").tab("show");
// !Localize page
$('[data-message]').each(function() {
var name = $(this).data('message');
$(this).text(extension.getLocalizedString(name));
});
$('[data-attr-message]').each(function() {
var attributes = $(this).data('attr-message').split(',');
for(var i = 0; i < attributes.length; i++) {
var parts = attributes[i].split('|');
var attr = parts[0];
var name = parts[1];
$(this).attr(attr, extension.getLocalizedString(name));
}
});
$("#about-extension-version").text(extension.getExtensionVersion());
$('#donate-button').attr('href', DONATION_URL);
loadChangelog();
// Creating custom :external selector
$.expr[':'].external = function(obj){
return !obj.href.match(/^mailto\:/) && (obj.hostname != location.hostname);
};
// External links
$('a:external').click(function(evt) {
evt.preventDefault();
var url = $(this).attr('href');
if(url)
_gaq.push(['_trackEvent' , 'Button' , 'External link', url ] );
window.open(url, '_blank');
});
$("a").each(function(index, element) {
var url = $(this).prop('href');
if(url.indexOf("download-station-extension.com") != -1) {
var medium = "unknown";
if(IS_OPERA)
medium = "Opera";
else if(IS_CHROME)
medium = "Chrome";
else if(IS_SAFARI)
medium = "Safari";
url = url + "?utm_source=extension&utm_medium=" + medium + "&utm_campaign=settings";
$(this).prop("href", url);
}
});
$("[title], #options-form select[title], #options-form label[title]").popover({
placement: "right",
trigger: "hover",
container: "body"
});
$("#enableQuickConnect").on("click", function() {
toggleQuickConnect(true);
});
$("#disableQuickConnect").on("click", function() {
toggleQuickConnect(false);
});
$("#updateInBackground").on("change", function() {
var disabled = !$(this).is(":checked");
$("#backgroundUpdateInterval").prop("disabled", disabled);
});
$('input[name=protocol]').change(function(){
var value = $('input[name=protocol]:checked').val();
var port = $('#port').val();
if(port == '' || port == '5000' || port == '5001') {
if(value == 'http://')
$('#port').val('5000');
else
$('#port').val('5001');
}
});
$('#test-connection').click(function(event) {
event.preventDefault();
if(IS_SAFARI && $("#connection")[0].checkValidity() == false)
{
showDialog("Warning", "Not all fields have been entered correctly. Please make sure that you have entered all information correctly.");
return;
}
var $this = $(this);
$(".fa-flask", $this).hide();
$(".fa-spinner", $this).show();
$("form#connection button").prop("disabled", true);
var newOptions = getConnectionFormData();
extension.sendMessageToBackground("testConnection", newOptions, function(response) {
var form = $("form#connection");
$("#test-connection .fa-spinner", form).hide();
$("#test-connection .fa-flask", form).show();
$("button", form).prop("disabled", false);
if(response.success === true)
showDialog(extension.getLocalizedString("testDialogSuccess"), response.message, "fa-check-circle");
else
showDialog(extension.getLocalizedString("testDialogFailed"), response.message, "fa-exclamation-triangle");
});
});
$(document.body).on("submit", "#connection", function(evt) {
evt.preventDefault();
if(IS_SAFARI && $(this)[0].checkValidity() == false)
{
showDialog("Warning", "Not all fields have been entered correctly. Please make sure that you have entered all information correctly.");
return;
}
var newOptions = getConnectionFormData();
$("button", this).attr("disabled", true);
$("button[type=submit] .fa-spinner", this).show();
$("button[type=submit] .fa-save", this).hide();
extension.sendMessageToBackground("saveConnectionSettings", newOptions, function(response) {
var form = $("form#connection");
$("button .fa-save", form).show();
$("button .fa-spinner", form).hide();
$("button", form).prop("disabled", false);
if(response.success == true)
showDialog(extension.getLocalizedString("settingsSaved"),
extension.getLocalizedString("settingsSavedMessage"), "fa-check-circle");
else
showDialog(extension.getLocalizedString("testDialogFailed"), response.message, "fa-exclamation-triangle");
});
});
var emailCheckXhr = null;
var emailCheckTimeout = null;
$(document.body).on("input", "#email", function(evt) {
clearTimeout(emailCheckTimeout);
if(emailCheckXhr != null) {
emailCheckXhr.abort();
}
var input = $(this);
var formgroup = input.closest(".form-group");
$("#email-addon").addClass("hidden");
$("#email-addon-success").addClass("hidden");
$("#email-addon-checking").removeClass("hidden");
$("#email-check-failed").addClass("hidden");
formgroup.removeClass("has-success");
var email = input.val();
if(email) {
emailCheckTimeout = setTimeout(function(){
emailCheckXhr = $.post(DONATION_CHECK_URL, { email: email })
.done(function(data) {
if(data.result == true) {
$("#email-addon").addClass("hidden");
$("#email-addon-success").removeClass("hidden");
$("#email-addon-checking").addClass("hidden");
$("#email-check-failed").addClass("hidden");
formgroup.addClass("has-success");
}
else {
$("#email-addon").removeClass("hidden");
$("#email-addon-success").addClass("hidden");
$("#email-addon-checking").addClass("hidden");
$("#email-check-failed").removeClass("hidden");
formgroup.removeClass("has-success");
}
}).fail(function(jqXHR, textStatus, errorThrown) {
if (textStatus != "abort") {
$("#email-addon").removeClass("hidden");
$("#email-addon-success").addClass("hidden");
$("#email-addon-checking").addClass("hidden");
$("#email-check-failed").addClass("hidden");
formgroup.removeClass("has-success");
_gaq.push(['_trackEvent', 'Donation check', 'Check failed', textStatus + ' - ' + errorThrown]);
}
})
.always(function(){
emailCheckXhr = null;
});
}, 1000);
}
else {
$("#email-addon").removeClass("hidden");
$("#email-addon-success").addClass("hidden");
$("#email-addon-checking").addClass("hidden");
$("#email-check-failed").addClass("hidden");
formgroup.removeClass("has-success");
}
});
$(document.body).on("submit", "#other-settings", function(evt) {
evt.preventDefault();
if(IS_SAFARI && $(this)[0].checkValidity() == false)
{
showDialog("Warning", "Not all fields have been entered correctly. Please make sure that you have entered all information correctly.");
return;
}
var newOptions = getOtherSettingsFormData();
$("button", this).attr("disabled", true);
$("button[type=submit] .fa-spinner", this).show();
$("button[type=submit] .fa-save", this).hide();
extension.sendMessageToBackground("saveOtherSettings", newOptions, function(response) {
var form = $("form#other-settings");
$("button .fa-save", form).show();
$("button .fa-spinner", form).hide();
$("button", form).prop("disabled", false);
if(response.success == true)
showDialog(extension.getLocalizedString("settingsSaved"),
extension.getLocalizedString("settingsSavedMessage"), "fa-check-circle");
else
showDialog(extension.getLocalizedString("testDialogFailed"), response.message, "fa-exclamation-triangle");
});
});
if(IS_CHROME) {
extension.storage.addEventListener(function(changes) {
for(var key in changes)
{
var elements = $("[name='" + key + "']");
var inputType = elements.prop("type");
var newValue = changes[key].newValue;
if(["text", "email", "password", "number"].indexOf(inputType) != -1) {
elements.val(newValue);
}
else if(inputType == "checkbox" && typeof(newValue) === "boolean")
elements.prop("checked", newValue);
else if(inputType == "checkbox" && Array.isArray(newValue))
{
elements.prop("checked", false);
elements.each(function(index, element) {
$(element).prop("checked", newValue.contains($(element).val()));
});
}
else if(inputType == "radio") {
elements.each(function(index, element) {
$(element).prop("checked", newValue == $(element).val());
});
}
}
$("#updateInBackground").trigger("change");
});
}
// !Load settings
extension.sendMessageToBackground("getSettings", null, function(response) {
setOptionFields(response);
});
});
function toggleQuickConnect(enabled)
{
$("#enableQuickConnect").toggleClass("btn-primary active disabled", enabled);
$("#disableQuickConnect").toggleClass("btn-primary active disabled", !enabled);
$("#manual-settings").toggle(enabled == false);
$("#manual-settings input").prop("disabled", enabled);
$("#quickconnect-settings").toggle(enabled);
$("#quickconnect-settings input").prop("disabled", enabled == false);
$("#quickConnectId").prop("required", enabled);
$("#url").prop("required", enabled == false);
$("#port").prop("required", enabled == false);
$("input[name=protocol]").prop("required", enabled == false);
}
function getConnectionFormData() {
var data = $("form#connection").serializeArray();
var newOptions = {};
$.each(data, function(index, field) {
newOptions[field.name] = field.value;
});
newOptions.updateInBackground = newOptions.updateInBackground == "on";
newOptions.backgroundUpdateInterval = parseInt(newOptions.backgroundUpdateInterval);
if(isNaN(newOptions.backgroundUpdateInterval) || newOptions.backgroundUpdateInterval < 5)
newOptions.backgroundUpdateInterval = 20;
return newOptions;
}
function getOtherSettingsFormData() {
var data = $("form#other-settings").serializeArray();
var newOptions = {};
$.each(data, function(index, field) {
newOptions[field.name] = field.value;
});
newOptions.hideSeedingTorrents = newOptions.hideSeedingTorrents == "on";
newOptions.openProtocols = [];
$("input[type=checkbox][name=openProtocols]:checked").each(function(index, element) {
newOptions.openProtocols.push($(element).val());
});
return newOptions;
}
function setOptionFields(options) {
var quickConnectEnabled = options.quickConnectId != null && options.quickConnectId.length > 0;
toggleQuickConnect(quickConnectEnabled);
if(quickConnectEnabled)
{
$('#quickConnectId').val(options.quickConnectId);
}
else
{
$("input[name=protocol][type=radio][value='" + options.protocol + "']").prop("checked", true);
$('#url').val(options['url']);
$('#port').val(options['port'] || 5000);
}
$('#username').val(options.username);
$('#password').val(options.password);
$('#email').val(options.email);
$('#backgroundUpdateInterval').val(options.backgroundUpdateInterval);
$('#hideSeedingTorrents').prop('checked', options.hideSeedingTorrents);
$('#updateInBackground').prop('checked', options.updateInBackground);
for(var i = 0; i < options.openProtocols.length; i++)
{
$("input[name='openProtocols'][value='" + options.openProtocols[i] + "']").prop("checked", true);
}
$("#updateInBackground").trigger("change");
$("#email").trigger("input");
}
function showDialog(title, text, icon) {
var html = '<div class="modal fade out">\
<div class="modal-dialog">\
<div class="modal-content">\
<div class="modal-header">\
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>\
<h3 class="modal-title">' + title + '</h3>\
</div>\
<div class="modal-body">\
<p>'+ (typeof icon === "string" ? '<i class="fa ' + icon + '"></i> ' : '') + text + '</p>\
</div>\
<div class="modal-footer">\
<a href="#" class="btn btn-primary" data-dismiss="modal">Ok</a>\
</div>\
</div>\
</div>\
</div>';
$(html).modal().on("hidden", function() {
$(this).remove();
});
}
function loadChangelog() {
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if( xhr.readyState === XMLHttpRequest.DONE ) {
if ( (xhr.status >= 200 && xhr.status < 300 ) || xhr.status === 0 ) {
var converter = new showdown.Converter();
var html = converter.makeHtml(xhr.responseText);
$("#changelog-content").html(html);
}
}
};
xhr.open("GET", extension.getResourceURL("changelog.md"), true);
xhr.send();
}
// !Google Analytics
var _gaq = _gaq || [];
_gaq.push(['_setAccount', ANALYTICS_ID]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = 'https://ssl.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
|
train_000.parquet/753
|
{
"file_path": "js/options.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 12990,
"token_count": 5392
}
|
/// <reference path="../../typings/index.d.ts"/>
var IS_SAFARI = (typeof (safari) != "undefined");
var IS_CHROME = (typeof (chrome) != "undefined");
var IS_OPERA = navigator.vendor.indexOf("Opera") != -1;
var SAFARI_UPDATE_MANIFEST = SAFARI_UPDATE_MANIFEST;
if (IS_CHROME && chrome.tabs && !chrome.tabs.sendMessage) {
chrome.tabs.sendMessage = chrome.tabs.sendRequest;
}
var extension;
(function (extension) {
var _locales = {};
var _version = null;
function getExtensionVersion() {
if (_version != null)
return _version;
// Safari
if (IS_SAFARI) {
var r = new XMLHttpRequest();
r.open("GET", "Info.plist", false);
r.send(null);
var data = r.responseText;
var currentVersion;
$.each($(data).find("key"), function (index, key) {
if ($(key).text() == 'CFBundleShortVersionString') {
currentVersion = $(key).next().text();
}
});
_version = currentVersion;
}
else if (IS_CHROME) {
var manifest = chrome.runtime.getManifest();
_version = manifest.version;
}
return _version;
}
extension.getExtensionVersion = getExtensionVersion;
function getExtensionBundleVersion() {
var r = new XMLHttpRequest();
r.open("GET", extension.getResourceURL("Info.plist"), false);
r.send(null);
var data = r.responseText;
var currentVersion;
$.each($(data).find("key"), function (index, key) {
if ($(key).text() == 'CFBundleVersion') {
currentVersion = parseInt($(key).next().text());
}
});
return currentVersion;
}
extension.getExtensionBundleVersion = getExtensionBundleVersion;
function getLocalizedString(name, substitutions, language) {
if (!Array.isArray(substitutions)) {
substitutions = new Array();
}
// Safari
if (IS_SAFARI) {
if (!language) {
language = _getBrowserLanguage();
}
var locale = _getLocale(language);
if (locale !== null && typeof locale[name] === 'object' && typeof locale[name].message === 'string') {
return prepareLocalizedMessage(locale[name], substitutions);
}
else if (language.split('_').length == 2) {
return getLocalizedString(name, substitutions, language.split('_')[0]);
}
else if (language != "en") {
console.warn("Could not find a translation for '%s' for language %s, falling back to English.", name, language);
return getLocalizedString(name, substitutions, "en");
}
else {
console.warn("Could not find a message for '%s.'", name);
return name;
}
}
else if (IS_CHROME) {
var message = chrome.i18n.getMessage(name, substitutions);
if (message == null || message.length == 0 || message == name) {
console.warn("Could not find an translation for '" + name + "'.");
message = name;
}
return message;
}
return name;
}
extension.getLocalizedString = getLocalizedString;
function _getBrowserLanguage() {
var language = navigator.language.toLowerCase();
var parts = language.split('-');
if (parts.length === 2)
language = parts[0].toLowerCase() + '_' + parts[1].toUpperCase();
return language;
}
function prepareLocalizedMessage(localization, substitutions) {
var message = localization.message;
if (localization.placeholders) {
var placeholders = localization.placeholders;
for (var placeholder in localization.placeholders) {
if (localization.placeholders.hasOwnProperty(placeholder) && typeof placeholders[placeholder].content === "string") {
var parameterIndex = parseInt(placeholders[placeholder].content.replace("$", "")) - 1;
if (!isNaN(parameterIndex)) {
var substitution = substitutions[parameterIndex] ? substitutions[parameterIndex] : "";
message = message.replace("$" + placeholder + "$", substitution);
}
}
}
}
return message;
}
/**
* Returns the object with localizations for the specified language and
* caches the localization file to limit file read actions. Returns null
* if the localization is not available.
**/
function _getLocale(language) {
if (typeof _locales[language] === 'object')
return _locales[language];
else {
try {
var url = safari.extension.baseURI + "_locales/" + language + "/messages.json";
var r = new XMLHttpRequest();
r.open("GET", url, false);
r.send(null);
var data = JSON.parse(r.responseText);
_locales[language] = data;
}
catch (e) {
_locales[language] = null;
}
return _locales[language];
}
}
function getResourceURL(file) {
if (IS_SAFARI)
return safari.extension.baseURI + file;
if (IS_CHROME)
return chrome.runtime.getURL(file);
}
extension.getResourceURL = getResourceURL;
function createTab(url) {
// Safari
if (IS_SAFARI) {
if (!url.match(/^http/)) {
url = safari.extension.baseURI + url;
}
var browserWindow = safari.application.activeBrowserWindow;
if (browserWindow == null) {
browserWindow = safari.application.openBrowserWindow();
}
var tab = browserWindow.activeTab;
if (tab == null || tab.url != null) {
tab = browserWindow.openTab();
}
tab.url = url;
browserWindow.activate();
tab.activate();
}
else if (IS_CHROME) {
chrome.tabs.create({ "url": url });
}
}
extension.createTab = createTab;
function setBadge(value) {
if (IS_SAFARI) {
var toolbarItems = safari.extension.toolbarItems;
for (var i = 0; i < toolbarItems.length; i++) {
if (toolbarItems[i].identifier == "toolbarButton")
toolbarItems[i].badge = value;
}
}
else if (IS_CHROME) {
var text = value === 0 ? "" : value.toString();
chrome.browserAction.setBadgeBackgroundColor({ color: [0, 200, 0, 100] });
chrome.browserAction.setBadgeText({ text: text });
}
}
extension.setBadge = setBadge;
function getPopovers() {
var popovers = new Array();
if (IS_SAFARI) {
$.each(safari.extension.popovers, function (index, popover) {
popovers.push(popover.contentWindow);
});
}
else if (IS_CHROME) {
popovers = chrome.extension.getViews({ type: 'popup' });
}
return popovers;
}
extension.getPopovers = getPopovers;
function hidePopovers() {
if (IS_SAFARI) {
var popovers = getSafariPopoverObjects();
for (var i = 0; i < popovers.length; i++) {
popovers[i].hide();
}
}
else if (IS_CHROME) {
var popoverWindows = getPopovers();
for (var i = 0; i < popoverWindows.length; i++) {
popoverWindows[i].close();
}
}
}
extension.hidePopovers = hidePopovers;
function getSafariPopoverObjects() {
var popovers = new Array();
if (IS_SAFARI) {
$.each(safari.extension.popovers, function (index, popover) {
popovers.push(popover);
});
}
return popovers;
}
extension.getSafariPopoverObjects = getSafariPopoverObjects;
function getSafariPopoverObject(identifier) {
var popovers = getSafariPopoverObjects();
for (var i = 0; i < popovers.length; i++) {
if (popovers[i].identifier == identifier)
return popovers[i];
}
return null;
}
extension.getSafariPopoverObject = getSafariPopoverObject;
function onPopoverVisible(eventHandler, identifier) {
if (IS_SAFARI) {
safari.application.addEventListener("popover", function (event /*SafariValidateEvent<SafariExtensionPopover>*/) {
if (event.target.identifier == identifier) {
eventHandler(event);
}
}, true);
}
else if (IS_CHROME) {
$(document).ready(eventHandler);
}
}
extension.onPopoverVisible = onPopoverVisible;
function onPopoverHidden(eventHandler, identifier) {
if (IS_SAFARI) {
safari.application.addEventListener("popover", function (event /*SafariValidateEvent<SafariExtensionPopover>*/) {
if (event.target.identifier == identifier) {
var safariPopover = getSafariPopoverObject(identifier);
if (safariPopover != null) {
var popoverVisibilityTimer = setInterval(function () {
if (safariPopover.visible === false) {
eventHandler();
clearInterval(popoverVisibilityTimer);
}
}, 1000);
}
}
});
}
else if (IS_CHROME) {
$(window).unload(eventHandler);
}
}
extension.onPopoverHidden = onPopoverHidden;
function getBackgroundPage() {
var backgroundPage;
if (IS_SAFARI) {
backgroundPage = safari.extension.globalPage.contentWindow;
}
else if (IS_CHROME) {
backgroundPage = chrome.extension.getBackgroundPage();
}
return backgroundPage;
}
extension.getBackgroundPage = getBackgroundPage;
// !Context menus
var contextMenuItems = {};
if (IS_SAFARI && typeof safari.application === "object") {
safari.application.addEventListener("contextmenu", function (event) {
for (var id in contextMenuItems) {
if (contextMenuItems.hasOwnProperty(id)) {
event.contextMenu.appendContextMenuItem(id, contextMenuItems[id].title);
}
}
}, false);
safari.application.addEventListener("validate", function (event /*SafariExtensionContextMenuItemValidateEvent*/) {
if (contextMenuItems.hasOwnProperty(event.command)) {
event.target.disabled = false; //!contextMenuItems[event.command].enabled;
}
}, false);
safari.application.addEventListener("command", function (event) {
if (contextMenuItems.hasOwnProperty(event.command) && typeof contextMenuItems[event.command].onclick === "function") {
contextMenuItems[event.command].onclick(event.userInfo, null);
}
}, false);
}
function createContextMenuItem(options) {
if (contextMenuItems.hasOwnProperty(options.id)) {
var id = options.id;
delete options.id;
updateContextMenuItem(id, options);
}
else {
contextMenuItems[options.id] = options;
if (IS_CHROME) {
chrome.contextMenus.create(options);
}
}
}
extension.createContextMenuItem = createContextMenuItem;
function updateContextMenuItem(id, newOptions) {
if (contextMenuItems.hasOwnProperty(id)) {
for (var key in newOptions) {
contextMenuItems[id][key] = newOptions[key];
}
if (IS_CHROME) {
chrome.contextMenus.update(id, newOptions);
}
}
}
extension.updateContextMenuItem = updateContextMenuItem;
function removeContextMenuItem(id) {
if (contextMenuItems.hasOwnProperty(id)) {
delete contextMenuItems[id];
if (IS_CHROME) {
chrome.contextMenus.remove(id);
}
}
}
extension.removeContextMenuItem = removeContextMenuItem;
// !Safari extension update check
function safariCheckForUpdate() {
if (IS_SAFARI) {
var currentVersion = extension.getExtensionBundleVersion();
$.ajax({
type: 'GET',
url: SAFARI_UPDATE_MANIFEST,
dataType: 'xml'
}).done(function (data) {
// Find dictionary for this extension
$.each($(data).find("key"), function (index, key) {
if ($(key).text() == 'CFBundleIdentifier' && $(key).next().text() == 'nl.luukdobber.safaridownloadstation') {
var dict = $(key).closest('dict');
var updateUrl;
// Find the latest version
$.each(dict.find("key"), function (index, key) {
if ($(key).text() == 'URL') {
updateUrl = $(key).next().text();
}
});
$.each(dict.find("key"), function (index, key) {
if ($(key).text() == 'CFBundleVersion') {
var latestVersion = parseInt($(key).next().text());
if (currentVersion < latestVersion) {
showNotification("Synology Download Station", getLocalizedString("newVersionAvailable"), true, updateUrl);
}
}
});
}
});
});
}
}
extension.safariCheckForUpdate = safariCheckForUpdate;
;
var notificationOnClickUrls = {};
// !Notifications
function showNotification(title, text, keepVisible, onclickUrl) {
var keepVisible = keepVisible || false;
var textDirection = (extension.getLocalizedString("textDirection") == "rtl" ? "rtl" : "ltr");
var icon = "Icon-48.png";
if (window.chrome && chrome.notifications && chrome.notifications.create) {
var options = {
type: "basic",
title: title,
message: text,
iconUrl: extension.getResourceURL("Icon-64.png"),
};
if (onclickUrl) {
options.isClickable = true;
}
options.requireInteraction = keepVisible;
chrome.notifications.create(options, function (notificationId) {
if (onclickUrl) {
notificationOnClickUrls[notificationId] = onclickUrl;
}
});
}
else if ("Notification" in window) {
var notification = new window["Notification"](title, {
dir: textDirection,
body: text,
icon: icon,
});
if (onclickUrl) {
notification.onclick = function () {
extension.createTab(onclickUrl);
this.close();
};
}
if (keepVisible == false) {
setTimeout(function () {
notification.close();
}, 5000);
}
return notification;
}
return null;
}
extension.showNotification = showNotification;
if (window.chrome && chrome.notifications && chrome.notifications.onClicked) {
chrome.notifications.onClicked.addListener(function (notificationId) {
if (notificationOnClickUrls[notificationId]) {
extension.createTab(notificationOnClickUrls[notificationId]);
chrome.notifications.clear(notificationId);
delete notificationOnClickUrls[notificationId];
}
});
}
/*
// !Message passing
extension.sendMessageFromContent = function(name, message) {
var messageData = {
id: Math.random().toString(36).substring(7),
name: name,
message: message
};
if(IS_CHROME) {
if(chrome.runtime && chrome.runtime.sendMessage){
chrome.runtime.sendMessage(messageData);
}
else if(chrome.extension && chrome.extension.sendRequest)
{
chrome.extension.sendRequest(messageData);
}
}
if(IS_SAFARI) {
if(typeof safari.self.tab == "object" && safari.self.tab instanceof SafariContentBrowserTabProxy)
safari.self.tab.dispatchMessage("extensionMessage", messageData, false);
else if(safari.application.activeBrowserWindow && safari.application.activeBrowserWindow.activeTab.page instanceof SafariWebPageProxy)
safari.application.activeBrowserWindow.activeTab.page.dispatchMessage("extensionMessage", messageData, false);
}
};
*/
var safariMessageResponseHandlers = {};
function sendMessageToBackground(name, message, responseCallback) {
var messageData = {
id: Math.random().toString(36).substring(7),
name: name,
message: message,
acceptsCallback: responseCallback != null
};
if (responseCallback) {
safariMessageResponseHandlers[messageData.id] = responseCallback;
}
if (IS_CHROME) {
chrome.runtime.sendMessage(messageData);
}
else if (IS_SAFARI) {
if (typeof safari.self.tab == "object" && safari.self.tab instanceof window["SafariContentBrowserTabProxy"]) {
safari.self.tab.dispatchMessage("extensionMessage", messageData, false);
}
else if (safari.application.activeBrowserWindow && safari.application.activeBrowserWindow.activeTab.page instanceof window["SafariWebPageProxy"]) {
safari.application.activeBrowserWindow.activeTab.page.dispatchMessage("extensionMessage", messageData);
}
}
}
extension.sendMessageToBackground = sendMessageToBackground;
;
function sendMessageToContent(name, message, responseCallback) {
var messageData = {
id: Math.random().toString(36).substring(7),
name: name,
message: message,
acceptsCallback: responseCallback != null
};
if (responseCallback) {
safariMessageResponseHandlers[messageData.id] = responseCallback;
}
if (IS_CHROME) {
if (chrome.tabs) {
chrome.tabs.query({ active: true }, function (tabs) {
if (tabs.length > 0) {
chrome.tabs.sendMessage(tabs[0].id, messageData);
}
});
}
}
if (IS_SAFARI) {
if (typeof safari.self.tab == "object" && safari.self.tab instanceof window["SafariContentBrowserTabProxy"])
safari.self.tab.dispatchMessage("extensionMessage", messageData, false);
else if (safari.application.activeBrowserWindow != null && safari.application.activeBrowserWindow.activeTab.page instanceof window["SafariWebPageProxy"])
safari.application.activeBrowserWindow.activeTab.page.dispatchMessage("extensionMessage", messageData);
}
}
extension.sendMessageToContent = sendMessageToContent;
var receivedMessages = [];
function onMessage(callback) {
var messageHandler = function (messageData, sendResponse) {
if (!messageData || !messageData.id)
return;
if (receivedMessages.indexOf(messageData.id) != -1)
return;
callback({ name: messageData.name, message: messageData.message }, sendResponse);
};
if (IS_CHROME) {
if (chrome.runtime && chrome.runtime.onMessage) {
chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
if (request.id) {
messageHandler(request, function (responseMessage) {
var messageData = {
responseTo: request.id,
message: responseMessage
};
if (sender.tab && sender.frameId) {
chrome.tabs.sendMessage(sender.tab.id, messageData, { frameId: sender.frameId });
}
else if (sender.tab) {
chrome.tabs.sendMessage(sender.tab.id, messageData);
}
else {
chrome.runtime.sendMessage(messageData);
}
});
}
});
}
}
if (IS_SAFARI) {
var eventHandler = function (event) {
if (event.name === "extensionMessage") {
messageHandler(event.message, function (responseMessage) {
var messageData = {
responseTo: event.message.id,
message: responseMessage
};
if (typeof safari.self.tab == "object" && safari.self.tab instanceof window["SafariContentBrowserTabProxy"])
safari.self.tab.dispatchMessage("extensionMessageResponse", messageData, false);
else if (safari.application.activeBrowserWindow != null && safari.application.activeBrowserWindow.activeTab.page instanceof window["SafariWebPageProxy"])
safari.application.activeBrowserWindow.activeTab.page.dispatchMessage("extensionMessageResponse", messageData);
});
}
};
if (typeof safari.application === "object")
safari.application.addEventListener("message", eventHandler, false);
else if (typeof safari.self === "object") {
safari.self.addEventListener("message", eventHandler, false);
}
else {
console.warn("Could not find safari.application or safari.self to add message event listener.");
}
}
}
extension.onMessage = onMessage;
;
// Handle message responses
if (IS_CHROME) {
chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
if (request.responseTo) {
var responseHandler = safariMessageResponseHandlers[request.responseTo];
if (responseHandler) {
responseHandler(request.message);
delete safariMessageResponseHandlers[request.responseTo];
}
}
});
}
else if (IS_SAFARI) {
var eventHandler = function (event) {
if (event.name === "extensionMessageResponse") {
var responseHandler = safariMessageResponseHandlers[event.message.responseTo];
if (responseHandler) {
responseHandler(event.message.message);
delete safariMessageResponseHandlers[event.message.responseTo];
}
}
};
if (typeof safari.application === "object")
safari.application.addEventListener("message", eventHandler, false);
else if (typeof safari.self === "object") {
safari.self.addEventListener("message", eventHandler, false);
}
else {
console.warn("Could not find safari.application or safari.self to add message event listener.");
}
}
})(extension || (extension = {}));
/* !Storage */
var extension;
(function (extension) {
var storage;
(function (storage) {
function set(object, callback) {
if (IS_SAFARI) {
for (var key in object) {
try {
var json = JSON.stringify(object[key]);
safari.extension.secureSettings.setItem(key, json);
}
catch (exception) {
console.warn("Error while storing item with key %s", key);
}
}
if (callback) {
callback();
}
}
if (IS_CHROME) {
chrome.storage.local.set(object, callback);
}
}
storage.set = set;
;
function get(keys, callback) {
if (!Array.isArray(keys)) {
var key = keys;
keys = [key];
}
if (IS_SAFARI) {
var result = {};
for (var i = 0; i < keys.length; i++) {
try {
var json = safari.extension.secureSettings.getItem(keys[i]);
result[keys[i]] = JSON.parse(json);
}
catch (exception) {
console.log("Error while retreving storage item with key %s", keys[i]);
result[keys[i]] = null;
}
}
callback(result);
}
if (IS_CHROME) {
chrome.storage.local.get(keys, function (storageItems) {
if (!storageItems) {
storageItems = {};
}
for (var i = 0; i < keys.length; i++) {
if (typeof storageItems[keys[i]] === "undefined")
storageItems[keys[i]] = null;
}
callback(storageItems);
});
}
}
storage.get = get;
;
function remove(keys, callback) {
if (!Array.isArray(keys)) {
var key = keys;
keys = [key];
}
if (IS_SAFARI) {
for (var i = 0; i < keys.length; i++) {
safari.extension.secureSettings.removeItem(keys[i]);
}
if (callback) {
callback();
}
}
if (IS_CHROME) {
chrome.storage.local.remove(keys, callback);
}
}
storage.remove = remove;
;
function clear(callback) {
if (IS_SAFARI) {
safari.extension.secureSettings.clear();
if (callback) {
callback();
}
}
if (IS_CHROME) {
chrome.storage.local.clear(callback);
}
}
storage.clear = clear;
;
function addEventListener(eventHandler) {
if (IS_SAFARI) {
if (!safari.extension.secureSettings)
return;
var cachedChanges = {};
safari.extension.secureSettings.addEventListener("change", function (event) {
if (event.oldValue != event.newValue) {
// Wait for other changes so they can be bundled in 1 event
if (Object.keys(cachedChanges).length == 0) {
setTimeout(function () {
eventHandler(cachedChanges);
cachedChanges = {};
}, 1000);
}
cachedChanges[event.key] = { oldValue: event.oldValue, newValue: event.newValue };
}
}, false);
}
if (IS_CHROME) {
chrome.storage.onChanged.addListener(function (changes, areaName) {
if (areaName == "local") {
eventHandler(changes);
}
});
}
}
storage.addEventListener = addEventListener;
;
})(storage = extension.storage || (extension.storage = {}));
})(extension || (extension = {}));
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImpzL2Jyb3dzZXItZnVuY3Rpb25zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGdEQUFnRDtBQUNoRCxJQUFJLFNBQVMsR0FBRyxDQUFDLE9BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxXQUFXLENBQUMsQ0FBQztBQUNoRCxJQUFJLFNBQVMsR0FBRyxDQUFDLE9BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxXQUFXLENBQUMsQ0FBQztBQUNoRCxJQUFJLFFBQVEsR0FBSSxTQUFTLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztBQUN4RCxJQUFJLHNCQUFzQixHQUFXLHNCQUFzQixDQUFDO0FBRTVELEVBQUUsQ0FBQSxDQUFDLFNBQVMsSUFBSSxNQUFNLENBQUMsSUFBSSxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQyxDQUFDO0lBQ3pELE1BQU0sQ0FBQyxJQUFJLENBQUMsV0FBVyxHQUFTLE1BQU0sQ0FBQyxJQUFLLENBQUMsV0FBVyxDQUFDO0FBQzFELENBQUM7QUFFRCxJQUFVLFNBQVMsQ0FzcEJsQjtBQXRwQkQsV0FBVSxTQUFTLEVBQUMsQ0FBQztJQWlCcEIsSUFBSSxRQUFRLEdBQW9DLEVBQUUsQ0FBQztJQUNuRCxJQUFJLFFBQVEsR0FBVyxJQUFJLENBQUM7SUFFNUI7UUFDQyxFQUFFLENBQUEsQ0FBQyxRQUFRLElBQUksSUFBSSxDQUFDO1lBQ25CLE1BQU0sQ0FBQyxRQUFRLENBQUM7UUFFakIsU0FBUztRQUNULEVBQUUsQ0FBQSxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUM7WUFDZCxJQUFJLENBQUMsR0FBRyxJQUFJLGNBQWMsRUFBRSxDQUFDO1lBQzdCLENBQUMsQ0FBQyxJQUFJLENBQUMsS0FBSyxFQUFFLFlBQVksRUFBRSxLQUFLLENBQUMsQ0FBQztZQUNuQyxDQUFDLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1lBQ2IsSUFBSSxJQUFJ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QUFDLENBQUM7d0JBQ1YsQ0FBQzt3QkFFRCxhQUFhLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxHQUFHLEVBQUUsUUFBUSxFQUFFLEtBQUssQ0FBQyxRQUFRLEVBQUUsUUFBUSxFQUFFLEtBQUssQ0FBQyxRQUFRLEVBQUUsQ0FBQztvQkFDbkYsQ0FBQztnQkFDRixDQUFDLEVBQUUsS0FBSyxDQUFDLENBQUM7WUFDWCxDQUFDO1lBRUQsRUFBRSxDQUFBLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQztnQkFDZCxNQUFNLENBQUMsT0FBTyxDQUFDLFNBQVMsQ0FBQyxXQUFXLENBQUMsVUFBQyxPQUFPLEVBQUUsUUFBUTtvQkFDdEQsRUFBRSxDQUFBLENBQUMsUUFBUSxJQUFJLE9BQU8sQ0FBQyxDQUFDLENBQUM7d0JBQ3hCLFlBQVksQ0FBQyxPQUFPLENBQUMsQ0FBQztvQkFDdkIsQ0FBQztnQkFDRixDQUFDLENBQUMsQ0FBQztZQUNKLENBQUM7UUFDRixDQUFDO1FBN0JlLHdCQUFnQixtQkE2Qi9CLENBQUE7UUFBQSxDQUFDO0lBQ0gsQ0FBQyxFQTNIbUIsT0FBTyxHQUFQLGlCQUFPLEtBQVAsaUJBQU8sUUEySDFCO0FBQUQsQ0FBQyxFQTNIUyxTQUFTLEtBQVQsU0FBUyxRQTJIbEIiLCJmaWxlIjoianMvYnJvd3Nlci1mdW5jdGlvbnMuanMiLCJzb3VyY2VzQ29udGVudCI6WyIvLy8gPHJlZmVyZW5jZSBwYXRoPVwiLi4vLi4vdHlwaW5ncy9pbmRleC5kLnRzXCIvPlxudmFyIElTX1NBRkFSSSA9ICh0eXBlb2Yoc2FmYXJpKSAhPSBcInVuZGVmaW5lZFwiKTtcbnZhciBJU19DSFJPTUUgPSAodHlwZW9mKGNocm9tZSkgIT0gXCJ1bmRlZmluZWRcIik7XG52YXIgSVNfT1BFUkEgID0gbmF2aWdhdG9yLnZlbmRvci5pbmRleE9mKFwiT3BlcmFcIikgIT0gLTE7XG52YXIgU0FGQVJJX1VQREFURV9NQU5JRkVTVDogc3RyaW5nID0gU0FGQVJJX1VQREFURV9NQU5JRkVTVDtcblxuaWYoSVNfQ0hST01FICYmIGNocm9tZS50YWJzICYmICFjaHJvbWUudGFicy5zZW5kTWVzc2FnZSkge1xuXHRjaHJvbWUudGFicy5zZW5kTWVzc2FnZSA9ICg8YW55PmNocm9tZS50YWJzKS5zZW5kUmVxdWVzdDtcbn1cblxubmFtZXNwYWNlIGV4dGVuc2lvbiB7XG5cbiAgICBpbnRlcmZhY2UgTG9jYWxpemF0aW9uIHtcbiAgICAgICAgW2tleTogc3RyaW5nXTogTG9jYWxpemF0aW9uTWVzc2FnZVxuICAgIH1cblxuICAgIGludGVyZmFjZSBMb2NhbGl6YXRpb25NZXNzYWdlIHtcbiAgICAgICAgbWVzc2FnZTogc3RyaW5nO1xuICAgICAgICBkZXNjcmlwdGlvbj86IHN0cmluZztcbiAgICAgICAgcGxhY2Vob2xkZXJzPzogeyBba2V5OiBzdHJpbmddOiBMb2NhbGl6YXRpb25QbGFjZWhvbGRlciB9XG4gICAgfVxuXG4gICAgaW50ZXJmYWNlIExvY2FsaXphdGlvblBsYWNlaG9sZGVyIHtcbiAgICAgICAgY29udGVudDogc3RyaW5nO1xuICAgICAgICBleGFtcGxlPzogc3RyaW5nO1xuICAgIH1cblxuXHR2YXIgX2xvY2FsZXM6IHsgW2tleTogc3RyaW5nXTogTG9jYWxpemF0aW9uIH0gPSB7fTtcblx0dmFyIF92ZXJzaW9uOiBzdHJpbmcgPSBudWxsO1xuXHRcblx0ZXhwb3J0IGZ1bmN0aW9uIGdldEV4dGVuc2lvblZlcnNpb24oKTogc3RyaW5nIHtcblx0XHRpZihfdmVyc2lvbiAhPSBudWxsKVxuXHRcdFx0cmV0dXJuIF92ZXJzaW9uO1xuXHRcdFxuXHRcdC8vIFNhZmFyaVxuXHRcdGlmKElTX1NBRkFSSSkge1xuXHRcdFx0dmFyIHIgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtcblx0XHRcdHIub3BlbihcIkdFVFwiLCBcIkluZm8ucGxpc3RcIiwgZmFsc2UpO1xuXHRcdFx0ci5zZW5kKG51bGwpO1xuXHRcdFx0dmFyIGRhdGEgPSByLnJlc3BvbnNlVGV4dDtcblx0XHRcdHZhciBjdXJyZW50VmVyc2lvbjogc3RyaW5nO1xuXHRcdFx0JC5lYWNoKCQoZGF0YSkuZmluZChcImtleVwiKSwgKGluZGV4OiBudW1iZXIsIGtleTogSlF1ZXJ5KSA9PiB7XG5cdFx0XHRcdGlmKCQoa2V5KS50ZXh0KCkgPT0gJ0NGQnVuZGxlU2hvcnRWZXJzaW9uU3RyaW5nJykge1xuXHRcdFx0XHRcdGN1cnJlbnRWZXJzaW9uID0gJChrZXkpLm5leHQoKS50ZXh0KCk7XG5cdFx0XHRcdH1cblx0XHRcdH0pO1xuXHRcdFx0X3ZlcnNpb24gPSBjdXJyZW50VmVyc2lvbjtcblx0XHR9XG5cdFx0XG5cdFx0Ly8gQ2hyb21lXG5cdFx0ZWxzZSBpZihJU19DSFJPTUUpIHtcblx0XHRcdHZhciBtYW5pZmVzdCA9IGNocm9tZS5ydW50aW1lLmdldE1hbmlmZXN0KCk7XG5cdFx0XHRfdmVyc2lvbiA9IG1hbmlmZXN0LnZlcnNpb247XG5cdFx0fVxuXHRcdHJldHVybiBfdmVyc2lvbjtcblx0fVxuXHRcblx0ZXhwb3J0IGZ1bmN0aW9uIGdldEV4dGVuc2lvbkJ1bmRsZVZlcnNpb24oKTogbnVtYmVyIHtcblx0XHR2YXIgciA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO1xuXHRcdHIub3BlbihcIkdFVFwiLCBleHRlbnNpb24uZ2V0UmVzb3VyY2VVUkwoXCJJbmZvLnBsaXN0XCIpLCBmYWxzZSk7XG5cdFx0ci5zZW5kKG51bGwpO1xuXHRcdHZhciBkYXRhID0gci5yZXNwb25zZVRleHQ7XG5cdFx0dmFyIGN1cnJlbnRWZXJzaW9uOiBudW1iZXI7XG5cdFx0JC5lYWNoKCQoZGF0YSkuZmluZChcImtleVwiKSwgKGluZGV4LCBrZXkpID0+IHtcblx0XHRcdGlmKCQoa2V5KS50ZXh0KCkgPT0gJ0NGQnVuZGxlVmVyc2lvbicpIHtcblx0XHRcdFx0Y3VycmVudFZlcnNpb24gPSBwYXJzZUludCgkKGtleSkubmV4dCgpLnRleHQoKSk7XG5cdFx0XHR9XG5cdFx0fSk7XG5cdFx0cmV0dXJuIGN1cnJlbnRWZXJzaW9uO1xuXHR9XG5cdFxuXHRleHBvcnQgZnVuY3Rpb24gZ2V0TG9jYWxpemVkU3RyaW5nKG5hbWU6IHN0cmluZywgc3Vic3RpdHV0aW9ucz86IEFycmF5PHN0cmluZz4sIGxhbmd1YWdlPzogc3RyaW5nKTogc3RyaW5nIHtcblx0XHRpZighQXJyYXkuaXNBcnJheShzdWJzdGl0dXRpb25zKSkge1xuXHRcdFx0c3Vic3RpdHV0aW9ucyA9IG5ldyBBcnJheSgpO1xuXHRcdH1cblx0XHRcblx0XHQvLyBTYWZhcmlcblx0XHRpZihJU19TQUZBUkkpIHtcblx0XHRcdGlmKCFsYW5ndWFnZSkge1xuXHRcdFx0XHRsYW5ndWFnZSA9IF9nZXRCcm93c2VyTGFuZ3VhZ2UoKTtcbiAgICAgICAgICAgIH1cblx0XHRcdFxuXHRcdFx0dmFyIGxvY2FsZSA9IF9nZXRMb2NhbGUobGFuZ3VhZ2UpO1xuXHRcdFx0XG5cdFx0XHRpZihsb2NhbGUgIT09IG51bGwgJiYgdHlwZW9mIGxvY2FsZVtuYW1lXSA9PT0gJ29iamVjdCcgJiYgdHlwZW9mIGxvY2FsZVtuYW1lXS5tZXNzYWdlID09PSAnc3RyaW5nJykge1xuXHRcdFx0XHRyZXR1cm4gcHJlcGFyZUxvY2FsaXplZE1lc3NhZ2UobG9jYWxlW25hbWVdLCBzdWJzdGl0dXRpb25zKTtcbiAgICAgICAgICAgIH1cblx0XHRcdFxuXHRcdFx0ZWxzZSBpZihsYW5ndWFnZS5zcGxpdCgnXycpLmxlbmd0aCA9PSAyKSB7XG5cdFx0XHRcdHJldHVybiBnZXRMb2NhbGl6ZWRTdHJpbmcobmFtZSwgc3Vic3RpdHV0aW9ucywgbGFuZ3VhZ2Uuc3BsaXQoJ18nKVswXSk7XG4gICAgICAgICAgICB9XG5cdFx0XHRcblx0XHRcdGVsc2UgaWYobGFuZ3VhZ2UgIT0gXCJlblwiKSB7XG5cdFx0XHRcdGNvbnNvbGUud2FybihcIkNvdWxkIG5vdCBmaW5kIGEgdHJhbnNsYXRpb24gZm9yICclcycgZm9yIGxhbmd1YWdlICVzLCBmYWxsaW5nIGJhY2sgdG8gRW5nbGlzaC5cIiwgbmFtZSwgbGFuZ3VhZ2UpO1xuXHRcdFx0XHRyZXR1cm4gZ2V0TG9jYWxpemVkU3RyaW5nKG5hbWUsIHN1YnN0aXR1dGlvbnMsIFwiZW5cIik7XG5cdFx0XHR9XG5cdFx0XHRlbHNlIHtcblx0XHRcdFx0Y29uc29sZS53YXJuKFwiQ291bGQgbm90IGZpbmQgYSBtZXNzYWdlIGZvciAnJXMuJ1wiLCBuYW1lKTtcblx0XHRcdFx0cmV0dXJuIG5hbWU7XG5cdFx0XHR9XG5cdFx0fVxuXHRcdFxuXHRcdC8vIENocm9tZVxuXHRcdGVsc2UgaWYoSVNfQ0hST01FKSB7XG5cdFx0XHR2YXIgbWVzc2FnZSA9IGNocm9tZS5pMThuLmdldE1lc3NhZ2UobmFtZSwgc3Vic3RpdHV0aW9ucyk7XG5cdFx0XHRpZihtZXNzYWdlID09IG51bGwgfHwgbWVzc2FnZS5sZW5ndGggPT0gMCB8fCBtZXNzYWdlID09IG5hbWUpIHtcblx0XHRcdFx0Y29uc29sZS53YXJuKFwiQ291bGQgbm90IGZpbmQgYW4gdHJhbnNsYXRpb24gZm9yICdcIiArIG5hbWUgKyBcIicuXCIpO1xuXHRcdFx0XHRtZXNzYWdlID0gbmFtZTtcblx0XHRcdH1cblx0XHRcdHJldHVybiBtZXNzYWdlO1xuXHRcdH1cblx0ICAgIHJldHVybiBuYW1lO1xuXHR9XG5cdFxuXHRmdW5jdGlvbiBfZ2V0QnJvd3Nlckxhbmd1YWdlKCk6IHN0cmluZyB7XG5cdFx0dmFyIGxhbmd1YWdlID0gbmF2aWdhdG9yLmxhbmd1YWdlLnRvTG93ZXJDYXNlKCk7XG5cdFx0dmFyIHBhcnRzID0gbGFuZ3VhZ2Uuc3BsaXQoJy0nKTtcblx0XHRpZihwYXJ0cy5sZW5ndGggPT09IDIpXG5cdFx0XHRsYW5ndWFnZSA9IHBhcnRzWzBdLnRvTG93ZXJDYXNlKCkgKyAnXycgKyBwYXJ0c1sxXS50b1VwcGVyQ2FzZSgpO1xuXHRcdFxuXHRcdHJldHVybiBsYW5ndWFnZTtcblx0fVxuXG5cdGZ1bmN0aW9uIHByZXBhcmVMb2NhbGl6ZWRNZXNzYWdlKGxvY2FsaXphdGlvbjogTG9jYWxpemF0aW9uTWVzc2FnZSwgc3Vic3RpdHV0aW9ucz86IEFycmF5PHN0cmluZz4pOiBzdHJpbmcge1xuXHQgICAgdmFyIG1lc3NhZ2UgPSBsb2NhbGl6YXRpb24ubWVzc2FnZTtcblxuXHQgICAgaWYgKGxvY2FsaXphdGlvbi5wbGFjZWhvbGRlcnMpIHtcblx0ICAgICAgICB2YXIgcGxhY2Vob2xkZXJzID0gbG9jYWxpemF0aW9uLnBsYWNlaG9sZGVycztcblx0ICAgICAgICBmb3IgKHZhciBwbGFjZWhvbGRlciBpbiBsb2NhbGl6YXRpb24ucGxhY2Vob2xkZXJzKSB7XG5cdCAgICAgICAgICAgIGlmIChsb2NhbGl6YXRpb24ucGxhY2Vob2xkZXJzLmhhc093blByb3BlcnR5KHBsYWNlaG9sZGVyKSAmJiB0eXBlb2YgcGxhY2Vob2xkZXJzW3BsYWNlaG9sZGVyXS5jb250ZW50ID09PSBcInN0cmluZ1wiKSB7XG5cdCAgICAgICAgICAgICAgICB2YXIgcGFyYW1ldGVySW5kZXggPSBwYXJzZUludChwbGFjZWhvbGRlcnNbcGxhY2Vob2xkZXJdLmNvbnRlbnQucmVwbGFjZShcIiRcIiwgXCJcIikpIC0gMTtcblx0ICAgICAgICAgICAgICAgIGlmICghaXNOYU4ocGFyYW1ldGVySW5kZXgpKSB7XG5cdCAgICAgICAgICAgICAgICAgICAgdmFyIHN1YnN0aXR1dGlvbiA9IHN1YnN0aXR1dGlvbnNbcGFyYW1ldGVySW5kZXhdID8gc3Vic3RpdHV0aW9uc1twYXJhbWV0ZXJJbmRleF0gOiBcIlwiO1xuXHQgICAgICAgICAgICAgICAgICAgIG1lc3NhZ2UgPSBtZXNzYWdlLnJlcGxhY2UoXCIkXCIgKyBwbGFjZWhvbGRlciArIFwiJFwiLCBzdWJzdGl0dXRpb24pO1xuXHQgICAgICAgICAgICAgICAgfVxuXHQgICAgICAgICAgICB9XG5cdCAgICAgICAgfVxuXHQgICAgfVxuXHQgICAgcmV0dXJuIG1lc3NhZ2U7XG5cdH1cblx0XG5cdC8qKlxuXHQqIFJldHVybnMgdGhlIG9iamVjdCB3aXRoIGxvY2FsaXphdGlvbnMgZm9yIHRoZSBzcGVjaWZpZWQgbGFuZ3VhZ2UgYW5kXG5cdCogY2FjaGVzIHRoZSBsb2NhbGl6YXRpb24gZmlsZSB0byBsaW1pdCBmaWxlIHJlYWQgYWN0aW9ucy4gUmV0dXJucyBudWxsXG5cdCogaWYgdGhlIGxvY2FsaXphdGlvbiBpcyBub3QgYXZhaWxhYmxlLlxuXHQqKi9cblx0ZnVuY3Rpb24gX2dldExvY2FsZShsYW5ndWFnZTogc3RyaW5nKTogTG9jYWxpemF0aW9uIHtcblx0XHRpZih0eXBlb2YgX2xvY2FsZXNbbGFuZ3VhZ2VdID09PSAnb2JqZWN0Jylcblx0XHRcdHJldHVybiBfbG9jYWxlc1tsYW5ndWFnZV07XG5cdFx0ZWxzZSB7XG5cdFx0XHR0cnkge1xuXHRcdFx0XHR2YXIgdXJsID0gc2FmYXJpLmV4dGVuc2lvbi5iYXNlVVJJICsgXCJfbG9jYWxlcy9cIiArIGxhbmd1YWdlICsgXCIvbWVzc2FnZXMuanNvblwiO1xuXHRcdFx0XHR2YXIgciA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO1xuXHRcdFx0XHRyLm9wZW4oXCJHRVRcIiwgdXJsLCBmYWxzZSk7XG5cdFx0XHRcdHIuc2VuZChudWxsKTtcblx0XHRcdFx0dmFyIGRhdGEgPSBKU09OLnBhcnNlKHIucmVzcG9uc2VUZXh0KTtcblx0XHRcdFx0X2xvY2FsZXNbbGFuZ3VhZ2VdID0gZGF0YTtcblx0XHRcdH0gY2F0Y2goZSl7XG5cdFx0XHRcdF9sb2NhbGVzW2xhbmd1YWdlXSA9IG51bGw7XG5cdFx0XHR9XG5cdFx0XHRyZXR1cm4gX2xvY2FsZXNbbGFuZ3VhZ2VdO1xuXHRcdH1cblx0fVxuXHRcblx0XG5cdGV4cG9ydCBmdW5jdGlvbiBnZXRSZXNvdXJjZVVSTChmaWxlOiBzdHJpbmcpOiBzdHJpbmcge1xuXHRcdGlmKElTX1NBRkFSSSlcblx0XHRcdHJldHVybiBzYWZhcmkuZXh0ZW5zaW9uLmJhc2VVUkkgKyBmaWxlO1xuXHRcdGlmKElTX0NIUk9NRSlcblx0XHRcdHJldHVybiBjaHJvbWUucnVudGltZS5nZXRVUkwoZmlsZSk7XG5cdH1cblx0XG5cdGV4cG9ydCBmdW5jdGlvbiBjcmVhdGVUYWIodXJsOiBzdHJpbmcpOiB2b2lkIHtcblx0XHQvLyBTYWZhcmlcblx0XHRpZihJU19TQUZBUkkpIHtcblx0XHRcdGlmICghdXJsLm1hdGNoKC9eaHR0cC8pKSB7XG5cdFx0XHRcdHVybCA9IHNhZmFyaS5leHRlbnNpb24uYmFzZVVSSSArIHVybDtcblx0XHRcdH1cblx0XHRcdFxuXHRcdFx0dmFyIGJyb3dzZXJXaW5kb3cgPSBzYWZhcmkuYXBwbGljYXRpb24uYWN0aXZlQnJvd3NlcldpbmRvdztcblx0XHRcdGlmKGJyb3dzZXJXaW5kb3cgPT0gbnVsbCkge1xuXHRcdFx0XHRicm93c2VyV2luZG93ID0gc2FmYXJpLmFwcGxpY2F0aW9uLm9wZW5Ccm93c2VyV2luZG93KCk7XG5cdFx0XHR9XG5cdFx0XHRcblx0XHRcdHZhciB0YWIgPSBicm93c2VyV2luZG93LmFjdGl2ZVRhYjtcblx0XHRcdGlmKHRhYiA9PSBudWxsIHx8IHRhYi51cmwgIT0gbnVsbCkge1xuXHRcdFx0XHR0YWIgPSBicm93c2VyV2luZG93Lm9wZW5UYWIoKTtcblx0XHRcdH1cblx0XHRcdFxuXHRcdFx0dGFiLnVybCA9IHVybDtcblx0XHRcdGJyb3dzZXJXaW5kb3cuYWN0aXZhdGUoKTtcblx0XHRcdHRhYi5hY3RpdmF0ZSgpO1xuXHRcdH1cblx0XHRcblx0XHQvLyBDaHJvbWVcblx0XHRlbHNlIGlmKElTX0NIUk9NRSkge1xuXHRcdFx0Y2hyb21lLnRhYnMuY3JlYXRlKHtcInVybFwiOnVybH0pO1xuXHRcdH1cblx0fVxuXHRcblx0ZXhwb3J0IGZ1bmN0aW9uIHNldEJhZGdlKHZhbHVlOiBudW1iZXIpIHtcblx0XHRpZihJU19TQUZBUkkpIHtcblx0XHRcdHZhciB0b29sYmFySXRlbXMgPSBzYWZhcmkuZXh0ZW5zaW9uLnRvb2xiYXJJdGVtcztcblx0XHRcdGZvcih2YXIgaSA9IDA7IGkgPCB0b29sYmFySXRlbXMubGVuZ3RoOyBpKyspIHtcblx0XHRcdFx0aWYodG9vbGJhckl0ZW1zW2ldLmlkZW50aWZpZXIgPT0gXCJ0b29sYmFyQnV0dG9uXCIpXG5cdFx0XHRcdFx0dG9vbGJhckl0ZW1zW2ldLmJhZGdlID0gdmFsdWU7XG5cdFx0XHR9XG5cdFx0fVxuXHRcdGVsc2UgaWYoSVNfQ0hST01FKSB7XG4gICAgICAgICAgICB2YXIgdGV4dCA9IHZhbHVlID09PSAwID8gXCJcIiA6IHZhbHVlLnRvU3RyaW5nKCk7XG5cdFx0XHRjaHJvbWUuYnJvd3NlckFjdGlvbi5zZXRCYWRnZUJhY2tncm91bmRDb2xvcih7Y29sb3I6WzAsIDIwMCwgMCwgMTAwXX0pO1xuXHRcdFx0Y2hyb21lLmJyb3dzZXJBY3Rpb24uc2V0QmFkZ2VUZXh0KHt0ZXh0OnRleHR9KTtcblx0XHR9XG5cdH1cblx0XG5cdGV4cG9ydCBmdW5jdGlvbiBnZXRQb3BvdmVycygpOiBBcnJheTxXaW5kb3c+IHtcblx0XHR2YXIgcG9wb3ZlcnMgPSBuZXcgQXJyYXk8V2luZG93PigpO1xuXHRcdFxuXHRcdGlmKElTX1NBRkFSSSkge1xuXHRcdFx0JC5lYWNoKHNhZmFyaS5leHRlbnNpb24ucG9wb3ZlcnMsIGZ1bmN0aW9uKGluZGV4LCBwb3BvdmVyKSB7XG5cdFx0XHRcdHBvcG92ZXJzLnB1c2gocG9wb3Zlci5jb250ZW50V2luZG93KTtcblx0XHRcdH0pO1xuXHRcdH1cblx0XHRlbHNlIGlmKElTX0NIUk9NRSkge1xuXHRcdFx0cG9wb3ZlcnMgPSBjaHJvbWUuZXh0ZW5zaW9uLmdldFZpZXdzKHt0eXBlOiAncG9wdXAnfSk7XG5cdFx0fVxuXHRcdFxuXHRcdHJldHVybiBwb3BvdmVycztcblx0fVxuXHRcblx0ZXhwb3J0IGZ1bmN0aW9uIGhpZGVQb3BvdmVycygpOiB2b2lkIHtcblx0XHRpZihJU19TQUZBUkkpIHtcblx0XHRcdHZhciBwb3BvdmVycyA9IGdldFNhZmFyaVBvcG92ZXJPYmplY3RzKCk7XG5cdFx0XHRmb3IodmFyIGkgPSAwOyBpIDwgcG9wb3ZlcnMubGVuZ3RoOyBpKyspIHtcblx0XHRcdFx0cG9wb3ZlcnNbaV0uaGlkZSgpO1xuXHRcdFx0fVxuXHRcdH1cblx0XHRlbHNlIGlmKElTX0NIUk9NRSkge1xuXHRcdFx0dmFyIHBvcG92ZXJXaW5kb3dzID0gZ2V0UG9wb3ZlcnMoKTtcblx0XHRcdGZvcih2YXIgaSA9IDA7IGkgPCBwb3BvdmVyV2luZG93cy5sZW5ndGg7IGkrKykge1xuXHRcdFx0XHRwb3BvdmVyV2luZG93c1tpXS5jbG9zZSgpO1xuXHRcdFx0fVxuXHRcdH1cblx0fVxuXHRcblx0ZXhwb3J0IGZ1bmN0aW9uIGdldFNhZmFyaVBvcG92ZXJPYmplY3RzKCk6IEFycmF5PFNhZmFyaUV4dGVuc2lvblBvcG92ZXI+IHtcblx0XHR2YXIgcG9wb3ZlcnMgPSBuZXcgQXJyYXk8U2FmYXJpRXh0ZW5zaW9uUG9wb3Zlcj4oKTtcblx0XHRcblx0XHRpZihJU19TQUZBUkkpIHtcblx0XHRcdCQuZWFjaChzYWZhcmkuZXh0ZW5zaW9uLnBvcG92ZXJzLCAoaW5kZXgsIHBvcG92ZXIpID0+IHtcblx0XHRcdFx0cG9wb3ZlcnMucHVzaChwb3BvdmVyKTtcblx0XHRcdH0pO1xuXHRcdH1cblx0XHRcblx0XHRyZXR1cm4gcG9wb3ZlcnM7XG5cdH1cblx0XG5cdGV4cG9ydCBmdW5jdGlvbiBnZXRTYWZhcmlQb3BvdmVyT2JqZWN0KGlkZW50aWZpZXI6IHN0cmluZyk6IFNhZmFyaUV4dGVuc2lvblBvcG92ZXIge1xuXHRcdHZhciBwb3BvdmVyczogQXJyYXk8U2FmYXJpRXh0ZW5zaW9uUG9wb3Zlcj4gPSBnZXRTYWZhcmlQb3BvdmVyT2JqZWN0cygpO1xuXHRcdGZvcih2YXIgaSA9IDA7IGkgPCBwb3BvdmVycy5sZW5ndGg7IGkrKykge1xuXHRcdFx0aWYocG9wb3ZlcnNbaV0uaWRlbnRpZmllciA9PSBpZGVudGlmaWVyKVxuXHRcdFx0XHRyZXR1cm4gcG9wb3ZlcnNbaV07XG5cdFx0fVxuXHRcdHJldHVybiBudWxsO1xuXHR9XG5cdFxuXHRleHBvcnQgZnVuY3Rpb24gb25Qb3BvdmVyVmlzaWJsZShldmVudEhhbmRsZXI6IChldmVudDogYW55KSA9PiB2b2lkLCBpZGVudGlmaWVyOiBzdHJpbmcpOiB2b2lkIHtcblx0XHRpZihJU19TQUZBUkkpIHtcblx0XHRcdHNhZmFyaS5hcHBsaWNhdGlvbi5hZGRFdmVudExpc3RlbmVyKFwicG9wb3ZlclwiLCAoZXZlbnQ6IGFueS8qU2FmYXJpVmFsaWRhdGVFdmVudDxTYWZhcmlFeHRlbnNpb25Qb3BvdmVyPiovKSA9PiB7XG5cdFx0XHRcdGlmKGV2ZW50LnRhcmdldC5pZGVudGlmaWVyID09IGlkZW50aWZpZXIpIHtcblx0XHRcdFx0XHRldmVudEhhbmRsZXIoZXZlbnQpO1xuXHRcdFx0XHR9XG5cdFx0XHR9LCB0cnVlKTtcblx0XHR9XG5cdFx0ZWxzZSBpZihJU19DSFJPTUUpIHtcblx0XHRcdCQoZG9jdW1lbnQpLnJlYWR5KGV2ZW50SGFuZGxlcik7XG5cdFx0fVxuXHR9XG5cdFxuXHRleHBvcnQgZnVuY3Rpb24gb25Qb3BvdmVySGlkZGVuKGV2ZW50SGFuZGxlcjogKCkgPT4gdm9pZCwgaWRlbnRpZmllcjogc3RyaW5nKTogdm9pZCB7XG5cdFx0aWYoSVNfU0FGQVJJKSB7XG5cdFx0XHRzYWZhcmkuYXBwbGljYXRpb24uYWRkRXZlbnRMaXN0ZW5lcihcInBvcG92ZXJcIiwgKGV2ZW50OiBhbnkvKlNhZmFyaVZhbGlkYXRlRXZlbnQ8U2FmYXJpRXh0ZW5zaW9uUG9wb3Zlcj4qLykgPT4ge1xuXHRcdFx0XHRpZihldmVudC50YXJnZXQuaWRlbnRpZmllciA9PSBpZGVudGlmaWVyKSB7XG5cdFx0XHRcdFx0dmFyIHNhZmFyaVBvcG92ZXIgPSBnZXRTYWZhcmlQb3BvdmVyT2JqZWN0KGlkZW50aWZpZXIpO1xuXHRcdFx0XHRcdFxuXHRcdFx0XHRcdGlmKHNhZmFyaVBvcG92ZXIgIT0gbnVsbCkge1xuXHRcdFx0XHRcdFx0dmFyIHBvcG92ZXJWaXNpYmlsaXR5VGltZXIgPSBzZXRJbnRlcnZhbCgoKSA9PiB7XG5cdFx0XHRcdFx0XHRcdGlmKHNhZmFyaVBvcG92ZXIudmlzaWJsZSA9PT0gZmFsc2UpIHtcblx0XHRcdFx0XHRcdFx0XHRldmVudEhhbmRsZXIoKTtcblx0XHRcdFx0XHRcdFx0XHRjbGVhckludGVydmFsKHBvcG92ZXJWaXNpYmlsaXR5VGltZXIpO1xuXHRcdFx0XHRcdFx0XHR9XG5cdFx0XHRcdFx0XHR9LCAxMDAwKTtcblx0XHRcdFx0XHR9XG5cdFx0XHRcdH1cblx0XHRcdH0pO1xuXHRcdH1cblx0XHRlbHNlIGlmKElTX0NIUk9NRSkge1xuXHRcdFx0JCh3aW5kb3cpLnVubG9hZChldmVudEhhbmRsZXIpO1xuXHRcdH1cblx0fVxuXHRcblx0ZXhwb3J0IGZ1bmN0aW9uIGdldEJhY2tncm91bmRQYWdlKCk6IFdpbmRvdyB7XG5cdFx0dmFyIGJhY2tncm91bmRQYWdlOiBXaW5kb3c7XG5cdFx0XG5cdFx0aWYoSVNfU0FGQVJJKSB7XG5cdFx0XHRiYWNrZ3JvdW5kUGFnZSA9IHNhZmFyaS5leHRlbnNpb24uZ2xvYmFsUGFnZS5jb250ZW50V2luZG93O1xuXHRcdH1cblx0XHRlbHNlIGlmKElTX0NIUk9NRSkge1xuXHRcdFx0YmFja2dyb3VuZFBhZ2UgPSBjaHJvbWUuZXh0ZW5zaW9uLmdldEJhY2tncm91bmRQYWdlKCk7XG5cdFx0fVxuXHRcdFxuXHRcdHJldHVybiBiYWNrZ3JvdW5kUGFnZTtcblx0fVxuXHRcblx0Ly8gIUNvbnRleHQgbWVudXNcblx0dmFyIGNvbnRleHRNZW51SXRlbXM6IHtba2V5OiBzdHJpbmddOiBjaHJvbWUuY29udGV4dE1lbnVzLkNyZWF0ZVByb3BlcnRpZXN9ID0ge307XG5cdGlmKElTX1NBRkFSSSAmJiB0eXBlb2Ygc2FmYXJpLmFwcGxpY2F0aW9uID09PSBcIm9iamVjdFwiKSB7XG5cdFx0c2FmYXJpLmFwcGxpY2F0aW9uLmFkZEV2ZW50TGlzdGVuZXIoXCJjb250ZXh0bWVudVwiLCAoZXZlbnQ6IFNhZmFyaUV4dGVuc2lvbkNvbnRleHRNZW51RXZlbnQpID0+IHtcblx0XHRcdGZvcih2YXIgaWQgaW4gY29udGV4dE1lbnVJdGVtcylcblx0XHRcdHtcblx0XHRcdFx0aWYoY29udGV4dE1lbnVJdGVtcy5oYXNPd25Qcm9wZXJ0eShpZCkpIHtcblx0XHRcdFx0XHRldmVudC5jb250ZXh0TWVudS5hcHBlbmRDb250ZXh0TWVudUl0ZW0oaWQsIGNvbnRleHRNZW51SXRlbXNbaWRdLnRpdGxlKTtcdFxuXHRcdFx0XHR9XG5cdFx0XHR9XG5cdFx0fSwgZmFsc2UpO1xuXHRcdFxuXHRcdHNhZmFyaS5hcHBsaWNhdGlvbi5hZGRFdmVudExpc3RlbmVyKFwidmFsaWRhdGVcIiwgKGV2ZW50OiBhbnkvKlNhZmFyaUV4dGVuc2lvbkNvbnRleHRNZW51SXRlbVZhbGlkYXRlRXZlbnQqLykgPT4ge1xuXHRcdFx0aWYoY29udGV4dE1lbnVJdGVtcy5oYXNPd25Qcm9wZXJ0eShldmVudC5jb21tYW5kKSkge1xuXHRcdFx0XHRldmVudC50YXJnZXQuZGlzYWJsZWQgPSBmYWxzZTsgLy8hY29udGV4dE1lbnVJdGVtc1tldmVudC5jb21tYW5kXS5lbmFibGVkO1xuXHRcdFx0fVxuXHRcdH0sIGZhbHNlKTtcblx0XHRcblx0XHRzYWZhcmkuYXBwbGljYXRpb24uYWRkRXZlbnRMaXN0ZW5lcihcImNvbW1hbmRcIiwgZnVuY3Rpb24oZXZlbnQ6IFNhZmFyaUV4dGVuc2lvbkNvbnRleHRNZW51SXRlbUNvbW1hbmRFdmVudCkge1xuXHRcdFx0aWYoY29udGV4dE1lbnVJdGVtcy5oYXNPd25Qcm9wZXJ0eShldmVudC5jb21tYW5kKSAmJiB0eXBlb2YgY29udGV4dE1lbnVJdGVtc1tldmVudC5jb21tYW5kXS5vbmNsaWNrID09PSBcImZ1bmN0aW9uXCIpIHtcblx0XHRcdFx0Y29udGV4dE1lbnVJdGVtc1tldmVudC5jb21tYW5kXS5vbmNsaWNrKDxjaHJvbWUuY29udGV4dE1lbnVzLk9uQ2xpY2tEYXRhPiBldmVudC51c2VySW5mbywgbnVsbCk7XG5cdFx0XHR9XG5cdFx0fSwgZmFsc2UpO1xuXHR9XG5cdFxuXHRleHBvcnQgZnVuY3Rpb24gY3JlYXRlQ29udGV4dE1lbnVJdGVtKG9wdGlvbnM6IGNocm9tZS5jb250ZXh0TWVudXMuQ3JlYXRlUHJvcGVydGllcyk6IHZvaWQge1xuXHRcdGlmKGNvbnRleHRNZW51SXRlbXMuaGFzT3duUHJvcGVydHkob3B0aW9ucy5pZCkpIHtcblx0XHRcdHZhciBpZCA9IG9wdGlvbnMuaWQ7XG5cdFx0XHRkZWxldGUgb3B0aW9ucy5pZDtcblx0XHRcdHVwZGF0ZUNvbnRleHRNZW51SXRlbShpZCwgb3B0aW9ucyk7XG5cdFx0fVxuXHRcdGVsc2Uge1xuXHRcdFx0Y29udGV4dE1lbnVJdGVtc1tvcHRpb25zLmlkXSA9IG9wdGlvbnM7XG5cdFx0XHRcblx0XHRcdGlmIChJU19DSFJPTUUpIHtcblx0XHRcdFx0Y2hyb21lLmNvbnRleHRNZW51cy5jcmVhdGUob3B0aW9ucyk7XG5cdFx0XHR9XG5cdFx0fVxuXHR9XG5cdFxuXHRleHBvcnQgZnVuY3Rpb24gdXBkYXRlQ29udGV4dE1lbnVJdGVtKGlkOiBzdHJpbmcsIG5ld09wdGlvbnM6IGNocm9tZS5jb250ZXh0TWVudXMuVXBkYXRlUHJvcGVydGllcyk6IHZvaWQge1xuXHRcdGlmKGNvbnRleHRNZW51SXRlbXMuaGFzT3duUHJvcGVydHkoaWQpKVxuXHRcdHtcblx0XHRcdGZvcih2YXIga2V5IGluIG5ld09wdGlvbnMpXG5cdFx0XHR7XG5cdFx0XHRcdCg8YW55PmNvbnRleHRNZW51SXRlbXNbaWRdKVtrZXldID0gKDxhbnk+bmV3T3B0aW9ucylba2V5XTtcblx0XHRcdH1cblx0XG5cdFx0XHRpZiAoSVNfQ0hST01FKSB7XG5cdFx0XHRcdGNocm9tZS5jb250ZXh0TWVudXMudXBkYXRlKGlkLCBuZXdPcHRpb25zKTtcblx0XHRcdH1cblx0XHR9XG5cdH1cblx0XG5cdGV4cG9ydCBmdW5jdGlvbiByZW1vdmVDb250ZXh0TWVudUl0ZW0oaWQ6IHN0cmluZykge1xuXHRcdGlmKGNvbnRleHRNZW51SXRlbXMuaGFzT3duUHJvcGVydHkoaWQpKVxuXHRcdHtcblx0XHRcdGRlbGV0ZSBjb250ZXh0TWVudUl0ZW1zW2lkXTtcblx0XHRcdFxuXHRcdFx0aWYgKElTX0NIUk9NRSkge1xuXHRcdFx0XHRjaHJvbWUuY29udGV4dE1lbnVzLnJlbW92ZShpZCk7XG5cdFx0XHR9XG5cdFx0fVxuXHR9XG5cdFxuXHQvLyAhU2FmYXJpIGV4dGVuc2lvbiB1cGRhdGUgY2hlY2tcblx0ZXhwb3J0IGZ1bmN0aW9uIHNhZmFyaUNoZWNrRm9yVXBkYXRlKCkge1xuXHRcdGlmKElTX1NBRkFSSSkge1xuXHRcdFx0dmFyIGN1cnJlbnRWZXJzaW9uID0gZXh0ZW5zaW9uLmdldEV4dGVuc2lvbkJ1bmRsZVZlcnNpb24oKTtcblx0XHRcdFxuXHRcdFx0JC5hamF4KHtcblx0XHRcdFx0dHlwZTogJ0dFVCcsXG5cdFx0XHRcdHVybDogU0FGQVJJX1VQREFURV9NQU5JRkVTVCxcblx0XHRcdFx0ZGF0YVR5cGU6ICd4bWwnXG5cdFx0XHR9KS5kb25lKChkYXRhKSA9PiB7XG5cdFx0XHRcdC8vIEZpbmQgZGljdGlvbmFyeSBmb3IgdGhpcyBleHRlbnNpb25cblx0XHRcdFx0JC5lYWNoKCQoZGF0YSkuZmluZChcImtleVwiKSwgKGluZGV4OiBudW1iZXIsIGtleTogSlF1ZXJ5KSA9PiB7XG5cdFx0XHRcdFx0aWYoJChrZXkpLnRleHQoKSA9PSAnQ0ZCdW5kbGVJZGVudGlmaWVyJyAmJiAkKGtleSkubmV4dCgpLnRleHQoKSA9PSAnbmwubHV1a2RvYmJlci5zYWZhcmlkb3dubG9hZHN0YXRpb24nKSB7XG5cdFx0XHRcdFx0XHR2YXIgZGljdCA9ICQoa2V5KS5jbG9zZXN0KCdkaWN0Jyk7XG5cdFx0XHRcdFx0XHR2YXIgdXBkYXRlVXJsOiBzdHJpbmc7XG5cdFx0XHRcdFx0XHQvLyBGaW5kIHRoZSBsYXRlc3QgdmVyc2lvblxuXHRcdFx0XHRcdFx0JC5lYWNoKGRpY3QuZmluZChcImtleVwiKSwgKGluZGV4LCBrZXkpID0+IHtcblx0XHRcdFx0XHRcdFx0aWYoJChrZXkpLnRleHQoKSA9PSAnVVJMJykge1xuXHRcdFx0XHRcdFx0XHRcdHVwZGF0ZVVybCA9ICQoa2V5KS5uZXh0KCkudGV4dCgpO1xuXHRcdFx0XHRcdFx0XHR9XG5cdFx0XHRcdFx0XHR9KTtcblx0XHRcdFx0XHRcdFxuXHRcdFx0XHRcdFx0JC5lYWNoKGRpY3QuZmluZChcImtleVwiKSwgKGluZGV4LCBrZXkpID0+IHtcblx0XHRcdFx0XHRcdFx0aWYoJChrZXkpLnRleHQoKSA9PSAnQ0ZCdW5kbGVWZXJzaW9uJykge1xuXHRcdFx0XHRcdFx0XHRcdHZhciBsYXRlc3RWZXJzaW9uID0gcGFyc2VJbnQoJChrZXkpLm5leHQoKS50ZXh0KCkpO1xuXHRcdFx0XHRcdFx0XHRcdGlmKGN1cnJlbnRWZXJzaW9uIDwgbGF0ZXN0VmVyc2lvbilcblx0XHRcdFx0XHRcdFx0XHR7XG5cdFx0XHRcdFx0XHRcdFx0XHRzaG93Tm90aWZpY2F0aW9uKFxuXHRcdFx0XHRcdFx0XHRcdFx0XHRcIlN5bm9sb2d5IERvd25sb2FkIFN0YXRpb25cIixcblx0XHRcdFx0XHRcdFx0XHRcdFx0Z2V0TG9jYWxpemVkU3RyaW5nKFwibmV3VmVyc2lvbkF2YWlsYWJsZVwiKSwgdHJ1ZSwgdXBkYXRlVXJsKTtcblx0XHRcdFx0XHRcdFx0XHR9XG5cdFx0XHRcdFx0XHRcdH1cblx0XHRcdFx0XHRcdH0pO1xuXHRcdFx0XHRcdH1cblx0XHRcdFx0fSk7XG5cdFx0XHR9KTtcblx0XHR9XG5cdH07XG5cdFxuXHR2YXIgbm90aWZpY2F0aW9uT25DbGlja1VybHM6IHsgW2lkOiBzdHJpbmddIDogc3RyaW5nOyB9ID0ge307XG5cdC8vICFOb3RpZmljYXRpb25zXG5cdGV4cG9ydCBmdW5jdGlvbiBzaG93Tm90aWZpY2F0aW9uKHRpdGxlOiBzdHJpbmcsIHRleHQ6IHN0cmluZywga2VlcFZpc2libGU/OiBib29sZWFuLCBvbmNsaWNrVXJsPzogc3RyaW5nKSB7XG5cdFx0dmFyIGtlZXBWaXNpYmxlID0ga2VlcFZpc2libGUgfHwgZmFsc2U7XG5cdFx0dmFyIHRleHREaXJlY3Rpb24gPSAoZXh0ZW5zaW9uLmdldExvY2FsaXplZFN0cmluZyhcInRleHREaXJlY3Rpb25cIikgPT0gXCJydGxcIiA/IFwicnRsXCIgOiBcImx0clwiKTtcblx0XHR2YXIgaWNvbiA9IFwiSWNvbi00OC5wbmdcIjtcblx0XHRcblx0XHRpZih3aW5kb3cuY2hyb21lICYmIGNocm9tZS5ub3RpZmljYXRpb25zICYmIGNocm9tZS5ub3RpZmljYXRpb25zLmNyZWF0ZSkge1xuXHRcdFx0dmFyIG9wdGlvbnM6IGNocm9tZS5ub3RpZmljYXRpb25zLk5vdGlmaWNhdGlvbk9wdGlvbnMgPSB7XG5cdFx0XHRcdHR5cGU6IFwiYmFzaWNcIixcblx0XHRcdFx0dGl0bGU6IHRpdGxlLFxuXHRcdFx0XHRtZXNzYWdlOiB0ZXh0LFxuXHRcdFx0XHRpY29uVXJsOiBleHRlbnNpb24uZ2V0UmVzb3VyY2VVUkwoXCJJY29uLTY0LnBuZ1wiKSxcblx0XHRcdH07XG5cblx0XHRcdGlmKG9uY2xpY2tVcmwpIHtcblx0XHRcdFx0b3B0aW9ucy5pc0NsaWNrYWJsZSA9IHRydWU7XG5cdFx0XHR9XG5cdFx0XHRcblx0XHRcdCg8YW55Pm9wdGlvbnMpLnJlcXVpcmVJbnRlcmFjdGlvbiA9IGtlZXBWaXNpYmxlO1xuXHRcdFx0XG5cdFx0XHRjaHJvbWUubm90aWZpY2F0aW9ucy5jcmVhdGUob3B0aW9ucywgKG5vdGlmaWNhdGlvbklkOiBzdHJpbmcpID0+IHtcblx0XHRcdFx0aWYob25jbGlja1VybCkge1xuXHRcdFx0XHRcdG5vdGlmaWNhdGlvbk9uQ2xpY2tVcmxzW25vdGlmaWNhdGlvbklkXSA9IG9uY2xpY2tVcmw7XG5cdFx0XHRcdH1cblx0XHRcdH0pO1xuXHRcdH1cblx0XHRlbHNlIGlmKFwiTm90aWZpY2F0aW9uXCIgaW4gd2luZG93KVxuXHRcdHtcblx0XHRcdHZhciBub3RpZmljYXRpb24gPSBuZXcgKDxhbnk+d2luZG93KVtcIk5vdGlmaWNhdGlvblwiXSh0aXRsZSwge1xuXHRcdFx0XHRkaXI6IHRleHREaXJlY3Rpb24sXG5cdFx0XHRcdGJvZHk6IHRleHQsXG5cdFx0XHRcdGljb246IGljb24sXG5cdFx0XHR9KTtcblx0XHRcdFxuXHRcdFx0aWYob25jbGlja1VybCkge1xuXHRcdFx0XHRub3RpZmljYXRpb24ub25jbGljayA9IGZ1bmN0aW9uKCkge1xuXHRcdFx0XHRcdGV4dGVuc2lvbi5jcmVhdGVUYWIob25jbGlja1VybCk7XG5cdFx0XHRcdFx0dGhpcy5jbG9zZSgpO1xuXHRcdFx0XHR9O1xuXHRcdFx0fVxuXHRcdFx0XG5cdFx0XHRpZihrZWVwVmlzaWJsZSA9PSBmYWxzZSkge1xuXHRcdFx0XHRzZXRUaW1lb3V0KGZ1bmN0aW9uKCkge1xuXHRcdFx0XHRcdG5vdGlmaWNhdGlvbi5jbG9zZSgpO1xuXHRcdFx0XHR9LCA1MDAwKTtcblx0XHRcdH1cblx0XHRcdHJldHVybiBub3RpZmljYXRpb247XG5cdFx0fVxuXHRcdHJldHVybiBudWxsO1xuXHR9XG5cdFxuXHRpZih3aW5kb3cuY2hyb21lICYmIGNocm9tZS5ub3RpZmljYXRpb25zICYmIGNocm9tZS5ub3RpZmljYXRpb25zLm9uQ2xpY2tlZCkge1xuXHRcdGNocm9tZS5ub3RpZmljYXRpb25zLm9uQ2xpY2tlZC5hZGRMaXN0ZW5lcigobm90aWZpY2F0aW9uSWQ6IHN0cmluZykgPT4ge1xuXHRcdFx0aWYobm90aWZpY2F0aW9uT25DbGlja1VybHNbbm90aWZpY2F0aW9uSWRdKSB7XG5cdFx0XHRcdGV4dGVuc2lvbi5jcmVhdGVUYWIobm90aWZpY2F0aW9uT25DbGlja1VybHNbbm90aWZpY2F0aW9uSWRdKTtcblx0XHRcdFx0Y2hyb21lLm5vdGlmaWNhdGlvbnMuY2xlYXIobm90aWZpY2F0aW9uSWQpO1xuXHRcdFx0XHRkZWxldGUgbm90aWZpY2F0aW9uT25DbGlja1VybHNbbm90aWZpY2F0aW9uSWRdO1xuXHRcdFx0fVxuXHRcdH0pO1xuXHR9XG5cdFxuLypcblx0Ly8gIU1lc3NhZ2UgcGFzc2luZ1xuXHRleHRlbnNpb24uc2VuZE1lc3NhZ2VGcm9tQ29udGVudCA9IGZ1bmN0aW9uKG5hbWUsIG1lc3NhZ2UpIHtcblx0XHR2YXIgbWVzc2FnZURhdGEgPSB7XG5cdFx0XHRpZDogTWF0aC5yYW5kb20oKS50b1N0cmluZygzNikuc3Vic3RyaW5nKDcpLFxuXHRcdFx0bmFtZTogbmFtZSxcblx0XHRcdG1lc3NhZ2U6IG1lc3NhZ2Vcblx0XHR9O1xuXHRcdGlmKElTX0NIUk9NRSkge1xuXHRcdFx0aWYoY2hyb21lLnJ1bnRpbWUgJiYgY2hyb21lLnJ1bnRpbWUuc2VuZE1lc3NhZ2Upe1xuXHRcdFx0XHRjaHJvbWUucnVudGltZS5zZW5kTWVzc2FnZShtZXNzYWdlRGF0YSk7XG5cdFx0XHR9XG5cdFx0XHRlbHNlIGlmKGNocm9tZS5leHRlbnNpb24gJiYgY2hyb21lLmV4dGVuc2lvbi5zZW5kUmVxdWVzdClcblx0XHRcdHtcblx0XHRcdFx0Y2hyb21lLmV4dGVuc2lvbi5zZW5kUmVxdWVzdChtZXNzYWdlRGF0YSk7XG5cdFx0XHR9XG5cdFx0fVxuXHRcdGlmKElTX1NBRkFSSSkge1xuXHRcdFx0aWYodHlwZW9mIHNhZmFyaS5zZWxmLnRhYiA9PSBcIm9iamVjdFwiICYmIHNhZmFyaS5zZWxmLnRhYiBpbnN0YW5jZW9mIFNhZmFyaUNvbnRlbnRCcm93c2VyVGFiUHJveHkpXG5cdFx0XHRcdHNhZmFyaS5zZWxmLnRhYi5kaXNwYXRjaE1lc3NhZ2UoXCJleHRlbnNpb25NZXNzYWdlXCIsIG1lc3NhZ2VEYXRhLCBmYWxzZSk7XG5cdFx0XHRlbHNlIGlmKHNhZmFyaS5hcHBsaWNhdGlvbi5hY3RpdmVCcm93c2VyV2luZG93ICYmIHNhZmFyaS5hcHBsaWNhdGlvbi5hY3RpdmVCcm93c2VyV2luZG93LmFjdGl2ZVRhYi5wYWdlIGluc3RhbmNlb2YgU2FmYXJpV2ViUGFnZVByb3h5KVxuXHRcdFx0XHRzYWZhcmkuYXBwbGljYXRpb24uYWN0aXZlQnJvd3NlcldpbmRvdy5hY3RpdmVUYWIucGFnZS5kaXNwYXRjaE1lc3NhZ2UoXCJleHRlbnNpb25NZXNzYWdlXCIsIG1lc3NhZ2VEYXRhLCBmYWxzZSk7XG5cdFx0fVxuXHR9O1xuKi9cblx0XG5cdHZhciBzYWZhcmlNZXNzYWdlUmVzcG9uc2VIYW5kbGVyczoge1trZXk6IHN0cmluZ10gOiAobWVzc2FnZTogYW55KSA9PiB2b2lkfSA9IHt9O1xuXHRcblx0ZXhwb3J0IGZ1bmN0aW9uIHNlbmRNZXNzYWdlVG9CYWNrZ3JvdW5kKG5hbWU6IHN0cmluZywgbWVzc2FnZTogYW55LCByZXNwb25zZUNhbGxiYWNrPzogKG1lc3NhZ2U6IGFueSkgPT4gdm9pZCk6IHZvaWQge1xuXHRcdHZhciBtZXNzYWdlRGF0YSA9IHtcblx0XHRcdGlkOiBNYXRoLnJhbmRvbSgpLnRvU3RyaW5nKDM2KS5zdWJzdHJpbmcoNyksXG5cdFx0XHRuYW1lOiBuYW1lLFxuXHRcdFx0bWVzc2FnZTogbWVzc2FnZSxcblx0XHRcdGFjY2VwdHNDYWxsYmFjazogcmVzcG9uc2VDYWxsYmFjayAhPSBudWxsXG5cdFx0fTtcblx0XHRcblx0XHRpZihyZXNwb25zZUNhbGxiYWNrKSB7XG5cdFx0XHRzYWZhcmlNZXNzYWdlUmVzcG9uc2VIYW5kbGVyc1ttZXNzYWdlRGF0YS5pZF0gPSByZXNwb25zZUNhbGxiYWNrO1xuICAgICAgICB9XG5cdFx0XG5cdFx0aWYoSVNfQ0hST01FKVxuXHRcdHtcblx0XHRcdGNocm9tZS5ydW50aW1lLnNlbmRNZXNzYWdlKG1lc3NhZ2VEYXRhKTtcblx0XHR9XG5cdFx0ZWxzZSBpZihJU19TQUZBUkkpXG5cdFx0e1xuXHRcdFx0aWYodHlwZW9mICg8YW55PnNhZmFyaS5zZWxmKS50YWIgPT0gXCJvYmplY3RcIiAmJiAoPGFueT5zYWZhcmkuc2VsZikudGFiIGluc3RhbmNlb2YgKDxhbnk+d2luZG93KVtcIlNhZmFyaUNvbnRlbnRCcm93c2VyVGFiUHJveHlcIl0pIHtcblx0XHRcdFx0KDxhbnk+c2FmYXJpLnNlbGYpLnRhYi5kaXNwYXRjaE1lc3NhZ2UoXCJleHRlbnNpb25NZXNzYWdlXCIsIG1lc3NhZ2VEYXRhLCBmYWxzZSk7XG4gICAgICAgICAgICB9XG5cdFx0XHRlbHNlIGlmKHNhZmFyaS5hcHBsaWNhdGlvbi5hY3RpdmVCcm93c2VyV2luZG93ICYmIHNhZmFyaS5hcHBsaWNhdGlvbi5hY3RpdmVCcm93c2VyV2luZG93LmFjdGl2ZVRhYi5wYWdlIGluc3RhbmNlb2YgKDxhbnk+d2luZG93KVtcIlNhZmFyaVdlYlBhZ2VQcm94eVwiXSkge1xuXHRcdFx0XHRzYWZhcmkuYXBwbGljYXRpb24uYWN0aXZlQnJvd3NlcldpbmRvdy5hY3RpdmVUYWIucGFnZS5kaXNwYXRjaE1lc3NhZ2UoXCJleHRlbnNpb25NZXNzYWdlXCIsIG1lc3NhZ2VEYXRhKTtcbiAgICAgICAgICAgIH1cblx0XHR9XG5cdH07XG5cdFxuXHRleHBvcnQgZnVuY3Rpb24gc2VuZE1lc3NhZ2VUb0NvbnRlbnQobmFtZTogc3RyaW5nLCBtZXNzYWdlOiBhbnksIHJlc3BvbnNlQ2FsbGJhY2s/OiAobWVzc2FnZTogYW55KSA9PiB2b2lkKTogdm9pZCB7XG5cdFx0dmFyIG1lc3NhZ2VEYXRhID0ge1xuXHRcdFx0aWQ6IE1hdGgucmFuZG9tKCkudG9TdHJpbmcoMzYpLnN1YnN0cmluZyg3KSxcblx0XHRcdG5hbWU6IG5hbWUsXG5cdFx0XHRtZXNzYWdlOiBtZXNzYWdlLFxuXHRcdFx0YWNjZXB0c0NhbGxiYWNrOiByZXNwb25zZUNhbGxiYWNrICE9IG51bGxcblx0XHR9O1xuXHRcdFxuXHRcdGlmKHJlc3BvbnNlQ2FsbGJhY2spIHtcblx0XHRcdHNhZmFyaU1lc3NhZ2VSZXNwb25zZUhhbmRsZXJzW21lc3NhZ2VEYXRhLmlkXSA9IHJlc3BvbnNlQ2FsbGJhY2s7XG4gICAgICAgIH1cblx0XHRcblx0XHRpZihJU19DSFJPTUUpIHtcblx0XHRcdGlmKGNocm9tZS50YWJzKSB7XG5cdFx0XHRcdGNocm9tZS50YWJzLnF1ZXJ5KHthY3RpdmU6IHRydWV9LCAodGFicykgPT4ge1xuXHRcdFx0XHRcdGlmKHRhYnMubGVuZ3RoID4gMClcblx0XHRcdFx0XHR7XG5cdFx0XHRcdFx0XHRjaHJvbWUudGFicy5zZW5kTWVzc2FnZSh0YWJzWzBdLmlkLCBtZXNzYWdlRGF0YSk7XG5cdFx0XHRcdFx0fVxuXHRcdFx0XHR9KTtcblx0XHRcdH1cblx0XHR9XG5cdFx0aWYoSVNfU0FGQVJJKSB7XG5cdFx0XHRpZih0eXBlb2YgKDxhbnk+c2FmYXJpLnNlbGYpLnRhYiA9PSBcIm9iamVjdFwiICYmICg8YW55PnNhZmFyaS5zZWxmKS50YWIgaW5zdGFuY2VvZiAoPGFueT53aW5kb3cpW1wiU2FmYXJpQ29udGVudEJyb3dzZXJUYWJQcm94eVwiXSlcblx0XHRcdFx0KDxhbnk+c2FmYXJpLnNlbGYpLnRhYi5kaXNwYXRjaE1lc3NhZ2UoXCJleHRlbnNpb25NZXNzYWdlXCIsIG1lc3NhZ2VEYXRhLCBmYWxzZSk7XG5cdFx0XHRlbHNlIGlmKHNhZmFyaS5hcHBsaWNhdGlvbi5hY3RpdmVCcm93c2VyV2luZG93ICE9IG51bGwgJiYgc2FmYXJpLmFwcGxpY2F0aW9uLmFjdGl2ZUJyb3dzZXJXaW5kb3cuYWN0aXZlVGFiLnBhZ2UgaW5zdGFuY2VvZiAoPGFueT53aW5kb3cpW1wiU2FmYXJpV2ViUGFnZVByb3h5XCJdKVxuXHRcdFx0XHRzYWZhcmkuYXBwbGljYXRpb24uYWN0aXZlQnJvd3NlcldpbmRvdy5hY3RpdmVUYWIucGFnZS5kaXNwYXRjaE1lc3NhZ2UoXCJleHRlbnNpb25NZXNzYWdlXCIsIG1lc3NhZ2VEYXRhKTtcblx0XHR9XG5cdH1cblxuICAgIGludGVyZmFjZSBNZXNzYWdlRXZlbnQge1xuICAgICAgICBuYW1lOiBzdHJpbmc7XG4gICAgICAgIG1lc3NhZ2U6IGFueTtcbiAgICB9XG5cdFxuXHR2YXIgcmVjZWl2ZWRNZXNzYWdlczogQXJyYXk8YW55PiA9IFtdO1xuXHRleHBvcnQgZnVuY3Rpb24gb25NZXNzYWdlKGNhbGxiYWNrOiAoZXZlbnQ6IE1lc3NhZ2VFdmVudCwgc2VuZFJlc3BvbnNlOiAobWVzc2FnZTogYW55KSA9PiB2b2lkKSA9PiB2b2lkKSB7XG5cdFx0XG5cdFx0dmFyIG1lc3NhZ2VIYW5kbGVyID0gKG1lc3NhZ2VEYXRhOiBhbnksIHNlbmRSZXNwb25zZTogKHJlc3BvbnNlTWVzc2FnZTogYW55KSA9PiB2b2lkKSA9PiB7XG5cdFx0XHRpZighbWVzc2FnZURhdGEgfHwgIW1lc3NhZ2VEYXRhLmlkKSByZXR1cm47XG5cdFx0XHRpZihyZWNlaXZlZE1lc3NhZ2VzLmluZGV4T2YobWVzc2FnZURhdGEuaWQpICE9IC0xKSByZXR1cm47XG5cdFx0XHRcblx0XHRcdGNhbGxiYWNrKHsgbmFtZTogbWVzc2FnZURhdGEubmFtZSwgbWVzc2FnZTogbWVzc2FnZURhdGEubWVzc2FnZSB9LCBzZW5kUmVzcG9uc2UpO1xuXHRcdH07XG5cdFx0XG5cdFx0aWYoSVNfQ0hST01FKSB7XG5cdFx0XHRpZihjaHJvbWUucnVudGltZSAmJiBjaHJvbWUucnVudGltZS5vbk1lc3NhZ2Upe1xuXHRcdFx0XHRjaHJvbWUucnVudGltZS5vbk1lc3NhZ2UuYWRkTGlzdGVuZXIoKHJlcXVlc3QsIHNlbmRlciwgc2VuZFJlc3BvbnNlKSA9PiB7XG5cdFx0XHRcdFx0aWYocmVxdWVzdC5pZClcblx0XHRcdFx0XHR7XG5cdFx0XHRcdFx0XHRtZXNzYWdlSGFuZGxlcihyZXF1ZXN0LCAocmVzcG9uc2VNZXNzYWdlOiBhbnkpID0+IHtcblx0XHRcdFx0XHRcdFx0dmFyIG1lc3NhZ2VEYXRhID0ge1xuXHRcdFx0XHRcdFx0XHRcdHJlc3BvbnNlVG86IHJlcXVlc3QuaWQsXG5cdFx0XHRcdFx0XHRcdFx0bWVzc2FnZTogcmVzcG9uc2VNZXNzYWdlXG5cdFx0XHRcdFx0XHRcdH07XG5cdFx0XHRcdFx0XHRcdGlmKHNlbmRlci50YWIgJiYgc2VuZGVyLmZyYW1lSWQpIHtcblx0XHRcdFx0XHRcdFx0XHRjaHJvbWUudGFicy5zZW5kTWVzc2FnZShzZW5kZXIudGFiLmlkLCBtZXNzYWdlRGF0YSwgeyBmcmFtZUlkOiBzZW5kZXIuZnJhbWVJZCB9KTtcblx0XHRcdFx0XHRcdFx0fVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGVsc2UgaWYoc2VuZGVyLnRhYikge1xuXHRcdFx0XHRcdFx0XHRcdGNocm9tZS50YWJzLnNlbmRNZXNzYWdlKHNlbmRlci50YWIuaWQsIG1lc3NhZ2VEYXRhKTtcblx0XHRcdFx0XHRcdFx0fVxuXHRcdFx0XHRcdFx0XHRlbHNlIHtcblx0XHRcdFx0XHRcdFx0XHRjaHJvbWUucnVudGltZS5zZW5kTWVzc2FnZShtZXNzYWdlRGF0YSk7XG5cdFx0XHRcdFx0XHRcdH1cblx0XHRcdFx0XHRcdH0pO1xuXHRcdFx0XHRcdH1cblx0XHRcdFx0fSk7XG5cdFx0XHR9XG5cdFx0fVxuXHRcdGlmKElTX1NBRkFSSSkge1xuXHRcdFx0dmFyIGV2ZW50SGFuZGxlciA9IChldmVudDogYW55KSA9PiB7XG5cdFx0XHRcdGlmKGV2ZW50Lm5hbWUgPT09IFwiZXh0ZW5zaW9uTWVzc2FnZVwiKVxuXHRcdFx0XHR7XG5cdFx0XHRcdFx0bWVzc2FnZUhhbmRsZXIoZXZlbnQubWVzc2FnZSwgKHJlc3BvbnNlTWVzc2FnZTogYW55KSA9PiB7XG5cdFx0XHRcdFx0XHR2YXIgbWVzc2FnZURhdGEgPSB7XG5cdFx0XHRcdFx0XHRcdHJlc3BvbnNlVG86IGV2ZW50Lm1lc3NhZ2UuaWQsXG5cdFx0XHRcdFx0XHRcdG1lc3NhZ2U6IHJlc3BvbnNlTWVzc2FnZVxuXHRcdFx0XHRcdFx0fTtcblx0XHRcdFx0XHRcdFxuXHRcdFx0XHRcdFx0aWYodHlwZW9mICg8YW55PnNhZmFyaS5zZWxmKS50YWIgPT0gXCJvYmplY3RcIiAmJiAoPGFueT5zYWZhcmkuc2VsZikudGFiIGluc3RhbmNlb2YgKDxhbnk+d2luZG93KVtcIlNhZmFyaUNvbnRlbnRCcm93c2VyVGFiUHJveHlcIl0pXG5cdFx0XHRcdFx0XHRcdCg8YW55PnNhZmFyaS5zZWxmKS50YWIuZGlzcGF0Y2hNZXNzYWdlKFwiZXh0ZW5zaW9uTWVzc2FnZVJlc3BvbnNlXCIsIG1lc3NhZ2VEYXRhLCBmYWxzZSk7XG5cdFx0XHRcdFx0XHRlbHNlIGlmKHNhZmFyaS5hcHBsaWNhdGlvbi5hY3RpdmVCcm93c2VyV2luZG93ICE9IG51bGwgJiYgc2FmYXJpLmFwcGxpY2F0aW9uLmFjdGl2ZUJyb3dzZXJXaW5kb3cuYWN0aXZlVGFiLnBhZ2UgaW5zdGFuY2VvZiAoPGFueT53aW5kb3cpW1wiU2FmYXJpV2ViUGFnZVByb3h5XCJdKVxuXHRcdFx0XHRcdFx0XHRzYWZhcmkuYXBwbGljYXRpb24uYWN0aXZlQnJvd3NlcldpbmRvdy5hY3RpdmVUYWIucGFnZS5kaXNwYXRjaE1lc3NhZ2UoXCJleHRlbnNpb25NZXNzYWdlUmVzcG9uc2VcIiwgbWVzc2FnZURhdGEpO1xuXHRcdFx0XHRcdFx0XG5cdFx0XHRcdFx0fSk7XG5cdFx0XHRcdH1cblx0XHRcdH07XG5cdFx0XHRcblx0XHRcdGlmKHR5cGVvZiBzYWZhcmkuYXBwbGljYXRpb24gPT09IFwib2JqZWN0XCIpXG5cdFx0XHRcdHNhZmFyaS5hcHBsaWNhdGlvbi5hZGRFdmVudExpc3RlbmVyKFwibWVzc2FnZVwiLCBldmVudEhhbmRsZXIsIGZhbHNlKTtcblx0XHRcdGVsc2UgaWYodHlwZW9mIHNhZmFyaS5zZWxmID09PSBcIm9iamVjdFwiKSB7XG5cdFx0XHRcdCg8YW55PnNhZmFyaS5zZWxmKS5hZGRFdmVudExpc3RlbmVyKFwibWVzc2FnZVwiLCBldmVudEhhbmRsZXIsIGZhbHNlKTtcblx0XHRcdH0gZWxzZSB7XG5cdFx0XHRcdGNvbnNvbGUud2FybihcIkNvdWxkIG5vdCBmaW5kIHNhZmFyaS5hcHBsaWNhdGlvbiBvciBzYWZhcmkuc2VsZiB0byBhZGQgbWVzc2FnZSBldmVudCBsaXN0ZW5lci5cIik7XG5cdFx0XHR9XG5cdFx0fVxuXHR9O1xuXHRcblx0Ly8gSGFuZGxlIG1lc3NhZ2UgcmVzcG9uc2VzXG5cdGlmKElTX0NIUk9NRSlcblx0e1xuXHRcdGNocm9tZS5ydW50aW1lLm9uTWVzc2FnZS5hZGRMaXN0ZW5lcigocmVxdWVzdCwgc2VuZGVyLCBzZW5kUmVzcG9uc2UpID0+IHtcblx0XHRcdGlmKHJlcXVlc3QucmVzcG9uc2VUbylcblx0XHRcdHtcblx0XHRcdFx0dmFyIHJlc3BvbnNlSGFuZGxlciA9IHNhZmFyaU1lc3NhZ2VSZXNwb25zZUhhbmRsZXJzW3JlcXVlc3QucmVzcG9uc2VUb107XG5cdFx0XHRcdFxuXHRcdFx0XHRpZihyZXNwb25zZUhhbmRsZXIpXG5cdFx0XHRcdHtcblx0XHRcdFx0XHRyZXNwb25zZUhhbmRsZXIocmVxdWVzdC5tZXNzYWdlKTtcblx0XHRcdFx0XHRkZWxldGUgc2FmYXJpTWVzc2FnZVJlc3BvbnNlSGFuZGxlcnNbcmVxdWVzdC5yZXNwb25zZVRvXTtcblx0XHRcdFx0fVxuXHRcdFx0fVxuXHRcdH0pO1xuXHR9XG5cdGVsc2UgaWYoSVNfU0FGQVJJKVxuXHR7XG5cdFx0dmFyIGV2ZW50SGFuZGxlciA9IChldmVudDogYW55KSA9PiB7XG5cdFx0XHRpZihldmVudC5uYW1lID09PSBcImV4dGVuc2lvbk1lc3NhZ2VSZXNwb25zZVwiKVxuXHRcdFx0e1xuXHRcdFx0XHR2YXIgcmVzcG9uc2VIYW5kbGVyID0gc2FmYXJpTWVzc2FnZVJlc3BvbnNlSGFuZGxlcnNbZXZlbnQubWVzc2FnZS5yZXNwb25zZVRvXTtcblx0XHRcdFx0XG5cdFx0XHRcdGlmKHJlc3BvbnNlSGFuZGxlcilcblx0XHRcdFx0e1xuXHRcdFx0XHRcdHJlc3BvbnNlSGFuZGxlcihldmVudC5tZXNzYWdlLm1lc3NhZ2UpO1xuXHRcdFx0XHRcdGRlbGV0ZSBzYWZhcmlNZXNzYWdlUmVzcG9uc2VIYW5kbGVyc1tldmVudC5tZXNzYWdlLnJlc3BvbnNlVG9dO1xuXHRcdFx0XHR9XG5cdFx0XHR9XG5cdFx0fTtcblx0XHRcblx0XHRpZih0eXBlb2Ygc2FmYXJpLmFwcGxpY2F0aW9uID09PSBcIm9iamVjdFwiKVxuXHRcdFx0c2FmYXJpLmFwcGxpY2F0aW9uLmFkZEV2ZW50TGlzdGVuZXIoXCJtZXNzYWdlXCIsIGV2ZW50SGFuZGxlciwgZmFsc2UpO1xuXHRcdGVsc2UgaWYodHlwZW9mIHNhZmFyaS5zZWxmID09PSBcIm9iamVjdFwiKSB7XG5cdFx0XHQoPGFueT5zYWZhcmkuc2VsZikuYWRkRXZlbnRMaXN0ZW5lcihcIm1lc3NhZ2VcIiwgZXZlbnRIYW5kbGVyLCBmYWxzZSk7XG5cdFx0fSBlbHNlIHtcblx0XHRcdGNvbnNvbGUud2FybihcIkNvdWxkIG5vdCBmaW5kIHNhZmFyaS5hcHBsaWNhdGlvbiBvciBzYWZhcmkuc2VsZiB0byBhZGQgbWVzc2FnZSBldmVudCBsaXN0ZW5lci5cIik7XG5cdFx0fVxuXHR9XG59XG5cbi8qICFTdG9yYWdlICovXG5uYW1lc3BhY2UgZXh0ZW5zaW9uLnN0b3JhZ2Uge1xuXHRleHBvcnQgZnVuY3Rpb24gc2V0KG9iamVjdDogeyBbaWQ6IHN0cmluZ10gOiBhbnk7IH0sIGNhbGxiYWNrPzogKCkgPT4gdm9pZCk6IHZvaWQge1xuXHRcdGlmKElTX1NBRkFSSSkge1xuXHRcdFx0Zm9yICh2YXIga2V5IGluIG9iamVjdCkge1xuXHRcdFx0XHR0cnkge1xuXHRcdFx0XHRcdHZhciBqc29uID0gSlNPTi5zdHJpbmdpZnkob2JqZWN0W2tleV0pO1xuXHRcdFx0XHRcdHNhZmFyaS5leHRlbnNpb24uc2VjdXJlU2V0dGluZ3Muc2V0SXRlbShrZXksIGpzb24pO1xuXHRcdFx0XHR9XG5cdFx0XHRcdGNhdGNoKGV4Y2VwdGlvbikge1xuXHRcdFx0XHRcdGNvbnNvbGUud2FybihcIkVycm9yIHdoaWxlIHN0b3JpbmcgaXRlbSB3aXRoIGtleSAlc1wiLCBrZXkpO1xuXHRcdFx0XHR9XG5cdFx0XHR9XG5cdFx0XHRpZihjYWxsYmFjaykge1xuXHRcdFx0XHRjYWxsYmFjaygpO1xuICAgICAgICAgICAgfVxuXHRcdH1cblx0XHRcblx0XHRpZiAoSVNfQ0hST01FKSB7XG5cdFx0XHRjaHJvbWUuc3RvcmFnZS5sb2NhbC5zZXQob2JqZWN0LCBjYWxsYmFjayk7XG5cdFx0fVxuXHR9O1xuXHRcblx0ZXhwb3J0IGZ1bmN0aW9uIGdldChrZXlzOiBBcnJheTxzdHJpbmc+fHN0cmluZywgY2FsbGJhY2s6IChpdGVtczogeyBba2V5OiBzdHJpbmddIDogYW55fSkgPT4gdm9pZCk6IHZvaWQge1xuXHRcdGlmKCFBcnJheS5pc0FycmF5KGtleXMpKSB7XG4gICAgICAgICAgICB2YXIga2V5ID0gKDxzdHJpbmc+a2V5cyk7XG5cdFx0XHRrZXlzID0gW2tleV07XG4gICAgICAgIH1cblx0XHRcblx0XHRpZihJU19TQUZBUkkpIHtcblx0XHRcdHZhciByZXN1bHQ6IHtba2V5OiBzdHJpbmddIDogYW55fSA9IHt9O1xuXHRcdFx0Zm9yICh2YXIgaSA9IDA7IGkgPCBrZXlzLmxlbmd0aDsgaSsrKSB7XG5cdFx0XHRcdHRyeSB7XG5cdFx0XHRcdFx0dmFyIGpzb24gPSBzYWZhcmkuZXh0ZW5zaW9uLnNlY3VyZVNldHRpbmdzLmdldEl0ZW0oa2V5c1tpXSk7XG5cdFx0XHRcdFx0cmVzdWx0W2tleXNbaV1dID0gSlNPTi5wYXJzZShqc29uKTtcblx0XHRcdFx0fVxuXHRcdFx0XHRjYXRjaChleGNlcHRpb24pIHtcblx0XHRcdFx0XHRjb25zb2xlLmxvZyhcIkVycm9yIHdoaWxlIHJldHJldmluZyBzdG9yYWdlIGl0ZW0gd2l0aCBrZXkgJXNcIiwga2V5c1tpXSk7XG5cdFx0XHRcdFx0cmVzdWx0W2tleXNbaV1dID0gbnVsbDtcblx0XHRcdFx0fVxuXHRcdFx0fVxuXHRcdFx0Y2FsbGJhY2socmVzdWx0KTtcblx0XHR9XG5cdFx0XG5cdFx0aWYoSVNfQ0hST01FKSB7XG5cdFx0XHRjaHJvbWUuc3RvcmFnZS5sb2NhbC5nZXQoa2V5cywgKHN0b3JhZ2VJdGVtcykgPT4ge1xuXHRcdFx0XHRpZiAoIXN0b3JhZ2VJdGVtcykge1xuXHRcdFx0XHRcdHN0b3JhZ2VJdGVtcyA9IHt9O1xuXHRcdFx0XHR9XG5cdFx0XHRcdFxuXHRcdFx0XHRmb3IgKHZhciBpID0gMDsgaSA8IGtleXMubGVuZ3RoOyBpKyspIHtcblx0XHRcdFx0XHRpZih0eXBlb2Ygc3RvcmFnZUl0ZW1zW2tleXNbaV1dID09PSBcInVuZGVmaW5lZFwiKVxuXHRcdFx0XHRcdFx0c3RvcmFnZUl0ZW1zW2tleXNbaV1dID0gbnVsbDtcblx0XHRcdFx0fVxuXHRcdFx0XHRcblx0XHRcdFx0Y2FsbGJhY2soc3RvcmFnZUl0ZW1zKTtcblx0XHRcdH0pO1xuXHRcdH1cblx0fTtcblx0XG5cdGV4cG9ydCBmdW5jdGlvbiByZW1vdmUoa2V5czogQXJyYXk8c3RyaW5nPnxzdHJpbmcsIGNhbGxiYWNrPzogKCkgPT4gdm9pZCk6IHZvaWQge1xuXHRcdGlmKCFBcnJheS5pc0FycmF5KGtleXMpKSB7XG4gICAgICAgICAgICB2YXIga2V5ID0gKDxzdHJpbmc+a2V5cyk7XG5cdFx0XHRrZXlzID0gW2tleV07XG4gICAgICAgIH1cblx0XHRcblx0XHRpZihJU19TQUZBUkkpIHtcblx0XHRcdGZvciAodmFyIGkgPSAwOyBpIDwga2V5cy5sZW5ndGg7IGkrKykge1xuXHRcdFx0XHRzYWZhcmkuZXh0ZW5zaW9uLnNlY3VyZVNldHRpbmdzLnJlbW92ZUl0ZW0oa2V5c1tpXSk7XG5cdFx0XHR9XG5cdFx0XHRcblx0XHRcdGlmKGNhbGxiYWNrKSB7XG5cdFx0XHRcdGNhbGxiYWNrKCk7XG4gICAgICAgICAgICB9XG5cdFx0fVxuXHRcdFxuXHRcdGlmKElTX0NIUk9NRSkge1xuXHRcdFx0Y2hyb21lLnN0b3JhZ2UubG9jYWwucmVtb3ZlKDxzdHJpbmdbXT5rZXlzLCBjYWxsYmFjayk7XG5cdFx0fVxuXHR9O1xuXHRcblx0ZXhwb3J0IGZ1bmN0aW9uIGNsZWFyKGNhbGxiYWNrPzogKCkgPT4gdm9pZCk6IHZvaWQge1xuXHRcdGlmKElTX1NBRkFSSSkge1xuXHRcdFx0c2FmYXJpLmV4dGVuc2lvbi5zZWN1cmVTZXR0aW5ncy5jbGVhcigpO1xuXHRcdFx0aWYoY2FsbGJhY2spIHtcblx0XHRcdFx0Y2FsbGJhY2soKTtcbiAgICAgICAgICAgIH1cblx0XHR9XG5cdFx0XG5cdFx0aWYoSVNfQ0hST01FKSB7XG5cdFx0XHRjaHJvbWUuc3RvcmFnZS5sb2NhbC5jbGVhcihjYWxsYmFjayk7XG5cdFx0fVxuXHR9O1xuXHRcblx0ZXhwb3J0IGZ1bmN0aW9uIGFkZEV2ZW50TGlzdGVuZXIoZXZlbnRIYW5kbGVyOiAoc3RvcmFnZUNoYW5nZXM6IHtba2V5OiBzdHJpbmddOiBjaHJvbWUuc3RvcmFnZS5TdG9yYWdlQ2hhbmdlfSkgPT4gdm9pZCk6IHZvaWQge1xuXHRcdGlmKElTX1NBRkFSSSkge1xuXHRcdFx0aWYgKCFzYWZhcmkuZXh0ZW5zaW9uLnNlY3VyZVNldHRpbmdzKVxuXHRcdFx0XHRyZXR1cm47XG5cdFx0XHR2YXIgY2FjaGVkQ2hhbmdlczoge1trZXk6IHN0cmluZ106IGNocm9tZS5zdG9yYWdlLlN0b3JhZ2VDaGFuZ2V9ID0ge307XG5cdFx0XHRcblx0XHRcdHNhZmFyaS5leHRlbnNpb24uc2VjdXJlU2V0dGluZ3MuYWRkRXZlbnRMaXN0ZW5lcihcImNoYW5nZVwiLCAoZXZlbnQ6U2FmYXJpRXh0ZW5zaW9uU2V0dGluZ3NDaGFuZ2VFdmVudCkgPT4ge1xuXHRcdFx0XHRpZihldmVudC5vbGRWYWx1ZSAhPSBldmVudC5uZXdWYWx1ZSkge1xuXHRcdFx0XHRcdFxuXHRcdFx0XHRcdC8vIFdhaXQgZm9yIG90aGVyIGNoYW5nZXMgc28gdGhleSBjYW4gYmUgYnVuZGxlZCBpbiAxIGV2ZW50XG5cdFx0XHRcdFx0aWYoT2JqZWN0LmtleXMoY2FjaGVkQ2hhbmdlcykubGVuZ3RoID09IDApIHtcblx0XHRcdFx0XHRcdHNldFRpbWVvdXQoKCkgPT4ge1xuXHRcdFx0XHRcdFx0XHRldmVudEhhbmRsZXIoY2FjaGVkQ2hhbmdlcyk7XG5cdFx0XHRcdFx0XHRcdGNhY2hlZENoYW5nZXMgPSB7fTtcblx0XHRcdFx0XHRcdH0sIDEwMDApO1xuXHRcdFx0XHRcdH1cblx0XHRcdFx0XHRcblx0XHRcdFx0XHRjYWNoZWRDaGFuZ2VzW2V2ZW50LmtleV0gPSB7IG9sZFZhbHVlOiBldmVudC5vbGRWYWx1ZSwgbmV3VmFsdWU6IGV2ZW50Lm5ld1ZhbHVlIH07XG5cdFx0XHRcdH1cblx0XHRcdH0sIGZhbHNlKTtcblx0XHR9XG5cdFx0XG5cdFx0aWYoSVNfQ0hST01FKSB7XG5cdFx0XHRjaHJvbWUuc3RvcmFnZS5vbkNoYW5nZWQuYWRkTGlzdGVuZXIoKGNoYW5nZXMsIGFyZWFOYW1lKSA9PiB7XG5cdFx0XHRcdGlmKGFyZWFOYW1lID09IFwibG9jYWxcIikge1xuXHRcdFx0XHRcdGV2ZW50SGFuZGxlcihjaGFuZ2VzKTtcblx0XHRcdFx0fVxuXHRcdFx0fSk7XG5cdFx0fVxuXHR9O1xufSJdLCJzb3VyY2VSb290IjoiL3NvdXJjZS8ifQ==
|
train_000.parquet/754
|
{
"file_path": "js/browser-functions.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 98670,
"token_count": 61304
}
|
## 2025 series or later Plus models
### Unverified 3rd party drive limitations and unofficial solutions
| Action | Works | Result | Solution |
|--------|--------------|--------|----------|
| Setup the NAS with Synology drives | yes | | |
| Setup the NAS with 3rd party SSDs | yes | Lots of warnings | Remove warnings with [Synology HDD db](https://github.com/007revad/Synology_HDD_db) |
| Setup the NAS with unverified 3rd party HDDs | **No!** | | See <a href="#setting-up-a-new-2025-or-later-plus-model-with-only-unverified-hdds">Setup with unverifed HDDs</a> |
| Migrate unverified 3rd party drives from other Synology | yes | Lots of warnings | Remove warnings with [Synology HDD db](https://github.com/007revad/Synology_HDD_db) |
| Migrate unverified 3rd party drives and NVMe cache from other Synology | yes | Lots of warnings | Remove warnings with [Synology HDD db](https://github.com/007revad/Synology_HDD_db) |
| Replace migrated 3rd party drives with 3rd party drives | **No!** | | Use [Synology HDD db](https://github.com/007revad/Synology_HDD_db) |
| Gradually replace migrated 3rd party drives with Synology drives | yes | Lots of warnings until all 3rd party drives replaced | Use [Synology HDD db](https://github.com/007revad/Synology_HDD_db) See [Migration and Drive Replacement](https://github.com/007revad/Synology_HDD_db/discussions/468#discussioncomment-13086639) |
| Expand migrated 3rd party storage pool with 3rd party drives | **No!** | | Use [Synology HDD db](https://github.com/007revad/Synology_HDD_db) |
| Use 3rd party drive as hot spare | **No!** | | Use [Synology HDD db](https://github.com/007revad/Synology_HDD_db) |
| Create a cache with 3rd party SSDs | **No!** | | Use [Synology HDD db](https://github.com/007revad/Synology_HDD_db) |
| Delete and create storage pool on migrated 3rd party drives | **No!** | | See <a href="#deleting-and-recreating-your-storage-pool-on-unverified-hdds">Recreating storage pool</a> |
<br>
### Setting up a new 2025 or later plus model with only unverified HDDs
Credit to Alex_of_Chaos on reddit
DSM won't install on a 2025 or later series plus model if you only have unverified HDDs. But we can get around that.
1. Start telnet by entering `http://<NAS-IP>:5000/webman/start_telnet.cgi` into your browser's address bar.
- Replace `<NAS-IP>` with the IP address of the Synology NAS.
2. Open a telnet client (powershell, PuTTY etc) on your computer and connect to the Synology with 'telnet <NAS-IP>`.
- Replace `<NAS-IP>` with the IP address of the Synology NAS.
3. Log into telnet with:
- `root` for the login
- `101-0101` for the password
4. Execute the following command: (using a while loop in case DSM is running in a VM)
```
while true; do touch /tmp/installable_check_pass; sleep 1; done
```
5. Refresh the web installation page and install DSM.
6. Then in the telnet window, or via SSH, execute the following command:
```
/usr/syno/bin/synosetkeyvalue /etc.defaults/synoinfo.conf support_disk_compatibility no
```
7. If Storage Manager is already open close then open it, or refresh the web page. If refreshing the page or restarting Storage Manager is not working, try restarting your Synology NAS.
8. You can now create your storage pool from Storage Manager.
<br>
### Deleting and recreating your storage pool on unverified HDDs
You can't download Synology HDD db to a volume because you've just deleted your storage pool. So you'd first need to download Synology HDD db to a system folder and run it from there.
You can do this via SSH or via a scheduled task.
#### Via SSH
1. Create and cd to /opt
```
sudo mkdir /opt && sudo chmod 775 /opt
```
2. Create /opt
```
sudo mkdir -m775 /opt
```
2. cd to /opt
```
cd /opt || (echo "Failed to CD to /opt"; exit 1)
```
3. Download syno_hdd_db.sh to /opt
```
sudo curl -O "https://raw.githubusercontent.com/007revad/Synology_HDD_db/refs/heads/main/syno_hdd_db.sh"
```
4. Download syno_hdd_vendor_ids.txt to /opt
```
sudo curl -O "https://raw.githubusercontent.com/007revad/Synology_HDD_db/refs/heads/main/syno_hdd_vendor_ids.txt"
```
5. Then set permissions on /opt/syno_hdd_db.sh
```
sudo chmod 750 /opt/syno_hdd_db.sh
```
6. Finally run syno_hdd_db. You don't need any options at this point.
```
sudo -s /opt/syno_hdd_db.sh
```
8. If Storage Manager is already open close then open it, or refresh the web page.
9. You can now create your storage pool from Storage Manager.
#### Via a scheduled task
First setup email notifications (if you haven't already):
1. Go to **Control Panel** > **Notification** > **Email** > click **Setup**.
Then create the scheduled task:
1. Go to **Control Panel** > **Task Scheduler** > click **Create** > **Scheduled Task** > **User-defined script**.
2. Enter a task name.
3. Select **root** as the user (The script needs to run as root).
4. Untick **Enable**.
5. Click **Task Settings**.
6. Tick **Send run details by email** and enter your email address.
7. In the box under **User-defined script** paste the following:
```
mkdir -m775 /opt
cd /opt || (echo "Failed to CD to /opt"; exit 1)
curl -O "https://raw.githubusercontent.com/007revad/Synology_HDD_db/refs/heads/main/syno_hdd_db.sh"
curl -O "https://raw.githubusercontent.com/007revad/Synology_HDD_db/refs/heads/main/syno_hdd_vendor_ids.txt"
chmod 750 /opt/syno_hdd_db.sh
/opt/syno_hdd_db.sh -e
```
8. Click **OK** > **OK** > type your password > **Submit** to save the scheduled task.
9. Now select the scheduld task and click **Run** > **OK**.
10. Check your emails to make sure the scheduled task ran without any error.
11. If Storage Manager is already open close then open it, or refresh the web page.
12. You can now create your storage pool from Storage Manager.
|
train_000.parquet/755
|
{
"file_path": "2025_plus_models.md",
"repo_id": "007revad/Synology_HDD_db",
"size": 5873,
"token_count": 2103
}
|
# Synology HDD db
<a href="https://github.com/007revad/Synology_HDD_db/releases"><img src="https://img.shields.io/github/release/007revad/Synology_HDD_db.svg"></a>

[](https://www.paypal.com/paypalme/007revad)
[](https://github.com/sponsors/007revad)
[](https://user-badge.committers.top/australia/007revad)
<!-- [](https://user-badge.committers.top/australia_public/007revad) -->
<!-- [](https://user-badge.committers.top/australia_private/007revad) -->
<!-- [](https://github.com/007revad/Synology_HDD_db/releases) -->
### Description
Add your SATA or SAS HDDs and SSDs plus SATA and NVMe M.2 drives to your Synology's compatible drive databases, including your Synology M.2 PCIe card and Expansion Unit databases.
The script works in DSM 7, including DSM 7.2, and DSM 6.
It also has a restore option to undo all the changes made by the script.
Also works for 2025 series or later Plus models. See [2025_plus_models.md](https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md)
#### What the script does:
* Gets the Synology NAS model and DSM version (so it knows which db files to edit).
* Gets a list of the HDD, SSD, SAS and NVMe drives installed in your Synology NAS.
* Gets each drive's model number and firmware version.
* Backs up the database files if there is no backup already.
* Checks if each drive is already in the Synology's compatible-drive database.
* Adds any missing drives to the Synology's compatible-drive database.
* Optionally prevents DSM auto updating the drive database.
* Optionally disable DSM's "support_disk_compatibility".
* Optionally disable DSM's "support_memory_compatibility" to prevent <a href=images/ram_warning.png/>non-Synology memory notifications</a>.
* Optionally edits max supported memory to match the amount of memory installed, if installed memory is greater than the current max memory setting.
* DSM only uses the max memory setting when calculating the reserved RAM area size for SSD caches.
* Optionally set write_mostly for your internal HDDs so DSM will normally read from your faster internal SSD(s).
* It can automatically set DSM to read from your internal SSDs.
* Or you can tell the script which internal drive(s) DSM should read from.
* Optionally disables Western Digital Device Analytics (aka WDDA) to prevent DSM showing a [warning for WD drives that are 3 years old](https://arstechnica.com/gadgets/2023/06/clearly-predatory-western-digital-sparks-panic-anger-for-age-shaming-hdds).
* DSM 7.2.1 already has WDDA disabled.
* Enables M2D20, M2D18, M2D17 and E10M20-T1 if present on Synology NAS that don't officially support them.
* Newer NAS models may also need [Synology_enable_M2_card](https://github.com/007revad/Synology_enable_M2_card)
* Checks that M.2 volume support is enabled (on models that have M.2 slots or PCIe slots).
* Enables creating M.2 storage pools and volumes from within Storage Manager in DSM 7.2 and later **(newer models only?)**.
* Including M.2 drives in PCIe adaptor cards like M2D20, M2D18, M2D17 and E10M20-T1 for DSM 7.2 and above **(schedule the script to run boot)**.
* Optionally update IronWolf Health Monitor to v2.5.1 to support recent model IronWolf and IronWolf Pro drives. **(NAS with x86_64 CPUs only)**.
* Also installs IronWolf Health Management on '22 series and newer models that don't have IronWolf Health Management **(untested)**.
* Makes DSM recheck disk compatibility so rebooting is not needed if you don't have M.2 drives (DSM 7 only).
* **If you have M.2 drives you may need to reboot.**
* Reminds you that you may need to reboot the Synology after running the script.
* Checks if there is a newer version of this script and offers to download it for you.
* The new version available messages time out so they don't prevent the script running if it is scheduled to run unattended.
### Download the script
1. Download the latest version _Source code (zip)_ from https://github.com/007revad/Synology_HDD_db/releases
2. Save the download zip file to a folder on the Synology.
- Do ***NOT*** save the script to a M.2 volume. After a DSM or Storage Manager update the M.2 volume won't be available until after the script has run.
3. Unzip the zip file.
Or via SSH as your regular user:
```
cd $HOME
wget https://github.com/007revad/Synology_HDD_db/archive/refs/heads/main.zip -O syno_hdd_db.zip
7z x syno_hdd_db.zip
cd Synology_HDD_db-main && ls -ali
```
### Required files
The following files from the downloaded zip file must be in the same folder:
1. syno_hdd_db.sh
2. syno_hdd_vendor_ids.txt
3. dtc or the bin folder containing dtc (only required if you have a E10M20-T1, M2D20 or M2D18 in a NAS that does not support them).
### When to run the script
You would need to re-run the script after a DSM update. If you have DSM set to auto update the best option is to run the script every time the Synology boots, and the best way to do that is to <a href=how_to_schedule.md/>setup a scheduled task</a> to run the the script at boot-up.
**Note:** After you first run the script you may need to reboot the Synology to see the effect of the changes.
### Options when running the script <a name="options"></a>
There are optional flags you can use when running the script:
```YAML
-s, --showedits Show edits made to <model>_host db and db.new file(s)
-n, --noupdate Prevent DSM updating the compatible drive databases
-r, --ram Disable memory compatibility checking (DSM 7.x only)
and sets max memory to the amount of installed memory
-f, --force Force DSM to not check drive compatibility
Do not use this option unless absolutely needed
-i, --incompatible Change incompatible drives to supported
Do not use this option unless absolutely needed
-w, --wdda Disable WD Device Analytics to prevent DSM showing
a false warning for WD drives that are 3 years old
DSM 7.2.1 and later already has WDDA disabled
-p, --pcie Enable creating volumes on M2 in unknown PCIe adaptor
-e, --email Disable colored text in output scheduler emails
-S, --ssd=DRIVE Enable write_mostly on internal HDDs so DSM primarily
reads from internal SSDs or your specified drives
-S automatically sets internal SSDs as DSM preferred
--ssd=DRIVE requires the fast drive(s) as argument,
or restore as the argument to reset drives to default
--ssd=sata1 or --ssd=sata1,sata2 or --ssd=sda etc
--ssd=restore
--restore Undo all changes made by the script (except -S --ssd)
To restore all changes including write_mostly use
--restore --ssd=restore
--autoupdate=AGE Auto update script (useful when script is scheduled)
AGE is how many days old a release must be before
auto-updating. AGE must be a number: 0 or greater
-I, --ihm Update IronWolf Health Management to 2.5.1 to support
recent model IronWolf and IronWolf Pro drives.
For NAS with x86_64 CPUs only.
Also installs IHM on '22 series and newer models (untested)
-h, --help Show this help message
-v, --version Show the script version
```
**Notes:**
- The -f or --force option is only needed if for some reason your drives still show as unsupported in storage manager.
- Only use this option as last resort.
- Using this option will prevent data deduplication from being available, and prevent firmware updates on Synology brand drives.
- If you have some Synology drives and want to update their firmware run the script **without** --noupdate or -n then do the drive database update from Storage Manager and finally run the script again with your preferred options.
### Scheduling the script in Synology's Task Scheduler
See <a href=how_to_schedule.md/>How to schedule a script in Synology Task Scheduler</a>
### Running the script via SSH
[How to enable SSH and login to DSM via SSH](https://kb.synology.com/en-global/DSM/tutorial/How_to_login_to_DSM_with_root_permission_via_SSH_Telnet)
You run the script in a shell with sudo -s or as root.
```YAML
sudo -s /path-to-script/syno_hdd_db.sh -nr
```
**Note:** Replace /path-to-script/ with the actual path to the script on your Synology.
<p align="left"><img src="images/syno_hdd_db1.png"></p>
If you run the script with the --showedits flag it will show you the changes it made to the Synology's compatible-drive database. Obviously this is only useful if you run the script in a shell.
```YAML
sudo -s /path-to-script/syno_hdd_db.sh -nr --showedits
```
**Note:** Replace /path-to-script/ with the actual path to the script on your Synology.
<p align="left"><img src="images/syno_hdd_db.png"></p>
### Troubleshooting
| Issue | Cause | Solution |
|-------|-------|----------|
| /usr/bin/env: ‘bash\r’: No such file or directory | File has Mac line endings! | [Download latest zip file](https://github.com/007revad/Synology_HDD_db/releases) |
| Cursor sits there doing nothing | File has Windows line endings! | [Download latest zip file](https://github.com/007revad/Synology_HDD_db/releases) |
| syntax error near unexpected token | You downloaded the webpage! | [Download latest zip file](https://github.com/007revad/Synology_HDD_db/releases) |
If you get a "No such file or directory" error check the following:
1. Make sure you downloaded the zip or rar file to a folder on your Synology (not on your computer).
2. Make sure you unpacked the zip or rar file that you downloaded and are trying to run the syno_hdd_db.sh file.
3. If the path to the script contains any spaces you need to enclose the path/scriptname in double quotes:
```YAML
sudo -s "/volume1/my scripts/syno_hdd_db.sh -n"
```
4. Set the script file as executable:
```YAML
sudo chmod +x "/volume1/scripts/syno_hdd_db.sh"
```
### vendor_ids.txt
You only need to edit syno_hdd_vendor_ids.txt if the script warns you about a missing vendor id.
If DSM doesn't know the brand of your NVMe drives they will show up in Storage Manager as Unknown brand, and Unrecognised firmware version.
<p align="left"><img src="images/unknown.png"></p>
In this case the script will show you the vendor ID and advise you to add it to the syno_hdd_vendor_ids.txt file.
<p align="left"><img src="images/vendor_ids.png"></p>
### Ironwolf Health
Ironwolf Health working with the latest version of Ironwolf Health Monitor.
<p align="left"><img src="images/ihm.png"></p>
<br>
### Credits
- The idea for this script came from a comment made by Empyrealist on the Synology subreddit.
- Thanks for the assistance from Alex_of_Chaos on the Synology subreddit.
- Thanks to dwabraxus and aferende for help detecting connected expansion units.
- Thanks to bartoque on the Synology subreddit for the tip on making the script download the latest release from GitHub.
- Thanks to nicolerenee for pointing out the easiest way to enable creating M.2 storage pools and volumes in Storage Manager.
- Thanks to Xeroxxx for the writemostly suggestion and their writeup here: https://www.techspark.de/speed-up-synology-dsm-with-hdd-ssd/
### Donators
Thank you to the PayPal and Buy Me a Coffee donators, GitHub sponsors and hardware donators
| | | | |
|--------------------|--------------------|----------------------|----------------------|
| | | | David Koch |
| EVOX S.R.L.S | Adam | Danny Schoonderwoert | Andrew Ward |
| nickcolea | Bruno | eColombel | LordGardenGnome |
| Dennis Struck | matthewslack | Adrien | Florian Hinhamer |
| Patrick Witon | Sonwoa1 | apbirch67 | Tim |
| Robert | Moritz Bloser | Jason Huang | James Welsh |
| robinhood1995 | Paul Fiorento | Gwystyl | Matt Hann |
| Robert Šega | Marco Brenke | Martinus Humblet | Dirk Köhler |
| KryoFlux GmbH | Frederic Gobry | bizIT Hirschberg | Alexander Ziemann |
| Chris Black Media | Brent Bertram | Carsten Schmidt | Christopher Nichols |
| Roland Thätig | Sebastian Brandt | HFB2022 | jtrouzes |
| stove | Simon Küest | Oliver Weber | Kevin Randino |
| Alex Tripp | Peter Kleissner | Dominic Lee | Daniel Boecker |
| Pat A Phillips | Craikeybaby | Jason DeCorte | Salovaara Antti Sakari |
| Jérôme MORIN | Sven Bauer | Fabien Vallet | Fabio Petgola |
| lonestar6262 | Netchoice | Fabio Cecchinato | Jacek |
| Dugan Audio LLC | MikeSx | Toregev | M. Verhoef |
| Philipp Ehmeier | Adrian Playle | Daniel Meda | Richard Wilhelm |
| Mika255 | Ralf Edelwein | Martin | Alexander Habisreitinger |
| jrn | Marcus Wojtusik | Will (war59312) | Christopher Maglio |
| Flow | Jake Morrison | tsnyder | zhangchi198 |
| leadadri | Gary Plumbridge | frogger1805 | ctrlaltdelete |
| CannotTouch | Kevin Staude | Alistair Hathaway | 8347 |
| BrattishPlaque | Chris Bunnell | dansimau | Bsih |
| Tim Trace | Michel VIEUX-PERNON | R De Jong | Rick |
| Klaus-Dieter Fahlbusch | Amarand Agasi | someone61986 | Alexander Machatschek |
| YeongNuno | Joe | Torben Schreiter | Anthony McMurray |
| Abhishek | Steven Haskell | Malte Müller | Aaron Thomas |
| DENNIS BRAZIL | kunvanimals | Arnaud Costermans | dealchecker |
| Michael Carras | Alan | speedyyyyyy | Jordi Chavarria Fibla |
| Qwerty.xyz | Max | Mark Rohde | Someone |
| vaadmin | Sebastiaan Mulder | Nico Stark | Oleksandr Antonishak |
| Marcel Siemienowski | Dave Smart | dweagle79 | lingyinsam |
| Vojtech Filkorn | Craig Sadler | Po-Chia Chen | Jean-François Fruhauf |
| Sven 'ctraltdelete' | Thomas Horn | Christian | Simon Azzouni |
| Lee Booy | Bünyamin Olgun | Hartmut Heinbach | Alexander Gundermann |
| Björn Schöninger | Nico Scherer | Patrick Hoekstra | Alex Joyce |
| Marcus Ackermann | Lorenz Schmid | enil-kil | Xaver Zöllner |
| Jan Bublitz | Darren O'Connor | Charles Young | J Davis |
| Jürg Baiker | Joshua Gillispie | bizIT Hirschberg | Jordan Crawford |
| Tyler Teal | Voluntary Commerce LLC | Ez Hosting | Alec Wilhere |
| Reece Lyne | Enric Escudé Santana | Yunhao Zhang | Matthias Gerhardt |
| Darryl Harper | Mikescher | Matthias Pfaff | cpharada |
| Neil Tapp | zen1605 | Kleissner Investments | Angel Scandinavia |
| B Collins | Peter jackson | Mir Hekmat | Andrew Tapp |
| Peter Weißflog | Joseph Skup | Dirk Kurfuerst | Gareth Locke |
| Rory de Ruijter | Nathan O'Farrell | Harry Bos | Mark-Philipp Wolfger |
| Filip Kraus | John Pham | Alejandro Bribian Rix | Daniel Hofer |
| Bogdan-Stefan Rotariu | Kevin Boatswain | anschluss-org | Yemeth |
| Patrick Thomas | Manuel Marquez Corral | Evrard Franck | Chad Palmer |
| 侯永政 | CHENHAN-YING | Eric Wells | Massimiliano Pesce |
| JasonEMartin | Gerrit Klussmann | Alain Aube | Robert Kraut |
| Charles-Edouard Poisnel | Oliver Busch | anonymous donors | private sponsors |
|
train_000.parquet/756
|
{
"file_path": "README.md",
"repo_id": "007revad/Synology_HDD_db",
"size": 15725,
"token_count": 5023
}
|
# How to schedule a script in Synology Task Scheduler
To schedule a script to run on your Synology at boot-up or shut-down follow these steps:
**Note:** You can setup a schedule task and leave it disabled, so it only runs when you select the task in the Task Scheduler and click on the Run button.
1. Go to **Control Panel** > **Task Scheduler** > click **Create** > and select **Triggered Task**.
2. Select **User-defined script**.
3. Enter a task name.
4. Select **root** as the user (The script needs to run as root).
5. Select **Boot-up** as the event that triggers the task.
6. Leave **Enable** ticked.
7. Click **Task Settings**.
8. Optionally you can tick **Send run details by email** and **Send run details only when the script terminates abnormally** then enter your email address.
9. In the box under **User-defined script** type the path to the script.
- e.g. If you saved the script to a shared folder on volume1 called "scripts" you'd type:
- **/volume1/scripts/syno_hdd_db.sh -nr --autoupdate=3**
- For information on the options see [Options](README.md#options)
11. Click **OK** to save the settings.
Here's some screenshots showing what needs to be set:
<p align="leftr"><img src="images/schedule1.png"></p>
<p align="leftr"><img src="images/schedule2.png"></p>
<p align="leftr"><img src="images/schedule3-2.png"></p>
|
train_000.parquet/757
|
{
"file_path": "how_to_schedule.md",
"repo_id": "007revad/Synology_HDD_db",
"size": 1355,
"token_count": 431
}
|
var DownloadStation = (function () {
function DownloadStation(options) {
this._sid = null;
this._interval = null;
this._disconnectTimeout = null;
this._isManager = false;
this._version = null;
this._versionString = null;
this._listeners = {};
this.connected = false;
this.tasks = new Array();
this._settings = $.extend({
quickConnectId: null,
protocol: 'http',
url: null,
port: null,
username: null,
password: null,
backgroundUpdateInterval: 20,
updateInBackground: false
}, options);
this.deviceInfo = {
status: "notConnected",
loggedIn: false,
dsmVersion: null,
dsmVersionString: null,
modelName: null,
deviceName: this._settings.quickConnectId != null ? this._settings.quickConnectId : (this._settings.url != null ? this._settings.url : "DiskStation"),
fullUrl: (this._settings.protocol != null && this._settings.url != null && this._settings.port != null)
? this._settings.protocol + this._settings.url + ":" + this._settings.port : null
};
var self = this;
window.addEventListener("online", function () {
self.startBackgroundUpdate();
}, false);
window.addEventListener("offline", function () {
if (self.connected) {
clearTimeout(self._disconnectTimeout);
self._sid = null;
self.deviceInfo.loggedIn = false;
self.tasks = [];
self.connected = false;
self.trigger(["connectionLost", "tasksUpdated"]);
}
self.stopBackgroundUpdate();
}, false);
}
DownloadStation.prototype._setStatus = function (newStatus) {
if (newStatus !== this.deviceInfo.status) {
this.deviceInfo.status = newStatus;
this.trigger("connectionStatusUpdated");
}
};
DownloadStation.prototype._isTorrentOrNzbUrl = function (url, username, password, callback) {
url = $.trim(url);
// Only check for protocol schemes that Chrome extensions can make XHR calls for
if (url.toLowerCase().substr(0, 7) !== "http://" && url.toLowerCase().substr(0, 8) !== "https://" &&
url.toLowerCase().substr(0, 6) !== "ftp://") {
callback(false);
return;
}
if (url.indexOf("http://dl.rutracker.org/forum/dl.php?t=") === 0) {
callback(true);
return;
}
var xhr = $.ajax({
url: url,
username: username,
password: password,
timeout: 5000,
type: "HEAD"
});
xhr.done(function () {
var contentType = xhr.getResponseHeader('Content-Type') || '';
var contentLength = xhr.getResponseHeader('Content-Length');
var urlWithoutParameters = url.removeUrlParameters();
var fileSize = (typeof contentLength === 'number') ? contentLength : 0;
var isTorrentFile = (contentType.toLowerCase().indexOf('application/x-bittorrent') != -1) || urlWithoutParameters.toLowerCase().substr(-8, 8) == '.torrent';
var isNzbFile = (contentType.toLowerCase().indexOf('application/x-nzb') != -1) || urlWithoutParameters.toLowerCase().substr(-4, 4) == '.nzb';
if ((isTorrentFile || isNzbFile) && fileSize < 2480000)
callback(true);
else
callback(false);
})
.fail(function () {
callback(false);
});
};
DownloadStation.prototype._getDsmVersionString = function (number) {
if (isNaN(number))
return "unknown version";
else if (number < 803)
return "2.0";
else if (number < 959)
return "2.1";
else if (number < 1118)
return "2.2";
else if (number < 1285)
return "2.3";
else if (number < 1553)
return "3.0";
else if (number < 1869)
return "3.1";
else if (number < 2166)
return "3.2";
else if (number < 2300)
return "4.0";
else if (number < 3100)
return "4.1";
else if (number < 3700)
return "4.2";
else if (number < 4000)
return "4.3";
else
return "5.0 or later";
};
DownloadStation.prototype._bytesToString = function (bytes) {
var KILOBYTE = 1024;
var MEGABYTE = KILOBYTE * 1024;
var GIGABYTE = MEGABYTE * 1024;
var TERABYTE = GIGABYTE * 1024;
if (isNaN(bytes)) {
return "0";
}
if (bytes < KILOBYTE) {
return Math.round(bytes * 100) / 100 + ' B';
}
else if (bytes < MEGABYTE) {
return Math.round(bytes / KILOBYTE * 100) / 100 + ' KB';
}
else if (bytes < GIGABYTE) {
return Math.round(bytes / MEGABYTE * 100) / 100 + ' MB';
}
else if (bytes < TERABYTE) {
return Math.round(bytes / GIGABYTE * 100) / 100 + ' GB';
}
else {
return Math.round(bytes / TERABYTE * 100) / 100 + ' TB';
}
};
DownloadStation.prototype._stringToBytes = function (size) {
var KILOBYTE = 1024;
var MEGABYTE = KILOBYTE * 1024;
var GIGABYTE = MEGABYTE * 1024;
var TERABYTE = GIGABYTE * 1024;
var unit = size.substr(-2);
var factor = 1;
switch (unit) {
case "TB":
factor = TERABYTE;
break;
case "GB":
factor = GIGABYTE;
break;
case "MB":
factor = MEGABYTE;
break;
case "KB":
factor = KILOBYTE;
break;
}
size = size.replace(/[A-Za-z\s]+/g, '');
var bytes = parseFloat(size) * factor;
if (isNaN(bytes))
return 0;
return Math.round(bytes);
};
DownloadStation.prototype.addEventListener = function (type, listener) {
if (Array.isArray(type)) {
for (var i = 0; i < type.length; i++) {
this.addEventListener(type[i], listener);
}
return;
}
var eventType = type;
if (typeof this._listeners[eventType] === 'undefined')
this._listeners[eventType] = [];
this._listeners[eventType].push(listener);
};
DownloadStation.prototype.removeEventListener = function (type, listener) {
if (Array.isArray(this._listeners[type])) {
var listeners = this._listeners[type];
for (var i = 0, len = listeners.length; i < len; i++) {
if (listeners[i] === listener) {
listeners.splice(i, 1);
break;
}
}
}
};
DownloadStation.prototype.trigger = function (event) {
if (Array.isArray(event)) {
for (var i = 0; i < event.length; i++) {
this.trigger(event[i]);
}
return;
}
var eventObj = { type: event };
if (!eventObj.target)
eventObj.target = this;
if (!eventObj.type)
throw new Error("Event object missing 'type' property.");
if (Array.isArray(this._listeners[eventObj.type])) {
var listeners = this._listeners[eventObj.type];
for (var i = 0, len = listeners.length; i < len; i++) {
listeners[i].call(this, eventObj);
}
}
};
DownloadStation.prototype.startBackgroundUpdate = function (seconds) {
var _this = this;
var self = this;
// Clear old interval
this.stopBackgroundUpdate();
var newInterval = null;
if (typeof seconds === "number")
newInterval = seconds;
else if (this._settings.updateInBackground)
newInterval = this._settings.backgroundUpdateInterval;
if (newInterval !== null) {
var loading = true;
this._interval = setInterval(function () {
if (!loading) {
_this.loadTasks(function (success, data) {
loading = false;
});
}
}, newInterval * 1000);
this.loadTasks(function (success, data) {
loading = false;
});
}
};
DownloadStation.prototype.stopBackgroundUpdate = function () {
clearInterval(this._interval);
};
DownloadStation.prototype.setBackgroundUpdate = function (updateInBackground, newIntervalSeconds) {
this._settings.backgroundUpdateInterval = newIntervalSeconds;
this._settings.updateInBackground = updateInBackground;
this.stopBackgroundUpdate();
this.startBackgroundUpdate();
};
DownloadStation.prototype.createTask = function (url, username, password, unzipPassword, destinationFolder, callback) {
var _this = this;
var urls = this.extractURLs(url);
var urlTasks = new Array();
var fileTasks = new Array();
var typeCheckResultCount = 0;
$.each(urls, function (i, url) {
_this._isTorrentOrNzbUrl(url, username, password, function (result) {
if (result)
fileTasks.push(url);
else
urlTasks.push(url);
typeCheckResultCount++;
if (typeCheckResultCount < urls.length)
return;
var fileTasksFinished = (fileTasks.length == 0);
var urlTasksFinished = (urlTasks.length == 0);
var overallResult = true;
var createResultHandler = function (success, data) {
if (success == false)
overallResult = false;
if (fileTasksFinished && urlTasksFinished && typeof callback === "function") {
callback(overallResult, data);
}
};
if (urlTasks.length > 0) {
_this.createTaskFromUrl(urlTasks, username, password, unzipPassword, destinationFolder, function (success, data) {
urlTasksFinished = true;
createResultHandler(success, data);
});
}
if (fileTasks.length > 0) {
var fileTasksResult = true;
var fileTasksCounter = 0;
var fileTaskAddCallback = function (success, data) {
fileTasksCounter++;
if (success == false)
fileTasksResult = false;
if (fileTasksCounter == fileTasks.length) {
fileTasksFinished = true;
createResultHandler(fileTasksResult, data);
}
};
$.each(fileTasks, function (j, fileTask) {
_this._downloadFile(fileTask, username, password, function (success, file) {
if (success === true)
_this.createTaskFromFile(file, unzipPassword, destinationFolder, fileTaskAddCallback);
else
_this.createTaskFromUrl(url, username, password, unzipPassword, destinationFolder, fileTaskAddCallback);
});
});
}
});
});
};
DownloadStation.prototype._downloadFile = function (url, username, password, callback) {
var _this = this;
try {
var xhr = new XMLHttpRequest();
xhr.open('GET', url, true, username, password);
xhr.responseType = 'arraybuffer';
xhr.onload = function () {
if (xhr.status >= 200 && xhr.status < 300) {
var filename = _this._getFilenameFromContentDisposition(xhr.getResponseHeader("Content-Disposition"));
if (!filename)
filename = url.removeUrlParameters().substring(url.lastIndexOf('/') + 1);
var contentType = xhr.getResponseHeader('Content-Type') || "application/octet-stream";
var file = new DSFile(filename, contentType, xhr.response, url);
if (file.isValidFile()) {
callback(true, file);
}
else {
callback(false);
}
}
else
callback(false);
};
xhr.onerror = function () {
callback(false);
};
xhr.send();
}
catch (exc) {
callback(false);
}
};
DownloadStation.prototype._getFilenameFromContentDisposition = function (contentDisposition) {
if (!contentDisposition || contentDisposition.indexOf("filename=") === -1)
return null;
var filename = contentDisposition.split('filename=')[1];
if (filename.indexOf('"') !== -1) {
filename = filename.split('"')[1];
}
else {
filename = filename.split(" ")[0];
}
return filename;
};
DownloadStation.prototype.extractURLs = function (text) {
var patt = new RegExp("(https?|magnet|thunder|flashget|qqdl|s?ftps?|ed2k)(://|:?)\\S+", "ig");
var urls = new Array();
do {
var result = patt.exec(text);
if (result != null) {
var url = result[0];
if (url.charAt(url.length - 1) === ",")
url = url.substring(0, url.length - 1);
urls.push(url);
}
} while (result != null);
if (urls.length > 0)
return urls;
else
return [text];
};
DownloadStation.prototype.getFinishedTasks = function () {
var finishedTasks = new Array();
for (var i = 0; i < this.tasks.length; i++) {
var task = this.tasks[i];
if (task.status == "finished" || (task.sizeDownloaded >= task.size && task.status == "seeding"))
finishedTasks.push(task);
}
return finishedTasks;
};
DownloadStation.prototype.destroy = function (callback) {
var _this = this;
this.logout(function () {
_this.connected = false;
_this.trigger("destroy");
if (callback) {
callback();
}
});
};
return DownloadStation;
}());
var DSFile = (function () {
function DSFile(filename, mimeType, data, url) {
this.blob = null;
this.filename = $.trim(filename);
this.mimeType = mimeType;
this.url = url;
this.data = data;
// Fix filename
if (this.mimeType == "application/x-bittorrent" && this.filename.substr(-8, 8).toLowerCase() != ".torrent")
this.filename = "download.torrent";
else if (this.mimeType == "application/x-nzb" && this.filename.substr(-4, 4).toLowerCase() != ".nzb")
this.filename = "download.nzb";
// Fix mime-type
if (this.filename.substr(-8, 8).toLowerCase() == '.torrent')
this.mimeType = "application/x-bittorrent";
else if (this.filename.substr(-4, 4).toLowerCase() == ".nzb")
this.mimeType = "application/x-nzb";
}
DSFile.prototype.isValidFile = function () {
if (this.mimeType != "application/x-nzb" && this.mimeType != "application/x-bittorrent"
&& this.filename.substr(-8, 8).toLowerCase() != '.torrent'
&& this.filename.substr(-4, 4).toLowerCase() != ".nzb") {
return false;
}
else if (this.getBlob() == null) {
return false;
}
return true;
};
DSFile.prototype.getBlob = function () {
if (this.blob instanceof Blob === false)
this.createBlob();
return this.blob;
};
DSFile.prototype.createBlob = function () {
try {
this.blob = new Blob([this.data], { type: this.mimeType });
}
catch (e) {
console.log("Blob constructor not supported, falling back to BlobBuilder");
// Old browsers
var w = window;
var blobBuilder = w.BlobBuilder ||
w.WebKitBlobBuilder ||
w.MozBlobBuilder ||
w.MSBlobBuilder;
if (w.BlobBuilder) {
try {
var bb = new blobBuilder();
bb.append(this.data);
this.blob = bb.getBlob(this.mimeType);
}
catch (bbException) {
console.warn("Error in BlobBuilder");
console.log(bbException);
}
}
else {
console.log("BlobBuilder not supported");
}
}
};
return DSFile;
}());
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImpzL2Rvd25sb2Fkc3RhdGlvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUE4Q0E7SUFvQkkseUJBQVksT0FBaUM7UUFsQm5DLFNBQUksR0FBVyxJQUFJLENBQUM7UUFDdEIsY0FBUyxHQUFXLElBQUksQ0FBQztRQUN2Qix1QkFBa0IsR0FBVyxJQUFJLENBQUM7UUFDbEMsZUFBVSxHQUFZLEtBQUssQ0FBQztRQUMvQixhQUFRLEdBQVcsSUFBSSxDQUFDO1FBQ3hCLG1CQUFjLEdBQVcsSUFBSSxDQUFDO1FBQzdCLGVBQVUsR0FBUSxFQUFFLENBQUM7UUFFdEIsY0FBUyxHQUFZLEtBQUssQ0FBQztRQUMzQixVQUFLLEdBQWdDLElBQUksS0FBSyxFQUF3QixDQUFDO1FBVTlFLElBQUksQ0FBQyxTQUFTLEdBQUcsQ0FBQyxDQUFDLE1BQU0sQ0FBQztZQUN0QixjQUFjLEVBQUUsSUFBSTtZQUNwQixRQUFRLEVBQUcsTUFBTTtZQUNqQixHQUFHLEVBQUssSUFBSTtZQUNaLElBQUksRUFBSSxJQUFJO1lBQ1osUUFBUSxFQUFHLElBQUk7WUFDZixRQUFRLEVBQUcsSUFBSTtZQUNmLHdCQUF3QixFQUFHLEVBQUU7WUFDN0Isa0JBQWtCLEVBQUcsS0FBSztTQUM3QixFQUFFLE9BQU8sQ0FBQyxDQUFDO1FBRVosSUFBSSxDQUFDLFVBQVUsR0FBRztZQUNkLE1BQU0sRUFBSyxjQUFjO1lBQ3pCLFFBQVEsRUFBSSxLQUFLO1lBQ2pCLFVBQVUsRUFBSSxJQUFJO1lBQ2xCLGdCQUFnQixFQUFFLElBQUk7WUFDdEIsU0FBUyxFQUFJLElBQUk7WUFDakIsVUFBVSxFQUFJLElBQUksQ0FBQyxTQUFTLENBQUMsY0FBYyxJQUFJLElBQUksR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLGNBQWMsR0FBRyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsR0FBRyxJQUFJLElBQUksR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLEdBQUcsR0FBRyxhQUFhLENBQUM7WUFDdkosT0FBTyxF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YWRzdGF0aW9uLmpzIiwic291cmNlc0NvbnRlbnQiOlsiaW50ZXJmYWNlIElEb3dubG9hZFN0YXRpb25TZXR0aW5ncyB7XG4gICAgcXVpY2tDb25uZWN0SWQ6IHN0cmluZztcbiAgICBwcm90b2NvbDogc3RyaW5nO1xuICAgIHVybDogc3RyaW5nO1xuICAgIHBvcnQ6IG51bWJlcjtcbiAgICB1c2VybmFtZTogc3RyaW5nO1xuICAgIHBhc3N3b3JkOiBzdHJpbmc7XG4gICAgYmFja2dyb3VuZFVwZGF0ZUludGVydmFsOiBudW1iZXI7XG4gICAgdXBkYXRlSW5CYWNrZ3JvdW5kOiBib29sZWFuO1xufVxuXG5pbnRlcmZhY2UgSURvd25sb2FkU3RhdGlvblRhc2sge1xuICAgIGlkOiBzdHJpbmc7XG4gICAgdHlwZTogc3RyaW5nO1xuICAgIHRpdGxlOiBzdHJpbmc7XG4gICAgc3RhdHVzOiBzdHJpbmc7XG4gICAgZXJyb3JEZXRhaWw6IHN0cmluZztcbiAgICBzaXplOiBudW1iZXI7XG4gICAgc2l6ZVN0cmluZzogc3RyaW5nO1xuICAgIGRvd25sb2FkUHJvZ3Jlc3NTdHJpbmc6IHN0cmluZztcbiAgICB1bnppcFByb2dyZXNzOiBudW1iZXI7XG4gICAgdW56aXBQcm9ncmVzc1N0cmluZzogc3RyaW5nO1xuICAgIHNpemVEb3dubG9hZGVkOiBudW1iZXI7XG4gICAgc2l6ZURvd25sb2FkZWRTdHJpbmc6IHN0cmluZztcbiAgICBzaXplVXBsb2FkZWQ6IG51bWJlcjtcbiAgICBzaXplVXBsb2FkZWRTdHJpbmc6IHN0cmluZztcbiAgICBzcGVlZERvd25sb2FkOiBudW1iZXI7XG4gICAgc3BlZWREb3dubG9hZFN0cmluZzogc3RyaW5nO1xuICAgIHNwZWVkVXBsb2FkOiBudW1iZXI7XG4gICAgc3BlZWRVcGxvYWRTdHJpbmc6IHN0cmluZztcbiAgICB1cGxvYWRSYXRpbz86IG51bWJlcjtcbiAgICB1cGxvYWRSYXRpb1N0cmluZz86IHN0cmluZztcbiAgICBldGE/OiBudW1iZXI7XG4gICAgZXRhU3RyaW5nPzogc3RyaW5nO1xufVxuXG5pbnRlcmZhY2UgSVN5bm9sb2d5RGV2aWNlSW5mbyB7XG4gICAgc3RhdHVzOiBzdHJpbmc7XG4gICAgbG9nZ2VkSW46IGJvb2xlYW47XG4gICAgZHNtVmVyc2lvbjogbnVtYmVyO1xuICAgIGRzbVZlcnNpb25TdHJpbmc6IHN0cmluZztcbiAgICBtb2RlbE5hbWU6IHN0cmluZztcbiAgICBkZXZpY2VOYW1lOiBzdHJpbmc7XG4gICAgZnVsbFVybDogc3RyaW5nO1xufVxuXG5hYnN0cmFjdCBjbGFzcyBEb3dubG9hZFN0YXRpb24ge1xuICAgIHB1YmxpYyBfc2V0dGluZ3M6IElEb3dubG9hZFN0YXRpb25TZXR0aW5ncztcbiAgICBwcm90ZWN0ZWQgX3NpZDogc3RyaW5nID0gbnVsbDtcbiAgICBwcml2YXRlIF9pbnRlcnZhbDogbnVtYmVyID0gbnVsbDtcbiAgICBwcm90ZWN0ZWQgX2Rpc2Nvbm5lY3RUaW1lb3V0OiBudW1iZXIgPSBudWxsO1xuICAgIHByb3RlY3RlZCBfaXNNYW5hZ2VyOiBib29sZWFuID0gZmFsc2U7XG4gICAgcHVibGljIF92ZXJzaW9uOiBudW1iZXIgPSBudWxsO1xuICAgIHB1YmxpYyBfdmVyc2lvblN0cmluZzogc3RyaW5nID0gbnVsbDtcbiAgICBwcml2YXRlIF9saXN0ZW5lcnM6IGFueSA9IHt9O1xuICAgIFxuICAgIHB1YmxpYyBjb25uZWN0ZWQ6IGJvb2xlYW4gPSBmYWxzZTtcbiAgICBwdWJsaWMgdGFza3M6IEFycmF5PElEb3dubG9hZFN0YXRpb25UYXNrPiA9IG5ldyBBcnJheTxJRG93bmxvYWRTdGF0aW9uVGFzaz4oKTtcbiAgICBwdWJsaWMgZGV2aWNlSW5mbzogSVN5bm9sb2d5RGV2aWNlSW5mbztcblxuICAgIHByb3RlY3RlZCBhYnN0cmFjdCBsb2dvdXQoY2FsbGJhY2s6IChzdWNjZXNzOiBib29sZWFuLCBkYXRhOiBhbnkpID0+IHZvaWQpOiB2b2lkO1xuXG4gICAgcHJvdGVjdGVkIGFic3RyYWN0IGxvYWRUYXNrcyhjYWxsYmFjazogKHN1Y2Nlc3M6IGJvb2xlYW4sIGRhdGE6IGFueSkgPT4gdm9pZCk6IHZvaWQ7XG4gICAgcHJvdGVjdGVkIGFic3RyYWN0IGNyZWF0ZVRhc2tGcm9tVXJsKHVybFRhc2tzOiBzdHJpbmd8QXJyYXk8c3RyaW5nPiwgdXNlcm5hbWU6IHN0cmluZywgcGFzc3dvcmQ6IHN0cmluZywgdW56aXBQYXNzd29yZDogc3RyaW5nLCBkZXN0aW5hdGlvbkZvbGRlcjogc3RyaW5nLCBjYWxsYmFjazogKHN1Y2Nlc3M6IGJvb2xlYW4sIGRhdGE6IGFueSkgPT4gdm9pZCk6IHZvaWQ7XG4gICAgcHJvdGVjdGVkIGFic3RyYWN0IGNyZWF0ZVRhc2tGcm9tRmlsZShmaWxlOiBEU0ZpbGUsIHVuemlwUGFzc3dvcmQ6IHN0cmluZywgZGVzdGluYXRpb25Gb2xkZXI6IHN0cmluZywgZmlsZVRhc2tBZGRDYWxsYmFjazogKHN1Y2Nlc3M6IGJvb2xlYW4sIGRhdGE6IGFueSkgPT4gdm9pZCk6IHZvaWQ7XG4gICAgXG4gICAgY29uc3RydWN0b3Iob3B0aW9uczogSURvd25sb2FkU3RhdGlvblNldHRpbmdzKXtcbiAgICB0aGlzLl9zZXR0aW5ncyA9ICQuZXh0ZW5kKHtcbiAgICAgICAgcXVpY2tDb25uZWN0SWQ6IG51bGwsXG4gICAgICAgIHByb3RvY29sXHQ6ICdodHRwJyxcbiAgICAgICAgdXJsXHRcdFx0OiBudWxsLFxuICAgICAgICBwb3J0XHRcdDogbnVsbCxcbiAgICAgICAgdXNlcm5hbWVcdDogbnVsbCxcbiAgICAgICAgcGFzc3dvcmRcdDogbnVsbCxcbiAgICAgICAgYmFja2dyb3VuZFVwZGF0ZUludGVydmFsIDogMjAsXG4gICAgICAgIHVwZGF0ZUluQmFja2dyb3VuZCA6IGZhbHNlXG4gICAgfSwgb3B0aW9ucyk7XG4gICAgXG4gICAgdGhpcy5kZXZpY2VJbmZvID0ge1xuICAgICAgICBzdGF0dXNcdFx0XHQ6IFwibm90Q29ubmVjdGVkXCIsXG4gICAgICAgIGxvZ2dlZEluXHRcdDogZmFsc2UsXG4gICAgICAgIGRzbVZlcnNpb25cdFx0OiBudWxsLFxuICAgICAgICBkc21WZXJzaW9uU3RyaW5nOiBudWxsLFxuICAgICAgICBtb2RlbE5hbWVcdFx0OiBudWxsLFxuICAgICAgICBkZXZpY2VOYW1lXHRcdDogdGhpcy5fc2V0dGluZ3MucXVpY2tDb25uZWN0SWQgIT0gbnVsbCA/IHRoaXMuX3NldHRpbmdzLnF1aWNrQ29ubmVjdElkIDogKHRoaXMuX3NldHRpbmdzLnVybCAhPSBudWxsID8gdGhpcy5fc2V0dGluZ3MudXJsIDogXCJEaXNrU3RhdGlvblwiKSxcbiAgICAgICAgZnVsbFVybFx0XHRcdDogKHRoaXMuX3NldHRpbmdzLnByb3RvY29sICE9IG51bGwgJiYgdGhpcy5fc2V0dGluZ3MudXJsICE9IG51bGwgJiYgdGhpcy5fc2V0dGluZ3MucG9ydCAhPSBudWxsKVxuICAgICAgICAgICAgICAgICAgICAgICAgPyB0aGlzLl9zZXR0aW5ncy5wcm90b2NvbCArIHRoaXMuX3NldHRpbmdzLnVybCArIFwiOlwiICsgdGhpcy5fc2V0dGluZ3MucG9ydCA6IG51bGxcbiAgICB9O1xuICAgIFxuICAgIHZhciBzZWxmID0gdGhpcztcbiAgICB3aW5kb3cuYWRkRXZlbnRMaXN0ZW5lcihcIm9ubGluZVwiLCBmdW5jdGlvbigpIHtcbiAgICAgICAgc2VsZi5zdGFydEJhY2tncm91bmRVcGRhdGUoKTtcbiAgICB9LCBmYWxzZSk7XG4gICAgXG4gICAgd2luZG93LmFkZEV2ZW50TGlzdGVuZXIoXCJvZmZsaW5lXCIsIGZ1bmN0aW9uKCkge1xuICAgICAgICBpZihzZWxmLmNvbm5lY3RlZCkge1xuICAgICAgICAgICAgY2xlYXJUaW1lb3V0KHNlbGYuX2Rpc2Nvbm5lY3RUaW1lb3V0KTtcbiAgICAgICAgICAgIFxuICAgICAgICAgICAgc2VsZi5fc2lkID0gbnVsbDtcbiAgICAgICAgICAgIHNlbGYuZGV2aWNlSW5mby5sb2dnZWRJbiA9IGZhbHNlO1xuICAgICAgICAgICAgc2VsZi50YXNrcyA9IFtdO1xuICAgICAgICAgICAgc2VsZi5jb25uZWN0ZWQgPSBmYWxzZTtcbiAgICAgICAgICAgIHNlbGYudHJpZ2dlcihbXCJjb25uZWN0aW9uTG9zdFwiLCBcInRhc2tzVXBkYXRlZFwiXSk7XG4gICAgICAgIH1cbiAgICAgICAgc2VsZi5zdG9wQmFja2dyb3VuZFVwZGF0ZSgpO1xuICAgIH0sIGZhbHNlKTtcbiAgfVxuXG4gIHByb3RlY3RlZCBfc2V0U3RhdHVzKG5ld1N0YXR1cz86IHN0cmluZykge1xuICAgICAgaWYgKG5ld1N0YXR1cyAhPT0gdGhpcy5kZXZpY2VJbmZvLnN0YXR1cykge1xuICAgICAgICAgIHRoaXMuZGV2aWNlSW5mby5zdGF0dXMgPSBuZXdTdGF0dXM7XG4gICAgICAgICAgdGhpcy50cmlnZ2VyKFwiY29ubmVjdGlvblN0YXR1c1VwZGF0ZWRcIik7XG4gICAgICB9XG4gIH1cblxuICAgIHByaXZhdGUgX2lzVG9ycmVudE9yTnpiVXJsKHVybDogc3RyaW5nLCB1c2VybmFtZTogc3RyaW5nLCBwYXNzd29yZDogc3RyaW5nLCBjYWxsYmFjazogKHJlc3VsdDogYm9vbGVhbikgPT4gdm9pZCkge1xuICAgICAgICB1cmwgPSAkLnRyaW0odXJsKTtcbiAgICAgICAgXG4gICAgICAgIC8vIE9ubHkgY2hlY2sgZm9yIHByb3RvY29sIHNjaGVtZXMgdGhhdCBDaHJvbWUgZXh0ZW5zaW9ucyBjYW4gbWFrZSBYSFIgY2FsbHMgZm9yXG4gICAgICAgIGlmICh1cmwudG9Mb3dlckNhc2UoKS5zdWJzdHIoMCwgNykgIT09IFwiaHR0cDovL1wiICYmIHVybC50b0xvd2VyQ2FzZSgpLnN1YnN0cigwLCA4KSAhPT0gXCJodHRwczovL1wiICYmXG4gICAgICAgICAgICB1cmwudG9Mb3dlckNhc2UoKS5zdWJzdHIoMCwgNikgIT09IFwiZnRwOi8vXCIpIHtcbiAgICAgICAgICAgIGNhbGxiYWNrKGZhbHNlKTtcbiAgICAgICAgICAgIHJldHVybjtcbiAgICAgICAgfVxuICAgICAgICBcbiAgICAgICAgaWYgKHVybC5pbmRleE9mKFwiaHR0cDovL2RsLnJ1dHJhY2tlci5vcmcvZm9ydW0vZGwucGhwP3Q9XCIpID09PSAwKSB7XG4gICAgICAgICAgICBjYWxsYmFjayh0cnVlKTtcbiAgICAgICAgICAgIHJldHVybjtcbiAgICAgICAgfVxuICAgICAgICBcbiAgICBcbiAgICAgICAgdmFyIHhociA9ICQuYWpheCh7XG4gICAgICAgICAgICB1cmw6IHVybCxcbiAgICAgICAgICAgIHVzZXJuYW1lOiB1c2VybmFtZSxcbiAgICAgICAgICAgIHBhc3N3b3JkOiBwYXNzd29yZCxcbiAgICAgICAgICAgIHRpbWVvdXQ6IDUwMDAsXG4gICAgICAgICAgICB0eXBlOiBcIkhFQURcIlxuICAgICAgICB9KTtcbiAgICAgICAgeGhyLmRvbmUoZnVuY3Rpb24gKCkge1xuICAgICAgICAgICAgdmFyIGNvbnRlbnRUeXBlID0geGhyLmdldFJlc3BvbnNlSGVhZGVyKCdDb250ZW50LVR5cGUnKSB8fCAnJztcbiAgICAgICAgICAgIHZhciBjb250ZW50TGVuZ3RoID0geGhyLmdldFJlc3BvbnNlSGVhZGVyKCdDb250ZW50LUxlbmd0aCcpO1xuICAgICAgICAgICAgdmFyIHVybFdpdGhvdXRQYXJhbWV0ZXJzOiBzdHJpbmcgPSAoPGFueT51cmwpLnJlbW92ZVVybFBhcmFtZXRlcnMoKTtcbiAgICBcbiAgICAgICAgICAgIHZhciBmaWxlU2l6ZSA9ICh0eXBlb2YgY29udGVudExlbmd0aCA9PT0gJ251bWJlcicpID8gY29udGVudExlbmd0aCA6IDA7XG4gICAgICAgICAgICB2YXIgaXNUb3JyZW50RmlsZSA9IChjb250ZW50VHlwZS50b0xvd2VyQ2FzZSgpLmluZGV4T2YoJ2FwcGxpY2F0aW9uL3gtYml0dG9ycmVudCcpICE9IC0xKSB8fCB1cmxXaXRob3V0UGFyYW1ldGVycy50b0xvd2VyQ2FzZSgpLnN1YnN0cigtOCwgOCkgPT0gJy50b3JyZW50JztcbiAgICAgICAgICAgIHZhciBpc056YkZpbGUgPSAoY29udGVudFR5cGUudG9Mb3dlckNhc2UoKS5pbmRleE9mKCdhcHBsaWNhdGlvbi94LW56YicpICE9IC0xKSB8fCB1cmxXaXRob3V0UGFyYW1ldGVycy50b0xvd2VyQ2FzZSgpLnN1YnN0cigtNCwgNCkgPT0gJy5uemInO1xuICAgIFxuICAgICAgICAgICAgaWYgKChpc1RvcnJlbnRGaWxlIHx8IGlzTnpiRmlsZSkgJiYgZmlsZVNpemUgPCAyNDgwMDAwKVxuICAgICAgICAgICAgICAgIGNhbGxiYWNrKHRydWUpO1xuICAgICAgICAgICAgZWxzZVxuICAgICAgICAgICAgICAgIGNhbGxiYWNrKGZhbHNlKTtcbiAgICAgICAgfSlcbiAgICAgICAgLmZhaWwoZnVuY3Rpb24gKCkge1xuICAgICAgICAgICAgY2FsbGJhY2soZmFsc2UpO1xuICAgICAgICB9KTtcbiAgICB9XG4gICAgXG4gICAgcHJvdGVjdGVkIF9nZXREc21WZXJzaW9uU3RyaW5nKG51bWJlcjogbnVtYmVyKSB7XG4gICAgICAgIGlmIChpc05hTihudW1iZXIpKVxuICAgICAgICAgICAgcmV0dXJuIFwidW5rbm93biB2ZXJzaW9uXCI7XG4gICAgICAgIGVsc2UgaWYgKG51bWJlciA8IDgwMylcbiAgICAgICAgICAgIHJldHVybiBcIjIuMFwiO1xuICAgICAgICBlbHNlIGlmIChudW1iZXIgPCA5NTkpXG4gICAgICAgICAgICByZXR1cm4gXCIyLjFcIjtcbiAgICAgICAgZWxzZSBpZiAobnVtYmVyIDwgMTExOClcbiAgICAgICAgICAgIHJldHVybiBcIjIuMlwiO1xuICAgICAgICBlbHNlIGlmIChudW1iZXIgPCAxMjg1KVxuICAgICAgICAgICAgcmV0dXJuIFwiMi4zXCI7XG4gICAgICAgIGVsc2UgaWYgKG51bWJlciA8IDE1NTMpXG4gICAgICAgICAgICByZXR1cm4gXCIzLjBcIjtcbiAgICAgICAgZWxzZSBpZiAobnVtYmVyIDwgMTg2OSlcbiAgICAgICAgICAgIHJldHVybiBcIjMuMVwiO1xuICAgICAgICBlbHNlIGlmIChudW1iZXIgPCAyMTY2KVxuICAgICAgICAgICAgcmV0dXJuIFwiMy4yXCI7XG4gICAgICAgIGVsc2UgaWYgKG51bWJlciA8IDIzMDApXG4gICAgICAgICAgICByZXR1cm4gXCI0LjBcIjtcbiAgICAgICAgZWxzZSBpZiAobnVtYmVyIDwgMzEwMClcbiAgICAgICAgICAgIHJldHVybiBcIjQuMVwiO1xuICAgICAgICBlbHNlIGlmIChudW1iZXIgPCAzNzAwKVxuICAgICAgICAgICAgcmV0dXJuIFwiNC4yXCI7XG4gICAgICAgIGVsc2UgaWYgKG51bWJlciA8IDQwMDApXG4gICAgICAgICAgICByZXR1cm4gXCI0LjNcIjtcbiAgICAgICAgZWxzZVxuICAgICAgICAgICAgcmV0dXJuIFwiNS4wIG9yIGxhdGVyXCI7XG4gICAgfVxuICAgIFxuICAgIHByb3RlY3RlZCBfYnl0ZXNUb1N0cmluZyhieXRlczogbnVtYmVyKSB7XG4gICAgICAgIHZhciBLSUxPQllURSA9IDEwMjQ7XG4gICAgICAgIHZhciBNRUdBQllURSA9IEtJTE9CWVRFICogMTAyNDtcbiAgICAgICAgdmFyIEdJR0FCWVRFID0gTUVHQUJZVEUgKiAxMDI0O1xuICAgICAgICB2YXIgVEVSQUJZVEUgPSBHSUdBQllURSAqIDEwMjQ7XG4gICAgXG4gICAgICAgIGlmIChpc05hTihieXRlcykpIHtcbiAgICAgICAgICAgIHJldHVybiBcIjBcIjtcbiAgICAgICAgfSBpZiAoYnl0ZXMgPCBLSUxPQllURSkge1xuICAgICAgICAgICAgcmV0dXJuIE1hdGgucm91bmQoYnl0ZXMgKiAxMDApIC8gMTAwICsgJyBCJztcbiAgICAgICAgfSBlbHNlIGlmIChieXRlcyA8IE1FR0FCWVRFKSB7XG4gICAgICAgICAgICByZXR1cm4gTWF0aC5yb3VuZChieXRlcyAvIEtJTE9CWVRFICogMTAwKSAvIDEwMCArICcgS0InO1xuICAgICAgICB9IGVsc2UgaWYgKGJ5dGVzIDwgR0lHQUJZVEUpIHtcbiAgICAgICAgICAgIHJldHVybiBNYXRoLnJvdW5kKGJ5dGVzIC8gTUVHQUJZVEUgKiAxMDApIC8gMTAwICsgJyBNQic7XG4gICAgICAgIH0gZWxzZSBpZiAoYnl0ZXMgPCBURVJBQllURSkge1xuICAgICAgICAgICAgcmV0dXJuIE1hdGgucm91bmQoYnl0ZXMgLyBHSUdBQllURSAqIDEwMCkgLyAxMDAgKyAnIEdCJztcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIHJldHVybiBNYXRoLnJvdW5kKGJ5dGVzIC8gVEVSQUJZVEUgKiAxMDApIC8gMTAwICsgJyBUQic7XG4gICAgICAgIH1cbiAgICB9XG4gICAgXG4gICAgcHJpdmF0ZSBfc3RyaW5nVG9CeXRlcyhzaXplOiBzdHJpbmcpIHtcbiAgICAgICAgdmFyIEtJTE9CWVRFID0gMTAyNDtcbiAgICAgICAgdmFyIE1FR0FCWVRFID0gS0lMT0JZVEUgKiAxMDI0O1xuICAgICAgICB2YXIgR0lHQUJZVEUgPSBNRUdBQllURSAqIDEwMjQ7XG4gICAgICAgIHZhciBURVJBQllURSA9IEdJR0FCWVRFICogMTAyNDtcbiAgICAgICAgXG4gICAgICAgIHZhciB1bml0ID0gc2l6ZS5zdWJzdHIoLTIpO1xuICAgICAgICB2YXIgZmFjdG9yID0gMTtcbiAgICAgICAgXG4gICAgICAgIHN3aXRjaCAodW5pdCkge1xuICAgICAgICAgICAgY2FzZSBcIlRCXCI6XG4gICAgICAgICAgICBmYWN0b3IgPSBURVJBQllURTtcbiAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICAgICAgY2FzZSBcIkdCXCI6XG4gICAgICAgICAgICBmYWN0b3IgPSBHSUdBQllURTtcbiAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICAgICAgY2FzZSBcIk1CXCI6XG4gICAgICAgICAgICBmYWN0b3IgPSBNRUdBQllURTtcbiAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICAgICAgY2FzZSBcIktCXCI6XG4gICAgICAgICAgICBmYWN0b3IgPSBLSUxPQllURTtcbiAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICB9XG4gICAgICAgIFxuICAgICAgICBzaXplID0gc2l6ZS5yZXBsYWNlKC9bQS1aYS16XFxzXSsvZywgJycpO1xuICAgICAgICB2YXIgYnl0ZXMgPSBwYXJzZUZsb2F0KHNpemUpICogZmFjdG9yO1xuICAgICAgICBcbiAgICAgICAgaWYoaXNOYU4oYnl0ZXMpKVxuICAgICAgICAgICAgcmV0dXJuIDA7XG4gICAgICAgIFxuICAgICAgICByZXR1cm4gTWF0aC5yb3VuZChieXRlcyk7XG4gICAgfVxuICAgIFxuICAgIHB1YmxpYyBhZGRFdmVudExpc3RlbmVyKHR5cGU6IHN0cmluZ3xBcnJheTxzdHJpbmc+LCBsaXN0ZW5lcjogKCkgPT4gdm9pZCkge1xuICAgICAgICBpZihBcnJheS5pc0FycmF5KHR5cGUpKVxuICAgICAgICB7XG4gICAgICAgICAgICBmb3IodmFyIGkgPSAwOyBpIDwgdHlwZS5sZW5ndGg7IGkrKylcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICB0aGlzLmFkZEV2ZW50TGlzdGVuZXIodHlwZVtpXSwgbGlzdGVuZXIpO1xuICAgICAgICAgICAgfVxuICAgICAgICAgICAgcmV0dXJuO1xuICAgICAgICB9XG4gICAgICAgIFxuICAgICAgICB2YXIgZXZlbnRUeXBlID0gPHN0cmluZz50eXBlO1xuICAgICAgICBpZiAodHlwZW9mIHRoaXMuX2xpc3RlbmVyc1tldmVudFR5cGVdID09PSAndW5kZWZpbmVkJylcbiAgICAgICAgICAgIHRoaXMuX2xpc3RlbmVyc1tldmVudFR5cGVdID0gW107XG4gICAgXG4gICAgICAgIHRoaXMuX2xpc3RlbmVyc1tldmVudFR5cGVdLnB1c2gobGlzdGVuZXIpO1xuICAgIH1cbiAgICBcbiAgICBwdWJsaWMgcmVtb3ZlRXZlbnRMaXN0ZW5lcih0eXBlOiBzdHJpbmcsIGxpc3RlbmVyOiAoKSA9PiB2b2lkKSB7XG4gICAgICAgIGlmIChBcnJheS5pc0FycmF5KHRoaXMuX2xpc3RlbmVyc1t0eXBlXSkpIHtcbiAgICAgICAgICAgIHZhciBsaXN0ZW5lcnMgPSB0aGlzLl9saXN0ZW5lcnNbdHlwZV07XG4gICAgICAgICAgICBmb3IgKHZhciBpID0gMCwgbGVuID0gbGlzdGVuZXJzLmxlbmd0aDsgaSA8IGxlbjsgaSsrKSB7XG4gICAgICAgICAgICAgICAgaWYgKGxpc3RlbmVyc1tpXSA9PT0gbGlzdGVuZXIpIHtcbiAgICAgICAgICAgICAgICAgICAgbGlzdGVuZXJzLnNwbGljZShpLCAxKTtcbiAgICAgICAgICAgICAgICAgICAgYnJlYWs7XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfVxuICAgICAgICB9XG4gICAgfVxuICAgIFxuICAgIHB1YmxpYyB0cmlnZ2VyKGV2ZW50OiBhbnkpIHtcbiAgICAgICAgaWYoQXJyYXkuaXNBcnJheShldmVudCkpXG4gICAgICAgIHtcbiAgICAgICAgICAgIGZvcih2YXIgaSA9IDA7IGkgPCBldmVudC5sZW5ndGg7IGkrKylcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICB0aGlzLnRyaWdnZXIoZXZlbnRbaV0pO1xuICAgICAgICAgICAgfVxuICAgICAgICAgICAgcmV0dXJuO1xuICAgICAgICB9XG4gICAgICAgIFxuICAgICAgICB2YXIgZXZlbnRPYmo6IGFueSA9IHsgdHlwZTogZXZlbnQgfTtcbiAgICBcbiAgICAgICAgaWYgKCFldmVudE9iai50YXJnZXQpXG4gICAgICAgICAgICBldmVudE9iai50YXJnZXQgPSB0aGlzO1xuICAgIFxuICAgICAgICBpZiAoIWV2ZW50T2JqLnR5cGUpXG4gICAgICAgICAgICB0aHJvdyBuZXcgRXJyb3IoXCJFdmVudCBvYmplY3QgbWlzc2luZyAndHlwZScgcHJvcGVydHkuXCIpO1xuICAgIFxuICAgICAgICBpZiAoQXJyYXkuaXNBcnJheSh0aGlzLl9saXN0ZW5lcnNbZXZlbnRPYmoudHlwZV0pKSB7XG4gICAgICAgICAgICB2YXIgbGlzdGVuZXJzID0gdGhpcy5fbGlzdGVuZXJzW2V2ZW50T2JqLnR5cGVdO1xuICAgICAgICAgICAgZm9yICh2YXIgaSA9IDAsIGxlbiA9IGxpc3RlbmVycy5sZW5ndGg7IGkgPCBsZW47IGkrKykge1xuICAgICAgICAgICAgICAgIGxpc3RlbmVyc1tpXS5jYWxsKHRoaXMsIGV2ZW50T2JqKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgIH1cblxuICAgIHB1YmxpYyBzdGFydEJhY2tncm91bmRVcGRhdGUoc2Vjb25kcz86IG51bWJlcikge1xuICAgICAgICB2YXIgc2VsZiA9IHRoaXM7XG4gICAgICAgIC8vIENsZWFyIG9sZCBpbnRlcnZhbFxuICAgICAgICB0aGlzLnN0b3BCYWNrZ3JvdW5kVXBkYXRlKCk7XG4gICAgXG4gICAgICAgIHZhciBuZXdJbnRlcnZhbDogbnVtYmVyID0gbnVsbDtcbiAgICAgICAgaWYgKHR5cGVvZiBzZWNvbmRzID09PSBcIm51bWJlclwiKVxuICAgICAgICAgICAgbmV3SW50ZXJ2YWwgPSBzZWNvbmRzO1xuICAgICAgICBlbHNlIGlmICh0aGlzLl9zZXR0aW5ncy51cGRhdGVJbkJhY2tncm91bmQpXG4gICAgICAgICAgICBuZXdJbnRlcnZhbCA9IHRoaXMuX3NldHRpbmdzLmJhY2tncm91bmRVcGRhdGVJbnRlcnZhbDtcbiAgICBcbiAgICAgICAgaWYgKG5ld0ludGVydmFsICE9PSBudWxsKSB7XG4gICAgICAgICAgICB2YXIgbG9hZGluZyA9IHRydWU7XG4gICAgICAgICAgICB0aGlzLl9pbnRlcnZhbCA9ICg8YW55PnNldEludGVydmFsKCgpID0+IHtcbiAgICAgICAgICAgICAgICBpZighbG9hZGluZylcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMubG9hZFRhc2tzKChzdWNjZXNzLCBkYXRhKSA9PiB7XG4gICAgICAgICAgICAgICAgICAgICAgICBsb2FkaW5nID0gZmFsc2U7XG4gICAgICAgICAgICAgICAgICAgIH0pO1xuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH0sIG5ld0ludGVydmFsICogMTAwMCkpO1xuICAgICAgICAgICAgXG4gICAgICAgICAgICB0aGlzLmxvYWRUYXNrcygoc3VjY2VzcywgZGF0YSkgPT4ge1xuICAgICAgICAgICAgICAgIGxvYWRpbmcgPSBmYWxzZTtcbiAgICAgICAgICAgIH0pO1xuICAgICAgICB9XG4gICAgfVxuICAgIFxuICAgIHB1YmxpYyBzdG9wQmFja2dyb3VuZFVwZGF0ZSgpIHtcbiAgICAgICAgY2xlYXJJbnRlcnZhbCh0aGlzLl9pbnRlcnZhbCk7XG4gICAgfVxuICAgIFxuICAgIHB1YmxpYyBzZXRCYWNrZ3JvdW5kVXBkYXRlKHVwZGF0ZUluQmFja2dyb3VuZDogYm9vbGVhbiwgbmV3SW50ZXJ2YWxTZWNvbmRzOiBudW1iZXIpIHtcbiAgICAgICAgdGhpcy5fc2V0dGluZ3MuYmFja2dyb3VuZFVwZGF0ZUludGVydmFsID0gbmV3SW50ZXJ2YWxTZWNvbmRzO1xuICAgICAgICB0aGlzLl9zZXR0aW5ncy51cGRhdGVJbkJhY2tncm91bmQgPSB1cGRhdGVJbkJhY2tncm91bmQ7XG4gICAgICAgIFxuICAgICAgICB0aGlzLnN0b3BCYWNrZ3JvdW5kVXBkYXRlKCk7XG4gICAgICAgIHRoaXMuc3RhcnRCYWNrZ3JvdW5kVXBkYXRlKCk7XG4gICAgfVxuICAgIFxuICAgIHB1YmxpYyBjcmVhdGVUYXNrKHVybDogc3RyaW5nLCB1c2VybmFtZTogc3RyaW5nLCBwYXNzd29yZDogc3RyaW5nLCB1bnppcFBhc3N3b3JkOiBzdHJpbmcsIGRlc3RpbmF0aW9uRm9sZGVyOiBzdHJpbmcsIGNhbGxiYWNrOiAoc3VjY2VzczogYm9vbGVhbiwgcmVzdWx0OiBhbnkgfCBzdHJpbmcpID0+IHZvaWQpIHtcbiAgICAgICAgdmFyIHVybHMgPSB0aGlzLmV4dHJhY3RVUkxzKHVybCk7XG4gICAgICAgIHZhciB1cmxUYXNrcyA9IG5ldyBBcnJheTxzdHJpbmc+KCk7XG4gICAgICAgIHZhciBmaWxlVGFza3MgPSBuZXcgQXJyYXk8c3RyaW5nPigpO1xuICAgICAgICB2YXIgdHlwZUNoZWNrUmVzdWx0Q291bnQgPSAwO1xuICAgIFxuICAgICAgICAkLmVhY2godXJscywgKGksIHVybCkgPT4ge1xuICAgICAgICAgICAgdGhpcy5faXNUb3JyZW50T3JOemJVcmwodXJsLCB1c2VybmFtZSwgcGFzc3dvcmQsIChyZXN1bHQpID0+IHtcbiAgICAgICAgICAgICAgICBpZiAocmVzdWx0KVxuICAgICAgICAgICAgICAgICAgICBmaWxlVGFza3MucHVzaCh1cmwpO1xuICAgICAgICAgICAgICAgIGVsc2VcbiAgICAgICAgICAgICAgICAgICAgdXJsVGFza3MucHVzaCh1cmwpO1xuICAgIFxuICAgICAgICAgICAgICAgIHR5cGVDaGVja1Jlc3VsdENvdW50Kys7XG4gICAgXG4gICAgICAgICAgICAgICAgaWYgKHR5cGVDaGVja1Jlc3VsdENvdW50IDwgdXJscy5sZW5ndGgpXG4gICAgICAgICAgICAgICAgICAgIHJldHVybjtcbiAgICBcbiAgICAgICAgICAgICAgICB2YXIgZmlsZVRhc2tzRmluaXNoZWQgPSAoZmlsZVRhc2tzLmxlbmd0aCA9PSAwKTtcbiAgICAgICAgICAgICAgICB2YXIgdXJsVGFza3NGaW5pc2hlZCA9ICh1cmxUYXNrcy5sZW5ndGggPT0gMCk7XG4gICAgICAgICAgICAgICAgdmFyIG92ZXJhbGxSZXN1bHQgPSB0cnVlO1xuICAgIFxuICAgICAgICAgICAgICAgIHZhciBjcmVhdGVSZXN1bHRIYW5kbGVyID0gKHN1Y2Nlc3M6IGJvb2xlYW4sIGRhdGE6IGFueSkgPT4ge1xuICAgICAgICAgICAgICAgICAgICBpZiAoc3VjY2VzcyA9PSBmYWxzZSlcbiAgICAgICAgICAgICAgICAgICAgICAgIG92ZXJhbGxSZXN1bHQgPSBmYWxzZTtcbiAgICBcbiAgICAgICAgICAgICAgICAgICAgaWYgKGZpbGVUYXNrc0ZpbmlzaGVkICYmIHVybFRhc2tzRmluaXNoZWQgJiYgdHlwZW9mIGNhbGxiYWNrID09PSBcImZ1bmN0aW9uXCIpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgIGNhbGxiYWNrKG92ZXJhbGxSZXN1bHQsIGRhdGEpO1xuICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgfVxuICAgIFxuICAgICAgICAgICAgICAgIGlmICh1cmxUYXNrcy5sZW5ndGggPiAwKSB7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuY3JlYXRlVGFza0Zyb21VcmwodXJsVGFza3MsIHVzZXJuYW1lLCBwYXNzd29yZCwgdW56aXBQYXNzd29yZCwgZGVzdGluYXRpb25Gb2xkZXIsIChzdWNjZXNzLCBkYXRhKSA9PiB7XG4gICAgICAgICAgICAgICAgICAgICAgICB1cmxUYXNrc0ZpbmlzaGVkID0gdHJ1ZTtcbiAgICAgICAgICAgICAgICAgICAgICAgIGNyZWF0ZVJlc3VsdEhhbmRsZXIoc3VjY2VzcywgZGF0YSk7XG4gICAgICAgICAgICAgICAgICAgIH0pO1xuICAgICAgICAgICAgICAgIH1cbiAgICBcbiAgICAgICAgICAgICAgICBpZiAoZmlsZVRhc2tzLmxlbmd0aCA+IDApIHtcbiAgICAgICAgICAgICAgICAgICAgdmFyIGZpbGVUYXNrc1Jlc3VsdCA9IHRydWU7XG4gICAgICAgICAgICAgICAgICAgIHZhciBmaWxlVGFza3NDb3VudGVyID0gMDtcbiAgICBcbiAgICAgICAgICAgICAgICAgICAgdmFyIGZpbGVUYXNrQWRkQ2FsbGJhY2sgPSAoc3VjY2VzczogYm9vbGVhbiwgZGF0YTogYW55KSA9PiB7XG4gICAgICAgICAgICAgICAgICAgICAgICBmaWxlVGFza3NDb3VudGVyKys7XG4gICAgICAgICAgICAgICAgICAgICAgICBpZiAoc3VjY2VzcyA9PSBmYWxzZSlcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBmaWxlVGFza3NSZXN1bHQgPSBmYWxzZTtcbiAgICAgICAgICAgICAgICAgICAgICAgIFxuICAgICAgICAgICAgICAgICAgICAgICAgaWYgKGZpbGVUYXNrc0NvdW50ZXIgPT0gZmlsZVRhc2tzLmxlbmd0aCkge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGZpbGVUYXNrc0ZpbmlzaGVkID0gdHJ1ZTtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBjcmVhdGVSZXN1bHRIYW5kbGVyKGZpbGVUYXNrc1Jlc3VsdCwgZGF0YSk7XG4gICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgIH07XG4gICAgXG4gICAgICAgICAgICAgICAgICAgICQuZWFjaChmaWxlVGFza3MsIChqLCBmaWxlVGFzaykgPT4ge1xuICAgICAgICAgICAgICAgICAgICAgICAgdGhpcy5fZG93bmxvYWRGaWxlKGZpbGVUYXNrLCB1c2VybmFtZSwgcGFzc3dvcmQsIChzdWNjZXNzLCBmaWxlKSA9PntcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBpZiAoc3VjY2VzcyA9PT0gdHJ1ZSlcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgdGhpcy5jcmVhdGVUYXNrRnJvbUZpbGUoZmlsZSwgdW56aXBQYXNzd29yZCwgZGVzdGluYXRpb25Gb2xkZXIsIGZpbGVUYXNrQWRkQ2FsbGJhY2spO1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGVsc2VcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgdGhpcy5jcmVhdGVUYXNrRnJvbVVybCh1cmwsIHVzZXJuYW1lLCBwYXNzd29yZCwgdW56aXBQYXNzd29yZCwgZGVzdGluYXRpb25Gb2xkZXIsIGZpbGVUYXNrQWRkQ2FsbGJhY2spO1xuICAgICAgICAgICAgICAgICAgICAgICAgfSk7XG4gICAgICAgICAgICAgICAgICAgIH0pO1xuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH0pO1xuICAgICAgICB9KTtcbiAgICB9XG4gICAgXG4gICAgcHJpdmF0ZSBfZG93bmxvYWRGaWxlKHVybDogc3RyaW5nLCB1c2VybmFtZTogc3RyaW5nLCBwYXNzd29yZDogc3RyaW5nLCBjYWxsYmFjazogKHN1Y2Nlc3M6IGJvb2xlYW4sIGZpbGU/OiBEU0ZpbGUpID0+IHZvaWQpIHtcbiAgICAgICAgdHJ5IHtcbiAgICAgICAgICAgIHZhciB4aHIgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtcbiAgICAgICAgICAgIHhoci5vcGVuKCdHRVQnLCB1cmwsIHRydWUsIHVzZXJuYW1lLCBwYXNzd29yZCk7XG4gICAgICAgICAgICB4aHIucmVzcG9uc2VUeXBlID0gJ2FycmF5YnVmZmVyJztcbiAgICAgICAgICAgIHhoci5vbmxvYWQgPSAoKSA9PiB7XG4gICAgICAgICAgICAgICAgaWYgKHhoci5zdGF0dXMgPj0gMjAwICYmIHhoci5zdGF0dXMgPCAzMDApIHtcbiAgICAgICAgICAgICAgICAgICAgdmFyIGZpbGVuYW1lOiBzdHJpbmcgPSB0aGlzLl9nZXRGaWxlbmFtZUZyb21Db250ZW50RGlzcG9zaXRpb24oeGhyLmdldFJlc3BvbnNlSGVhZGVyKFwiQ29udGVudC1EaXNwb3NpdGlvblwiKSk7XG4gICAgICAgICAgICAgICAgICAgIFxuICAgICAgICAgICAgICAgICAgICBpZighZmlsZW5hbWUpXG4gICAgICAgICAgICAgICAgICAgICAgICBmaWxlbmFtZSA9ICg8YW55PnVybCkucmVtb3ZlVXJsUGFyYW1ldGVycygpLnN1YnN0cmluZyh1cmwubGFzdEluZGV4T2YoJy8nKSArIDEpO1xuICAgICAgICAgICAgICAgICAgICBcbiAgICAgICAgICAgICAgICAgICAgdmFyIGNvbnRlbnRUeXBlID0geGhyLmdldFJlc3BvbnNlSGVhZGVyKCdDb250ZW50LVR5cGUnKSB8fCBcImFwcGxpY2F0aW9uL29jdGV0LXN0cmVhbVwiO1xuICAgICAgICAgICAgICAgICAgICB2YXIgZmlsZSA9IG5ldyBEU0ZpbGUoZmlsZW5hbWUsIGNvbnRlbnRUeXBlLCB4aHIucmVzcG9uc2UsIHVybCk7XG4gICAgICAgICAgICAgICAgICAgIFxuICAgICAgICAgICAgICAgICAgICBpZihmaWxlLmlzVmFsaWRGaWxlKCkpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgIGNhbGxiYWNrKHRydWUsIGZpbGUpO1xuICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgIGVsc2Uge1xuICAgICAgICAgICAgICAgICAgICAgICAgY2FsbGJhY2soZmFsc2UpO1xuICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgIGVsc2VcbiAgICAgICAgICAgICAgICAgICAgY2FsbGJhY2soZmFsc2UpO1xuICAgICAgICAgICAgfTtcbiAgICAgICAgICAgIHhoci5vbmVycm9yID0gKCkgPT4ge1xuICAgICAgICAgICAgICAgIGNhbGxiYWNrKGZhbHNlKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgICAgIHhoci5zZW5kKCk7XG4gICAgICAgIH1cbiAgICAgICAgY2F0Y2ggKGV4Yykge1xuICAgICAgICAgICAgY2FsbGJhY2soZmFsc2UpO1xuICAgICAgICB9XG4gICAgfVxuICAgIFxuICAgIHByaXZhdGUgX2dldEZpbGVuYW1lRnJvbUNvbnRlbnREaXNwb3NpdGlvbiAoY29udGVudERpc3Bvc2l0aW9uOiBzdHJpbmcpOiBzdHJpbmcge1xuICAgICAgICBpZighY29udGVudERpc3Bvc2l0aW9uIHx8IGNvbnRlbnREaXNwb3NpdGlvbi5pbmRleE9mKFwiZmlsZW5hbWU9XCIpID09PSAtMSlcbiAgICAgICAgICAgIHJldHVybiBudWxsO1xuICAgICAgICBcbiAgICAgICAgdmFyIGZpbGVuYW1lID0gY29udGVudERpc3Bvc2l0aW9uLnNwbGl0KCdmaWxlbmFtZT0nKVsxXTtcbiAgICAgICAgaWYoZmlsZW5hbWUuaW5kZXhPZignXCInKSAhPT0gLTEpXG4gICAgICAgIHtcbiAgICAgICAgICAgIGZpbGVuYW1lID0gZmlsZW5hbWUuc3BsaXQoJ1wiJylbMV07XG4gICAgICAgIH1cbiAgICAgICAgZWxzZSB7XG4gICAgICAgICAgICBmaWxlbmFtZSA9IGZpbGVuYW1lLnNwbGl0KFwiIFwiKVswXTtcbiAgICAgICAgfVxuICAgICAgICByZXR1cm4gZmlsZW5hbWU7XG4gICAgfVxuICAgIFxuICAgIHByaXZhdGUgZXh0cmFjdFVSTHModGV4dDogc3RyaW5nKSB7XG4gICAgICAgIHZhciBwYXR0ID0gbmV3IFJlZ0V4cChcIihodHRwcz98bWFnbmV0fHRodW5kZXJ8Zmxhc2hnZXR8cXFkbHxzP2Z0cHM/fGVkMmspKDovL3w6PylcXFxcUytcIiwgXCJpZ1wiKTtcbiAgICAgICAgdmFyIHVybHMgPSBuZXcgQXJyYXk8c3RyaW5nPigpO1xuICAgICAgICBkbyB7XG4gICAgICAgICAgICB2YXIgcmVzdWx0ID0gcGF0dC5leGVjKHRleHQpO1xuICAgICAgICAgICAgaWYgKHJlc3VsdCAhPSBudWxsKSB7XG4gICAgICAgICAgICAgICAgdmFyIHVybCA9IHJlc3VsdFswXTtcbiAgICAgICAgICAgICAgICBpZiAodXJsLmNoYXJBdCh1cmwubGVuZ3RoIC0gMSkgPT09IFwiLFwiKVxuICAgICAgICAgICAgICAgICAgICB1cmwgPSB1cmwuc3Vic3RyaW5nKDAsIHVybC5sZW5ndGggLSAxKTtcbiAgICAgICAgICAgICAgICB1cmxzLnB1c2godXJsKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgfSB3aGlsZSAocmVzdWx0ICE9IG51bGwpO1xuICAgICAgICBpZiAodXJscy5sZW5ndGggPiAwKVxuICAgICAgICAgICAgcmV0dXJuIHVybHM7XG4gICAgICAgIGVsc2VcbiAgICAgICAgICAgIHJldHVybiBbdGV4dF07XG4gICAgfVxuICAgIFxuICAgIHB1YmxpYyBnZXRGaW5pc2hlZFRhc2tzKCk6IEFycmF5PElEb3dubG9hZFN0YXRpb25UYXNrPiB7XG4gICAgICAgIHZhciBmaW5pc2hlZFRhc2tzID0gbmV3IEFycmF5PElEb3dubG9hZFN0YXRpb25UYXNrPigpO1xuICAgICAgICBmb3IgKHZhciBpID0gMDsgaSA8IHRoaXMudGFza3MubGVuZ3RoOyBpKyspIHtcbiAgICAgICAgICAgIHZhciB0YXNrID0gdGhpcy50YXNrc1tpXTtcbiAgICAgICAgICAgIGlmICh0YXNrLnN0YXR1cyA9PSBcImZpbmlzaGVkXCIgfHwgKHRhc2suc2l6ZURvd25sb2FkZWQgPj0gdGFzay5zaXplICYmIHRhc2suc3RhdHVzID09IFwic2VlZGluZ1wiKSkgLy9DaGVjayBmb3Igc2l6ZURvd25sb2FkZWQgdG8gZGV0ZWN0IHNlZWRpbmcgdG9ycmVudHNcbiAgICAgICAgICAgICAgICBmaW5pc2hlZFRhc2tzLnB1c2godGFzayk7XG4gICAgICAgIH1cbiAgICAgICAgcmV0dXJuIGZpbmlzaGVkVGFza3M7XG4gICAgfVxuICAgIFxuICAgIHB1YmxpYyBkZXN0cm95KGNhbGxiYWNrPzogRnVuY3Rpb24pIHtcbiAgICAgICAgdGhpcy5sb2dvdXQoKCkgPT4ge1xuICAgICAgICAgICAgdGhpcy5jb25uZWN0ZWQgPSBmYWxzZTtcbiAgICAgICAgICAgIHRoaXMudHJpZ2dlcihcImRlc3Ryb3lcIik7XG4gICAgICAgICAgICBpZihjYWxsYmFjaykge1xuICAgICAgICAgICAgICAgIGNhbGxiYWNrKCk7XG4gICAgICAgICAgICB9XG4gICAgICAgIH0pO1xuICAgIH1cbn1cblxuY2xhc3MgRFNGaWxlIHsgXG4gICAgXG4gICAgcHVibGljIGZpbGVuYW1lOiBzdHJpbmc7XG4gICAgcHVibGljIG1pbWVUeXBlOiBzdHJpbmc7XG4gICAgcHVibGljIHVybDogc3RyaW5nO1xuICAgIFxuICAgIHByaXZhdGUgZGF0YTogYW55O1xuICAgIHByaXZhdGUgYmxvYjogQmxvYiA9IG51bGw7XG4gICAgXG4gICAgY29uc3RydWN0b3IoZmlsZW5hbWU6IHN0cmluZywgbWltZVR5cGU6IHN0cmluZywgZGF0YTogYW55LCB1cmw6IHN0cmluZykge1xuICAgICAgICB0aGlzLmZpbGVuYW1lID0gJC50cmltKGZpbGVuYW1lKTtcbiAgICAgICAgdGhpcy5taW1lVHlwZSA9IG1pbWVUeXBlO1xuICAgICAgICB0aGlzLnVybCA9IHVybDtcbiAgICAgICAgdGhpcy5kYXRhID0gZGF0YTtcbiAgICAgICAgXG4gICAgICAgIC8vIEZpeCBmaWxlbmFtZVxuICAgICAgICBpZih0aGlzLm1pbWVUeXBlID09IFwiYXBwbGljYXRpb24veC1iaXR0b3JyZW50XCIgJiYgdGhpcy5maWxlbmFtZS5zdWJzdHIoLTgsIDgpLnRvTG93ZXJDYXNlKCkgIT0gXCIudG9ycmVudFwiKVxuICAgICAgICAgICAgdGhpcy5maWxlbmFtZSA9IFwiZG93bmxvYWQudG9ycmVudFwiO1xuICAgICAgICBlbHNlIGlmKHRoaXMubWltZVR5cGUgPT0gXCJhcHBsaWNhdGlvbi94LW56YlwiICYmIHRoaXMuZmlsZW5hbWUuc3Vic3RyKC00LCA0KS50b0xvd2VyQ2FzZSgpICE9IFwiLm56YlwiKVxuICAgICAgICAgICAgdGhpcy5maWxlbmFtZSA9IFwiZG93bmxvYWQubnpiXCI7XG4gICAgICAgIFxuICAgICAgICAvLyBGaXggbWltZS10eXBlXG4gICAgICAgIGlmKHRoaXMuZmlsZW5hbWUuc3Vic3RyKC04LCA4KS50b0xvd2VyQ2FzZSgpID09ICcudG9ycmVudCcpXG4gICAgICAgICAgICB0aGlzLm1pbWVUeXBlID0gXCJhcHBsaWNhdGlvbi94LWJpdHRvcnJlbnRcIjtcbiAgICAgICAgZWxzZSBpZih0aGlzLmZpbGVuYW1lLnN1YnN0cigtNCwgNCkudG9Mb3dlckNhc2UoKSA9PSBcIi5uemJcIilcbiAgICAgICAgICAgIHRoaXMubWltZVR5cGUgPSBcImFwcGxpY2F0aW9uL3gtbnpiXCI7XG5cdH1cblxuXHRwdWJsaWMgaXNWYWxpZEZpbGUoKTogYm9vbGVhbiB7XG5cdFx0aWYodGhpcy5taW1lVHlwZSAhPSBcImFwcGxpY2F0aW9uL3gtbnpiXCIgJiYgdGhpcy5taW1lVHlwZSAhPSBcImFwcGxpY2F0aW9uL3gtYml0dG9ycmVudFwiXG5cdFx0XHQmJiB0aGlzLmZpbGVuYW1lLnN1YnN0cigtOCwgOCkudG9Mb3dlckNhc2UoKSAhPSAnLnRvcnJlbnQnXG5cdFx0XHQmJiB0aGlzLmZpbGVuYW1lLnN1YnN0cigtNCwgNCkudG9Mb3dlckNhc2UoKSAhPSBcIi5uemJcIilcblx0XHR7XG5cdFx0XHRyZXR1cm4gZmFsc2U7XG5cdFx0fSBlbHNlIGlmICh0aGlzLmdldEJsb2IoKSA9PSBudWxsKSB7XG5cdFx0XHRyZXR1cm4gZmFsc2U7XG5cdFx0fVxuXHRcdHJldHVybiB0cnVlO1xuXHR9XG5cdFxuXHRwdWJsaWMgZ2V0QmxvYigpOiBCbG9iIHtcblx0XHRpZih0aGlzLmJsb2IgaW5zdGFuY2VvZiBCbG9iID09PSBmYWxzZSlcblx0XHRcdHRoaXMuY3JlYXRlQmxvYigpO1xuXHRcdHJldHVybiB0aGlzLmJsb2I7XG5cdH1cblx0XG5cdHByaXZhdGUgY3JlYXRlQmxvYigpIHtcblx0XHR0cnl7XG5cdFx0XHR0aGlzLmJsb2IgPSBuZXcgQmxvYiggW3RoaXMuZGF0YV0sIHsgdHlwZTogdGhpcy5taW1lVHlwZSB9KTtcblx0XHR9XG5cdFx0Y2F0Y2goZSl7XG5cdFx0XHRjb25zb2xlLmxvZyhcIkJsb2IgY29uc3RydWN0b3Igbm90IHN1cHBvcnRlZCwgZmFsbGluZyBiYWNrIHRvIEJsb2JCdWlsZGVyXCIpO1xuXHRcdFx0Ly8gT2xkIGJyb3dzZXJzXG4gICAgICAgICAgICBcbiAgICAgICAgICAgIHZhciB3ID0gKDxhbnk+d2luZG93KTtcblx0XHRcdHZhciBibG9iQnVpbGRlciA9IHcuQmxvYkJ1aWxkZXIgfHwgXG5cdFx0XHRcdFx0XHRcdFx0XHR3LldlYktpdEJsb2JCdWlsZGVyIHx8IFxuXHRcdFx0XHRcdFx0XHRcdFx0dy5Nb3pCbG9iQnVpbGRlciB8fCBcblx0XHRcdFx0XHRcdFx0XHRcdHcuTVNCbG9iQnVpbGRlcjtcblx0XHRcdGlmKHcuQmxvYkJ1aWxkZXIpe1xuXHRcdFx0XHR0cnkge1xuXHRcdFx0XHR2YXIgYmI6IE1TQmxvYkJ1aWxkZXIgPSBuZXcgYmxvYkJ1aWxkZXIoKTtcblx0XHRcdFx0ICAgIGJiLmFwcGVuZCh0aGlzLmRhdGEpO1xuXHRcdFx0XHQgICAgdGhpcy5ibG9iID0gYmIuZ2V0QmxvYih0aGlzLm1pbWVUeXBlKTtcblx0XHRcdFx0fVxuXHRcdFx0XHRjYXRjaChiYkV4Y2VwdGlvbikge1xuXHRcdFx0XHRcdGNvbnNvbGUud2FybihcIkVycm9yIGluIEJsb2JCdWlsZGVyXCIpO1xuXHRcdFx0XHRcdGNvbnNvbGUubG9nKGJiRXhjZXB0aW9uKTtcblx0XHRcdFx0fVxuXHRcdFx0fVxuXHRcdFx0ZWxzZSB7XG5cdFx0XHRcdGNvbnNvbGUubG9nKFwiQmxvYkJ1aWxkZXIgbm90IHN1cHBvcnRlZFwiKTtcblx0XHRcdH1cblx0XHR9XG5cdH1cbn0iXSwic291cmNlUm9vdCI6Ii9zb3VyY2UvIn0=
|
train_000.parquet/758
|
{
"file_path": "js/downloadstation.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 66860,
"token_count": 41301
}
|
document.addEventListener("contextmenu", function (event) {
var onClickData = {
menuItemId: null,
editable: null,
pageUrl: location.href
};
var currentElement = event.target;
var selection = window.getSelection().toString();
if (selection.length > 0)
onClickData.selectionText = selection;
while (currentElement != null) {
if (currentElement.nodeType == Node.ELEMENT_NODE) {
var nodeName = currentElement.nodeName.toLowerCase();
var currentElementAnchor = currentElement;
var currentElementMedia = currentElement;
// Anchor
if (!onClickData.linkUrl && (nodeName == 'a' || nodeName == 'area') && typeof currentElementAnchor.href === "string" && currentElementAnchor.href.length > 0) {
onClickData.linkUrl = currentElementAnchor.href;
}
if (!onClickData.srcUrl && ["video", "audio"].indexOf(nodeName) != -1 && typeof currentElementMedia.currentSrc === "string" && currentElementMedia.currentSrc.length > 0) {
onClickData.srcUrl = currentElementMedia.currentSrc;
}
if (!onClickData.srcUrl && ["video", "source", "audio", "img"].indexOf(nodeName) != -1 && typeof currentElementMedia.src === "string" && currentElementMedia.src.length > 0) {
onClickData.srcUrl = currentElementMedia.src;
}
}
currentElement = currentElement.parentNode;
}
safari.self.tab.setContextMenuEventUserInfo(event, onClickData);
}, false);
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImpzL3NhZmFyaS1jb250ZXh0bWVudS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxRQUFRLENBQUMsZ0JBQWdCLENBQUMsYUFBYSxFQUFFLFVBQVMsS0FBSztJQUN0RCxJQUFJLFdBQVcsR0FBb0M7UUFDNUMsVUFBVSxFQUFFLElBQUk7UUFDaEIsUUFBUSxFQUFFLElBQUk7UUFDcEIsT0FBTyxFQUFFLFFBQVEsQ0FBQyxJQUFJO0tBQ3RCLENBQUM7SUFFRixJQUFJLGNBQWMsR0FBZSxLQUFLLENBQUMsTUFBTSxDQUFDO0lBQzlDLElBQUksU0FBUyxHQUFHLE1BQU0sQ0FBQyxZQUFZLEVBQUUsQ0FBQyxRQUFRLEVBQUUsQ0FBQztJQUVqRCxFQUFFLENBQUEsQ0FBQyxTQUFTLENBQUMsTUFBTSxHQUFHLENBQUMsQ0FBQztRQUN2QixXQUFXLENBQUMsYUFBYSxHQUFHLFNBQVMsQ0FBQztJQUV2QyxPQUFNLGNBQWMsSUFBSSxJQUFJLEVBQzVCLENBQUM7UUFDQSxFQUFFLENBQUEsQ0FBQyxjQUFjLENBQUMsUUFBUSxJQUFJLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FDaEQsQ0FBQztZQUNBLElBQUksUUFBUSxHQUFHLGNBQWMsQ0FBQyxRQUFRLENBQUMsV0FBVyxFQUFFLENBQUM7WUFDNUMsSUFBSSxvQkFBb0IsR0FBc0IsY0FBYyxDQUFDO1lBQzdELElBQUksbUJBQW1CLEdBQXFCLGNBQWMsQ0FBQztZQUVwRSxTQUFTO1lBQ1QsRUFBRSxDQUFBLENBQUMsQ0FBQyxXQUFXLENBQUMsT0FBTyxJQUFJLENBQUMsUUFBUSxJQUFJLEdBQUcsSUFBSSxRQUFRLElBQUksTUFBTSxDQUFDLElBQUksT0FBTyxvQkFBb0IsQ0FBQyxJQUFJLEtBQUssUUFBUSxJQUFJLG9CQUFvQixDQUFDLElBQUksQ0FBQyxNQUFNLEdBQUcsQ0FBQyxDQUFDLENBQzVKLENBQUM7Z0JBQ0EsV0FBVyxDQUFDLE9BQU8sR0FBRyxvQkFBb0IsQ0FBQyxJQUFJLENBQUM7WUFDakQsQ0FBQztZQUVELEVBQUUsQ0FBQSxDQUFDLENBQUMsV0FBVyxDQUFDLE1BQU0sSUFBSSxDQUFDLE9BQU8sRUFBRSxPQUFPLENBQUMsQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxDQUFDLElBQUksT0FBTyxtQkFBbUIsQ0FBQyxVQUFVLEtBQUssUUFBUSxJQUFJLG1CQUFtQixDQUFDLFVBQVUsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQztnQkFDekssV0FBVyxDQUFDLE1BQU0sR0FBRyxtQkFBbUIsQ0FBQyxVQUFVLENBQUM7WUFDckQsQ0FBQztZQUVELEVBQUUsQ0FBQSxDQUFDLENBQUMsV0FBVyxDQUFDLE1BQU0sSUFBSSxDQUFDLE9BQU8sRUFBRSxRQUFRLEVBQUUsT0FBTyxFQUFFLEtBQUssQ0FBQyxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLENBQUMsSUFBSSxPQUFPLG1CQUFtQixDQUFDLEdBQUcsS0FBSyxRQUFRLElBQUksbUJBQW1CLENBQUMsR0FBRyxDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDO2dCQUM1SyxXQUFXLENBQUMsTUFBTSxHQUFHLG1CQUFtQixDQUFDLEdBQUcsQ0FBQztZQUM5QyxDQUFDO1FBQ0YsQ0FBQztRQUNELGNBQWMsR0FBRyxjQUFjLENBQUMsVUFBVSxDQUFDO0lBQzVDLENBQUM7SUFFSyxNQUFNLENBQUMsSUFBSyxDQUFDLEdBQUcsQ0FBQywyQkFBMkIsQ0FBQyxLQUFLLEVBQUUsV0FBVyxDQUFDLENBQUM7QUFDeEUsQ0FBQyxFQUFFLEtBQUssQ0FBQyxDQUFDIiwiZmlsZSI6ImpzL3NhZmFyaS1jb250ZXh0bWVudS5qcyIsInNvdXJjZXNDb250ZW50IjpbImRvY3VtZW50LmFkZEV2ZW50TGlzdGVuZXIoXCJjb250ZXh0bWVudVwiLCBmdW5jdGlvbihldmVudCkge1xuXHR2YXIgb25DbGlja0RhdGE6IGNocm9tZS5jb250ZXh0TWVudXMuT25DbGlja0RhdGEgPSB7XG4gICAgICAgIG1lbnVJdGVtSWQ6IG51bGwsXG4gICAgICAgIGVkaXRhYmxlOiBudWxsLFxuXHRcdHBhZ2VVcmw6IGxvY2F0aW9uLmhyZWZcblx0fTtcblx0XG5cdHZhciBjdXJyZW50RWxlbWVudDogTm9kZSA9IDxOb2RlPmV2ZW50LnRhcmdldDtcblx0dmFyIHNlbGVjdGlvbiA9IHdpbmRvdy5nZXRTZWxlY3Rpb24oKS50b1N0cmluZygpO1xuXHRcblx0aWYoc2VsZWN0aW9uLmxlbmd0aCA+IDApXG5cdFx0b25DbGlja0RhdGEuc2VsZWN0aW9uVGV4dCA9IHNlbGVjdGlvbjtcblx0XHRcdFxuXHR3aGlsZShjdXJyZW50RWxlbWVudCAhPSBudWxsKVxuXHR7XG5cdFx0aWYoY3VycmVudEVsZW1lbnQubm9kZVR5cGUgPT0gTm9kZS5FTEVNRU5UX05PREUpXG5cdFx0e1xuXHRcdFx0dmFyIG5vZGVOYW1lID0gY3VycmVudEVsZW1lbnQubm9kZU5hbWUudG9Mb3dlckNhc2UoKTtcbiAgICAgICAgICAgIHZhciBjdXJyZW50RWxlbWVudEFuY2hvciA9IDxIVE1MQW5jaG9yRWxlbWVudD5jdXJyZW50RWxlbWVudDtcbiAgICAgICAgICAgIHZhciBjdXJyZW50RWxlbWVudE1lZGlhID0gPEhUTUxNZWRpYUVsZW1lbnQ+Y3VycmVudEVsZW1lbnQ7XG5cblx0XHRcdC8vIEFuY2hvclxuXHRcdFx0aWYoIW9uQ2xpY2tEYXRhLmxpbmtVcmwgJiYgKG5vZGVOYW1lID09ICdhJyB8fCBub2RlTmFtZSA9PSAnYXJlYScpICYmIHR5cGVvZiBjdXJyZW50RWxlbWVudEFuY2hvci5ocmVmID09PSBcInN0cmluZ1wiICYmIGN1cnJlbnRFbGVtZW50QW5jaG9yLmhyZWYubGVuZ3RoID4gMClcblx0XHRcdHtcblx0XHRcdFx0b25DbGlja0RhdGEubGlua1VybCA9IGN1cnJlbnRFbGVtZW50QW5jaG9yLmhyZWY7XG5cdFx0XHR9XG5cdFx0XHRcblx0XHRcdGlmKCFvbkNsaWNrRGF0YS5zcmNVcmwgJiYgW1widmlkZW9cIiwgXCJhdWRpb1wiXS5pbmRleE9mKG5vZGVOYW1lKSAhPSAtMSAmJiB0eXBlb2YgY3VycmVudEVsZW1lbnRNZWRpYS5jdXJyZW50U3JjID09PSBcInN0cmluZ1wiICYmIGN1cnJlbnRFbGVtZW50TWVkaWEuY3VycmVudFNyYy5sZW5ndGggPiAwKSB7XG5cdFx0XHRcdG9uQ2xpY2tEYXRhLnNyY1VybCA9IGN1cnJlbnRFbGVtZW50TWVkaWEuY3VycmVudFNyYztcblx0XHRcdH1cblx0XHRcdFxuXHRcdFx0aWYoIW9uQ2xpY2tEYXRhLnNyY1VybCAmJiBbXCJ2aWRlb1wiLCBcInNvdXJjZVwiLCBcImF1ZGlvXCIsIFwiaW1nXCJdLmluZGV4T2Yobm9kZU5hbWUpICE9IC0xICYmIHR5cGVvZiBjdXJyZW50RWxlbWVudE1lZGlhLnNyYyA9PT0gXCJzdHJpbmdcIiAmJiBjdXJyZW50RWxlbWVudE1lZGlhLnNyYy5sZW5ndGggPiAwKSB7XG5cdFx0XHRcdG9uQ2xpY2tEYXRhLnNyY1VybCA9IGN1cnJlbnRFbGVtZW50TWVkaWEuc3JjO1xuXHRcdFx0fVxuXHRcdH1cblx0XHRjdXJyZW50RWxlbWVudCA9IGN1cnJlbnRFbGVtZW50LnBhcmVudE5vZGU7XG5cdH1cblx0XG5cdCg8YW55PnNhZmFyaS5zZWxmKS50YWIuc2V0Q29udGV4dE1lbnVFdmVudFVzZXJJbmZvKGV2ZW50LCBvbkNsaWNrRGF0YSk7XG59LCBmYWxzZSk7Il0sInNvdXJjZVJvb3QiOiIvc291cmNlLyJ9
|
train_000.parquet/759
|
{
"file_path": "js/safari-contextmenu.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 6057,
"token_count": 3854
}
|
#!/usr/bin/env bash
# shellcheck disable=SC1083,SC2054,SC2121,SC2207
#--------------------------------------------------------------------------------------------------
# Github: https://github.com/007revad/Synology_HDD_db
# Script verified at https://www.shellcheck.net/
#
# To run in task manager as root (manually or scheduled):
# /volume1/scripts/syno_hdd_db.sh # replace /volume1/scripts/ with path to script
#
# To run in a shell (replace /volume1/scripts/ with path to script):
# sudo -i /volume1/scripts/syno_hdd_db.sh
# or
# sudo -i /volume1/scripts/syno_hdd_db.sh -showedits
# or
# sudo -i /volume1/scripts/syno_hdd_db.sh -force -showedits
#--------------------------------------------------------------------------------------------------
# https://smarthdd.com/database/
# RECENT CHANGES
# Make DSM read md0 and md1 from SSD drive(s) if internal SSD and HDD are installed.
# https://github.com/007revad/Synology_HDD_db/issues/318
# https://www.techspark.de/speed-up-synology-dsm-with-hdd-ssd/
# https://raid.wiki.kernel.org/index.php/Write-mostly
# TODO
# Enable SMART Attributes button on Storage Manager
# disabled:e.healthInfoDisabled
# enabled:e.healthInfoDisabled
# /var/packages/StorageManager/target/ui/storage_panel.js
scriptver="v3.6.111"
script=Synology_HDD_db
repo="007revad/Synology_HDD_db"
scriptname=syno_hdd_db
# Check BASH variable is bash
if [ ! "$(basename "$BASH")" = bash ]; then
echo "This is a bash script. Do not run it with $(basename "$BASH")"
printf \\a
exit 1
fi
# Check script is running on a Synology NAS
if ! /usr/bin/uname -a | grep -q -i synology; then
echo "This script is NOT running on a Synology NAS!"
echo "Copy the script to a folder on the Synology"
echo "and run it from there."
exit 1
fi
ding(){
printf \\a
}
usage(){
cat <<EOF
$script $scriptver - by 007revad
Usage: $(basename "$0") [options]
Options:
-s, --showedits Show edits made to <model>_host db and db.new file(s)
-n, --noupdate Prevent DSM updating the compatible drive databases
-r, --ram Disable memory compatibility checking (DSM 7.x only)
and sets max memory to the amount of installed memory
-f, --force Force DSM to not check drive compatibility
Do not use this option unless absolutely needed
-i, --incompatible Change incompatible drives to supported
Do not use this option unless absolutely needed
-w, --wdda Disable WD Device Analytics to prevent DSM showing
a false warning for WD drives that are 3 years old
DSM 7.2.1 and later already has WDDA disabled
-p, --pcie Enable creating volumes on M2 in unknown PCIe adaptor
-e, --email Disable colored text in output scheduler emails
-S, --ssd=DRIVE Enable write_mostly on internal HDDs so DSM primarily
reads from internal SSDs or your specified drives
-S automatically sets internal SSDs as DSM preferred
--ssd=DRIVE requires the fast drive(s) as argument,
or restore as the argument to reset drives to default
--ssd=sata1 or --ssd=sata1,sata2 or --ssd=sda etc
--ssd=restore
--restore Undo all changes made by the script (except -S --ssd)
To restore all changes including write_mostly use
--restore --ssd=restore
--autoupdate=AGE Auto update script (useful when script is scheduled)
AGE is how many days old a release must be before
auto-updating. AGE must be a number: 0 or greater
-I, --ihm Update IronWolf Health Management to 2.5.1 to support
recent model IronWolf and IronWolf Pro drives.
For NAS with x86_64 CPUs only
Installs IHM on '22 series and newer models (untested)
-h, --help Show this help message
-v, --version Show the script version
EOF
exit 0
}
scriptversion(){
cat <<EOF
$script $scriptver - by 007revad
See https://github.com/$repo
EOF
exit 0
}
# Save options used
args=("$@")
# Check for flags with getopt
if options="$(getopt -o SIabcdefghijklmnopqrstuvwxyz0123456789 -l \
ssd:,ihm,restore,showedits,noupdate,nodbupdate,m2,force,incompatible,ram,pcie,wdda,email,autoupdate:,help,version,debug \
-- "$@")"; then
eval set -- "$options"
while true; do
case "$1" in
-d|--debug) # Show and log debug info
debug=yes
;;
-e|--email) # Disable colour text in task scheduler emails
color=no
;;
--restore) # Restore changes from backups
restore=yes
if echo "${args[@]}" | grep -q -- '--ssd=restore'; then
ssd_restore=yes
fi
#break
;;
-s|--showedits) # Show edits done to host db file
showedits=yes
;;
-S) # Enable writemostly for md0 and md1
ssd=yes
;;
--ssd) # Enable writemostly for md0 and md1
ssd=yes
if [[ ${2,,} == "restore" ]]; then
ssd_restore=yes
else
IFS=$','
for d in $2; do ssds_writemostly+=("${d,,}"); done
unset IFS
fi
shift
;;
-n|--nodbupdate|--noupdate) # Disable disk compatibility db updates
nodbupdate=yes
;;
-m|--m2) # Don't add M.2 drives to db files
m2=no
;;
-f|--force) # Disable "support_disk_compatibility"
force=yes
;;
-i|--incompatible) # Change incompatible drives to supported
incompatible=yes
;;
-r|--ram) # Disable "support_memory_compatibility"
ram=yes
;;
-w|--wdda) # Disable "support_wdda"
wdda=no
;;
-p|--pcie) # Enable creating volumes on M2 in unknown PCIe adaptor
forcepci=yes
;;
-I|--ihm) # Update IronWolf Health Management
ihm=yes
;;
--autoupdate) # Auto update script
autoupdate=yes
if [[ $2 =~ ^[0-9]+$ ]]; then
delay="$2"
shift
else
delay="0"
fi
;;
-h|--help) # Show usage options
usage
;;
-v|--version) # Show script version
scriptversion
;;
--)
shift
break
;;
*) # Show usage options
echo -e "Invalid option '$1'\n"
usage "$1"
;;
esac
shift
done
else
echo
usage
fi
# shellcheck disable=SC2317 # Don't warn about unreachable commands in this function
PS4func() {
local lineno="$1"
local i f=''
local c="\033[0;36m" y="\033[0;33m" n="\033[0m"
local d=$((${#FUNCNAME[@]}-2))
if [[ $lineno == 1 ]]
then lineno=0
fi
for ((i=d; i>0; i--))
do printf -v f "%s%s()" "$f" "${FUNCNAME[i]}"
done
printf "$y%s:%04d$c%s$n " "${BASH_SOURCE[1]##*/}" "$lineno" "$f"
}
if [[ $debug == "yes" ]]; then
PS4='\r$(PS4func $LINENO)'
set -o xtrace
fi
# Shell Colors
if [[ $color != "no" ]]; then
#Black='\e[0;30m' # ${Black}
Red='\e[0;31m' # ${Red}
#Green='\e[0;32m' # ${Green}
Yellow='\e[0;33m' # ${Yellow}
#Blue='\e[0;34m' # ${Blue}
#Purple='\e[0;35m' # ${Purple}
Cyan='\e[0;36m' # ${Cyan}
#White='\e[0;37m' # ${White}
Error='\e[41m' # ${Error}
Off='\e[0m' # ${Off}
else
echo "" # For task scheduler email readability
fi
# Check script is running as root
if [[ $( whoami ) != "root" ]]; then
ding
echo -e "${Error}ERROR${Off} This script must be run as sudo or root!"
exit 1
fi
# Get DSM major version
dsm=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION majorversion)
if [[ $dsm -gt "6" ]]; then
version="_v$dsm"
fi
# Get Synology model
model=$(cat /proc/sys/kernel/syno_hw_version)
modelname="$model"
# Get CPU platform_name
#platform_name=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/synoinfo.conf platform_name)
# Get CPU arch
arch="$(uname -m)"
# Show script version
#echo -e "$script $scriptver\ngithub.com/$repo\n"
echo "$script $scriptver"
# Get DSM full version
productversion=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION productversion)
buildphase=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION buildphase)
buildnumber=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION buildnumber)
smallfixnumber=$(/usr/syno/bin/synogetkeyvalue /etc.defaults/VERSION smallfixnumber)
# Show DSM full version and model
if [[ $buildphase == GM ]]; then buildphase=""; fi
if [[ $smallfixnumber -gt "0" ]]; then smallfix="-$smallfixnumber"; fi
echo "$model $arch DSM $productversion-$buildnumber$smallfix $buildphase"
# Convert model to lower case
model=${model,,}
# Check for dodgy characters after model number
if [[ $model =~ 'pv10-j'$ ]]; then # GitHub issue #10
modelname=${modelname%??????}+ # replace last 6 chars with +
model=${model%??????}+ # replace last 6 chars with +
echo -e "\nUsing model: $model"
elif [[ $model =~ '-j'$ ]]; then # GitHub issue #2
modelname=${modelname%??} # remove last 2 chars
model=${model%??} # remove last 2 chars
echo -e "\nUsing model: $model"
fi
# Get StorageManager version
storagemgrver=$(/usr/syno/bin/synopkg version StorageManager)
# Show StorageManager version
if [[ $storagemgrver ]]; then echo -e "StorageManager $storagemgrver\n"; fi
# Show host drive db version
if [[ -f "/var/lib/disk-compatibility/${model}_host_v7.version" ]]; then
echo -n "${model}_host_v7 version "
cat "/var/lib/disk-compatibility/${model}_host_v7.version"
echo -e "\n"
fi
if [[ -f "/var/lib/disk-compatibility/${model}_host.version" ]]; then
echo -n "${model}_host version "
cat "/var/lib/disk-compatibility/${model}_host.version"
echo -e "\n"
fi
# Show options used
if [[ ${#args[@]} -gt "0" ]]; then
echo "Using options: ${args[*]}"
fi
#echo "" # To keep output readable
# shellcheck disable=SC2317 # Don't warn about unreachable commands in this function
pause(){
# When debugging insert pause command where needed
read -s -r -n 1 -p "Press any key to continue..."
read -r -t 0.1 -s -e -- # Silently consume all input
stty echo echok # Ensure read didn't disable echoing user input
echo -e "\n"
}
#------------------------------------------------------------------------------
# Check latest release with GitHub API
syslog_set(){
if [[ ${1,,} == "info" ]] || [[ ${1,,} == "warn" ]] || [[ ${1,,} == "err" ]]; then
if [[ $autoupdate == "yes" ]]; then
# Add entry to Synology system log
/usr/syno/bin/synologset1 sys "$1" 0x11100000 "$2"
fi
fi
}
# Get latest release info
# Curl timeout options:
# https://unix.stackexchange.com/questions/94604/does-curl-have-a-timeout
release=$(curl --silent -m 10 --connect-timeout 5 \
"https://api.github.com/repos/$repo/releases/latest")
# Release version
tag=$(echo "$release" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
shorttag="${tag:1}"
# Release published date
published=$(echo "$release" | grep '"published_at":' | sed -E 's/.*"([^"]+)".*/\1/')
published="${published:0:10}"
published=$(date -d "$published" '+%s')
# Today's date
now=$(date '+%s')
# Days since release published
age=$(((now - published)/(60*60*24)))
# Get script location
# https://stackoverflow.com/questions/59895/
source=${BASH_SOURCE[0]}
while [ -L "$source" ]; do # Resolve $source until the file is no longer a symlink
scriptpath=$( cd -P "$( dirname "$source" )" >/dev/null 2>&1 && pwd )
source=$(readlink "$source")
# If $source was a relative symlink, we need to resolve it
# relative to the path where the symlink file was located
[[ $source != /* ]] && source=$scriptpath/$source
done
scriptpath=$( cd -P "$( dirname "$source" )" >/dev/null 2>&1 && pwd )
scriptfile=$( basename -- "$source" )
echo "Running from: ${scriptpath}/$scriptfile"
#echo "Script location: $scriptpath" # debug
#echo "Source: $source" # debug
#echo "Script filename: $scriptfile" # debug
#echo "tag: $tag" # debug
#echo "scriptver: $scriptver" # debug
# Warn if script located on M.2 drive
get_script_vol() {
local script_root vol_num vg_name
script_root="${scriptpath#/*}"
script_root="${script_root%%/*}"
if [[ $script_root =~ ^volume ]]
then
vol_num="${script_root:6}"
vg_name=$(lvs --noheadings --select=lv_name="volume_$vol_num" --options=vg_name)
vg_name="${vg_name// }"
vol_name=$(pvs --noheadings --select=vg_name="$vg_name" --options=pv_name)
vol_name="${vol_name// }"
else
vol_name=$(df --output=source "/$script_root" |sed 1d)
fi
}
get_script_vol # sets $vol_name to /dev/whatever
if grep -qE "^${vol_name#/dev/} .+ nvme" /proc/mdstat
then
echo -e "\n${Yellow}WARNING${Off} Don't store this script on an NVMe volume!"
fi
cleanup_tmp(){
cleanup_err=
# Delete downloaded .tar.gz file
if [[ -f "/tmp/$script-$shorttag.tar.gz" ]]; then
if ! rm "/tmp/$script-$shorttag.tar.gz"; then
echo -e "${Error}ERROR${Off} Failed to delete"\
"downloaded /tmp/$script-$shorttag.tar.gz!" >&2
cleanup_err=1
fi
fi
# Delete extracted tmp files
if [[ -d "/tmp/$script-$shorttag" ]]; then
if ! rm -r "/tmp/$script-$shorttag"; then
echo -e "${Error}ERROR${Off} Failed to delete"\
"downloaded /tmp/$script-$shorttag!" >&2
cleanup_err=1
fi
fi
# Add warning to DSM log
if [[ $cleanup_err ]]; then
syslog_set warn "$script update failed to delete tmp files"
fi
}
if ! printf "%s\n%s\n" "$tag" "$scriptver" |
sort --check=quiet --version-sort >/dev/null ; then
echo -e "\n${Cyan}There is a newer version of this script available.${Off}"
echo -e "Current version: ${scriptver}\nLatest version: $tag"
scriptdl="$scriptpath/$script-$shorttag"
if [[ -f ${scriptdl}.tar.gz ]] || [[ -f ${scriptdl}.zip ]]; then
# They have the latest version tar.gz downloaded but are using older version
echo "You have the latest version downloaded but are using an older version"
sleep 10
elif [[ -d $scriptdl ]]; then
# They have the latest version extracted but are using older version
echo "You have the latest version extracted but are using an older version"
sleep 10
else
if [[ $autoupdate == "yes" ]]; then
if [[ $age -gt "$delay" ]] || [[ $age -eq "$delay" ]]; then
echo "Downloading $tag"
reply=y
else
echo "Skipping as $tag is less than $delay days old."
fi
else
echo -e "${Cyan}Do you want to download $tag now?${Off} [y/n]"
read -r -t 30 reply
fi
if [[ ${reply,,} == "y" ]]; then
# Delete previously downloaded .tar.gz file and extracted tmp files
cleanup_tmp
if cd /tmp; then
url="https://github.com/$repo/archive/refs/tags/$tag.tar.gz"
if ! curl -JLO -m 30 --connect-timeout 5 "$url"; then
echo -e "${Error}ERROR${Off} Failed to download"\
"$script-$shorttag.tar.gz!"
syslog_set warn "$script $tag failed to download"
else
if [[ -f /tmp/$script-$shorttag.tar.gz ]]; then
# Extract tar file to /tmp/<script-name>
if ! tar -xf "/tmp/$script-$shorttag.tar.gz" -C "/tmp"; then
echo -e "${Error}ERROR${Off} Failed to"\
"extract $script-$shorttag.tar.gz!"
syslog_set warn "$script failed to extract $script-$shorttag.tar.gz!"
else
# Set script sh files as executable
if ! chmod a+x "/tmp/$script-$shorttag/"*.sh ; then
permerr=1
echo -e "${Error}ERROR${Off} Failed to set executable permissions"
syslog_set warn "$script failed to set permissions on $tag"
fi
# Copy new script sh file to script location
if ! cp -p "/tmp/$script-$shorttag/${scriptname}.sh" "${scriptpath}/${scriptfile}";
then
copyerr=1
echo -e "${Error}ERROR${Off} Failed to copy"\
"$script-$shorttag sh file(s) to:\n $scriptpath/${scriptfile}"
syslog_set warn "$script failed to copy $tag to script location"
fi
# Copy new syno_hdd_vendor_ids.txt file
vidstxt="syno_hdd_vendor_ids.txt"
if [[ $scriptpath =~ /volume* ]]; then
if [[ ! -f "$scriptpath/$vidstxt" ]]; then # Don't overwrite file
# Copy new syno_hdd_vendor_ids.txt file to script location
if ! cp -p "/tmp/$script-$shorttag/$vidstxt" "$scriptpath"; then
if [[ $autoupdate != "yes" ]]; then copyerr=1; fi
echo -e "${Error}ERROR${Off} Failed to copy"\
"$script-$shorttag/$vidstxt to:\n $scriptpath"
else
# Set permissions on syno_hdd_vendor_ids.txt
if ! chmod 755 "$scriptpath/$vidstxt"; then
if [[ $autoupdate != "yes" ]]; then permerr=1; fi
echo -e "${Error}ERROR${Off} Failed to set permissions on:"
echo "$scriptpath/$vidstxt"
fi
vids_txt=", syno_hdd_vendor_ids.txt"
fi
fi
fi
# Copy new CHANGES.txt file to script location (if script on a volume)
if [[ $scriptpath =~ /volume* ]]; then
# Set permissions on CHANGES.txt
if ! chmod 664 "/tmp/$script-$shorttag/CHANGES.txt"; then
permerr=1
echo -e "${Error}ERROR${Off} Failed to set permissions on:"
echo "$scriptpath/CHANGES.txt"
fi
# Copy new CHANGES.txt file to script location
if ! cp -p "/tmp/$script-$shorttag/CHANGES.txt"\
"${scriptpath}/${scriptname}_CHANGES.txt";
then
if [[ $autoupdate != "yes" ]]; then copyerr=1; fi
echo -e "${Error}ERROR${Off} Failed to copy"\
"$script-$shorttag/CHANGES.txt to:\n $scriptpath"
else
changestxt=" and changes.txt"
fi
fi
# Delete downloaded tmp files
cleanup_tmp
# Notify of success (if there were no errors)
if [[ $copyerr != 1 ]] && [[ $permerr != 1 ]]; then
echo -e "\n$tag ${scriptfile}$vids_txt$changestxt downloaded to: ${scriptpath}\n"
syslog_set info "$script successfully updated to $tag"
# Reload script
printf -- '-%.0s' {1..79}; echo # print 79 -
exec "${scriptpath}/$scriptfile" "${args[@]}"
else
syslog_set warn "$script update to $tag had errors"
fi
fi
else
echo -e "${Error}ERROR${Off}"\
"/tmp/$script-$shorttag.tar.gz not found!"
#ls /tmp | grep "$script" # debug
syslog_set warn "/tmp/$script-$shorttag.tar.gz not found"
fi
fi
cd "$scriptpath" || echo -e "${Error}ERROR${Off} Failed to cd to script location!"
else
echo -e "${Error}ERROR${Off} Failed to cd to /tmp!"
syslog_set warn "$script update failed to cd to /tmp"
fi
fi
fi
fi
#------------------------------------------------------------------------------
# Set file variables
if [[ -f /etc.defaults/model.dtb ]]; then # Is device tree model
# Get syn_hw_revision, r1 or r2 etc (or just a linefeed if not a revision)
hwrevision=$(cat /proc/sys/kernel/syno_hw_revision)
# If syno_hw_revision is r1 or r2 it's a real Synology,
# and I need to edit model_rN.dtb instead of model.dtb
if [[ $hwrevision =~ r[0-9] ]]; then
#echo "hwrevision: $hwrevision" # debug
hwrev="_$hwrevision"
fi
dtb_file="/etc.defaults/model${hwrev}.dtb"
dtb2_file="/etc/model${hwrev}.dtb"
#dts_file="/etc.defaults/model${hwrev}.dts"
dts_file="/tmp/model${hwrev}.dts"
fi
adapter_cards="/usr/syno/etc.defaults/adapter_cards.conf"
adapter_cards2="/usr/syno/etc/adapter_cards.conf"
dbpath=/var/lib/disk-compatibility/
synoinfo="/etc.defaults/synoinfo.conf"
if [[ $buildnumber -gt 64570 ]]; then
# DSM 7.2.1 and later
#strgmgr="/var/packages/StorageManager/target/ui/storage_panel.js"
strgmgr="/usr/local/packages/@appstore/StorageManager/ui/storage_panel.js"
elif [[ $buildnumber -ge 42962 ]]; then
# DSM 7.1.1 to 7.2
strgmgr="/usr/syno/synoman/webman/modules/StorageManager/storage_panel.js"
fi
vidfile="/usr/syno/etc.defaults/pci_vendor_ids.conf"
vidfile2="/usr/syno/etc/pci_vendor_ids.conf"
set_writemostly(){
# $1 is writemostly or -writemostly
# $2 is sata1 or sas1 or sda etc
local model
# Show drive model
model="$(cat /sys/block/"${2}"/device/model | xargs)"
echo -e "${Yellow}$model${Off}"
if [[ ${1::2} == "sd" ]]; then
# sda etc
# md0 DSM system partition
echo "$1" > /sys/block/md0/md/dev-"${2}"1/state
# Show setting
echo -n " $2 DSM partition: "
cat /sys/block/md0/md/dev-"${2}"1/state
# md1 DSM swap partition
echo "$1" > /sys/block/md1/md/dev-"${2}"2/state
# Show setting
echo -n " $2 Swap partition: "
cat /sys/block/md1/md/dev-"${2}"2/state
else
# sata1 or sas1 etc
# md0 DSM system partition
echo "$1" > /sys/block/md0/md/dev-"${2}"p1/state
# Show setting
echo -n " $2 DSM partition: "
cat /sys/block/md0/md/dev-"${2}"p1/state
# md1 DSM swap partition
echo "$1" > /sys/block/md1/md/dev-"${2}"p2/state
# Show setting
echo -n " $2 Swap partition: "
cat /sys/block/md1/md/dev-"${2}"p2/state
fi
}
#------------------------------------------------------------------------------
# Restore changes from backups
if [[ $restore == "yes" ]]; then
dbbaklist=($(find $dbpath -maxdepth 1 \( -name "*.db.new.bak" -o -name "*.db.bak" \)))
# Sort array
IFS=$'\n'
dbbakfiles=($(sort <<<"${dbbaklist[*]}"))
unset IFS
echo ""
if [[ ${#dbbakfiles[@]} -gt "0" ]] || [[ -f ${synoinfo}.bak ]] ||\
[[ -f ${dtb_file}.bak ]] || [[ -f ${adapter_cards}.bak ]] ; then
# Restore synoinfo.conf from backup
if [[ -f ${synoinfo}.bak ]]; then
keyvalues=("support_disk_compatibility" "support_memory_compatibility")
keyvalues+=("mem_max_mb" "supportnvme" "support_m2_pool" "support_wdda")
for v in "${!keyvalues[@]}"; do
defaultval="$(/usr/syno/bin/synogetkeyvalue ${synoinfo}.bak "${keyvalues[v]}")"
currentval="$(/usr/syno/bin/synogetkeyvalue ${synoinfo} "${keyvalues[v]}")"
if [[ $currentval != "$defaultval" ]]; then
if /usr/syno/bin/synosetkeyvalue "$synoinfo" "${keyvalues[v]}" "$defaultval";
then
echo "Restored ${keyvalues[v]} = $defaultval"
fi
fi
done
fi
# Delete "drive_db_test_url=127.0.0.1" line (and line break) from synoinfo.conf
sed -i "/drive_db_test_url=*/d" "$synoinfo"
sed -i "/drive_db_test_url=*/d" /etc/synoinfo.conf
# Restore adapter_cards.conf from backup
# /usr/syno/etc.defaults/adapter_cards.conf
if [[ -f ${adapter_cards}.bak ]]; then
if cp -p "${adapter_cards}.bak" "${adapter_cards}"; then
echo "Restored ${adapter_cards}"
else
restoreerr=1
echo -e "${Error}ERROR${Off} Failed to restore ${adapter_cards}!\n"
fi
# /usr/syno/etc/adapter_cards.conf
if cp -p "${adapter_cards}.bak" "${adapter_cards2}"; then
echo -e "Restored ${adapter_cards2}"
else
restoreerr=1
echo -e "${Error}ERROR${Off} Failed to restore ${adapter_cards2}!\n"
fi
# Make sure they don't lose E10M20-T1 network connection
modelrplowercase=${modelname//RP/rp}
/usr/syno/bin/set_section_key_value ${adapter_cards} E10M20-T1_sup_nic "$modelrplowercase"
/usr/syno/bin/set_section_key_value ${adapter_cards2} E10M20-T1_sup_nic "$modelrplowercase"
fi
# Restore model.dtb from backup
if [[ -f ${dtb_file}.bak ]]; then
# /etc.default/model.dtb
if cp -p "${dtb_file}.bak" "${dtb_file}"; then
echo "Restored ${dtb_file}"
else
restoreerr=1
echo -e "${Error}ERROR${Off} Failed to restore ${dtb_file}!\n"
fi
# Restore /etc/model.dtb from /etc.default/model.dtb
if cp -p "${dtb_file}.bak" "${dtb2_file}"; then
echo -e "Restored ${dtb2_file}"
else
restoreerr=1
echo -e "${Error}ERROR${Off} Failed to restore ${dtb2_file}!\n"
fi
fi
# Restore storage_panel.js from backup
if [[ $buildnumber -gt 64570 ]]; then
# DSM 7.2.1 and later
strgmgrver="$(/usr/syno/bin/synopkg version StorageManager)"
elif [[ $buildnumber -ge 42962 ]]; then
# DSM 7.1.1 to 7.2
strgmgrver="${buildnumber}${smallfixnumber}"
fi
if [[ -f "${strgmgr}.$strgmgrver" ]]; then
if cp -p "${strgmgr}.$strgmgrver" "$strgmgr"; then
echo "Restored $(basename -- "$strgmgr")"
else
restoreerr=1
echo -e "${Error}ERROR${Off} Failed to restore $(basename -- "$strgmgr")!\n"
fi
else
echo "No backup of $(basename -- "$strgmgr") found."
fi
echo ""
# Restore .db files from backups
for f in "${!dbbakfiles[@]}"; do
replaceme="${dbbakfiles[f]%.bak}" # Remove .bak
if cp -p "${dbbakfiles[f]}" "$replaceme"; then
echo "Restored $(basename -- "$replaceme")"
else
restoreerr=1
echo -e "${Error}ERROR${Off} Failed to restore $(basename -- "$replaceme")!\n"
fi
done
# Delete any .dbr and .db.newr files left by previous script versions
for f in "${dbpath}"*dbr; do
if [[ -f $f ]]; then
rm "$f" >/dev/null
fi
done
for f in "${dbpath}"*db.newr; do
if [[ -f $f ]]; then
rm "$f" >/dev/null
fi
done
# Update .db files from Synology
/usr/syno/bin/syno_disk_db_update --update
# Enable SynoMemCheck.service if disabled
memcheck="/usr/lib/systemd/system/SynoMemCheck.service"
if [[ $(/usr/syno/bin/synogetkeyvalue "$memcheck" ExecStart) == "/bin/true" ]]; then
/usr/syno/bin/synosetkeyvalue "$memcheck" ExecStart /usr/syno/bin/syno_mem_check
fi
if [[ -z $restoreerr ]]; then
echo -e "\nRestore successful."
fi
# Restore writemostly if set
if [[ $ssd_restore == "yes" ]]; then
# Get array of internal drives
readarray -t internal_drives < <(synodisk --enum -t internal | grep 'Disk path' | cut -d"/" -f3)
# Restore all internal drives to just in_sync
echo -e "\nRestoring internal drive's state"
for idrive in "${internal_drives[@]}"; do
md0="/sys/block/md0/md/dev-"
md1="/sys/block/md1/md/dev-"
if [[ ${idrive::2} == "sd" ]]; then
# sda etc
# Check DSM system and swap partitions
if grep -q "write_mostly" "${md0}$idrive"1/state ||\
grep -q "write_mostly" "${md1}$idrive"2/state; then
set_writemostly -writemostly "$idrive"
fi
else
# sata1 or sas1 etc
# Check DSM system and swap partitions
if grep -q "write_mostly" "${md0}$idrive"p1/state ||\
grep -q "write_mostly" "${md1}$idrive"p2/state; then
set_writemostly -writemostly "$idrive"
fi
fi
done
fi
else
echo "Nothing to restore."
fi
exit
fi
#------------------------------------------------------------------------------
# Get list of installed SATA, SAS and M.2 NVMe/SATA drives,
# PCIe M.2 cards and connected Expansion Units.
vendor_from_id(){
# Vendor ids missing in /usr/syno/etc.defaults/pci_vendor_ids.conf
# $1 is vendor id
# https://devicehunt.com/all-pci-vendors
# https://pci-ids.ucw.cz/
vendor=""
case "${1,,}" in
0x10ec) vendor=TEAMGROUP ;;
0x025e) vendor=Solidigm ;;
0x1458) vendor=Gigabyte ;;
0x1462) vendor=MSI ;;
0x196e) vendor=PNY ;;
0x1987) vendor=Phison ;;
0x1b1c) vendor=Corsair ;;
0x1c5c) vendor="SK Hynix" ;;
0x1cc4) vendor=UMIS ;;
0x1cfa) vendor=Corsair ;; # Memory only?
0x1d97) vendor=SPCC/Lexar ;; # 2 brands with same vid
0x1dbe) vendor=ADATA ;;
0x1e0f) vendor=KIOXIA ;;
0x1e49) vendor=ZHITAI ;;
0x1e4b) vendor=HS/MAXIO ;; # 2 brands with same vid
0x1f40) vendor=Netac ;;
0x1bdc) vendor=Apacer;;
0x0ed1) vendor=aigo ;;
0x05dc) vendor=Lexar ;;
0x1d79) vendor=Transcend;;
*)
# Get vendor from syno_hdd_vendor_ids.txt
vidlist="$scriptpath/syno_hdd_vendor_ids.txt"
if [[ -r "$vidlist" ]]; then
val=$(/usr/syno/bin/synogetkeyvalue "$vidlist" "$1")
if [[ -n "$val" ]]; then
vendor="$val"
else
echo -e "\n${Yellow}WARNING${Off} No vendor found for vid $1" >&2
echo -e "You can add ${Cyan}$1${Off} and your drive's vendor to: " >&2
echo "$vidlist" >&2
fi
else
echo -e "\n${Error}ERROR{OFF} $vidlist not found!" >&2
fi
;;
esac
}
set_vendor(){
# Add missing vendors to /usr/syno/etc.defaults/pci_vendor_ids.conf
if [[ $vendor ]]; then
# DS1817+, DS1517+, RS1219+, RS818+ don't have pci_vendor_ids.conf
if [[ "$vidfile" ]]; then
if ! grep -q "$vid" "$vidfile"; then
/usr/syno/bin/synosetkeyvalue "$vidfile" "${vid,,}" "$vendor"
val=$(/usr/syno/bin/synogetkeyvalue "$vidfile" "${vid,,}")
if [[ $val == "${vendor}" ]]; then
echo -e "\nAdded $vendor to pci_vendor_ids" >&2
else
echo -e "\nFailed to add $vendor to pci_vendor_ids!" >&2
fi
fi
if ! grep -q "$vid" "$vidfile2"; then
/usr/syno/bin/synosetkeyvalue "$vidfile2" "${vid,,}" "$vendor"
fi
# Add leading 0 to short vid (change 0x5dc to 0x05dc)
if [[ ${#vid} -eq "5" ]]; then
vid="0x0${vid: -3}"
fi
if ! grep -q "$vid" "$vidfile"; then
/usr/syno/bin/synosetkeyvalue "$vidfile" "${vid,,}" "$vendor"
fi
if ! grep -q "$vid" "$vidfile2"; then
/usr/syno/bin/synosetkeyvalue "$vidfile2" "${vid,,}" "$vendor"
fi
fi
fi
}
get_vid(){
# $1 is /dev/nvme0n1 etc
if [[ $1 ]]; then
vid=$(nvme id-ctrl "$1" | grep -E ^vid | awk '{print $NF}')
if [[ $vid ]]; then
val=$(/usr/syno/bin/synogetkeyvalue "$vidfile" "${vid,,}")
if [[ -z $val ]]; then
vendor_from_id "$vid" && set_vendor
fi
fi
fi
}
fixdrivemodel(){
# Remove " 00Y" from end of Samsung/Lenovo SSDs # Github issue #13
if [[ $1 =~ MZ.*' 00Y' ]]; then
hdmodel=$(printf "%s" "$1" | sed 's/ 00Y.*//')
fi
# Brands that return "BRAND <model>" and need "BRAND " removed.
if [[ $1 =~ ^[A-Za-z]{3,7}' '.* ]]; then
# See Smartmontools database in /var/lib/smartmontools/drivedb.db
hdmodel=${hdmodel#"WDC "} # Remove "WDC " from start of model name
hdmodel=${hdmodel#"HGST "} # Remove "HGST " from start of model name
hdmodel=${hdmodel#"TOSHIBA "} # Remove "TOSHIBA " from start of model name
# Chinese brand?
hdmodel=${hdmodel#"HCST "} # Remove "HCST " from start of model name. Issue #389
# Old drive brands
hdmodel=${hdmodel#"Hitachi "} # Remove "Hitachi " from start of model name
hdmodel=${hdmodel#"SAMSUNG "} # Remove "SAMSUNG " from start of model name
hdmodel=${hdmodel#"FUJISTU "} # Remove "FUJISTU " from start of model name
elif [[ $1 =~ ^'APPLE HDD '.* ]]; then
# Old drive brands
hdmodel=${hdmodel#"APPLE HDD "} # Remove "APPLE HDD " from start of model name
fi
}
get_size_gb(){
# $1 is /sys/block/sata1 or /sys/block/nvme0n1 etc
local disk_size_gb
disk_size_gb=$(synodisk --info /dev/"$(basename -- "$1")" 2>/dev/null | grep 'Total capacity' | awk '{print int($4 * 1.073741824)}')
echo "$disk_size_gb"
}
getdriveinfo(){
# $1 is /sys/block/sata1 etc
# Skip USB drives
usb=$(grep "$(basename -- "$1")" /proc/mounts | grep "[Uu][Ss][Bb]" | cut -d" " -f1-2)
if [[ ! $usb ]]; then
# Get drive model
hdmodel=$(cat "$1/device/model")
hdmodel=$(printf "%s" "$hdmodel" | xargs) # trim leading and trailing white space
# Fix dodgy model numbers
fixdrivemodel "$hdmodel"
# Get drive firmware version
#fwrev=$(cat "$1/device/rev")
#fwrev=$(printf "%s" "$fwrev" | xargs) # trim leading and trailing white space
device=/dev/"$(basename -- "$1")"
#fwrev=$(/usr/syno/bin/syno_hdd_util --ssd_detect | grep "$device " | awk '{print $2}') # GitHub issue #86, 87
# Account for SSD drives with spaces in their model name/number
fwrev=$(/usr/syno/bin/syno_hdd_util --ssd_detect | grep "$device " | awk '{print $(NF-3)}') # GitHub issue #86, 87
# Get firmware version with smartctl if $fwrev null
# for M.2 SATA SSD and SAS drives. Github issue #407
if [[ -z $fwrev ]]; then
dev=/dev/"$(basename -- "$1")"
fwrev=$(smartctl -a -d ata -T permissive "$dev" | grep -i firmware | awk '{print $NF}')
fi
# Get drive GB size
size_gb=$(get_size_gb "$1")
if [[ -n "$size_gb" ]]; then # PR #187
if [[ $hdmodel ]] && [[ $fwrev ]]; then
if /usr/syno/bin/synodisk --enum -t cache | grep -q /dev/"$(basename -- "$1")"; then
# Is SATA M.2 SSD
nvmelist+=("${hdmodel},${fwrev},${size_gb}")
else
hdlist+=("${hdmodel},${fwrev},${size_gb}")
fi
drivelist+=("${hdmodel}")
fi
fi
fi
}
getm2info(){
# $1 is /sys/block/nvme0n1 etc
nvmemodel=$(cat "$1/device/model")
nvmemodel=$(printf "%s" "$nvmemodel" | xargs) # trim leading and trailing white space
if [[ $2 == "nvme" ]]; then
nvmefw=$(cat "$1/device/firmware_rev")
elif [[ $2 == "nvc" ]]; then
nvmefw=$(cat "$1/device/rev")
fi
nvmefw=$(printf "%s" "$nvmefw" | xargs) # trim leading and trailing white space
# Get drive GB size
size_gb=$(get_size_gb "$1")
if [[ $nvmemodel ]] && [[ $nvmefw ]]; then
nvmelist+=("${nvmemodel},${nvmefw},${size_gb}")
drivelist+=("${nvmemodel}")
fi
}
getcardmodel(){
# Get M.2 card model (if M.2 drives found)
# $1 is /dev/nvme0n1 etc
if [[ ${#nvmelist[@]} -gt "0" ]]; then
cardmodel=$(/usr/syno/bin/synodisk --m2-card-model-get "$1")
if [[ $cardmodel =~ M2D[0-9][0-9] ]]; then
# M2 adaptor card
if [[ -f "${model}_${cardmodel,,}${version}.db" ]]; then
m2carddblist+=("${model}_${cardmodel,,}${version}.db") # M.2 card's db file
fi
if [[ -f "${model}_${cardmodel,,}.db" ]]; then
m2carddblist+=("${model}_${cardmodel,,}.db") # M.2 card's db file
fi
m2cardlist+=("$cardmodel") # M.2 card
elif [[ $cardmodel =~ E[0-9][0-9]+M.+ ]]; then
# Ethernet + M2 adaptor card
if [[ -f "${model}_${cardmodel,,}${version}.db" ]]; then
m2carddblist+=("${model}_${cardmodel,,}${version}.db") # M.2 card's db file
fi
if [[ -f "${model}_${cardmodel,,}.db" ]]; then
m2carddblist+=("${model}_${cardmodel,,}.db") # M.2 card's db file
fi
m2cardlist+=("$cardmodel") # M.2 card
fi
fi
}
m2_pool_support(){
# M.2 drives in M2 adaptor card do not officially support storage pools
if [[ -f /run/synostorage/disks/"$(basename -- "$1")"/m2_pool_support ]]; then # GitHub issue #86, 87
echo -n 1 > /run/synostorage/disks/"$(basename -- "$1")"/m2_pool_support
fi
}
m2_drive(){
# $1 is nvme1 etc
# $2 is drive type (nvme or nvc)
if [[ $m2 != "no" ]]; then
# Check if is NVMe or SATA M.2 SSD
if /usr/syno/bin/synodisk --enum -t cache | grep -q /dev/"$(basename -- "$1")"; then
if [[ $2 == "nvme" ]] || [[ $2 == "nvc" ]]; then
# Fix unknown vendor id if needed. GitHub issue #161
# "Failed to get disk vendor" from synonvme --vendor-get
# causes "Unsupported firmware version" warning.
get_vid /dev/"$(basename -- "$1")"
# Get M2 model and firmware version
getm2info "$1" "$2"
fi
# Get M.2 card model if in M.2 card
getcardmodel /dev/"$(basename -- "$1")"
# Enable creating M.2 storage pool and volume in Storage Manager
m2_pool_support "$1"
rebootmsg=yes # Show reboot message at end
fi
fi
}
for d in /sys/block/*; do
# $d is /sys/block/sata1 etc
case "$(basename -- "${d}")" in
sd*|hd*)
if [[ $d =~ [hs]d[a-z][a-z]?$ ]]; then
getdriveinfo "$d"
fi
;;
sas*)
if [[ $d =~ sas[0-9][0-9]?[0-9]?$ ]]; then
getdriveinfo "$d"
fi
;;
sata*)
if [[ $d =~ sata[0-9][0-9]?[0-9]?$ ]]; then
getdriveinfo "$d"
# In case it's a SATA M.2 SSD in device tree model NAS
# M.2 SATA drives in M2D18 or M2S17
m2_drive "$d"
fi
;;
nvme*)
if [[ $d =~ nvme[0-9][0-9]?n[0-9][0-9]?$ ]]; then
m2_drive "$d" "nvme"
fi
;;
nvc*) # M.2 SATA drives (in PCIe M2D18 or M2S17 only?)
if [[ $d =~ nvc[0-9][0-9]?$ ]]; then
m2_drive "$d" "nvc"
fi
;;
esac
done
# Sort hdlist array into new hdds array to remove duplicates
if [[ ${#hdlist[@]} -gt "0" ]]; then
while IFS= read -r -d '' x; do
hdds+=("$x")
done < <(printf "%s\0" "${hdlist[@]}" | sort -uz)
fi
# Show hdds if hdds array isn't empty
if [[ ${#hdds[@]} -eq "0" ]]; then
echo -e "No SATA or SAS drives found\n"
else
echo -e "\nHDD/SSD models found: ${#hdds[@]}"
num="0"
while [[ $num -lt "${#hdds[@]}" ]]; do
echo "${hdds[num]} GB"
num=$((num +1))
done
echo
fi
# Sort nvmelist array into new nvmes array to remove duplicates
if [[ ${#nvmelist[@]} -gt "0" ]]; then
while IFS= read -r -d '' x; do
nvmes+=("$x")
done < <(printf "%s\0" "${nvmelist[@]}" | sort -uz)
fi
# Show nvmes if nvmes array isn't empty
if [[ $m2 != "no" ]]; then
if [[ ${#nvmes[@]} -eq "0" ]]; then
echo -e "No M.2 drives found\n"
else
m2exists="yes"
echo "M.2 drive models found: ${#nvmes[@]}"
num="0"
while [[ $num -lt "${#nvmes[@]}" ]]; do
echo "${nvmes[num]} GB"
num=$((num +1))
done
echo
fi
fi
# Exit if no drives found
if [[ ${#hdds[@]} -eq "0" ]] && [[ ${#nvmes[@]} -eq "0" ]]; then
ding
echo -e "\n${Error}ERROR${Off} No drives found!" && exit 2
fi
# M.2 card db files
# Sort m2carddblist array into new m2carddbs array to remove duplicates
if [[ ${#m2carddblist[@]} -gt "0" ]]; then
while IFS= read -r -d '' x; do
m2carddbs+=("$x")
done < <(printf "%s\0" "${m2carddblist[@]}" | sort -uz)
fi
# M.2 cards
# Sort m2cardlist array into new m2cards array to remove duplicates
if [[ ${#m2cardlist[@]} -gt "0" ]]; then
while IFS= read -r -d '' x; do
m2cards+=("$x")
done < <(printf "%s\0" "${m2cardlist[@]}" | sort -uz)
fi
# Check m2cards array isn't empty
if [[ $m2 != "no" ]]; then
if [[ ${#m2cards[@]} -eq "0" ]]; then
echo -e "No M.2 PCIe cards found\n"
else
echo "M.2 PCIe card models found: ${#m2cards[@]}"
num="0"
while [[ $num -lt "${#m2cards[@]}" ]]; do
echo "${m2cards[num]}"
num=$((num +1))
done
echo
fi
fi
# Expansion units
ebox_conected=$(synodisk --enum -t ebox)
if [[ $ebox_conected ]]; then
# Only device tree models have syno_slot_mapping
# eSATA and InfiniBand ports both appear in syno_slot_mapping as:
# Esata port count: 1
# Eunit port 1 - RX1214
if which syno_slot_mapping >/dev/null; then
# syno_slot_mapping does not find SAS eunits
eunitlist=($(syno_slot_mapping | grep 'Eunit port' | awk '{print $5}'))
fi
if [[ ${#eunitlist[@]} -eq "0" ]]; then
# Create new /var/log/diskprediction log to ensure newly connected ebox is in latest log
# Otherwise the new /var/log/diskprediction log is only created a midnight.
/usr/syno/bin/syno_disk_data_collector record
# Get list of connected expansion units (aka eunit/ebox)
path="/var/log/diskprediction"
# shellcheck disable=SC2012
file=$(ls $path | tail -n1)
eunitlist=($(grep -Eowi "([FRD]XD?[0-9]{3,4})(rp|ii|sas){0,2}" "$path/$file" | uniq))
fi
fi
# Sort eunitlist array into new eunits array to remove duplicates
if [[ ${#eunitlist[@]} -gt "0" ]]; then
while IFS= read -r -d '' x; do
eunits+=("$x")
done < <(printf "%s\0" "${eunitlist[@]}" | sort -uz)
fi
# Check eunits array isn't empty
if [[ ${#eunits[@]} -eq "0" ]]; then
echo -e "No Expansion Units found\n"
else
#eunitexists="yes"
echo "Expansion Unit models found: ${#eunits[@]}"
num="0"
while [[ $num -lt "${#eunits[@]}" ]]; do
echo "${eunits[num]}"
num=$((num +1))
done
echo
fi
#------------------------------------------------------------------------------
# Check databases and add our drives if needed
# Host db files
db1list=($(find "$dbpath" -maxdepth 1 -name "*_host*.db"))
db2list=($(find "$dbpath" -maxdepth 1 -name "*_host*.db.new"))
#db1list=($(find "$dbpath" -maxdepth 1 -regextype posix-extended\
# -iregex ".*_host(_v7)?.db"))
#db2list=($(find "$dbpath" -maxdepth 1 -regextype posix-extended\
# -iregex ".*_host(_v7)?.db.new"))
# Expansion Unit db files
for i in "${!eunits[@]}"; do
#eunitdb1list+=($(find "$dbpath" -maxdepth 1 -name "${eunits[i],,}*.db"))
eunitdb1list+=($(find "$dbpath" -maxdepth 1 -regextype posix-extended\
-iregex ".*${eunits[i],,}(_v7)?.db"))
#eunitdb2list+=($(find "$dbpath" -maxdepth 1 -name "${eunits[i],,}*.db.new"))
eunitdb2list+=($(find "$dbpath" -maxdepth 1 -regextype posix-extended\
-iregex ".*${eunits[i],,}(_v7)?.db.new"))
done
# M.2 Card db files
for i in "${!m2cards[@]}"; do
m2carddb1list+=($(find "$dbpath" -maxdepth 1 -name "*_${m2cards[i],,}*.db"))
m2carddb2list+=($(find "$dbpath" -maxdepth 1 -name "*_${m2cards[i],,}*.db.new"))
done
if [[ ${#db1list[@]} -eq "0" ]]; then
ding
echo -e "${Error}ERROR 4${Off} Host db file not found!" && exit 4
fi
# Don't check .db.new as new installs don't have a .db.new file
getdbtype(){
# Detect drive db type
# Synology misspelt compatibility as compatbility
if grep -q -F '{"disk_compatbility_info":' "$1"; then
# DSM 7 drive db files start with {"disk_compatbility_info":
dbtype=7
elif grep -q -F '{"success":1,"list":[' "$1"; then
# DSM 6 drive db files start with {"success":1,"list":[
dbtype=6
elif [[ ! $1 =~ .*'.db.new' ]]; then
if [[ $(stat -c%s "$1") -eq "0" ]]; then
echo -e "${Error}ERROR${Off} $(basename -- "${1}") is 0 bytes!" >&2
else
echo -e "${Error}ERROR${Off} Unknown database type $(basename -- "${1}")!" >&2
fi
dbtype=1
else
dbtype=1
fi
#echo "db type: $dbtype" >&2 # debug
}
backupdb(){
# Backup database file if needed
if [[ ! -f "$1.bak" ]]; then
if [[ $(basename "$1") == "synoinfo.conf" ]]; then
echo "" >&2 # Formatting for stdout
fi
if [[ $2 == "long" ]]; then
fname="$1"
else
fname=$(basename -- "${1}")
fi
if cp -p "$1" "$1.bak"; then
echo -e "Backed up ${fname}" >&2
else
echo -e "${Error}ERROR 5${Off} Failed to backup ${fname}!" >&2
return 1
fi
fi
# Fix permissions if needed
octal=$(stat -c "%a %n" "$1" | cut -d" " -f1)
if [[ ! $octal -eq 644 ]]; then
chmod 644 "$1"
fi
return 0
}
# Backup host database file if needed
for i in "${!db1list[@]}"; do
backupdb "${db1list[i]}" ||{
ding
exit 5
}
done
for i in "${!db2list[@]}"; do
backupdb "${db2list[i]}" ||{
ding
exit 5 # maybe don't exit for .db.new file
}
done
#------------------------------------------------------------------------------
# Edit db files
editcount(){
# Count drives added to host db files
if [[ $1 =~ .*\.db$ ]]; then
db1Edits=$((db1Edits +1))
elif [[ $1 =~ .*\.db.new ]]; then
db2Edits=$((db2Edits +1))
fi
}
editdb7(){
if [[ $1 == "append" ]]; then # model not in db file
#if sed -i "s/}}}/}},\"$hdmodel\":{$fwstrng$default/" "$2"; then # append
if sed -i "s/}}}/}},\"${hdmodel//\//\\/}\":{$fwstrng$default/" "$2"; then # append
echo -e "Added ${Yellow}$hdmodel${Off} to ${Cyan}$(basename -- "$2")${Off}"
editcount "$2"
else
echo -e "\n${Error}ERROR 6a${Off} Failed to update $(basename -- "$2")${Off}"
#exit 6
fi
elif [[ $1 == "insert" ]]; then # model and default exists
#if sed -i "s/\"$hdmodel\":{/\"$hdmodel\":{$fwstrng/" "$2"; then # insert firmware
if sed -i "s/\"${hdmodel//\//\\/}\":{/\"${hdmodel//\//\\/}\":{$fwstrng/" "$2"; then # insert firmware
echo -e "Updated ${Yellow}$hdmodel${Off} in ${Cyan}$(basename -- "$2")${Off}"
#editcount "$2"
else
echo -e "\n${Error}ERROR 6b${Off} Failed to update $(basename -- "$2")${Off}"
#exit 6
fi
elif [[ $1 == "empty" ]]; then # db file only contains {}
#if sed -i "s/{}/{\"$hdmodel\":{$fwstrng${default}}/" "$2"; then # empty
#if sed -i "s/{}/{\"${hdmodel//\//\\/}\":{$fwstrng${default}}/" "$2"; then # empty
if sed -i "s/{}/{\"${hdmodel//\//\\/}\":{$fwstrng${default}/" "$2"; then # empty
echo -e "Added ${Yellow}$hdmodel${Off} to ${Cyan}$(basename -- "$2")${Off}"
editcount "$2"
else
echo -e "\n${Error}ERROR 6c${Off} Failed to update $(basename -- "$2")${Off}"
#exit 6
fi
fi
}
updatedb(){
hdmodel=$(printf "%s" "$1" | cut -d"," -f 1)
fwrev=$(printf "%s" "$1" | cut -d"," -f 2)
size_gb=$(printf "%s" "$1" | cut -d"," -f 3)
#echo arg1 "$1" >&2 # debug
#echo arg2 "$2" >&2 # debug
#echo hdmodel "$hdmodel" >&2 # debug
#echo fwrev "$fwrev" >&2 # debug
# Check if db file is new or old style
getdbtype "$2"
if [[ $dbtype -gt "6" ]]; then
# db type 7 used from DSM 7.1 and later
if grep -q "$hdmodel"'":{"'"$fwrev" "$2"; then
echo -e "${Yellow}$hdmodel${Off} already exists in ${Cyan}$(basename -- "$2")${Off}" >&2
else
common_string=\"size_gb\":$size_gb,
common_string="$common_string"\"compatibility_interval\":[{
common_string="$common_string"\"compatibility\":\"support\",
common_string="$common_string"\"not_yet_rolling_status\":\"support\",
common_string="$common_string"\"fw_dsm_update_status_notify\":false,
common_string="$common_string"\"barebone_installable\":true,
common_string="$common_string"\"barebone_installable_v2\":\"auto\",
common_string="$common_string"\"smart_test_ignore\":false,
common_string="$common_string"\"smart_attr_ignore\":false
fwstrng=\"$fwrev\":{
fwstrng="$fwstrng$common_string"
fwstrng="$fwstrng"}]},
default=\"default\":{
default="$default$common_string"
default="$default"}]}}}
# Synology misspelt compatibility as compatbility
if grep -q '"disk_compatbility_info":{}' "$2"; then
# Replace "disk_compatbility_info":{} with
# "disk_compatbility_info":{"WD40PURX-64GVNY0":{"80.00A80":{ ... }}},"default":{ ... }}}}
#echo "Edit empty db file:" # debug
editdb7 "empty" "$2"
elif grep -q '"'"$hdmodel"'":' "$2"; then
# Replace "WD40PURX-64GVNY0":{ with "WD40PURX-64GVNY0":{"80.00A80":{ ... }}},
#echo "Insert firmware version:" # debug
editdb7 "insert" "$2"
else
# Add "WD40PURX-64GVNY0":{"80.00A80":{ ... }}},"default":{ ... }}}
#echo "Append drive and firmware:" # debug
editdb7 "append" "$2"
fi
fi
# Edit existing drives in db with compatibility:unverified # Issue #224
if grep -q 'unverified' "$2"; then
sed -i 's/unverified/support/g' "$2"
if ! grep -q 'unverified' "$2"; then
echo -e "Edited unverified drives in ${Cyan}$(basename -- "$2")${Off}" >&2
fi
fi
# Edit existing drives in db with compatibility:not_support
if [[ $incompatible == "yes" ]]; then
if grep -q 'not_support' "$2"; then
sed -i 's/not_support/support/g' "$2"
if ! grep -q 'not_support' "$2"; then
echo -e "Edited incompatible drives in ${Cyan}$(basename -- "$2")${Off}" >&2
fi
fi
fi
elif [[ $dbtype -eq "6" ]]; then
# db type 6 used up to DSM 7.0.1
if grep -q "$hdmodel" "$2"; then
echo -e "${Yellow}$hdmodel${Off} already exists in ${Cyan}$(basename -- "$2")${Off}" >&2
else
# example:
# {"model":"WD60EFRX-68MYMN1","firmware":"82.00A82","rec_intvl":[1]},
# Don't need to add firmware version?
#string="{\"model\":\"${hdmodel}\",\"firmware\":\"${fwrev}\",\"rec_intvl\":\[1\]},"
string="{\"model\":\"${hdmodel}\",\"firmware\":\"\",\"rec_intvl\":\[1\]},"
# {"success":1,"list":[
startstring="{\"success\":1,\"list\":\["
# example:
# {"success":1,"list":[{"model":"WD60EFRX-68MYMN1","firmware":"82.00A82","rec_intvl":[1]},
#if sed -i "s/$startstring/$startstring$string/" "$2"; then
#if sed -i "s/${startstring//\//\\/}/${startstring//\//\\/}$string/" "$2"; then
if sed -i "s/$startstring/$startstring${string//\//\\/}/" "$2"; then
echo -e "Added ${Yellow}$hdmodel${Off} to ${Cyan}$(basename -- "$2")${Off}"
else
ding
echo -e "\n${Error}ERROR 8${Off} Failed to update $(basename -- "$2")${Off}" >&2
exit 8
fi
fi
fi
}
# Fix ,, instead of , bug caused by v3.3.75
if [[ "${#db1list[@]}" -gt "0" ]]; then
for i in "${!db1list[@]}"; do
sed -i "s/,,/,/" "${db1list[i]}"
done
fi
if [[ "${#db2list[@]}" -gt "0" ]]; then
for i in "${!db2list[@]}"; do
sed -i "s/,,/,/" "${db2list[i]}"
done
fi
# HDDs and SATA SSDs
num="0"
while [[ $num -lt "${#hdds[@]}" ]]; do
for i in "${!db1list[@]}"; do
updatedb "${hdds[$num]}" "${db1list[i]}"
done
for i in "${!db2list[@]}"; do
updatedb "${hdds[$num]}" "${db2list[i]}"
done
#------------------------------------------------
# Expansion Units
for i in "${!eunitdb1list[@]}"; do
backupdb "${eunitdb1list[i]}" &&\
updatedb "${hdds[$num]}" "${eunitdb1list[i]}"
done
for i in "${!eunitdb2list[@]}"; do
backupdb "${eunitdb2list[i]}" &&\
updatedb "${hdds[$num]}" "${eunitdb2list[i]}"
done
#------------------------------------------------
num=$((num +1))
done
# M.2 NVMe/SATA drives
num="0"
while [[ $num -lt "${#nvmes[@]}" ]]; do
for i in "${!db1list[@]}"; do
updatedb "${nvmes[$num]}" "${db1list[i]}"
done
for i in "${!db2list[@]}"; do
updatedb "${nvmes[$num]}" "${db2list[i]}"
done
#------------------------------------------------
# M.2 adaptor cards
for i in "${!m2carddb1list[@]}"; do
backupdb "${m2carddb1list[i]}" &&\
updatedb "${nvmes[$num]}" "${m2carddb1list[i]}"
done
for i in "${!m2carddb2list[@]}"; do
backupdb "${m2carddb2list[i]}" &&\
updatedb "${nvmes[$num]}" "${m2carddb2list[i]}"
done
#------------------------------------------------
num=$((num +1))
done
#------------------------------------------------------------------------------
# Enable unsupported Synology M2 PCIe cards
enable_card(){
# $1 is the file
# $2 is the section
# $3 is the card model and mode
if [[ -f $1 ]] && [[ -n $2 ]] && [[ -n $3 ]]; then
backupdb "$adapter_cards" long
backupdb "$adapter_cards2" long
# Check if section exists
if ! grep -q '^\['"$2"'\]$' "$1"; then
echo -e "Section [$2] not found in $(basename -- "$1")!" >&2
return
fi
# Check if already enabled
#
# No idea if "cat /proc/sys/kernel/syno_hw_version" returns upper or lower case RP
# "/usr/syno/etc.defaults/adapter_cards.conf" uses lower case rp but upper case RS
# So we'll convert RP to rp when needed.
#
modelrplowercase=${modelname//RP/rp}
val=$(/usr/syno/bin/get_section_key_value "$1" "$2" "$modelrplowercase")
if [[ $val != "yes" ]]; then
# /usr/syno/etc.defaults/adapter_cards.conf
if /usr/syno/bin/set_section_key_value "$1" "$2" "$modelrplowercase" yes; then
# /usr/syno/etc/adapter_cards.conf
/usr/syno/bin/set_section_key_value "$adapter_cards2" "$2" "$modelrplowercase" yes
echo -e "Enabled ${Yellow}$3${Off} for ${Cyan}$modelname${Off}" >&2
rebootmsg=yes
else
echo -e "${Error}ERROR 9${Off} Failed to enable $3 for ${modelname}!" >&2
fi
else
echo -e "${Yellow}$3${Off} already enabled for ${Cyan}$modelname${Off}" >&2
fi
fi
}
dts_m2_card(){
# $1 is the card model
# $2 is the dts file
# Remove last }; so we can append to dts file
sed -i '/^};/d' "$2"
# Append PCIe M.2 card node to dts file
if [[ $1 == E10M20-T1 ]] || [[ $1 == M2D20 ]]; then
cat >> "$2" <<EOM2D
$1 {
compatible = "Synology";
model = "synology_${1,,}";
power_limit = "14.85,14.85";
m2_card@1 {
nvme {
pcie_postfix = "00.0,08.0,00.0";
port_type = "ssdcache";
};
};
m2_card@2 {
nvme {
pcie_postfix = "00.0,04.0,00.0";
port_type = "ssdcache";
};
};
};
};
EOM2D
elif [[ $1 == M2D18 ]]; then
cat >> "$2" <<EOM2D18
M2D18 {
compatible = "Synology";
model = "synology_m2d18";
power_limit = "9.9,9.9";
m2_card@1 {
ahci {
pcie_postfix = "00.0,03.0,00.0";
ata_port = <0x00>;
};
nvme {
pcie_postfix = "00.0,04.0,00.0";
port_type = "ssdcache";
};
};
m2_card@2 {
ahci {
pcie_postfix = "00.0,03.0,00.0";
ata_port = <0x01>;
};
nvme {
pcie_postfix = "00.0,05.0,00.0";
port_type = "ssdcache";
};
};
};
};
EOM2D18
elif [[ $1 == M2D17 ]]; then
cat >> "$2" <<EOM2D17
M2D17 {
compatible = "Synology";
model = "synology_m2d17";
power_limit = "9.9,9.9";
m2_card@1 {
ahci {
pcie_postfix = "00.0,03.0,00.0";
ata_port = <0x00>;
};
};
m2_card@2 {
ahci {
pcie_postfix = "00.0,03.0,00.0";
ata_port = <0x01>;
};
};
};
};
EOM2D17
fi
}
is_schedule_running(){
# $1 is script's filename. e.g. syno_hdd_db.sh etc
local file="/usr/syno/etc/esynoscheduler/esynoscheduler.db"
local rows offset task status pid result
# Get number of rows in database
rows=$(sqlite3 "${file}" <<ECNT
SELECT COUNT(*) from task;
.quit
ECNT
)
# Check if script is running from task scheduler
offset="0"
while [[ $rows != "$offset" ]]; do
task=$(sqlite3 "$file" "SELECT operation FROM task WHERE rowid = (SELECT rowid FROM task LIMIT 1 OFFSET ${offset});")
if echo "$task" | grep -q "$1"; then
status=$(sqlite3 "$file" "SELECT status FROM task WHERE rowid = (SELECT rowid FROM task LIMIT 1 OFFSET ${offset});")
pid=$(echo "$status" | cut -d"[" -f2 | cut -d"]" -f1)
if [[ $pid -gt "0" ]]; then
result=$((result +pid))
fi
fi
offset=$((offset +1))
done
[ -n "$result" ] || return 1
}
install_binfile(){
# install_binfile <file> <file-url> <destination> <chmod> <bundled-path> <hash>
# example:
# file_url="https://raw.githubusercontent.com/${repo}/main/bin/dtc"
# install_binfile dtc "$file_url" /usr/bin/dtc a+x bin/dtc
if [[ -f "${scriptpath}/$5" ]]; then
binfile="${scriptpath}/$5"
echo -e "\nInstalling ${1}"
elif [[ -f "${scriptpath}/$(basename -- "$5")" ]]; then
binfile="${scriptpath}/$(basename -- "$5")"
echo -e "\nInstalling ${1}"
else
# Download binfile
if [[ $autoupdate == "yes" ]]; then
reply=y
elif is_schedule_running "$(basename -- "$0")"; then
reply=y
else
echo -e "\nNeed to download ${1}"
echo -e "${Cyan}Do you want to download ${1}?${Off} [y/n]"
read -r -t 30 reply
fi
if [[ ${reply,,} == "y" ]]; then
echo -e "\nDownloading ${1}"
if ! curl -kL -m 30 --connect-timeout 5 "$2" -o "/tmp/$1"; then
echo -e "${Error}ERROR${Off} Failed to download ${1}!"
return
fi
binfile="/tmp/${1}"
printf "Downloaded md5: "
md5sum -b "$binfile" | awk '{print $1}'
md5=$(md5sum -b "$binfile" | awk '{print $1}')
if [[ $md5 != "$6" ]]; then
echo "Expected md5: $6"
echo -e "${Error}ERROR${Off} Downloaded $1 md5 hash does not match!"
exit 1
fi
else
echo -e "${Error}ERROR${Off} Cannot add M2 PCIe card without ${1}!"
exit 1
fi
fi
# Set binfile executable
chmod "$4" "$binfile"
# Copy binfile to destination
cp -p "$binfile" "$3"
}
edit_modeldtb(){
# $1 is E10M20-T1 or M2D20 or M2D18 or M2D17
if [[ -f /etc.defaults/model.dtb ]]; then # Is device tree model
# Check if dtc exists and is executable
if [[ ! -x $(which dtc) ]]; then
md5hash="01381dabbe86e13a2f4a8017b5552918"
branch="main"
file_url="https://raw.githubusercontent.com/${repo}/${branch}/bin/dtc"
# install_binfile <file> <file-url> <destination> <chmod> <bundled-path> <hash>
install_binfile dtc "$file_url" /usr/sbin/dtc "a+x" bin/dtc "$md5hash"
fi
# Check again if dtc exists and is executable
if [[ -x /usr/sbin/dtc ]]; then
# Backup model.dtb
backupdb "$dtb_file" long
# Output model.dtb to model.dts
dtc -q -I dtb -O dts -o "$dts_file" "$dtb_file" # -q Suppress warnings
chmod 644 "$dts_file"
# Edit model.dts
for c in "${cards[@]}"; do
# Edit model.dts if needed
if ! grep -q "$c" "$dtb_file"; then
dts_m2_card "$c" "$dts_file"
echo -e "Added ${Yellow}$c${Off} to ${Cyan}model${hwrev}.dtb${Off}" >&2
else
echo -e "${Yellow}$c${Off} already exists in ${Cyan}model${hwrev}.dtb${Off}" >&2
fi
done
# Compile model.dts to model.dtb
dtc -q -I dts -O dtb -o "$dtb_file" "$dts_file" # -q Suppress warnings
# Set owner and permissions for model.dtb
chmod a+r "$dtb_file"
chown root:root "$dtb_file"
cp -pu "$dtb_file" "$dtb2_file" # Copy dtb file to /etc
rebootmsg=yes
else
echo -e "${Error}ERROR${Off} Missing /usr/sbin/dtc or not executable!" >&2
fi
fi
}
for c in "${m2cards[@]}"; do
case "$c" in
E10M20-T1)
echo ""
enable_card "$adapter_cards" E10M20-T1_sup_nic "E10M20-T1 NIC"
enable_card "$adapter_cards" E10M20-T1_sup_nvme "E10M20-T1 NVMe"
#enable_card "$adapter_cards" E10M20-T1_sup_sata "E10M20-T1 SATA"
cards=(E10M20-T1) && edit_modeldtb
;;
M2D20)
echo ""
enable_card "$adapter_cards" M2D20_sup_nvme "M2D20 NVMe"
cards=(M2D20) && edit_modeldtb
;;
M2D18)
echo ""
enable_card "$adapter_cards" M2D18_sup_nvme "M2D18 NVMe"
enable_card "$adapter_cards" M2D18_sup_sata "M2D18 SATA"
cards=(M2D18) && edit_modeldtb
;;
M2D17)
echo ""
enable_card "$adapter_cards" M2D17_sup_sata "M2D17 SATA"
cards=(M2D17) && edit_modeldtb
;;
*)
echo "Unknown M2 card type: $c"
;;
esac
done
#------------------------------------------------------------------------------
# Set or restore writemostly
if [[ $ssd == "yes" ]]; then
# Get array of internal drives
readarray -t internal_drives < <(synodisk --enum -t internal | grep 'Disk path' | cut -d"/" -f3)
if [[ $ssd_restore == "yes" ]]; then
# Restore all internal drives to just in_sync
echo -e "\nRestoring internal drive's state"
for idrive in "${internal_drives[@]}"; do
#if ! grep -q "write_mostly"; then
set_writemostly -writemostly "$idrive"
#fi
done
elif [[ ${#ssds_writemostly[@]} -gt "0" ]]; then
# User specified their fast drive(s)
echo -e "\nSetting slow internal HDDs state to write_mostly"
for idrive in "${internal_drives[@]}"; do
if [[ ! ${ssds_writemostly[*]} =~ $idrive ]]; then
set_writemostly writemostly "$idrive"
fi
done
else
# Get list of internal HDDs and qty of SSDs
internal_ssd_qty="0"
for idrive in "${internal_drives[@]}"; do
if synodisk --isssd /dev/"${idrive:?}" >/dev/null; then
# exit code 0 = is not SSD
# exit code 1 = is SSD
# Add internal HDDs to array
internal_hdds+=("$idrive")
else
# Count number of internal 2.5 inch SSDs
internal_ssd_qty=$((internal_ssd_qty +1))
fi
done
# Set HDDs to writemostly if there's also internal SSDs
if [[ $internal_ssd_qty -gt "0" ]] && [[ ${#internal_hdds[@]} -gt "0" ]]; then
# There are internal SSDs and HDDs
echo -e "\nSetting internal HDDs state to write_mostly"
for idrive in "${internal_hdds[@]}"; do
set_writemostly writemostly "$idrive"
done
fi
fi
fi
#------------------------------------------------------------------------------
# Edit /etc.defaults/synoinfo.conf
# Backup synoinfo.conf if needed
backupdb "$synoinfo" ||{
ding
exit 9
}
# Optionally disable "support_disk_compatibility"
sdc=support_disk_compatibility
setting="$(/usr/syno/bin/synogetkeyvalue $synoinfo $sdc)"
if [[ $force == "yes" ]]; then
if [[ $setting == "yes" ]]; then
# Disable support_disk_compatibility
/usr/syno/bin/synosetkeyvalue "$synoinfo" "$sdc" "no"
setting="$(/usr/syno/bin/synogetkeyvalue "$synoinfo" $sdc)"
if [[ $setting == "no" ]]; then
echo -e "\nDisabled support disk compatibility."
fi
elif [[ $setting == "no" ]]; then
echo -e "\nSupport disk compatibility already disabled."
fi
else
if [[ $setting == "no" ]]; then
# Enable support_disk_compatibility
/usr/syno/bin/synosetkeyvalue "$synoinfo" "$sdc" "yes"
setting="$(/usr/syno/bin/synogetkeyvalue "$synoinfo" $sdc)"
if [[ $setting == "yes" ]]; then
echo -e "\nRe-enabled support disk compatibility."
fi
elif [[ $setting == "yes" ]]; then
echo -e "\nSupport disk compatibility already enabled."
fi
fi
# Optionally disable memory compatibility warnings
smc=support_memory_compatibility
setting="$(/usr/syno/bin/synogetkeyvalue $synoinfo $smc)"
settingbak="$(/usr/syno/bin/synogetkeyvalue $synoinfo.bak $smc)"
if [[ -z $settingbak ]] || [[ -z $setting ]]; then
# For older models that don't use "support_memory_compatibility"
memcheck="/usr/lib/systemd/system/SynoMemCheck.service"
memcheck_value="$(/usr/syno/bin/synosetkeyvalue "$memcheck" ExecStart)"
if [[ $ram == "yes" ]]; then
if [[ $memcheck_value == "/usr/syno/bin/syno_mem_check" ]]; then
# Disable SynoMemCheck.service
/usr/syno/bin/synosetkeyvalue "$memcheck" ExecStart /bin/true
memcheck_value="$(/usr/syno/bin/synosetkeyvalue "$memcheck" ExecStart)"
if [[ $memcheck_value == "/bin/true" ]]; then
echo -e "\nDisabled SynoMemCheck memory compatibility."
fi
elif [[ $memcheck_value == "/bin/true" ]]; then
echo -e "\nSynoMemCheck memory compatibility already disabled."
fi
else
if [[ $memcheck_value == "/bin/true" ]]; then
# Enable SynoMemCheck.service
/usr/syno/bin/synosetkeyvalue "$memcheck" ExecStart /usr/syno/bin/syno_mem_check
memcheck_value="$(/usr/syno/bin/synosetkeyvalue "$memcheck" ExecStart)"
if [[ $memcheck_value == "/usr/syno/bin/syno_mem_check" ]]; then
echo -e "\nRe-enabled SynoMemCheck memory compatibility."
fi
elif [[ $memcheck_value == "/usr/syno/bin/syno_mem_check" ]]; then
echo -e "\nSynoMemCheck memory compatibility already enabled."
fi
fi
else
# Disable "support_memory_compatibility" (not for older models)
if [[ $ram == "yes" ]]; then
if [[ $setting == "yes" ]]; then
# Disable support_memory_compatibility
/usr/syno/bin/synosetkeyvalue "$synoinfo" "$smc" "no"
setting="$(/usr/syno/bin/synogetkeyvalue "$synoinfo" $smc)"
if [[ $setting == "no" ]]; then
echo -e "\nDisabled support memory compatibility."
fi
elif [[ $setting == "no" ]]; then
echo -e "\nSupport memory compatibility already disabled."
fi
else
if [[ $setting == "no" ]]; then
# Enable support_memory_compatibility
/usr/syno/bin/synosetkeyvalue "$synoinfo" "$smc" "yes"
setting="$(/usr/syno/bin/synogetkeyvalue "$synoinfo" $smc)"
if [[ $setting == "yes" ]]; then
echo -e "\nRe-enabled support memory compatibility."
fi
elif [[ $setting == "yes" ]]; then
echo -e "\nSupport memory compatibility already enabled."
fi
fi
fi
# Optionally set mem_max_mb to the amount of installed memory
if [[ $dsm -gt "6" ]]; then # DSM 6 as has no dmidecode
if [[ $ram == "yes" ]] && [[ -f /usr/sbin/dmidecode ]]; then
# Get total amount of installed memory
#IFS=$'\n' read -r -d '' -a array < <(dmidecode -t memory | grep "[Ss]ize") # GitHub issue #86, 87
IFS=$'\n' read -r -d '' -a array < <(dmidecode -t memory |\
grep -E "[Ss]ize: [0-9]+ [MG]{1}[B]{1}$") # GitHub issue #86, 87, 106
if [[ ${#array[@]} -gt "0" ]]; then
num="0"
while [[ $num -lt "${#array[@]}" ]]; do
check=$(printf %s "${array[num]}" | awk '{print $1}')
if [[ ${check,,} == "size:" ]]; then
ramsize=$(printf %s "${array[num]}" | awk '{print $2}') # GitHub issue #86, 87
bytes=$(printf %s "${array[num]}" | awk '{print $3}') # GitHub issue #86, 87
if [[ $ramsize =~ ^[0-9]+$ ]]; then # Check $ramsize is numeric # GitHub issue #86, 87
if [[ $bytes == "GB" ]]; then # DSM 7.2 dmidecode returned GB
ramsize=$((ramsize * 1024)) # Convert to MB # GitHub issue #107
fi
if [[ $ramtotal ]]; then
ramtotal=$((ramtotal +ramsize))
else
ramtotal="$ramsize"
fi
fi
fi
num=$((num +1))
done
fi
# Set mem_max_mb to the amount of installed memory
setting="$(/usr/syno/bin/synogetkeyvalue $synoinfo mem_max_mb)"
settingbak="$(/usr/syno/bin/synogetkeyvalue ${synoinfo}.bak mem_max_mb)" # GitHub issue #107
if [[ $ramtotal =~ ^[0-9]+$ ]]; then # Check $ramtotal is numeric
if [[ $ramtotal -gt "$setting" ]]; then
/usr/syno/bin/synosetkeyvalue "$synoinfo" mem_max_mb "$ramtotal"
# Check we changed mem_max_mb
setting="$(/usr/syno/bin/synogetkeyvalue $synoinfo mem_max_mb)"
if [[ $ramtotal == "$setting" ]]; then
#echo -e "\nSet max memory to $ramtotal MB."
ramgb=$((ramtotal / 1024))
echo -e "\nSet max memory to $ramgb GB."
else
echo -e "\n${Error}ERROR${Off} Failed to change max memory!"
fi
elif [[ $setting -gt "$ramtotal" ]] && [[ $setting -gt "$settingbak" ]]; # GitHub issue #107
then
# Fix setting is greater than both ramtotal and default in syninfo.conf.bak
/usr/syno/bin/synosetkeyvalue "$synoinfo" mem_max_mb "$settingbak"
# Check we restored mem_max_mb
setting="$(/usr/syno/bin/synogetkeyvalue $synoinfo mem_max_mb)"
if [[ $settingbak == "$setting" ]]; then
#echo -e "\nSet max memory to $ramtotal MB."
ramgb=$((ramtotal / 1024))
echo -e "\nRestored max memory to $ramgb GB."
else
echo -e "\n${Error}ERROR${Off} Failed to restore max memory!"
fi
elif [[ $ramtotal == "$setting" ]]; then
#echo -e "\nMax memory already set to $ramtotal MB."
ramgb=$((ramtotal / 1024))
echo -e "\nMax memory already set to $ramgb GB."
else [[ $ramtotal -lt "$setting" ]]
#echo -e "\nMax memory is set to $setting MB."
ramgb=$((setting / 1024))
echo -e "\nMax memory is set to $ramgb GB."
fi
else
echo -e "\n${Error}ERROR${Off} Total memory size is not numeric: '$ramtotal'"
fi
fi
fi
# Enable nvme support
# shellcheck disable=SC2010 # Don't warn about "Don't use ls | grep"
if ls /dev | grep -q nvme; then
if [[ $m2 != "no" ]]; then
# Check if nvme support is enabled
setting="$(/usr/syno/bin/synogetkeyvalue $synoinfo supportnvme)"
enabled=""
if [[ ! $setting ]]; then
# Add supportnvme="yes"
/usr/syno/bin/synosetkeyvalue "$synoinfo" supportnvme "yes"
enabled="yes"
elif [[ $setting == "no" ]]; then
# Change supportnvme="no" to "yes"
/usr/syno/bin/synosetkeyvalue "$synoinfo" supportnvme "yes"
enabled="yes"
elif [[ $setting == "yes" ]]; then
echo -e "\nNVMe support already enabled."
fi
# Check if we enabled nvme support
setting="$(/usr/syno/bin/synogetkeyvalue $synoinfo supportnvme)"
if [[ $enabled == "yes" ]]; then
if [[ $setting == "yes" ]]; then
echo -e "\nEnabled NVMe support."
else
echo -e "\n${Error}ERROR${Off} Failed to enable NVMe support!"
fi
fi
fi
fi
# Enable m2 volume support
# shellcheck disable=SC2010 # Don't warn about "Don't use ls | grep"
if ls /dev | grep -q "nv[cm]"; then
if [[ $m2 != "no" ]]; then
if [[ $m2exists == "yes" ]]; then
# Check if m2 volume support is enabled
smp=support_m2_pool
setting="$(/usr/syno/bin/synogetkeyvalue $synoinfo ${smp})"
enabled=""
if [[ ! $setting ]]; then
# Add support_m2_pool="yes"
#echo 'support_m2_pool="yes"' >> "$synoinfo"
/usr/syno/bin/synosetkeyvalue "$synoinfo" "$smp" "yes"
enabled="yes"
elif [[ $setting == "no" ]]; then
# Change support_m2_pool="no" to "yes"
/usr/syno/bin/synosetkeyvalue "$synoinfo" "$smp" "yes"
enabled="yes"
elif [[ $setting == "yes" ]]; then
echo -e "\nM.2 volume support already enabled."
fi
# Check if we enabled m2 volume support
setting="$(/usr/syno/bin/synogetkeyvalue $synoinfo ${smp})"
if [[ $enabled == "yes" ]]; then
if [[ $setting == "yes" ]]; then
echo -e "\nEnabled M.2 volume support."
else
echo -e "\n${Error}ERROR${Off} Failed to enable m2 volume support!"
fi
fi
fi
fi
fi
# Edit synoinfo.conf to prevent drive db updates
dtu=drive_db_test_url
url="$(/usr/syno/bin/synogetkeyvalue $synoinfo ${dtu})"
disabled=""
if [[ $nodbupdate == "yes" ]]; then
if [[ ! $url ]]; then
# Add drive_db_test_url="127.0.0.1"
#echo 'drive_db_test_url="127.0.0.1"' >> "$synoinfo"
/usr/syno/bin/synosetkeyvalue "$synoinfo" "$dtu" "127.0.0.1"
# Junior boot
#[ -d /tmpRoot ] && /tmpRoot/usr/syno/bin/synosetkeyvalue /tmpRoot/etc.defaults/synoinfo.conf "$dtu" "127.0.0.1"
if [ -f /tmpRoot/usr/syno/bin/synosetkeyvalue ] && [ -f /tmpRoot/etc.defaults/synoinfo.conf ]; then
/tmpRoot/usr/syno/bin/synosetkeyvalue /tmpRoot/etc.defaults/synoinfo.conf "$dtu" "127.0.0.1"
fi
disabled="yes"
elif [[ $url != "127.0.0.1" ]]; then
# Edit drive_db_test_url=
/usr/syno/bin/synosetkeyvalue "$synoinfo" "$dtu" "127.0.0.1"
# Junior boot
#[ -d /tmpRoot ] && /tmpRoot/usr/syno/bin/synosetkeyvalue /tmpRoot/etc.defaults/synoinfo.conf "$dtu" "127.0.0.1"
if [ -f /tmpRoot/usr/syno/bin/synosetkeyvalue ] && [ -f /tmpRoot/etc.defaults/synoinfo.conf ]; then
/tmpRoot/usr/syno/bin/synosetkeyvalue /tmpRoot/etc.defaults/synoinfo.conf "$dtu" "127.0.0.1"
fi
disabled="yes"
fi
# Check if we disabled drive db auto updates
url="$(/usr/syno/bin/synogetkeyvalue $synoinfo drive_db_test_url)"
if [[ $disabled == "yes" ]]; then
if [[ $url == "127.0.0.1" ]]; then
echo -e "\nDisabled drive db auto updates."
else
echo -e "\n${Error}ERROR${Off} Failed to disable drive db auto updates!"
fi
else
echo -e "\nDrive db auto updates already disabled."
fi
else
# Re-enable drive db updates
#if [[ $url == "127.0.0.1" ]]; then
if [[ $url ]]; then
# Delete "drive_db_test_url=127.0.0.1" line (inc. line break)
sed -i "/drive_db_test_url=*/d" "$synoinfo"
sed -i "/drive_db_test_url=*/d" /etc/synoinfo.conf
# Check if we re-enabled drive db auto updates
url="$(/usr/syno/bin/synogetkeyvalue $synoinfo drive_db_test_url)"
if [[ $url != "127.0.0.1" ]]; then
echo -e "\nRe-enabled drive db auto updates."
else
echo -e "\n${Error}ERROR${Off} Failed to enable drive db auto updates!"
fi
else
echo -e "\nDrive db auto updates already enabled."
fi
fi
# Optionally disable "support_wdda"
setting="$(/usr/syno/bin/synogetkeyvalue $synoinfo support_wdda)"
if [[ $wdda == "no" ]]; then
if [[ $setting == "yes" ]]; then
# Disable support_wdda
/usr/syno/bin/synosetkeyvalue "$synoinfo" support_wdda "no"
setting="$(/usr/syno/bin/synogetkeyvalue "$synoinfo" support_wdda)"
if [[ $setting == "no" ]]; then
echo -e "\nDisabled support WDDA."
fi
elif [[ $setting == "no" ]]; then
echo -e "\nSupport WDDA already disabled."
fi
fi
# Enable creating pool on drives in M.2 adaptor card
if [[ -f "$strgmgr" ]] && [[ $buildnumber -gt 42962 ]]; then
# DSM 7.1.1 and later
if [[ ${#m2cards[@]} -gt "0" ]] || [[ $forcepci == "yes" ]]; then
if grep -q 'notSupportM2Pool_addOnCard' "$strgmgr"; then
# Backup storage_panel.js"
if [[ $buildnumber -gt 64570 ]]; then
# DSM 7.2.1 and later
strgmgrver="$(/usr/syno/bin/synopkg version StorageManager)"
elif [[ $buildnumber -ge 42962 ]]; then
# DSM 7.1.1 to 7.2
strgmgrver="${buildnumber}${smallfixnumber}"
fi
echo ""
if [[ ! -f "${strgmgr}.$strgmgrver" ]]; then
if cp -p "$strgmgr" "${strgmgr}.$strgmgrver"; then
echo -e "Backed up $(basename -- "$strgmgr")"
else
echo -e "${Error}ERROR${Off} Failed to backup $(basename -- "$strgmgr")!"
fi
fi
sed -i 's/notSupportM2Pool_addOnCard:this.T("disk_info","disk_reason_m2_add_on_card"),//g' "$strgmgr"
sed -i 's/},{isConditionInvalid:0<this.pciSlot,invalidReason:"notSupportM2Pool_addOnCard"//g' "$strgmgr"
# Check if we edited file
if ! grep -q 'notSupportM2Pool_addOnCard' "$strgmgr"; then
echo -e "Enabled creating pool on drives in M.2 adaptor card."
else
echo -e "${Error}ERROR${Off} Failed to enable creating pool on drives in M.2 adaptor card!"
fi
else
echo -e "\nCreating pool in UI on drives in M.2 adaptor card already enabled."
fi
fi
fi
# Optionally update IronWolf Health Management
if [[ $arch == "x86_64" ]]; then
if [[ $ihm == "yes" ]]; then
setting="$(/usr/syno/bin/synogetkeyvalue $synoinfo support_ihm)"
if [[ $setting != "yes" ]]; then
# Enable support_ihm
/usr/syno/bin/synosetkeyvalue "$synoinfo" support_ihm "yes"
setting="$(/usr/syno/bin/synogetkeyvalue "$synoinfo" support_ihm)"
if [[ $setting == "yes" ]]; then
echo -e "\nEnabled support IronWolf Health Management."
fi
else
echo -e "\nSupport IronWolf Health Management already enabled."
fi
if [[ ! -f /usr/syno/sbin/dhm_tool ]]; then
# Install dhm_tool on models without it ('22 series and newer)
# Untested
md5hash="cf67c1d5006913297f85ca7f9d1795ba"
branch="main"
file_url="https://raw.githubusercontent.com/${repo}/${branch}/bin/dhm_tool"
# install_binfile <file> <file-url> <destination> <chmod> <bundled-path> <hash>
install_binfile dhm_tool "$file_url" /usr/syno/sbin/dhm_tool "755" bin/dhm_tool "$md5hash"
else
# Check if dhm_tool needs updating
dhm_version="$(dhm_tool --version | grep "Utility Version" | awk '{print $NF}')"
if ! printf "%s\n%s\n" "2.5.1" "$dhm_version" |
sort --check=quiet --version-sort >/dev/null ; then
# Backup existing dhm_tool
backupdb "/usr/syno/sbin/dhm_tool"
# Update dhm_tool
md5hash="cf67c1d5006913297f85ca7f9d1795ba"
branch="main"
file_url="https://raw.githubusercontent.com/${repo}/${branch}/bin/dhm_tool"
# install_binfile <file> <file-url> <destination> <chmod> <bundled-path> <hash>
install_binfile dhm_tool "$file_url" /usr/syno/sbin/dhm_tool "755" bin/dhm_tool "$md5hash"
# Check dhm_tool updated
dhm_version="$(dhm_tool --version | grep "Utility Version" | awk '{print $NF}')"
if [[ $dhm_version == "2.5.1" ]]; then
echo "Updated IronWolf Health Management."
else
echo "${Error}ERROR${Off} Failed to update IronWolf Health Management!"
fi
else
echo "IronWolf Health Management already updated."
fi
fi
fi
fi
#------------------------------------------------------------------------------
# Finished
show_changes(){
# $1 is drive_model,firmware_version,size_gb
drive_model="$(printf "%s" "$1" | cut -d"," -f 1)"
echo -e "\n$drive_model:"
jq -r --arg drive_model "$drive_model" '.disk_compatbility_info[$drive_model]' "${db1list[0]}"
}
# Show the changes
if [[ ${showedits,,} == "yes" ]]; then
# HDDs/SSDs
for d in "${hdds[@]}"; do
show_changes "$d"
done
# NVMe drives
for d in "${nvmes[@]}"; do
show_changes "$d"
done
fi
# Make Synology check disk compatibility
if [[ -f /usr/syno/sbin/synostgdisk ]]; then # DSM 6.2.3 does not have synostgdisk
/usr/syno/sbin/synostgdisk --check-all-disks-compatibility
status=$?
if [[ $status -eq "0" ]]; then
echo -e "\nDSM successfully checked disk compatibility."
rebootmsg=yes # Show reboot message at end
else
# Ignore DSM 6.2.4 as it returns 255 for "synostgdisk --check-all-disks-compatibility"
# and DSM 6.2.3 and lower have no synostgdisk command
if [[ $dsm -gt "6" ]]; then
echo -e "\nDSM ${Red}failed${Off} to check disk compatibility with exit code $status"
rebootmsg=yes # Show reboot message at end
fi
fi
fi
# Show reboot message if required
if [[ $dsm -eq "6" ]] || [[ $rebootmsg == "yes" ]]; then
echo -e "\nYou may need to ${Cyan}reboot the Synology${Off} to see the changes."
fi
exit
|
train_000.parquet/760
|
{
"file_path": "syno_hdd_db.sh",
"repo_id": "007revad/Synology_HDD_db",
"size": 86726,
"token_count": 31715
}
|
var TaskModel = (function () {
function TaskModel(data) {
var _this = this;
this.removed = ko.observable(false);
this.pausing = ko.observable(false);
this.resuming = ko.observable(false);
this.pauseButtonVisible = ko.computed(function () {
return ['paused', 'finished', 'error'].indexOf(_this.status()) == -1;
});
this.resumeButtonVisible = ko.computed(function () {
return ['error', 'paused'].indexOf(_this.status()) !== -1;
});
this.visible = ko.computed(function () {
return _this.removed() == false &&
!(viewModel.hideSeedingTorrents() && _this.status() == 'seeding');
});
this.progress = ko.computed(function () {
if (_this.status() == "extracting" && _this.unzipProgress() != null)
return _this.unzipProgressString();
else if (_this.status() == "seeding" && _this.uploadRatio() != null)
return _this.uploadRatioString();
else
return _this.downloadProgressString();
});
this.progressBarStripedClass = ko.computed(function () {
var cssClass = "";
switch (_this.status()) {
case "waiting":
case "finishing":
case "hash_checking":
case "seeding":
case "filehost_waiting":
cssClass += " progress-striped active";
break;
}
if ((_this.status() == "extracting" && _this.unzipProgress() != null) || (_this.status() == "seeding" && _this.uploadRatio() != null))
cssClass += " fill-bar";
return cssClass;
});
this.progressBarClass = ko.computed(function () {
var cssClass;
switch (_this.status()) {
case "error":
cssClass = "progress-bar-danger";
break;
case "finished":
case "seeding":
cssClass = "progress-bar-success";
break;
default:
cssClass = "progres-bar-info";
}
return cssClass;
});
this.progressText = ko.computed(function () {
var sizeDownloaded = _this.sizeDownloaded();
var totalSize = _this.size();
var sizeString;
if (sizeDownloaded == totalSize) {
sizeString = _this.sizeString();
}
else {
sizeString = extension.getLocalizedString("progressOf", [_this.sizeDownloadedString(), _this.sizeString()]);
}
return sizeString + " - " + _this.statusText();
});
this.statusText = ko.computed(function () {
var localizedStatus = extension.getLocalizedString("task_status_" + _this.status());
var errorDetail = typeof _this.errorDetail() === "string" ? _this.errorDetail() : _this.status();
switch (_this.status()) {
case "downloading":
return _this.etaString() ?
(localizedStatus + " (" + _this.speedDownloadString() + ", " + _this.etaString() + ")") :
(localizedStatus + " (" + _this.speedDownloadString() + ")");
case "seeding":
return localizedStatus + " (" + _this.speedUploadString() + ")";
case "extracting":
return localizedStatus + " (" + _this.unzipProgress() + "%)";
case "error":
return typeof _this.errorDetail() === "string" ?
extension.getLocalizedString("task_status_" + _this.errorDetail()) :
localizedStatus;
default:
return localizedStatus;
}
});
ko.mapping.fromJS(data, {}, this);
}
TaskModel.prototype.resume = function () {
var _this = this;
if (!this.resuming()) {
this.resuming(true);
getBackgroundPage().resumeTask(this.id(), function (success) {
_this.resuming(false);
if (success) {
_this.status("waiting");
}
});
}
};
;
TaskModel.prototype.pause = function () {
var _this = this;
if (!this.pausing()) {
this.pausing(true);
getBackgroundPage().pauseTask(this.id(), function (success) {
_this.pausing(false);
if (success) {
_this.status("paused");
}
});
}
};
;
TaskModel.prototype.toggleConfirmRemove = function (item, event) {
$(event.target).closest("li").find(".confirm-delete").toggleClass("active");
$(event.target).closest("li").find(".task-status").toggleClass("faded");
};
;
TaskModel.prototype.remove = function () {
var _this = this;
if (!this.removed()) {
this.removed(true);
getBackgroundPage().deleteTask(this.id(), function (success, data) {
_this.removed(success);
});
}
};
;
return TaskModel;
}());
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImpzL3BvcG92ZXItdGFza21vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0lBdUJJLG1CQUFZLElBQTBCO1FBdkIxQyxpQkE4SkM7UUEzSUEsWUFBTyxHQUFHLEVBQUUsQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDL0IsWUFBTyxHQUFHLEVBQUUsQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDL0IsYUFBUSxHQUFHLEVBQUUsQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDLENBQUM7UUFNaEMsdUJBQWtCLEdBQUcsRUFBRSxDQUFDLFFBQVEsQ0FBVTtZQUN6QyxNQUFNLENBQUMsQ0FBQyxRQUFRLEVBQUUsVUFBVSxFQUFFLE9BQU8sQ0FBQyxDQUFDLE9BQU8sQ0FBQyxLQUFJLENBQUMsTUFBTSxFQUFFLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQztRQUNyRSxDQUFDLENBQUMsQ0FBQztRQUVILHdCQUFtQixHQUFHLEVBQUUsQ0FBQyxRQUFRLENBQVU7WUFDMUMsTUFBTSxDQUFDLENBQUMsT0FBTyxFQUFFLFFBQVEsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxLQUFJLENBQUMsTUFBTSxFQUFFLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQztRQUMxRCxDQUFDLENBQUMsQ0FBQztRQUVILFlBQU8sR0FBRyxFQUFFLENBQUMsUUFBUSxDQUFVO1lBQzlCLE1BQU0sQ0FBQyxLQUFJLENBQUMsT0FBTyxFQUFFLElBQUksS0FBSztnQkFDNUIsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxtQkFBbUIsRUFBRSxJQUFJLEtBQUksQ0FBQyxNQUFNLEVBQUUsSUFBSSxTQUFTLENBQUMsQ0FBQztRQUNwRSxDQUFDLENBQUMsQ0FBQztRQUVILGFBQVEsR0FBRyxFQUFFLENBQUMsUUFBUSxDQUFTO1lBQzlCLEVBQUUsQ0FBQSxDQUFDLEtBQUksQ0FBQyxNQUFNLEVBQUUsSUFBSSxZQUFZLElBQUksS0FBSSxDQUFDLGFBQWEsRUFBRSxJQUFJLElBQUks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QUMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxDQUFDLFdBQVcsQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUN6RSxDQUFDOztJQUVELDBCQUFNLEdBQU47UUFBQSxpQkFPQztRQU5BLEVBQUUsQ0FBQSxDQUFDLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLENBQUMsQ0FBQztZQUNwQixJQUFJLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDO1lBQ25CLGlCQUFpQixFQUFFLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxFQUFFLEVBQUUsRUFBRSxVQUFDLE9BQWdCLEVBQUUsSUFBUztnQkFDckUsS0FBSSxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQUMsQ0FBQztZQUN2QixDQUFDLENBQUMsQ0FBQztRQUNKLENBQUM7SUFDRixDQUFDOztJQUNGLGdCQUFDO0FBQUQsQ0E5SkEsQUE4SkMsSUFBQSIsImZpbGUiOiJqcy9wb3BvdmVyLXRhc2ttb2RlbC5qcyIsInNvdXJjZXNDb250ZW50IjpbImNsYXNzIFRhc2tNb2RlbCB7XG4gICAgaWQ6IEtub2Nrb3V0T2JzZXJ2YWJsZTxzdHJpbmc+O1xuICAgIHN0YXR1czogS25vY2tvdXRPYnNlcnZhYmxlPHN0cmluZz47XG4gICAgZXJyb3JEZXRhaWw6IEtub2Nrb3V0T2JzZXJ2YWJsZTxzdHJpbmc+O1xuICAgIHVuemlwUHJvZ3Jlc3M6IEtub2Nrb3V0T2JzZXJ2YWJsZTxzdHJpbmc+O1xuICAgIHVuemlwUHJvZ3Jlc3NTdHJpbmc6IEtub2Nrb3V0T2JzZXJ2YWJsZTxzdHJpbmc+O1xuICAgIHVwbG9hZFJhdGlvOiBLbm9ja291dE9ic2VydmFibGU8bnVtYmVyPjtcbiAgICB1cGxvYWRSYXRpb1N0cmluZzogS25vY2tvdXRPYnNlcnZhYmxlPHN0cmluZz47XG4gICAgc2l6ZTogS25vY2tvdXRPYnNlcnZhYmxlPG51bWJlcj47XG4gICAgc2l6ZVN0cmluZzogS25vY2tvdXRPYnNlcnZhYmxlPHN0cmluZz47XG4gICAgc2l6ZURvd25sb2FkZWQ6IEtub2Nrb3V0T2JzZXJ2YWJsZTxudW1iZXI+O1xuICAgIHNpemVEb3dubG9hZGVkU3RyaW5nOiBLbm9ja291dE9ic2VydmFibGU8c3RyaW5nPjtcbiAgICBkb3dubG9hZFByb2dyZXNzU3RyaW5nOiBLbm9ja291dE9ic2VydmFibGU8c3RyaW5nPjtcbiAgICBzcGVlZERvd25sb2FkOiBLbm9ja291dE9ic2VydmFibGU8bnVtYmVyPjtcbiAgICBzcGVlZERvd25sb2FkU3RyaW5nOiBLbm9ja291dE9ic2VydmFibGU8c3RyaW5nPjtcbiAgICBzcGVlZFVwbG9hZDogS25vY2tvdXRPYnNlcnZhYmxlPG51bWJlcj47XG4gICAgc3BlZWRVcGxvYWRTdHJpbmc6IEtub2Nrb3V0T2JzZXJ2YWJsZTxzdHJpbmc+O1xuICAgIGV0YVN0cmluZzogS25vY2tvdXRPYnNlcnZhYmxlPHN0cmluZz47XG5cblx0cmVtb3ZlZCA9IGtvLm9ic2VydmFibGUoZmFsc2UpO1xuXHRwYXVzaW5nID0ga28ub2JzZXJ2YWJsZShmYWxzZSk7XG5cdHJlc3VtaW5nID0ga28ub2JzZXJ2YWJsZShmYWxzZSk7XG5cdFxuICAgIGNvbnN0cnVjdG9yKGRhdGE6IElEb3dubG9hZFN0YXRpb25UYXNrKSB7XG4gICAgICAgIGtvLm1hcHBpbmcuZnJvbUpTKGRhdGEsIHt9LCB0aGlzKTtcbiAgICB9XG4gICAgXG5cdHBhdXNlQnV0dG9uVmlzaWJsZSA9IGtvLmNvbXB1dGVkPGJvb2xlYW4+KCgpID0+IHtcblx0XHRyZXR1cm4gWydwYXVzZWQnLCAnZmluaXNoZWQnLCAnZXJyb3InXS5pbmRleE9mKHRoaXMuc3RhdHVzKCkpID09IC0xO1xuXHR9KTtcblx0XG5cdHJlc3VtZUJ1dHRvblZpc2libGUgPSBrby5jb21wdXRlZDxib29sZWFuPigoKSA9PiB7XG5cdFx0cmV0dXJuIFsnZXJyb3InLCAncGF1c2VkJ10uaW5kZXhPZih0aGlzLnN0YXR1cygpKSAhPT0gLTE7XG5cdH0pO1xuXHRcblx0dmlzaWJsZSA9IGtvLmNvbXB1dGVkPGJvb2xlYW4+KCgpID0+IHtcblx0XHRyZXR1cm4gdGhpcy5yZW1vdmVkKCkgPT0gZmFsc2UgJiYgXG5cdFx0XHRcdCEodmlld01vZGVsLmhpZGVTZWVkaW5nVG9ycmVudHMoKSAmJiB0aGlzLnN0YXR1cygpID09ICdzZWVkaW5nJyk7XG5cdH0pO1xuXHRcblx0cHJvZ3Jlc3MgPSBrby5jb21wdXRlZDxzdHJpbmc+KCgpID0+IHtcblx0XHRpZih0aGlzLnN0YXR1cygpID09IFwiZXh0cmFjdGluZ1wiICYmIHRoaXMudW56aXBQcm9ncmVzcygpICE9IG51bGwpXG5cdFx0XHRyZXR1cm4gdGhpcy51bnppcFByb2dyZXNzU3RyaW5nKCk7XG5cdFx0ZWxzZSBpZiAodGhpcy5zdGF0dXMoKSA9PSBcInNlZWRpbmdcIiAmJiB0aGlzLnVwbG9hZFJhdGlvKCkgIT0gbnVsbClcblx0XHRcdHJldHVybiB0aGlzLnVwbG9hZFJhdGlvU3RyaW5nKCk7XG5cdFx0ZWxzZVxuXHRcdFx0cmV0dXJuIHRoaXMuZG93bmxvYWRQcm9ncmVzc1N0cmluZygpO1xuXHR9KTtcblx0XG5cdHByb2dyZXNzQmFyU3RyaXBlZENsYXNzID0ga28uY29tcHV0ZWQ8c3RyaW5nPigoKSA9PiB7XG5cdFx0dmFyIGNzc0NsYXNzID0gXCJcIjtcblx0XHRcblx0XHRzd2l0Y2godGhpcy5zdGF0dXMoKSkge1xuXHRcdFx0Y2FzZSBcIndhaXRpbmdcIjpcblx0XHRcdGNhc2UgXCJmaW5pc2hpbmdcIjpcblx0XHRcdGNhc2UgXCJoYXNoX2NoZWNraW5nXCI6XG5cdFx0XHRjYXNlIFwic2VlZGluZ1wiOlxuXHRcdFx0Y2FzZSBcImZpbGVob3N0X3dhaXRpbmdcIjpcblx0XHRcdFx0Y3NzQ2xhc3MgKz0gXCIgcHJvZ3Jlc3Mtc3RyaXBlZCBhY3RpdmVcIjtcblx0XHRcdFx0YnJlYWs7XG5cdFx0fVxuXHRcdFxuXHRcdGlmICgodGhpcy5zdGF0dXMoKSA9PSBcImV4dHJhY3RpbmdcIiAmJiB0aGlzLnVuemlwUHJvZ3Jlc3MoKSAhPSBudWxsKSB8fCAodGhpcy5zdGF0dXMoKSA9PSBcInNlZWRpbmdcIiAmJiB0aGlzLnVwbG9hZFJhdGlvKCkgIT0gbnVsbCkpXG5cdFx0XHRjc3NDbGFzcyArPSBcIiBmaWxsLWJhclwiO1xuXHRcdFx0XG5cdFx0cmV0dXJuIGNzc0NsYXNzO1xuXHR9KTtcblx0XG5cdHByb2dyZXNzQmFyQ2xhc3MgPSBrby5jb21wdXRlZDxzdHJpbmc+KCgpID0+IHtcblx0XHR2YXIgY3NzQ2xhc3M6IHN0cmluZztcblx0XHRzd2l0Y2godGhpcy5zdGF0dXMoKSkge1xuXHRcdFx0Y2FzZSBcImVycm9yXCI6XG5cdFx0XHRcdGNzc0NsYXNzID0gXCJwcm9ncmVzcy1iYXItZGFuZ2VyXCI7XG5cdFx0XHRcdGJyZWFrO1xuXHRcdFx0Y2FzZSBcImZpbmlzaGVkXCI6XG5cdFx0XHRjYXNlIFwic2VlZGluZ1wiOlxuXHRcdFx0XHRjc3NDbGFzcyA9IFwicHJvZ3Jlc3MtYmFyLXN1Y2Nlc3NcIjtcblx0XHRcdFx0YnJlYWs7XG5cdFx0XHRkZWZhdWx0OlxuXHRcdFx0XHRjc3NDbGFzcyA9IFwicHJvZ3Jlcy1iYXItaW5mb1wiO1xuXHRcdH1cblx0XHRcblx0XHRyZXR1cm4gY3NzQ2xhc3M7XG5cdH0pO1xuXHRcblx0cHJvZ3Jlc3NUZXh0ID0ga28uY29tcHV0ZWQ8c3RyaW5nPigoKSA9PiB7XG5cdFx0dmFyIHNpemVEb3dubG9hZGVkID0gdGhpcy5zaXplRG93bmxvYWRlZCgpXG5cdFx0dmFyIHRvdGFsU2l6ZSA9IHRoaXMuc2l6ZSgpO1xuXHRcdHZhciBzaXplU3RyaW5nOiBzdHJpbmc7XG5cdFx0aWYoc2l6ZURvd25sb2FkZWQgPT0gdG90YWxTaXplKXtcblx0XHRcdHNpemVTdHJpbmcgPSB0aGlzLnNpemVTdHJpbmcoKVxuXHRcdH1cblx0XHRlbHNlIHtcblx0XHRcdHNpemVTdHJpbmcgPSBleHRlbnNpb24uZ2V0TG9jYWxpemVkU3RyaW5nKFwicHJvZ3Jlc3NPZlwiLCBbdGhpcy5zaXplRG93bmxvYWRlZFN0cmluZygpLCB0aGlzLnNpemVTdHJpbmcoKV0pO1xuXHRcdH1cblx0XHRcblx0XHRyZXR1cm4gc2l6ZVN0cmluZyAgKyBcIiAtIFwiICsgdGhpcy5zdGF0dXNUZXh0KCk7XG5cdH0pO1xuXHRcblx0c3RhdHVzVGV4dCA9IGtvLmNvbXB1dGVkPHN0cmluZz4oKCkgPT4ge1xuXHRcdHZhciBsb2NhbGl6ZWRTdGF0dXMgPSBleHRlbnNpb24uZ2V0TG9jYWxpemVkU3RyaW5nKFwidGFza19zdGF0dXNfXCIgKyB0aGlzLnN0YXR1cygpKTtcblx0XHR2YXIgZXJyb3JEZXRhaWwgPSB0eXBlb2YgdGhpcy5lcnJvckRldGFpbCgpID09PSBcInN0cmluZ1wiID8gdGhpcy5lcnJvckRldGFpbCgpIDogdGhpcy5zdGF0dXMoKTtcblx0XHRcblx0XHRzd2l0Y2godGhpcy5zdGF0dXMoKSkge1xuXHRcdFx0Y2FzZSBcImRvd25sb2FkaW5nXCI6XG5cdFx0XHQgICAgcmV0dXJuIHRoaXMuZXRhU3RyaW5nKCkgP1xuXHRcdFx0ICAgICAgICAgICAgKGxvY2FsaXplZFN0YXR1cyArIFwiIChcIiArIHRoaXMuc3BlZWREb3dubG9hZFN0cmluZygpICsgXCIsIFwiICsgdGhpcy5ldGFTdHJpbmcoKSArIFwiKVwiKSA6XG5cdFx0XHQgICAgICAgICAgICAobG9jYWxpemVkU3RhdHVzICsgXCIgKFwiICsgdGhpcy5zcGVlZERvd25sb2FkU3RyaW5nKCkgKyBcIilcIik7XG5cdFx0XHRjYXNlIFwic2VlZGluZ1wiOlxuXHRcdFx0XHRyZXR1cm4gbG9jYWxpemVkU3RhdHVzICsgXCIgKFwiICsgdGhpcy5zcGVlZFVwbG9hZFN0cmluZygpICsgXCIpXCI7XG5cdFx0XHRjYXNlIFwiZXh0cmFjdGluZ1wiOlxuXHRcdFx0XHRyZXR1cm4gbG9jYWxpemVkU3RhdHVzICsgXCIgKFwiICsgdGhpcy51bnppcFByb2dyZXNzKCkgKyBcIiUpXCI7XG5cdFx0XHRjYXNlIFwiZXJyb3JcIjpcblx0XHRcdFx0cmV0dXJuIHR5cGVvZiB0aGlzLmVycm9yRGV0YWlsKCkgPT09IFwic3RyaW5nXCIgP1xuXHRcdFx0XHRcdFx0XHRcdGV4dGVuc2lvbi5nZXRMb2NhbGl6ZWRTdHJpbmcoXCJ0YXNrX3N0YXR1c19cIiArIHRoaXMuZXJyb3JEZXRhaWwoKSkgOlxuXHRcdFx0XHRcdFx0XHRcdGxvY2FsaXplZFN0YXR1cztcblx0XHRcdGRlZmF1bHQ6XG5cdFx0XHRcdHJldHVybiBsb2NhbGl6ZWRTdGF0dXM7XG5cdFx0fVxuXHR9KTtcblx0XG5cdHJlc3VtZSgpOiB2b2lkIHtcblx0XHRpZighdGhpcy5yZXN1bWluZygpKSB7XG5cdFx0XHR0aGlzLnJlc3VtaW5nKHRydWUpO1xuXHRcdFx0Z2V0QmFja2dyb3VuZFBhZ2UoKS5yZXN1bWVUYXNrKHRoaXMuaWQoKSwgKHN1Y2Nlc3M6IGJvb2xlYW4pID0+IHtcblx0XHRcdFx0dGhpcy5yZXN1bWluZyhmYWxzZSk7XG5cdFx0XHRcdGlmKHN1Y2Nlc3MpIHtcblx0XHRcdFx0XHR0aGlzLnN0YXR1cyhcIndhaXRpbmdcIik7XG5cdFx0XHRcdH1cblx0XHRcdH0pO1xuXHRcdH1cblx0fTtcblx0XG5cdHBhdXNlKCk6IHZvaWQge1xuXHRcdGlmKCF0aGlzLnBhdXNpbmcoKSkge1xuXHRcdFx0dGhpcy5wYXVzaW5nKHRydWUpO1xuXHRcdFx0Z2V0QmFja2dyb3VuZFBhZ2UoKS5wYXVzZVRhc2sodGhpcy5pZCgpLCAoc3VjY2VzczogYm9vbGVhbikgPT4ge1xuXHRcdFx0XHR0aGlzLnBhdXNpbmcoZmFsc2UpO1xuXHRcdFx0XHRpZihzdWNjZXNzKSB7XG5cdFx0XHRcdFx0dGhpcy5zdGF0dXMoXCJwYXVzZWRcIik7XG5cdFx0XHRcdH1cblx0XHRcdH0pO1xuXHRcdH1cblx0fTtcblx0XG5cdHRvZ2dsZUNvbmZpcm1SZW1vdmUoaXRlbTogYW55LCBldmVudDogRXZlbnQpOiB2b2lkIHtcblx0XHQkKGV2ZW50LnRhcmdldCkuY2xvc2VzdChcImxpXCIpLmZpbmQoXCIuY29uZmlybS1kZWxldGVcIikudG9nZ2xlQ2xhc3MoXCJhY3RpdmVcIik7XG5cdFx0JChldmVudC50YXJnZXQpLmNsb3Nlc3QoXCJsaVwiKS5maW5kKFwiLnRhc2stc3RhdHVzXCIpLnRvZ2dsZUNsYXNzKFwiZmFkZWRcIik7XG5cdH07XG5cdFxuXHRyZW1vdmUoKTogdm9pZCB7XG5cdFx0aWYoIXRoaXMucmVtb3ZlZCgpKSB7XG5cdFx0XHR0aGlzLnJlbW92ZWQodHJ1ZSk7XG5cdFx0XHRnZXRCYWNrZ3JvdW5kUGFnZSgpLmRlbGV0ZVRhc2sodGhpcy5pZCgpLCAoc3VjY2VzczogYm9vbGVhbiwgZGF0YTogYW55KSA9PiB7XG5cdFx0XHRcdHRoaXMucmVtb3ZlZChzdWNjZXNzKTtcblx0XHRcdH0pO1xuXHRcdH1cblx0fTtcbn0iXSwic291cmNlUm9vdCI6Ii9zb3VyY2UvIn0=
|
train_000.parquet/761
|
{
"file_path": "js/popover-taskmodel.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 18981,
"token_count": 11897
}
|
var FileStationAPI = (function () {
function FileStationAPI(downloadStation) {
this.downloadStation = downloadStation;
}
FileStationAPI.prototype.listFolders = function (folderPath, callback) {
var _this = this;
if (!folderPath) {
folderPath = "/";
}
if (folderPath == "/") {
this.fileStationListShare(function (success, data) {
if (data.shares) {
data = data.shares;
}
if (callback) {
callback(success, data);
}
});
}
else {
this.fileStationList(folderPath, function (success, data) {
if (data.files) {
data = data.files;
}
if (callback) {
callback.call(_this, success, data);
}
});
}
};
;
FileStationAPI.prototype.createFolder = function (destinationPath, name, callback) {
var params = {
dest: destinationPath,
type: 'folder',
name: name
};
downloadStation._apiCall('SYNO.Core.File', 'create', 1, params, callback);
};
;
FileStationAPI.prototype.fileStationListShare = function (callback) {
var params = {
offset: 0,
limit: 0,
sort_by: 'name',
sort_direction: 'asc',
onlywritable: false,
additional: 'perm'
};
downloadStation._apiCall('SYNO.FileStation.List', 'list_share', 1, params, callback);
};
;
FileStationAPI.prototype.fileStationList = function (folderPath, callback) {
var params = {
folder_path: folderPath,
offset: 0,
limit: 0,
sort_by: 'name',
sort_direction: 'asc',
filetype: 'dir',
onlywritable: false,
additional: 'perm'
};
downloadStation._apiCall('SYNO.FileStation.List', 'list', 1, params, callback);
};
;
FileStationAPI.prototype.fileStationFileInfo = function (paths, callback) {
if (Array.isArray(paths)) {
paths = paths.join(",");
}
var params = {
path: paths,
additional: "size,type"
};
downloadStation._apiCall('SYNO.FileStation.List', 'getinfo', 1, params, callback);
};
FileStationAPI.prototype.fileStationCreateFolder = function (folder_path, names, callback) {
if (Array.isArray(names)) {
names = names.join(",");
}
var params = {
folder_path: folder_path,
name: names,
force_parent: false
};
downloadStation._apiCall('SYNO.FileStation.CreateFolder', 'create', 1, params, callback);
};
FileStationAPI.prototype.fileStationRename = function (path, newName, callback) {
var params = {
path: path,
name: newName,
additional: "perm"
};
downloadStation._apiCall("SYNO.FileStation.Rename", "rename", 1, params, function (success, data, errors) {
if (success && data.files.length == 1) {
data = data.files[0];
}
if (callback) {
callback(success, data, errors);
}
});
};
FileStationAPI.prototype.fileStationDelete = function (paths, callback) {
if (Array.isArray(paths)) {
paths = paths.join(",");
}
var params = {
path: paths,
recursive: true
};
downloadStation._apiCall('SYNO.FileStation.Delete', 'delete', 1, params, callback);
};
;
return FileStationAPI;
}());
//# sourceMappingURL=data:application/json;base64,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QUFFLE1BQU07WUFDOUYsRUFBRSxDQUFBLENBQUMsT0FBTyxJQUFJLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUM7Z0JBQ3RDLElBQUksR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDO1lBQ2IsQ0FBQztZQUVWLEVBQUUsQ0FBQSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUM7Z0JBQ2IsUUFBUSxDQUFDLE9BQU8sRUFBRSxJQUFJLEVBQUUsTUFBTSxDQUFDLENBQUM7WUFDeEIsQ0FBQztRQUNYLENBQUMsQ0FBQyxDQUFDO0lBQ0osQ0FBQztJQUVNLDBDQUFpQixHQUF4QixVQUF5QixLQUEyQixFQUFFLFFBQXNGO1FBRTNJLEVBQUUsQ0FBQSxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FDeEIsQ0FBQztZQUNBLEtBQUssR0FBbUIsS0FBTSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQztRQUMxQyxDQUFDO1FBRUUsSUFBSSxNQUFNLEdBQUc7WUFDWixJQUFJLEVBQUUsS0FBSztZQUNYLFNBQVMsRUFBRSxJQUFJO1NBQ2YsQ0FBQztRQUVGLGVBQWUsQ0FBQyxRQUFRLENBQUMseUJBQXlCLEVBQUUsUUFBUSxFQUFFLENBQUMsRUFBRSxNQUFNLEVBQUUsUUFBUSxDQUFDLENBQUM7SUFDdkYsQ0FBQzs7SUFDRixxQkFBQztBQUFELENBM0lBLEFBMklDLElBQUEiLCJmaWxlIjoianMvZmlsZXN0YXRpb24tYXBpLmpzIiwic291cmNlc0NvbnRlbnQiOlsiY2xhc3MgRmlsZVN0YXRpb25BUEkge1xyXG4gICAgcHJpdmF0ZSBkb3dubG9hZFN0YXRpb246IERvd25sb2FkU3RhdGlvbkFQSTtcclxuXHJcbiAgICBjb25zdHJ1Y3Rvcihkb3dubG9hZFN0YXRpb246IERvd25sb2FkU3RhdGlvbkFQSSkge1xyXG4gICAgICAgIHRoaXMuZG93bmxvYWRTdGF0aW9uID0gZG93bmxvYWRTdGF0aW9uO1xyXG4gICAgfVxyXG5cclxuXHRwdWJsaWMgbGlzdEZvbGRlcnMoZm9sZGVyUGF0aDogc3RyaW5nLCBjYWxsYmFjazogKHN1Y2Nlc3M6IGJvb2xlYW4sIGRhdGE6IGFueSkgPT4gdm9pZCk6IHZvaWQge1xyXG5cdFx0aWYoIWZvbGRlclBhdGgpXHJcblx0XHR7XHJcblx0XHRcdGZvbGRlclBhdGggPSBcIi9cIjtcclxuXHRcdH1cclxuXHJcblx0XHRpZihmb2xkZXJQYXRoID09IFwiL1wiKVxyXG5cdFx0e1xyXG5cdFx0XHR0aGlzLmZpbGVTdGF0aW9uTGlzdFNoYXJlKChzdWNjZXNzLCBkYXRhKSA9PiB7XHJcblx0XHRcdFx0aWYoZGF0YS5zaGFyZXMpIHtcclxuXHRcdFx0XHRcdGRhdGEgPSBkYXRhLnNoYXJlcztcclxuICAgICAgICAgICAgICAgIH1cclxuXHRcdFx0XHRcclxuXHRcdFx0ICAgIGlmKGNhbGxiYWNrKSB7XHJcblx0XHRcdCAgICBcdGNhbGxiYWNrKHN1Y2Nlc3MsIGRhdGEpO1xyXG4gICAgICAgICAgICAgICAgfVxyXG5cdFx0XHR9KTtcclxuXHRcdH1cclxuXHRcdGVsc2VcclxuXHRcdHtcclxuXHRcdFx0dGhpcy5maWxlU3RhdGlvbkxpc3QoZm9sZGVyUGF0aCwgKHN1Y2Nlc3MsIGRhdGEpID0+IHtcclxuXHRcdFx0XHRpZihkYXRhLmZpbGVzKSB7XHJcblx0XHRcdFx0XHRkYXRhID0gZGF0YS5maWxlcztcclxuICAgICAgICAgICAgICAgIH1cclxuXHRcdFx0XHRcclxuXHRcdFx0ICAgIGlmKGNhbGxiYWNrKSB7XHJcblx0XHRcdCAgICBcdGNhbGxiYWNrLmNhbGwodGhpcywgc3VjY2VzcywgZGF0YSk7XHJcbiAgICAgICAgICAgICAgICB9XHJcblx0XHRcdH0pO1xyXG5cdFx0fVxyXG5cdH07XHJcblx0XHJcblx0cHVibGljIGNyZWF0ZUZvbGRlcihkZXN0aW5hdGlvblBhdGg6IHN0cmluZywgbmFtZTogc3RyaW5nLCBjYWxsYmFjazogKHN1Y2Nlc3M6IGJvb2xlYW4sIGRhdGE6IGFueSkgPT4gdm9pZCk6IHZvaWQge1xyXG5cdFx0dmFyIHBhcmFtcyA9IHtcclxuXHRcdFx0ZGVzdDogZGVzdGluYXRpb25QYXRoLFxyXG5cdFx0XHR0eXBlOiAnZm9sZGVyJyxcclxuXHRcdFx0bmFtZTogbmFtZVxyXG5cdFx0fTtcclxuXHRcdFxyXG5cdCAgICBkb3dubG9hZFN0YXRpb24uX2FwaUNhbGwoJ1NZTk8uQ29yZS5GaWxlJywgJ2NyZWF0ZScsIDEsIHBhcmFtcywgY2FsbGJhY2spO1xyXG5cdH07XHJcblx0XHJcblx0cHVibGljIGZpbGVTdGF0aW9uTGlzdFNoYXJlKGNhbGxiYWNrOiAoc3VjY2VzczogYm9vbGVhbiwgZGF0YTogYW55KSA9PiB2b2lkKTogdm9pZCB7XHJcblx0ICAgIHZhciBwYXJhbXMgPSB7XHJcblx0ICAgICAgICBvZmZzZXQ6IDAsXHJcblx0ICAgICAgICBsaW1pdDogMCxcclxuXHQgICAgICAgIHNvcnRfYnk6ICduYW1lJyxcclxuXHQgICAgICAgIHNvcnRfZGlyZWN0aW9uOiAnYXNjJyxcclxuXHQgICAgICAgIG9ubHl3cml0YWJsZTogZmFsc2UsXHJcblx0ICAgICAgICBhZGRpdGlvbmFsOiAncGVybSdcclxuXHQgICAgfTtcclxuXHRcclxuXHQgICAgZG93bmxvYWRTdGF0aW9uLl9hcGlDYWxsKCdTWU5PLkZpbGVTdGF0aW9uLkxpc3QnLCAnbGlzdF9zaGFyZScsIDEsIHBhcmFtcywgY2FsbGJhY2spO1xyXG5cdH07XHJcblx0XHJcblx0cHVibGljIGZpbGVTdGF0aW9uTGlzdChmb2xkZXJQYXRoOiBzdHJpbmcsIGNhbGxiYWNrOiAoc3VjY2VzczogYm9vbGVhbiwgZGF0YTogYW55KSA9PiB2b2lkKTogdm9pZCB7XHJcblx0ICAgIHZhciBwYXJhbXMgPSB7XHJcblx0ICAgIFx0Zm9sZGVyX3BhdGg6IGZvbGRlclBhdGgsXHJcblx0ICAgICAgICBvZmZzZXQ6IDAsXHJcblx0ICAgICAgICBsaW1pdDogMCxcclxuXHQgICAgICAgIHNvcnRfYnk6ICduYW1lJyxcclxuXHQgICAgICAgIHNvcnRfZGlyZWN0aW9uOiAnYXNjJyxcclxuXHQgICAgICAgIGZpbGV0eXBlOiAnZGlyJywgLy8gZmlsZSwgZGlyLCBhbGxcclxuXHQgICAgICAgIG9ubHl3cml0YWJsZTogZmFsc2UsXHJcblx0ICAgICAgICBhZGRpdGlvbmFsOiAncGVybSdcclxuXHQgICAgfTtcclxuICAgICAgICBcclxuXHQgICAgZG93bmxvYWRTdGF0aW9uLl9hcGlDYWxsKCdTWU5PLkZpbGVTdGF0aW9uLkxpc3QnLCAnbGlzdCcsIDEsIHBhcmFtcywgY2FsbGJhY2spO1xyXG5cdH07XHJcblx0XHJcblx0cHVibGljIGZpbGVTdGF0aW9uRmlsZUluZm8ocGF0aHM6IHN0cmluZ3xBcnJheTxzdHJpbmc+LCBjYWxsYmFjazogKHN1Y2Nlc3M6IGJvb2xlYW4sIGRhdGE6IGFueSkgPT4gdm9pZCk6IHZvaWQge1xyXG5cdFx0aWYoQXJyYXkuaXNBcnJheShwYXRocykpXHJcblx0XHR7XHJcblx0XHRcdHBhdGhzID0gKDxBcnJheTxzdHJpbmc+PnBhdGhzKS5qb2luKFwiLFwiKTtcclxuXHRcdH1cclxuXHRcdFxyXG5cdCAgICB2YXIgcGFyYW1zID0ge1xyXG5cdCAgICBcdHBhdGg6IHBhdGhzLFxyXG5cdCAgICBcdGFkZGl0aW9uYWw6IFwic2l6ZSx0eXBlXCJcclxuXHQgICAgfTtcclxuXHRcclxuXHQgICAgZG93bmxvYWRTdGF0aW9uLl9hcGlDYWxsKCdTWU5PLkZpbGVTdGF0aW9uLkxpc3QnLCAnZ2V0aW5mbycsIDEsIHBhcmFtcywgY2FsbGJhY2spO1xyXG5cdH1cclxuXHRcclxuXHRwdWJsaWMgZmlsZVN0YXRpb25DcmVhdGVGb2xkZXIoZm9sZGVyX3BhdGg6IHN0cmluZywgbmFtZXM6IHN0cmluZ3xBcnJheTxzdHJpbmc+LCBjYWxsYmFjazogKHN1Y2Nlc3M6IGJvb2xlYW4sIGRhdGE6IGFueSwgYWRkaXRpb25hbEVycm9ycz86IFN5bm9sb2d5QXBpRXJyb3JbXSkgPT4gdm9pZCk6IHZvaWQge1xyXG5cdFx0XHJcblx0XHRpZihBcnJheS5pc0FycmF5KG5hbWVzKSlcclxuXHRcdHtcclxuXHRcdFx0bmFtZXMgPSAoPEFycmF5PHN0cmluZz4+bmFtZXMpLmpvaW4oXCIsXCIpO1xyXG5cdFx0fVxyXG5cdFx0XHJcblx0ICAgIHZhciBwYXJhbXMgPSB7XHJcblx0ICAgIFx0Zm9sZGVyX3BhdGg6IGZvbGRlcl9wYXRoLFxyXG5cdCAgICBcdG5hbWU6IG5hbWVzLFxyXG5cdCAgICBcdGZvcmNlX3BhcmVudDogZmFsc2VcclxuXHQgICAgfTtcclxuXHRcclxuXHQgICAgZG93bmxvYWRTdGF0aW9uLl9hcGlDYWxsKCdTWU5PLkZpbGVTdGF0aW9uLkNyZWF0ZUZvbGRlcicsICdjcmVhdGUnLCAxLCBwYXJhbXMsIGNhbGxiYWNrKTtcclxuXHR9XHJcblx0XHJcblx0cHVibGljIGZpbGVTdGF0aW9uUmVuYW1lKHBhdGg6IHN0cmluZywgbmV3TmFtZTogc3RyaW5nLCBjYWxsYmFjazogKHN1Y2Nlc3M6IGJvb2xlYW4sIGRhdGE6IGFueSwgYWRkaXRpb25hbEVycm9ycz86IFN5bm9sb2d5QXBpRXJyb3JbXSkgPT4gdm9pZCk6IHZvaWQge1xyXG5cdFx0dmFyIHBhcmFtcyA9IHtcclxuXHRcdFx0cGF0aDogcGF0aCxcclxuXHRcdFx0bmFtZTogbmV3TmFtZSxcclxuXHRcdFx0YWRkaXRpb25hbDogXCJwZXJtXCJcclxuXHRcdH07XHJcblx0XHRcclxuXHRcdGRvd25sb2FkU3RhdGlvbi5fYXBpQ2FsbChcIlNZTk8uRmlsZVN0YXRpb24uUmVuYW1lXCIsIFwicmVuYW1lXCIsIDEsIHBhcmFtcywgKHN1Y2Nlc3MsIGRhdGEsIGVycm9ycykgPT4ge1xyXG5cdFx0XHRpZihzdWNjZXNzICYmIGRhdGEuZmlsZXMubGVuZ3RoID09IDEpIHtcclxuXHRcdFx0XHRkYXRhID0gZGF0YS5maWxlc1swXTtcclxuICAgICAgICAgICAgfVxyXG5cdFx0XHRcclxuXHRcdFx0aWYoY2FsbGJhY2spIHtcclxuXHRcdFx0XHRjYWxsYmFjayhzdWNjZXNzLCBkYXRhLCBlcnJvcnMpO1xyXG4gICAgICAgICAgICB9XHJcblx0XHR9KTtcclxuXHR9XHJcblx0XHJcblx0cHVibGljIGZpbGVTdGF0aW9uRGVsZXRlKHBhdGhzOiBzdHJpbmd8QXJyYXk8c3RyaW5nPiwgY2FsbGJhY2s6IChzdWNjZXNzOiBib29sZWFuLCBkYXRhOiBhbnksIGFkZGl0aW9uYWxFcnJvcnM/OiBTeW5vbG9neUFwaUVycm9yW10pID0+IHZvaWQpOiB2b2lkIHtcclxuXHRcdFxyXG5cdFx0aWYoQXJyYXkuaXNBcnJheShwYXRocykpXHJcblx0XHR7XHJcblx0XHRcdHBhdGhzID0gKDxBcnJheTxzdHJpbmc+PnBhdGhzKS5qb2luKFwiLFwiKTtcclxuXHRcdH1cclxuXHRcdFxyXG5cdCAgICB2YXIgcGFyYW1zID0ge1xyXG5cdCAgICBcdHBhdGg6IHBhdGhzLFxyXG5cdCAgICBcdHJlY3Vyc2l2ZTogdHJ1ZVxyXG5cdCAgICB9O1xyXG4gICAgICAgIFxyXG5cdCAgICBkb3dubG9hZFN0YXRpb24uX2FwaUNhbGwoJ1NZTk8uRmlsZVN0YXRpb24uRGVsZXRlJywgJ2RlbGV0ZScsIDEsIHBhcmFtcywgY2FsbGJhY2spO1xyXG5cdH07XHJcbn0iXSwic291cmNlUm9vdCI6Ii9zb3VyY2UvIn0=
|
train_000.parquet/762
|
{
"file_path": "js/filestation-api.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 14180,
"token_count": 8858
}
|
/// <reference path="../../typings/index.d.ts"/>
/// <reference path="./variables.ts"/>
var downloadStation = null;
$(document).ready(function () {
updateToolbarIcon(null);
extension.setBadge(0);
extension.storage.get("firstLaunch", function (storageItems) {
if (localStorage.getItem("firstLaunch") == "false" || storageItems["firstLaunch"] == false) {
}
else {
// Set default settings
var defaults = {
protocol: "http://",
firstLaunch: false,
hideSeedingTorrents: false,
updateInBackground: true,
openProtocols: ["magnet:?", "ed2k://", "thunder://", "flashget://", "qqdl://"],
backgroundUpdateInterval: 20,
notifiedTasks: new Array()
};
extension.storage.set(defaults);
extension.createTab("options.html");
_gaq.push(['_trackEvent', 'Startup', 'Installed', extension.getExtensionVersion()]);
}
extension.safariCheckForUpdate();
checkDonationNotification();
bindEventListeners();
init();
setTimeout(extension.safariCheckForUpdate, 10000);
});
if (IS_SAFARI) {
safari.application.addEventListener("open", function () {
updateToolbarIcon(downloadStation);
}, true);
}
});
function bindEventListeners() {
extension.onMessage(function (event, sendResponse) {
switch (event.name) {
case "testConnection":
testConnection(event.message, function (success, message, deviceInfo) {
sendResponse({ success: success, message: message, deviceInfo: deviceInfo });
});
break;
case "getSettings":
getExtensionSettings(function (settings) {
sendResponse(settings);
});
break;
case "saveConnectionSettings":
// Make sure that the other settings are cleared when switching between QuickConnect and manual connection
if (event.message.quickConnectId) {
event.message.url = null;
event.message.port = null;
event.message.protocol = null;
}
else {
event.message.quickConnectId = null;
}
testConnection(event.message, function (success, message) {
if (success === true)
extension.storage.set(event.message);
sendResponse({ success: success, message: message });
});
break;
case "saveOtherSettings":
extension.storage.set(event.message);
sendResponse({ success: true });
break;
case "getProtocols":
extension.storage.get("openProtocols", function (storageItems) {
var openProtocols = storageItems["openProtocols"];
if (!Array.isArray(openProtocols))
openProtocols = new Array();
sendResponse(openProtocols);
});
break;
case "addTask":
if (!downloadStation) {
sendResponse({
success: false,
data: "couldNotConnect"
});
}
else {
var m = event.message;
downloadStation.createTask(m.url, m.username, m.password, m.unzipPassword, m.destinationFolder, function (success, data) {
if (typeof sendResponse === "function") {
sendResponse({
success: success,
data: data
});
}
});
}
_gaq.push(['_trackEvent', 'Button', event.message.taskType]);
break;
case "addTaskWithHud":
createTaskWithHud(event.message.url, event.message.username, event.message.password, event.message.unzipPassword);
_gaq.push(['_trackEvent', 'Button', event.message.taskType]);
break;
case "sendRemoveDialogMessage":
extension.sendMessageToContent("removeDialog", event.message);
break;
case "listFolders":
if (!downloadStation) {
sendResponse({
success: false,
data: "couldNotConnect"
});
}
else {
downloadStation.fileStation.listFolders(event.message, function (success, data) {
sendResponse({
success: success,
data: data
});
});
}
break;
case "createFolder":
if (!downloadStation) {
sendResponse({
success: false,
data: "couldNotConnect"
});
}
else {
downloadStation.fileStation.fileStationCreateFolder(event.message.path, event.message.name, function (success, data, errors) {
sendResponse({
success: success,
data: data,
errors: errors
});
});
}
break;
case "rename":
if (!downloadStation) {
sendResponse({
success: false,
data: "couldNotConnect"
});
}
else {
downloadStation.fileStation.fileStationRename(event.message.path, event.message.name, function (success, data, errors) {
sendResponse({
success: success,
data: data,
errors: errors
});
});
}
break;
case "delete":
if (!downloadStation) {
sendResponse({
success: false,
data: "couldNotConnect"
});
}
else {
downloadStation.fileStation.fileStationDelete(event.message.path, function (success, data, errors) {
sendResponse({
success: success,
data: data,
errors: errors
});
});
}
break;
case "getSupportedFeatures":
if (!downloadStation) {
sendResponse(null);
}
else {
downloadStation.getSupportedFeatures(function (features) {
sendResponse(features);
});
}
break;
}
});
extension.storage.addEventListener(function (changes) {
var changedItems = Object.keys(changes);
if (changedItems.indexOf("quickConnectId") != -1 ||
changedItems.indexOf("username") != -1 || changedItems.indexOf("password") != -1 ||
changedItems.indexOf("protocol") != -1 || changedItems.indexOf("url") != -1 ||
changedItems.indexOf("port") != -1) {
init();
}
else if (downloadStation != null && (changedItems.indexOf("backgroundUpdateInterval") != -1 || changedItems.indexOf("updateInBackground") != -1)) {
extension.storage.get(["backgroundUpdateInterval", "updateInBackground"], function (storageItems) {
downloadStation.setBackgroundUpdate(storageItems["updateInBackground"], storageItems["backgroundUpdateInterval"]);
});
}
});
}
function init() {
// Disconnect from DS with old settings
if (downloadStation != null) {
downloadStation.destroy(function () {
downloadStation = null;
init();
});
return;
}
getExtensionSettings(function (settings) {
if (settings.username !== null &&
settings.password !== null &&
(settings.quickConnectId || (settings.protocol && settings.url && settings.port))) {
$.each(extension.getPopovers(), function (index, popover) {
try {
if (popover.updateDeviceInfo) {
popover.updateDeviceInfo(getDeviceInfo());
}
}
catch (exception) {
console.error(exception);
}
});
downloadStation = new DownloadStationAPI(settings);
var connectionType = settings.quickConnectId ? "QuickConnect" : "Manual";
_gaq.push(['_trackEvent', 'DiskStation', 'Connection type', connectionType], ['_trackEvent', 'DiskStation', 'Protocol', settings.protocol], ['_trackEvent', 'DiskStation', 'Update interval', settings.backgroundUpdateInterval], ['_trackEvent', 'DiskStation', 'Hide seeding torrents', settings.hideSeedingTorrents]);
downloadStation.addEventListener("deviceInfoUpdated", function () {
_gaq.push(['_trackEvent', 'DiskStation', 'DS build', downloadStation._version], ['_trackEvent', 'DiskStation', 'DS version', downloadStation._versionString], ['_trackEvent', 'DiskStation', 'DSM version', downloadStation.deviceInfo.dsmVersionString], ['_trackEvent', 'DiskStation', 'DSM build', downloadStation.deviceInfo.dsmVersion], ['_trackEvent', 'DiskStation', 'Model', downloadStation.deviceInfo.modelName]);
});
// !Popover login status
downloadStation.addEventListener(["loginStatusChange", "deviceInfoUpdated", "connectionStatusUpdated"], function () {
var popovers = extension.getPopovers();
$.each(popovers, function (index, popover) {
try {
popover.updateDeviceInfo(downloadStation.deviceInfo);
}
catch (exception) {
console.log(exception);
}
});
});
// !Popover task list
downloadStation.addEventListener("tasksUpdated", function () {
var popovers = extension.getPopovers();
$.each(popovers, function (index, popover) {
try {
popover.updateTasks(downloadStation.tasks);
}
catch (exception) {
console.log(exception);
}
});
});
// !Badge
downloadStation.addEventListener("tasksUpdated", function () {
var badgeText = 0;
if (downloadStation && downloadStation.connected == true && downloadStation.tasks.length > 0) {
var finishedTasks = downloadStation.getFinishedTasks();
badgeText = finishedTasks.length;
}
extension.setBadge(badgeText);
});
// !Notifications
downloadStation.addEventListener("tasksUpdated", function () {
if (!downloadStation._settings.updateInBackground) {
return;
}
var finishedTasks = downloadStation.getFinishedTasks();
if (finishedTasks.length > 0) {
showFinishedTaskNotifications(finishedTasks);
}
});
// !Toolbar icon
downloadStation.addEventListener(["connected", "connectionLost", "loginStatusChange"], function () {
updateToolbarIcon(downloadStation);
});
var contextMenuItemID = "dsContextMenuItem";
var contextMenuItemIDAdvanced = "dsContextMenuItemAdvanced";
var contextMenuItemText = extension.getLocalizedString("contextMenuDownloadOn", [downloadStation.deviceInfo.deviceName]);
extension.createContextMenuItem({
id: contextMenuItemID,
title: contextMenuItemText,
enabled: true,
contexts: ["selection", "link", "image", "video", "audio"],
onclick: function (info, tab) {
var url = null;
var itemType = "None";
if (info.linkUrl) {
url = stringReplaceAll(info.linkUrl, " ", "%20");
itemType = "Link";
}
else if (info.srcUrl) {
url = stringReplaceAll(info.srcUrl, " ", "%20");
itemType = "Source (video/audio/image)";
}
else if (info.selectionText) {
url = info.selectionText;
itemType = "Selection";
}
_gaq.push(['_trackEvent', 'Button', 'ContextMenu', itemType]);
createTaskWithHud(url);
}
});
extension.createContextMenuItem({
id: contextMenuItemIDAdvanced,
title: extension.getLocalizedString("contextMenuDownloadAdvanced"),
enabled: true,
contexts: ["selection", "link", "image", "video", "audio"],
onclick: function (info, tab) {
var url = null;
var itemType = "None";
if (info.linkUrl) {
url = stringReplaceAll(info.linkUrl, " ", "%20");
itemType = "Link";
}
else if (info.srcUrl) {
url = stringReplaceAll(info.srcUrl, " ", "%20");
itemType = "Source (video/audio/image)";
}
else if (info.selectionText) {
url = info.selectionText;
itemType = "Selection";
}
_gaq.push(['_trackEvent', 'Button', 'ContextMenuAdvanced', itemType]);
extension.sendMessageToContent("openDownloadDialog", { url: url });
}
});
downloadStation.addEventListener("destroy", function () {
extension.removeContextMenuItem(contextMenuItemID);
extension.removeContextMenuItem(contextMenuItemIDAdvanced);
});
downloadStation.startBackgroundUpdate();
}
});
}
function updateToolbarIcon(downloadStation) {
if (downloadStation && downloadStation.deviceInfo && downloadStation.deviceInfo.loggedIn && downloadStation.connected) {
if (IS_CHROME)
chrome.browserAction.setIcon({ path: { '19': 'Icon-19.png', '38': 'Icon-38.png' } });
else if (IS_SAFARI) {
for (var i = 0; i < safari.extension.toolbarItems.length; i++) {
safari.extension.toolbarItems[i].image = extension.getResourceURL("css/img/icon-black.png");
}
}
}
else {
if (IS_CHROME)
chrome.browserAction.setIcon({ path: { '19': 'Icon-19-disconnected.png', '38': 'Icon-38-disconnected.png' } });
else if (IS_SAFARI) {
for (var i = 0; i < safari.extension.toolbarItems.length; i++) {
safari.extension.toolbarItems[i].image = extension.getResourceURL("css/img/icon-black-disconnected.png");
}
}
}
}
function showFinishedTaskNotifications(finishedTasks) {
extension.storage.get("notifiedTasks", function (storageItems) {
var toNotify = new Array();
var notified = storageItems["notifiedTasks"];
if (!Array.isArray(notified))
notified = new Array();
// Remove tasks from list for which a notification has been sent before
$.each(finishedTasks, function (index, task) {
if (notified.indexOf(task.id) == -1) {
toNotify.push(task);
notified.push(task.id);
}
});
extension.storage.set({ notifiedTasks: notified });
if (toNotify.length == 1) {
extension.showNotification(extension.getLocalizedString('downloadFinished'), toNotify[0].title);
}
else if (toNotify.length > 1) {
var message = extension.getLocalizedString('numberTasksFinished', [toNotify.length.toString()]);
extension.showNotification(extension.getLocalizedString('downloadsFinished'), message);
}
});
}
function getExtensionSettings(callback) {
extension.storage.get(["quickConnectId", "protocol", "url", "port", "username", "password",
"backgroundUpdateInterval", "updateInBackground",
"openProtocols", "hideSeedingTorrents", "email"], function (storageItems) {
if (!Array.isArray(storageItems.openProtocols)) {
storageItems.openProtocols = new Array();
}
callback(storageItems);
});
}
function testConnection(options, callback) {
var testOptions = {};
$.extend(testOptions, options);
testOptions.updateInBackground = false;
var dsInstance = new DownloadStationAPI(testOptions);
dsInstance.loadTasks(function (success, data) {
if (success === false) {
callback(success, extension.getLocalizedString("api_error_" + data));
}
else {
callback(success, extension.getLocalizedString("testResultSuccess"), dsInstance.deviceInfo);
}
dsInstance.destroy();
dsInstance = null;
});
}
function updateHud(hudItem) {
extension.sendMessageToContent("hud", hudItem);
}
function getDeviceInfo() {
return downloadStation ? downloadStation.deviceInfo : null;
}
function getTasks() {
if (downloadStation == null)
return [];
return downloadStation.tasks;
}
function createTask(url, username, password, unzipPassword, callback) {
if (downloadStation != null) {
downloadStation.createTask(url, username, password, unzipPassword, null, callback);
_gaq.push(['_trackEvent', 'Downloads', 'Add task']);
}
}
function createTaskWithHud(url, username, password, unzipPassword, callback) {
if (downloadStation != null) {
updateHud({ action: "show", icon: "progress", text: extension.getLocalizedString("downloadTaskAdding"), autoHide: false });
downloadStation.createTask(url, username, password, unzipPassword, null, function (success, message) {
if (success) {
updateHud({ action: "show", icon: "check", text: extension.getLocalizedString("downloadTaskAccepted"), autoHide: true });
}
else {
updateHud({ action: "show", icon: "cross", text: extension.getLocalizedString("api_error_" + message), autoHide: true });
}
if (callback) {
callback(success, message);
}
});
_gaq.push(['_trackEvent', 'Downloads', 'Add task']);
}
else {
updateHud({ action: "show", icon: "cross", text: extension.getLocalizedString("api_error_couldNotConnect"), autoHide: true });
}
}
function resumeTask(ids, callback) {
if (downloadStation != null) {
downloadStation.resumeTask(ids, callback);
_gaq.push(['_trackEvent', 'Downloads', 'Resume task', ids.length]);
}
}
function pauseTask(ids, callback) {
if (downloadStation != null) {
downloadStation.pauseTask(ids, callback);
_gaq.push(['_trackEvent', 'Downloads', 'Pause task', ids.length]);
}
}
function deleteTask(ids, callback) {
if (downloadStation != null) {
downloadStation.deleteTask(ids, callback);
_gaq.push(['_trackEvent', 'Downloads', 'Remove task', ids.length]);
}
}
function clearFinishedTasks(callback) {
if (downloadStation != null) {
downloadStation.clearFinishedTasks(function (success, data) {
if (success) {
extension.storage.set({ notifiedTasks: new Array() });
}
callback(success, data);
});
_gaq.push(['_trackEvent', 'Downloads', 'Clear queue']);
}
}
function setUpdateInterval(seconds) {
if (downloadStation != null) {
downloadStation.startBackgroundUpdate(seconds);
}
}
function checkDonationNotification() {
var now = new Date().getTime();
var oneWeek = 604800000;
extension.storage.get(["lastDonationNotification", "email"], function (storageItems) {
var lastCheck = storageItems["lastDonationNotification"];
var email = storageItems["email"];
if (lastCheck == null) {
lastCheck = now - (oneWeek * 3); // First notification after one week.
}
if ((now - lastCheck) > oneWeek * 4) {
if (typeof email !== "string" || email.length === 0) {
extension.storage.set({ lastDonationNotification: new Date().getTime() });
showDonationNotification();
}
else {
$.post(DONATION_CHECK_URL, { email: email })
.done(function (data) {
extension.storage.set({ lastDonationNotification: new Date().getTime() });
if (!data.result) {
showDonationNotification();
}
}).fail(function (jqXHR, textStatus, errorThrown) {
_gaq.push(['_trackEvent', 'Donation check', 'Check failed', textStatus + ' - ' + errorThrown]);
});
}
}
else {
extension.storage.set({ lastDonationNotification: lastCheck });
}
});
}
function showDonationNotification() {
var medium = "unknown";
if (IS_OPERA)
medium = "Opera";
else if (IS_CHROME)
medium = "Chrome";
else if (IS_SAFARI)
medium = "Safari";
var donationPageUrl = DONATION_URL + "?utm_source=extension&utm_medium=" + medium + "&utm_campaign=notification";
var notification = extension.showNotification('Synology Download Station', extension.getLocalizedString('donationNotification'), true, donationPageUrl);
if (notification == null && IS_OPERA) {
extension.createTab(donationPageUrl);
}
}
function stringReplaceAll(subject, search, replace, ignore) {
if (typeof subject !== "string")
return subject;
return subject.replace(new RegExp(search.replace(/([\/\,\!\\\^\$\{\}\[\]\(\)\.\*\+\?\|\<\>\-\&])/g, "\\$&"), (ignore ? "gi" : "g")), (typeof (replace) == "string") ? replace.replace(/\$/g, "$$$$") : replace);
}
var _gaq = _gaq || [];
_gaq.push(['_setAccount', ANALYTICS_ID]);
_gaq.push(['_trackPageview']);
_gaq.push(['_trackEvent', 'Startup', 'ExtensionVersion', '' + extension.getExtensionVersion()]);
(function () {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = 'https://ssl.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImpzL2JhY2tncm91bmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsZ0RBQWdEO0FBQ2hELHNDQUFzQztBQWdCdEMsSUFBSSxlQUFlLEdBQXVCLElBQUksQ0FBQztBQUUvQyxDQUFDLENBQUMsUUFBUSxDQUFDLENBQUMsS0FBSyxDQUFDO0lBQ2pCLGlCQUFpQixDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ3hCLFNBQVMsQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUM7SUFDdEIsU0FBUyxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsYUFBYSxFQUFFLFVBQUMsWUFBWTtRQUNqRCxFQUFFLENBQUEsQ0FBQyxZQUFZLENBQUMsT0FBTyxDQUFDLGFBQWEsQ0FBQyxJQUFJLE9BQU8sSUFBSSxZQUFZLENBQUMsYUFBYSxDQUFDLElBQUksS0FBSyxDQUFDLENBQUMsQ0FBQztRQUk1RixDQUFDO1FBQ0QsSUFBSSxDQUFDLENBQUM7WUFDTCx1QkFBdUI7WUFDdkIsSUFBSSxRQUFRLEdBQUc7Z0JBQ2QsUUFBUSxFQUFNLFNBQVM7Z0JBQ3ZCLFdBQVcsRUFBTSxLQUFLO2dCQUN0QixtQkFBbUIsRUFBRyxLQUFLO2dCQUMzQixrQkFBa0IsRUFBSSxJQUFJO2dCQUMxQixhQUFhLEVBQUssQ0FBQyxVQUFVLEVBQUMsU0FBUyxFQUFDLFlBQVksRUFBQyxhQUFhLEVBQUMsU0FBUyxDQUFDO2dCQUM3RSx3QkFBd0IsRUFBRSxFQUFFO2dCQUM1QixhQUFhLEVBQUssSUFBSSxLQUFLLEVBQUU7YUFDN0IsQ0FBQztZQUVGLFNBQVMsQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLFFBQVEsQ0FBQyxDQUFDO1lBQ2hDLFNBQVMsQ0FBQyxTQUFTLENBQUMsY0FBYyxDQUFDLENBQUM7WUFDcEMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDLGFBQWEsRUFBRSxTQUFTLEVBQUUsV0FBVyxFQUFFLFNBQVMsQ0FBQyxtQkFBbUIsRUFBRSxDQUFDLENBQUMsQ0FBQztRQUNyRixDQUFDO1FBRUQsU0FBUyxDQUFDLG9CQUFvQixFQUFFLENBQUM7UUFDakMseUJBQXlCLEVBQUUsQ0FBQztRQUM1QixrQkFBa0IsRUFBRSxDQUFDO1FBQ3JCLElBQUksRUFBRSxDQUFDO1FBRVAsVUFBVSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxLQUFLLENBQUMsQ0FBQztJQUNuRCxDQUFDLENBQUMsQ0FBQztJQUVILEVBQUUsQ0FBQSxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUM7UUFDZCxNQUFNLENBQUMsV0FBVyxDQUFDLGdCQUFnQixDQUFDLE1BQU0sRUFBRTtZQUMzQyxpQkFBaUIsQ0FBQyxlQUFlLENBQUMsQ0FBQztRQUNwQyxDQUFDLEVBQUUsSUFBSSxDQUFDLENBQUM7SUFDVixDQUFDO0FBQ0YsQ0FBQyxDQUFDLENBQUM7QUFFSDtJQUNDLFNBQVMsQ0FBQyxTQUFTLENBQUMsVUFBQyxLQUFLLEVBQUUsWUFBWTtRQUN2QyxNQUFNLENBQUEsQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLENBQ2xCLENBQUM7WUFDQSxLQUFLLGdCQUFnQjtnQkFDcEIsY0FBYyxDQUFDLEtBQUssQ0FBQyxPQUFPLEVBQUUsVUFBQyxPQUFPLEVBQUUsT0FBTyxFQUFFLFVBQVU7b0JBQzFELFlBQVksQ0FBQyxFQUFFLE9BQU8sRUFBRSxPQUFPLEVBQUUsT0FBTyxFQUFFLE9BQU8sRUFBRSxVQUFVLEVBQUUsVUFBVSxFQUFFLENBQUMsQ0FBQztnQkFDOUUsQ0FBQyxDQUFDLENBQUM7Z0JBQ0gsS0FBSyxDQUFDO1lBRVAsS0FBSyxhQUFhO2dCQUNqQixvQkFBb0IsQ0FBQyxVQUFDLFFBQVE7b0JBQzdCLFlBQVksQ0FBQyxRQUFRLENBQUMsQ0FBQztnQkFDeEIsQ0FBQyxDQUFDLENBQUM7Z0JBQ0gsS0FBSyxDQUFDO1lBRVAsS0FBSyx3QkFBd0I7Z0JBQzVCLDBHQUEwRztnQkFDMUcsRUFBRSxDQUFBLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxjQUFjLENBQUMsQ0FDaEMsQ0FBQztvQkFDQSxLQUFLLENBQUMsT0FBTyxDQUFDLEdBQUcsR0FBRyxJQUFJLENBQUM7b0JBQ3pCLEtBQUssQ0FBQyxPQUFPLENBQUMsSUFBSSxHQUFHLElBQUksQ0FBQztvQkFDMUIsS0FBSyxDQUFDLE9BQU8sQ0FBQyxRQUFRLEdBQUcsSUFBSSxDQUFDO2dCQUMvQixDQUFDO2dCQUNELElBQUksQ0FDSixDQUFDO29CQUNBLEtBQUssQ0FBQyxPQUFPLENBQUMsY0FBYyxHQUFHLElBQUksQ0FBQztnQkFDckMsQ0FBQztnQkFFRCxjQUFjLENBQUMsS0FBSyxDQUFDLE9BQU8sRUFBRSxVQUFDLE9BQU8sRUFBRSxPQUFPO29CQUM5QyxFQUFFLENBQUEsQ0FBQyxPQUFPLEtBQUssSUFBSSxDQUFDO3dCQUNuQixTQUFTLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLENBQUM7b0JBRXRDLFlBQVksQ0FBQyxFQUFFLE9BQU8sRUFBRSxPQUFPLEVBQUUsT0FBTyxFQUFFLE9BQU8sRUFBRSxDQUFDLENBQUM7Z0JBQ3RELENBQUMsQ0FBQyxDQUFDO2dCQUNILEtBQUssQ0FBQztZQUVQLEtBQUssbUJBQW1CO2dCQUN2QixTQUFTLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLENBQUM7Z0JBQ3JDLFlBQVksQ0FBQyxFQUFFLE9BQU8sRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO2dCQUNoQyxLQUFLLENBQUM7WUFFUCxLQUFLLGNBQWM7Z0JBQ2xCLFNBQVMsQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLGVBQWUsRUFBRSxVQUFDLFlBQVk7b0JBQ25ELElBQUksYUFBYSxHQUFrQixZQUFZLENBQUMsZUFBZSxDQUFDLENBQUE7b0JBQ2hFLEVBQUUsQ0FBQSxDQUFDLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxhQUFhLENBQUMsQ0FBQzt3QkFDaEMsYUFBYSxHQUFHLElBQUksS0FBSyxFQUFVLENBQUM7b0JBRXJDLFlBQVksQ0FBQyxhQUFhLENBQUMsQ0FBQztnQkFDN0IsQ0FBQyxDQUFDLENBQUM7Z0JBQ0gsS0FBSyxDQUFDO1lBQ1AsS0FBSyxTQUFTO2dCQUNiLEVBQUUsQ0FBQSxDQUFDLENBQUMsZUFBZSxDQUFDLENBQ3BCLENBQUM7b0JBQ0EsWUFBWSxDQUFDO3dCQUNaLE9BQU8sRUFBRSxLQUFLO3dCQUNkLElBQUksRUFBRSxpQkFBaUI7cUJBQ3ZCLENBQUMsQ0FBQztnQkFDSixDQUFDO2dCQUNELElBQUksQ0FDSixDQUFDO29CQUNBLElBQUksQ0FBQyxHQUFHLEtBQUssQ0FBQyxPQUFPLENBQUM7b0JBQ3RCLGVBQWUsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQyxRQUFRLEVBQUUsQ0FBQyxDQUFDLGFBQWEsRUFBRSxDQUFDLENBQUMsaUJBQWlCLEVBQUUsVUFBUyxPQUFPLEVBQUUsSUFBSTt3QkFDckgsRUFBRSxDQUFBLENBQUMsT0FBTyxZQUFZLEtBQUssVUFBVSxDQUFDLENBQ3RDLENBQUM7NEJBQ0EsWUFBWSxDQUFDO2dDQUNaLE9BQU8sRUFBRSxPQUFPO2dDQUNoQixJQUFJLEVBQUUsSUFBSTs2QkFDVixDQUFDLENBQUM7d0JBQ0osQ0FBQztvQkFDRixDQUFDLENBQUMsQ0FBQztnQkFDSixDQUFDO2dCQUNELElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxhQUFhLEVBQUUsUUFBUSxFQUFFLEtBQUssQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQztnQkFDN0QsS0FBSyxDQUFDO1lBQ1AsS0FBSyxnQkFBZ0I7Z0JBQ3BCLGlCQUFpQixDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsR0FBRyxFQUFFLEtBQUssQ0FBQyxPQUFPLENBQUMsUUFBUSxFQUFFLEtBQUssQ0FBQyxPQUFPLENBQUMsUUFBUSxFQUFFLEtBQUssQ0FBQyxPQUFPLENBQUMsYUFBYSxDQUFDLENBQUM7Z0JBQ2xILElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQyxhQUFhLEVBQUUsUUFBUSxFQUFFLEtBQUssQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQztnQkFDN0QsS0FBSyxDQUFDO1lBQ1AsS0FBSyx5QkFBeUI7Z0JBQzdCLFNBQVMsQ0FBQyxvQkFBb0IsQ0FBQyxjQUFjLEVBQUUsS0FBSyxDQUFDLE9BQU8sQ0FBQyxDQUFDO2dCQUM5RCxLQUFLLENBQUM7WUFDUCxLQUFLLGFBQWE7Z0JBQ2pCLEVBQUUsQ0FBQSxDQUFDLENBQUMsZUFBZSxDQUFDLENBQ3BCLENBQUM7b0JBQ0EsWUFBWSxDQUFDO3dCQUNaLE9BQU8sRUFBRSxLQUFLO3dCQUNkLElBQUksRUFBRSxpQkFBaUI7cUJBQ3ZCLENBQUMsQ0FBQztnQkFDSixDQUFDO2dCQUNELElBQUksQ0FDSixDQUFDO29CQUNBLGVBQWUsQ0FBQyxXQUFXLENBQUMsV0FBVyxDQUFDLEtBQUssQ0FBQyxPQUFPLEVBQUUsVUFBQyxPQUFPLEVBQUUsSUFBSTt3QkFDcEUsWUFBWSxDQUFDOzRCQUNaLE9BQU8sRUFBRSxPQUFPOzRCQUNoQixJQUFJLEVBQUUsSUFBSTt5QkFDVixDQUFDLENBQUM7b0JBQ0osQ0FBQyxDQUFDLENBQUM7Z0JBQ0osQ0FBQztnQkFDRCxLQUFLLENBQUM7WUFDUCxLQUFLLGNBQWM7Z0JBQ2xCLEVBQUUsQ0FBQSxDQUFDLENBQUMsZUFBZSxDQUFDLENBQ3BCLENBQUM7b0JBQ0EsWUFBWSxDQUFDO3dCQUNaLE9BQU8sRUFBRSxLQUFLO3dCQUNkLElBQUksRUFBRSxpQkFBaUI7cUJBQ3ZCLENBQUMsQ0FBQztnQkFDSixDQUFDO2dCQUNELElBQUksQ0FDSixDQUFDO29CQUNBLGVBQWUsQ0FBQyxXQUFXLENBQUMsdUJBQXVCLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxJQUFJLEVBQUUsS0FBSyxDQUFDLE9BQU8sQ0FBQyxJQUFJLEVBQUUsVUFBQyxPQUFPLEVBQUUsSUFBSSxFQUFFLE1BQU07d0JBQ2pILFlBQVksQ0FBQzs0QkFDWixPQUFPLEVBQUUsT0FBTzs0QkFDaEIsSUFBSSxFQUFFLElBQUk7NEJBQ1YsTUFBTSxFQUFFLE1BQU07eUJBQ2QsQ0FBQyxDQUFDO29CQUNKLENBQUMsQ0FBQyxDQUFDO2dCQUNKLENBQUM7Z0JBQ0QsS0FBSyxDQUFDO1lBQ1AsS0FBSyxRQUFRO2dCQUNaLEVBQUUsQ0FBQSxDQUFDLENBQUMsZUFBZSxDQUFDLENBQ3BCLENBQUM7b0JBQ0EsWUFBWSxDQUFDO3dCQUNaLE9BQU8sRUFBRSxLQUFLO3dCQUNkLElBQUksRUFBRSxpQkFBaUI7cUJBQ3ZCLENBQUMsQ0FBQztnQkFDSixDQUFDO2dCQUNELElBQUksQ0FDSixDQUFDO29CQUNBLGVBQWUsQ0FBQyxXQUFXLENBQUMsaUJBQWlCLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxJQUFJLEVBQUUsS0FBSyxDQUFDLE9BQU8sQ0FBQyxJQUFJLEVBQUUsVUFBQyxPQUFPLEVBQUUsSUFBSSxFQUFFLE1BQU07d0JBQzNHLFlBQVksQ0FBQzs0QkFDWixPQUFPLEVBQUUsT0FBTzs0QkFDaEIsSUFBSSxFQUFFLElBQUk7NEJBQ1YsTUFBTSxFQUFFLE1BQU07eUJBQ2QsQ0FBQyxDQUFDO29CQUNKLENBQUMsQ0FBQyxDQUFDO2dCQUNKLENBQUM7Z0JBQ0QsS0FBSyxDQUFDO1lBQ1AsS0FBSyxRQUFRO2dCQUNaLEVBQUUsQ0FBQSxDQUFDLENBQUMsZUFBZSxDQUFDLENBQ3BCLENBQUM7b0JBQ0EsWUFBWSxDQUFDO3dCQUNaLE9BQU8sRUFBRSxLQUFLO3dCQUNkLElBQUksRUFBRSxpQkFBaUI7cUJBQ3ZCLENBQUMsQ0FBQztnQkFDSixDQUFDO2dCQUNELElBQUksQ0FDSixDQUFDO29CQUNBLGVBQWUsQ0FBQyxXQUFXLENBQUMsaUJBQWlCLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxJQUFJLEVBQUUsVUFBQyxPQUFPLEVBQUUsSUFBSSxFQUFFLE1BQU07d0JBQ3ZGLFlBQVksQ0FBQzs0QkFDWixPQUFPLEVBQUUsT0FBTzs0QkFDaEIsSUFBSSxFQUFFLElBQUk7NEJBQ1YsTUFBTSxFQUFFLE1BQU07eUJBQ2QsQ0FBQyxDQUFDO29CQUNKLENBQUMsQ0FBQyxDQUFDO2dCQUNKLENBQUM7Z0JBQ0QsS0FBSyxDQUFDO1lBQ0UsS0FBSyxzQkFBc0I7Z0JBQ3ZCLEVBQUUsQ0FBQSxDQUFDLENBQUMsZUFBZSxDQUFDLENBQ3BCLENBQUM7b0JBQ0csWUFBWSxDQUFDLElBQUksQ0FBQyxDQUFDO2dCQUN2QixDQUFDO2dCQUNELElBQUksQ0FBQyxDQUFDO29CQUVqQixlQUFlLENBQUMsb0JBQW9CLENBQUMsVUFBQyxRQUFRO3dCQUM3QyxZQUFZLENBQUMsUUFBUSxDQUFDLENBQUM7b0JBQ3hCLENBQUMsQ0FBQyxDQUFDO2dCQUNRLENBQUM7Z0JBQ0QsS0FBSyxDQUFDO1FBQ3BCLENBQUM7SUFDRixDQUFDLENBQUMsQ0FBQztJQUVILFNBQVMsQ0FBQyxPQUFPLENBQUMsZ0JBQWdCLENBQUMsVUFBQyxPQUFPO1FBQzFDLElBQUksWUFBWSxHQUFHLE1BQU0sQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUM7UUFDeEMsRUFBRSxDQUFBLENBQUMsWUFBWSxDQUFDLE9BQU8sQ0FBQyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsQ0FBQztZQUM3QyxZQUFZLENBQUMsT0FBTyxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsQ0FBQyxJQUFJLFlBQVksQ0FBQyxPQUFPLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxDQUFDO1lBQ2hGLFlBQVksQ0FBQyxPQUFPLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxDQUFDLElBQUksWUFBWSxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLENBQUM7WUFDM0UsWUFBWSxDQUFDLE9BQU8sQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUNyQyxDQUFDO1lBQ0EsSUFBSSxFQUFFLENBQUM7UUFDUixDQUFDO1FBQ0QsSUFBSSxDQUFDLEVBQUUsQ0FBQSxDQUFDLGVBQWUsSUFBSSxJQUFJLElBQUksQ0FBQyxZQUFZLENBQUMsT0FBTyxDQUFDLDBCQUEwQixDQUFDLElBQUksQ0FBQyxDQUFDLElBQUksWUFBWSxDQUFDLE9BQU8sQ0FBQyxvQkFBb0IsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FDaEosQ0FBQztZQUNBLFNBQVMsQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLENBQUMsMEJBQTBCLEVBQUUsb0JBQW9CLENBQUMsRUFBRSxVQUFDLFlBQVk7Z0JBQ3RGLGVBQWUsQ0FBQyxtQkFBbUIsQ0FBQyxZQUFZLENBQUMsb0JBQW9CLENBQUMsRUFBRSxZQUFZLENBQUMsMEJBQTBCLENBQUMsQ0FBQyxDQUFDO1lBQ25ILENBQUMsQ0FBQyxDQUFDO1FBQ0osQ0FBQztJQUNGLENBQUMsQ0FBQyxDQUFDO0FBQ0osQ0FBQztBQUdEO0lBQ0MsdUNBQXVDO0lBQ3ZDLEVBQUUsQ0FBQSxDQUFDLGVBQWUsSUFBSSxJQUFJLENBQUMsQ0FBQyxDQUFDO1FBQzVCLGVBQWUsQ0FBQyxPQUFPLENBQUM7WUFDdkIsZUFBZSxHQUFHLElBQUksQ0FBQztZQUN2QixJQUFJLEVBQUUsQ0FBQztRQUNSLENBQUMsQ0FBQyxDQUFDO1FBQ0gsTUFBTSxDQUFDO0lBQ1IsQ0FBQztJQUVELG9CQUFvQixDQUFDLFVBQUMsUUFBUTtRQUU3QixFQUFFLENBQUEsQ0FBQyxRQUFRLENBQUMsUUFBUSxLQUFLLElBQUk7WUFDNUIsUUFBUSxDQUFDLFFBQVEsS0FBSyxJQUFJO1lBQzFCLENBQUMsUUFBUSxDQUFDLGNBQWMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxRQUFRLElBQUksUUFBUSxDQUFDLEdBQUcsSUFBSSxRQUFRLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUNuRixDQUFDO1lBQ0EsQ0FBQyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsV0FBVyxFQUFFLEVBQUUsVUFBQyxLQUFLLEVBQUUsT0FBTztnQkFDOUMsSUFBRyxDQUFDO29CQUNILEVBQUUsQ0FBQSxDQUFPLE9BQVEsQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDLENBQUM7d0JBQzlCLE9BQVEsQ0FBQyxnQkFBZ0IsQ0FBQyxhQUFhLEVBQUUsQ0FBQyxDQUFDO29CQUNuQyxDQUFDO2dCQUNqQixDQUFFO2dCQUFBLEtBQUssQ0FBQSxDQUFDLFNBQVMsQ0FBQyxDQUFBLENBQUM7b0JBQ2xCLE9BQU8sQ0FBQyxLQUFLLENBQUMsU0FBUyxDQUFDLENBQUM7Z0JBQzFCLENBQUM7WUFDRixDQUFDLENBQUMsQ0FBQztZQUVILGVBQWUsR0FBRyxJQUFJLGtCQUFrQixDQUFDLFFBQVEsQ0FBQyxDQUFDO1lBR25ELElBQUksY0FBYyxHQUFHLFFBQVEsQ0FBQyxjQUFjLEdBQUcsY0FBYyxHQUFHLFFBQVEsQ0FBQztZQUN6RSxJQUFJLENBQUMsSUFBSSxDQUNSLENBQUMsYUFBYSxFQUFFLGFBQWEsRUFBRSxpQkFBaUIsRUFBRSxjQUFjLENBQUMsRUFDakUsQ0FBQyxhQUFhLEVBQUUsYUFBYSxFQUFFLFVBQVUsRUFBRSxRQUFRLENBQUMsUUFBUSxDQUFDLEVBQzdELENBQUMsYUFBYSxFQUFFLGFBQWEsRUFBRSxpQkFBaUIsRUFBRSxRQUFRLENBQUMsd0JBQXdCLENBQUMsRUFDcEYsQ0FBQyxhQUFhLEVBQUUsYUFBYSxFQUFFLHVCQUF1QixFQUFFLFFBQVEsQ0FBQyxtQkFBbUIsQ0FBQyxDQUNyRixDQUFDO1lBRUYsZUFBZSxDQUFDLGdCQUFnQixDQUFDLG1CQUFtQixFQUFFO2dCQUNyRCxJQUFJLENBQUMsSUFBSSxDQUNSLENBQUMsYUFBYSxFQUFFLGFBQWEsRUFBRSxVQUFVLEVBQUUsZUFBZSxDQUFDLFFBQVEsQ0FBQyxFQUNwRSxDQUFDLGFBQWEsRUFBRSxhQUFhLEVBQUUsWUFBWSxFQUFFLGVBQWUsQ0FBQyxjQUFjLENBQUMsRUFDNUUsQ0FBQyxhQUFhLEVBQUUsYUFBYSxFQUFFLGFBQWEsRUFBRSxlQUFlLENBQUMsVUFBVSxDQUFDLGdCQUFnQixDQUFDLEVBQzFGLENBQUMsYUFBYSxFQUFFLGFBQWEsRUFBRSxXQUFXLEVBQUUsZUFBZSxDQUFDLFVBQVUsQ0FBQyxVQUFVLENBQUMsRUFDbEYsQ0FBQyxhQUFhLEVBQUUsYUFBYSxFQUFFLE9BQU8sRUFBRSxlQUFlLENBQUMsVUFBVSxDQUFDLFNBQVMsQ0FBQyxDQUM3RSxDQUFDO1lBQ0gsQ0FBQyxDQUFDLENBQUM7WUFFSCx3QkFBd0I7WUFDeEIsZUFBZSxDQUFDLGdCQUFnQixDQUFDLENBQUMsbUJBQW1CLEVBQUUsbUJBQW1CLEVBQUUseUJBQXlCLENBQUMsRUFBRTtnQkFDdkcsSUFBSSxRQUFRLEdBQUcsU0FBUyxDQUFDLFdBQVcsRUFBRSxDQUFDO2dCQUN2QyxDQUFDLENBQUMsSUFBSSxDQUFDLFFBQVEsRUFBRSxVQUFTLEtBQUssRUFBRSxPQUFPO29CQUN2QyxJQUFJLENBQUM7d0JBQ0UsT0FBUSxDQUFDLGdCQUFnQixDQUFDLGVBQWUsQ0FBQyxVQUFVLENBQUMsQ0FBQztvQkFDN0QsQ0FBRTtvQkFBQSxLQUFLLENBQUEsQ0FBQyxTQUFTLENBQUMsQ0FBQSxDQUFDO3dCQUNsQixPQUFPLENBQUMsR0FBRyxDQUFDLFNBQVMsQ0FBQyxDQUFDO29CQUN4QixDQUFDO2dCQUNGLENBQUMsQ0FBQyxDQUFDO1lBQ0osQ0FBQyxDQUFDLENBQUM7WUFFSCxxQkFBcUI7WUFDckIsZUFBZSxDQUFDLGdCQUFnQixDQUFDLGNBQWMsRUFBRTtnQkFDaEQsSUFBSSxRQUFRLEdBQUcsU0FBUyxDQUFDLFdBQVcsRUFBRSxDQUFDO2dCQUN2QyxDQUFDLENBQUMsSUFBSSxDQUFDLFFBQVEsRUFBRSxVQUFTLEtBQUssRUFBRSxPQUFPO29CQUN2QyxJQUFJLENBQUM7d0JBQ0UsT0FBUSxDQUFDLFdBQVcsQ0FBQyxlQUFlLENBQUMsS0FBSyxDQUFDLENBQUM7b0JBQ25ELENBQUU7b0JBQUEsS0FBSyxDQUFBLENBQUMsU0FBUyxDQUFDLENBQUEsQ0FBQzt3QkFDbEIsT0FBTyxDQUFDLEdBQUcsQ0FBQyxTQUFTLENBQUMsQ0FBQztvQkFDeEIsQ0FBQztnQkFDRixDQUFDLENBQUMsQ0FBQztZQUNKLENBQUMsQ0FBQyxDQUFDO1lBRUgsU0FBUztZQUNULGVBQWUsQ0FBQyxnQkFBZ0IsQ0FBQyxjQUFjLEVBQUU7Z0JBQy9DLElBQUksU0FBUyxHQUFHLENBQUMsQ0FBQztnQkFDbEIsRUFBRSxDQUFBLENBQUMsZUFBZSxJQUFJLGVBQWUsQ0FBQyxTQUFTLElBQUksSUFBSSxJQUFJLGVBQWUsQ0FBQyxLQUFLLENBQUMsTUFBTSxHQUFHLENBQUMsQ0FBQyxDQUM1RixDQUFDO29CQUNBLElBQUksYUFBYSxHQUFHLGVBQWUsQ0FBQyxnQkFBZ0IsRUFBRSxDQUFDO29CQUN2RCxTQUFTLEdBQUcsYUFBYSxDQUFDLE1BQU0sQ0FBQztnQkFDbEMsQ0FBQztnQkFDRCxTQUFTLENBQUMsUUFBUSxDQUFDLFNBQVMsQ0FBQyxDQUFDO1lBQ2hDLENBQUMsQ0FBQyxDQUFDO1lBRUgsaUJBQWlCO1lBQ2pCLGVBQWUsQ0FBQyxnQkFBZ0IsQ0FBQyxjQUFjLEVBQUU7Z0JBQ2hELEVBQUUsQ0FBQSxDQUFDLENBQUMsZUFBZSxDQUFDLFNBQVMsQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDLENBQUM7b0JBQ2xELE1BQU0sQ0FBQztnQkFDUixDQUFDO2dCQUNELElBQUksYUFBYSxHQUFHLGVBQWUsQ0FBQyxnQkFBZ0IsRUFBRSxDQUFDO2dCQUN2RCxFQUFFLENBQUEsQ0FBQyxhQUFhLENBQUMsTUFBTSxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUM7b0JBQzdCLDZCQUE2QixDQUFDLGFBQWEsQ0FBQyxDQUFDO2dCQUM5QyxDQUFDO1lBQ0YsQ0FBQyxDQUFDLENBQUM7WUFFSCxnQkFBZ0I7WUFDaEIsZUFBZSxDQUFDLGdCQUFnQixDQUFDLENBQUMsV0FBVyxFQUFFLGdCQUFnQixFQUFFLG1CQUFtQixDQUFDLEVBQUU7Z0JBQ3RGLGlCQUFpQixDQUFDLGVBQWUsQ0FBQyxDQUFDO1lBQ3BDLENBQUMsQ0FBQyxDQUFDO1lBR0gsSUFBSSxpQkFBaUIsR0FBRyxtQkFBbUIsQ0FBQztZQUM1QyxJQUFJLHlCQUF5QixHQUFHLDJCQUEyQixDQUFDO1lBQzVELElBQUksbUJBQW1CLEdBQUcsU0FBUyxDQUFDLGtCQUFrQixDQUFDLHVCQUF1QixFQUFFLENBQUMsZUFBZSxDQUFDLFVBQVUsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDO1lBQ3pILFNBQVMsQ0FBQyxxQkFBcUIsQ0FBQztnQkFDL0IsRUFBRSxFQUFFLGlCQUFpQjtnQkFDckIsS0FBSyxFQUFFLG1CQUFtQjtnQkFDMUIsT0FBTyxFQUFFLElBQUk7Z0JBQ2IsUUFBUSxFQUFFLENBQUMsV0FBVyxFQUFFLE1BQU0sRUFBRSxPQUFPLEVBQUUsT0FBTyxFQUFFLE9BQU8sQ0FBQztnQkFDMUQsT0FBTyxFQUFFLFVBQVMsSUFBSSxFQUFFLEdBQUc7b0JBQzFCLElBQUksR0FBRyxHQUFXLElBQUksQ0FBQztvQkFDdkIsSUFBSSxRQUFRLEdBQUcsTUFBTSxDQUFDO29CQUN0QixFQUFFLENBQUEsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQzt3QkFDakIsR0FBRyxHQUFHLGdCQUFnQixDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsR0FBRyxFQUFFLEtBQUssQ0FBQyxDQUFDO3dCQUNqRCxRQUFRLEdBQUcsTUFBTSxDQUFDO29CQUNuQixDQUFDO29CQUNELElBQUksQ0FBQyxFQUFFLENBQUEsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQzt3QkFDckIsR0FBRyxHQUFHLGdCQUFnQixDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsR0FBRyxFQUFFLEtBQUssQ0FBQyxDQUFDO3dCQUNoRCxRQUFRLEdBQUcsNEJBQTRCLENBQUM7b0JBQ3pDLENBQUM7b0JBQ0QsSUFBSSxDQUFDLEVBQUUsQ0FBQSxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsQ0FBQyxDQUFDO3dCQUM1QixHQUFHLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQzt3QkFDekIsUUFBUSxHQUFHLFdBQVcsQ0FBQztvQkFDeEIsQ0FBQztvQkFFRCxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsYUFBYSxFQUFFLFFBQVEsRUFBRSxhQUFhLEVBQUUsUUFBUSxDQUFDLENBQUMsQ0FBQztvQkFFOUQsaUJBQWlCLENBQUMsR0FBRyxDQUFDLENBQUM7Z0JBQ3hCLENBQUM7YUFFRCxDQUFDLENBQUM7WUFFSCxTQUFTLENBQUMscUJBQXFCLENBQUM7Z0JBQy9CLEVBQUUsRUFBRSx5QkFBeUI7Z0JBQzdCLEtBQUssRUFBRSxTQUFTLENBQUMsa0JBQWtCLENBQUMsNkJBQTZCLENBQUM7Z0JBQ2xFLE9BQU8sRUFBRSxJQUFJO2dCQUNiLFFBQVEsRUFBRSxDQUFDLFdBQVcsRUFBRSxNQUFNLEVBQUUsT0FBTyxFQUFFLE9BQU8sRUFBRSxPQUFPLENBQUM7Z0JBQzFELE9BQU8sRUFBRSxVQUFTLElBQUksRUFBRSxHQUFHO29CQUMxQixJQUFJLEdBQUcsR0FBVyxJQUFJLENBQUM7b0JBQ3ZCLElBQUksUUFBUSxHQUFHLE1BQU0sQ0FBQztvQkFDdEIsRUFBRSxDQUFBLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUM7d0JBQ2pCLEdBQUcsR0FBRyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLEdBQUcsRUFBRSxLQUFLLENBQUMsQ0FBQzt3QkFDakQsUUFBUSxHQUFHLE1BQU0sQ0FBQztvQkFDbkIsQ0FBQztvQkFDRCxJQUFJLENBQUMsRUFBRSxDQUFBLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7d0JBQ3JCLEdBQUcsR0FBRyxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLEdBQUcsRUFBRSxLQUFLLENBQUMsQ0FBQzt3QkFDaEQsUUFBUSxHQUFHLDRCQUE0QixDQUFDO29CQUN6QyxDQUFDO29CQUNELElBQUksQ0FBQyxFQUFFLENBQUEsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLENBQUMsQ0FBQzt3QkFDNUIsR0FBRyxHQUFHLElBQUksQ0FBQyxhQUFhLENBQUM7d0JBQ3pCLFFBQVEsR0FBRyxXQUFXLENBQUM7b0JBQ3hCLENBQUM7b0JBRUQsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDLGFBQWEsRUFBRSxRQUFRLEVBQUUscUJBQXFCLEVBQUUsUUFBUSxDQUFDLENBQUMsQ0FBQztvQkFFdEUsU0FBUyxDQUFDLG9CQUFvQixDQUFDLG9CQUFvQixFQUFFLEVBQUUsR0FBRyxFQUFFLEdBQUcsRUFBRSxDQUFDLENBQUM7Z0JBQ3BFLENBQUM7YUFFRCxDQUFDLENBQUM7WUFFSCxlQUFlLENBQUMsZ0JBQWdCLENBQUMsU0FBUyxFQUFFO2dCQUMzQyxTQUFTLENBQUMscUJBQXFCLENBQUMsaUJBQWlCLENBQUMsQ0FBQztnQkFDbkQsU0FBUyxDQUFDLHFCQUFxQixDQUFDLHlCQUF5QixDQUFDLENBQUM7WUFDNUQsQ0FBQyxDQUFDLENBQUM7WUFFSCxlQUFlLENBQUMscUJBQXFCLEVBQUUsQ0FBQztRQUN6QyxDQUFDO0lBQ0YsQ0FBQyxDQUFDLENBQUM7QUFDSixDQUFDO0FBRUQsMkJBQTJCLGVBQWdDO0lBQzFELEVBQUUsQ0FBQyxDQUFDLGVBQWUsSUFBSSxlQUFlLENBQUMsVUFBVSxJQUFJLGVBQWUsQ0FBQyxVQUFVLENBQUMsUUFBUSxJQUFJLGVBQWUsQ0FBQyxTQUFTLENBQUMsQ0FDdEgsQ0FBQztRQUNBLEVBQUUsQ0FBQyxDQUFDLFNBQVMsQ0FBQztZQUNiLE1BQU0sQ0FBQyxhQUFhLENBQUMsT0FBTyxDQUFDLEVBQUUsSUFBSSxFQUFFLEVBQUUsSUFBSSxFQUFHLGFBQWEsRUFBRSxJQUFJLEVBQUcsYUFBYSxFQUFFLEVBQUMsQ0FBQyxDQUFDO1FBQ3ZGLElBQUksQ0FBQyxFQUFFLENBQUMsQ0FBQyxTQUFTLENBQUMsQ0FDbkIsQ0FBQztZQUNBLEdBQUcsQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEdBQUcsTUFBTSxDQUFDLFNBQVMsQ0FBQyxZQUFZLENBQUMsTUFBTSxFQUFFLENBQUMsRUFBRSxFQUM3RCxDQUFDO2dCQUNBLE1BQU0sQ0FBQyxTQUFTLENBQUMsWUFBWSxDQUFDLENBQUMsQ0FBQyxDQUFDLEtBQUssR0FBRyxTQUFTLENBQUMsY0FBYyxDQUFDLHdCQUF3QixDQUFDLENBQUM7WUFDN0YsQ0FBQztRQUNGLENBQUM7SUFDRixDQUFDO0lBQ0QsSUFBSSxDQUNKLENBQUM7UUFDQSxFQUFFLENBQUMsQ0FBQyxTQUFTLENBQUM7WUFDYixNQUFNLENBQUMsYUFBYSxDQUFDLE9BQU8sQ0FBQyxFQUFFLElBQUksRUFBRSxFQUFFLElBQUksRUFBRywwQkFBMEIsRUFBRSxJQUFJLEVBQUcsMEJBQTBCLEVBQUUsRUFBQyxDQUFDLENBQUM7UUFDakgsSUFBSSxDQUFDLEVBQUUsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxDQUNuQixDQUFDO1lBQ0EsR0FBRyxDQUFDLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxNQUFNLENBQUMsU0FBUyxDQUFDLFlBQVksQ0FBQyxNQUFNLEVBQUUsQ0FBQyxFQUFFLEVBQzdELENBQUM7Z0JBQ0EsTUFBTSxDQUFDLFNBQVMsQ0FBQyxZQUFZLENBQUMsQ0FBQyxDQUFDLENBQUMsS0FBSyxHQUFHLFNBQVMsQ0FBQyxjQUFjLENBQUMscUNBQXFDLENBQUMsQ0FBQztZQUMxRyxDQUFDO1FBQ0YsQ0FBQztJQUNGLENBQUM7QUFDRixDQUFDO0FBRUQsdUNBQXVDLGFBQTBDO0lBQ2hGLFNBQVMsQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLGVBQWUsRUFBRSxVQUFDLFlBQW9DO1FBQzNFLElBQUksUUFBUSxHQUFHLElBQUksS0FBSyxFQUF3QixDQUFDO1FBQ2pELElBQUksUUFBUSxHQUFHLFlBQVksQ0FBQyxlQUFlLENBQUMsQ0FBQztRQUM3QyxFQUFFLENBQUEsQ0FBQyxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDLENBQUM7WUFDM0IsUUFBUSxHQUFHLElBQUksS0FBSyxFQUFFLENBQUM7UUFFeEIsdUVBQXVFO1FBQ3ZFLENBQUMsQ0FBQyxJQUFJLENBQUMsYUFBYSxFQUFFLFVBQUMsS0FBYSxFQUFFLElBQTBCO1lBQy9ELEVBQUUsQ0FBQSxDQUFDLFFBQVEsQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztnQkFDcEMsUUFBUSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztnQkFDcEIsUUFBUSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLENBQUM7WUFDeEIsQ0FBQztRQUNGLENBQUMsQ0FBQyxDQUFDO1FBRUgsU0FBUyxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsRUFBRSxhQUFhLEVBQUUsUUFBUSxFQUFFLENBQUMsQ0FBQztRQUVuRCxFQUFFLENBQUEsQ0FBQyxRQUFRLENBQUMsTUFBTSxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUM7WUFDekIsU0FBUyxDQUFDLGdCQUFnQixDQUFDLFNBQVMsQ0FBQyxrQkFBa0IsQ0FBQyxrQkFBa0IsQ0FBQyxFQUFFLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUNqRyxDQUFDO1FBRUQsSUFBSSxDQUFDLEVBQUUsQ0FBQSxDQUFDLFFBQVEsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQztZQUM3QixJQUFJLE9BQU8sR0FBRyxTQUFTLENBQUMsa0JBQWtCLENBQUMscUJBQXFCLEVBQUUsQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLFFBQVEsRUFBRSxDQUFDLENBQUMsQ0FBQztZQUNoRyxTQUFTLENBQUMsZ0JBQWdCLENBQUMsU0FBUyxDQUFDLGtCQUFrQixDQUFDLG1CQUFtQixDQUFDLEVBQUUsT0FBTyxDQUFDLENBQUM7UUFDeEYsQ0FBQztJQUNGLENBQUMsQ0FBQyxDQUFDO0FBQ0osQ0FBQztBQUVELDhCQUE4QixRQUFnRDtJQUM3RSxTQUFTLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxDQUFDLGdCQUFnQixFQUFFLFVBQVUsRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLFVBQVUsRUFBRSxVQUFVO1FBQ2xGLDBCQUEwQixFQUFFLG9CQUFvQjtRQUNoRCxlQUFlLEVBQUUscUJBQXFCLEVBQUUsT0FBTyxDQUFDLEVBQ2hELFVBQUMsWUFBZ0M7UUFDeEMsRUFBRSxDQUFBLENBQUMsQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLFlBQVksQ0FBQyxhQUFhLENBQUMsQ0FBQyxDQUFDLENBQUM7WUFDL0MsWUFBWSxDQUFDLGFBQWEsR0FBRyxJQUFJLEtBQUssRUFBVSxDQUFDO1FBQzVDLENBQUM7UUFFUCxRQUFRLENBQUMsWUFBWSxDQUFDLENBQUM7SUFDeEIsQ0FBQyxDQUFDLENBQUM7QUFDSixDQUFDO0FBRUQsd0JBQXdCLE9BQWlDLEVBQUUsUUFBdUY7SUFDakosSUFBSSxXQUFXLEdBQVEsRUFBRSxDQUFDO0lBQzFCLENBQUMsQ0FBQyxNQUFNLENBQUMsV0FBVyxFQUFFLE9BQU8sQ0FBQyxDQUFDO0lBQy9CLFdBQVcsQ0FBQyxrQkFBa0IsR0FBRyxLQUFLLENBQUM7SUFFdkMsSUFBSSxVQUFVLEdBQUcsSUFBSSxrQkFBa0IsQ0FBQyxXQUFXLENBQUMsQ0FBQztJQUNyRCxVQUFVLENBQUMsU0FBUyxDQUFDLFVBQUMsT0FBZ0IsRUFBRSxJQUFTO1FBQ2hELEVBQUUsQ0FBQSxDQUFDLE9BQU8sS0FBSyxLQUFLLENBQUMsQ0FBQyxDQUFDO1lBQ3RCLFFBQVEsQ0FBQyxPQUFPLEVBQUUsU0FBUyxDQUFDLGtCQUFrQixDQUFDLFlBQVksR0FBRyxJQUFJLENBQUMsQ0FBQyxDQUFDO1FBQ3RFLENBQUM7UUFDRCxJQUFJLENBQUMsQ0FBQztZQUNMLFFBQVEsQ0FBQyxPQUFPLEVBQUUsU0FBUyxDQUFDLGtCQUFrQixDQUFDLG1CQUFtQixDQUFDLEVBQUUsVUFBVSxDQUFDLFVBQVUsQ0FBQyxDQUFDO1FBQzdGLENBQUM7UUFFRCxVQUFVLENBQUMsT0FBTyxFQUFFLENBQUM7UUFDckIsVUFBVSxHQUFHLElBQUksQ0FBQztJQUNuQixDQUFDLENBQUMsQ0FBQztBQUNKLENBQUM7QUFTRCxtQkFBbUIsT0FBZ0I7SUFDbEMsU0FBUyxDQUFDLG9CQUFvQixDQUFDLEtBQUssRUFBRSxPQUFPLENBQUMsQ0FBQztBQUNoRCxDQUFDO0FBRUQ7SUFDQyxNQUFNLENBQUMsZUFBZSxHQUFHLGVBQWUsQ0FBQyxVQUFVLEdBQUcsSUFBSSxDQUFDO0FBQzVELENBQUM7QUFFRDtJQUNDLEVBQUUsQ0FBQSxDQUFDLGVBQWUsSUFBSSxJQUFJLENBQUM7UUFDMUIsTUFBTSxDQUFDLEVBQUUsQ0FBQztJQUVYLE1BQU0sQ0FBQyxlQUFlLENBQUMsS0FBSyxDQUFDO0FBQzlCLENBQUM7QUFFRCxvQkFBb0IsR0FBVyxFQUFFLFFBQWlCLEVBQUUsUUFBaUIsRUFBRSxhQUFzQixFQUFFLFFBQWdEO0lBQzlJLEVBQUUsQ0FBQSxDQUFDLGVBQWUsSUFBSSxJQUFJLENBQUMsQ0FBQyxDQUFDO1FBQzVCLGVBQWUsQ0FBQyxVQUFVLENBQUMsR0FBRyxFQUFFLFFBQVEsRUFBRSxRQUFRLEVBQUUsYUFBYSxFQUFFLElBQUksRUFBRSxRQUFRLENBQUMsQ0FBQztRQUNuRixJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsYUFBYSxFQUFFLFdBQVcsRUFBRSxVQUFVLENBQUMsQ0FBQyxDQUFDO0lBQ3JELENBQUM7QUFDRixDQUFDO0FBRUQsMkJBQTJCLEdBQVcsRUFBRSxRQUFpQixFQUFFLFFBQWlCLEVBQUUsYUFBc0IsRUFBRSxRQUFzRDtJQUUzSixFQUFFLENBQUEsQ0FBQyxlQUFlLElBQUksSUFBSSxDQUFDLENBQUMsQ0FBQztRQUM1QixTQUFTLENBQUMsRUFBRSxNQUFNLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRSxVQUFVLEVBQUUsSUFBSSxFQUFFLFNBQVMsQ0FBQyxrQkFBa0IsQ0FBQyxvQkFBb0IsQ0FBQyxFQUFFLFFBQVEsRUFBRSxLQUFLLEVBQUUsQ0FBQyxDQUFDO1FBRTNILGVBQWUsQ0FBQyxVQUFVLENBQUMsR0FBRyxFQUFFLFFBQVEsRUFBRSxRQUFRLEVBQUUsYUFBYSxFQUFFLElBQUksRUFBRSxVQUFTLE9BQU8sRUFBRSxPQUFPO1lBQ2pHLEVBQUUsQ0FBQSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUM7Z0JBQ1osU0FBUyxDQUFDLEVBQUUsTUFBTSxFQUFFLE1BQU0sRUFBRSxJQUFJLEVBQUUsT0FBTyxFQUFFLElBQUksRUFBRSxTQUFTLENBQUMsa0JBQWtCLENBQUMsc0JBQXNCLENBQUMsRUFBRSxRQUFRLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztZQUMxSCxDQUFDO1lBQ0QsSUFBSSxDQUFDLENBQUM7Z0JBQ0wsU0FBUyxDQUFDLEVBQUUsTUFBTSxFQUFFLE1BQU0sRUFBRSxJQUFJLEVBQUUsT0FBTyxFQUFFLElBQUksRUFBRSxTQUFTLENBQUMsa0JBQWtCLENBQUMsWUFBWSxHQUFHLE9BQU8sQ0FBQyxFQUFFLFFBQVEsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO1lBQzFILENBQUM7WUFFRCxFQUFFLENBQUEsQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDO2dCQUNiLFFBQVEsQ0FBQyxPQUFPLEVBQUUsT0FBTyxDQUFDLENBQUM7WUFDbkIsQ0FBQztRQUNYLENBQUMsQ0FBQyxDQUFDO1FBQ0gsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDLGFBQWEsRUFBRSxXQUFXLEVBQUUsVUFBVSxDQUFDLENBQUMsQ0FBQztJQUNyRCxDQUFDO0lBQ0QsSUFBSSxDQUFDLENBQUM7UUFDTCxTQUFTLENBQUMsRUFBRSxNQUFNLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRSxPQUFPLEVBQUUsSUFBSSxFQUFFLFNBQVMsQ0FBQyxrQkFBa0IsQ0FBQywyQkFBMkIsQ0FBQyxFQUFFLFFBQVEsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQy9ILENBQUM7QUFDRixDQUFDO0FBRUQsb0JBQW9CLEdBQWtCLEVBQUUsUUFBK0M7SUFDdEYsRUFBRSxDQUFBLENBQUMsZUFBZSxJQUFJLElBQUksQ0FBQyxDQUFDLENBQUM7UUFDNUIsZUFBZSxDQUFDLFVBQVUsQ0FBQyxHQUFHLEVBQUUsUUFBUSxDQUFDLENBQUM7UUFDMUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDLGFBQWEsRUFBRSxXQUFXLEVBQUUsYUFBYSxFQUFFLEdBQUcsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDO0lBQ3BFLENBQUM7QUFDRixDQUFDO0FBRUQsbUJBQW1CLEdBQWtCLEVBQUUsUUFBK0M7SUFDckYsRUFBRSxDQUFBLENBQUMsZUFBZSxJQUFJLElBQUksQ0FBQyxDQUFDLENBQUM7UUFDNUIsZUFBZSxDQUFDLFNBQVMsQ0FBQyxHQUFHLEVBQUUsUUFBUSxDQUFDLENBQUM7UUFDekMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDLGFBQWEsRUFBRSxXQUFXLEVBQUUsWUFBWSxFQUFFLEdBQUcsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDO0lBQ25FLENBQUM7QUFDRixDQUFDO0FBRUQsb0JBQW9CLEdBQWtCLEVBQUUsUUFBK0M7SUFDdEYsRUFBRSxDQUFBLENBQUMsZUFBZSxJQUFJLElBQUksQ0FBQyxDQUFDLENBQUM7UUFDNUIsZUFBZSxDQUFDLFVBQVUsQ0FBQyxHQUFHLEVBQUUsUUFBUSxDQUFDLENBQUM7UUFDMUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDLGFBQWEsRUFBRSxXQUFXLEVBQUUsYUFBYSxFQUFFLEdBQUcsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDO0lBQ3BFLENBQUM7QUFDRixDQUFDO0FBRUQsNEJBQTRCLFFBQStDO0lBQzFFLEVBQUUsQ0FBQSxDQUFDLGVBQWUsSUFBSSxJQUFJLENBQUMsQ0FBQyxDQUFDO1FBQzVCLGVBQWUsQ0FBQyxrQkFBa0IsQ0FBQyxVQUFDLE9BQU8sRUFBRSxJQUFJO1lBQ2hELEVBQUUsQ0FBQSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUM7Z0JBQ1osU0FBUyxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsRUFBRSxhQUFhLEVBQUUsSUFBSSxLQUFLLEVBQVUsRUFBRSxDQUFDLENBQUM7WUFDdEQsQ0FBQztZQUNWLFFBQVEsQ0FBQyxPQUFPLEVBQUUsSUFBSSxDQUFDLENBQUM7UUFDekIsQ0FBQyxDQUFDLENBQUM7UUFDSCxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsYUFBYSxFQUFFLFdBQVcsRUFBRSxhQUFhLENBQUMsQ0FBQyxDQUFDO0lBQ3hELENBQUM7QUFDRixDQUFDO0FBRUQsMkJBQTJCLE9BQWU7SUFDekMsRUFBRSxDQUFBLENBQUMsZUFBZSxJQUFJLElBQUksQ0FBQyxDQUFDLENBQUM7UUFDNUIsZUFBZSxDQUFDLHFCQUFxQixDQUFDLE9BQU8sQ0FBQyxDQUFDO0lBQzdDLENBQUM7QUFDTCxDQUFDO0FBRUQ7SUFDQyxJQUFJLEdBQUcsR0FBRyxJQUFJLElBQUksRUFBRSxDQUFDLE9BQU8sRUFBRSxDQUFDO0lBQy9CLElBQUksT0FBTyxHQUFHLFNBQVMsQ0FBQztJQUV4QixTQUFTLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxDQUFDLDBCQUEwQixFQUFFLE9BQU8sQ0FBQyxFQUFFLFVBQUMsWUFBWTtRQUN6RSxJQUFJLFNBQVMsR0FBVyxZQUFZLENBQUMsMEJBQTBCLENBQUMsQ0FBQztRQUNqRSxJQUFJLEtBQUssR0FBVyxZQUFZLENBQUMsT0FBTyxDQUFDLENBQUM7UUFFcEMsRUFBRSxDQUFBLENBQUMsU0FBUyxJQUFJLElBQUksQ0FBQyxDQUFDLENBQUM7WUFDNUIsU0FBUyxHQUFHLEdBQUcsR0FBRyxDQUFDLE9BQU8sR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFBLHFDQUFxQztRQUNoRSxDQUFDO1FBRVAsRUFBRSxDQUFBLENBQUMsQ0FBQyxHQUFHLEdBQUMsU0FBUyxDQUFDLEdBQUcsT0FBTyxHQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7WUFDaEMsRUFBRSxDQUFBLENBQUMsT0FBTyxLQUFLLEtBQUssUUFBUSxJQUFJLEtBQUssQ0FBQyxNQUFNLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQztnQkFDcEQsU0FBUyxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsRUFBRSx3QkFBd0IsRUFBRSxJQUFJLElBQUksRUFBRSxDQUFDLE9BQU8sRUFBRSxFQUFDLENBQUMsQ0FBQztnQkFDekUsd0JBQXdCLEVBQUUsQ0FBQztZQUM1QixDQUFDO1lBQ0QsSUFBSSxDQUFDLENBQUM7Z0JBQ0wsQ0FBQyxDQUFDLElBQUksQ0FBQyxrQkFBa0IsRUFBRSxFQUFFLEtBQUssRUFBRSxLQUFLLEVBQUUsQ0FBQztxQkFDM0MsSUFBSSxDQUFDLFVBQUMsSUFBSTtvQkFDVixTQUFTLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxFQUFFLHdCQUF3QixFQUFFLElBQUksSUFBSSxFQUFFLENBQUMsT0FBTyxFQUFFLEVBQUMsQ0FBQyxDQUFDO29CQUN6RSxFQUFFLENBQUEsQ0FBQyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDO3dCQUNqQix3QkFBd0IsRUFBRSxDQUFDO29CQUM1QixDQUFDO2dCQUNGLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxVQUFDLEtBQUssRUFBRSxVQUFVLEVBQUUsV0FBVztvQkFDdEMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDLGFBQWEsRUFBRSxnQkFBZ0IsRUFBRSxjQUFjLEVBQUUsVUFBVSxHQUFHLEtBQUssR0FBRyxXQUFXLENBQUMsQ0FBQyxDQUFDO2dCQUNoRyxDQUFDLENBQUMsQ0FBQztZQUNKLENBQUM7UUFDRixDQUFDO1FBQ0QsSUFBSSxDQUFDLENBQUM7WUFDTCxTQUFTLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxFQUFFLHdCQUF3QixFQUFFLFNBQVMsRUFBQyxDQUFDLENBQUM7UUFDL0QsQ0FBQztJQUNGLENBQUMsQ0FBQyxDQUFDO0FBQ0osQ0FBQztBQUVEO0lBQ0MsSUFBSSxNQUFNLEdBQUcsU0FBUyxDQUFDO0lBQ3ZCLEVBQUUsQ0FBQSxDQUFDLFFBQVEsQ0FBQztRQUNYLE1BQU0sR0FBRyxPQUFPLENBQUM7SUFDbEIsSUFBSSxDQUFDLEVBQUUsQ0FBQSxDQUFDLFNBQVMsQ0FBQztRQUNqQixNQUFNLEdBQUcsUUFBUSxDQUFDO0lBQ25CLElBQUksQ0FBQyxFQUFFLENBQUEsQ0FBQyxTQUFTLENBQUM7UUFDakIsTUFBTSxHQUFHLFFBQVEsQ0FBQztJQUVuQixJQUFJLGVBQWUsR0FBRyxZQUFZLEdBQUcsbUNBQW1DLEdBQUcsTUFBTSxHQUFHLDRCQUE0QixDQUFDO0lBQ2pILElBQUksWUFBWSxHQUFHLFNBQVMsQ0FBQyxnQkFBZ0IsQ0FBQywyQkFBMkIsRUFBRSxTQUFTLENBQUMsa0JBQWtCLENBQUMsc0JBQXNCLENBQUMsRUFBRSxJQUFJLEVBQUUsZUFBZSxDQUFDLENBQUM7SUFFeEosRUFBRSxDQUFBLENBQUMsWUFBWSxJQUFJLElBQUksSUFBSSxRQUFRLENBQUMsQ0FBQyxDQUFDO1FBQ3JDLFNBQVMsQ0FBQyxTQUFTLENBQUMsZUFBZSxDQUFDLENBQUM7SUFDdEMsQ0FBQztBQUNGLENBQUM7QUFFRCwwQkFBMEIsT0FBZSxFQUFFLE1BQWMsRUFBRSxPQUFlLEVBQUUsTUFBZ0I7SUFDM0YsRUFBRSxDQUFBLENBQUMsT0FBTyxPQUFPLEtBQUssUUFBUSxDQUFDO1FBQzlCLE1BQU0sQ0FBQyxPQUFPLENBQUM7SUFFaEIsTUFBTSxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQUMsSUFBSSxNQUFNLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxpREFBaUQsRUFBQyxNQUFNLENBQUMsRUFBQyxDQUFDLE1BQU0sR0FBQyxJQUFJLEdBQUMsR0FBRyxDQUFDLENBQUMsRUFBQyxDQUFDLE9BQU0sQ0FBQyxPQUFPLENBQUMsSUFBRSxRQUFRLENBQUMsR0FBQyxPQUFPLENBQUMsT0FBTyxDQUFDLEtBQUssRUFBQyxNQUFNLENBQUMsR0FBQyxPQUFPLENBQUMsQ0FBQztBQUNsTSxDQUFDO0FBRUQsSUFBSSxJQUFJLEdBQWUsSUFBSSxJQUFJLEVBQUUsQ0FBQztBQUNsQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsYUFBYSxFQUFFLFlBQVksQ0FBQyxDQUFDLENBQUM7QUFDekMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDLGdCQUFnQixDQUFDLENBQUMsQ0FBQztBQUM5QixJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsYUFBYSxFQUFFLFNBQVMsRUFBRSxrQkFBa0IsRUFBRSxFQUFFLEdBQUcsU0FBUyxDQUFDLG1CQUFtQixFQUFFLENBQUMsQ0FBQyxDQUFDO0FBRWhHLENBQUM7SUFDQSxJQUFJLEVBQUUsR0FBRyxRQUFRLENBQUMsYUFBYSxDQUFDLFFBQVEsQ0FBQyxDQUFDO0lBQzFDLEVBQUUsQ0FBQyxJQUFJLEdBQUcsaUJBQWlCLENBQUM7SUFDNUIsRUFBRSxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUM7SUFDaEIsRUFBRSxDQUFDLEdBQUcsR0FBRyx3Q0FBd0MsQ0FBQztJQUVsRCxJQUFJLENBQUMsR0FBRyxRQUFRLENBQUMsb0JBQW9CLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7SUFDbkQsQ0FBQyxDQUFDLFVBQVUsQ0FBQyxZQUFZLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDO0FBQ2xDLENBQUMsQ0FBQyxFQUFFLENBQUMiLCJmaWxlIjoianMvYmFja2dyb3VuZC5qcyIsInNvdXJjZXNDb250ZW50IjpbIi8vLyA8cmVmZXJlbmNlIHBhdGg9XCIuLi8uLi90eXBpbmdzL2luZGV4LmQudHNcIi8+XG4vLy8gPHJlZmVyZW5jZSBwYXRoPVwiLi92YXJpYWJsZXMudHNcIi8+XG5cbmludGVyZmFjZSBJRXh0ZW5zaW9uU2V0dGluZ3Mge1xuICAgIHF1aWNrQ29ubmVjdElkOiBzdHJpbmc7XG4gICAgcHJvdG9jb2w6IHN0cmluZztcbiAgICB1cmw6IHN0cmluZztcbiAgICBwb3J0OiBudW1iZXI7XG4gICAgdXNlcm5hbWU6IHN0cmluZztcbiAgICBwYXNzd29yZDogc3RyaW5nO1xuICAgIGJhY2tncm91bmRVcGRhdGVJbnRlcnZhbDogbnVtYmVyO1xuICAgIHVwZGF0ZUluQmFja2dyb3VuZDogYm9vbGVhbjtcbiAgICBvcGVuUHJvdG9jb2xzOiBBcnJheTxzdHJpbmc+O1xuICAgIGhpZGVTZWVkaW5nVG9ycmVudHM6IGJvb2xlYW47XG4gICAgZW1haWw6IHN0cmluZztcbn1cblxudmFyIGRvd25sb2FkU3RhdGlvbjogRG93bmxvYWRTdGF0aW9uQVBJID0gbnVsbDtcblxuJChkb2N1bWVudCkucmVhZHkoZnVuY3Rpb24oKSB7XG5cdHVwZGF0ZVRvb2xiYXJJY29uKG51bGwpO1xuXHRleHRlbnNpb24uc2V0QmFkZ2UoMCk7XG5cdGV4dGVuc2lvbi5zdG9yYWdlLmdldChcImZpcnN0TGF1bmNoXCIsIChzdG9yYWdlSXRlbXMpID0+IHtcblx0XHRpZihsb2NhbFN0b3JhZ2UuZ2V0SXRlbShcImZpcnN0TGF1bmNoXCIpID09IFwiZmFsc2VcIiB8fCBzdG9yYWdlSXRlbXNbXCJmaXJzdExhdW5jaFwiXSA9PSBmYWxzZSkge1xuXHRcdFx0Ly92YXIgdXBkYXRlciA9IG5ldyBFeHRlbnNpb25VcGRhdGVyKCk7XG5cdFx0XHQvL3VwZGF0ZXIucnVuKCk7XG5cdFx0XHQvL3VwZGF0ZXIgPSBudWxsO1xuXHRcdH1cblx0XHRlbHNlIHtcblx0XHRcdC8vIFNldCBkZWZhdWx0IHNldHRpbmdzXG5cdFx0XHR2YXIgZGVmYXVsdHMgPSB7XG5cdFx0XHRcdHByb3RvY29sOlx0XHRcdFx0XHRcImh0dHA6Ly9cIixcblx0XHRcdFx0Zmlyc3RMYXVuY2g6IFx0XHRcdFx0ZmFsc2UsXG5cdFx0XHRcdGhpZGVTZWVkaW5nVG9ycmVudHM6XHRcdGZhbHNlLFxuXHRcdFx0XHR1cGRhdGVJbkJhY2tncm91bmQ6XHRcdFx0dHJ1ZSxcblx0XHRcdFx0b3BlblByb3RvY29sczpcdFx0XHRcdFtcIm1hZ25ldDo/XCIsXCJlZDJrOi8vXCIsXCJ0aHVuZGVyOi8vXCIsXCJmbGFzaGdldDovL1wiLFwicXFkbDovL1wiXSxcblx0XHRcdFx0YmFja2dyb3VuZFVwZGF0ZUludGVydmFsOlx0MjAsXG5cdFx0XHRcdG5vdGlmaWVkVGFza3M6XHRcdFx0XHRuZXcgQXJyYXkoKVxuXHRcdFx0fTtcblx0XHRcdFxuXHRcdFx0ZXh0ZW5zaW9uLnN0b3JhZ2Uuc2V0KGRlZmF1bHRzKTtcblx0XHRcdGV4dGVuc2lvbi5jcmVhdGVUYWIoXCJvcHRpb25zLmh0bWxcIik7XG5cdFx0XHRfZ2FxLnB1c2goWydfdHJhY2tFdmVudCcsICdTdGFydHVwJywgJ0luc3RhbGxlZCcsIGV4dGVuc2lvbi5nZXRFeHRlbnNpb25WZXJzaW9uKCldKTtcblx0XHR9XG5cdFx0XG5cdFx0ZXh0ZW5zaW9uLnNhZmFyaUNoZWNrRm9yVXBkYXRlKCk7XG5cdFx0Y2hlY2tEb25hdGlvbk5vdGlmaWNhdGlvbigpO1xuXHRcdGJpbmRFdmVudExpc3RlbmVycygpO1xuXHRcdGluaXQoKTtcblx0XHRcblx0XHRzZXRUaW1lb3V0KGV4dGVuc2lvbi5zYWZhcmlDaGVja0ZvclVwZGF0ZSwgMTAwMDApO1xuXHR9KTtcblx0XG5cdGlmKElTX1NBRkFSSSkge1xuXHRcdHNhZmFyaS5hcHBsaWNhdGlvbi5hZGRFdmVudExpc3RlbmVyKFwib3BlblwiLCBmdW5jdGlvbigpIHtcblx0XHRcdHVwZGF0ZVRvb2xiYXJJY29uKGRvd25sb2FkU3RhdGlvbik7XG5cdFx0fSwgdHJ1ZSk7XG5cdH1cbn0pO1xuXG5mdW5jdGlvbiBiaW5kRXZlbnRMaXN0ZW5lcnMoKSB7XG5cdGV4dGVuc2lvbi5vbk1lc3NhZ2UoKGV2ZW50LCBzZW5kUmVzcG9uc2UpID0+IHtcblx0XHRzd2l0Y2goZXZlbnQubmFtZSlcblx0XHR7XG5cdFx0XHRjYXNlIFwidGVzdENvbm5lY3Rpb25cIjpcblx0XHRcdFx0dGVzdENvbm5lY3Rpb24oZXZlbnQubWVzc2FnZSwgKHN1Y2Nlc3MsIG1lc3NhZ2UsIGRldmljZUluZm8pID0+IHtcblx0XHRcdFx0XHRzZW5kUmVzcG9uc2UoeyBzdWNjZXNzOiBzdWNjZXNzLCBtZXNzYWdlOiBtZXNzYWdlLCBkZXZpY2VJbmZvOiBkZXZpY2VJbmZvIH0pO1xuXHRcdFx0XHR9KTtcblx0XHRcdFx0YnJlYWs7XG5cdFx0XHRcblx0XHRcdGNhc2UgXCJnZXRTZXR0aW5nc1wiOlxuXHRcdFx0XHRnZXRFeHRlbnNpb25TZXR0aW5ncygoc2V0dGluZ3MpID0+IHtcblx0XHRcdFx0XHRzZW5kUmVzcG9uc2Uoc2V0dGluZ3MpO1xuXHRcdFx0XHR9KTtcblx0XHRcdFx0YnJlYWs7XG5cdFx0XHRcblx0XHRcdGNhc2UgXCJzYXZlQ29ubmVjdGlvblNldHRpbmdzXCI6XG5cdFx0XHRcdC8vIE1ha2Ugc3VyZSB0aGF0IHRoZSBvdGhlciBzZXR0aW5ncyBhcmUgY2xlYXJlZCB3aGVuIHN3aXRjaGluZyBiZXR3ZWVuIFF1aWNrQ29ubmVjdCBhbmQgbWFudWFsIGNvbm5lY3Rpb25cblx0XHRcdFx0aWYoZXZlbnQubWVzc2FnZS5xdWlja0Nvbm5lY3RJZClcblx0XHRcdFx0e1xuXHRcdFx0XHRcdGV2ZW50Lm1lc3NhZ2UudXJsID0gbnVsbDtcblx0XHRcdFx0XHRldmVudC5tZXNzYWdlLnBvcnQgPSBudWxsO1xuXHRcdFx0XHRcdGV2ZW50Lm1lc3NhZ2UucHJvdG9jb2wgPSBudWxsO1xuXHRcdFx0XHR9XG5cdFx0XHRcdGVsc2Vcblx0XHRcdFx0e1xuXHRcdFx0XHRcdGV2ZW50Lm1lc3NhZ2UucXVpY2tDb25uZWN0SWQgPSBudWxsO1xuXHRcdFx0XHR9XG5cdFx0XHRcdFxuXHRcdFx0XHR0ZXN0Q29ubmVjdGlvbihldmVudC5tZXNzYWdlLCAoc3VjY2VzcywgbWVzc2FnZSkgPT4ge1xuXHRcdFx0XHRcdGlmKHN1Y2Nlc3MgPT09IHRydWUpXG5cdFx0XHRcdFx0XHRleHRlbnNpb24uc3RvcmFnZS5zZXQoZXZlbnQubWVzc2FnZSk7XG5cdFx0XHRcdFx0XG5cdFx0XHRcdFx0c2VuZFJlc3BvbnNlKHsgc3VjY2Vzczogc3VjY2VzcywgbWVzc2FnZTogbWVzc2FnZSB9KTtcblx0XHRcdFx0fSk7XG5cdFx0XHRcdGJyZWFrO1xuXHRcdFx0XG5cdFx0XHRjYXNlIFwic2F2ZU90aGVyU2V0dGluZ3NcIjpcblx0XHRcdFx0ZXh0ZW5zaW9uLnN0b3JhZ2Uuc2V0KGV2ZW50Lm1lc3NhZ2UpO1xuXHRcdFx0XHRzZW5kUmVzcG9uc2UoeyBzdWNjZXNzOiB0cnVlIH0pO1xuXHRcdFx0XHRicmVhaztcblx0XHRcdFx0XG5cdFx0XHRjYXNlIFwiZ2V0UHJvdG9jb2xzXCI6XG5cdFx0XHRcdGV4dGVuc2lvbi5zdG9yYWdlLmdldChcIm9wZW5Qcm90b2NvbHNcIiwgKHN0b3JhZ2VJdGVtcykgPT4ge1xuXHRcdFx0XHRcdHZhciBvcGVuUHJvdG9jb2xzOiBBcnJheTxzdHJpbmc+ID0gc3RvcmFnZUl0ZW1zW1wib3BlblByb3RvY29sc1wiXVxuXHRcdFx0XHRcdGlmKCFBcnJheS5pc0FycmF5KG9wZW5Qcm90b2NvbHMpKVxuXHRcdFx0XHRcdFx0b3BlblByb3RvY29scyA9IG5ldyBBcnJheTxzdHJpbmc+KCk7XG5cdFx0XHRcdFx0XG5cdFx0XHRcdFx0c2VuZFJlc3BvbnNlKG9wZW5Qcm90b2NvbHMpO1xuXHRcdFx0XHR9KTtcblx0XHRcdFx0YnJlYWs7XG5cdFx0XHRjYXNlIFwiYWRkVGFza1wiOlxuXHRcdFx0XHRpZighZG93bmxvYWRTdGF0aW9uKVxuXHRcdFx0XHR7XG5cdFx0XHRcdFx0c2VuZFJlc3BvbnNlKHtcblx0XHRcdFx0XHRcdHN1Y2Nlc3M6IGZhbHNlLFxuXHRcdFx0XHRcdFx0ZGF0YTogXCJjb3VsZE5vdENvbm5lY3RcIlxuXHRcdFx0XHRcdH0pO1xuXHRcdFx0XHR9XG5cdFx0XHRcdGVsc2Vcblx0XHRcdFx0e1xuXHRcdFx0XHRcdHZhciBtID0gZXZlbnQubWVzc2FnZTtcblx0XHRcdFx0XHRkb3dubG9hZFN0YXRpb24uY3JlYXRlVGFzayhtLnVybCwgbS51c2VybmFtZSwgbS5wYXNzd29yZCwgbS51bnppcFBhc3N3b3JkLCBtLmRlc3RpbmF0aW9uRm9sZGVyLCBmdW5jdGlvbihzdWNjZXNzLCBkYXRhKSB7XG5cdFx0XHRcdFx0XHRpZih0eXBlb2Ygc2VuZFJlc3BvbnNlID09PSBcImZ1bmN0aW9uXCIpXG5cdFx0XHRcdFx0XHR7XG5cdFx0XHRcdFx0XHRcdHNlbmRSZXNwb25zZSh7XG5cdFx0XHRcdFx0XHRcdFx0c3VjY2Vzczogc3VjY2Vzcyxcblx0XHRcdFx0XHRcdFx0XHRkYXRhOiBkYXRhXG5cdFx0XHRcdFx0XHRcdH0pO1xuXHRcdFx0XHRcdFx0fVxuXHRcdFx0XHRcdH0pO1xuXHRcdFx0XHR9XG5cdFx0XHRcdF9nYXEucHVzaChbJ190cmFja0V2ZW50JywgJ0J1dHRvbicsIGV2ZW50Lm1lc3NhZ2UudGFza1R5cGVdKTtcblx0XHRcdFx0YnJlYWs7XG5cdFx0XHRjYXNlIFwiYWRkVGFza1dpdGhIdWRcIjpcblx0XHRcdFx0Y3JlYXRlVGFza1dpdGhIdWQoZXZlbnQubWVzc2FnZS51cmwsIGV2ZW50Lm1lc3NhZ2UudXNlcm5hbWUsIGV2ZW50Lm1lc3NhZ2UucGFzc3dvcmQsIGV2ZW50Lm1lc3NhZ2UudW56aXBQYXNzd29yZCk7XG5cdFx0XHRcdF9nYXEucHVzaChbJ190cmFja0V2ZW50JywgJ0J1dHRvbicsIGV2ZW50Lm1lc3NhZ2UudGFza1R5cGVdKTtcblx0XHRcdFx0YnJlYWs7XG5cdFx0XHRjYXNlIFwic2VuZFJlbW92ZURpYWxvZ01lc3NhZ2VcIjpcblx0XHRcdFx0ZXh0ZW5zaW9uLnNlbmRNZXNzYWdlVG9Db250ZW50KFwicmVtb3ZlRGlhbG9nXCIsIGV2ZW50Lm1lc3NhZ2UpO1xuXHRcdFx0XHRicmVhaztcblx0XHRcdGNhc2UgXCJsaXN0Rm9sZGVyc1wiOlxuXHRcdFx0XHRpZighZG93bmxvYWRTdGF0aW9uKVxuXHRcdFx0XHR7XG5cdFx0XHRcdFx0c2VuZFJlc3BvbnNlKHtcblx0XHRcdFx0XHRcdHN1Y2Nlc3M6IGZhbHNlLFxuXHRcdFx0XHRcdFx0ZGF0YTogXCJjb3VsZE5vdENvbm5lY3RcIlxuXHRcdFx0XHRcdH0pO1xuXHRcdFx0XHR9XG5cdFx0XHRcdGVsc2Vcblx0XHRcdFx0e1xuXHRcdFx0XHRcdGRvd25sb2FkU3RhdGlvbi5maWxlU3RhdGlvbi5saXN0Rm9sZGVycyhldmVudC5tZXNzYWdlLCAoc3VjY2VzcywgZGF0YSkgPT4ge1xuXHRcdFx0XHRcdFx0c2VuZFJlc3BvbnNlKHtcblx0XHRcdFx0XHRcdFx0c3VjY2Vzczogc3VjY2Vzcyxcblx0XHRcdFx0XHRcdFx0ZGF0YTogZGF0YVxuXHRcdFx0XHRcdFx0fSk7XG5cdFx0XHRcdFx0fSk7XG5cdFx0XHRcdH1cblx0XHRcdFx0YnJlYWs7XG5cdFx0XHRjYXNlIFwiY3JlYXRlRm9sZGVyXCI6XG5cdFx0XHRcdGlmKCFkb3dubG9hZFN0YXRpb24pXG5cdFx0XHRcdHtcblx0XHRcdFx0XHRzZW5kUmVzcG9uc2Uoe1xuXHRcdFx0XHRcdFx0c3VjY2VzczogZmFsc2UsXG5cdFx0XHRcdFx0XHRkYXRhOiBcImNvdWxkTm90Q29ubmVjdFwiXG5cdFx0XHRcdFx0fSk7XG5cdFx0XHRcdH1cblx0XHRcdFx0ZWxzZVxuXHRcdFx0XHR7XG5cdFx0XHRcdFx0ZG93bmxvYWRTdGF0aW9uLmZpbGVTdGF0aW9uLmZpbGVTdGF0aW9uQ3JlYXRlRm9sZGVyKGV2ZW50Lm1lc3NhZ2UucGF0aCwgZXZlbnQubWVzc2FnZS5uYW1lLCAoc3VjY2VzcywgZGF0YSwgZXJyb3JzKSA9PiB7XG5cdFx0XHRcdFx0XHRzZW5kUmVzcG9uc2Uoe1xuXHRcdFx0XHRcdFx0XHRzdWNjZXNzOiBzdWNjZXNzLFxuXHRcdFx0XHRcdFx0XHRkYXRhOiBkYXRhLFxuXHRcdFx0XHRcdFx0XHRlcnJvcnM6IGVycm9yc1xuXHRcdFx0XHRcdFx0fSk7XG5cdFx0XHRcdFx0fSk7XG5cdFx0XHRcdH1cblx0XHRcdFx0YnJlYWs7XG5cdFx0XHRjYXNlIFwicmVuYW1lXCI6XG5cdFx0XHRcdGlmKCFkb3dubG9hZFN0YXRpb24pXG5cdFx0XHRcdHtcblx0XHRcdFx0XHRzZW5kUmVzcG9uc2Uoe1xuXHRcdFx0XHRcdFx0c3VjY2VzczogZmFsc2UsXG5cdFx0XHRcdFx0XHRkYXRhOiBcImNvdWxkTm90Q29ubmVjdFwiXG5cdFx0XHRcdFx0fSk7XG5cdFx0XHRcdH1cblx0XHRcdFx0ZWxzZVxuXHRcdFx0XHR7XG5cdFx0XHRcdFx0ZG93bmxvYWRTdGF0aW9uLmZpbGVTdGF0aW9uLmZpbGVTdGF0aW9uUmVuYW1lKGV2ZW50Lm1lc3NhZ2UucGF0aCwgZXZlbnQubWVzc2FnZS5uYW1lLCAoc3VjY2VzcywgZGF0YSwgZXJyb3JzKSA9PiB7XG5cdFx0XHRcdFx0XHRzZW5kUmVzcG9uc2Uoe1xuXHRcdFx0XHRcdFx0XHRzdWNjZXNzOiBzdWNjZXNzLFxuXHRcdFx0XHRcdFx0XHRkYXRhOiBkYXRhLFxuXHRcdFx0XHRcdFx0XHRlcnJvcnM6IGVycm9yc1xuXHRcdFx0XHRcdFx0fSk7XG5cdFx0XHRcdFx0fSk7XG5cdFx0XHRcdH1cblx0XHRcdFx0YnJlYWs7XG5cdFx0XHRjYXNlIFwiZGVsZXRlXCI6XG5cdFx0XHRcdGlmKCFkb3dubG9hZFN0YXRpb24pXG5cdFx0XHRcdHtcblx0XHRcdFx0XHRzZW5kUmVzcG9uc2Uoe1xuXHRcdFx0XHRcdFx0c3VjY2VzczogZmFsc2UsXG5cdFx0XHRcdFx0XHRkYXRhOiBcImNvdWxkTm90Q29ubmVjdFwiXG5cdFx0XHRcdFx0fSk7XG5cdFx0XHRcdH1cblx0XHRcdFx0ZWxzZVxuXHRcdFx0XHR7XG5cdFx0XHRcdFx0ZG93bmxvYWRTdGF0aW9uLmZpbGVTdGF0aW9uLmZpbGVTdGF0aW9uRGVsZXRlKGV2ZW50Lm1lc3NhZ2UucGF0aCwgKHN1Y2Nlc3MsIGRhdGEsIGVycm9ycykgPT4ge1xuXHRcdFx0XHRcdFx0c2VuZFJlc3BvbnNlKHtcblx0XHRcdFx0XHRcdFx0c3VjY2Vzczogc3VjY2Vzcyxcblx0XHRcdFx0XHRcdFx0ZGF0YTogZGF0YSxcblx0XHRcdFx0XHRcdFx0ZXJyb3JzOiBlcnJvcnNcblx0XHRcdFx0XHRcdH0pO1xuXHRcdFx0XHRcdH0pO1xuXHRcdFx0XHR9XG5cdFx0XHRcdGJyZWFrO1xuICAgICAgICAgICAgY2FzZSBcImdldFN1cHBvcnRlZEZlYXR1cmVzXCI6XG4gICAgICAgICAgICAgICAgaWYoIWRvd25sb2FkU3RhdGlvbilcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIHNlbmRSZXNwb25zZShudWxsKTtcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgZWxzZSB7XG4gICAgICAgICAgICAgICAgICAgIFxuXHRcdFx0XHRcdGRvd25sb2FkU3RhdGlvbi5nZXRTdXBwb3J0ZWRGZWF0dXJlcygoZmVhdHVyZXMpID0+IHtcblx0XHRcdFx0XHRcdHNlbmRSZXNwb25zZShmZWF0dXJlcyk7XG5cdFx0XHRcdFx0fSk7XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgIGJyZWFrO1xuXHRcdH1cblx0fSk7XG5cdFxuXHRleHRlbnNpb24uc3RvcmFnZS5hZGRFdmVudExpc3RlbmVyKChjaGFuZ2VzKSA9PiB7XG5cdFx0dmFyIGNoYW5nZWRJdGVtcyA9IE9iamVjdC5rZXlzKGNoYW5nZXMpO1xuXHRcdGlmKGNoYW5nZWRJdGVtcy5pbmRleE9mKFwicXVpY2tDb25uZWN0SWRcIikgIT0gLTEgfHxcblx0XHRcdFx0Y2hhbmdlZEl0ZW1zLmluZGV4T2YoXCJ1c2VybmFtZVwiKSAhPSAtMSB8fCBjaGFuZ2VkSXRlbXMuaW5kZXhPZihcInBhc3N3b3JkXCIpICE9IC0xIHx8XG5cdFx0XHRcdGNoYW5nZWRJdGVtcy5pbmRleE9mKFwicHJvdG9jb2xcIikgIT0gLTEgfHwgY2hhbmdlZEl0ZW1zLmluZGV4T2YoXCJ1cmxcIikgIT0gLTEgfHxcblx0XHRcdFx0Y2hhbmdlZEl0ZW1zLmluZGV4T2YoXCJwb3J0XCIpICE9IC0xKVxuXHRcdHtcblx0XHRcdGluaXQoKTtcblx0XHR9XG5cdFx0ZWxzZSBpZihkb3dubG9hZFN0YXRpb24gIT0gbnVsbCAmJiAoY2hhbmdlZEl0ZW1zLmluZGV4T2YoXCJiYWNrZ3JvdW5kVXBkYXRlSW50ZXJ2YWxcIikgIT0gLTEgfHwgY2hhbmdlZEl0ZW1zLmluZGV4T2YoXCJ1cGRhdGVJbkJhY2tncm91bmRcIikgIT0gLTEpKVxuXHRcdHtcblx0XHRcdGV4dGVuc2lvbi5zdG9yYWdlLmdldChbXCJiYWNrZ3JvdW5kVXBkYXRlSW50ZXJ2YWxcIiwgXCJ1cGRhdGVJbkJhY2tncm91bmRcIl0sIChzdG9yYWdlSXRlbXMpID0+IHtcblx0XHRcdFx0ZG93bmxvYWRTdGF0aW9uLnNldEJhY2tncm91bmRVcGRhdGUoc3RvcmFnZUl0ZW1zW1widXBkYXRlSW5CYWNrZ3JvdW5kXCJdLCBzdG9yYWdlSXRlbXNbXCJiYWNrZ3JvdW5kVXBkYXRlSW50ZXJ2YWxcIl0pO1xuXHRcdFx0fSk7XG5cdFx0fVxuXHR9KTtcbn1cblxuXG5mdW5jdGlvbiBpbml0KCkge1xuXHQvLyBEaXNjb25uZWN0IGZyb20gRFMgd2l0aCBvbGQgc2V0dGluZ3Ncblx0aWYoZG93bmxvYWRTdGF0aW9uICE9IG51bGwpIHtcblx0XHRkb3dubG9hZFN0YXRpb24uZGVzdHJveShmdW5jdGlvbigpIHtcblx0XHRcdGRvd25sb2FkU3RhdGlvbiA9IG51bGw7XG5cdFx0XHRpbml0KCk7XG5cdFx0fSk7XG5cdFx0cmV0dXJuO1xuXHR9XG5cdFxuXHRnZXRFeHRlbnNpb25TZXR0aW5ncygoc2V0dGluZ3MpID0+IHtcblx0XHRcblx0XHRpZihzZXR0aW5ncy51c2VybmFtZVx0IT09IG51bGwgJiZcblx0XHRcdHNldHRpbmdzLnBhc3N3b3JkXHQhPT0gbnVsbCAmJlxuXHRcdFx0KHNldHRpbmdzLnF1aWNrQ29ubmVjdElkIHx8IChzZXR0aW5ncy5wcm90b2NvbCAmJiBzZXR0aW5ncy51cmwgJiYgc2V0dGluZ3MucG9ydCkpKVxuXHRcdHtcblx0XHRcdCQuZWFjaChleHRlbnNpb24uZ2V0UG9wb3ZlcnMoKSwgKGluZGV4LCBwb3BvdmVyKSA9PiB7XG5cdFx0XHRcdHRyeXtcblx0XHRcdFx0XHRpZigoPGFueT5wb3BvdmVyKS51cGRhdGVEZXZpY2VJbmZvKSB7XG5cdFx0XHRcdFx0XHQoPGFueT5wb3BvdmVyKS51cGRhdGVEZXZpY2VJbmZvKGdldERldmljZUluZm8oKSk7XG4gICAgICAgICAgICAgICAgICAgIH1cblx0XHRcdFx0fSBjYXRjaChleGNlcHRpb24pe1xuXHRcdFx0XHRcdGNvbnNvbGUuZXJyb3IoZXhjZXB0aW9uKTtcblx0XHRcdFx0fVxuXHRcdFx0fSk7XG5cdFx0XHRcblx0XHRcdGRvd25sb2FkU3RhdGlvbiA9IG5ldyBEb3dubG9hZFN0YXRpb25BUEkoc2V0dGluZ3MpO1xuXHRcdFx0XG5cdFx0XHRcblx0XHRcdHZhciBjb25uZWN0aW9uVHlwZSA9IHNldHRpbmdzLnF1aWNrQ29ubmVjdElkID8gXCJRdWlja0Nvbm5lY3RcIiA6IFwiTWFudWFsXCI7XG5cdFx0XHRfZ2FxLnB1c2goXG5cdFx0XHRcdFsnX3RyYWNrRXZlbnQnLCAnRGlza1N0YXRpb24nLCAnQ29ubmVjdGlvbiB0eXBlJywgY29ubmVjdGlvblR5cGVdLFxuXHRcdFx0XHRbJ190cmFja0V2ZW50JywgJ0Rpc2tTdGF0aW9uJywgJ1Byb3RvY29sJywgc2V0dGluZ3MucHJvdG9jb2xdLFxuXHRcdFx0XHRbJ190cmFja0V2ZW50JywgJ0Rpc2tTdGF0aW9uJywgJ1VwZGF0ZSBpbnRlcnZhbCcsIHNldHRpbmdzLmJhY2tncm91bmRVcGRhdGVJbnRlcnZhbF0sXG5cdFx0XHRcdFsnX3RyYWNrRXZlbnQnLCAnRGlza1N0YXRpb24nLCAnSGlkZSBzZWVkaW5nIHRvcnJlbnRzJywgc2V0dGluZ3MuaGlkZVNlZWRpbmdUb3JyZW50c11cblx0XHRcdCk7XG5cdFx0XHRcblx0XHRcdGRvd25sb2FkU3RhdGlvbi5hZGRFdmVudExpc3RlbmVyKFwiZGV2aWNlSW5mb1VwZGF0ZWRcIiwgKCkgPT4ge1xuXHRcdFx0XHRfZ2FxLnB1c2goXG5cdFx0XHRcdFx0WydfdHJhY2tFdmVudCcsICdEaXNrU3RhdGlvbicsICdEUyBidWlsZCcsIGRvd25sb2FkU3RhdGlvbi5fdmVyc2lvbl0sXG5cdFx0XHRcdFx0WydfdHJhY2tFdmVudCcsICdEaXNrU3RhdGlvbicsICdEUyB2ZXJzaW9uJywgZG93bmxvYWRTdGF0aW9uLl92ZXJzaW9uU3RyaW5nXSxcblx0XHRcdFx0XHRbJ190cmFja0V2ZW50JywgJ0Rpc2tTdGF0aW9uJywgJ0RTTSB2ZXJzaW9uJywgZG93bmxvYWRTdGF0aW9uLmRldmljZUluZm8uZHNtVmVyc2lvblN0cmluZ10sXG5cdFx0XHRcdFx0WydfdHJhY2tFdmVudCcsICdEaXNrU3RhdGlvbicsICdEU00gYnVpbGQnLCBkb3dubG9hZFN0YXRpb24uZGV2aWNlSW5mby5kc21WZXJzaW9uXSxcblx0XHRcdFx0XHRbJ190cmFja0V2ZW50JywgJ0Rpc2tTdGF0aW9uJywgJ01vZGVsJywgZG93bmxvYWRTdGF0aW9uLmRldmljZUluZm8ubW9kZWxOYW1lXVxuXHRcdFx0XHQpO1xuXHRcdFx0fSk7XG5cdFx0XHRcblx0XHRcdC8vICFQb3BvdmVyIGxvZ2luIHN0YXR1c1xuXHRcdFx0ZG93bmxvYWRTdGF0aW9uLmFkZEV2ZW50TGlzdGVuZXIoW1wibG9naW5TdGF0dXNDaGFuZ2VcIiwgXCJkZXZpY2VJbmZvVXBkYXRlZFwiLCBcImNvbm5lY3Rpb25TdGF0dXNVcGRhdGVkXCJdLCAoKSA9PiB7XG5cdFx0XHRcdHZhciBwb3BvdmVycyA9IGV4dGVuc2lvbi5nZXRQb3BvdmVycygpO1xuXHRcdFx0XHQkLmVhY2gocG9wb3ZlcnMsIGZ1bmN0aW9uKGluZGV4LCBwb3BvdmVyKSB7XG5cdFx0XHRcdFx0dHJ5IHtcblx0XHRcdFx0XHRcdCg8YW55PnBvcG92ZXIpLnVwZGF0ZURldmljZUluZm8oZG93bmxvYWRTdGF0aW9uLmRldmljZUluZm8pO1xuXHRcdFx0XHRcdH0gY2F0Y2goZXhjZXB0aW9uKXtcblx0XHRcdFx0XHRcdGNvbnNvbGUubG9nKGV4Y2VwdGlvbik7XG5cdFx0XHRcdFx0fVxuXHRcdFx0XHR9KTtcblx0XHRcdH0pO1xuXHRcdFx0XG5cdFx0XHQvLyAhUG9wb3ZlciB0YXNrIGxpc3Rcblx0XHRcdGRvd25sb2FkU3RhdGlvbi5hZGRFdmVudExpc3RlbmVyKFwidGFza3NVcGRhdGVkXCIsICgpID0+IHtcblx0XHRcdFx0dmFyIHBvcG92ZXJzID0gZXh0ZW5zaW9uLmdldFBvcG92ZXJzKCk7XG5cdFx0XHRcdCQuZWFjaChwb3BvdmVycywgZnVuY3Rpb24oaW5kZXgsIHBvcG92ZXIpIHtcblx0XHRcdFx0XHR0cnkge1xuXHRcdFx0XHRcdFx0KDxhbnk+cG9wb3ZlcikudXBkYXRlVGFza3MoZG93bmxvYWRTdGF0aW9uLnRhc2tzKTtcblx0XHRcdFx0XHR9IGNhdGNoKGV4Y2VwdGlvbil7XG5cdFx0XHRcdFx0XHRjb25zb2xlLmxvZyhleGNlcHRpb24pO1xuXHRcdFx0XHRcdH1cblx0XHRcdFx0fSk7XG5cdFx0XHR9KTtcblx0XHRcdFxuXHRcdFx0Ly8gIUJhZGdlXG5cdFx0XHRkb3dubG9hZFN0YXRpb24uYWRkRXZlbnRMaXN0ZW5lcihcInRhc2tzVXBkYXRlZFwiLCAoKSA9PiB7XG5cdFx0XHRcdFx0dmFyIGJhZGdlVGV4dCA9IDA7XG5cdFx0XHRcdFx0aWYoZG93bmxvYWRTdGF0aW9uICYmIGRvd25sb2FkU3RhdGlvbi5jb25uZWN0ZWQgPT0gdHJ1ZSAmJiBkb3dubG9hZFN0YXRpb24udGFza3MubGVuZ3RoID4gMClcblx0XHRcdFx0XHR7XG5cdFx0XHRcdFx0XHR2YXIgZmluaXNoZWRUYXNrcyA9IGRvd25sb2FkU3RhdGlvbi5nZXRGaW5pc2hlZFRhc2tzKCk7XG5cdFx0XHRcdFx0XHRiYWRnZVRleHQgPSBmaW5pc2hlZFRhc2tzLmxlbmd0aDtcblx0XHRcdFx0XHR9XG5cdFx0XHRcdFx0ZXh0ZW5zaW9uLnNldEJhZGdlKGJhZGdlVGV4dCk7XG5cdFx0XHR9KTtcblx0XHRcdFxuXHRcdFx0Ly8gIU5vdGlmaWNhdGlvbnNcblx0XHRcdGRvd25sb2FkU3RhdGlvbi5hZGRFdmVudExpc3RlbmVyKFwidGFza3NVcGRhdGVkXCIsICgpID0+IHtcblx0XHRcdFx0aWYoIWRvd25sb2FkU3RhdGlvbi5fc2V0dGluZ3MudXBkYXRlSW5CYWNrZ3JvdW5kKSB7XG5cdFx0XHRcdFx0cmV0dXJuO1xuXHRcdFx0XHR9XG5cdFx0XHRcdHZhciBmaW5pc2hlZFRhc2tzID0gZG93bmxvYWRTdGF0aW9uLmdldEZpbmlzaGVkVGFza3MoKTtcblx0XHRcdFx0aWYoZmluaXNoZWRUYXNrcy5sZW5ndGggPiAwKSB7XG5cdFx0XHRcdFx0c2hvd0ZpbmlzaGVkVGFza05vdGlmaWNhdGlvbnMoZmluaXNoZWRUYXNrcyk7XG5cdFx0XHRcdH1cblx0XHRcdH0pO1xuXHRcdFx0XG5cdFx0XHQvLyAhVG9vbGJhciBpY29uXG5cdFx0XHRkb3dubG9hZFN0YXRpb24uYWRkRXZlbnRMaXN0ZW5lcihbXCJjb25uZWN0ZWRcIiwgXCJjb25uZWN0aW9uTG9zdFwiLCBcImxvZ2luU3RhdHVzQ2hhbmdlXCJdLCAoKSA9PiB7XG5cdFx0XHRcdHVwZGF0ZVRvb2xiYXJJY29uKGRvd25sb2FkU3RhdGlvbik7XG5cdFx0XHR9KTtcblx0XHRcdFxuXHRcdFx0XG5cdFx0XHR2YXIgY29udGV4dE1lbnVJdGVtSUQgPSBcImRzQ29udGV4dE1lbnVJdGVtXCI7XG5cdFx0XHR2YXIgY29udGV4dE1lbnVJdGVtSURBZHZhbmNlZCA9IFwiZHNDb250ZXh0TWVudUl0ZW1BZHZhbmNlZFwiO1xuXHRcdFx0dmFyIGNvbnRleHRNZW51SXRlbVRleHQgPSBleHRlbnNpb24uZ2V0TG9jYWxpemVkU3RyaW5nKFwiY29udGV4dE1lbnVEb3dubG9hZE9uXCIsIFtkb3dubG9hZFN0YXRpb24uZGV2aWNlSW5mby5kZXZpY2VOYW1lXSk7XG5cdFx0XHRleHRlbnNpb24uY3JlYXRlQ29udGV4dE1lbnVJdGVtKHtcblx0XHRcdFx0aWQ6IGNvbnRleHRNZW51SXRlbUlELFxuXHRcdFx0XHR0aXRsZTogY29udGV4dE1lbnVJdGVtVGV4dCxcblx0XHRcdFx0ZW5hYmxlZDogdHJ1ZSxcblx0XHRcdFx0Y29udGV4dHM6IFtcInNlbGVjdGlvblwiLCBcImxpbmtcIiwgXCJpbWFnZVwiLCBcInZpZGVvXCIsIFwiYXVkaW9cIl0sXG5cdFx0XHRcdG9uY2xpY2s6IGZ1bmN0aW9uKGluZm8sIHRhYil7XG5cdFx0XHRcdFx0dmFyIHVybDogc3RyaW5nID0gbnVsbDtcblx0XHRcdFx0XHR2YXIgaXRlbVR5cGUgPSBcIk5vbmVcIjtcblx0XHRcdFx0XHRpZihpbmZvLmxpbmtVcmwpIHtcblx0XHRcdFx0XHRcdHVybCA9IHN0cmluZ1JlcGxhY2VBbGwoaW5mby5saW5rVXJsLCBcIiBcIiwgXCIlMjBcIik7XG5cdFx0XHRcdFx0XHRpdGVtVHlwZSA9IFwiTGlua1wiO1xuXHRcdFx0XHRcdH1cblx0XHRcdFx0XHRlbHNlIGlmKGluZm8uc3JjVXJsKSB7XG5cdFx0XHRcdFx0XHR1cmwgPSBzdHJpbmdSZXBsYWNlQWxsKGluZm8uc3JjVXJsLCBcIiBcIiwgXCIlMjBcIik7XG5cdFx0XHRcdFx0XHRpdGVtVHlwZSA9IFwiU291cmNlICh2aWRlby9hdWRpby9pbWFnZSlcIjtcblx0XHRcdFx0XHR9XG5cdFx0XHRcdFx0ZWxzZSBpZihpbmZvLnNlbGVjdGlvblRleHQpIHtcblx0XHRcdFx0XHRcdHVybCA9IGluZm8uc2VsZWN0aW9uVGV4dDtcblx0XHRcdFx0XHRcdGl0ZW1UeXBlID0gXCJTZWxlY3Rpb25cIjtcblx0XHRcdFx0XHR9XG5cdFx0XHRcdFx0XG5cdFx0XHRcdFx0X2dhcS5wdXNoKFsnX3RyYWNrRXZlbnQnLCAnQnV0dG9uJywgJ0NvbnRleHRNZW51JywgaXRlbVR5cGVdKTtcblx0XHRcdFx0XHRcdFxuXHRcdFx0XHRcdGNyZWF0ZVRhc2tXaXRoSHVkKHVybCk7XG5cdFx0XHRcdH1cblx0XHRcdFx0XG5cdFx0XHR9KTtcblx0XHRcdFxuXHRcdFx0ZXh0ZW5zaW9uLmNyZWF0ZUNvbnRleHRNZW51SXRlbSh7XG5cdFx0XHRcdGlkOiBjb250ZXh0TWVudUl0ZW1JREFkdmFuY2VkLFxuXHRcdFx0XHR0aXRsZTogZXh0ZW5zaW9uLmdldExvY2FsaXplZFN0cmluZyhcImNvbnRleHRNZW51RG93bmxvYWRBZHZhbmNlZFwiKSxcblx0XHRcdFx0ZW5hYmxlZDogdHJ1ZSxcblx0XHRcdFx0Y29udGV4dHM6IFtcInNlbGVjdGlvblwiLCBcImxpbmtcIiwgXCJpbWFnZVwiLCBcInZpZGVvXCIsIFwiYXVkaW9cIl0sXG5cdFx0XHRcdG9uY2xpY2s6IGZ1bmN0aW9uKGluZm8sIHRhYil7XG5cdFx0XHRcdFx0dmFyIHVybDogc3RyaW5nID0gbnVsbDtcblx0XHRcdFx0XHR2YXIgaXRlbVR5cGUgPSBcIk5vbmVcIjtcblx0XHRcdFx0XHRpZihpbmZvLmxpbmtVcmwpIHtcblx0XHRcdFx0XHRcdHVybCA9IHN0cmluZ1JlcGxhY2VBbGwoaW5mby5saW5rVXJsLCBcIiBcIiwgXCIlMjBcIik7XG5cdFx0XHRcdFx0XHRpdGVtVHlwZSA9IFwiTGlua1wiO1xuXHRcdFx0XHRcdH1cblx0XHRcdFx0XHRlbHNlIGlmKGluZm8uc3JjVXJsKSB7XG5cdFx0XHRcdFx0XHR1cmwgPSBzdHJpbmdSZXBsYWNlQWxsKGluZm8uc3JjVXJsLCBcIiBcIiwgXCIlMjBcIik7XG5cdFx0XHRcdFx0XHRpdGVtVHlwZSA9IFwiU291cmNlICh2aWRlby9hdWRpby9pbWFnZSlcIjtcblx0XHRcdFx0XHR9XG5cdFx0XHRcdFx0ZWxzZSBpZihpbmZvLnNlbGVjdGlvblRleHQpIHtcblx0XHRcdFx0XHRcdHVybCA9IGluZm8uc2VsZWN0aW9uVGV4dDtcblx0XHRcdFx0XHRcdGl0ZW1UeXBlID0gXCJTZWxlY3Rpb25cIjtcblx0XHRcdFx0XHR9XG5cdFx0XHRcdFx0XG5cdFx0XHRcdFx0X2dhcS5wdXNoKFsnX3RyYWNrRXZlbnQnLCAnQnV0dG9uJywgJ0NvbnRleHRNZW51QWR2YW5jZWQnLCBpdGVtVHlwZV0pO1xuXHRcdFx0XHRcdFxuXHRcdFx0XHRcdGV4dGVuc2lvbi5zZW5kTWVzc2FnZVRvQ29udGVudChcIm9wZW5Eb3dubG9hZERpYWxvZ1wiLCB7IHVybDogdXJsIH0pO1xuXHRcdFx0XHR9XG5cdFx0XHRcdFxuXHRcdFx0fSk7XG5cdFx0XHRcblx0XHRcdGRvd25sb2FkU3RhdGlvbi5hZGRFdmVudExpc3RlbmVyKFwiZGVzdHJveVwiLCAoKSA9PiB7XG5cdFx0XHRcdGV4dGVuc2lvbi5yZW1vdmVDb250ZXh0TWVudUl0ZW0oY29udGV4dE1lbnVJdGVtSUQpO1xuXHRcdFx0XHRleHRlbnNpb24ucmVtb3ZlQ29udGV4dE1lbnVJdGVtKGNvbnRleHRNZW51SXRlbUlEQWR2YW5jZWQpO1xuXHRcdFx0fSk7XG5cdFx0XHRcblx0XHRcdGRvd25sb2FkU3RhdGlvbi5zdGFydEJhY2tncm91bmRVcGRhdGUoKTtcblx0XHR9XG5cdH0pO1xufVxuXG5mdW5jdGlvbiB1cGRhdGVUb29sYmFySWNvbihkb3dubG9hZFN0YXRpb246IERvd25sb2FkU3RhdGlvbikge1xuXHRpZiAoZG93bmxvYWRTdGF0aW9uICYmIGRvd25sb2FkU3RhdGlvbi5kZXZpY2VJbmZvICYmIGRvd25sb2FkU3RhdGlvbi5kZXZpY2VJbmZvLmxvZ2dlZEluICYmIGRvd25sb2FkU3RhdGlvbi5jb25uZWN0ZWQpXG5cdHtcblx0XHRpZiAoSVNfQ0hST01FKVxuXHRcdFx0Y2hyb21lLmJyb3dzZXJBY3Rpb24uc2V0SWNvbih7IHBhdGg6IHsgJzE5JyA6ICdJY29uLTE5LnBuZycsICczOCcgOiAnSWNvbi0zOC5wbmcnIH19KTtcblx0XHRlbHNlIGlmIChJU19TQUZBUkkpXG5cdFx0e1xuXHRcdFx0Zm9yICh2YXIgaSA9IDA7IGkgPCBzYWZhcmkuZXh0ZW5zaW9uLnRvb2xiYXJJdGVtcy5sZW5ndGg7IGkrKylcblx0XHRcdHtcblx0XHRcdFx0c2FmYXJpLmV4dGVuc2lvbi50b29sYmFySXRlbXNbaV0uaW1hZ2UgPSBleHRlbnNpb24uZ2V0UmVzb3VyY2VVUkwoXCJjc3MvaW1nL2ljb24tYmxhY2sucG5nXCIpO1xuXHRcdFx0fVxuXHRcdH1cblx0fVxuXHRlbHNlXG5cdHtcblx0XHRpZiAoSVNfQ0hST01FKVxuXHRcdFx0Y2hyb21lLmJyb3dzZXJBY3Rpb24uc2V0SWNvbih7IHBhdGg6IHsgJzE5JyA6ICdJY29uLTE5LWRpc2Nvbm5lY3RlZC5wbmcnLCAnMzgnIDogJ0ljb24tMzgtZGlzY29ubmVjdGVkLnBuZycgfX0pO1xuXHRcdGVsc2UgaWYgKElTX1NBRkFSSSlcblx0XHR7XG5cdFx0XHRmb3IgKHZhciBpID0gMDsgaSA8IHNhZmFyaS5leHRlbnNpb24udG9vbGJhckl0ZW1zLmxlbmd0aDsgaSsrKVxuXHRcdFx0e1xuXHRcdFx0XHRzYWZhcmkuZXh0ZW5zaW9uLnRvb2xiYXJJdGVtc1tpXS5pbWFnZSA9IGV4dGVuc2lvbi5nZXRSZXNvdXJjZVVSTChcImNzcy9pbWcvaWNvbi1ibGFjay1kaXNjb25uZWN0ZWQucG5nXCIpO1xuXHRcdFx0fVxuXHRcdH1cblx0fVxufVxuXG5mdW5jdGlvbiBzaG93RmluaXNoZWRUYXNrTm90aWZpY2F0aW9ucyhmaW5pc2hlZFRhc2tzOiBBcnJheTxJRG93bmxvYWRTdGF0aW9uVGFzaz4pIHtcblx0ZXh0ZW5zaW9uLnN0b3JhZ2UuZ2V0KFwibm90aWZpZWRUYXNrc1wiLCAoc3RvcmFnZUl0ZW1zOiB7IFtrZXk6IHN0cmluZ10gOiBhbnl9KSA9PiB7XG5cdFx0dmFyIHRvTm90aWZ5ID0gbmV3IEFycmF5PElEb3dubG9hZFN0YXRpb25UYXNrPigpO1xuXHRcdHZhciBub3RpZmllZCA9IHN0b3JhZ2VJdGVtc1tcIm5vdGlmaWVkVGFza3NcIl07XG5cdFx0aWYoIUFycmF5LmlzQXJyYXkobm90aWZpZWQpKVxuXHRcdFx0bm90aWZpZWQgPSBuZXcgQXJyYXkoKTtcblx0XHRcblx0XHQvLyBSZW1vdmUgdGFza3MgZnJvbSBsaXN0IGZvciB3aGljaCBhIG5vdGlmaWNhdGlvbiBoYXMgYmVlbiBzZW50IGJlZm9yZVxuXHRcdCQuZWFjaChmaW5pc2hlZFRhc2tzLCAoaW5kZXg6IG51bWJlciwgdGFzazogSURvd25sb2FkU3RhdGlvblRhc2spID0+IHtcblx0XHRcdGlmKG5vdGlmaWVkLmluZGV4T2YodGFzay5pZCkgPT0gLTEpIHtcblx0XHRcdFx0dG9Ob3RpZnkucHVzaCh0YXNrKTtcblx0XHRcdFx0bm90aWZpZWQucHVzaCh0YXNrLmlkKTtcblx0XHRcdH1cblx0XHR9KTtcblx0XHRcblx0XHRleHRlbnNpb24uc3RvcmFnZS5zZXQoeyBub3RpZmllZFRhc2tzOiBub3RpZmllZCB9KTtcblx0XHRcblx0XHRpZih0b05vdGlmeS5sZW5ndGggPT0gMSkge1xuXHRcdFx0ZXh0ZW5zaW9uLnNob3dOb3RpZmljYXRpb24oZXh0ZW5zaW9uLmdldExvY2FsaXplZFN0cmluZygnZG93bmxvYWRGaW5pc2hlZCcpLCB0b05vdGlmeVswXS50aXRsZSk7XG5cdFx0fVxuXHRcdFxuXHRcdGVsc2UgaWYodG9Ob3RpZnkubGVuZ3RoID4gMSkge1xuXHRcdFx0dmFyIG1lc3NhZ2UgPSBleHRlbnNpb24uZ2V0TG9jYWxpemVkU3RyaW5nKCdudW1iZXJUYXNrc0ZpbmlzaGVkJywgW3RvTm90aWZ5Lmxlbmd0aC50b1N0cmluZygpXSk7XG5cdFx0XHRleHRlbnNpb24uc2hvd05vdGlmaWNhdGlvbihleHRlbnNpb24uZ2V0TG9jYWxpemVkU3RyaW5nKCdkb3dubG9hZHNGaW5pc2hlZCcpLCBtZXNzYWdlKTtcblx0XHR9XG5cdH0pO1xufVxuXG5mdW5jdGlvbiBnZXRFeHRlbnNpb25TZXR0aW5ncyhjYWxsYmFjazogKHNldHRpbmdzOiBJRXh0ZW5zaW9uU2V0dGluZ3MpID0+IHZvaWQpIHtcblx0ZXh0ZW5zaW9uLnN0b3JhZ2UuZ2V0KFtcInF1aWNrQ29ubmVjdElkXCIsIFwicHJvdG9jb2xcIiwgXCJ1cmxcIiwgXCJwb3J0XCIsIFwidXNlcm5hbWVcIiwgXCJwYXNzd29yZFwiLCBcblx0XHRcdFx0XHRcdFx0XHRcdFwiYmFja2dyb3VuZFVwZGF0ZUludGVydmFsXCIsIFwidXBkYXRlSW5CYWNrZ3JvdW5kXCIsIFxuXHRcdFx0XHRcdFx0XHRcdFx0XCJvcGVuUHJvdG9jb2xzXCIsIFwiaGlkZVNlZWRpbmdUb3JyZW50c1wiLCBcImVtYWlsXCJdLFxuXHRcdFx0XHRcdFx0XHRcdFx0KHN0b3JhZ2VJdGVtczogSUV4dGVuc2lvblNldHRpbmdzKSA9PiB7XG5cdFx0aWYoIUFycmF5LmlzQXJyYXkoc3RvcmFnZUl0ZW1zLm9wZW5Qcm90b2NvbHMpKSB7XG5cdFx0XHRzdG9yYWdlSXRlbXMub3BlblByb3RvY29scyA9IG5ldyBBcnJheTxzdHJpbmc+KCk7XG4gICAgICAgIH1cblx0XHRcblx0XHRjYWxsYmFjayhzdG9yYWdlSXRlbXMpO1xuXHR9KTtcbn1cblxuZnVuY3Rpb24gdGVzdENvbm5lY3Rpb24ob3B0aW9uczogSURvd25sb2FkU3RhdGlvblNldHRpbmdzLCBjYWxsYmFjazogKHN1Y2Nlc3M6IGJvb2xlYW4sIG1lc3NhZ2U6IHN0cmluZywgZGV2aWNlSW5mbz86IElTeW5vbG9neURldmljZUluZm8pID0+IHZvaWQpOiB2b2lkIHtcblx0dmFyIHRlc3RPcHRpb25zOiBhbnkgPSB7fTtcblx0JC5leHRlbmQodGVzdE9wdGlvbnMsIG9wdGlvbnMpO1xuXHR0ZXN0T3B0aW9ucy51cGRhdGVJbkJhY2tncm91bmQgPSBmYWxzZTtcblx0XG5cdHZhciBkc0luc3RhbmNlID0gbmV3IERvd25sb2FkU3RhdGlvbkFQSSh0ZXN0T3B0aW9ucyk7XG5cdGRzSW5zdGFuY2UubG9hZFRhc2tzKChzdWNjZXNzOiBib29sZWFuLCBkYXRhOiBhbnkpID0+IHtcblx0XHRpZihzdWNjZXNzID09PSBmYWxzZSkge1xuXHRcdFx0Y2FsbGJhY2soc3VjY2VzcywgZXh0ZW5zaW9uLmdldExvY2FsaXplZFN0cmluZyhcImFwaV9lcnJvcl9cIiArIGRhdGEpKTtcblx0XHR9XG5cdFx0ZWxzZSB7XG5cdFx0XHRjYWxsYmFjayhzdWNjZXNzLCBleHRlbnNpb24uZ2V0TG9jYWxpemVkU3RyaW5nKFwidGVzdFJlc3VsdFN1Y2Nlc3NcIiksIGRzSW5zdGFuY2UuZGV2aWNlSW5mbyk7XG5cdFx0fVxuXHRcdFxuXHRcdGRzSW5zdGFuY2UuZGVzdHJveSgpO1xuXHRcdGRzSW5zdGFuY2UgPSBudWxsO1xuXHR9KTtcbn1cblxuaW50ZXJmYWNlIEh1ZEl0ZW0ge1xuICAgIGFjdGlvbjogc3RyaW5nO1xuICAgIGljb246IHN0cmluZztcbiAgICB0ZXh0OiBzdHJpbmc7XG4gICAgYXV0b0hpZGU6IGJvb2xlYW47XG59XG5cbmZ1bmN0aW9uIHVwZGF0ZUh1ZChodWRJdGVtOiBIdWRJdGVtKSB7XG5cdGV4dGVuc2lvbi5zZW5kTWVzc2FnZVRvQ29udGVudChcImh1ZFwiLCBodWRJdGVtKTtcbn1cblxuZnVuY3Rpb24gZ2V0RGV2aWNlSW5mbygpIHtcblx0cmV0dXJuIGRvd25sb2FkU3RhdGlvbiA/IGRvd25sb2FkU3RhdGlvbi5kZXZpY2VJbmZvIDogbnVsbDtcbn1cblxuZnVuY3Rpb24gZ2V0VGFza3MoKSB7XG5cdGlmKGRvd25sb2FkU3RhdGlvbiA9PSBudWxsKVxuXHRcdHJldHVybiBbXTtcblx0XG5cdHJldHVybiBkb3dubG9hZFN0YXRpb24udGFza3M7XG59XG5cbmZ1bmN0aW9uIGNyZWF0ZVRhc2sodXJsOiBzdHJpbmcsIHVzZXJuYW1lPzogc3RyaW5nLCBwYXNzd29yZD86IHN0cmluZywgdW56aXBQYXNzd29yZD86IHN0cmluZywgY2FsbGJhY2s/OiAoc3VjY2VzczogYm9vbGVhbiwgZGF0YTogYW55KSA9PiB2b2lkKSB7XG5cdGlmKGRvd25sb2FkU3RhdGlvbiAhPSBudWxsKSB7XG5cdFx0ZG93bmxvYWRTdGF0aW9uLmNyZWF0ZVRhc2sodXJsLCB1c2VybmFtZSwgcGFzc3dvcmQsIHVuemlwUGFzc3dvcmQsIG51bGwsIGNhbGxiYWNrKTtcblx0XHRfZ2FxLnB1c2goWydfdHJhY2tFdmVudCcsICdEb3dubG9hZHMnLCAnQWRkIHRhc2snXSk7XG5cdH1cbn1cblxuZnVuY3Rpb24gY3JlYXRlVGFza1dpdGhIdWQodXJsOiBzdHJpbmcsIHVzZXJuYW1lPzogc3RyaW5nLCBwYXNzd29yZD86IHN0cmluZywgdW56aXBQYXNzd29yZD86IHN0cmluZywgY2FsbGJhY2s/OiAoc3VjY2VzczogYm9vbGVhbiwgbWVzc2FnZTogc3RyaW5nKSA9PiB2b2lkKSB7XG5cdFxuXHRpZihkb3dubG9hZFN0YXRpb24gIT0gbnVsbCkge1xuXHRcdHVwZGF0ZUh1ZCh7IGFjdGlvbjogXCJzaG93XCIsIGljb246IFwicHJvZ3Jlc3NcIiwgdGV4dDogZXh0ZW5zaW9uLmdldExvY2FsaXplZFN0cmluZyhcImRvd25sb2FkVGFza0FkZGluZ1wiKSwgYXV0b0hpZGU6IGZhbHNlIH0pO1xuXHRcdFxuXHRcdGRvd25sb2FkU3RhdGlvbi5jcmVhdGVUYXNrKHVybCwgdXNlcm5hbWUsIHBhc3N3b3JkLCB1bnppcFBhc3N3b3JkLCBudWxsLCBmdW5jdGlvbihzdWNjZXNzLCBtZXNzYWdlKSB7XG5cdFx0XHRpZihzdWNjZXNzKSB7XG5cdFx0XHRcdHVwZGF0ZUh1ZCh7IGFjdGlvbjogXCJzaG93XCIsIGljb246IFwiY2hlY2tcIiwgdGV4dDogZXh0ZW5zaW9uLmdldExvY2FsaXplZFN0cmluZyhcImRvd25sb2FkVGFza0FjY2VwdGVkXCIpLCBhdXRvSGlkZTogdHJ1ZSB9KTtcblx0XHRcdH1cblx0XHRcdGVsc2Uge1xuXHRcdFx0XHR1cGRhdGVIdWQoeyBhY3Rpb246IFwic2hvd1wiLCBpY29uOiBcImNyb3NzXCIsIHRleHQ6IGV4dGVuc2lvbi5nZXRMb2NhbGl6ZWRTdHJpbmcoXCJhcGlfZXJyb3JfXCIgKyBtZXNzYWdlKSwgYXV0b0hpZGU6IHRydWUgfSk7XG5cdFx0XHR9XG5cdFx0XHRcblx0XHRcdGlmKGNhbGxiYWNrKSB7XG5cdFx0XHRcdGNhbGxiYWNrKHN1Y2Nlc3MsIG1lc3NhZ2UpO1xuICAgICAgICAgICAgfVxuXHRcdH0pO1xuXHRcdF9nYXEucHVzaChbJ190cmFja0V2ZW50JywgJ0Rvd25sb2FkcycsICdBZGQgdGFzayddKTtcblx0fVxuXHRlbHNlIHtcblx0XHR1cGRhdGVIdWQoeyBhY3Rpb246IFwic2hvd1wiLCBpY29uOiBcImNyb3NzXCIsIHRleHQ6IGV4dGVuc2lvbi5nZXRMb2NhbGl6ZWRTdHJpbmcoXCJhcGlfZXJyb3JfY291bGROb3RDb25uZWN0XCIpLCBhdXRvSGlkZTogdHJ1ZSB9KTtcblx0fVxufVxuXG5mdW5jdGlvbiByZXN1bWVUYXNrKGlkczogQXJyYXk8c3RyaW5nPiwgY2FsbGJhY2s6IChzdWNjZXNzOiBib29sZWFuLCBkYXRhOiBhbnkpID0+IHZvaWQpIHtcblx0aWYoZG93bmxvYWRTdGF0aW9uICE9IG51bGwpIHtcblx0XHRkb3dubG9hZFN0YXRpb24ucmVzdW1lVGFzayhpZHMsIGNhbGxiYWNrKTtcblx0XHRfZ2FxLnB1c2goWydfdHJhY2tFdmVudCcsICdEb3dubG9hZHMnLCAnUmVzdW1lIHRhc2snLCBpZHMubGVuZ3RoXSk7XG5cdH1cbn1cblxuZnVuY3Rpb24gcGF1c2VUYXNrKGlkczogQXJyYXk8c3RyaW5nPiwgY2FsbGJhY2s6IChzdWNjZXNzOiBib29sZWFuLCBkYXRhOiBhbnkpID0+IHZvaWQpIHtcblx0aWYoZG93bmxvYWRTdGF0aW9uICE9IG51bGwpIHtcblx0XHRkb3dubG9hZFN0YXRpb24ucGF1c2VUYXNrKGlkcywgY2FsbGJhY2spO1xuXHRcdF9nYXEucHVzaChbJ190cmFja0V2ZW50JywgJ0Rvd25sb2FkcycsICdQYXVzZSB0YXNrJywgaWRzLmxlbmd0aF0pO1xuXHR9XG59XG5cbmZ1bmN0aW9uIGRlbGV0ZVRhc2soaWRzOiBBcnJheTxzdHJpbmc+LCBjYWxsYmFjazogKHN1Y2Nlc3M6IGJvb2xlYW4sIGRhdGE6IGFueSkgPT4gdm9pZCkge1xuXHRpZihkb3dubG9hZFN0YXRpb24gIT0gbnVsbCkge1xuXHRcdGRvd25sb2FkU3RhdGlvbi5kZWxldGVUYXNrKGlkcywgY2FsbGJhY2spO1xuXHRcdF9nYXEucHVzaChbJ190cmFja0V2ZW50JywgJ0Rvd25sb2FkcycsICdSZW1vdmUgdGFzaycsIGlkcy5sZW5ndGhdKTtcblx0fVxufVxuXG5mdW5jdGlvbiBjbGVhckZpbmlzaGVkVGFza3MoY2FsbGJhY2s6IChzdWNjZXNzOiBib29sZWFuLCBkYXRhOiBhbnkpID0+IHZvaWQpIHtcblx0aWYoZG93bmxvYWRTdGF0aW9uICE9IG51bGwpIHtcblx0XHRkb3dubG9hZFN0YXRpb24uY2xlYXJGaW5pc2hlZFRhc2tzKChzdWNjZXNzLCBkYXRhKSA9PiB7XG5cdFx0XHRpZihzdWNjZXNzKSB7XG5cdFx0XHRcdGV4dGVuc2lvbi5zdG9yYWdlLnNldCh7IG5vdGlmaWVkVGFza3M6IG5ldyBBcnJheTxzdHJpbmc+KCkgfSk7XG4gICAgICAgICAgICB9XG5cdFx0XHRjYWxsYmFjayhzdWNjZXNzLCBkYXRhKTtcblx0XHR9KTtcblx0XHRfZ2FxLnB1c2goWydfdHJhY2tFdmVudCcsICdEb3dubG9hZHMnLCAnQ2xlYXIgcXVldWUnXSk7XG5cdH1cbn1cblxuZnVuY3Rpb24gc2V0VXBkYXRlSW50ZXJ2YWwoc2Vjb25kczogbnVtYmVyKSB7XG5cdGlmKGRvd25sb2FkU3RhdGlvbiAhPSBudWxsKSB7XG5cdFx0ZG93bmxvYWRTdGF0aW9uLnN0YXJ0QmFja2dyb3VuZFVwZGF0ZShzZWNvbmRzKTtcbiAgICB9XG59XG5cbmZ1bmN0aW9uIGNoZWNrRG9uYXRpb25Ob3RpZmljYXRpb24oKSB7XG5cdHZhciBub3cgPSBuZXcgRGF0ZSgpLmdldFRpbWUoKTtcblx0dmFyIG9uZVdlZWsgPSA2MDQ4MDAwMDA7XG5cdFxuXHRleHRlbnNpb24uc3RvcmFnZS5nZXQoW1wibGFzdERvbmF0aW9uTm90aWZpY2F0aW9uXCIsIFwiZW1haWxcIl0sIChzdG9yYWdlSXRlbXMpID0+IHtcblx0XHR2YXIgbGFzdENoZWNrOiBudW1iZXIgPSBzdG9yYWdlSXRlbXNbXCJsYXN0RG9uYXRpb25Ob3RpZmljYXRpb25cIl07XG5cdFx0dmFyIGVtYWlsOiBzdHJpbmcgPSBzdG9yYWdlSXRlbXNbXCJlbWFpbFwiXTtcblx0XHRcbiAgICAgICAgaWYobGFzdENoZWNrID09IG51bGwpIHtcblx0XHRcdGxhc3RDaGVjayA9IG5vdyAtIChvbmVXZWVrICogMyk7Ly8gRmlyc3Qgbm90aWZpY2F0aW9uIGFmdGVyIG9uZSB3ZWVrLlxuICAgICAgICB9XG5cdFx0XG5cdFx0aWYoKG5vdy1sYXN0Q2hlY2spID4gb25lV2Vlayo0KSB7XG5cdFx0XHRpZih0eXBlb2YgZW1haWwgIT09IFwic3RyaW5nXCIgfHwgZW1haWwubGVuZ3RoID09PSAwKSB7XG5cdFx0XHRcdGV4dGVuc2lvbi5zdG9yYWdlLnNldCh7IGxhc3REb25hdGlvbk5vdGlmaWNhdGlvbjogbmV3IERhdGUoKS5nZXRUaW1lKCl9KTtcblx0XHRcdFx0c2hvd0RvbmF0aW9uTm90aWZpY2F0aW9uKCk7XG5cdFx0XHR9XG5cdFx0XHRlbHNlIHtcblx0XHRcdFx0JC5wb3N0KERPTkFUSU9OX0NIRUNLX1VSTCwgeyBlbWFpbDogZW1haWwgfSlcblx0XHRcdFx0LmRvbmUoKGRhdGEpID0+IHtcblx0XHRcdFx0XHRleHRlbnNpb24uc3RvcmFnZS5zZXQoeyBsYXN0RG9uYXRpb25Ob3RpZmljYXRpb246IG5ldyBEYXRlKCkuZ2V0VGltZSgpfSk7XG5cdFx0XHRcdFx0aWYoIWRhdGEucmVzdWx0KSB7XG5cdFx0XHRcdFx0XHRzaG93RG9uYXRpb25Ob3RpZmljYXRpb24oKTtcblx0XHRcdFx0XHR9XG5cdFx0XHRcdH0pLmZhaWwoKGpxWEhSLCB0ZXh0U3RhdHVzLCBlcnJvclRocm93bikgPT4ge1xuXHRcdFx0XHRcdF9nYXEucHVzaChbJ190cmFja0V2ZW50JywgJ0RvbmF0aW9uIGNoZWNrJywgJ0NoZWNrIGZhaWxlZCcsIHRleHRTdGF0dXMgKyAnIC0gJyArIGVycm9yVGhyb3duXSk7XG5cdFx0XHRcdH0pO1xuXHRcdFx0fVxuXHRcdH1cblx0XHRlbHNlIHtcblx0XHRcdGV4dGVuc2lvbi5zdG9yYWdlLnNldCh7IGxhc3REb25hdGlvbk5vdGlmaWNhdGlvbjogbGFzdENoZWNrfSk7XG5cdFx0fVxuXHR9KTtcbn1cblxuZnVuY3Rpb24gc2hvd0RvbmF0aW9uTm90aWZpY2F0aW9uKCkge1xuXHR2YXIgbWVkaXVtID0gXCJ1bmtub3duXCI7XG5cdGlmKElTX09QRVJBKVxuXHRcdG1lZGl1bSA9IFwiT3BlcmFcIjtcblx0ZWxzZSBpZihJU19DSFJPTUUpXG5cdFx0bWVkaXVtID0gXCJDaHJvbWVcIjtcblx0ZWxzZSBpZihJU19TQUZBUkkpXG5cdFx0bWVkaXVtID0gXCJTYWZhcmlcIjtcblx0XHRcblx0dmFyIGRvbmF0aW9uUGFnZVVybCA9IERPTkFUSU9OX1VSTCArIFwiP3V0bV9zb3VyY2U9ZXh0ZW5zaW9uJnV0bV9tZWRpdW09XCIgKyBtZWRpdW0gKyBcIiZ1dG1fY2FtcGFpZ249bm90aWZpY2F0aW9uXCI7XG5cdHZhciBub3RpZmljYXRpb24gPSBleHRlbnNpb24uc2hvd05vdGlmaWNhdGlvbignU3lub2xvZ3kgRG93bmxvYWQgU3RhdGlvbicsIGV4dGVuc2lvbi5nZXRMb2NhbGl6ZWRTdHJpbmcoJ2RvbmF0aW9uTm90aWZpY2F0aW9uJyksIHRydWUsIGRvbmF0aW9uUGFnZVVybCk7XG5cdFxuXHRpZihub3RpZmljYXRpb24gPT0gbnVsbCAmJiBJU19PUEVSQSkge1xuXHRcdGV4dGVuc2lvbi5jcmVhdGVUYWIoZG9uYXRpb25QYWdlVXJsKTtcblx0fVxufVxuXG5mdW5jdGlvbiBzdHJpbmdSZXBsYWNlQWxsKHN1YmplY3Q6IHN0cmluZywgc2VhcmNoOiBzdHJpbmcsIHJlcGxhY2U6IHN0cmluZywgaWdub3JlPzogYm9vbGVhbik6IHN0cmluZyB7XG5cdGlmKHR5cGVvZiBzdWJqZWN0ICE9PSBcInN0cmluZ1wiKVxuXHRcdHJldHVybiBzdWJqZWN0O1xuXHRcblx0cmV0dXJuIHN1YmplY3QucmVwbGFjZShuZXcgUmVnRXhwKHNlYXJjaC5yZXBsYWNlKC8oW1xcL1xcLFxcIVxcXFxcXF5cXCRcXHtcXH1cXFtcXF1cXChcXClcXC5cXCpcXCtcXD9cXHxcXDxcXD5cXC1cXCZdKS9nLFwiXFxcXCQmXCIpLChpZ25vcmU/XCJnaVwiOlwiZ1wiKSksKHR5cGVvZihyZXBsYWNlKT09XCJzdHJpbmdcIik/cmVwbGFjZS5yZXBsYWNlKC9cXCQvZyxcIiQkJCRcIik6cmVwbGFjZSk7XG59XG5cbnZhciBfZ2FxOiBBcnJheTxhbnk+ID0gX2dhcSB8fCBbXTtcbl9nYXEucHVzaChbJ19zZXRBY2NvdW50JywgQU5BTFlUSUNTX0lEXSk7XG5fZ2FxLnB1c2goWydfdHJhY2tQYWdldmlldyddKTtcbl9nYXEucHVzaChbJ190cmFja0V2ZW50JywgJ1N0YXJ0dXAnLCAnRXh0ZW5zaW9uVmVyc2lvbicsICcnICsgZXh0ZW5zaW9uLmdldEV4dGVuc2lvblZlcnNpb24oKV0pO1xuXG4oZnVuY3Rpb24oKSB7XG5cdHZhciBnYSA9IGRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoJ3NjcmlwdCcpO1xuXHRnYS50eXBlID0gJ3RleHQvamF2YXNjcmlwdCc7XG5cdGdhLmFzeW5jID0gdHJ1ZTtcblx0Z2Euc3JjID0gJ2h0dHBzOi8vc3NsLmdvb2dsZS1hbmFseXRpY3MuY29tL2dhLmpzJztcblx0XG5cdHZhciBzID0gZG9jdW1lbnQuZ2V0RWxlbWVudHNCeVRhZ05hbWUoJ3NjcmlwdCcpWzBdO1xuXHRzLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGdhLCBzKTtcbn0pKCk7Il0sInNvdXJjZVJvb3QiOiIvc291cmNlLyJ9
|
train_000.parquet/763
|
{
"file_path": "js/background.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 82402,
"token_count": 51237
}
|
/*!
* Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/
/* FONT PATH
* -------------------------- */
@font-face {
font-family: 'FontAwesome';
src: url('../fonts/fontawesome-webfont.eot?v=4.5.0');
src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg');
font-weight: normal;
font-style: normal;
}
.fa {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
font-size: 1.33333333em;
line-height: 0.75em;
vertical-align: -15%;
}
.fa-2x {
font-size: 2em;
}
.fa-3x {
font-size: 3em;
}
.fa-4x {
font-size: 4em;
}
.fa-5x {
font-size: 5em;
}
.fa-fw {
width: 1.28571429em;
text-align: center;
}
.fa-ul {
padding-left: 0;
margin-left: 2.14285714em;
list-style-type: none;
}
.fa-ul > li {
position: relative;
}
.fa-li {
position: absolute;
left: -2.14285714em;
width: 2.14285714em;
top: 0.14285714em;
text-align: center;
}
.fa-li.fa-lg {
left: -1.85714286em;
}
.fa-border {
padding: .2em .25em .15em;
border: solid 0.08em #eeeeee;
border-radius: .1em;
}
.fa-pull-left {
float: left;
}
.fa-pull-right {
float: right;
}
.fa.fa-pull-left {
margin-right: .3em;
}
.fa.fa-pull-right {
margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
float: right;
}
.pull-left {
float: left;
}
.fa.pull-left {
margin-right: .3em;
}
.fa.pull-right {
margin-left: .3em;
}
.fa-spin {
-webkit-animation: fa-spin 2s infinite linear;
animation: fa-spin 2s infinite linear;
}
.fa-pulse {
-webkit-animation: fa-spin 1s infinite steps(8);
animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
.fa-rotate-90 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.fa-rotate-180 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
}
.fa-rotate-270 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
-webkit-transform: rotate(270deg);
-ms-transform: rotate(270deg);
transform: rotate(270deg);
}
.fa-flip-horizontal {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
-webkit-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
transform: scale(-1, 1);
}
.fa-flip-vertical {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
-webkit-transform: scale(1, -1);
-ms-transform: scale(1, -1);
transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
filter: none;
}
.fa-stack {
position: relative;
display: inline-block;
width: 2em;
height: 2em;
line-height: 2em;
vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
position: absolute;
left: 0;
width: 100%;
text-align: center;
}
.fa-stack-1x {
line-height: inherit;
}
.fa-stack-2x {
font-size: 2em;
}
.fa-inverse {
color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-glass:before {
content: "\f000";
}
.fa-music:before {
content: "\f001";
}
.fa-search:before {
content: "\f002";
}
.fa-envelope-o:before {
content: "\f003";
}
.fa-heart:before {
content: "\f004";
}
.fa-star:before {
content: "\f005";
}
.fa-star-o:before {
content: "\f006";
}
.fa-user:before {
content: "\f007";
}
.fa-film:before {
content: "\f008";
}
.fa-th-large:before {
content: "\f009";
}
.fa-th:before {
content: "\f00a";
}
.fa-th-list:before {
content: "\f00b";
}
.fa-check:before {
content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
content: "\f00d";
}
.fa-search-plus:before {
content: "\f00e";
}
.fa-search-minus:before {
content: "\f010";
}
.fa-power-off:before {
content: "\f011";
}
.fa-signal:before {
content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
content: "\f013";
}
.fa-trash-o:before {
content: "\f014";
}
.fa-home:before {
content: "\f015";
}
.fa-file-o:before {
content: "\f016";
}
.fa-clock-o:before {
content: "\f017";
}
.fa-road:before {
content: "\f018";
}
.fa-download:before {
content: "\f019";
}
.fa-arrow-circle-o-down:before {
content: "\f01a";
}
.fa-arrow-circle-o-up:before {
content: "\f01b";
}
.fa-inbox:before {
content: "\f01c";
}
.fa-play-circle-o:before {
content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
content: "\f01e";
}
.fa-refresh:before {
content: "\f021";
}
.fa-list-alt:before {
content: "\f022";
}
.fa-lock:before {
content: "\f023";
}
.fa-flag:before {
content: "\f024";
}
.fa-headphones:before {
content: "\f025";
}
.fa-volume-off:before {
content: "\f026";
}
.fa-volume-down:before {
content: "\f027";
}
.fa-volume-up:before {
content: "\f028";
}
.fa-qrcode:before {
content: "\f029";
}
.fa-barcode:before {
content: "\f02a";
}
.fa-tag:before {
content: "\f02b";
}
.fa-tags:before {
content: "\f02c";
}
.fa-book:before {
content: "\f02d";
}
.fa-bookmark:before {
content: "\f02e";
}
.fa-print:before {
content: "\f02f";
}
.fa-camera:before {
content: "\f030";
}
.fa-font:before {
content: "\f031";
}
.fa-bold:before {
content: "\f032";
}
.fa-italic:before {
content: "\f033";
}
.fa-text-height:before {
content: "\f034";
}
.fa-text-width:before {
content: "\f035";
}
.fa-align-left:before {
content: "\f036";
}
.fa-align-center:before {
content: "\f037";
}
.fa-align-right:before {
content: "\f038";
}
.fa-align-justify:before {
content: "\f039";
}
.fa-list:before {
content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
content: "\f03b";
}
.fa-indent:before {
content: "\f03c";
}
.fa-video-camera:before {
content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
content: "\f03e";
}
.fa-pencil:before {
content: "\f040";
}
.fa-map-marker:before {
content: "\f041";
}
.fa-adjust:before {
content: "\f042";
}
.fa-tint:before {
content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
content: "\f044";
}
.fa-share-square-o:before {
content: "\f045";
}
.fa-check-square-o:before {
content: "\f046";
}
.fa-arrows:before {
content: "\f047";
}
.fa-step-backward:before {
content: "\f048";
}
.fa-fast-backward:before {
content: "\f049";
}
.fa-backward:before {
content: "\f04a";
}
.fa-play:before {
content: "\f04b";
}
.fa-pause:before {
content: "\f04c";
}
.fa-stop:before {
content: "\f04d";
}
.fa-forward:before {
content: "\f04e";
}
.fa-fast-forward:before {
content: "\f050";
}
.fa-step-forward:before {
content: "\f051";
}
.fa-eject:before {
content: "\f052";
}
.fa-chevron-left:before {
content: "\f053";
}
.fa-chevron-right:before {
content: "\f054";
}
.fa-plus-circle:before {
content: "\f055";
}
.fa-minus-circle:before {
content: "\f056";
}
.fa-times-circle:before {
content: "\f057";
}
.fa-check-circle:before {
content: "\f058";
}
.fa-question-circle:before {
content: "\f059";
}
.fa-info-circle:before {
content: "\f05a";
}
.fa-crosshairs:before {
content: "\f05b";
}
.fa-times-circle-o:before {
content: "\f05c";
}
.fa-check-circle-o:before {
content: "\f05d";
}
.fa-ban:before {
content: "\f05e";
}
.fa-arrow-left:before {
content: "\f060";
}
.fa-arrow-right:before {
content: "\f061";
}
.fa-arrow-up:before {
content: "\f062";
}
.fa-arrow-down:before {
content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
content: "\f064";
}
.fa-expand:before {
content: "\f065";
}
.fa-compress:before {
content: "\f066";
}
.fa-plus:before {
content: "\f067";
}
.fa-minus:before {
content: "\f068";
}
.fa-asterisk:before {
content: "\f069";
}
.fa-exclamation-circle:before {
content: "\f06a";
}
.fa-gift:before {
content: "\f06b";
}
.fa-leaf:before {
content: "\f06c";
}
.fa-fire:before {
content: "\f06d";
}
.fa-eye:before {
content: "\f06e";
}
.fa-eye-slash:before {
content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
content: "\f071";
}
.fa-plane:before {
content: "\f072";
}
.fa-calendar:before {
content: "\f073";
}
.fa-random:before {
content: "\f074";
}
.fa-comment:before {
content: "\f075";
}
.fa-magnet:before {
content: "\f076";
}
.fa-chevron-up:before {
content: "\f077";
}
.fa-chevron-down:before {
content: "\f078";
}
.fa-retweet:before {
content: "\f079";
}
.fa-shopping-cart:before {
content: "\f07a";
}
.fa-folder:before {
content: "\f07b";
}
.fa-folder-open:before {
content: "\f07c";
}
.fa-arrows-v:before {
content: "\f07d";
}
.fa-arrows-h:before {
content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
content: "\f080";
}
.fa-twitter-square:before {
content: "\f081";
}
.fa-facebook-square:before {
content: "\f082";
}
.fa-camera-retro:before {
content: "\f083";
}
.fa-key:before {
content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
content: "\f085";
}
.fa-comments:before {
content: "\f086";
}
.fa-thumbs-o-up:before {
content: "\f087";
}
.fa-thumbs-o-down:before {
content: "\f088";
}
.fa-star-half:before {
content: "\f089";
}
.fa-heart-o:before {
content: "\f08a";
}
.fa-sign-out:before {
content: "\f08b";
}
.fa-linkedin-square:before {
content: "\f08c";
}
.fa-thumb-tack:before {
content: "\f08d";
}
.fa-external-link:before {
content: "\f08e";
}
.fa-sign-in:before {
content: "\f090";
}
.fa-trophy:before {
content: "\f091";
}
.fa-github-square:before {
content: "\f092";
}
.fa-upload:before {
content: "\f093";
}
.fa-lemon-o:before {
content: "\f094";
}
.fa-phone:before {
content: "\f095";
}
.fa-square-o:before {
content: "\f096";
}
.fa-bookmark-o:before {
content: "\f097";
}
.fa-phone-square:before {
content: "\f098";
}
.fa-twitter:before {
content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
content: "\f09a";
}
.fa-github:before {
content: "\f09b";
}
.fa-unlock:before {
content: "\f09c";
}
.fa-credit-card:before {
content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
content: "\f09e";
}
.fa-hdd-o:before {
content: "\f0a0";
}
.fa-bullhorn:before {
content: "\f0a1";
}
.fa-bell:before {
content: "\f0f3";
}
.fa-certificate:before {
content: "\f0a3";
}
.fa-hand-o-right:before {
content: "\f0a4";
}
.fa-hand-o-left:before {
content: "\f0a5";
}
.fa-hand-o-up:before {
content: "\f0a6";
}
.fa-hand-o-down:before {
content: "\f0a7";
}
.fa-arrow-circle-left:before {
content: "\f0a8";
}
.fa-arrow-circle-right:before {
content: "\f0a9";
}
.fa-arrow-circle-up:before {
content: "\f0aa";
}
.fa-arrow-circle-down:before {
content: "\f0ab";
}
.fa-globe:before {
content: "\f0ac";
}
.fa-wrench:before {
content: "\f0ad";
}
.fa-tasks:before {
content: "\f0ae";
}
.fa-filter:before {
content: "\f0b0";
}
.fa-briefcase:before {
content: "\f0b1";
}
.fa-arrows-alt:before {
content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
content: "\f0c1";
}
.fa-cloud:before {
content: "\f0c2";
}
.fa-flask:before {
content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
content: "\f0c5";
}
.fa-paperclip:before {
content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
content: "\f0c7";
}
.fa-square:before {
content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
content: "\f0c9";
}
.fa-list-ul:before {
content: "\f0ca";
}
.fa-list-ol:before {
content: "\f0cb";
}
.fa-strikethrough:before {
content: "\f0cc";
}
.fa-underline:before {
content: "\f0cd";
}
.fa-table:before {
content: "\f0ce";
}
.fa-magic:before {
content: "\f0d0";
}
.fa-truck:before {
content: "\f0d1";
}
.fa-pinterest:before {
content: "\f0d2";
}
.fa-pinterest-square:before {
content: "\f0d3";
}
.fa-google-plus-square:before {
content: "\f0d4";
}
.fa-google-plus:before {
content: "\f0d5";
}
.fa-money:before {
content: "\f0d6";
}
.fa-caret-down:before {
content: "\f0d7";
}
.fa-caret-up:before {
content: "\f0d8";
}
.fa-caret-left:before {
content: "\f0d9";
}
.fa-caret-right:before {
content: "\f0da";
}
.fa-columns:before {
content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
content: "\f0de";
}
.fa-envelope:before {
content: "\f0e0";
}
.fa-linkedin:before {
content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
content: "\f0e4";
}
.fa-comment-o:before {
content: "\f0e5";
}
.fa-comments-o:before {
content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
content: "\f0e7";
}
.fa-sitemap:before {
content: "\f0e8";
}
.fa-umbrella:before {
content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
content: "\f0ea";
}
.fa-lightbulb-o:before {
content: "\f0eb";
}
.fa-exchange:before {
content: "\f0ec";
}
.fa-cloud-download:before {
content: "\f0ed";
}
.fa-cloud-upload:before {
content: "\f0ee";
}
.fa-user-md:before {
content: "\f0f0";
}
.fa-stethoscope:before {
content: "\f0f1";
}
.fa-suitcase:before {
content: "\f0f2";
}
.fa-bell-o:before {
content: "\f0a2";
}
.fa-coffee:before {
content: "\f0f4";
}
.fa-cutlery:before {
content: "\f0f5";
}
.fa-file-text-o:before {
content: "\f0f6";
}
.fa-building-o:before {
content: "\f0f7";
}
.fa-hospital-o:before {
content: "\f0f8";
}
.fa-ambulance:before {
content: "\f0f9";
}
.fa-medkit:before {
content: "\f0fa";
}
.fa-fighter-jet:before {
content: "\f0fb";
}
.fa-beer:before {
content: "\f0fc";
}
.fa-h-square:before {
content: "\f0fd";
}
.fa-plus-square:before {
content: "\f0fe";
}
.fa-angle-double-left:before {
content: "\f100";
}
.fa-angle-double-right:before {
content: "\f101";
}
.fa-angle-double-up:before {
content: "\f102";
}
.fa-angle-double-down:before {
content: "\f103";
}
.fa-angle-left:before {
content: "\f104";
}
.fa-angle-right:before {
content: "\f105";
}
.fa-angle-up:before {
content: "\f106";
}
.fa-angle-down:before {
content: "\f107";
}
.fa-desktop:before {
content: "\f108";
}
.fa-laptop:before {
content: "\f109";
}
.fa-tablet:before {
content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
content: "\f10b";
}
.fa-circle-o:before {
content: "\f10c";
}
.fa-quote-left:before {
content: "\f10d";
}
.fa-quote-right:before {
content: "\f10e";
}
.fa-spinner:before {
content: "\f110";
}
.fa-circle:before {
content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
content: "\f112";
}
.fa-github-alt:before {
content: "\f113";
}
.fa-folder-o:before {
content: "\f114";
}
.fa-folder-open-o:before {
content: "\f115";
}
.fa-smile-o:before {
content: "\f118";
}
.fa-frown-o:before {
content: "\f119";
}
.fa-meh-o:before {
content: "\f11a";
}
.fa-gamepad:before {
content: "\f11b";
}
.fa-keyboard-o:before {
content: "\f11c";
}
.fa-flag-o:before {
content: "\f11d";
}
.fa-flag-checkered:before {
content: "\f11e";
}
.fa-terminal:before {
content: "\f120";
}
.fa-code:before {
content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
content: "\f123";
}
.fa-location-arrow:before {
content: "\f124";
}
.fa-crop:before {
content: "\f125";
}
.fa-code-fork:before {
content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
content: "\f127";
}
.fa-question:before {
content: "\f128";
}
.fa-info:before {
content: "\f129";
}
.fa-exclamation:before {
content: "\f12a";
}
.fa-superscript:before {
content: "\f12b";
}
.fa-subscript:before {
content: "\f12c";
}
.fa-eraser:before {
content: "\f12d";
}
.fa-puzzle-piece:before {
content: "\f12e";
}
.fa-microphone:before {
content: "\f130";
}
.fa-microphone-slash:before {
content: "\f131";
}
.fa-shield:before {
content: "\f132";
}
.fa-calendar-o:before {
content: "\f133";
}
.fa-fire-extinguisher:before {
content: "\f134";
}
.fa-rocket:before {
content: "\f135";
}
.fa-maxcdn:before {
content: "\f136";
}
.fa-chevron-circle-left:before {
content: "\f137";
}
.fa-chevron-circle-right:before {
content: "\f138";
}
.fa-chevron-circle-up:before {
content: "\f139";
}
.fa-chevron-circle-down:before {
content: "\f13a";
}
.fa-html5:before {
content: "\f13b";
}
.fa-css3:before {
content: "\f13c";
}
.fa-anchor:before {
content: "\f13d";
}
.fa-unlock-alt:before {
content: "\f13e";
}
.fa-bullseye:before {
content: "\f140";
}
.fa-ellipsis-h:before {
content: "\f141";
}
.fa-ellipsis-v:before {
content: "\f142";
}
.fa-rss-square:before {
content: "\f143";
}
.fa-play-circle:before {
content: "\f144";
}
.fa-ticket:before {
content: "\f145";
}
.fa-minus-square:before {
content: "\f146";
}
.fa-minus-square-o:before {
content: "\f147";
}
.fa-level-up:before {
content: "\f148";
}
.fa-level-down:before {
content: "\f149";
}
.fa-check-square:before {
content: "\f14a";
}
.fa-pencil-square:before {
content: "\f14b";
}
.fa-external-link-square:before {
content: "\f14c";
}
.fa-share-square:before {
content: "\f14d";
}
.fa-compass:before {
content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
content: "\f153";
}
.fa-gbp:before {
content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
content: "\f158";
}
.fa-won:before,
.fa-krw:before {
content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
content: "\f15a";
}
.fa-file:before {
content: "\f15b";
}
.fa-file-text:before {
content: "\f15c";
}
.fa-sort-alpha-asc:before {
content: "\f15d";
}
.fa-sort-alpha-desc:before {
content: "\f15e";
}
.fa-sort-amount-asc:before {
content: "\f160";
}
.fa-sort-amount-desc:before {
content: "\f161";
}
.fa-sort-numeric-asc:before {
content: "\f162";
}
.fa-sort-numeric-desc:before {
content: "\f163";
}
.fa-thumbs-up:before {
content: "\f164";
}
.fa-thumbs-down:before {
content: "\f165";
}
.fa-youtube-square:before {
content: "\f166";
}
.fa-youtube:before {
content: "\f167";
}
.fa-xing:before {
content: "\f168";
}
.fa-xing-square:before {
content: "\f169";
}
.fa-youtube-play:before {
content: "\f16a";
}
.fa-dropbox:before {
content: "\f16b";
}
.fa-stack-overflow:before {
content: "\f16c";
}
.fa-instagram:before {
content: "\f16d";
}
.fa-flickr:before {
content: "\f16e";
}
.fa-adn:before {
content: "\f170";
}
.fa-bitbucket:before {
content: "\f171";
}
.fa-bitbucket-square:before {
content: "\f172";
}
.fa-tumblr:before {
content: "\f173";
}
.fa-tumblr-square:before {
content: "\f174";
}
.fa-long-arrow-down:before {
content: "\f175";
}
.fa-long-arrow-up:before {
content: "\f176";
}
.fa-long-arrow-left:before {
content: "\f177";
}
.fa-long-arrow-right:before {
content: "\f178";
}
.fa-apple:before {
content: "\f179";
}
.fa-windows:before {
content: "\f17a";
}
.fa-android:before {
content: "\f17b";
}
.fa-linux:before {
content: "\f17c";
}
.fa-dribbble:before {
content: "\f17d";
}
.fa-skype:before {
content: "\f17e";
}
.fa-foursquare:before {
content: "\f180";
}
.fa-trello:before {
content: "\f181";
}
.fa-female:before {
content: "\f182";
}
.fa-male:before {
content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
content: "\f184";
}
.fa-sun-o:before {
content: "\f185";
}
.fa-moon-o:before {
content: "\f186";
}
.fa-archive:before {
content: "\f187";
}
.fa-bug:before {
content: "\f188";
}
.fa-vk:before {
content: "\f189";
}
.fa-weibo:before {
content: "\f18a";
}
.fa-renren:before {
content: "\f18b";
}
.fa-pagelines:before {
content: "\f18c";
}
.fa-stack-exchange:before {
content: "\f18d";
}
.fa-arrow-circle-o-right:before {
content: "\f18e";
}
.fa-arrow-circle-o-left:before {
content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
content: "\f191";
}
.fa-dot-circle-o:before {
content: "\f192";
}
.fa-wheelchair:before {
content: "\f193";
}
.fa-vimeo-square:before {
content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
content: "\f195";
}
.fa-plus-square-o:before {
content: "\f196";
}
.fa-space-shuttle:before {
content: "\f197";
}
.fa-slack:before {
content: "\f198";
}
.fa-envelope-square:before {
content: "\f199";
}
.fa-wordpress:before {
content: "\f19a";
}
.fa-openid:before {
content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
content: "\f19d";
}
.fa-yahoo:before {
content: "\f19e";
}
.fa-google:before {
content: "\f1a0";
}
.fa-reddit:before {
content: "\f1a1";
}
.fa-reddit-square:before {
content: "\f1a2";
}
.fa-stumbleupon-circle:before {
content: "\f1a3";
}
.fa-stumbleupon:before {
content: "\f1a4";
}
.fa-delicious:before {
content: "\f1a5";
}
.fa-digg:before {
content: "\f1a6";
}
.fa-pied-piper:before {
content: "\f1a7";
}
.fa-pied-piper-alt:before {
content: "\f1a8";
}
.fa-drupal:before {
content: "\f1a9";
}
.fa-joomla:before {
content: "\f1aa";
}
.fa-language:before {
content: "\f1ab";
}
.fa-fax:before {
content: "\f1ac";
}
.fa-building:before {
content: "\f1ad";
}
.fa-child:before {
content: "\f1ae";
}
.fa-paw:before {
content: "\f1b0";
}
.fa-spoon:before {
content: "\f1b1";
}
.fa-cube:before {
content: "\f1b2";
}
.fa-cubes:before {
content: "\f1b3";
}
.fa-behance:before {
content: "\f1b4";
}
.fa-behance-square:before {
content: "\f1b5";
}
.fa-steam:before {
content: "\f1b6";
}
.fa-steam-square:before {
content: "\f1b7";
}
.fa-recycle:before {
content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
content: "\f1ba";
}
.fa-tree:before {
content: "\f1bb";
}
.fa-spotify:before {
content: "\f1bc";
}
.fa-deviantart:before {
content: "\f1bd";
}
.fa-soundcloud:before {
content: "\f1be";
}
.fa-database:before {
content: "\f1c0";
}
.fa-file-pdf-o:before {
content: "\f1c1";
}
.fa-file-word-o:before {
content: "\f1c2";
}
.fa-file-excel-o:before {
content: "\f1c3";
}
.fa-file-powerpoint-o:before {
content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
content: "\f1c8";
}
.fa-file-code-o:before {
content: "\f1c9";
}
.fa-vine:before {
content: "\f1ca";
}
.fa-codepen:before {
content: "\f1cb";
}
.fa-jsfiddle:before {
content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
content: "\f1cd";
}
.fa-circle-o-notch:before {
content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
content: "\f1d1";
}
.fa-git-square:before {
content: "\f1d2";
}
.fa-git:before {
content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
content: "\f1d4";
}
.fa-tencent-weibo:before {
content: "\f1d5";
}
.fa-qq:before {
content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
content: "\f1d9";
}
.fa-history:before {
content: "\f1da";
}
.fa-circle-thin:before {
content: "\f1db";
}
.fa-header:before {
content: "\f1dc";
}
.fa-paragraph:before {
content: "\f1dd";
}
.fa-sliders:before {
content: "\f1de";
}
.fa-share-alt:before {
content: "\f1e0";
}
.fa-share-alt-square:before {
content: "\f1e1";
}
.fa-bomb:before {
content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
content: "\f1e3";
}
.fa-tty:before {
content: "\f1e4";
}
.fa-binoculars:before {
content: "\f1e5";
}
.fa-plug:before {
content: "\f1e6";
}
.fa-slideshare:before {
content: "\f1e7";
}
.fa-twitch:before {
content: "\f1e8";
}
.fa-yelp:before {
content: "\f1e9";
}
.fa-newspaper-o:before {
content: "\f1ea";
}
.fa-wifi:before {
content: "\f1eb";
}
.fa-calculator:before {
content: "\f1ec";
}
.fa-paypal:before {
content: "\f1ed";
}
.fa-google-wallet:before {
content: "\f1ee";
}
.fa-cc-visa:before {
content: "\f1f0";
}
.fa-cc-mastercard:before {
content: "\f1f1";
}
.fa-cc-discover:before {
content: "\f1f2";
}
.fa-cc-amex:before {
content: "\f1f3";
}
.fa-cc-paypal:before {
content: "\f1f4";
}
.fa-cc-stripe:before {
content: "\f1f5";
}
.fa-bell-slash:before {
content: "\f1f6";
}
.fa-bell-slash-o:before {
content: "\f1f7";
}
.fa-trash:before {
content: "\f1f8";
}
.fa-copyright:before {
content: "\f1f9";
}
.fa-at:before {
content: "\f1fa";
}
.fa-eyedropper:before {
content: "\f1fb";
}
.fa-paint-brush:before {
content: "\f1fc";
}
.fa-birthday-cake:before {
content: "\f1fd";
}
.fa-area-chart:before {
content: "\f1fe";
}
.fa-pie-chart:before {
content: "\f200";
}
.fa-line-chart:before {
content: "\f201";
}
.fa-lastfm:before {
content: "\f202";
}
.fa-lastfm-square:before {
content: "\f203";
}
.fa-toggle-off:before {
content: "\f204";
}
.fa-toggle-on:before {
content: "\f205";
}
.fa-bicycle:before {
content: "\f206";
}
.fa-bus:before {
content: "\f207";
}
.fa-ioxhost:before {
content: "\f208";
}
.fa-angellist:before {
content: "\f209";
}
.fa-cc:before {
content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
content: "\f20b";
}
.fa-meanpath:before {
content: "\f20c";
}
.fa-buysellads:before {
content: "\f20d";
}
.fa-connectdevelop:before {
content: "\f20e";
}
.fa-dashcube:before {
content: "\f210";
}
.fa-forumbee:before {
content: "\f211";
}
.fa-leanpub:before {
content: "\f212";
}
.fa-sellsy:before {
content: "\f213";
}
.fa-shirtsinbulk:before {
content: "\f214";
}
.fa-simplybuilt:before {
content: "\f215";
}
.fa-skyatlas:before {
content: "\f216";
}
.fa-cart-plus:before {
content: "\f217";
}
.fa-cart-arrow-down:before {
content: "\f218";
}
.fa-diamond:before {
content: "\f219";
}
.fa-ship:before {
content: "\f21a";
}
.fa-user-secret:before {
content: "\f21b";
}
.fa-motorcycle:before {
content: "\f21c";
}
.fa-street-view:before {
content: "\f21d";
}
.fa-heartbeat:before {
content: "\f21e";
}
.fa-venus:before {
content: "\f221";
}
.fa-mars:before {
content: "\f222";
}
.fa-mercury:before {
content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
content: "\f224";
}
.fa-transgender-alt:before {
content: "\f225";
}
.fa-venus-double:before {
content: "\f226";
}
.fa-mars-double:before {
content: "\f227";
}
.fa-venus-mars:before {
content: "\f228";
}
.fa-mars-stroke:before {
content: "\f229";
}
.fa-mars-stroke-v:before {
content: "\f22a";
}
.fa-mars-stroke-h:before {
content: "\f22b";
}
.fa-neuter:before {
content: "\f22c";
}
.fa-genderless:before {
content: "\f22d";
}
.fa-facebook-official:before {
content: "\f230";
}
.fa-pinterest-p:before {
content: "\f231";
}
.fa-whatsapp:before {
content: "\f232";
}
.fa-server:before {
content: "\f233";
}
.fa-user-plus:before {
content: "\f234";
}
.fa-user-times:before {
content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
content: "\f236";
}
.fa-viacoin:before {
content: "\f237";
}
.fa-train:before {
content: "\f238";
}
.fa-subway:before {
content: "\f239";
}
.fa-medium:before {
content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
content: "\f23b";
}
.fa-optin-monster:before {
content: "\f23c";
}
.fa-opencart:before {
content: "\f23d";
}
.fa-expeditedssl:before {
content: "\f23e";
}
.fa-battery-4:before,
.fa-battery-full:before {
content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
content: "\f244";
}
.fa-mouse-pointer:before {
content: "\f245";
}
.fa-i-cursor:before {
content: "\f246";
}
.fa-object-group:before {
content: "\f247";
}
.fa-object-ungroup:before {
content: "\f248";
}
.fa-sticky-note:before {
content: "\f249";
}
.fa-sticky-note-o:before {
content: "\f24a";
}
.fa-cc-jcb:before {
content: "\f24b";
}
.fa-cc-diners-club:before {
content: "\f24c";
}
.fa-clone:before {
content: "\f24d";
}
.fa-balance-scale:before {
content: "\f24e";
}
.fa-hourglass-o:before {
content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
content: "\f253";
}
.fa-hourglass:before {
content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
content: "\f256";
}
.fa-hand-scissors-o:before {
content: "\f257";
}
.fa-hand-lizard-o:before {
content: "\f258";
}
.fa-hand-spock-o:before {
content: "\f259";
}
.fa-hand-pointer-o:before {
content: "\f25a";
}
.fa-hand-peace-o:before {
content: "\f25b";
}
.fa-trademark:before {
content: "\f25c";
}
.fa-registered:before {
content: "\f25d";
}
.fa-creative-commons:before {
content: "\f25e";
}
.fa-gg:before {
content: "\f260";
}
.fa-gg-circle:before {
content: "\f261";
}
.fa-tripadvisor:before {
content: "\f262";
}
.fa-odnoklassniki:before {
content: "\f263";
}
.fa-odnoklassniki-square:before {
content: "\f264";
}
.fa-get-pocket:before {
content: "\f265";
}
.fa-wikipedia-w:before {
content: "\f266";
}
.fa-safari:before {
content: "\f267";
}
.fa-chrome:before {
content: "\f268";
}
.fa-firefox:before {
content: "\f269";
}
.fa-opera:before {
content: "\f26a";
}
.fa-internet-explorer:before {
content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
content: "\f26c";
}
.fa-contao:before {
content: "\f26d";
}
.fa-500px:before {
content: "\f26e";
}
.fa-amazon:before {
content: "\f270";
}
.fa-calendar-plus-o:before {
content: "\f271";
}
.fa-calendar-minus-o:before {
content: "\f272";
}
.fa-calendar-times-o:before {
content: "\f273";
}
.fa-calendar-check-o:before {
content: "\f274";
}
.fa-industry:before {
content: "\f275";
}
.fa-map-pin:before {
content: "\f276";
}
.fa-map-signs:before {
content: "\f277";
}
.fa-map-o:before {
content: "\f278";
}
.fa-map:before {
content: "\f279";
}
.fa-commenting:before {
content: "\f27a";
}
.fa-commenting-o:before {
content: "\f27b";
}
.fa-houzz:before {
content: "\f27c";
}
.fa-vimeo:before {
content: "\f27d";
}
.fa-black-tie:before {
content: "\f27e";
}
.fa-fonticons:before {
content: "\f280";
}
.fa-reddit-alien:before {
content: "\f281";
}
.fa-edge:before {
content: "\f282";
}
.fa-credit-card-alt:before {
content: "\f283";
}
.fa-codiepie:before {
content: "\f284";
}
.fa-modx:before {
content: "\f285";
}
.fa-fort-awesome:before {
content: "\f286";
}
.fa-usb:before {
content: "\f287";
}
.fa-product-hunt:before {
content: "\f288";
}
.fa-mixcloud:before {
content: "\f289";
}
.fa-scribd:before {
content: "\f28a";
}
.fa-pause-circle:before {
content: "\f28b";
}
.fa-pause-circle-o:before {
content: "\f28c";
}
.fa-stop-circle:before {
content: "\f28d";
}
.fa-stop-circle-o:before {
content: "\f28e";
}
.fa-shopping-bag:before {
content: "\f290";
}
.fa-shopping-basket:before {
content: "\f291";
}
.fa-hashtag:before {
content: "\f292";
}
.fa-bluetooth:before {
content: "\f293";
}
.fa-bluetooth-b:before {
content: "\f294";
}
.fa-percent:before {
content: "\f295";
}
|
train_000.parquet/764
|
{
"file_path": "css/font-awesome.css",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 33233,
"token_count": 16175
}
|
body {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-weight: lighter;
}
.container {
max-width: 900px;
position: relative;
}
#donate-button {
position: absolute;
right: 0;
top: 1.5em;
}
/*.form-horizontal input[type="text"],
.form-horizontal input[type="password"],
.form-horizontal input[type="email"],
.form-horizontal input[type="number"] {
width: 25em;
}
*/
/* custom inclusion of right, left and below tabs (http://bootply.com/74926) */
.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
border-bottom: 0;
}
.tab-content > .tab-pane,
.pill-content > .pill-pane {
display: none;
}
.tab-content > .active,
.pill-content > .active {
display: block;
}
.tabs-below > .nav-tabs {
border-top: 1px solid #ddd;
}
.tabs-below > .nav-tabs > li {
margin-top: -1px;
margin-bottom: 0;
}
.tabs-below > .nav-tabs > li > a {
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius: 0 0 4px 4px;
border-radius: 0 0 4px 4px;
}
.tabs-below > .nav-tabs > li > a:hover,
.tabs-below > .nav-tabs > li > a:focus {
border-top-color: #ddd;
border-bottom-color: transparent;
}
.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover,
.tabs-below > .nav-tabs > .active > a:focus {
border-color: transparent #ddd #ddd #ddd;
}
.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
float: none;
}
.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
min-width: 74px;
margin-right: 0;
margin-bottom: 3px;
}
.tabs-left > .nav-tabs {
float: left;
margin-right: 19px;
border-right: 1px solid #ddd;
}
.tabs-left > .nav-tabs > li > a {
margin-right: -1px;
-webkit-border-radius: 4px 0 0 4px;
-moz-border-radius: 4px 0 0 4px;
border-radius: 4px 0 0 4px;
}
.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
border-color: #eeeeee #dddddd #eeeeee #eeeeee;
}
.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
border-color: #ddd transparent #ddd #ddd;
*border-right-color: #ffffff;
}
.tabs-right > .nav-tabs {
float: right;
margin-left: 19px;
border-left: 1px solid #ddd;
}
.tabs-right > .nav-tabs > li > a {
margin-left: -1px;
-webkit-border-radius: 0 4px 4px 0;
-moz-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
border-color: #eeeeee #eeeeee #eeeeee #dddddd;
}
.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
border-color: #ddd #ddd #ddd transparent;
*border-left-color: #ffffff;
}
|
train_000.parquet/765
|
{
"file_path": "css/options.css",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 2831,
"token_count": 1351
}
|
body {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-size: 11px;
width: 400px;
padding: 0;
overflow: hidden;
background-color: transparent;
}
.load * {
-webkit-transition: none !important;
-moz-transition: none !important;
-ms-transition: none !important;
-o-transition: none !important;
transition: none !important;
}
body.ltr { direction: ltr; }
body.rtl { direction: rtl; }
.ltr .buttons {
text-align: right;
}
.rtl .buttons {
text-align: left;
}
.row [class*="col"] {
min-height: auto;
}
.rtl .row [class*="col"] {
float: right;
}
.rtl .btn-group>.btn {
float: right;
}
.rtl .btn-group>.btn:last-child:not(:first-child),
.rtl .input-group-btn:last-child>.btn {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
border-bottom-left-radius: 3px;
border-top-left-radius: 3px;
}
.rtl .btn-group>.btn:first-child:not(:last-child),
.rtl .input-group-btn:first-child>.btn {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
}
.rtl .input-group-btn:last-child>.btn,
.rtl .input-group-btn:last-child>.btn-group {
margin-left: 0;
}
.rtl .input-group-btn:first-child>.btn,
.rtl .input-group-btn:first-child>.btn-group {
margin-right: -1;
}
.rtl .btn-group>.btn:last-child {
margin-left: 0;
}
.rtl .btn-group>.btn:first-child {
margin-right: -1;
}
.rtl .input-group .form-control:first-child {
border-bottom-right-radius: 4px;
border-top-right-radius: 4px;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.rtl .input-group .form-control:last-child {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
border-bottom-left-radius: 4px;
border-top-left-radius: 4px;
}
i.icon-btn {
display: inline-block;
font-size: 1.8em;
margin: 5px;
opacity: 0.5;
cursor: pointer;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s;
}
i.icon-btn:hover {
opacity: 0.8;
}
i.icon-btn:active {
opacity: 1;
}
.buttons i[role=button] {
cursor: pointer;
}
.buttons i[role=button].disabled {
cursor: default;
opacity: 0.6;
}
.buttons i[role=button]:not(.disabled):hover {
text-shadow: 0 0 .5em rgba(255, 255, 255, 0.9);
}
h2 {
padding-top: 0.3em;
padding-bottom: 0.3em;
font-size: 1.25em;
line-height: 1.25em;
margin: 0;
background-image: -webkit-linear-gradient(top, #a1a1a1 0%, #cacaca 5%, #cacaca 95%, #a1a1a1 100%);
color: white;
color: rgba(0,0,0,0.6);
text-shadow: 2px 2px 3px rgba(255,255,255,0.1);
-webkit-user-select: none;
cursor: default;
position: relative;
z-index: 10;
}
.ltr h2 { padding-left: 10px; padding-right: 2em; }
.rtl h2 { padding-right: 10px; padding-left: 2em; }
h2 .device-buttons {
position: absolute;
top: 0.2em;
}
.ltr h2 .device-buttons { right: 0.5em; }
.rtl h2 .device-buttons { left: 0.5em; }
h2 .device-buttons i {
display: inline-block;
margin-left: 0.3em;
}
.ltr h2 .device-buttons i {
margin-right: 0.3em;
}
ul.tasks {
list-style: none;
margin: 0;
padding: 0;
-webkit-transition: max-height 1s;
transition: max-height 1s;
-webkit-transition-timing-function: ease-in-out;
transition-timing-function: ease-in-out;
max-height: 400px;
overflow-x: hidden;
overflow-y: auto;
}
ul.tasks li {
padding: 0.5em 10px 0.5em;
border-top: 0.1em solid rgba(0,0,0,0.3);
-webkit-user-select: none;
-webkit-transition: 0.3s;
transition: 0.3s;
max-height: 7em;
overflow: hidden;
position: relative;
}
ul.tasks li.hidden {
max-height: 0;
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
padding-bottom: 0;
border-top: none;
border-bottom: none;
}
ul.tasks li:first-child {
border-top: none;
}
/* ul.tasks li:active {
background-color: #3d68f5;
color: white;
} */
ul.tasks li h3 {
margin-top: 0.5em;
margin-bottom: 0.5em;
line-height: 1.25em;
font-size: 1em;
font-weight: bold;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
ul.tasks li .task-status {
position: relative;
transition: opacity 0.2s;
-webkit-transition: opacity 0.2s;
}
ul.tasks li .task-status.faded {
opacity: 0.2;
}
ul.tasks li .label {
font-weight: normal;
font-size: 0.8em;
line-height: 1.5em;
text-transform: uppercase;
}
ul.tasks li .progress {
margin-bottom: 0.5em;
height: 0.8em;
}
.rtl ul.tasks li .progress .progress-bar {
float: right;
}
ul.tasks li .progress.fill-bar {
background-image: linear-gradient(to bottom, #149bdf, #0480be);
}
ul.tasks li .progress-text {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
ul.tasks li .confirm-delete {
display: none;
box-sizing: border-box;
position: absolute;
bottom: 0;
width: 100%;
height: 55%;
padding: 0.5em 10px;
}
.ltr ul.tasks li .confirm-delete { left: 0; }
.rtl ul.tasks li .confirm-delete { right: 0; }
ul.tasks li .confirm-delete.active {
display: block;
}
ul.tasks li.hidden .confirm-delete.active {
display: none;
}
.ltr ul.tasks li .confirm-delete .btn-group {
float: right;
}
.rtl ul.tasks li .confirm-delete .btn-group {
float: left;
}
.toggle-collapse {
margin-top: 0.05em;
margin-bottom: 0.05em;
cursor: pointer;
display: block;
transition: 0.5s;
-webkit-transition: 0.5s;
}
.ltr .toggle-collapse { margin-left: 0; margin-right: 0.3em; float: left;}
.rtl .toggle-collapse { margin-left: 0; margin-right: 0.3em; float: left;}
.closed .toggle-collapse {
transform: rotate(-90deg);
-webkit-transform: rotate(-90deg);
}
.closed ul {
max-height: 0;
}
.new-task {
margin-top: -40px;
margin-bottom: 5px;
position: relative;
transition: margin-top 0.1s;
-webkit-transition: margin-top 0.1s;
transition-timing-function: margin-top ease-in-out;
-webkit-transition-timing-function: margin-top ease-in-out;
}
.ltr .new-task { margin-left: 0; margin-right: 0; }
.rtl .new-task { margin-right: 0; margin-left: 0; }
.new-task.active {
margin-top: 0;
}
.new-task.disabled {
opacity: 0.5;
}
.new-task .alert {
border-top-left-radius: 0;
border-top-right-radius: 0;
padding: 4px 8px;
text-align: center;
margin-bottom: 0;
}
.new-task .overlay {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 3;
display: none;
}
.new-task.disabled .overlay {
display: block;
}
.block-message {
padding: 1.5em 1em;
text-align: center;
font-size: 1.5em;
}
.block-message.clickable {
cursor: pointer;
}
.footer {
text-align: center;
height: 2.3em;
position: relative;
border-top: 0.1em solid rgba(0,0,0,0.05);
}
.footer .total-rate {
direction: ltr;
font-size: 1.1em;
line-height: 2.3em;
}
#open-settings {
position: absolute;
bottom: 3px;
margin: 0;
}
.ltr #open-settings { right: 10px; }
.rtl #open-settings { left: 10px; }
|
train_000.parquet/766
|
{
"file_path": "css/popover.css",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 6978,
"token_count": 3556
}
|
/*
YUI 3.5.1 (build 22)
Copyright 2012 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/
.yui3-cssreset html{color:#000;background:#FFF}.yui3-cssreset body,.yui3-cssreset div,.yui3-cssreset dl,.yui3-cssreset dt,.yui3-cssreset dd,.yui3-cssreset ul,.yui3-cssreset ol,.yui3-cssreset li,.yui3-cssreset h1,.yui3-cssreset h2,.yui3-cssreset h3,.yui3-cssreset h4,.yui3-cssreset h5,.yui3-cssreset h6,.yui3-cssreset pre,.yui3-cssreset code,.yui3-cssreset form,.yui3-cssreset fieldset,.yui3-cssreset legend,.yui3-cssreset input,.yui3-cssreset textarea,.yui3-cssreset p,.yui3-cssreset blockquote,.yui3-cssreset th,.yui3-cssreset td{margin:0;padding:0}.yui3-cssreset table{border-collapse:collapse;border-spacing:0}.yui3-cssreset fieldset,.yui3-cssreset img{border:0}.yui3-cssreset address,.yui3-cssreset caption,.yui3-cssreset cite,.yui3-cssreset code,.yui3-cssreset dfn,.yui3-cssreset em,.yui3-cssreset strong,.yui3-cssreset th,.yui3-cssreset var{font-style:normal;font-weight:normal}.yui3-cssreset ol,.yui3-cssreset ul{list-style:none}.yui3-cssreset caption,.yui3-cssreset th{text-align:left}.yui3-cssreset h1,.yui3-cssreset h2,.yui3-cssreset h3,.yui3-cssreset h4,.yui3-cssreset h5,.yui3-cssreset h6{font-size:100%;font-weight:normal}.yui3-cssreset q:before,.yui3-cssreset q:after{content:''}.yui3-cssreset abbr,.yui3-cssreset acronym{border:0;font-variant:normal}.yui3-cssreset sup{vertical-align:text-top}.yui3-cssreset sub{vertical-align:text-bottom}.yui3-cssreset input,.yui3-cssreset textarea,.yui3-cssreset select{font-family:inherit;font-size:inherit;font-weight:inherit}.yui3-cssreset input,.yui3-cssreset textarea,.yui3-cssreset select{*font-size:100%}.yui3-cssreset legend{color:#000}#yui3-css-stamp.cssreset-context{display:none}
|
train_000.parquet/767
|
{
"file_path": "css/cssreset-context-min.css",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 1779,
"token_count": 876
}
|
body {
background-color: transparent;
}
#add-download textarea {
resize: none;
}
.popover {
z-index: 10000;
}
.folder-selection {
position: relative;
}
.folder-selection.disabled {
opacity: 0.4;
}
.folder-selection-overlay {
display: none;
width: 100%;
height: 100%;
position: absolute;
z-index: 1;
}
.folder-selection.disabled .folder-selection-overlay {
display: block;
}
.folderpath {
border: 1px solid #ddd;
margin-bottom: 0;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.folderpath li {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
max-width: 35%;
}
.folderpath.breadcrumb>li+li:before {
padding-left: 0;
padding-right: 0;
}
.file-list {
max-height: 195px;
overflow-y: auto;
border-style: solid;
border-color: #ddd;
border-width: 0 1px 1px 1px;
border-radius: 0 0 4px 4px;
margin-bottom: 20px;
}
.file-list .list-group {
margin-bottom: 0;
}
.file-list .list-group-item {
white-space: nowrap;
border-left: none;
border-right: none;
}
.file-list .list-group-item.editing {
cursor: default;
}
.file-list .list-group-item:first-child {
border-top: none;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.file-list .list-group-item:last-child {
border-bottom: none;
}
.file-list .list-group-item .fa-folder-open-o {
display: none;;
}
.file-list .list-group-item:not(.disabled):not(.editing):hover .fa-folder-o {
display: none;
}
.file-list .list-group-item:not(.disabled):not(.editing):hover .fa-folder-open-o {
display: inline-block;
}
.file-list .list-group-item .text-label {
display: inline-block;
max-width: 75%;
overflow: hidden;
text-overflow: ellipsis;
line-height: 1;
vertical-align: middle;
}
.file-list .list-group-item button {
padding-top: 0;
padding-bottom: 0;
}
.file-list .list-group-item .hover-button {
display: none;
}
.file-list .list-group-item:hover .hover-button {
display: inline-block;
}
.file-list .list-group-item input[type=text] {
width: 75%;
height: 22px;
border: 1px solid #ccc;
border-radius: 4px;
background-color: #fff;
color: #555;
}
.file-list .error-message {
overflow: visible;
text-overflow: ellipsis;
white-space: normal;
}
.tooltip .tooltip-inner {
background-color: #d9534f;
white-space: normal;
max-width: 250px;
}
.tooltip.top.tooltip-danger .tooltip-arrow {
border-top-color: #d9534f;
}
.tooltip.right.tooltip-danger .tooltip-arrow {
border-right-color: #d9534f;
}
.tooltip.bottom.tooltip-danger .tooltip-arrow {
border-bottom-color: #d9534f;
}
.tooltip.left.tooltip-danger .tooltip-arrow {
border-left-color: #d9534f;
}
|
train_000.parquet/768
|
{
"file_path": "css/download-dialog.css",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 2606,
"token_count": 1218
}
|
#dse-hud {
width: 250px!important;
height: 250px!important;
background: rgba(100,100,100,0.7)!important;
border-radius: 20px!important;
position: fixed!important;
bottom: -350px!important;
left: 50%!important;
margin: auto auto auto -125px!important;
padding: 0!important;
opacity: 0!important;
visibility: hidden!important;
transition: 0.2s!important;
-webkit-transition: 0.2s!important;
z-index: 10000!important;
text-shadow: #000 0px 0px 2px!important;
text-align: center!important;
line-height: normal!important;
font-size: auto!important;
font-family: Helvetica, arial, sans-serif!important;
color: #fff!important;
}
#dse-hud.visible {
bottom: 100px!important;
opacity: 1!important;
visibility: visible!important;
}
#dse-message {
position: absolute!important;
box-sizing: border-box!important;
bottom: 0px!important;
width: 100%!important;
padding: 10px!important;
text-align: center!important;
font-size: 15px!important;
font-weight: normal!important;
opacity: 0!important;
visibility: hidden!important;
transition: 0.1s!important;
-webkit-transition: 0.1s!important;
}
#dse-message.visible {
opacity: 1!important;
visibility: visible!important;
}
#dse-icon {
display: inline-block!important;
width: 150px!important;
height: 150px!important;
background-size: 140px 140px!important;
background-position: center center!important;
background-repeat: no-repeat!important;
margin-top: 20px!important;
}
|
train_000.parquet/769
|
{
"file_path": "css/hud.css",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 1553,
"token_count": 605
}
|
/*!
* Bootstrap v3.3.4 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*//*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date],input[type=time],input[type=datetime-local],input[type=month]{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px \9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.form-group-sm .form-control{height:30px;line-height:30px}select[multiple].form-group-sm .form-control,textarea.form-group-sm .form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:5px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.form-group-lg .form-control{height:46px;line-height:46px}select[multiple].form-group-lg .form-control,textarea.form-group-lg .form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:10px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.33px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.active,.btn-default.focus,.btn-default:active,.btn-default:focus,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.active,.btn-primary.focus,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.active,.btn-success.focus,.btn-success:active,.btn-success:focus,.btn-success:hover,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.active,.btn-info.focus,.btn-info:active,.btn-info:focus,.btn-info:hover,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.active,.btn-warning.focus,.btn-warning:active,.btn-warning:focus,.btn-warning:hover,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.active,.btn-danger.focus,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px solid}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px)and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px 15px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding:48px 0}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{min-height:16.43px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:1.4;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:1.42857143;text-align:left;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000;perspective:1000}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;margin-top:-10px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px)and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px)and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px)and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px)and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px)and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px)and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px)and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px)and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px)and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px)and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
|
train_000.parquet/770
|
{
"file_path": "css/bootstrap.min.css",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 117305,
"token_count": 51286
}
|
(function() {
"use strict";
if (!document.body) {
return;
}
var dseCurrentIcon = null;
var bodyOverflowStyle = document.body.style.overflow;
extension.onMessage(function(event) {
if(event.name == "hud" && top === self) {
showHud(event.message);
}
else if (event.name == "openDownloadDialog" && top === self) {
showNewTaskDialog(event.message.url);
}
else if (event.name == "removeDialog") {
$("iframe#" + event.message.dialogId).remove();
document.body.style.overflow = bodyOverflowStyle;
}
});
extension.sendMessageToBackground("getProtocols", null, function(protocols) {
bindProtocolEvents(protocols);
});
$("body").on("click", "#dse-hud", function() {
$(this).removeClass('visible');
});
function showHud(hudItem)
{
var container = $("#dse-hud");
if(container.length === 0) {
var resetContainer = $('<div class="yui3-cssreset"></div>').appendTo('body');
container = $('<div id="dse-hud"></div>').appendTo(resetContainer);
container.html('<div id="dse-icon"></div><div id="dse-message"></div>');
}
var message = $('#dse-message');
var icon = $('#dse-icon');
// Update icon
if(hudItem.icon == undefined || hudItem.icon == null)
hudItem.icon = 'progress';
if(container.hasClass('visible') && hudItem.icon != dseCurrentIcon) {
icon.fadeOut(200, function() {
icon.css('background-image', 'url('+extension.getResourceURL('css/img/hud-'+hudItem.icon+'.png')+')').fadeIn(200);
});
}
else
icon.css('background-image', 'url('+extension.getResourceURL('css/img/hud-'+hudItem.icon+'.png')+')');
dseCurrentIcon = hudItem.icon;
// Update hud
if(hudItem.action === 'show')
{
if(message.text() != hudItem.text && message.text() != '' && container.hasClass('visible')) {
message.fadeOut(200, function() {
message.text(hudItem.text).fadeIn(200);
});
}
else {
message.text(hudItem.text);
setTimeout(function() {message.addClass('visible')}, 1);
}
if(hudItem.autoHide)
setTimeout(function() {container.removeClass('visible')}, 3000);
setTimeout(function() {container.addClass('visible')}, 1);
}
else if(hudItem.action === 'hide')
{
setTimeout(function() {container.removeClass('visible')}, 1);
}
}
function bindProtocolEvents(protocols) {
for(var i = 0; i < protocols.length; i++) {
$("body").on("click", "a[href^='" + protocols[i] + "']", function(event) {
event.preventDefault();
extension.sendMessageToBackground("addTaskWithHud", {
url: $(this).prop("href"),
taskType: protocols[i]
});
});
}
}
function showNewTaskDialog(url) {
var dialogId = Math.random().toString(36).substring(7);
var dialogFrame = document.createElement("iframe");
dialogFrame.src = extension.getResourceURL('download-dialog.html?id=' + encodeURIComponent(dialogId) + '&url=' + encodeURIComponent(url));
dialogFrame.id = dialogId;
dialogFrame.setAttribute('allowtransparency', 'true');
dialogFrame.setAttribute('frameborder', '0');
dialogFrame.setAttribute("style", "position: fixed!important; width: 100%!important; height: 100%!important; top: 0!important; left: 0!important; z-index: 2147483647!important;");
document.body.appendChild(dialogFrame);
document.body.style.overflow = "hidden";
}
})();
|
train_000.parquet/771
|
{
"file_path": "js/content-scripts/content.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 3320,
"token_count": 1406
}
|
/// Knockout Mapping plugin v2.4.1
/// (c) 2013 Steven Sanderson, Roy Jacobs - http://knockoutjs.com/
/// License: MIT (http://www.opensource.org/licenses/mit-license.php)
(function(e){"function"===typeof require&&"object"===typeof exports&&"object"===typeof module?e(require("knockout"),exports):"function"===typeof define&&define.amd?define(["knockout","exports"],e):e(ko,ko.mapping={})})(function(e,f){function y(b,c){var a,d;for(d in c)if(c.hasOwnProperty(d)&&c[d])if(a=f.getType(b[d]),d&&b[d]&&"array"!==a&&"string"!==a)y(b[d],c[d]);else if("array"===f.getType(b[d])&&"array"===f.getType(c[d])){a=b;for(var e=d,l=b[d],n=c[d],t={},g=l.length-1;0<=g;--g)t[l[g]]=l[g];for(g=
n.length-1;0<=g;--g)t[n[g]]=n[g];l=[];n=void 0;for(n in t)l.push(t[n]);a[e]=l}else b[d]=c[d]}function E(b,c){var a={};y(a,b);y(a,c);return a}function z(b,c){for(var a=E({},b),e=L.length-1;0<=e;e--){var f=L[e];a[f]&&(a[""]instanceof Object||(a[""]={}),a[""][f]=a[f],delete a[f])}c&&(a.ignore=h(c.ignore,a.ignore),a.include=h(c.include,a.include),a.copy=h(c.copy,a.copy),a.observe=h(c.observe,a.observe));a.ignore=h(a.ignore,j.ignore);a.include=h(a.include,j.include);a.copy=h(a.copy,j.copy);a.observe=h(a.observe,
j.observe);a.mappedProperties=a.mappedProperties||{};a.copiedProperties=a.copiedProperties||{};return a}function h(b,c){"array"!==f.getType(b)&&(b="undefined"===f.getType(b)?[]:[b]);"array"!==f.getType(c)&&(c="undefined"===f.getType(c)?[]:[c]);return e.utils.arrayGetDistinctValues(b.concat(c))}function F(b,c,a,d,k,l,n){var t="array"===f.getType(e.utils.unwrapObservable(c));l=l||"";if(f.isMapped(b)){var g=e.utils.unwrapObservable(b)[p];a=E(g,a)}var j=n||k,h=function(){return a[d]&&a[d].create instanceof
Function},x=function(b){var f=G,g=e.dependentObservable;e.dependentObservable=function(a,b,c){c=c||{};a&&"object"==typeof a&&(c=a);var d=c.deferEvaluation,M=!1;c.deferEvaluation=!0;a=new H(a,b,c);if(!d){var g=a,d=e.dependentObservable;e.dependentObservable=H;a=e.isWriteableObservable(g);e.dependentObservable=d;d=H({read:function(){M||(e.utils.arrayRemoveItem(f,g),M=!0);return g.apply(g,arguments)},write:a&&function(a){return g(a)},deferEvaluation:!0});d.__DO=g;a=d;f.push(a)}return a};e.dependentObservable.fn=
H.fn;e.computed=e.dependentObservable;b=e.utils.unwrapObservable(k)instanceof Array?a[d].create({data:b||c,parent:j,skip:N}):a[d].create({data:b||c,parent:j});e.dependentObservable=g;e.computed=e.dependentObservable;return b},u=function(){return a[d]&&a[d].update instanceof Function},v=function(b,f){var g={data:f||c,parent:j,target:e.utils.unwrapObservable(b)};e.isWriteableObservable(b)&&(g.observable=b);return a[d].update(g)};if(n=I.get(c))return n;d=d||"";if(t){var t=[],s=!1,m=function(a){return a};
a[d]&&a[d].key&&(m=a[d].key,s=!0);e.isObservable(b)||(b=e.observableArray([]),b.mappedRemove=function(a){var c="function"==typeof a?a:function(b){return b===m(a)};return b.remove(function(a){return c(m(a))})},b.mappedRemoveAll=function(a){var c=C(a,m);return b.remove(function(a){return-1!=e.utils.arrayIndexOf(c,m(a))})},b.mappedDestroy=function(a){var c="function"==typeof a?a:function(b){return b===m(a)};return b.destroy(function(a){return c(m(a))})},b.mappedDestroyAll=function(a){var c=C(a,m);return b.destroy(function(a){return-1!=
e.utils.arrayIndexOf(c,m(a))})},b.mappedIndexOf=function(a){var c=C(b(),m);a=m(a);return e.utils.arrayIndexOf(c,a)},b.mappedGet=function(a){return b()[b.mappedIndexOf(a)]},b.mappedCreate=function(a){if(-1!==b.mappedIndexOf(a))throw Error("There already is an object with the key that you specified.");var c=h()?x(a):a;u()&&(a=v(c,a),e.isWriteableObservable(c)?c(a):c=a);b.push(c);return c});n=C(e.utils.unwrapObservable(b),m).sort();g=C(c,m);s&&g.sort();s=e.utils.compareArrays(n,g);n={};var J,A=e.utils.unwrapObservable(c),
y={},z=!0,g=0;for(J=A.length;g<J;g++){var r=m(A[g]);if(void 0===r||r instanceof Object){z=!1;break}y[r]=A[g]}var A=[],B=0,g=0;for(J=s.length;g<J;g++){var r=s[g],q,w=l+"["+g+"]";switch(r.status){case "added":var D=z?y[r.value]:K(e.utils.unwrapObservable(c),r.value,m);q=F(void 0,D,a,d,b,w,k);h()||(q=e.utils.unwrapObservable(q));w=O(e.utils.unwrapObservable(c),D,n);q===N?B++:A[w-B]=q;n[w]=!0;break;case "retained":D=z?y[r.value]:K(e.utils.unwrapObservable(c),r.value,m);q=K(b,r.value,m);F(q,D,a,d,b,w,
k);w=O(e.utils.unwrapObservable(c),D,n);A[w]=q;n[w]=!0;break;case "deleted":q=K(b,r.value,m)}t.push({event:r.status,item:q})}b(A);a[d]&&a[d].arrayChanged&&e.utils.arrayForEach(t,function(b){a[d].arrayChanged(b.event,b.item)})}else if(P(c)){b=e.utils.unwrapObservable(b);if(!b){if(h())return s=x(),u()&&(s=v(s)),s;if(u())return v(s);b={}}u()&&(b=v(b));I.save(c,b);if(u())return b;Q(c,function(d){var f=l.length?l+"."+d:d;if(-1==e.utils.arrayIndexOf(a.ignore,f))if(-1!=e.utils.arrayIndexOf(a.copy,f))b[d]=
c[d];else if("object"!=typeof c[d]&&"array"!=typeof c[d]&&0<a.observe.length&&-1==e.utils.arrayIndexOf(a.observe,f))b[d]=c[d],a.copiedProperties[f]=!0;else{var g=I.get(c[d]),k=F(b[d],c[d],a,d,b,f,b),g=g||k;if(0<a.observe.length&&-1==e.utils.arrayIndexOf(a.observe,f))b[d]=g(),a.copiedProperties[f]=!0;else{if(e.isWriteableObservable(b[d])){if(g=e.utils.unwrapObservable(g),b[d]()!==g)b[d](g)}else g=void 0===b[d]?g:e.utils.unwrapObservable(g),b[d]=g;a.mappedProperties[f]=!0}}})}else switch(f.getType(c)){case "function":u()?
e.isWriteableObservable(c)?(c(v(c)),b=c):b=v(c):b=c;break;default:if(e.isWriteableObservable(b))return q=u()?v(b):e.utils.unwrapObservable(c),b(q),q;h()||u();b=h()?x():e.observable(e.utils.unwrapObservable(c));u()&&b(v(b))}return b}function O(b,c,a){for(var d=0,e=b.length;d<e;d++)if(!0!==a[d]&&b[d]===c)return d;return null}function R(b,c){var a;c&&(a=c(b));"undefined"===f.getType(a)&&(a=b);return e.utils.unwrapObservable(a)}function K(b,c,a){b=e.utils.unwrapObservable(b);for(var d=0,f=b.length;d<
f;d++){var l=b[d];if(R(l,a)===c)return l}throw Error("When calling ko.update*, the key '"+c+"' was not found!");}function C(b,c){return e.utils.arrayMap(e.utils.unwrapObservable(b),function(a){return c?R(a,c):a})}function Q(b,c){if("array"===f.getType(b))for(var a=0;a<b.length;a++)c(a);else for(a in b)c(a)}function P(b){var c=f.getType(b);return("object"===c||"array"===c)&&null!==b}function T(){var b=[],c=[];this.save=function(a,d){var f=e.utils.arrayIndexOf(b,a);0<=f?c[f]=d:(b.push(a),c.push(d))};
this.get=function(a){a=e.utils.arrayIndexOf(b,a);return 0<=a?c[a]:void 0}}function S(){var b={},c=function(a){var c;try{c=a}catch(e){c="$$$"}a=b[c];void 0===a&&(a=new T,b[c]=a);return a};this.save=function(a,b){c(a).save(a,b)};this.get=function(a){return c(a).get(a)}}var p="__ko_mapping__",H=e.dependentObservable,B=0,G,I,L=["create","update","key","arrayChanged"],N={},x={include:["_destroy"],ignore:[],copy:[],observe:[]},j=x;f.isMapped=function(b){return(b=e.utils.unwrapObservable(b))&&b[p]};f.fromJS=
function(b){if(0==arguments.length)throw Error("When calling ko.fromJS, pass the object you want to convert.");try{B++||(G=[],I=new S);var c,a;2==arguments.length&&(arguments[1][p]?a=arguments[1]:c=arguments[1]);3==arguments.length&&(c=arguments[1],a=arguments[2]);a&&(c=E(c,a[p]));c=z(c);var d=F(a,b,c);a&&(d=a);if(!--B)for(;G.length;){var e=G.pop();e&&(e(),e.__DO.throttleEvaluation=e.throttleEvaluation)}d[p]=E(d[p],c);return d}catch(f){throw B=0,f;}};f.fromJSON=function(b){var c=e.utils.parseJson(b);
arguments[0]=c;return f.fromJS.apply(this,arguments)};f.updateFromJS=function(){throw Error("ko.mapping.updateFromJS, use ko.mapping.fromJS instead. Please note that the order of parameters is different!");};f.updateFromJSON=function(){throw Error("ko.mapping.updateFromJSON, use ko.mapping.fromJSON instead. Please note that the order of parameters is different!");};f.toJS=function(b,c){j||f.resetDefaultOptions();if(0==arguments.length)throw Error("When calling ko.mapping.toJS, pass the object you want to convert.");
if("array"!==f.getType(j.ignore))throw Error("ko.mapping.defaultOptions().ignore should be an array.");if("array"!==f.getType(j.include))throw Error("ko.mapping.defaultOptions().include should be an array.");if("array"!==f.getType(j.copy))throw Error("ko.mapping.defaultOptions().copy should be an array.");c=z(c,b[p]);return f.visitModel(b,function(a){return e.utils.unwrapObservable(a)},c)};f.toJSON=function(b,c){var a=f.toJS(b,c);return e.utils.stringifyJson(a)};f.defaultOptions=function(){if(0<arguments.length)j=
arguments[0];else return j};f.resetDefaultOptions=function(){j={include:x.include.slice(0),ignore:x.ignore.slice(0),copy:x.copy.slice(0)}};f.getType=function(b){if(b&&"object"===typeof b){if(b.constructor===Date)return"date";if(b.constructor===Array)return"array"}return typeof b};f.visitModel=function(b,c,a){a=a||{};a.visitedObjects=a.visitedObjects||new S;var d,k=e.utils.unwrapObservable(b);if(P(k))a=z(a,k[p]),c(b,a.parentName),d="array"===f.getType(k)?[]:{};else return c(b,a.parentName);a.visitedObjects.save(b,
d);var l=a.parentName;Q(k,function(b){if(!(a.ignore&&-1!=e.utils.arrayIndexOf(a.ignore,b))){var j=k[b],g=a,h=l||"";"array"===f.getType(k)?l&&(h+="["+b+"]"):(l&&(h+="."),h+=b);g.parentName=h;if(!(-1===e.utils.arrayIndexOf(a.copy,b)&&-1===e.utils.arrayIndexOf(a.include,b)&&k[p]&&k[p].mappedProperties&&!k[p].mappedProperties[b]&&k[p].copiedProperties&&!k[p].copiedProperties[b]&&"array"!==f.getType(k)))switch(f.getType(e.utils.unwrapObservable(j))){case "object":case "array":case "undefined":g=a.visitedObjects.get(j);
d[b]="undefined"!==f.getType(g)?g:f.visitModel(j,c,a);break;default:d[b]=c(j,a.parentName)}}});return d}});
|
train_000.parquet/772
|
{
"file_path": "js/lib/knockout.mapping.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 9523,
"token_count": 4656
}
|
/*!
* Bootstrap v3.3.4 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.4",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.4",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active"));a&&this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.4",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=c(d),f={relatedTarget:this};e.hasClass("open")&&(e.trigger(b=a.Event("hide.bs.dropdown",f)),b.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f)))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.4",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('<div class="dropdown-backdrop"/>').insertAfter(a(this)).on("click",b);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger("shown.bs.dropdown",h)}return!1}},g.prototype.keydown=function(b){if(/(38|40|27|32)/.test(b.which)&&!/input|textarea/i.test(b.target.tagName)){var d=a(this);if(b.preventDefault(),b.stopPropagation(),!d.is(".disabled, :disabled")){var e=c(d),g=e.hasClass("open");if(!g&&27!=b.which||g&&27==b.which)return 27==b.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find('[role="menu"]'+h+', [role="listbox"]'+h);if(i.length){var j=i.index(b.target);38==b.which&&j>0&&j--,40==b.which&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,this},a(document).on("click.bs.dropdown.data-api",b).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",f,g.prototype.toggle).on("keydown.bs.dropdown.data-api",f,g.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="menu"]',g.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="listbox"]',g.prototype.keydown)}(jQuery),+function(a){"use strict";function b(b,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},c.DEFAULTS,e.data(),"object"==typeof b&&b);f||e.data("bs.modal",f=new c(this,g)),"string"==typeof b?f[b](d):g.show&&f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){d.$element.one("mouseup.dismiss.bs.modal",function(b){a(b.target).is(d.$element)&&(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&&d.$element.hasClass("fade");d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&&d.$element[0].offsetWidth,d.$element.addClass("in").attr("aria-hidden",!1),d.enforceFocus();var f=a.Event("shown.bs.modal",{relatedTarget:b});e?d.$dialog.one("bsTransitionEnd",function(){d.$element.trigger("focus").trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger("focus").trigger(f)}))},c.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").attr("aria-hidden",!0).off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(c.TRANSITION_DURATION):this.hideModal())},c.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.trigger("focus")},this))},c.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},c.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass("modal-open"),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger("hidden.bs.modal")})},c.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var f=a.support.transition&&e;if(this.$backdrop=a('<div class="modal-backdrop '+e+'" />').appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth<a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.init("tooltip",a,b)};c.VERSION="3.3.4",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(this.options.viewport.selector||this.options.viewport),this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c&&c.$tip&&c.$tip.is(":visible")?void(c.hoverState="in"):(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.options.container?a(this.options.container):this.$element.parent(),p=this.getPosition(o);h="bottom"==h&&k.bottom+m>p.bottom?"top":"top"==h&&k.top-m<p.top?"bottom":"right"==h&&k.right+l>p.width?"left":"left"==h&&k.left-l<p.left?"right":h,f.removeClass(n).addClass(h)}var q=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(q,h);var r=function(){var a=e.hoverState;e.$element.trigger("shown.bs."+e.type),e.hoverState=null,"out"==a&&e.leave(e)};a.support.transition&&this.$tip.hasClass("fade")?f.one("bsTransitionEnd",r).emulateTransitionEnd(c.TRANSITION_DURATION):r()}},c.prototype.applyPlacement=function(b,c){var d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),b.top=b.top+g,b.left=b.left+h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;"top"==c&&j!=f&&(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2*k.left-e+i:2*k.top-f+j,n=l?"offsetWidth":"offsetHeight";d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?"left":"top",50*(1-a/b)+"%").css(c?"top":"left","")},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},c.prototype.hide=function(b){function d(){"in"!=e.hoverState&&f.detach(),e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),b&&b()}var e=this,f=a(this.$tip),g=a.Event("hide.bs."+this.type);return this.$element.trigger(g),g.isDefaultPrevented()?void 0:(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this)},c.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d="BODY"==c.tagName,e=c.getBoundingClientRect();null==e.width&&(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=d?{top:0,left:0}:b.offset(),g={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},h=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,g,h,f)},c.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&&this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h<g.top?e.top=g.top-h:i>g.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j<g.left?e.left=g.left-j:k>g.width&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type)})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.4",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.4",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b<e[0])return this.activeTarget=null,this.clear();for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(void 0===e[a+1]||b<e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,this.clear();var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.4",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){
var e=c.find(".active:last a"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.4",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=a(document.body).height();"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
|
train_000.parquet/773
|
{
"file_path": "js/lib/bootstrap.min.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 35951,
"token_count": 15453
}
|
/**
* [js-md5]{@link https://github.com/emn178/js-md5}
*
* @namespace md5
* @version 0.4.1
* @author Chen, Yi-Cyuan [emn178@gmail.com]
* @copyright Chen, Yi-Cyuan 2014-2016
* @license MIT
*/
(function (root) {
'use strict';
var NODE_JS = typeof process == 'object' && process.versions && process.versions.node;
if (NODE_JS) {
root = global;
}
var COMMON_JS = !root.JS_MD5_TEST && typeof module == 'object' && module.exports;
var AMD = typeof define == 'function' && define.amd;
var ARRAY_BUFFER = !root.JS_MD5_TEST && typeof ArrayBuffer != 'undefined';
var HEX_CHARS = '0123456789abcdef'.split('');
var EXTRA = [128, 32768, 8388608, -2147483648];
var SHIFT = [0, 8, 16, 24];
var OUTPUT_TYPES = ['hex', 'array', 'digest', 'buffer', 'arrayBuffer'];
var blocks = [], buffer8;
if (ARRAY_BUFFER) {
var buffer = new ArrayBuffer(68);
buffer8 = new Uint8Array(buffer);
blocks = new Uint32Array(buffer);
}
/**
* @method hex
* @memberof md5
* @description Output hash as hex string
* @param {String|Array|Uint8Array|ArrayBuffer} message message to hash
* @returns {String} Hex string
* @example
* md5.hex('The quick brown fox jumps over the lazy dog');
* // equal to
* md5('The quick brown fox jumps over the lazy dog');
*/
/**
* @method digest
* @memberof md5
* @description Output hash as bytes array
* @param {String|Array|Uint8Array|ArrayBuffer} message message to hash
* @returns {Array} Bytes array
* @example
* md5.digest('The quick brown fox jumps over the lazy dog');
*/
/**
* @method array
* @memberof md5
* @description Output hash as bytes array
* @param {String|Array|Uint8Array|ArrayBuffer} message message to hash
* @returns {Array} Bytes array
* @example
* md5.array('The quick brown fox jumps over the lazy dog');
*/
/**
* @method arrayBuffer
* @memberof md5
* @description Output hash as ArrayBuffer
* @param {String|Array|Uint8Array|ArrayBuffer} message message to hash
* @returns {ArrayBuffer} ArrayBuffer
* @example
* md5.arrayBuffer('The quick brown fox jumps over the lazy dog');
*/
/**
* @method buffer
* @deprecated This maybe confuse with Buffer in node.js. Please use arrayBuffer instead.
* @memberof md5
* @description Output hash as ArrayBuffer
* @param {String|Array|Uint8Array|ArrayBuffer} message message to hash
* @returns {ArrayBuffer} ArrayBuffer
* @example
* md5.buffer('The quick brown fox jumps over the lazy dog');
*/
var createOutputMethod = function (outputType) {
return function (message) {
return new Md5(true).update(message)[outputType]();
};
};
/**
* @method create
* @memberof md5
* @description Create Md5 object
* @returns {Md5} Md5 object.
* @example
* var hash = md5.create();
*/
/**
* @method update
* @memberof md5
* @description Create and update Md5 object
* @param {String|Array|Uint8Array|ArrayBuffer} message message to hash
* @returns {Md5} Md5 object.
* @example
* var hash = md5.update('The quick brown fox jumps over the lazy dog');
* // equal to
* var hash = md5.create();
* hash.update('The quick brown fox jumps over the lazy dog');
*/
var createMethod = function () {
var method = createOutputMethod('hex');
if (NODE_JS) {
method = nodeWrap(method);
}
method.create = function () {
return new Md5();
};
method.update = function (message) {
return method.create().update(message);
};
for (var i = 0;i < OUTPUT_TYPES.length;++i) {
var type = OUTPUT_TYPES[i];
method[type] = createOutputMethod(type);
}
return method;
};
var nodeWrap = function (method) {
var crypto, Buffer;
try {
if (root.JS_MD5_TEST) {
throw 'JS_MD5_TEST';
}
crypto = require('crypto');
Buffer = require('buffer').Buffer;
} catch (e) {
console.log(e);
return method;
}
var nodeMethod = function (message) {
if (typeof message == 'string') {
return crypto.createHash('md5').update(message, 'utf8').digest('hex');
} else if (message.constructor == ArrayBuffer) {
message = new Uint8Array(message);
} else if (message.length === undefined) {
return method(message);
}
return crypto.createHash('md5').update(new Buffer(message)).digest('hex');
};
return nodeMethod;
};
/**
* Md5 class
* @class Md5
* @description This is internal class.
* @see {@link md5.create}
*/
function Md5(sharedMemory) {
if (sharedMemory) {
blocks[0] = blocks[16] = blocks[1] = blocks[2] = blocks[3] =
blocks[4] = blocks[5] = blocks[6] = blocks[7] =
blocks[8] = blocks[9] = blocks[10] = blocks[11] =
blocks[12] = blocks[13] = blocks[14] = blocks[15] = 0;
this.blocks = blocks;
this.buffer8 = buffer8;
} else {
if (ARRAY_BUFFER) {
var buffer = new ArrayBuffer(68);
this.buffer8 = new Uint8Array(buffer);
this.blocks = new Uint32Array(buffer);
} else {
this.blocks = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
}
}
this.h0 = this.h1 = this.h2 = this.h3 = this.start = this.bytes = 0;
this.finalized = this.hashed = false;
this.first = true;
}
/**
* @method update
* @memberof Md5
* @instance
* @description Update hash
* @param {String|Array|Uint8Array|ArrayBuffer} message message to hash
* @returns {Md5} Md5 object.
* @see {@link md5.update}
*/
Md5.prototype.update = function (message) {
if (this.finalized) {
return;
}
var notString = typeof(message) != 'string';
if (notString && message.constructor == root.ArrayBuffer) {
message = new Uint8Array(message);
}
var code, index = 0, i, length = message.length || 0, blocks = this.blocks;
var buffer8 = this.buffer8;
while (index < length) {
if (this.hashed) {
this.hashed = false;
blocks[0] = blocks[16];
blocks[16] = blocks[1] = blocks[2] = blocks[3] =
blocks[4] = blocks[5] = blocks[6] = blocks[7] =
blocks[8] = blocks[9] = blocks[10] = blocks[11] =
blocks[12] = blocks[13] = blocks[14] = blocks[15] = 0;
}
if (notString) {
if (ARRAY_BUFFER) {
for (i = this.start;index < length && i < 64; ++index) {
buffer8[i++] = message[index];
}
} else {
for (i = this.start;index < length && i < 64; ++index) {
blocks[i >> 2] |= message[index] << SHIFT[i++ & 3];
}
}
} else {
if (ARRAY_BUFFER) {
for (i = this.start;index < length && i < 64; ++index) {
code = message.charCodeAt(index);
if (code < 0x80) {
buffer8[i++] = code;
} else if (code < 0x800) {
buffer8[i++] = 0xc0 | (code >> 6);
buffer8[i++] = 0x80 | (code & 0x3f);
} else if (code < 0xd800 || code >= 0xe000) {
buffer8[i++] = 0xe0 | (code >> 12);
buffer8[i++] = 0x80 | ((code >> 6) & 0x3f);
buffer8[i++] = 0x80 | (code & 0x3f);
} else {
code = 0x10000 + (((code & 0x3ff) << 10) | (message.charCodeAt(++index) & 0x3ff));
buffer8[i++] = 0xf0 | (code >> 18);
buffer8[i++] = 0x80 | ((code >> 12) & 0x3f);
buffer8[i++] = 0x80 | ((code >> 6) & 0x3f);
buffer8[i++] = 0x80 | (code & 0x3f);
}
}
} else {
for (i = this.start;index < length && i < 64; ++index) {
code = message.charCodeAt(index);
if (code < 0x80) {
blocks[i >> 2] |= code << SHIFT[i++ & 3];
} else if (code < 0x800) {
blocks[i >> 2] |= (0xc0 | (code >> 6)) << SHIFT[i++ & 3];
blocks[i >> 2] |= (0x80 | (code & 0x3f)) << SHIFT[i++ & 3];
} else if (code < 0xd800 || code >= 0xe000) {
blocks[i >> 2] |= (0xe0 | (code >> 12)) << SHIFT[i++ & 3];
blocks[i >> 2] |= (0x80 | ((code >> 6) & 0x3f)) << SHIFT[i++ & 3];
blocks[i >> 2] |= (0x80 | (code & 0x3f)) << SHIFT[i++ & 3];
} else {
code = 0x10000 + (((code & 0x3ff) << 10) | (message.charCodeAt(++index) & 0x3ff));
blocks[i >> 2] |= (0xf0 | (code >> 18)) << SHIFT[i++ & 3];
blocks[i >> 2] |= (0x80 | ((code >> 12) & 0x3f)) << SHIFT[i++ & 3];
blocks[i >> 2] |= (0x80 | ((code >> 6) & 0x3f)) << SHIFT[i++ & 3];
blocks[i >> 2] |= (0x80 | (code & 0x3f)) << SHIFT[i++ & 3];
}
}
}
}
this.lastByteIndex = i;
this.bytes += i - this.start;
if (i >= 64) {
this.start = i - 64;
this.hash();
this.hashed = true;
} else {
this.start = i;
}
}
return this;
};
Md5.prototype.finalize = function () {
if (this.finalized) {
return;
}
this.finalized = true;
var blocks = this.blocks, i = this.lastByteIndex;
blocks[i >> 2] |= EXTRA[i & 3];
if (i >= 56) {
if (!this.hashed) {
this.hash();
}
blocks[0] = blocks[16];
blocks[16] = blocks[1] = blocks[2] = blocks[3] =
blocks[4] = blocks[5] = blocks[6] = blocks[7] =
blocks[8] = blocks[9] = blocks[10] = blocks[11] =
blocks[12] = blocks[13] = blocks[14] = blocks[15] = 0;
}
blocks[14] = this.bytes << 3;
this.hash();
};
Md5.prototype.hash = function () {
var a, b, c, d, bc, da, blocks = this.blocks;
if (this.first) {
a = blocks[0] - 680876937;
a = (a << 7 | a >>> 25) - 271733879 << 0;
d = (-1732584194 ^ a & 2004318071) + blocks[1] - 117830708;
d = (d << 12 | d >>> 20) + a << 0;
c = (-271733879 ^ (d & (a ^ -271733879))) + blocks[2] - 1126478375;
c = (c << 17 | c >>> 15) + d << 0;
b = (a ^ (c & (d ^ a))) + blocks[3] - 1316259209;
b = (b << 22 | b >>> 10) + c << 0;
} else {
a = this.h0;
b = this.h1;
c = this.h2;
d = this.h3;
a += (d ^ (b & (c ^ d))) + blocks[0] - 680876936;
a = (a << 7 | a >>> 25) + b << 0;
d += (c ^ (a & (b ^ c))) + blocks[1] - 389564586;
d = (d << 12 | d >>> 20) + a << 0;
c += (b ^ (d & (a ^ b))) + blocks[2] + 606105819;
c = (c << 17 | c >>> 15) + d << 0;
b += (a ^ (c & (d ^ a))) + blocks[3] - 1044525330;
b = (b << 22 | b >>> 10) + c << 0;
}
a += (d ^ (b & (c ^ d))) + blocks[4] - 176418897;
a = (a << 7 | a >>> 25) + b << 0;
d += (c ^ (a & (b ^ c))) + blocks[5] + 1200080426;
d = (d << 12 | d >>> 20) + a << 0;
c += (b ^ (d & (a ^ b))) + blocks[6] - 1473231341;
c = (c << 17 | c >>> 15) + d << 0;
b += (a ^ (c & (d ^ a))) + blocks[7] - 45705983;
b = (b << 22 | b >>> 10) + c << 0;
a += (d ^ (b & (c ^ d))) + blocks[8] + 1770035416;
a = (a << 7 | a >>> 25) + b << 0;
d += (c ^ (a & (b ^ c))) + blocks[9] - 1958414417;
d = (d << 12 | d >>> 20) + a << 0;
c += (b ^ (d & (a ^ b))) + blocks[10] - 42063;
c = (c << 17 | c >>> 15) + d << 0;
b += (a ^ (c & (d ^ a))) + blocks[11] - 1990404162;
b = (b << 22 | b >>> 10) + c << 0;
a += (d ^ (b & (c ^ d))) + blocks[12] + 1804603682;
a = (a << 7 | a >>> 25) + b << 0;
d += (c ^ (a & (b ^ c))) + blocks[13] - 40341101;
d = (d << 12 | d >>> 20) + a << 0;
c += (b ^ (d & (a ^ b))) + blocks[14] - 1502002290;
c = (c << 17 | c >>> 15) + d << 0;
b += (a ^ (c & (d ^ a))) + blocks[15] + 1236535329;
b = (b << 22 | b >>> 10) + c << 0;
a += (c ^ (d & (b ^ c))) + blocks[1] - 165796510;
a = (a << 5 | a >>> 27) + b << 0;
d += (b ^ (c & (a ^ b))) + blocks[6] - 1069501632;
d = (d << 9 | d >>> 23) + a << 0;
c += (a ^ (b & (d ^ a))) + blocks[11] + 643717713;
c = (c << 14 | c >>> 18) + d << 0;
b += (d ^ (a & (c ^ d))) + blocks[0] - 373897302;
b = (b << 20 | b >>> 12) + c << 0;
a += (c ^ (d & (b ^ c))) + blocks[5] - 701558691;
a = (a << 5 | a >>> 27) + b << 0;
d += (b ^ (c & (a ^ b))) + blocks[10] + 38016083;
d = (d << 9 | d >>> 23) + a << 0;
c += (a ^ (b & (d ^ a))) + blocks[15] - 660478335;
c = (c << 14 | c >>> 18) + d << 0;
b += (d ^ (a & (c ^ d))) + blocks[4] - 405537848;
b = (b << 20 | b >>> 12) + c << 0;
a += (c ^ (d & (b ^ c))) + blocks[9] + 568446438;
a = (a << 5 | a >>> 27) + b << 0;
d += (b ^ (c & (a ^ b))) + blocks[14] - 1019803690;
d = (d << 9 | d >>> 23) + a << 0;
c += (a ^ (b & (d ^ a))) + blocks[3] - 187363961;
c = (c << 14 | c >>> 18) + d << 0;
b += (d ^ (a & (c ^ d))) + blocks[8] + 1163531501;
b = (b << 20 | b >>> 12) + c << 0;
a += (c ^ (d & (b ^ c))) + blocks[13] - 1444681467;
a = (a << 5 | a >>> 27) + b << 0;
d += (b ^ (c & (a ^ b))) + blocks[2] - 51403784;
d = (d << 9 | d >>> 23) + a << 0;
c += (a ^ (b & (d ^ a))) + blocks[7] + 1735328473;
c = (c << 14 | c >>> 18) + d << 0;
b += (d ^ (a & (c ^ d))) + blocks[12] - 1926607734;
b = (b << 20 | b >>> 12) + c << 0;
bc = b ^ c;
a += (bc ^ d) + blocks[5] - 378558;
a = (a << 4 | a >>> 28) + b << 0;
d += (bc ^ a) + blocks[8] - 2022574463;
d = (d << 11 | d >>> 21) + a << 0;
da = d ^ a;
c += (da ^ b) + blocks[11] + 1839030562;
c = (c << 16 | c >>> 16) + d << 0;
b += (da ^ c) + blocks[14] - 35309556;
b = (b << 23 | b >>> 9) + c << 0;
bc = b ^ c;
a += (bc ^ d) + blocks[1] - 1530992060;
a = (a << 4 | a >>> 28) + b << 0;
d += (bc ^ a) + blocks[4] + 1272893353;
d = (d << 11 | d >>> 21) + a << 0;
da = d ^ a;
c += (da ^ b) + blocks[7] - 155497632;
c = (c << 16 | c >>> 16) + d << 0;
b += (da ^ c) + blocks[10] - 1094730640;
b = (b << 23 | b >>> 9) + c << 0;
bc = b ^ c;
a += (bc ^ d) + blocks[13] + 681279174;
a = (a << 4 | a >>> 28) + b << 0;
d += (bc ^ a) + blocks[0] - 358537222;
d = (d << 11 | d >>> 21) + a << 0;
da = d ^ a;
c += (da ^ b) + blocks[3] - 722521979;
c = (c << 16 | c >>> 16) + d << 0;
b += (da ^ c) + blocks[6] + 76029189;
b = (b << 23 | b >>> 9) + c << 0;
bc = b ^ c;
a += (bc ^ d) + blocks[9] - 640364487;
a = (a << 4 | a >>> 28) + b << 0;
d += (bc ^ a) + blocks[12] - 421815835;
d = (d << 11 | d >>> 21) + a << 0;
da = d ^ a;
c += (da ^ b) + blocks[15] + 530742520;
c = (c << 16 | c >>> 16) + d << 0;
b += (da ^ c) + blocks[2] - 995338651;
b = (b << 23 | b >>> 9) + c << 0;
a += (c ^ (b | ~d)) + blocks[0] - 198630844;
a = (a << 6 | a >>> 26) + b << 0;
d += (b ^ (a | ~c)) + blocks[7] + 1126891415;
d = (d << 10 | d >>> 22) + a << 0;
c += (a ^ (d | ~b)) + blocks[14] - 1416354905;
c = (c << 15 | c >>> 17) + d << 0;
b += (d ^ (c | ~a)) + blocks[5] - 57434055;
b = (b << 21 | b >>> 11) + c << 0;
a += (c ^ (b | ~d)) + blocks[12] + 1700485571;
a = (a << 6 | a >>> 26) + b << 0;
d += (b ^ (a | ~c)) + blocks[3] - 1894986606;
d = (d << 10 | d >>> 22) + a << 0;
c += (a ^ (d | ~b)) + blocks[10] - 1051523;
c = (c << 15 | c >>> 17) + d << 0;
b += (d ^ (c | ~a)) + blocks[1] - 2054922799;
b = (b << 21 | b >>> 11) + c << 0;
a += (c ^ (b | ~d)) + blocks[8] + 1873313359;
a = (a << 6 | a >>> 26) + b << 0;
d += (b ^ (a | ~c)) + blocks[15] - 30611744;
d = (d << 10 | d >>> 22) + a << 0;
c += (a ^ (d | ~b)) + blocks[6] - 1560198380;
c = (c << 15 | c >>> 17) + d << 0;
b += (d ^ (c | ~a)) + blocks[13] + 1309151649;
b = (b << 21 | b >>> 11) + c << 0;
a += (c ^ (b | ~d)) + blocks[4] - 145523070;
a = (a << 6 | a >>> 26) + b << 0;
d += (b ^ (a | ~c)) + blocks[11] - 1120210379;
d = (d << 10 | d >>> 22) + a << 0;
c += (a ^ (d | ~b)) + blocks[2] + 718787259;
c = (c << 15 | c >>> 17) + d << 0;
b += (d ^ (c | ~a)) + blocks[9] - 343485551;
b = (b << 21 | b >>> 11) + c << 0;
if (this.first) {
this.h0 = a + 1732584193 << 0;
this.h1 = b - 271733879 << 0;
this.h2 = c - 1732584194 << 0;
this.h3 = d + 271733878 << 0;
this.first = false;
} else {
this.h0 = this.h0 + a << 0;
this.h1 = this.h1 + b << 0;
this.h2 = this.h2 + c << 0;
this.h3 = this.h3 + d << 0;
}
};
/**
* @method hex
* @memberof Md5
* @instance
* @description Output hash as hex string
* @returns {String} Hex string
* @see {@link md5.hex}
* @example
* hash.hex();
*/
Md5.prototype.hex = function () {
this.finalize();
var h0 = this.h0, h1 = this.h1, h2 = this.h2, h3 = this.h3;
return HEX_CHARS[(h0 >> 4) & 0x0F] + HEX_CHARS[h0 & 0x0F] +
HEX_CHARS[(h0 >> 12) & 0x0F] + HEX_CHARS[(h0 >> 8) & 0x0F] +
HEX_CHARS[(h0 >> 20) & 0x0F] + HEX_CHARS[(h0 >> 16) & 0x0F] +
HEX_CHARS[(h0 >> 28) & 0x0F] + HEX_CHARS[(h0 >> 24) & 0x0F] +
HEX_CHARS[(h1 >> 4) & 0x0F] + HEX_CHARS[h1 & 0x0F] +
HEX_CHARS[(h1 >> 12) & 0x0F] + HEX_CHARS[(h1 >> 8) & 0x0F] +
HEX_CHARS[(h1 >> 20) & 0x0F] + HEX_CHARS[(h1 >> 16) & 0x0F] +
HEX_CHARS[(h1 >> 28) & 0x0F] + HEX_CHARS[(h1 >> 24) & 0x0F] +
HEX_CHARS[(h2 >> 4) & 0x0F] + HEX_CHARS[h2 & 0x0F] +
HEX_CHARS[(h2 >> 12) & 0x0F] + HEX_CHARS[(h2 >> 8) & 0x0F] +
HEX_CHARS[(h2 >> 20) & 0x0F] + HEX_CHARS[(h2 >> 16) & 0x0F] +
HEX_CHARS[(h2 >> 28) & 0x0F] + HEX_CHARS[(h2 >> 24) & 0x0F] +
HEX_CHARS[(h3 >> 4) & 0x0F] + HEX_CHARS[h3 & 0x0F] +
HEX_CHARS[(h3 >> 12) & 0x0F] + HEX_CHARS[(h3 >> 8) & 0x0F] +
HEX_CHARS[(h3 >> 20) & 0x0F] + HEX_CHARS[(h3 >> 16) & 0x0F] +
HEX_CHARS[(h3 >> 28) & 0x0F] + HEX_CHARS[(h3 >> 24) & 0x0F];
};
/**
* @method toString
* @memberof Md5
* @instance
* @description Output hash as hex string
* @returns {String} Hex string
* @see {@link md5.hex}
* @example
* hash.toString();
*/
Md5.prototype.toString = Md5.prototype.hex;
/**
* @method digest
* @memberof Md5
* @instance
* @description Output hash as bytes array
* @returns {Array} Bytes array
* @see {@link md5.digest}
* @example
* hash.digest();
*/
Md5.prototype.digest = function () {
this.finalize();
var h0 = this.h0, h1 = this.h1, h2 = this.h2, h3 = this.h3;
return [
h0 & 0xFF, (h0 >> 8) & 0xFF, (h0 >> 16) & 0xFF, (h0 >> 24) & 0xFF,
h1 & 0xFF, (h1 >> 8) & 0xFF, (h1 >> 16) & 0xFF, (h1 >> 24) & 0xFF,
h2 & 0xFF, (h2 >> 8) & 0xFF, (h2 >> 16) & 0xFF, (h2 >> 24) & 0xFF,
h3 & 0xFF, (h3 >> 8) & 0xFF, (h3 >> 16) & 0xFF, (h3 >> 24) & 0xFF
];
};
/**
* @method array
* @memberof Md5
* @instance
* @description Output hash as bytes array
* @returns {Array} Bytes array
* @see {@link md5.array}
* @example
* hash.array();
*/
Md5.prototype.array = Md5.prototype.digest;
/**
* @method arrayBuffer
* @memberof Md5
* @instance
* @description Output hash as ArrayBuffer
* @returns {ArrayBuffer} ArrayBuffer
* @see {@link md5.arrayBuffer}
* @example
* hash.arrayBuffer();
*/
Md5.prototype.arrayBuffer = function () {
this.finalize();
var buffer = new ArrayBuffer(16);
var blocks = new Uint32Array(buffer);
blocks[0] = this.h0;
blocks[1] = this.h1;
blocks[2] = this.h2;
blocks[3] = this.h3;
return buffer;
};
/**
* @method buffer
* @deprecated This maybe confuse with Buffer in node.js. Please use arrayBuffer instead.
* @memberof Md5
* @instance
* @description Output hash as ArrayBuffer
* @returns {ArrayBuffer} ArrayBuffer
* @see {@link md5.buffer}
* @example
* hash.buffer();
*/
Md5.prototype.buffer = Md5.prototype.arrayBuffer;
var exports = createMethod();
if (COMMON_JS) {
module.exports = exports;
} else {
/**
* @method md5
* @description Md5 hash function, export to global in browsers.
* @param {String|Array|Uint8Array|ArrayBuffer} message message to hash
* @returns {String} md5 hashes
* @example
* md5(''); // d41d8cd98f00b204e9800998ecf8427e
* md5('The quick brown fox jumps over the lazy dog'); // 9e107d9d372bb6826bd81d3542a419d6
* md5('The quick brown fox jumps over the lazy dog.'); // e4d909c290d0fb1ca068ffaddf22cbd0
*
* // It also supports UTF-8 encoding
* md5('中文'); // a7bac2239fcdcb3a067903d8077c4a07
*
* // It also supports byte `Array`, `Uint8Array`, `ArrayBuffer`
* md5([]); // d41d8cd98f00b204e9800998ecf8427e
* md5(new Uint8Array([])); // d41d8cd98f00b204e9800998ecf8427e
*/
root.md5 = exports;
if (AMD) {
define(function () {
return exports;
});
}
}
}(this));
|
train_000.parquet/774
|
{
"file_path": "js/lib/md5.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 20799,
"token_count": 10006
}
|
/*!
* Knockout JavaScript library v3.3.0
* (c) Steven Sanderson - http://knockoutjs.com/
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
*/
(function(){
var DEBUG=true;
(function(undefined){
// (0, eval)('this') is a robust way of getting a reference to the global object
// For details, see http://stackoverflow.com/questions/14119988/return-this-0-evalthis/14120023#14120023
var window = this || (0, eval)('this'),
document = window['document'],
navigator = window['navigator'],
jQueryInstance = window["jQuery"],
JSON = window["JSON"];
(function(factory) {
// Support three module loading scenarios
if (typeof define === 'function' && define['amd']) {
// [1] AMD anonymous module
define(['exports', 'require'], factory);
} else if (typeof require === 'function' && typeof exports === 'object' && typeof module === 'object') {
// [2] CommonJS/Node.js
factory(module['exports'] || exports); // module.exports is for Node.js
} else {
// [3] No module loader (plain <script> tag) - put directly in global namespace
factory(window['ko'] = {});
}
}(function(koExports, amdRequire){
// Internally, all KO objects are attached to koExports (even the non-exported ones whose names will be minified by the closure compiler).
// In the future, the following "ko" variable may be made distinct from "koExports" so that private objects are not externally reachable.
var ko = typeof koExports !== 'undefined' ? koExports : {};
// Google Closure Compiler helpers (used only to make the minified file smaller)
ko.exportSymbol = function(koPath, object) {
var tokens = koPath.split(".");
// In the future, "ko" may become distinct from "koExports" (so that non-exported objects are not reachable)
// At that point, "target" would be set to: (typeof koExports !== "undefined" ? koExports : ko)
var target = ko;
for (var i = 0; i < tokens.length - 1; i++)
target = target[tokens[i]];
target[tokens[tokens.length - 1]] = object;
};
ko.exportProperty = function(owner, publicName, object) {
owner[publicName] = object;
};
ko.version = "3.3.0";
ko.exportSymbol('version', ko.version);
ko.utils = (function () {
function objectForEach(obj, action) {
for (var prop in obj) {
if (obj.hasOwnProperty(prop)) {
action(prop, obj[prop]);
}
}
}
function extend(target, source) {
if (source) {
for(var prop in source) {
if(source.hasOwnProperty(prop)) {
target[prop] = source[prop];
}
}
}
return target;
}
function setPrototypeOf(obj, proto) {
obj.__proto__ = proto;
return obj;
}
var canSetPrototype = ({ __proto__: [] } instanceof Array);
// Represent the known event types in a compact way, then at runtime transform it into a hash with event name as key (for fast lookup)
var knownEvents = {}, knownEventTypesByEventName = {};
var keyEventTypeName = (navigator && /Firefox\/2/i.test(navigator.userAgent)) ? 'KeyboardEvent' : 'UIEvents';
knownEvents[keyEventTypeName] = ['keyup', 'keydown', 'keypress'];
knownEvents['MouseEvents'] = ['click', 'dblclick', 'mousedown', 'mouseup', 'mousemove', 'mouseover', 'mouseout', 'mouseenter', 'mouseleave'];
objectForEach(knownEvents, function(eventType, knownEventsForType) {
if (knownEventsForType.length) {
for (var i = 0, j = knownEventsForType.length; i < j; i++)
knownEventTypesByEventName[knownEventsForType[i]] = eventType;
}
});
var eventsThatMustBeRegisteredUsingAttachEvent = { 'propertychange': true }; // Workaround for an IE9 issue - https://github.com/SteveSanderson/knockout/issues/406
// Detect IE versions for bug workarounds (uses IE conditionals, not UA string, for robustness)
// Note that, since IE 10 does not support conditional comments, the following logic only detects IE < 10.
// Currently this is by design, since IE 10+ behaves correctly when treated as a standard browser.
// If there is a future need to detect specific versions of IE10+, we will amend this.
var ieVersion = document && (function() {
var version = 3, div = document.createElement('div'), iElems = div.getElementsByTagName('i');
// Keep constructing conditional HTML blocks until we hit one that resolves to an empty fragment
while (
div.innerHTML = '<!--[if gt IE ' + (++version) + ']><i></i><![endif]-->',
iElems[0]
) {}
return version > 4 ? version : undefined;
}());
var isIe6 = ieVersion === 6,
isIe7 = ieVersion === 7;
function isClickOnCheckableElement(element, eventType) {
if ((ko.utils.tagNameLower(element) !== "input") || !element.type) return false;
if (eventType.toLowerCase() != "click") return false;
var inputType = element.type;
return (inputType == "checkbox") || (inputType == "radio");
}
// For details on the pattern for changing node classes
// see: https://github.com/knockout/knockout/issues/1597
var cssClassNameRegex = /\S+/g;
function toggleDomNodeCssClass(node, classNames, shouldHaveClass) {
var addOrRemoveFn;
if (classNames) {
if (typeof node.classList === 'object') {
addOrRemoveFn = node.classList[shouldHaveClass ? 'add' : 'remove'];
ko.utils.arrayForEach(classNames.match(cssClassNameRegex), function(className) {
addOrRemoveFn.call(node.classList, className);
});
} else if (typeof node.className['baseVal'] === 'string') {
// SVG tag .classNames is an SVGAnimatedString instance
toggleObjectClassPropertyString(node.className, 'baseVal', classNames, shouldHaveClass);
} else {
// node.className ought to be a string.
toggleObjectClassPropertyString(node, 'className', classNames, shouldHaveClass);
}
}
}
function toggleObjectClassPropertyString(obj, prop, classNames, shouldHaveClass) {
// obj/prop is either a node/'className' or a SVGAnimatedString/'baseVal'.
var currentClassNames = obj[prop].match(cssClassNameRegex) || [];
ko.utils.arrayForEach(classNames.match(cssClassNameRegex), function(className) {
ko.utils.addOrRemoveItem(currentClassNames, className, shouldHaveClass);
});
obj[prop] = currentClassNames.join(" ");
}
return {
fieldsIncludedWithJsonPost: ['authenticity_token', /^__RequestVerificationToken(_.*)?$/],
arrayForEach: function (array, action) {
for (var i = 0, j = array.length; i < j; i++)
action(array[i], i);
},
arrayIndexOf: function (array, item) {
if (typeof Array.prototype.indexOf == "function")
return Array.prototype.indexOf.call(array, item);
for (var i = 0, j = array.length; i < j; i++)
if (array[i] === item)
return i;
return -1;
},
arrayFirst: function (array, predicate, predicateOwner) {
for (var i = 0, j = array.length; i < j; i++)
if (predicate.call(predicateOwner, array[i], i))
return array[i];
return null;
},
arrayRemoveItem: function (array, itemToRemove) {
var index = ko.utils.arrayIndexOf(array, itemToRemove);
if (index > 0) {
array.splice(index, 1);
}
else if (index === 0) {
array.shift();
}
},
arrayGetDistinctValues: function (array) {
array = array || [];
var result = [];
for (var i = 0, j = array.length; i < j; i++) {
if (ko.utils.arrayIndexOf(result, array[i]) < 0)
result.push(array[i]);
}
return result;
},
arrayMap: function (array, mapping) {
array = array || [];
var result = [];
for (var i = 0, j = array.length; i < j; i++)
result.push(mapping(array[i], i));
return result;
},
arrayFilter: function (array, predicate) {
array = array || [];
var result = [];
for (var i = 0, j = array.length; i < j; i++)
if (predicate(array[i], i))
result.push(array[i]);
return result;
},
arrayPushAll: function (array, valuesToPush) {
if (valuesToPush instanceof Array)
array.push.apply(array, valuesToPush);
else
for (var i = 0, j = valuesToPush.length; i < j; i++)
array.push(valuesToPush[i]);
return array;
},
addOrRemoveItem: function(array, value, included) {
var existingEntryIndex = ko.utils.arrayIndexOf(ko.utils.peekObservable(array), value);
if (existingEntryIndex < 0) {
if (included)
array.push(value);
} else {
if (!included)
array.splice(existingEntryIndex, 1);
}
},
canSetPrototype: canSetPrototype,
extend: extend,
setPrototypeOf: setPrototypeOf,
setPrototypeOfOrExtend: canSetPrototype ? setPrototypeOf : extend,
objectForEach: objectForEach,
objectMap: function(source, mapping) {
if (!source)
return source;
var target = {};
for (var prop in source) {
if (source.hasOwnProperty(prop)) {
target[prop] = mapping(source[prop], prop, source);
}
}
return target;
},
emptyDomNode: function (domNode) {
while (domNode.firstChild) {
ko.removeNode(domNode.firstChild);
}
},
moveCleanedNodesToContainerElement: function(nodes) {
// Ensure it's a real array, as we're about to reparent the nodes and
// we don't want the underlying collection to change while we're doing that.
var nodesArray = ko.utils.makeArray(nodes);
var templateDocument = (nodesArray[0] && nodesArray[0].ownerDocument) || document;
var container = templateDocument.createElement('div');
for (var i = 0, j = nodesArray.length; i < j; i++) {
container.appendChild(ko.cleanNode(nodesArray[i]));
}
return container;
},
cloneNodes: function (nodesArray, shouldCleanNodes) {
for (var i = 0, j = nodesArray.length, newNodesArray = []; i < j; i++) {
var clonedNode = nodesArray[i].cloneNode(true);
newNodesArray.push(shouldCleanNodes ? ko.cleanNode(clonedNode) : clonedNode);
}
return newNodesArray;
},
setDomNodeChildren: function (domNode, childNodes) {
ko.utils.emptyDomNode(domNode);
if (childNodes) {
for (var i = 0, j = childNodes.length; i < j; i++)
domNode.appendChild(childNodes[i]);
}
},
replaceDomNodes: function (nodeToReplaceOrNodeArray, newNodesArray) {
var nodesToReplaceArray = nodeToReplaceOrNodeArray.nodeType ? [nodeToReplaceOrNodeArray] : nodeToReplaceOrNodeArray;
if (nodesToReplaceArray.length > 0) {
var insertionPoint = nodesToReplaceArray[0];
var parent = insertionPoint.parentNode;
for (var i = 0, j = newNodesArray.length; i < j; i++)
parent.insertBefore(newNodesArray[i], insertionPoint);
for (var i = 0, j = nodesToReplaceArray.length; i < j; i++) {
ko.removeNode(nodesToReplaceArray[i]);
}
}
},
fixUpContinuousNodeArray: function(continuousNodeArray, parentNode) {
// Before acting on a set of nodes that were previously outputted by a template function, we have to reconcile
// them against what is in the DOM right now. It may be that some of the nodes have already been removed, or that
// new nodes might have been inserted in the middle, for example by a binding. Also, there may previously have been
// leading comment nodes (created by rewritten string-based templates) that have since been removed during binding.
// So, this function translates the old "map" output array into its best guess of the set of current DOM nodes.
//
// Rules:
// [A] Any leading nodes that have been removed should be ignored
// These most likely correspond to memoization nodes that were already removed during binding
// See https://github.com/SteveSanderson/knockout/pull/440
// [B] We want to output a continuous series of nodes. So, ignore any nodes that have already been removed,
// and include any nodes that have been inserted among the previous collection
if (continuousNodeArray.length) {
// The parent node can be a virtual element; so get the real parent node
parentNode = (parentNode.nodeType === 8 && parentNode.parentNode) || parentNode;
// Rule [A]
while (continuousNodeArray.length && continuousNodeArray[0].parentNode !== parentNode)
continuousNodeArray.splice(0, 1);
// Rule [B]
if (continuousNodeArray.length > 1) {
var current = continuousNodeArray[0], last = continuousNodeArray[continuousNodeArray.length - 1];
// Replace with the actual new continuous node set
continuousNodeArray.length = 0;
while (current !== last) {
continuousNodeArray.push(current);
current = current.nextSibling;
if (!current) // Won't happen, except if the developer has manually removed some DOM elements (then we're in an undefined scenario)
return;
}
continuousNodeArray.push(last);
}
}
return continuousNodeArray;
},
setOptionNodeSelectionState: function (optionNode, isSelected) {
// IE6 sometimes throws "unknown error" if you try to write to .selected directly, whereas Firefox struggles with setAttribute. Pick one based on browser.
if (ieVersion < 7)
optionNode.setAttribute("selected", isSelected);
else
optionNode.selected = isSelected;
},
stringTrim: function (string) {
return string === null || string === undefined ? '' :
string.trim ?
string.trim() :
string.toString().replace(/^[\s\xa0]+|[\s\xa0]+$/g, '');
},
stringStartsWith: function (string, startsWith) {
string = string || "";
if (startsWith.length > string.length)
return false;
return string.substring(0, startsWith.length) === startsWith;
},
domNodeIsContainedBy: function (node, containedByNode) {
if (node === containedByNode)
return true;
if (node.nodeType === 11)
return false; // Fixes issue #1162 - can't use node.contains for document fragments on IE8
if (containedByNode.contains)
return containedByNode.contains(node.nodeType === 3 ? node.parentNode : node);
if (containedByNode.compareDocumentPosition)
return (containedByNode.compareDocumentPosition(node) & 16) == 16;
while (node && node != containedByNode) {
node = node.parentNode;
}
return !!node;
},
domNodeIsAttachedToDocument: function (node) {
return ko.utils.domNodeIsContainedBy(node, node.ownerDocument.documentElement);
},
anyDomNodeIsAttachedToDocument: function(nodes) {
return !!ko.utils.arrayFirst(nodes, ko.utils.domNodeIsAttachedToDocument);
},
tagNameLower: function(element) {
// For HTML elements, tagName will always be upper case; for XHTML elements, it'll be lower case.
// Possible future optimization: If we know it's an element from an XHTML document (not HTML),
// we don't need to do the .toLowerCase() as it will always be lower case anyway.
return element && element.tagName && element.tagName.toLowerCase();
},
registerEventHandler: function (element, eventType, handler) {
var mustUseAttachEvent = ieVersion && eventsThatMustBeRegisteredUsingAttachEvent[eventType];
if (!mustUseAttachEvent && jQueryInstance) {
jQueryInstance(element)['bind'](eventType, handler);
} else if (!mustUseAttachEvent && typeof element.addEventListener == "function")
element.addEventListener(eventType, handler, false);
else if (typeof element.attachEvent != "undefined") {
var attachEventHandler = function (event) { handler.call(element, event); },
attachEventName = "on" + eventType;
element.attachEvent(attachEventName, attachEventHandler);
// IE does not dispose attachEvent handlers automatically (unlike with addEventListener)
// so to avoid leaks, we have to remove them manually. See bug #856
ko.utils.domNodeDisposal.addDisposeCallback(element, function() {
element.detachEvent(attachEventName, attachEventHandler);
});
} else
throw new Error("Browser doesn't support addEventListener or attachEvent");
},
triggerEvent: function (element, eventType) {
if (!(element && element.nodeType))
throw new Error("element must be a DOM node when calling triggerEvent");
// For click events on checkboxes and radio buttons, jQuery toggles the element checked state *after* the
// event handler runs instead of *before*. (This was fixed in 1.9 for checkboxes but not for radio buttons.)
// IE doesn't change the checked state when you trigger the click event using "fireEvent".
// In both cases, we'll use the click method instead.
var useClickWorkaround = isClickOnCheckableElement(element, eventType);
if (jQueryInstance && !useClickWorkaround) {
jQueryInstance(element)['trigger'](eventType);
} else if (typeof document.createEvent == "function") {
if (typeof element.dispatchEvent == "function") {
var eventCategory = knownEventTypesByEventName[eventType] || "HTMLEvents";
var event = document.createEvent(eventCategory);
event.initEvent(eventType, true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, element);
element.dispatchEvent(event);
}
else
throw new Error("The supplied element doesn't support dispatchEvent");
} else if (useClickWorkaround && element.click) {
element.click();
} else if (typeof element.fireEvent != "undefined") {
element.fireEvent("on" + eventType);
} else {
throw new Error("Browser doesn't support triggering events");
}
},
unwrapObservable: function (value) {
return ko.isObservable(value) ? value() : value;
},
peekObservable: function (value) {
return ko.isObservable(value) ? value.peek() : value;
},
toggleDomNodeCssClass: toggleDomNodeCssClass,
setTextContent: function(element, textContent) {
var value = ko.utils.unwrapObservable(textContent);
if ((value === null) || (value === undefined))
value = "";
// We need there to be exactly one child: a text node.
// If there are no children, more than one, or if it's not a text node,
// we'll clear everything and create a single text node.
var innerTextNode = ko.virtualElements.firstChild(element);
if (!innerTextNode || innerTextNode.nodeType != 3 || ko.virtualElements.nextSibling(innerTextNode)) {
ko.virtualElements.setDomNodeChildren(element, [element.ownerDocument.createTextNode(value)]);
} else {
innerTextNode.data = value;
}
ko.utils.forceRefresh(element);
},
setElementName: function(element, name) {
element.name = name;
// Workaround IE 6/7 issue
// - https://github.com/SteveSanderson/knockout/issues/197
// - http://www.matts411.com/post/setting_the_name_attribute_in_ie_dom/
if (ieVersion <= 7) {
try {
element.mergeAttributes(document.createElement("<input name='" + element.name + "'/>"), false);
}
catch(e) {} // For IE9 with doc mode "IE9 Standards" and browser mode "IE9 Compatibility View"
}
},
forceRefresh: function(node) {
// Workaround for an IE9 rendering bug - https://github.com/SteveSanderson/knockout/issues/209
if (ieVersion >= 9) {
// For text nodes and comment nodes (most likely virtual elements), we will have to refresh the container
var elem = node.nodeType == 1 ? node : node.parentNode;
if (elem.style)
elem.style.zoom = elem.style.zoom;
}
},
ensureSelectElementIsRenderedCorrectly: function(selectElement) {
// Workaround for IE9 rendering bug - it doesn't reliably display all the text in dynamically-added select boxes unless you force it to re-render by updating the width.
// (See https://github.com/SteveSanderson/knockout/issues/312, http://stackoverflow.com/questions/5908494/select-only-shows-first-char-of-selected-option)
// Also fixes IE7 and IE8 bug that causes selects to be zero width if enclosed by 'if' or 'with'. (See issue #839)
if (ieVersion) {
var originalWidth = selectElement.style.width;
selectElement.style.width = 0;
selectElement.style.width = originalWidth;
}
},
range: function (min, max) {
min = ko.utils.unwrapObservable(min);
max = ko.utils.unwrapObservable(max);
var result = [];
for (var i = min; i <= max; i++)
result.push(i);
return result;
},
makeArray: function(arrayLikeObject) {
var result = [];
for (var i = 0, j = arrayLikeObject.length; i < j; i++) {
result.push(arrayLikeObject[i]);
};
return result;
},
isIe6 : isIe6,
isIe7 : isIe7,
ieVersion : ieVersion,
getFormFields: function(form, fieldName) {
var fields = ko.utils.makeArray(form.getElementsByTagName("input")).concat(ko.utils.makeArray(form.getElementsByTagName("textarea")));
var isMatchingField = (typeof fieldName == 'string')
? function(field) { return field.name === fieldName }
: function(field) { return fieldName.test(field.name) }; // Treat fieldName as regex or object containing predicate
var matches = [];
for (var i = fields.length - 1; i >= 0; i--) {
if (isMatchingField(fields[i]))
matches.push(fields[i]);
};
return matches;
},
parseJson: function (jsonString) {
if (typeof jsonString == "string") {
jsonString = ko.utils.stringTrim(jsonString);
if (jsonString) {
if (JSON && JSON.parse) // Use native parsing where available
return JSON.parse(jsonString);
return (new Function("return " + jsonString))(); // Fallback on less safe parsing for older browsers
}
}
return null;
},
stringifyJson: function (data, replacer, space) { // replacer and space are optional
if (!JSON || !JSON.stringify)
throw new Error("Cannot find JSON.stringify(). Some browsers (e.g., IE < 8) don't support it natively, but you can overcome this by adding a script reference to json2.js, downloadable from http://www.json.org/json2.js");
return JSON.stringify(ko.utils.unwrapObservable(data), replacer, space);
},
postJson: function (urlOrForm, data, options) {
options = options || {};
var params = options['params'] || {};
var includeFields = options['includeFields'] || this.fieldsIncludedWithJsonPost;
var url = urlOrForm;
// If we were given a form, use its 'action' URL and pick out any requested field values
if((typeof urlOrForm == 'object') && (ko.utils.tagNameLower(urlOrForm) === "form")) {
var originalForm = urlOrForm;
url = originalForm.action;
for (var i = includeFields.length - 1; i >= 0; i--) {
var fields = ko.utils.getFormFields(originalForm, includeFields[i]);
for (var j = fields.length - 1; j >= 0; j--)
params[fields[j].name] = fields[j].value;
}
}
data = ko.utils.unwrapObservable(data);
var form = document.createElement("form");
form.style.display = "none";
form.action = url;
form.method = "post";
for (var key in data) {
// Since 'data' this is a model object, we include all properties including those inherited from its prototype
var input = document.createElement("input");
input.type = "hidden";
input.name = key;
input.value = ko.utils.stringifyJson(ko.utils.unwrapObservable(data[key]));
form.appendChild(input);
}
objectForEach(params, function(key, value) {
var input = document.createElement("input");
input.type = "hidden";
input.name = key;
input.value = value;
form.appendChild(input);
});
document.body.appendChild(form);
options['submitter'] ? options['submitter'](form) : form.submit();
setTimeout(function () { form.parentNode.removeChild(form); }, 0);
}
}
}());
ko.exportSymbol('utils', ko.utils);
ko.exportSymbol('utils.arrayForEach', ko.utils.arrayForEach);
ko.exportSymbol('utils.arrayFirst', ko.utils.arrayFirst);
ko.exportSymbol('utils.arrayFilter', ko.utils.arrayFilter);
ko.exportSymbol('utils.arrayGetDistinctValues', ko.utils.arrayGetDistinctValues);
ko.exportSymbol('utils.arrayIndexOf', ko.utils.arrayIndexOf);
ko.exportSymbol('utils.arrayMap', ko.utils.arrayMap);
ko.exportSymbol('utils.arrayPushAll', ko.utils.arrayPushAll);
ko.exportSymbol('utils.arrayRemoveItem', ko.utils.arrayRemoveItem);
ko.exportSymbol('utils.extend', ko.utils.extend);
ko.exportSymbol('utils.fieldsIncludedWithJsonPost', ko.utils.fieldsIncludedWithJsonPost);
ko.exportSymbol('utils.getFormFields', ko.utils.getFormFields);
ko.exportSymbol('utils.peekObservable', ko.utils.peekObservable);
ko.exportSymbol('utils.postJson', ko.utils.postJson);
ko.exportSymbol('utils.parseJson', ko.utils.parseJson);
ko.exportSymbol('utils.registerEventHandler', ko.utils.registerEventHandler);
ko.exportSymbol('utils.stringifyJson', ko.utils.stringifyJson);
ko.exportSymbol('utils.range', ko.utils.range);
ko.exportSymbol('utils.toggleDomNodeCssClass', ko.utils.toggleDomNodeCssClass);
ko.exportSymbol('utils.triggerEvent', ko.utils.triggerEvent);
ko.exportSymbol('utils.unwrapObservable', ko.utils.unwrapObservable);
ko.exportSymbol('utils.objectForEach', ko.utils.objectForEach);
ko.exportSymbol('utils.addOrRemoveItem', ko.utils.addOrRemoveItem);
ko.exportSymbol('utils.setTextContent', ko.utils.setTextContent);
ko.exportSymbol('unwrap', ko.utils.unwrapObservable); // Convenient shorthand, because this is used so commonly
if (!Function.prototype['bind']) {
// Function.prototype.bind is a standard part of ECMAScript 5th Edition (December 2009, http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf)
// In case the browser doesn't implement it natively, provide a JavaScript implementation. This implementation is based on the one in prototype.js
Function.prototype['bind'] = function (object) {
var originalFunction = this;
if (arguments.length === 1) {
return function () {
return originalFunction.apply(object, arguments);
};
} else {
var partialArgs = Array.prototype.slice.call(arguments, 1);
return function () {
var args = partialArgs.slice(0);
args.push.apply(args, arguments);
return originalFunction.apply(object, args);
};
}
};
}
ko.utils.domData = new (function () {
var uniqueId = 0;
var dataStoreKeyExpandoPropertyName = "__ko__" + (new Date).getTime();
var dataStore = {};
function getAll(node, createIfNotFound) {
var dataStoreKey = node[dataStoreKeyExpandoPropertyName];
var hasExistingDataStore = dataStoreKey && (dataStoreKey !== "null") && dataStore[dataStoreKey];
if (!hasExistingDataStore) {
if (!createIfNotFound)
return undefined;
dataStoreKey = node[dataStoreKeyExpandoPropertyName] = "ko" + uniqueId++;
dataStore[dataStoreKey] = {};
}
return dataStore[dataStoreKey];
}
return {
get: function (node, key) {
var allDataForNode = getAll(node, false);
return allDataForNode === undefined ? undefined : allDataForNode[key];
},
set: function (node, key, value) {
if (value === undefined) {
// Make sure we don't actually create a new domData key if we are actually deleting a value
if (getAll(node, false) === undefined)
return;
}
var allDataForNode = getAll(node, true);
allDataForNode[key] = value;
},
clear: function (node) {
var dataStoreKey = node[dataStoreKeyExpandoPropertyName];
if (dataStoreKey) {
delete dataStore[dataStoreKey];
node[dataStoreKeyExpandoPropertyName] = null;
return true; // Exposing "did clean" flag purely so specs can infer whether things have been cleaned up as intended
}
return false;
},
nextKey: function () {
return (uniqueId++) + dataStoreKeyExpandoPropertyName;
}
};
})();
ko.exportSymbol('utils.domData', ko.utils.domData);
ko.exportSymbol('utils.domData.clear', ko.utils.domData.clear); // Exporting only so specs can clear up after themselves fully
ko.utils.domNodeDisposal = new (function () {
var domDataKey = ko.utils.domData.nextKey();
var cleanableNodeTypes = { 1: true, 8: true, 9: true }; // Element, Comment, Document
var cleanableNodeTypesWithDescendants = { 1: true, 9: true }; // Element, Document
function getDisposeCallbacksCollection(node, createIfNotFound) {
var allDisposeCallbacks = ko.utils.domData.get(node, domDataKey);
if ((allDisposeCallbacks === undefined) && createIfNotFound) {
allDisposeCallbacks = [];
ko.utils.domData.set(node, domDataKey, allDisposeCallbacks);
}
return allDisposeCallbacks;
}
function destroyCallbacksCollection(node) {
ko.utils.domData.set(node, domDataKey, undefined);
}
function cleanSingleNode(node) {
// Run all the dispose callbacks
var callbacks = getDisposeCallbacksCollection(node, false);
if (callbacks) {
callbacks = callbacks.slice(0); // Clone, as the array may be modified during iteration (typically, callbacks will remove themselves)
for (var i = 0; i < callbacks.length; i++)
callbacks[i](node);
}
// Erase the DOM data
ko.utils.domData.clear(node);
// Perform cleanup needed by external libraries (currently only jQuery, but can be extended)
ko.utils.domNodeDisposal["cleanExternalData"](node);
// Clear any immediate-child comment nodes, as these wouldn't have been found by
// node.getElementsByTagName("*") in cleanNode() (comment nodes aren't elements)
if (cleanableNodeTypesWithDescendants[node.nodeType])
cleanImmediateCommentTypeChildren(node);
}
function cleanImmediateCommentTypeChildren(nodeWithChildren) {
var child, nextChild = nodeWithChildren.firstChild;
while (child = nextChild) {
nextChild = child.nextSibling;
if (child.nodeType === 8)
cleanSingleNode(child);
}
}
return {
addDisposeCallback : function(node, callback) {
if (typeof callback != "function")
throw new Error("Callback must be a function");
getDisposeCallbacksCollection(node, true).push(callback);
},
removeDisposeCallback : function(node, callback) {
var callbacksCollection = getDisposeCallbacksCollection(node, false);
if (callbacksCollection) {
ko.utils.arrayRemoveItem(callbacksCollection, callback);
if (callbacksCollection.length == 0)
destroyCallbacksCollection(node);
}
},
cleanNode : function(node) {
// First clean this node, where applicable
if (cleanableNodeTypes[node.nodeType]) {
cleanSingleNode(node);
// ... then its descendants, where applicable
if (cleanableNodeTypesWithDescendants[node.nodeType]) {
// Clone the descendants list in case it changes during iteration
var descendants = [];
ko.utils.arrayPushAll(descendants, node.getElementsByTagName("*"));
for (var i = 0, j = descendants.length; i < j; i++)
cleanSingleNode(descendants[i]);
}
}
return node;
},
removeNode : function(node) {
ko.cleanNode(node);
if (node.parentNode)
node.parentNode.removeChild(node);
},
"cleanExternalData" : function (node) {
// Special support for jQuery here because it's so commonly used.
// Many jQuery plugins (including jquery.tmpl) store data using jQuery's equivalent of domData
// so notify it to tear down any resources associated with the node & descendants here.
if (jQueryInstance && (typeof jQueryInstance['cleanData'] == "function"))
jQueryInstance['cleanData']([node]);
}
};
})();
ko.cleanNode = ko.utils.domNodeDisposal.cleanNode; // Shorthand name for convenience
ko.removeNode = ko.utils.domNodeDisposal.removeNode; // Shorthand name for convenience
ko.exportSymbol('cleanNode', ko.cleanNode);
ko.exportSymbol('removeNode', ko.removeNode);
ko.exportSymbol('utils.domNodeDisposal', ko.utils.domNodeDisposal);
ko.exportSymbol('utils.domNodeDisposal.addDisposeCallback', ko.utils.domNodeDisposal.addDisposeCallback);
ko.exportSymbol('utils.domNodeDisposal.removeDisposeCallback', ko.utils.domNodeDisposal.removeDisposeCallback);
(function () {
var leadingCommentRegex = /^(\s*)<!--(.*?)-->/;
function simpleHtmlParse(html, documentContext) {
documentContext || (documentContext = document);
var windowContext = documentContext['parentWindow'] || documentContext['defaultView'] || window;
// Based on jQuery's "clean" function, but only accounting for table-related elements.
// If you have referenced jQuery, this won't be used anyway - KO will use jQuery's "clean" function directly
// Note that there's still an issue in IE < 9 whereby it will discard comment nodes that are the first child of
// a descendant node. For example: "<div><!-- mycomment -->abc</div>" will get parsed as "<div>abc</div>"
// This won't affect anyone who has referenced jQuery, and there's always the workaround of inserting a dummy node
// (possibly a text node) in front of the comment. So, KO does not attempt to workaround this IE issue automatically at present.
// Trim whitespace, otherwise indexOf won't work as expected
var tags = ko.utils.stringTrim(html).toLowerCase(), div = documentContext.createElement("div");
// Finds the first match from the left column, and returns the corresponding "wrap" data from the right column
var wrap = tags.match(/^<(thead|tbody|tfoot)/) && [1, "<table>", "</table>"] ||
!tags.indexOf("<tr") && [2, "<table><tbody>", "</tbody></table>"] ||
(!tags.indexOf("<td") || !tags.indexOf("<th")) && [3, "<table><tbody><tr>", "</tr></tbody></table>"] ||
/* anything else */ [0, "", ""];
// Go to html and back, then peel off extra wrappers
// Note that we always prefix with some dummy text, because otherwise, IE<9 will strip out leading comment nodes in descendants. Total madness.
var markup = "ignored<div>" + wrap[1] + html + wrap[2] + "</div>";
if (typeof windowContext['innerShiv'] == "function") {
div.appendChild(windowContext['innerShiv'](markup));
} else {
div.innerHTML = markup;
}
// Move to the right depth
while (wrap[0]--)
div = div.lastChild;
return ko.utils.makeArray(div.lastChild.childNodes);
}
function jQueryHtmlParse(html, documentContext) {
// jQuery's "parseHTML" function was introduced in jQuery 1.8.0 and is a documented public API.
if (jQueryInstance['parseHTML']) {
return jQueryInstance['parseHTML'](html, documentContext) || []; // Ensure we always return an array and never null
} else {
// For jQuery < 1.8.0, we fall back on the undocumented internal "clean" function.
var elems = jQueryInstance['clean']([html], documentContext);
// As of jQuery 1.7.1, jQuery parses the HTML by appending it to some dummy parent nodes held in an in-memory document fragment.
// Unfortunately, it never clears the dummy parent nodes from the document fragment, so it leaks memory over time.
// Fix this by finding the top-most dummy parent element, and detaching it from its owner fragment.
if (elems && elems[0]) {
// Find the top-most parent element that's a direct child of a document fragment
var elem = elems[0];
while (elem.parentNode && elem.parentNode.nodeType !== 11 /* i.e., DocumentFragment */)
elem = elem.parentNode;
// ... then detach it
if (elem.parentNode)
elem.parentNode.removeChild(elem);
}
return elems;
}
}
ko.utils.parseHtmlFragment = function(html, documentContext) {
return jQueryInstance ? jQueryHtmlParse(html, documentContext) // As below, benefit from jQuery's optimisations where possible
: simpleHtmlParse(html, documentContext); // ... otherwise, this simple logic will do in most common cases.
};
ko.utils.setHtml = function(node, html) {
ko.utils.emptyDomNode(node);
// There's no legitimate reason to display a stringified observable without unwrapping it, so we'll unwrap it
html = ko.utils.unwrapObservable(html);
if ((html !== null) && (html !== undefined)) {
if (typeof html != 'string')
html = html.toString();
// jQuery contains a lot of sophisticated code to parse arbitrary HTML fragments,
// for example <tr> elements which are not normally allowed to exist on their own.
// If you've referenced jQuery we'll use that rather than duplicating its code.
if (jQueryInstance) {
jQueryInstance(node)['html'](html);
} else {
// ... otherwise, use KO's own parsing logic.
var parsedNodes = ko.utils.parseHtmlFragment(html, node.ownerDocument);
for (var i = 0; i < parsedNodes.length; i++)
node.appendChild(parsedNodes[i]);
}
}
};
})();
ko.exportSymbol('utils.parseHtmlFragment', ko.utils.parseHtmlFragment);
ko.exportSymbol('utils.setHtml', ko.utils.setHtml);
ko.memoization = (function () {
var memos = {};
function randomMax8HexChars() {
return (((1 + Math.random()) * 0x100000000) | 0).toString(16).substring(1);
}
function generateRandomId() {
return randomMax8HexChars() + randomMax8HexChars();
}
function findMemoNodes(rootNode, appendToArray) {
if (!rootNode)
return;
if (rootNode.nodeType == 8) {
var memoId = ko.memoization.parseMemoText(rootNode.nodeValue);
if (memoId != null)
appendToArray.push({ domNode: rootNode, memoId: memoId });
} else if (rootNode.nodeType == 1) {
for (var i = 0, childNodes = rootNode.childNodes, j = childNodes.length; i < j; i++)
findMemoNodes(childNodes[i], appendToArray);
}
}
return {
memoize: function (callback) {
if (typeof callback != "function")
throw new Error("You can only pass a function to ko.memoization.memoize()");
var memoId = generateRandomId();
memos[memoId] = callback;
return "<!--[ko_memo:" + memoId + "]-->";
},
unmemoize: function (memoId, callbackParams) {
var callback = memos[memoId];
if (callback === undefined)
throw new Error("Couldn't find any memo with ID " + memoId + ". Perhaps it's already been unmemoized.");
try {
callback.apply(null, callbackParams || []);
return true;
}
finally { delete memos[memoId]; }
},
unmemoizeDomNodeAndDescendants: function (domNode, extraCallbackParamsArray) {
var memos = [];
findMemoNodes(domNode, memos);
for (var i = 0, j = memos.length; i < j; i++) {
var node = memos[i].domNode;
var combinedParams = [node];
if (extraCallbackParamsArray)
ko.utils.arrayPushAll(combinedParams, extraCallbackParamsArray);
ko.memoization.unmemoize(memos[i].memoId, combinedParams);
node.nodeValue = ""; // Neuter this node so we don't try to unmemoize it again
if (node.parentNode)
node.parentNode.removeChild(node); // If possible, erase it totally (not always possible - someone else might just hold a reference to it then call unmemoizeDomNodeAndDescendants again)
}
},
parseMemoText: function (memoText) {
var match = memoText.match(/^\[ko_memo\:(.*?)\]$/);
return match ? match[1] : null;
}
};
})();
ko.exportSymbol('memoization', ko.memoization);
ko.exportSymbol('memoization.memoize', ko.memoization.memoize);
ko.exportSymbol('memoization.unmemoize', ko.memoization.unmemoize);
ko.exportSymbol('memoization.parseMemoText', ko.memoization.parseMemoText);
ko.exportSymbol('memoization.unmemoizeDomNodeAndDescendants', ko.memoization.unmemoizeDomNodeAndDescendants);
ko.extenders = {
'throttle': function(target, timeout) {
// Throttling means two things:
// (1) For dependent observables, we throttle *evaluations* so that, no matter how fast its dependencies
// notify updates, the target doesn't re-evaluate (and hence doesn't notify) faster than a certain rate
target['throttleEvaluation'] = timeout;
// (2) For writable targets (observables, or writable dependent observables), we throttle *writes*
// so the target cannot change value synchronously or faster than a certain rate
var writeTimeoutInstance = null;
return ko.dependentObservable({
'read': target,
'write': function(value) {
clearTimeout(writeTimeoutInstance);
writeTimeoutInstance = setTimeout(function() {
target(value);
}, timeout);
}
});
},
'rateLimit': function(target, options) {
var timeout, method, limitFunction;
if (typeof options == 'number') {
timeout = options;
} else {
timeout = options['timeout'];
method = options['method'];
}
limitFunction = method == 'notifyWhenChangesStop' ? debounce : throttle;
target.limit(function(callback) {
return limitFunction(callback, timeout);
});
},
'notify': function(target, notifyWhen) {
target["equalityComparer"] = notifyWhen == "always" ?
null : // null equalityComparer means to always notify
valuesArePrimitiveAndEqual;
}
};
var primitiveTypes = { 'undefined':1, 'boolean':1, 'number':1, 'string':1 };
function valuesArePrimitiveAndEqual(a, b) {
var oldValueIsPrimitive = (a === null) || (typeof(a) in primitiveTypes);
return oldValueIsPrimitive ? (a === b) : false;
}
function throttle(callback, timeout) {
var timeoutInstance;
return function () {
if (!timeoutInstance) {
timeoutInstance = setTimeout(function() {
timeoutInstance = undefined;
callback();
}, timeout);
}
};
}
function debounce(callback, timeout) {
var timeoutInstance;
return function () {
clearTimeout(timeoutInstance);
timeoutInstance = setTimeout(callback, timeout);
};
}
function applyExtenders(requestedExtenders) {
var target = this;
if (requestedExtenders) {
ko.utils.objectForEach(requestedExtenders, function(key, value) {
var extenderHandler = ko.extenders[key];
if (typeof extenderHandler == 'function') {
target = extenderHandler(target, value) || target;
}
});
}
return target;
}
ko.exportSymbol('extenders', ko.extenders);
ko.subscription = function (target, callback, disposeCallback) {
this._target = target;
this.callback = callback;
this.disposeCallback = disposeCallback;
this.isDisposed = false;
ko.exportProperty(this, 'dispose', this.dispose);
};
ko.subscription.prototype.dispose = function () {
this.isDisposed = true;
this.disposeCallback();
};
ko.subscribable = function () {
ko.utils.setPrototypeOfOrExtend(this, ko.subscribable['fn']);
this._subscriptions = {};
this._versionNumber = 1;
}
var defaultEvent = "change";
var ko_subscribable_fn = {
subscribe: function (callback, callbackTarget, event) {
var self = this;
event = event || defaultEvent;
var boundCallback = callbackTarget ? callback.bind(callbackTarget) : callback;
var subscription = new ko.subscription(self, boundCallback, function () {
ko.utils.arrayRemoveItem(self._subscriptions[event], subscription);
if (self.afterSubscriptionRemove)
self.afterSubscriptionRemove(event);
});
if (self.beforeSubscriptionAdd)
self.beforeSubscriptionAdd(event);
if (!self._subscriptions[event])
self._subscriptions[event] = [];
self._subscriptions[event].push(subscription);
return subscription;
},
"notifySubscribers": function (valueToNotify, event) {
event = event || defaultEvent;
if (event === defaultEvent) {
this.updateVersion();
}
if (this.hasSubscriptionsForEvent(event)) {
try {
ko.dependencyDetection.begin(); // Begin suppressing dependency detection (by setting the top frame to undefined)
for (var a = this._subscriptions[event].slice(0), i = 0, subscription; subscription = a[i]; ++i) {
// In case a subscription was disposed during the arrayForEach cycle, check
// for isDisposed on each subscription before invoking its callback
if (!subscription.isDisposed)
subscription.callback(valueToNotify);
}
} finally {
ko.dependencyDetection.end(); // End suppressing dependency detection
}
}
},
getVersion: function () {
return this._versionNumber;
},
hasChanged: function (versionToCheck) {
return this.getVersion() !== versionToCheck;
},
updateVersion: function () {
++this._versionNumber;
},
limit: function(limitFunction) {
var self = this, selfIsObservable = ko.isObservable(self),
isPending, previousValue, pendingValue, beforeChange = 'beforeChange';
if (!self._origNotifySubscribers) {
self._origNotifySubscribers = self["notifySubscribers"];
self["notifySubscribers"] = function(value, event) {
if (!event || event === defaultEvent) {
self._rateLimitedChange(value);
} else if (event === beforeChange) {
self._rateLimitedBeforeChange(value);
} else {
self._origNotifySubscribers(value, event);
}
};
}
var finish = limitFunction(function() {
// If an observable provided a reference to itself, access it to get the latest value.
// This allows computed observables to delay calculating their value until needed.
if (selfIsObservable && pendingValue === self) {
pendingValue = self();
}
isPending = false;
if (self.isDifferent(previousValue, pendingValue)) {
self._origNotifySubscribers(previousValue = pendingValue);
}
});
self._rateLimitedChange = function(value) {
isPending = true;
pendingValue = value;
finish();
};
self._rateLimitedBeforeChange = function(value) {
if (!isPending) {
previousValue = value;
self._origNotifySubscribers(value, beforeChange);
}
};
},
hasSubscriptionsForEvent: function(event) {
return this._subscriptions[event] && this._subscriptions[event].length;
},
getSubscriptionsCount: function (event) {
if (event) {
return this._subscriptions[event] && this._subscriptions[event].length || 0;
} else {
var total = 0;
ko.utils.objectForEach(this._subscriptions, function(eventName, subscriptions) {
total += subscriptions.length;
});
return total;
}
},
isDifferent: function(oldValue, newValue) {
return !this['equalityComparer'] || !this['equalityComparer'](oldValue, newValue);
},
extend: applyExtenders
};
ko.exportProperty(ko_subscribable_fn, 'subscribe', ko_subscribable_fn.subscribe);
ko.exportProperty(ko_subscribable_fn, 'extend', ko_subscribable_fn.extend);
ko.exportProperty(ko_subscribable_fn, 'getSubscriptionsCount', ko_subscribable_fn.getSubscriptionsCount);
// For browsers that support proto assignment, we overwrite the prototype of each
// observable instance. Since observables are functions, we need Function.prototype
// to still be in the prototype chain.
if (ko.utils.canSetPrototype) {
ko.utils.setPrototypeOf(ko_subscribable_fn, Function.prototype);
}
ko.subscribable['fn'] = ko_subscribable_fn;
ko.isSubscribable = function (instance) {
return instance != null && typeof instance.subscribe == "function" && typeof instance["notifySubscribers"] == "function";
};
ko.exportSymbol('subscribable', ko.subscribable);
ko.exportSymbol('isSubscribable', ko.isSubscribable);
ko.computedContext = ko.dependencyDetection = (function () {
var outerFrames = [],
currentFrame,
lastId = 0;
// Return a unique ID that can be assigned to an observable for dependency tracking.
// Theoretically, you could eventually overflow the number storage size, resulting
// in duplicate IDs. But in JavaScript, the largest exact integral value is 2^53
// or 9,007,199,254,740,992. If you created 1,000,000 IDs per second, it would
// take over 285 years to reach that number.
// Reference http://blog.vjeux.com/2010/javascript/javascript-max_int-number-limits.html
function getId() {
return ++lastId;
}
function begin(options) {
outerFrames.push(currentFrame);
currentFrame = options;
}
function end() {
currentFrame = outerFrames.pop();
}
return {
begin: begin,
end: end,
registerDependency: function (subscribable) {
if (currentFrame) {
if (!ko.isSubscribable(subscribable))
throw new Error("Only subscribable things can act as dependencies");
currentFrame.callback(subscribable, subscribable._id || (subscribable._id = getId()));
}
},
ignore: function (callback, callbackTarget, callbackArgs) {
try {
begin();
return callback.apply(callbackTarget, callbackArgs || []);
} finally {
end();
}
},
getDependenciesCount: function () {
if (currentFrame)
return currentFrame.computed.getDependenciesCount();
},
isInitial: function() {
if (currentFrame)
return currentFrame.isInitial;
}
};
})();
ko.exportSymbol('computedContext', ko.computedContext);
ko.exportSymbol('computedContext.getDependenciesCount', ko.computedContext.getDependenciesCount);
ko.exportSymbol('computedContext.isInitial', ko.computedContext.isInitial);
ko.exportSymbol('computedContext.isSleeping', ko.computedContext.isSleeping);
ko.exportSymbol('ignoreDependencies', ko.ignoreDependencies = ko.dependencyDetection.ignore);
ko.observable = function (initialValue) {
var _latestValue = initialValue;
function observable() {
if (arguments.length > 0) {
// Write
// Ignore writes if the value hasn't changed
if (observable.isDifferent(_latestValue, arguments[0])) {
observable.valueWillMutate();
_latestValue = arguments[0];
if (DEBUG) observable._latestValue = _latestValue;
observable.valueHasMutated();
}
return this; // Permits chained assignments
}
else {
// Read
ko.dependencyDetection.registerDependency(observable); // The caller only needs to be notified of changes if they did a "read" operation
return _latestValue;
}
}
ko.subscribable.call(observable);
ko.utils.setPrototypeOfOrExtend(observable, ko.observable['fn']);
if (DEBUG) observable._latestValue = _latestValue;
observable.peek = function() { return _latestValue };
observable.valueHasMutated = function () { observable["notifySubscribers"](_latestValue); }
observable.valueWillMutate = function () { observable["notifySubscribers"](_latestValue, "beforeChange"); }
ko.exportProperty(observable, 'peek', observable.peek);
ko.exportProperty(observable, "valueHasMutated", observable.valueHasMutated);
ko.exportProperty(observable, "valueWillMutate", observable.valueWillMutate);
return observable;
}
ko.observable['fn'] = {
"equalityComparer": valuesArePrimitiveAndEqual
};
var protoProperty = ko.observable.protoProperty = "__ko_proto__";
ko.observable['fn'][protoProperty] = ko.observable;
// Note that for browsers that don't support proto assignment, the
// inheritance chain is created manually in the ko.observable constructor
if (ko.utils.canSetPrototype) {
ko.utils.setPrototypeOf(ko.observable['fn'], ko.subscribable['fn']);
}
ko.hasPrototype = function(instance, prototype) {
if ((instance === null) || (instance === undefined) || (instance[protoProperty] === undefined)) return false;
if (instance[protoProperty] === prototype) return true;
return ko.hasPrototype(instance[protoProperty], prototype); // Walk the prototype chain
};
ko.isObservable = function (instance) {
return ko.hasPrototype(instance, ko.observable);
}
ko.isWriteableObservable = function (instance) {
// Observable
if ((typeof instance == "function") && instance[protoProperty] === ko.observable)
return true;
// Writeable dependent observable
if ((typeof instance == "function") && (instance[protoProperty] === ko.dependentObservable) && (instance.hasWriteFunction))
return true;
// Anything else
return false;
}
ko.exportSymbol('observable', ko.observable);
ko.exportSymbol('isObservable', ko.isObservable);
ko.exportSymbol('isWriteableObservable', ko.isWriteableObservable);
ko.exportSymbol('isWritableObservable', ko.isWriteableObservable);
ko.observableArray = function (initialValues) {
initialValues = initialValues || [];
if (typeof initialValues != 'object' || !('length' in initialValues))
throw new Error("The argument passed when initializing an observable array must be an array, or null, or undefined.");
var result = ko.observable(initialValues);
ko.utils.setPrototypeOfOrExtend(result, ko.observableArray['fn']);
return result.extend({'trackArrayChanges':true});
};
ko.observableArray['fn'] = {
'remove': function (valueOrPredicate) {
var underlyingArray = this.peek();
var removedValues = [];
var predicate = typeof valueOrPredicate == "function" && !ko.isObservable(valueOrPredicate) ? valueOrPredicate : function (value) { return value === valueOrPredicate; };
for (var i = 0; i < underlyingArray.length; i++) {
var value = underlyingArray[i];
if (predicate(value)) {
if (removedValues.length === 0) {
this.valueWillMutate();
}
removedValues.push(value);
underlyingArray.splice(i, 1);
i--;
}
}
if (removedValues.length) {
this.valueHasMutated();
}
return removedValues;
},
'removeAll': function (arrayOfValues) {
// If you passed zero args, we remove everything
if (arrayOfValues === undefined) {
var underlyingArray = this.peek();
var allValues = underlyingArray.slice(0);
this.valueWillMutate();
underlyingArray.splice(0, underlyingArray.length);
this.valueHasMutated();
return allValues;
}
// If you passed an arg, we interpret it as an array of entries to remove
if (!arrayOfValues)
return [];
return this['remove'](function (value) {
return ko.utils.arrayIndexOf(arrayOfValues, value) >= 0;
});
},
'destroy': function (valueOrPredicate) {
var underlyingArray = this.peek();
var predicate = typeof valueOrPredicate == "function" && !ko.isObservable(valueOrPredicate) ? valueOrPredicate : function (value) { return value === valueOrPredicate; };
this.valueWillMutate();
for (var i = underlyingArray.length - 1; i >= 0; i--) {
var value = underlyingArray[i];
if (predicate(value))
underlyingArray[i]["_destroy"] = true;
}
this.valueHasMutated();
},
'destroyAll': function (arrayOfValues) {
// If you passed zero args, we destroy everything
if (arrayOfValues === undefined)
return this['destroy'](function() { return true });
// If you passed an arg, we interpret it as an array of entries to destroy
if (!arrayOfValues)
return [];
return this['destroy'](function (value) {
return ko.utils.arrayIndexOf(arrayOfValues, value) >= 0;
});
},
'indexOf': function (item) {
var underlyingArray = this();
return ko.utils.arrayIndexOf(underlyingArray, item);
},
'replace': function(oldItem, newItem) {
var index = this['indexOf'](oldItem);
if (index >= 0) {
this.valueWillMutate();
this.peek()[index] = newItem;
this.valueHasMutated();
}
}
};
// Populate ko.observableArray.fn with read/write functions from native arrays
// Important: Do not add any additional functions here that may reasonably be used to *read* data from the array
// because we'll eval them without causing subscriptions, so ko.computed output could end up getting stale
ko.utils.arrayForEach(["pop", "push", "reverse", "shift", "sort", "splice", "unshift"], function (methodName) {
ko.observableArray['fn'][methodName] = function () {
// Use "peek" to avoid creating a subscription in any computed that we're executing in the context of
// (for consistency with mutating regular observables)
var underlyingArray = this.peek();
this.valueWillMutate();
this.cacheDiffForKnownOperation(underlyingArray, methodName, arguments);
var methodCallResult = underlyingArray[methodName].apply(underlyingArray, arguments);
this.valueHasMutated();
return methodCallResult;
};
});
// Populate ko.observableArray.fn with read-only functions from native arrays
ko.utils.arrayForEach(["slice"], function (methodName) {
ko.observableArray['fn'][methodName] = function () {
var underlyingArray = this();
return underlyingArray[methodName].apply(underlyingArray, arguments);
};
});
// Note that for browsers that don't support proto assignment, the
// inheritance chain is created manually in the ko.observableArray constructor
if (ko.utils.canSetPrototype) {
ko.utils.setPrototypeOf(ko.observableArray['fn'], ko.observable['fn']);
}
ko.exportSymbol('observableArray', ko.observableArray);
var arrayChangeEventName = 'arrayChange';
ko.extenders['trackArrayChanges'] = function(target) {
// Only modify the target observable once
if (target.cacheDiffForKnownOperation) {
return;
}
var trackingChanges = false,
cachedDiff = null,
arrayChangeSubscription,
pendingNotifications = 0,
underlyingBeforeSubscriptionAddFunction = target.beforeSubscriptionAdd,
underlyingAfterSubscriptionRemoveFunction = target.afterSubscriptionRemove;
// Watch "subscribe" calls, and for array change events, ensure change tracking is enabled
target.beforeSubscriptionAdd = function (event) {
if (underlyingBeforeSubscriptionAddFunction)
underlyingBeforeSubscriptionAddFunction.call(target, event);
if (event === arrayChangeEventName) {
trackChanges();
}
};
// Watch "dispose" calls, and for array change events, ensure change tracking is disabled when all are disposed
target.afterSubscriptionRemove = function (event) {
if (underlyingAfterSubscriptionRemoveFunction)
underlyingAfterSubscriptionRemoveFunction.call(target, event);
if (event === arrayChangeEventName && !target.hasSubscriptionsForEvent(arrayChangeEventName)) {
arrayChangeSubscription.dispose();
trackingChanges = false;
}
};
function trackChanges() {
// Calling 'trackChanges' multiple times is the same as calling it once
if (trackingChanges) {
return;
}
trackingChanges = true;
// Intercept "notifySubscribers" to track how many times it was called.
var underlyingNotifySubscribersFunction = target['notifySubscribers'];
target['notifySubscribers'] = function(valueToNotify, event) {
if (!event || event === defaultEvent) {
++pendingNotifications;
}
return underlyingNotifySubscribersFunction.apply(this, arguments);
};
// Each time the array changes value, capture a clone so that on the next
// change it's possible to produce a diff
var previousContents = [].concat(target.peek() || []);
cachedDiff = null;
arrayChangeSubscription = target.subscribe(function(currentContents) {
// Make a copy of the current contents and ensure it's an array
currentContents = [].concat(currentContents || []);
// Compute the diff and issue notifications, but only if someone is listening
if (target.hasSubscriptionsForEvent(arrayChangeEventName)) {
var changes = getChanges(previousContents, currentContents);
}
// Eliminate references to the old, removed items, so they can be GCed
previousContents = currentContents;
cachedDiff = null;
pendingNotifications = 0;
if (changes && changes.length) {
target['notifySubscribers'](changes, arrayChangeEventName);
}
});
}
function getChanges(previousContents, currentContents) {
// We try to re-use cached diffs.
// The scenarios where pendingNotifications > 1 are when using rate-limiting or the Deferred Updates
// plugin, which without this check would not be compatible with arrayChange notifications. Normally,
// notifications are issued immediately so we wouldn't be queueing up more than one.
if (!cachedDiff || pendingNotifications > 1) {
cachedDiff = ko.utils.compareArrays(previousContents, currentContents, { 'sparse': true });
}
return cachedDiff;
}
target.cacheDiffForKnownOperation = function(rawArray, operationName, args) {
// Only run if we're currently tracking changes for this observable array
// and there aren't any pending deferred notifications.
if (!trackingChanges || pendingNotifications) {
return;
}
var diff = [],
arrayLength = rawArray.length,
argsLength = args.length,
offset = 0;
function pushDiff(status, value, index) {
return diff[diff.length] = { 'status': status, 'value': value, 'index': index };
}
switch (operationName) {
case 'push':
offset = arrayLength;
case 'unshift':
for (var index = 0; index < argsLength; index++) {
pushDiff('added', args[index], offset + index);
}
break;
case 'pop':
offset = arrayLength - 1;
case 'shift':
if (arrayLength) {
pushDiff('deleted', rawArray[offset], offset);
}
break;
case 'splice':
// Negative start index means 'from end of array'. After that we clamp to [0...arrayLength].
// See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice
var startIndex = Math.min(Math.max(0, args[0] < 0 ? arrayLength + args[0] : args[0]), arrayLength),
endDeleteIndex = argsLength === 1 ? arrayLength : Math.min(startIndex + (args[1] || 0), arrayLength),
endAddIndex = startIndex + argsLength - 2,
endIndex = Math.max(endDeleteIndex, endAddIndex),
additions = [], deletions = [];
for (var index = startIndex, argsIndex = 2; index < endIndex; ++index, ++argsIndex) {
if (index < endDeleteIndex)
deletions.push(pushDiff('deleted', rawArray[index], index));
if (index < endAddIndex)
additions.push(pushDiff('added', args[argsIndex], index));
}
ko.utils.findMovesInArrayComparison(deletions, additions);
break;
default:
return;
}
cachedDiff = diff;
};
};
ko.computed = ko.dependentObservable = function (evaluatorFunctionOrOptions, evaluatorFunctionTarget, options) {
var _latestValue,
_needsEvaluation = true,
_isBeingEvaluated = false,
_suppressDisposalUntilDisposeWhenReturnsFalse = false,
_isDisposed = false,
readFunction = evaluatorFunctionOrOptions,
pure = false,
isSleeping = false;
if (readFunction && typeof readFunction == "object") {
// Single-parameter syntax - everything is on this "options" param
options = readFunction;
readFunction = options["read"];
} else {
// Multi-parameter syntax - construct the options according to the params passed
options = options || {};
if (!readFunction)
readFunction = options["read"];
}
if (typeof readFunction != "function")
throw new Error("Pass a function that returns the value of the ko.computed");
function addDependencyTracking(id, target, trackingObj) {
if (pure && target === dependentObservable) {
throw Error("A 'pure' computed must not be called recursively");
}
dependencyTracking[id] = trackingObj;
trackingObj._order = _dependenciesCount++;
trackingObj._version = target.getVersion();
}
function haveDependenciesChanged() {
var id, dependency;
for (id in dependencyTracking) {
if (dependencyTracking.hasOwnProperty(id)) {
dependency = dependencyTracking[id];
if (dependency._target.hasChanged(dependency._version)) {
return true;
}
}
}
}
function disposeComputed() {
if (!isSleeping && dependencyTracking) {
ko.utils.objectForEach(dependencyTracking, function (id, dependency) {
if (dependency.dispose)
dependency.dispose();
});
}
dependencyTracking = null;
_dependenciesCount = 0;
_isDisposed = true;
_needsEvaluation = false;
isSleeping = false;
}
function evaluatePossiblyAsync() {
var throttleEvaluationTimeout = dependentObservable['throttleEvaluation'];
if (throttleEvaluationTimeout && throttleEvaluationTimeout >= 0) {
clearTimeout(evaluationTimeoutInstance);
evaluationTimeoutInstance = setTimeout(function () {
evaluateImmediate(true /*notifyChange*/);
}, throttleEvaluationTimeout);
} else if (dependentObservable._evalRateLimited) {
dependentObservable._evalRateLimited();
} else {
evaluateImmediate(true /*notifyChange*/);
}
}
function evaluateImmediate(notifyChange) {
if (_isBeingEvaluated) {
// If the evaluation of a ko.computed causes side effects, it's possible that it will trigger its own re-evaluation.
// This is not desirable (it's hard for a developer to realise a chain of dependencies might cause this, and they almost
// certainly didn't intend infinite re-evaluations). So, for predictability, we simply prevent ko.computeds from causing
// their own re-evaluation. Further discussion at https://github.com/SteveSanderson/knockout/pull/387
return;
}
// Do not evaluate (and possibly capture new dependencies) if disposed
if (_isDisposed) {
return;
}
if (disposeWhen && disposeWhen()) {
// See comment below about _suppressDisposalUntilDisposeWhenReturnsFalse
if (!_suppressDisposalUntilDisposeWhenReturnsFalse) {
dispose();
return;
}
} else {
// It just did return false, so we can stop suppressing now
_suppressDisposalUntilDisposeWhenReturnsFalse = false;
}
_isBeingEvaluated = true;
try {
// Initially, we assume that none of the subscriptions are still being used (i.e., all are candidates for disposal).
// Then, during evaluation, we cross off any that are in fact still being used.
var disposalCandidates = dependencyTracking,
disposalCount = _dependenciesCount,
isInitial = pure ? undefined : !_dependenciesCount; // If we're evaluating when there are no previous dependencies, it must be the first time
ko.dependencyDetection.begin({
callback: function(subscribable, id) {
if (!_isDisposed) {
if (disposalCount && disposalCandidates[id]) {
// Don't want to dispose this subscription, as it's still being used
addDependencyTracking(id, subscribable, disposalCandidates[id]);
delete disposalCandidates[id];
--disposalCount;
} else if (!dependencyTracking[id]) {
// Brand new subscription - add it
addDependencyTracking(id, subscribable, isSleeping ? { _target: subscribable } : subscribable.subscribe(evaluatePossiblyAsync));
}
}
},
computed: dependentObservable,
isInitial: isInitial
});
dependencyTracking = {};
_dependenciesCount = 0;
try {
var newValue = evaluatorFunctionTarget ? readFunction.call(evaluatorFunctionTarget) : readFunction();
} finally {
ko.dependencyDetection.end();
// For each subscription no longer being used, remove it from the active subscriptions list and dispose it
if (disposalCount && !isSleeping) {
ko.utils.objectForEach(disposalCandidates, function(id, toDispose) {
if (toDispose.dispose)
toDispose.dispose();
});
}
_needsEvaluation = false;
}
if (dependentObservable.isDifferent(_latestValue, newValue)) {
if (!isSleeping) {
notify(_latestValue, "beforeChange");
}
_latestValue = newValue;
if (DEBUG) dependentObservable._latestValue = _latestValue;
if (isSleeping) {
dependentObservable.updateVersion();
} else if (notifyChange) {
notify(_latestValue);
}
}
if (isInitial) {
notify(_latestValue, "awake");
}
} finally {
_isBeingEvaluated = false;
}
if (!_dependenciesCount)
dispose();
}
function dependentObservable() {
if (arguments.length > 0) {
if (typeof writeFunction === "function") {
// Writing a value
writeFunction.apply(evaluatorFunctionTarget, arguments);
} else {
throw new Error("Cannot write a value to a ko.computed unless you specify a 'write' option. If you wish to read the current value, don't pass any parameters.");
}
return this; // Permits chained assignments
} else {
// Reading the value
ko.dependencyDetection.registerDependency(dependentObservable);
if (_needsEvaluation || (isSleeping && haveDependenciesChanged())) {
evaluateImmediate();
}
return _latestValue;
}
}
function peek() {
// Peek won't re-evaluate, except while the computed is sleeping or to get the initial value when "deferEvaluation" is set.
if ((_needsEvaluation && !_dependenciesCount) || (isSleeping && haveDependenciesChanged())) {
evaluateImmediate();
}
return _latestValue;
}
function isActive() {
return _needsEvaluation || _dependenciesCount > 0;
}
function notify(value, event) {
dependentObservable["notifySubscribers"](value, event);
}
// By here, "options" is always non-null
var writeFunction = options["write"],
disposeWhenNodeIsRemoved = options["disposeWhenNodeIsRemoved"] || options.disposeWhenNodeIsRemoved || null,
disposeWhenOption = options["disposeWhen"] || options.disposeWhen,
disposeWhen = disposeWhenOption,
dispose = disposeComputed,
dependencyTracking = {},
_dependenciesCount = 0,
evaluationTimeoutInstance = null;
if (!evaluatorFunctionTarget)
evaluatorFunctionTarget = options["owner"];
ko.subscribable.call(dependentObservable);
ko.utils.setPrototypeOfOrExtend(dependentObservable, ko.dependentObservable['fn']);
dependentObservable.peek = peek;
dependentObservable.getDependenciesCount = function () { return _dependenciesCount; };
dependentObservable.hasWriteFunction = typeof writeFunction === "function";
dependentObservable.dispose = function () { dispose(); };
dependentObservable.isActive = isActive;
// Replace the limit function with one that delays evaluation as well.
var originalLimit = dependentObservable.limit;
dependentObservable.limit = function(limitFunction) {
originalLimit.call(dependentObservable, limitFunction);
dependentObservable._evalRateLimited = function() {
dependentObservable._rateLimitedBeforeChange(_latestValue);
_needsEvaluation = true; // Mark as dirty
// Pass the observable to the rate-limit code, which will access it when
// it's time to do the notification.
dependentObservable._rateLimitedChange(dependentObservable);
}
};
if (options['pure']) {
pure = true;
isSleeping = true; // Starts off sleeping; will awake on the first subscription
dependentObservable.beforeSubscriptionAdd = function (event) {
// If asleep, wake up the computed by subscribing to any dependencies.
if (!_isDisposed && isSleeping && event == 'change') {
isSleeping = false;
if (_needsEvaluation || haveDependenciesChanged()) {
dependencyTracking = null;
_dependenciesCount = 0;
_needsEvaluation = true;
evaluateImmediate();
} else {
// First put the dependencies in order
var dependeciesOrder = [];
ko.utils.objectForEach(dependencyTracking, function (id, dependency) {
dependeciesOrder[dependency._order] = id;
});
// Next, subscribe to each one
ko.utils.arrayForEach(dependeciesOrder, function(id, order) {
var dependency = dependencyTracking[id],
subscription = dependency._target.subscribe(evaluatePossiblyAsync);
subscription._order = order;
subscription._version = dependency._version;
dependencyTracking[id] = subscription;
});
}
if (!_isDisposed) { // test since evaluating could trigger disposal
notify(_latestValue, "awake");
}
}
};
dependentObservable.afterSubscriptionRemove = function (event) {
if (!_isDisposed && event == 'change' && !dependentObservable.hasSubscriptionsForEvent('change')) {
ko.utils.objectForEach(dependencyTracking, function (id, dependency) {
if (dependency.dispose) {
dependencyTracking[id] = {
_target: dependency._target,
_order: dependency._order,
_version: dependency._version
};
dependency.dispose();
}
});
isSleeping = true;
notify(undefined, "asleep");
}
};
// Because a pure computed is not automatically updated while it is sleeping, we can't
// simply return the version number. Instead, we check if any of the dependencies have
// changed and conditionally re-evaluate the computed observable.
dependentObservable._originalGetVersion = dependentObservable.getVersion;
dependentObservable.getVersion = function () {
if (isSleeping && (_needsEvaluation || haveDependenciesChanged())) {
evaluateImmediate();
}
return dependentObservable._originalGetVersion();
};
} else if (options['deferEvaluation']) {
// This will force a computed with deferEvaluation to evaluate when the first subscriptions is registered.
dependentObservable.beforeSubscriptionAdd = function (event) {
if (event == 'change' || event == 'beforeChange') {
peek();
}
}
}
ko.exportProperty(dependentObservable, 'peek', dependentObservable.peek);
ko.exportProperty(dependentObservable, 'dispose', dependentObservable.dispose);
ko.exportProperty(dependentObservable, 'isActive', dependentObservable.isActive);
ko.exportProperty(dependentObservable, 'getDependenciesCount', dependentObservable.getDependenciesCount);
// Add a "disposeWhen" callback that, on each evaluation, disposes if the node was removed without using ko.removeNode.
if (disposeWhenNodeIsRemoved) {
// Since this computed is associated with a DOM node, and we don't want to dispose the computed
// until the DOM node is *removed* from the document (as opposed to never having been in the document),
// we'll prevent disposal until "disposeWhen" first returns false.
_suppressDisposalUntilDisposeWhenReturnsFalse = true;
// Only watch for the node's disposal if the value really is a node. It might not be,
// e.g., { disposeWhenNodeIsRemoved: true } can be used to opt into the "only dispose
// after first false result" behaviour even if there's no specific node to watch. This
// technique is intended for KO's internal use only and shouldn't be documented or used
// by application code, as it's likely to change in a future version of KO.
if (disposeWhenNodeIsRemoved.nodeType) {
disposeWhen = function () {
return !ko.utils.domNodeIsAttachedToDocument(disposeWhenNodeIsRemoved) || (disposeWhenOption && disposeWhenOption());
};
}
}
// Evaluate, unless sleeping or deferEvaluation is true
if (!isSleeping && !options['deferEvaluation'])
evaluateImmediate();
// Attach a DOM node disposal callback so that the computed will be proactively disposed as soon as the node is
// removed using ko.removeNode. But skip if isActive is false (there will never be any dependencies to dispose).
if (disposeWhenNodeIsRemoved && isActive() && disposeWhenNodeIsRemoved.nodeType) {
dispose = function() {
ko.utils.domNodeDisposal.removeDisposeCallback(disposeWhenNodeIsRemoved, dispose);
disposeComputed();
};
ko.utils.domNodeDisposal.addDisposeCallback(disposeWhenNodeIsRemoved, dispose);
}
return dependentObservable;
};
ko.isComputed = function(instance) {
return ko.hasPrototype(instance, ko.dependentObservable);
};
var protoProp = ko.observable.protoProperty; // == "__ko_proto__"
ko.dependentObservable[protoProp] = ko.observable;
ko.dependentObservable['fn'] = {
"equalityComparer": valuesArePrimitiveAndEqual
};
ko.dependentObservable['fn'][protoProp] = ko.dependentObservable;
// Note that for browsers that don't support proto assignment, the
// inheritance chain is created manually in the ko.dependentObservable constructor
if (ko.utils.canSetPrototype) {
ko.utils.setPrototypeOf(ko.dependentObservable['fn'], ko.subscribable['fn']);
}
ko.exportSymbol('dependentObservable', ko.dependentObservable);
ko.exportSymbol('computed', ko.dependentObservable); // Make "ko.computed" an alias for "ko.dependentObservable"
ko.exportSymbol('isComputed', ko.isComputed);
ko.pureComputed = function (evaluatorFunctionOrOptions, evaluatorFunctionTarget) {
if (typeof evaluatorFunctionOrOptions === 'function') {
return ko.computed(evaluatorFunctionOrOptions, evaluatorFunctionTarget, {'pure':true});
} else {
evaluatorFunctionOrOptions = ko.utils.extend({}, evaluatorFunctionOrOptions); // make a copy of the parameter object
evaluatorFunctionOrOptions['pure'] = true;
return ko.computed(evaluatorFunctionOrOptions, evaluatorFunctionTarget);
}
}
ko.exportSymbol('pureComputed', ko.pureComputed);
(function() {
var maxNestedObservableDepth = 10; // Escape the (unlikely) pathalogical case where an observable's current value is itself (or similar reference cycle)
ko.toJS = function(rootObject) {
if (arguments.length == 0)
throw new Error("When calling ko.toJS, pass the object you want to convert.");
// We just unwrap everything at every level in the object graph
return mapJsObjectGraph(rootObject, function(valueToMap) {
// Loop because an observable's value might in turn be another observable wrapper
for (var i = 0; ko.isObservable(valueToMap) && (i < maxNestedObservableDepth); i++)
valueToMap = valueToMap();
return valueToMap;
});
};
ko.toJSON = function(rootObject, replacer, space) { // replacer and space are optional
var plainJavaScriptObject = ko.toJS(rootObject);
return ko.utils.stringifyJson(plainJavaScriptObject, replacer, space);
};
function mapJsObjectGraph(rootObject, mapInputCallback, visitedObjects) {
visitedObjects = visitedObjects || new objectLookup();
rootObject = mapInputCallback(rootObject);
var canHaveProperties = (typeof rootObject == "object") && (rootObject !== null) && (rootObject !== undefined) && (!(rootObject instanceof Date)) && (!(rootObject instanceof String)) && (!(rootObject instanceof Number)) && (!(rootObject instanceof Boolean));
if (!canHaveProperties)
return rootObject;
var outputProperties = rootObject instanceof Array ? [] : {};
visitedObjects.save(rootObject, outputProperties);
visitPropertiesOrArrayEntries(rootObject, function(indexer) {
var propertyValue = mapInputCallback(rootObject[indexer]);
switch (typeof propertyValue) {
case "boolean":
case "number":
case "string":
case "function":
outputProperties[indexer] = propertyValue;
break;
case "object":
case "undefined":
var previouslyMappedValue = visitedObjects.get(propertyValue);
outputProperties[indexer] = (previouslyMappedValue !== undefined)
? previouslyMappedValue
: mapJsObjectGraph(propertyValue, mapInputCallback, visitedObjects);
break;
}
});
return outputProperties;
}
function visitPropertiesOrArrayEntries(rootObject, visitorCallback) {
if (rootObject instanceof Array) {
for (var i = 0; i < rootObject.length; i++)
visitorCallback(i);
// For arrays, also respect toJSON property for custom mappings (fixes #278)
if (typeof rootObject['toJSON'] == 'function')
visitorCallback('toJSON');
} else {
for (var propertyName in rootObject) {
visitorCallback(propertyName);
}
}
};
function objectLookup() {
this.keys = [];
this.values = [];
};
objectLookup.prototype = {
constructor: objectLookup,
save: function(key, value) {
var existingIndex = ko.utils.arrayIndexOf(this.keys, key);
if (existingIndex >= 0)
this.values[existingIndex] = value;
else {
this.keys.push(key);
this.values.push(value);
}
},
get: function(key) {
var existingIndex = ko.utils.arrayIndexOf(this.keys, key);
return (existingIndex >= 0) ? this.values[existingIndex] : undefined;
}
};
})();
ko.exportSymbol('toJS', ko.toJS);
ko.exportSymbol('toJSON', ko.toJSON);
(function () {
var hasDomDataExpandoProperty = '__ko__hasDomDataOptionValue__';
// Normally, SELECT elements and their OPTIONs can only take value of type 'string' (because the values
// are stored on DOM attributes). ko.selectExtensions provides a way for SELECTs/OPTIONs to have values
// that are arbitrary objects. This is very convenient when implementing things like cascading dropdowns.
ko.selectExtensions = {
readValue : function(element) {
switch (ko.utils.tagNameLower(element)) {
case 'option':
if (element[hasDomDataExpandoProperty] === true)
return ko.utils.domData.get(element, ko.bindingHandlers.options.optionValueDomDataKey);
return ko.utils.ieVersion <= 7
? (element.getAttributeNode('value') && element.getAttributeNode('value').specified ? element.value : element.text)
: element.value;
case 'select':
return element.selectedIndex >= 0 ? ko.selectExtensions.readValue(element.options[element.selectedIndex]) : undefined;
default:
return element.value;
}
},
writeValue: function(element, value, allowUnset) {
switch (ko.utils.tagNameLower(element)) {
case 'option':
switch(typeof value) {
case "string":
ko.utils.domData.set(element, ko.bindingHandlers.options.optionValueDomDataKey, undefined);
if (hasDomDataExpandoProperty in element) { // IE <= 8 throws errors if you delete non-existent properties from a DOM node
delete element[hasDomDataExpandoProperty];
}
element.value = value;
break;
default:
// Store arbitrary object using DomData
ko.utils.domData.set(element, ko.bindingHandlers.options.optionValueDomDataKey, value);
element[hasDomDataExpandoProperty] = true;
// Special treatment of numbers is just for backward compatibility. KO 1.2.1 wrote numerical values to element.value.
element.value = typeof value === "number" ? value : "";
break;
}
break;
case 'select':
if (value === "" || value === null) // A blank string or null value will select the caption
value = undefined;
var selection = -1;
for (var i = 0, n = element.options.length, optionValue; i < n; ++i) {
optionValue = ko.selectExtensions.readValue(element.options[i]);
// Include special check to handle selecting a caption with a blank string value
if (optionValue == value || (optionValue == "" && value === undefined)) {
selection = i;
break;
}
}
if (allowUnset || selection >= 0 || (value === undefined && element.size > 1)) {
element.selectedIndex = selection;
}
break;
default:
if ((value === null) || (value === undefined))
value = "";
element.value = value;
break;
}
}
};
})();
ko.exportSymbol('selectExtensions', ko.selectExtensions);
ko.exportSymbol('selectExtensions.readValue', ko.selectExtensions.readValue);
ko.exportSymbol('selectExtensions.writeValue', ko.selectExtensions.writeValue);
ko.expressionRewriting = (function () {
var javaScriptReservedWords = ["true", "false", "null", "undefined"];
// Matches something that can be assigned to--either an isolated identifier or something ending with a property accessor
// This is designed to be simple and avoid false negatives, but could produce false positives (e.g., a+b.c).
// This also will not properly handle nested brackets (e.g., obj1[obj2['prop']]; see #911).
var javaScriptAssignmentTarget = /^(?:[$_a-z][$\w]*|(.+)(\.\s*[$_a-z][$\w]*|\[.+\]))$/i;
function getWriteableValue(expression) {
if (ko.utils.arrayIndexOf(javaScriptReservedWords, expression) >= 0)
return false;
var match = expression.match(javaScriptAssignmentTarget);
return match === null ? false : match[1] ? ('Object(' + match[1] + ')' + match[2]) : expression;
}
// The following regular expressions will be used to split an object-literal string into tokens
// These two match strings, either with double quotes or single quotes
var stringDouble = '"(?:[^"\\\\]|\\\\.)*"',
stringSingle = "'(?:[^'\\\\]|\\\\.)*'",
// Matches a regular expression (text enclosed by slashes), but will also match sets of divisions
// as a regular expression (this is handled by the parsing loop below).
stringRegexp = '/(?:[^/\\\\]|\\\\.)*/\w*',
// These characters have special meaning to the parser and must not appear in the middle of a
// token, except as part of a string.
specials = ',"\'{}()/:[\\]',
// Match text (at least two characters) that does not contain any of the above special characters,
// although some of the special characters are allowed to start it (all but the colon and comma).
// The text can contain spaces, but leading or trailing spaces are skipped.
everyThingElse = '[^\\s:,/][^' + specials + ']*[^\\s' + specials + ']',
// Match any non-space character not matched already. This will match colons and commas, since they're
// not matched by "everyThingElse", but will also match any other single character that wasn't already
// matched (for example: in "a: 1, b: 2", each of the non-space characters will be matched by oneNotSpace).
oneNotSpace = '[^\\s]',
// Create the actual regular expression by or-ing the above strings. The order is important.
bindingToken = RegExp(stringDouble + '|' + stringSingle + '|' + stringRegexp + '|' + everyThingElse + '|' + oneNotSpace, 'g'),
// Match end of previous token to determine whether a slash is a division or regex.
divisionLookBehind = /[\])"'A-Za-z0-9_$]+$/,
keywordRegexLookBehind = {'in':1,'return':1,'typeof':1};
function parseObjectLiteral(objectLiteralString) {
// Trim leading and trailing spaces from the string
var str = ko.utils.stringTrim(objectLiteralString);
// Trim braces '{' surrounding the whole object literal
if (str.charCodeAt(0) === 123) str = str.slice(1, -1);
// Split into tokens
var result = [], toks = str.match(bindingToken), key, values = [], depth = 0;
if (toks) {
// Append a comma so that we don't need a separate code block to deal with the last item
toks.push(',');
for (var i = 0, tok; tok = toks[i]; ++i) {
var c = tok.charCodeAt(0);
// A comma signals the end of a key/value pair if depth is zero
if (c === 44) { // ","
if (depth <= 0) {
result.push((key && values.length) ? {key: key, value: values.join('')} : {'unknown': key || values.join('')});
key = depth = 0;
values = [];
continue;
}
// Simply skip the colon that separates the name and value
} else if (c === 58) { // ":"
if (!depth && !key && values.length === 1) {
key = values.pop();
continue;
}
// A set of slashes is initially matched as a regular expression, but could be division
} else if (c === 47 && i && tok.length > 1) { // "/"
// Look at the end of the previous token to determine if the slash is actually division
var match = toks[i-1].match(divisionLookBehind);
if (match && !keywordRegexLookBehind[match[0]]) {
// The slash is actually a division punctuator; re-parse the remainder of the string (not including the slash)
str = str.substr(str.indexOf(tok) + 1);
toks = str.match(bindingToken);
toks.push(',');
i = -1;
// Continue with just the slash
tok = '/';
}
// Increment depth for parentheses, braces, and brackets so that interior commas are ignored
} else if (c === 40 || c === 123 || c === 91) { // '(', '{', '['
++depth;
} else if (c === 41 || c === 125 || c === 93) { // ')', '}', ']'
--depth;
// The key will be the first token; if it's a string, trim the quotes
} else if (!key && !values.length && (c === 34 || c === 39)) { // '"', "'"
tok = tok.slice(1, -1);
}
values.push(tok);
}
}
return result;
}
// Two-way bindings include a write function that allow the handler to update the value even if it's not an observable.
var twoWayBindings = {};
function preProcessBindings(bindingsStringOrKeyValueArray, bindingOptions) {
bindingOptions = bindingOptions || {};
function processKeyValue(key, val) {
var writableVal;
function callPreprocessHook(obj) {
return (obj && obj['preprocess']) ? (val = obj['preprocess'](val, key, processKeyValue)) : true;
}
if (!bindingParams) {
if (!callPreprocessHook(ko['getBindingHandler'](key)))
return;
if (twoWayBindings[key] && (writableVal = getWriteableValue(val))) {
// For two-way bindings, provide a write method in case the value
// isn't a writable observable.
propertyAccessorResultStrings.push("'" + key + "':function(_z){" + writableVal + "=_z}");
}
}
// Values are wrapped in a function so that each value can be accessed independently
if (makeValueAccessors) {
val = 'function(){return ' + val + ' }';
}
resultStrings.push("'" + key + "':" + val);
}
var resultStrings = [],
propertyAccessorResultStrings = [],
makeValueAccessors = bindingOptions['valueAccessors'],
bindingParams = bindingOptions['bindingParams'],
keyValueArray = typeof bindingsStringOrKeyValueArray === "string" ?
parseObjectLiteral(bindingsStringOrKeyValueArray) : bindingsStringOrKeyValueArray;
ko.utils.arrayForEach(keyValueArray, function(keyValue) {
processKeyValue(keyValue.key || keyValue['unknown'], keyValue.value);
});
if (propertyAccessorResultStrings.length)
processKeyValue('_ko_property_writers', "{" + propertyAccessorResultStrings.join(",") + " }");
return resultStrings.join(",");
}
return {
bindingRewriteValidators: [],
twoWayBindings: twoWayBindings,
parseObjectLiteral: parseObjectLiteral,
preProcessBindings: preProcessBindings,
keyValueArrayContainsKey: function(keyValueArray, key) {
for (var i = 0; i < keyValueArray.length; i++)
if (keyValueArray[i]['key'] == key)
return true;
return false;
},
// Internal, private KO utility for updating model properties from within bindings
// property: If the property being updated is (or might be) an observable, pass it here
// If it turns out to be a writable observable, it will be written to directly
// allBindings: An object with a get method to retrieve bindings in the current execution context.
// This will be searched for a '_ko_property_writers' property in case you're writing to a non-observable
// key: The key identifying the property to be written. Example: for { hasFocus: myValue }, write to 'myValue' by specifying the key 'hasFocus'
// value: The value to be written
// checkIfDifferent: If true, and if the property being written is a writable observable, the value will only be written if
// it is !== existing value on that writable observable
writeValueToProperty: function(property, allBindings, key, value, checkIfDifferent) {
if (!property || !ko.isObservable(property)) {
var propWriters = allBindings.get('_ko_property_writers');
if (propWriters && propWriters[key])
propWriters[key](value);
} else if (ko.isWriteableObservable(property) && (!checkIfDifferent || property.peek() !== value)) {
property(value);
}
}
};
})();
ko.exportSymbol('expressionRewriting', ko.expressionRewriting);
ko.exportSymbol('expressionRewriting.bindingRewriteValidators', ko.expressionRewriting.bindingRewriteValidators);
ko.exportSymbol('expressionRewriting.parseObjectLiteral', ko.expressionRewriting.parseObjectLiteral);
ko.exportSymbol('expressionRewriting.preProcessBindings', ko.expressionRewriting.preProcessBindings);
// Making bindings explicitly declare themselves as "two way" isn't ideal in the long term (it would be better if
// all bindings could use an official 'property writer' API without needing to declare that they might). However,
// since this is not, and has never been, a public API (_ko_property_writers was never documented), it's acceptable
// as an internal implementation detail in the short term.
// For those developers who rely on _ko_property_writers in their custom bindings, we expose _twoWayBindings as an
// undocumented feature that makes it relatively easy to upgrade to KO 3.0. However, this is still not an official
// public API, and we reserve the right to remove it at any time if we create a real public property writers API.
ko.exportSymbol('expressionRewriting._twoWayBindings', ko.expressionRewriting.twoWayBindings);
// For backward compatibility, define the following aliases. (Previously, these function names were misleading because
// they referred to JSON specifically, even though they actually work with arbitrary JavaScript object literal expressions.)
ko.exportSymbol('jsonExpressionRewriting', ko.expressionRewriting);
ko.exportSymbol('jsonExpressionRewriting.insertPropertyAccessorsIntoJson', ko.expressionRewriting.preProcessBindings);
(function() {
// "Virtual elements" is an abstraction on top of the usual DOM API which understands the notion that comment nodes
// may be used to represent hierarchy (in addition to the DOM's natural hierarchy).
// If you call the DOM-manipulating functions on ko.virtualElements, you will be able to read and write the state
// of that virtual hierarchy
//
// The point of all this is to support containerless templates (e.g., <!-- ko foreach:someCollection -->blah<!-- /ko -->)
// without having to scatter special cases all over the binding and templating code.
// IE 9 cannot reliably read the "nodeValue" property of a comment node (see https://github.com/SteveSanderson/knockout/issues/186)
// but it does give them a nonstandard alternative property called "text" that it can read reliably. Other browsers don't have that property.
// So, use node.text where available, and node.nodeValue elsewhere
var commentNodesHaveTextProperty = document && document.createComment("test").text === "<!--test-->";
var startCommentRegex = commentNodesHaveTextProperty ? /^<!--\s*ko(?:\s+([\s\S]+))?\s*-->$/ : /^\s*ko(?:\s+([\s\S]+))?\s*$/;
var endCommentRegex = commentNodesHaveTextProperty ? /^<!--\s*\/ko\s*-->$/ : /^\s*\/ko\s*$/;
var htmlTagsWithOptionallyClosingChildren = { 'ul': true, 'ol': true };
function isStartComment(node) {
return (node.nodeType == 8) && startCommentRegex.test(commentNodesHaveTextProperty ? node.text : node.nodeValue);
}
function isEndComment(node) {
return (node.nodeType == 8) && endCommentRegex.test(commentNodesHaveTextProperty ? node.text : node.nodeValue);
}
function getVirtualChildren(startComment, allowUnbalanced) {
var currentNode = startComment;
var depth = 1;
var children = [];
while (currentNode = currentNode.nextSibling) {
if (isEndComment(currentNode)) {
depth--;
if (depth === 0)
return children;
}
children.push(currentNode);
if (isStartComment(currentNode))
depth++;
}
if (!allowUnbalanced)
throw new Error("Cannot find closing comment tag to match: " + startComment.nodeValue);
return null;
}
function getMatchingEndComment(startComment, allowUnbalanced) {
var allVirtualChildren = getVirtualChildren(startComment, allowUnbalanced);
if (allVirtualChildren) {
if (allVirtualChildren.length > 0)
return allVirtualChildren[allVirtualChildren.length - 1].nextSibling;
return startComment.nextSibling;
} else
return null; // Must have no matching end comment, and allowUnbalanced is true
}
function getUnbalancedChildTags(node) {
// e.g., from <div>OK</div><!-- ko blah --><span>Another</span>, returns: <!-- ko blah --><span>Another</span>
// from <div>OK</div><!-- /ko --><!-- /ko -->, returns: <!-- /ko --><!-- /ko -->
var childNode = node.firstChild, captureRemaining = null;
if (childNode) {
do {
if (captureRemaining) // We already hit an unbalanced node and are now just scooping up all subsequent nodes
captureRemaining.push(childNode);
else if (isStartComment(childNode)) {
var matchingEndComment = getMatchingEndComment(childNode, /* allowUnbalanced: */ true);
if (matchingEndComment) // It's a balanced tag, so skip immediately to the end of this virtual set
childNode = matchingEndComment;
else
captureRemaining = [childNode]; // It's unbalanced, so start capturing from this point
} else if (isEndComment(childNode)) {
captureRemaining = [childNode]; // It's unbalanced (if it wasn't, we'd have skipped over it already), so start capturing
}
} while (childNode = childNode.nextSibling);
}
return captureRemaining;
}
ko.virtualElements = {
allowedBindings: {},
childNodes: function(node) {
return isStartComment(node) ? getVirtualChildren(node) : node.childNodes;
},
emptyNode: function(node) {
if (!isStartComment(node))
ko.utils.emptyDomNode(node);
else {
var virtualChildren = ko.virtualElements.childNodes(node);
for (var i = 0, j = virtualChildren.length; i < j; i++)
ko.removeNode(virtualChildren[i]);
}
},
setDomNodeChildren: function(node, childNodes) {
if (!isStartComment(node))
ko.utils.setDomNodeChildren(node, childNodes);
else {
ko.virtualElements.emptyNode(node);
var endCommentNode = node.nextSibling; // Must be the next sibling, as we just emptied the children
for (var i = 0, j = childNodes.length; i < j; i++)
endCommentNode.parentNode.insertBefore(childNodes[i], endCommentNode);
}
},
prepend: function(containerNode, nodeToPrepend) {
if (!isStartComment(containerNode)) {
if (containerNode.firstChild)
containerNode.insertBefore(nodeToPrepend, containerNode.firstChild);
else
containerNode.appendChild(nodeToPrepend);
} else {
// Start comments must always have a parent and at least one following sibling (the end comment)
containerNode.parentNode.insertBefore(nodeToPrepend, containerNode.nextSibling);
}
},
insertAfter: function(containerNode, nodeToInsert, insertAfterNode) {
if (!insertAfterNode) {
ko.virtualElements.prepend(containerNode, nodeToInsert);
} else if (!isStartComment(containerNode)) {
// Insert after insertion point
if (insertAfterNode.nextSibling)
containerNode.insertBefore(nodeToInsert, insertAfterNode.nextSibling);
else
containerNode.appendChild(nodeToInsert);
} else {
// Children of start comments must always have a parent and at least one following sibling (the end comment)
containerNode.parentNode.insertBefore(nodeToInsert, insertAfterNode.nextSibling);
}
},
firstChild: function(node) {
if (!isStartComment(node))
return node.firstChild;
if (!node.nextSibling || isEndComment(node.nextSibling))
return null;
return node.nextSibling;
},
nextSibling: function(node) {
if (isStartComment(node))
node = getMatchingEndComment(node);
if (node.nextSibling && isEndComment(node.nextSibling))
return null;
return node.nextSibling;
},
hasBindingValue: isStartComment,
virtualNodeBindingValue: function(node) {
var regexMatch = (commentNodesHaveTextProperty ? node.text : node.nodeValue).match(startCommentRegex);
return regexMatch ? regexMatch[1] : null;
},
normaliseVirtualElementDomStructure: function(elementVerified) {
// Workaround for https://github.com/SteveSanderson/knockout/issues/155
// (IE <= 8 or IE 9 quirks mode parses your HTML weirdly, treating closing </li> tags as if they don't exist, thereby moving comment nodes
// that are direct descendants of <ul> into the preceding <li>)
if (!htmlTagsWithOptionallyClosingChildren[ko.utils.tagNameLower(elementVerified)])
return;
// Scan immediate children to see if they contain unbalanced comment tags. If they do, those comment tags
// must be intended to appear *after* that child, so move them there.
var childNode = elementVerified.firstChild;
if (childNode) {
do {
if (childNode.nodeType === 1) {
var unbalancedTags = getUnbalancedChildTags(childNode);
if (unbalancedTags) {
// Fix up the DOM by moving the unbalanced tags to where they most likely were intended to be placed - *after* the child
var nodeToInsertBefore = childNode.nextSibling;
for (var i = 0; i < unbalancedTags.length; i++) {
if (nodeToInsertBefore)
elementVerified.insertBefore(unbalancedTags[i], nodeToInsertBefore);
else
elementVerified.appendChild(unbalancedTags[i]);
}
}
}
} while (childNode = childNode.nextSibling);
}
}
};
})();
ko.exportSymbol('virtualElements', ko.virtualElements);
ko.exportSymbol('virtualElements.allowedBindings', ko.virtualElements.allowedBindings);
ko.exportSymbol('virtualElements.emptyNode', ko.virtualElements.emptyNode);
//ko.exportSymbol('virtualElements.firstChild', ko.virtualElements.firstChild); // firstChild is not minified
ko.exportSymbol('virtualElements.insertAfter', ko.virtualElements.insertAfter);
//ko.exportSymbol('virtualElements.nextSibling', ko.virtualElements.nextSibling); // nextSibling is not minified
ko.exportSymbol('virtualElements.prepend', ko.virtualElements.prepend);
ko.exportSymbol('virtualElements.setDomNodeChildren', ko.virtualElements.setDomNodeChildren);
(function() {
var defaultBindingAttributeName = "data-bind";
ko.bindingProvider = function() {
this.bindingCache = {};
};
ko.utils.extend(ko.bindingProvider.prototype, {
'nodeHasBindings': function(node) {
switch (node.nodeType) {
case 1: // Element
return node.getAttribute(defaultBindingAttributeName) != null
|| ko.components['getComponentNameForNode'](node);
case 8: // Comment node
return ko.virtualElements.hasBindingValue(node);
default: return false;
}
},
'getBindings': function(node, bindingContext) {
var bindingsString = this['getBindingsString'](node, bindingContext),
parsedBindings = bindingsString ? this['parseBindingsString'](bindingsString, bindingContext, node) : null;
return ko.components.addBindingsForCustomElement(parsedBindings, node, bindingContext, /* valueAccessors */ false);
},
'getBindingAccessors': function(node, bindingContext) {
var bindingsString = this['getBindingsString'](node, bindingContext),
parsedBindings = bindingsString ? this['parseBindingsString'](bindingsString, bindingContext, node, { 'valueAccessors': true }) : null;
return ko.components.addBindingsForCustomElement(parsedBindings, node, bindingContext, /* valueAccessors */ true);
},
// The following function is only used internally by this default provider.
// It's not part of the interface definition for a general binding provider.
'getBindingsString': function(node, bindingContext) {
switch (node.nodeType) {
case 1: return node.getAttribute(defaultBindingAttributeName); // Element
case 8: return ko.virtualElements.virtualNodeBindingValue(node); // Comment node
default: return null;
}
},
// The following function is only used internally by this default provider.
// It's not part of the interface definition for a general binding provider.
'parseBindingsString': function(bindingsString, bindingContext, node, options) {
try {
var bindingFunction = createBindingsStringEvaluatorViaCache(bindingsString, this.bindingCache, options);
return bindingFunction(bindingContext, node);
} catch (ex) {
ex.message = "Unable to parse bindings.\nBindings value: " + bindingsString + "\nMessage: " + ex.message;
throw ex;
}
}
});
ko.bindingProvider['instance'] = new ko.bindingProvider();
function createBindingsStringEvaluatorViaCache(bindingsString, cache, options) {
var cacheKey = bindingsString + (options && options['valueAccessors'] || '');
return cache[cacheKey]
|| (cache[cacheKey] = createBindingsStringEvaluator(bindingsString, options));
}
function createBindingsStringEvaluator(bindingsString, options) {
// Build the source for a function that evaluates "expression"
// For each scope variable, add an extra level of "with" nesting
// Example result: with(sc1) { with(sc0) { return (expression) } }
var rewrittenBindings = ko.expressionRewriting.preProcessBindings(bindingsString, options),
functionBody = "with($context){with($data||{}){return{" + rewrittenBindings + "}}}";
return new Function("$context", "$element", functionBody);
}
})();
ko.exportSymbol('bindingProvider', ko.bindingProvider);
(function () {
ko.bindingHandlers = {};
// The following element types will not be recursed into during binding. In the future, we
// may consider adding <template> to this list, because such elements' contents are always
// intended to be bound in a different context from where they appear in the document.
var bindingDoesNotRecurseIntoElementTypes = {
// Don't want bindings that operate on text nodes to mutate <script> and <textarea> contents,
// because it's unexpected and a potential XSS issue
'script': true,
'textarea': true
};
// Use an overridable method for retrieving binding handlers so that a plugins may support dynamically created handlers
ko['getBindingHandler'] = function(bindingKey) {
return ko.bindingHandlers[bindingKey];
};
// The ko.bindingContext constructor is only called directly to create the root context. For child
// contexts, use bindingContext.createChildContext or bindingContext.extend.
ko.bindingContext = function(dataItemOrAccessor, parentContext, dataItemAlias, extendCallback) {
// The binding context object includes static properties for the current, parent, and root view models.
// If a view model is actually stored in an observable, the corresponding binding context object, and
// any child contexts, must be updated when the view model is changed.
function updateContext() {
// Most of the time, the context will directly get a view model object, but if a function is given,
// we call the function to retrieve the view model. If the function accesses any obsevables or returns
// an observable, the dependency is tracked, and those observables can later cause the binding
// context to be updated.
var dataItemOrObservable = isFunc ? dataItemOrAccessor() : dataItemOrAccessor,
dataItem = ko.utils.unwrapObservable(dataItemOrObservable);
if (parentContext) {
// When a "parent" context is given, register a dependency on the parent context. Thus whenever the
// parent context is updated, this context will also be updated.
if (parentContext._subscribable)
parentContext._subscribable();
// Copy $root and any custom properties from the parent context
ko.utils.extend(self, parentContext);
// Because the above copy overwrites our own properties, we need to reset them.
// During the first execution, "subscribable" isn't set, so don't bother doing the update then.
if (subscribable) {
self._subscribable = subscribable;
}
} else {
self['$parents'] = [];
self['$root'] = dataItem;
// Export 'ko' in the binding context so it will be available in bindings and templates
// even if 'ko' isn't exported as a global, such as when using an AMD loader.
// See https://github.com/SteveSanderson/knockout/issues/490
self['ko'] = ko;
}
self['$rawData'] = dataItemOrObservable;
self['$data'] = dataItem;
if (dataItemAlias)
self[dataItemAlias] = dataItem;
// The extendCallback function is provided when creating a child context or extending a context.
// It handles the specific actions needed to finish setting up the binding context. Actions in this
// function could also add dependencies to this binding context.
if (extendCallback)
extendCallback(self, parentContext, dataItem);
return self['$data'];
}
function disposeWhen() {
return nodes && !ko.utils.anyDomNodeIsAttachedToDocument(nodes);
}
var self = this,
isFunc = typeof(dataItemOrAccessor) == "function" && !ko.isObservable(dataItemOrAccessor),
nodes,
subscribable = ko.dependentObservable(updateContext, null, { disposeWhen: disposeWhen, disposeWhenNodeIsRemoved: true });
// At this point, the binding context has been initialized, and the "subscribable" computed observable is
// subscribed to any observables that were accessed in the process. If there is nothing to track, the
// computed will be inactive, and we can safely throw it away. If it's active, the computed is stored in
// the context object.
if (subscribable.isActive()) {
self._subscribable = subscribable;
// Always notify because even if the model ($data) hasn't changed, other context properties might have changed
subscribable['equalityComparer'] = null;
// We need to be able to dispose of this computed observable when it's no longer needed. This would be
// easy if we had a single node to watch, but binding contexts can be used by many different nodes, and
// we cannot assume that those nodes have any relation to each other. So instead we track any node that
// the context is attached to, and dispose the computed when all of those nodes have been cleaned.
// Add properties to *subscribable* instead of *self* because any properties added to *self* may be overwritten on updates
nodes = [];
subscribable._addNode = function(node) {
nodes.push(node);
ko.utils.domNodeDisposal.addDisposeCallback(node, function(node) {
ko.utils.arrayRemoveItem(nodes, node);
if (!nodes.length) {
subscribable.dispose();
self._subscribable = subscribable = undefined;
}
});
};
}
}
// Extend the binding context hierarchy with a new view model object. If the parent context is watching
// any obsevables, the new child context will automatically get a dependency on the parent context.
// But this does not mean that the $data value of the child context will also get updated. If the child
// view model also depends on the parent view model, you must provide a function that returns the correct
// view model on each update.
ko.bindingContext.prototype['createChildContext'] = function (dataItemOrAccessor, dataItemAlias, extendCallback) {
return new ko.bindingContext(dataItemOrAccessor, this, dataItemAlias, function(self, parentContext) {
// Extend the context hierarchy by setting the appropriate pointers
self['$parentContext'] = parentContext;
self['$parent'] = parentContext['$data'];
self['$parents'] = (parentContext['$parents'] || []).slice(0);
self['$parents'].unshift(self['$parent']);
if (extendCallback)
extendCallback(self);
});
};
// Extend the binding context with new custom properties. This doesn't change the context hierarchy.
// Similarly to "child" contexts, provide a function here to make sure that the correct values are set
// when an observable view model is updated.
ko.bindingContext.prototype['extend'] = function(properties) {
// If the parent context references an observable view model, "_subscribable" will always be the
// latest view model object. If not, "_subscribable" isn't set, and we can use the static "$data" value.
return new ko.bindingContext(this._subscribable || this['$data'], this, null, function(self, parentContext) {
// This "child" context doesn't directly track a parent observable view model,
// so we need to manually set the $rawData value to match the parent.
self['$rawData'] = parentContext['$rawData'];
ko.utils.extend(self, typeof(properties) == "function" ? properties() : properties);
});
};
// Returns the valueAccesor function for a binding value
function makeValueAccessor(value) {
return function() {
return value;
};
}
// Returns the value of a valueAccessor function
function evaluateValueAccessor(valueAccessor) {
return valueAccessor();
}
// Given a function that returns bindings, create and return a new object that contains
// binding value-accessors functions. Each accessor function calls the original function
// so that it always gets the latest value and all dependencies are captured. This is used
// by ko.applyBindingsToNode and getBindingsAndMakeAccessors.
function makeAccessorsFromFunction(callback) {
return ko.utils.objectMap(ko.dependencyDetection.ignore(callback), function(value, key) {
return function() {
return callback()[key];
};
});
}
// Given a bindings function or object, create and return a new object that contains
// binding value-accessors functions. This is used by ko.applyBindingsToNode.
function makeBindingAccessors(bindings, context, node) {
if (typeof bindings === 'function') {
return makeAccessorsFromFunction(bindings.bind(null, context, node));
} else {
return ko.utils.objectMap(bindings, makeValueAccessor);
}
}
// This function is used if the binding provider doesn't include a getBindingAccessors function.
// It must be called with 'this' set to the provider instance.
function getBindingsAndMakeAccessors(node, context) {
return makeAccessorsFromFunction(this['getBindings'].bind(this, node, context));
}
function validateThatBindingIsAllowedForVirtualElements(bindingName) {
var validator = ko.virtualElements.allowedBindings[bindingName];
if (!validator)
throw new Error("The binding '" + bindingName + "' cannot be used with virtual elements")
}
function applyBindingsToDescendantsInternal (bindingContext, elementOrVirtualElement, bindingContextsMayDifferFromDomParentElement) {
var currentChild,
nextInQueue = ko.virtualElements.firstChild(elementOrVirtualElement),
provider = ko.bindingProvider['instance'],
preprocessNode = provider['preprocessNode'];
// Preprocessing allows a binding provider to mutate a node before bindings are applied to it. For example it's
// possible to insert new siblings after it, and/or replace the node with a different one. This can be used to
// implement custom binding syntaxes, such as {{ value }} for string interpolation, or custom element types that
// trigger insertion of <template> contents at that point in the document.
if (preprocessNode) {
while (currentChild = nextInQueue) {
nextInQueue = ko.virtualElements.nextSibling(currentChild);
preprocessNode.call(provider, currentChild);
}
// Reset nextInQueue for the next loop
nextInQueue = ko.virtualElements.firstChild(elementOrVirtualElement);
}
while (currentChild = nextInQueue) {
// Keep a record of the next child *before* applying bindings, in case the binding removes the current child from its position
nextInQueue = ko.virtualElements.nextSibling(currentChild);
applyBindingsToNodeAndDescendantsInternal(bindingContext, currentChild, bindingContextsMayDifferFromDomParentElement);
}
}
function applyBindingsToNodeAndDescendantsInternal (bindingContext, nodeVerified, bindingContextMayDifferFromDomParentElement) {
var shouldBindDescendants = true;
// Perf optimisation: Apply bindings only if...
// (1) We need to store the binding context on this node (because it may differ from the DOM parent node's binding context)
// Note that we can't store binding contexts on non-elements (e.g., text nodes), as IE doesn't allow expando properties for those
// (2) It might have bindings (e.g., it has a data-bind attribute, or it's a marker for a containerless template)
var isElement = (nodeVerified.nodeType === 1);
if (isElement) // Workaround IE <= 8 HTML parsing weirdness
ko.virtualElements.normaliseVirtualElementDomStructure(nodeVerified);
var shouldApplyBindings = (isElement && bindingContextMayDifferFromDomParentElement) // Case (1)
|| ko.bindingProvider['instance']['nodeHasBindings'](nodeVerified); // Case (2)
if (shouldApplyBindings)
shouldBindDescendants = applyBindingsToNodeInternal(nodeVerified, null, bindingContext, bindingContextMayDifferFromDomParentElement)['shouldBindDescendants'];
if (shouldBindDescendants && !bindingDoesNotRecurseIntoElementTypes[ko.utils.tagNameLower(nodeVerified)]) {
// We're recursing automatically into (real or virtual) child nodes without changing binding contexts. So,
// * For children of a *real* element, the binding context is certainly the same as on their DOM .parentNode,
// hence bindingContextsMayDifferFromDomParentElement is false
// * For children of a *virtual* element, we can't be sure. Evaluating .parentNode on those children may
// skip over any number of intermediate virtual elements, any of which might define a custom binding context,
// hence bindingContextsMayDifferFromDomParentElement is true
applyBindingsToDescendantsInternal(bindingContext, nodeVerified, /* bindingContextsMayDifferFromDomParentElement: */ !isElement);
}
}
var boundElementDomDataKey = ko.utils.domData.nextKey();
function topologicalSortBindings(bindings) {
// Depth-first sort
var result = [], // The list of key/handler pairs that we will return
bindingsConsidered = {}, // A temporary record of which bindings are already in 'result'
cyclicDependencyStack = []; // Keeps track of a depth-search so that, if there's a cycle, we know which bindings caused it
ko.utils.objectForEach(bindings, function pushBinding(bindingKey) {
if (!bindingsConsidered[bindingKey]) {
var binding = ko['getBindingHandler'](bindingKey);
if (binding) {
// First add dependencies (if any) of the current binding
if (binding['after']) {
cyclicDependencyStack.push(bindingKey);
ko.utils.arrayForEach(binding['after'], function(bindingDependencyKey) {
if (bindings[bindingDependencyKey]) {
if (ko.utils.arrayIndexOf(cyclicDependencyStack, bindingDependencyKey) !== -1) {
throw Error("Cannot combine the following bindings, because they have a cyclic dependency: " + cyclicDependencyStack.join(", "));
} else {
pushBinding(bindingDependencyKey);
}
}
});
cyclicDependencyStack.length--;
}
// Next add the current binding
result.push({ key: bindingKey, handler: binding });
}
bindingsConsidered[bindingKey] = true;
}
});
return result;
}
function applyBindingsToNodeInternal(node, sourceBindings, bindingContext, bindingContextMayDifferFromDomParentElement) {
// Prevent multiple applyBindings calls for the same node, except when a binding value is specified
var alreadyBound = ko.utils.domData.get(node, boundElementDomDataKey);
if (!sourceBindings) {
if (alreadyBound) {
throw Error("You cannot apply bindings multiple times to the same element.");
}
ko.utils.domData.set(node, boundElementDomDataKey, true);
}
// Optimization: Don't store the binding context on this node if it's definitely the same as on node.parentNode, because
// we can easily recover it just by scanning up the node's ancestors in the DOM
// (note: here, parent node means "real DOM parent" not "virtual parent", as there's no O(1) way to find the virtual parent)
if (!alreadyBound && bindingContextMayDifferFromDomParentElement)
ko.storedBindingContextForNode(node, bindingContext);
// Use bindings if given, otherwise fall back on asking the bindings provider to give us some bindings
var bindings;
if (sourceBindings && typeof sourceBindings !== 'function') {
bindings = sourceBindings;
} else {
var provider = ko.bindingProvider['instance'],
getBindings = provider['getBindingAccessors'] || getBindingsAndMakeAccessors;
// Get the binding from the provider within a computed observable so that we can update the bindings whenever
// the binding context is updated or if the binding provider accesses observables.
var bindingsUpdater = ko.dependentObservable(
function() {
bindings = sourceBindings ? sourceBindings(bindingContext, node) : getBindings.call(provider, node, bindingContext);
// Register a dependency on the binding context to support obsevable view models.
if (bindings && bindingContext._subscribable)
bindingContext._subscribable();
return bindings;
},
null, { disposeWhenNodeIsRemoved: node }
);
if (!bindings || !bindingsUpdater.isActive())
bindingsUpdater = null;
}
var bindingHandlerThatControlsDescendantBindings;
if (bindings) {
// Return the value accessor for a given binding. When bindings are static (won't be updated because of a binding
// context update), just return the value accessor from the binding. Otherwise, return a function that always gets
// the latest binding value and registers a dependency on the binding updater.
var getValueAccessor = bindingsUpdater
? function(bindingKey) {
return function() {
return evaluateValueAccessor(bindingsUpdater()[bindingKey]);
};
} : function(bindingKey) {
return bindings[bindingKey];
};
// Use of allBindings as a function is maintained for backwards compatibility, but its use is deprecated
function allBindings() {
return ko.utils.objectMap(bindingsUpdater ? bindingsUpdater() : bindings, evaluateValueAccessor);
}
// The following is the 3.x allBindings API
allBindings['get'] = function(key) {
return bindings[key] && evaluateValueAccessor(getValueAccessor(key));
};
allBindings['has'] = function(key) {
return key in bindings;
};
// First put the bindings into the right order
var orderedBindings = topologicalSortBindings(bindings);
// Go through the sorted bindings, calling init and update for each
ko.utils.arrayForEach(orderedBindings, function(bindingKeyAndHandler) {
// Note that topologicalSortBindings has already filtered out any nonexistent binding handlers,
// so bindingKeyAndHandler.handler will always be nonnull.
var handlerInitFn = bindingKeyAndHandler.handler["init"],
handlerUpdateFn = bindingKeyAndHandler.handler["update"],
bindingKey = bindingKeyAndHandler.key;
if (node.nodeType === 8) {
validateThatBindingIsAllowedForVirtualElements(bindingKey);
}
try {
// Run init, ignoring any dependencies
if (typeof handlerInitFn == "function") {
ko.dependencyDetection.ignore(function() {
var initResult = handlerInitFn(node, getValueAccessor(bindingKey), allBindings, bindingContext['$data'], bindingContext);
// If this binding handler claims to control descendant bindings, make a note of this
if (initResult && initResult['controlsDescendantBindings']) {
if (bindingHandlerThatControlsDescendantBindings !== undefined)
throw new Error("Multiple bindings (" + bindingHandlerThatControlsDescendantBindings + " and " + bindingKey + ") are trying to control descendant bindings of the same element. You cannot use these bindings together on the same element.");
bindingHandlerThatControlsDescendantBindings = bindingKey;
}
});
}
// Run update in its own computed wrapper
if (typeof handlerUpdateFn == "function") {
ko.dependentObservable(
function() {
handlerUpdateFn(node, getValueAccessor(bindingKey), allBindings, bindingContext['$data'], bindingContext);
},
null,
{ disposeWhenNodeIsRemoved: node }
);
}
} catch (ex) {
ex.message = "Unable to process binding \"" + bindingKey + ": " + bindings[bindingKey] + "\"\nMessage: " + ex.message;
throw ex;
}
});
}
return {
'shouldBindDescendants': bindingHandlerThatControlsDescendantBindings === undefined
};
};
var storedBindingContextDomDataKey = ko.utils.domData.nextKey();
ko.storedBindingContextForNode = function (node, bindingContext) {
if (arguments.length == 2) {
ko.utils.domData.set(node, storedBindingContextDomDataKey, bindingContext);
if (bindingContext._subscribable)
bindingContext._subscribable._addNode(node);
} else {
return ko.utils.domData.get(node, storedBindingContextDomDataKey);
}
}
function getBindingContext(viewModelOrBindingContext) {
return viewModelOrBindingContext && (viewModelOrBindingContext instanceof ko.bindingContext)
? viewModelOrBindingContext
: new ko.bindingContext(viewModelOrBindingContext);
}
ko.applyBindingAccessorsToNode = function (node, bindings, viewModelOrBindingContext) {
if (node.nodeType === 1) // If it's an element, workaround IE <= 8 HTML parsing weirdness
ko.virtualElements.normaliseVirtualElementDomStructure(node);
return applyBindingsToNodeInternal(node, bindings, getBindingContext(viewModelOrBindingContext), true);
};
ko.applyBindingsToNode = function (node, bindings, viewModelOrBindingContext) {
var context = getBindingContext(viewModelOrBindingContext);
return ko.applyBindingAccessorsToNode(node, makeBindingAccessors(bindings, context, node), context);
};
ko.applyBindingsToDescendants = function(viewModelOrBindingContext, rootNode) {
if (rootNode.nodeType === 1 || rootNode.nodeType === 8)
applyBindingsToDescendantsInternal(getBindingContext(viewModelOrBindingContext), rootNode, true);
};
ko.applyBindings = function (viewModelOrBindingContext, rootNode) {
// If jQuery is loaded after Knockout, we won't initially have access to it. So save it here.
if (!jQueryInstance && window['jQuery']) {
jQueryInstance = window['jQuery'];
}
if (rootNode && (rootNode.nodeType !== 1) && (rootNode.nodeType !== 8))
throw new Error("ko.applyBindings: first parameter should be your view model; second parameter should be a DOM node");
rootNode = rootNode || window.document.body; // Make "rootNode" parameter optional
applyBindingsToNodeAndDescendantsInternal(getBindingContext(viewModelOrBindingContext), rootNode, true);
};
// Retrieving binding context from arbitrary nodes
ko.contextFor = function(node) {
// We can only do something meaningful for elements and comment nodes (in particular, not text nodes, as IE can't store domdata for them)
switch (node.nodeType) {
case 1:
case 8:
var context = ko.storedBindingContextForNode(node);
if (context) return context;
if (node.parentNode) return ko.contextFor(node.parentNode);
break;
}
return undefined;
};
ko.dataFor = function(node) {
var context = ko.contextFor(node);
return context ? context['$data'] : undefined;
};
ko.exportSymbol('bindingHandlers', ko.bindingHandlers);
ko.exportSymbol('applyBindings', ko.applyBindings);
ko.exportSymbol('applyBindingsToDescendants', ko.applyBindingsToDescendants);
ko.exportSymbol('applyBindingAccessorsToNode', ko.applyBindingAccessorsToNode);
ko.exportSymbol('applyBindingsToNode', ko.applyBindingsToNode);
ko.exportSymbol('contextFor', ko.contextFor);
ko.exportSymbol('dataFor', ko.dataFor);
})();
(function(undefined) {
var loadingSubscribablesCache = {}, // Tracks component loads that are currently in flight
loadedDefinitionsCache = {}; // Tracks component loads that have already completed
ko.components = {
get: function(componentName, callback) {
var cachedDefinition = getObjectOwnProperty(loadedDefinitionsCache, componentName);
if (cachedDefinition) {
// It's already loaded and cached. Reuse the same definition object.
// Note that for API consistency, even cache hits complete asynchronously by default.
// You can bypass this by putting synchronous:true on your component config.
if (cachedDefinition.isSynchronousComponent) {
ko.dependencyDetection.ignore(function() { // See comment in loaderRegistryBehaviors.js for reasoning
callback(cachedDefinition.definition);
});
} else {
setTimeout(function() { callback(cachedDefinition.definition); }, 0);
}
} else {
// Join the loading process that is already underway, or start a new one.
loadComponentAndNotify(componentName, callback);
}
},
clearCachedDefinition: function(componentName) {
delete loadedDefinitionsCache[componentName];
},
_getFirstResultFromLoaders: getFirstResultFromLoaders
};
function getObjectOwnProperty(obj, propName) {
return obj.hasOwnProperty(propName) ? obj[propName] : undefined;
}
function loadComponentAndNotify(componentName, callback) {
var subscribable = getObjectOwnProperty(loadingSubscribablesCache, componentName),
completedAsync;
if (!subscribable) {
// It's not started loading yet. Start loading, and when it's done, move it to loadedDefinitionsCache.
subscribable = loadingSubscribablesCache[componentName] = new ko.subscribable();
subscribable.subscribe(callback);
beginLoadingComponent(componentName, function(definition, config) {
var isSynchronousComponent = !!(config && config['synchronous']);
loadedDefinitionsCache[componentName] = { definition: definition, isSynchronousComponent: isSynchronousComponent };
delete loadingSubscribablesCache[componentName];
// For API consistency, all loads complete asynchronously. However we want to avoid
// adding an extra setTimeout if it's unnecessary (i.e., the completion is already
// async) since setTimeout(..., 0) still takes about 16ms or more on most browsers.
//
// You can bypass the 'always synchronous' feature by putting the synchronous:true
// flag on your component configuration when you register it.
if (completedAsync || isSynchronousComponent) {
// Note that notifySubscribers ignores any dependencies read within the callback.
// See comment in loaderRegistryBehaviors.js for reasoning
subscribable['notifySubscribers'](definition);
} else {
setTimeout(function() {
subscribable['notifySubscribers'](definition);
}, 0);
}
});
completedAsync = true;
} else {
subscribable.subscribe(callback);
}
}
function beginLoadingComponent(componentName, callback) {
getFirstResultFromLoaders('getConfig', [componentName], function(config) {
if (config) {
// We have a config, so now load its definition
getFirstResultFromLoaders('loadComponent', [componentName, config], function(definition) {
callback(definition, config);
});
} else {
// The component has no config - it's unknown to all the loaders.
// Note that this is not an error (e.g., a module loading error) - that would abort the
// process and this callback would not run. For this callback to run, all loaders must
// have confirmed they don't know about this component.
callback(null, null);
}
});
}
function getFirstResultFromLoaders(methodName, argsExceptCallback, callback, candidateLoaders) {
// On the first call in the stack, start with the full set of loaders
if (!candidateLoaders) {
candidateLoaders = ko.components['loaders'].slice(0); // Use a copy, because we'll be mutating this array
}
// Try the next candidate
var currentCandidateLoader = candidateLoaders.shift();
if (currentCandidateLoader) {
var methodInstance = currentCandidateLoader[methodName];
if (methodInstance) {
var wasAborted = false,
synchronousReturnValue = methodInstance.apply(currentCandidateLoader, argsExceptCallback.concat(function(result) {
if (wasAborted) {
callback(null);
} else if (result !== null) {
// This candidate returned a value. Use it.
callback(result);
} else {
// Try the next candidate
getFirstResultFromLoaders(methodName, argsExceptCallback, callback, candidateLoaders);
}
}));
// Currently, loaders may not return anything synchronously. This leaves open the possibility
// that we'll extend the API to support synchronous return values in the future. It won't be
// a breaking change, because currently no loader is allowed to return anything except undefined.
if (synchronousReturnValue !== undefined) {
wasAborted = true;
// Method to suppress exceptions will remain undocumented. This is only to keep
// KO's specs running tidily, since we can observe the loading got aborted without
// having exceptions cluttering up the console too.
if (!currentCandidateLoader['suppressLoaderExceptions']) {
throw new Error('Component loaders must supply values by invoking the callback, not by returning values synchronously.');
}
}
} else {
// This candidate doesn't have the relevant handler. Synchronously move on to the next one.
getFirstResultFromLoaders(methodName, argsExceptCallback, callback, candidateLoaders);
}
} else {
// No candidates returned a value
callback(null);
}
}
// Reference the loaders via string name so it's possible for developers
// to replace the whole array by assigning to ko.components.loaders
ko.components['loaders'] = [];
ko.exportSymbol('components', ko.components);
ko.exportSymbol('components.get', ko.components.get);
ko.exportSymbol('components.clearCachedDefinition', ko.components.clearCachedDefinition);
})();
(function(undefined) {
// The default loader is responsible for two things:
// 1. Maintaining the default in-memory registry of component configuration objects
// (i.e., the thing you're writing to when you call ko.components.register(someName, ...))
// 2. Answering requests for components by fetching configuration objects
// from that default in-memory registry and resolving them into standard
// component definition objects (of the form { createViewModel: ..., template: ... })
// Custom loaders may override either of these facilities, i.e.,
// 1. To supply configuration objects from some other source (e.g., conventions)
// 2. Or, to resolve configuration objects by loading viewmodels/templates via arbitrary logic.
var defaultConfigRegistry = {};
ko.components.register = function(componentName, config) {
if (!config) {
throw new Error('Invalid configuration for ' + componentName);
}
if (ko.components.isRegistered(componentName)) {
throw new Error('Component ' + componentName + ' is already registered');
}
defaultConfigRegistry[componentName] = config;
}
ko.components.isRegistered = function(componentName) {
return componentName in defaultConfigRegistry;
}
ko.components.unregister = function(componentName) {
delete defaultConfigRegistry[componentName];
ko.components.clearCachedDefinition(componentName);
}
ko.components.defaultLoader = {
'getConfig': function(componentName, callback) {
var result = defaultConfigRegistry.hasOwnProperty(componentName)
? defaultConfigRegistry[componentName]
: null;
callback(result);
},
'loadComponent': function(componentName, config, callback) {
var errorCallback = makeErrorCallback(componentName);
possiblyGetConfigFromAmd(errorCallback, config, function(loadedConfig) {
resolveConfig(componentName, errorCallback, loadedConfig, callback);
});
},
'loadTemplate': function(componentName, templateConfig, callback) {
resolveTemplate(makeErrorCallback(componentName), templateConfig, callback);
},
'loadViewModel': function(componentName, viewModelConfig, callback) {
resolveViewModel(makeErrorCallback(componentName), viewModelConfig, callback);
}
};
var createViewModelKey = 'createViewModel';
// Takes a config object of the form { template: ..., viewModel: ... }, and asynchronously convert it
// into the standard component definition format:
// { template: <ArrayOfDomNodes>, createViewModel: function(params, componentInfo) { ... } }.
// Since both template and viewModel may need to be resolved asynchronously, both tasks are performed
// in parallel, and the results joined when both are ready. We don't depend on any promises infrastructure,
// so this is implemented manually below.
function resolveConfig(componentName, errorCallback, config, callback) {
var result = {},
makeCallBackWhenZero = 2,
tryIssueCallback = function() {
if (--makeCallBackWhenZero === 0) {
callback(result);
}
},
templateConfig = config['template'],
viewModelConfig = config['viewModel'];
if (templateConfig) {
possiblyGetConfigFromAmd(errorCallback, templateConfig, function(loadedConfig) {
ko.components._getFirstResultFromLoaders('loadTemplate', [componentName, loadedConfig], function(resolvedTemplate) {
result['template'] = resolvedTemplate;
tryIssueCallback();
});
});
} else {
tryIssueCallback();
}
if (viewModelConfig) {
possiblyGetConfigFromAmd(errorCallback, viewModelConfig, function(loadedConfig) {
ko.components._getFirstResultFromLoaders('loadViewModel', [componentName, loadedConfig], function(resolvedViewModel) {
result[createViewModelKey] = resolvedViewModel;
tryIssueCallback();
});
});
} else {
tryIssueCallback();
}
}
function resolveTemplate(errorCallback, templateConfig, callback) {
if (typeof templateConfig === 'string') {
// Markup - parse it
callback(ko.utils.parseHtmlFragment(templateConfig));
} else if (templateConfig instanceof Array) {
// Assume already an array of DOM nodes - pass through unchanged
callback(templateConfig);
} else if (isDocumentFragment(templateConfig)) {
// Document fragment - use its child nodes
callback(ko.utils.makeArray(templateConfig.childNodes));
} else if (templateConfig['element']) {
var element = templateConfig['element'];
if (isDomElement(element)) {
// Element instance - copy its child nodes
callback(cloneNodesFromTemplateSourceElement(element));
} else if (typeof element === 'string') {
// Element ID - find it, then copy its child nodes
var elemInstance = document.getElementById(element);
if (elemInstance) {
callback(cloneNodesFromTemplateSourceElement(elemInstance));
} else {
errorCallback('Cannot find element with ID ' + element);
}
} else {
errorCallback('Unknown element type: ' + element);
}
} else {
errorCallback('Unknown template value: ' + templateConfig);
}
}
function resolveViewModel(errorCallback, viewModelConfig, callback) {
if (typeof viewModelConfig === 'function') {
// Constructor - convert to standard factory function format
// By design, this does *not* supply componentInfo to the constructor, as the intent is that
// componentInfo contains non-viewmodel data (e.g., the component's element) that should only
// be used in factory functions, not viewmodel constructors.
callback(function (params /*, componentInfo */) {
return new viewModelConfig(params);
});
} else if (typeof viewModelConfig[createViewModelKey] === 'function') {
// Already a factory function - use it as-is
callback(viewModelConfig[createViewModelKey]);
} else if ('instance' in viewModelConfig) {
// Fixed object instance - promote to createViewModel format for API consistency
var fixedInstance = viewModelConfig['instance'];
callback(function (params, componentInfo) {
return fixedInstance;
});
} else if ('viewModel' in viewModelConfig) {
// Resolved AMD module whose value is of the form { viewModel: ... }
resolveViewModel(errorCallback, viewModelConfig['viewModel'], callback);
} else {
errorCallback('Unknown viewModel value: ' + viewModelConfig);
}
}
function cloneNodesFromTemplateSourceElement(elemInstance) {
switch (ko.utils.tagNameLower(elemInstance)) {
case 'script':
return ko.utils.parseHtmlFragment(elemInstance.text);
case 'textarea':
return ko.utils.parseHtmlFragment(elemInstance.value);
case 'template':
// For browsers with proper <template> element support (i.e., where the .content property
// gives a document fragment), use that document fragment.
if (isDocumentFragment(elemInstance.content)) {
return ko.utils.cloneNodes(elemInstance.content.childNodes);
}
}
// Regular elements such as <div>, and <template> elements on old browsers that don't really
// understand <template> and just treat it as a regular container
return ko.utils.cloneNodes(elemInstance.childNodes);
}
function isDomElement(obj) {
if (window['HTMLElement']) {
return obj instanceof HTMLElement;
} else {
return obj && obj.tagName && obj.nodeType === 1;
}
}
function isDocumentFragment(obj) {
if (window['DocumentFragment']) {
return obj instanceof DocumentFragment;
} else {
return obj && obj.nodeType === 11;
}
}
function possiblyGetConfigFromAmd(errorCallback, config, callback) {
if (typeof config['require'] === 'string') {
// The config is the value of an AMD module
if (amdRequire || window['require']) {
(amdRequire || window['require'])([config['require']], callback);
} else {
errorCallback('Uses require, but no AMD loader is present');
}
} else {
callback(config);
}
}
function makeErrorCallback(componentName) {
return function (message) {
throw new Error('Component \'' + componentName + '\': ' + message);
};
}
ko.exportSymbol('components.register', ko.components.register);
ko.exportSymbol('components.isRegistered', ko.components.isRegistered);
ko.exportSymbol('components.unregister', ko.components.unregister);
// Expose the default loader so that developers can directly ask it for configuration
// or to resolve configuration
ko.exportSymbol('components.defaultLoader', ko.components.defaultLoader);
// By default, the default loader is the only registered component loader
ko.components['loaders'].push(ko.components.defaultLoader);
// Privately expose the underlying config registry for use in old-IE shim
ko.components._allRegisteredComponents = defaultConfigRegistry;
})();
(function (undefined) {
// Overridable API for determining which component name applies to a given node. By overriding this,
// you can for example map specific tagNames to components that are not preregistered.
ko.components['getComponentNameForNode'] = function(node) {
var tagNameLower = ko.utils.tagNameLower(node);
return ko.components.isRegistered(tagNameLower) && tagNameLower;
};
ko.components.addBindingsForCustomElement = function(allBindings, node, bindingContext, valueAccessors) {
// Determine if it's really a custom element matching a component
if (node.nodeType === 1) {
var componentName = ko.components['getComponentNameForNode'](node);
if (componentName) {
// It does represent a component, so add a component binding for it
allBindings = allBindings || {};
if (allBindings['component']) {
// Avoid silently overwriting some other 'component' binding that may already be on the element
throw new Error('Cannot use the "component" binding on a custom element matching a component');
}
var componentBindingValue = { 'name': componentName, 'params': getComponentParamsFromCustomElement(node, bindingContext) };
allBindings['component'] = valueAccessors
? function() { return componentBindingValue; }
: componentBindingValue;
}
}
return allBindings;
}
var nativeBindingProviderInstance = new ko.bindingProvider();
function getComponentParamsFromCustomElement(elem, bindingContext) {
var paramsAttribute = elem.getAttribute('params');
if (paramsAttribute) {
var params = nativeBindingProviderInstance['parseBindingsString'](paramsAttribute, bindingContext, elem, { 'valueAccessors': true, 'bindingParams': true }),
rawParamComputedValues = ko.utils.objectMap(params, function(paramValue, paramName) {
return ko.computed(paramValue, null, { disposeWhenNodeIsRemoved: elem });
}),
result = ko.utils.objectMap(rawParamComputedValues, function(paramValueComputed, paramName) {
var paramValue = paramValueComputed.peek();
// Does the evaluation of the parameter value unwrap any observables?
if (!paramValueComputed.isActive()) {
// No it doesn't, so there's no need for any computed wrapper. Just pass through the supplied value directly.
// Example: "someVal: firstName, age: 123" (whether or not firstName is an observable/computed)
return paramValue;
} else {
// Yes it does. Supply a computed property that unwraps both the outer (binding expression)
// level of observability, and any inner (resulting model value) level of observability.
// This means the component doesn't have to worry about multiple unwrapping. If the value is a
// writable observable, the computed will also be writable and pass the value on to the observable.
return ko.computed({
'read': function() {
return ko.utils.unwrapObservable(paramValueComputed());
},
'write': ko.isWriteableObservable(paramValue) && function(value) {
paramValueComputed()(value);
},
disposeWhenNodeIsRemoved: elem
});
}
});
// Give access to the raw computeds, as long as that wouldn't overwrite any custom param also called '$raw'
// This is in case the developer wants to react to outer (binding) observability separately from inner
// (model value) observability, or in case the model value observable has subobservables.
if (!result.hasOwnProperty('$raw')) {
result['$raw'] = rawParamComputedValues;
}
return result;
} else {
// For consistency, absence of a "params" attribute is treated the same as the presence of
// any empty one. Otherwise component viewmodels need special code to check whether or not
// 'params' or 'params.$raw' is null/undefined before reading subproperties, which is annoying.
return { '$raw': {} };
}
}
// --------------------------------------------------------------------------------
// Compatibility code for older (pre-HTML5) IE browsers
if (ko.utils.ieVersion < 9) {
// Whenever you preregister a component, enable it as a custom element in the current document
ko.components['register'] = (function(originalFunction) {
return function(componentName) {
document.createElement(componentName); // Allows IE<9 to parse markup containing the custom element
return originalFunction.apply(this, arguments);
}
})(ko.components['register']);
// Whenever you create a document fragment, enable all preregistered component names as custom elements
// This is needed to make innerShiv/jQuery HTML parsing correctly handle the custom elements
document.createDocumentFragment = (function(originalFunction) {
return function() {
var newDocFrag = originalFunction(),
allComponents = ko.components._allRegisteredComponents;
for (var componentName in allComponents) {
if (allComponents.hasOwnProperty(componentName)) {
newDocFrag.createElement(componentName);
}
}
return newDocFrag;
};
})(document.createDocumentFragment);
}
})();(function(undefined) {
var componentLoadingOperationUniqueId = 0;
ko.bindingHandlers['component'] = {
'init': function(element, valueAccessor, ignored1, ignored2, bindingContext) {
var currentViewModel,
currentLoadingOperationId,
disposeAssociatedComponentViewModel = function () {
var currentViewModelDispose = currentViewModel && currentViewModel['dispose'];
if (typeof currentViewModelDispose === 'function') {
currentViewModelDispose.call(currentViewModel);
}
// Any in-flight loading operation is no longer relevant, so make sure we ignore its completion
currentLoadingOperationId = null;
},
originalChildNodes = ko.utils.makeArray(ko.virtualElements.childNodes(element));
ko.utils.domNodeDisposal.addDisposeCallback(element, disposeAssociatedComponentViewModel);
ko.computed(function () {
var value = ko.utils.unwrapObservable(valueAccessor()),
componentName, componentParams;
if (typeof value === 'string') {
componentName = value;
} else {
componentName = ko.utils.unwrapObservable(value['name']);
componentParams = ko.utils.unwrapObservable(value['params']);
}
if (!componentName) {
throw new Error('No component name specified');
}
var loadingOperationId = currentLoadingOperationId = ++componentLoadingOperationUniqueId;
ko.components.get(componentName, function(componentDefinition) {
// If this is not the current load operation for this element, ignore it.
if (currentLoadingOperationId !== loadingOperationId) {
return;
}
// Clean up previous state
disposeAssociatedComponentViewModel();
// Instantiate and bind new component. Implicitly this cleans any old DOM nodes.
if (!componentDefinition) {
throw new Error('Unknown component \'' + componentName + '\'');
}
cloneTemplateIntoElement(componentName, componentDefinition, element);
var componentViewModel = createViewModel(componentDefinition, element, originalChildNodes, componentParams),
childBindingContext = bindingContext['createChildContext'](componentViewModel, /* dataItemAlias */ undefined, function(ctx) {
ctx['$component'] = componentViewModel;
ctx['$componentTemplateNodes'] = originalChildNodes;
});
currentViewModel = componentViewModel;
ko.applyBindingsToDescendants(childBindingContext, element);
});
}, null, { disposeWhenNodeIsRemoved: element });
return { 'controlsDescendantBindings': true };
}
};
ko.virtualElements.allowedBindings['component'] = true;
function cloneTemplateIntoElement(componentName, componentDefinition, element) {
var template = componentDefinition['template'];
if (!template) {
throw new Error('Component \'' + componentName + '\' has no template');
}
var clonedNodesArray = ko.utils.cloneNodes(template);
ko.virtualElements.setDomNodeChildren(element, clonedNodesArray);
}
function createViewModel(componentDefinition, element, originalChildNodes, componentParams) {
var componentViewModelFactory = componentDefinition['createViewModel'];
return componentViewModelFactory
? componentViewModelFactory.call(componentDefinition, componentParams, { 'element': element, 'templateNodes': originalChildNodes })
: componentParams; // Template-only component
}
})();
var attrHtmlToJavascriptMap = { 'class': 'className', 'for': 'htmlFor' };
ko.bindingHandlers['attr'] = {
'update': function(element, valueAccessor, allBindings) {
var value = ko.utils.unwrapObservable(valueAccessor()) || {};
ko.utils.objectForEach(value, function(attrName, attrValue) {
attrValue = ko.utils.unwrapObservable(attrValue);
// To cover cases like "attr: { checked:someProp }", we want to remove the attribute entirely
// when someProp is a "no value"-like value (strictly null, false, or undefined)
// (because the absence of the "checked" attr is how to mark an element as not checked, etc.)
var toRemove = (attrValue === false) || (attrValue === null) || (attrValue === undefined);
if (toRemove)
element.removeAttribute(attrName);
// In IE <= 7 and IE8 Quirks Mode, you have to use the Javascript property name instead of the
// HTML attribute name for certain attributes. IE8 Standards Mode supports the correct behavior,
// but instead of figuring out the mode, we'll just set the attribute through the Javascript
// property for IE <= 8.
if (ko.utils.ieVersion <= 8 && attrName in attrHtmlToJavascriptMap) {
attrName = attrHtmlToJavascriptMap[attrName];
if (toRemove)
element.removeAttribute(attrName);
else
element[attrName] = attrValue;
} else if (!toRemove) {
element.setAttribute(attrName, attrValue.toString());
}
// Treat "name" specially - although you can think of it as an attribute, it also needs
// special handling on older versions of IE (https://github.com/SteveSanderson/knockout/pull/333)
// Deliberately being case-sensitive here because XHTML would regard "Name" as a different thing
// entirely, and there's no strong reason to allow for such casing in HTML.
if (attrName === "name") {
ko.utils.setElementName(element, toRemove ? "" : attrValue.toString());
}
});
}
};
(function() {
ko.bindingHandlers['checked'] = {
'after': ['value', 'attr'],
'init': function (element, valueAccessor, allBindings) {
var checkedValue = ko.pureComputed(function() {
// Treat "value" like "checkedValue" when it is included with "checked" binding
if (allBindings['has']('checkedValue')) {
return ko.utils.unwrapObservable(allBindings.get('checkedValue'));
} else if (allBindings['has']('value')) {
return ko.utils.unwrapObservable(allBindings.get('value'));
}
return element.value;
});
function updateModel() {
// This updates the model value from the view value.
// It runs in response to DOM events (click) and changes in checkedValue.
var isChecked = element.checked,
elemValue = useCheckedValue ? checkedValue() : isChecked;
// When we're first setting up this computed, don't change any model state.
if (ko.computedContext.isInitial()) {
return;
}
// We can ignore unchecked radio buttons, because some other radio
// button will be getting checked, and that one can take care of updating state.
if (isRadio && !isChecked) {
return;
}
var modelValue = ko.dependencyDetection.ignore(valueAccessor);
if (isValueArray) {
if (oldElemValue !== elemValue) {
// When we're responding to the checkedValue changing, and the element is
// currently checked, replace the old elem value with the new elem value
// in the model array.
if (isChecked) {
ko.utils.addOrRemoveItem(modelValue, elemValue, true);
ko.utils.addOrRemoveItem(modelValue, oldElemValue, false);
}
oldElemValue = elemValue;
} else {
// When we're responding to the user having checked/unchecked a checkbox,
// add/remove the element value to the model array.
ko.utils.addOrRemoveItem(modelValue, elemValue, isChecked);
}
} else {
ko.expressionRewriting.writeValueToProperty(modelValue, allBindings, 'checked', elemValue, true);
}
};
function updateView() {
// This updates the view value from the model value.
// It runs in response to changes in the bound (checked) value.
var modelValue = ko.utils.unwrapObservable(valueAccessor());
if (isValueArray) {
// When a checkbox is bound to an array, being checked represents its value being present in that array
element.checked = ko.utils.arrayIndexOf(modelValue, checkedValue()) >= 0;
} else if (isCheckbox) {
// When a checkbox is bound to any other value (not an array), being checked represents the value being trueish
element.checked = modelValue;
} else {
// For radio buttons, being checked means that the radio button's value corresponds to the model value
element.checked = (checkedValue() === modelValue);
}
};
var isCheckbox = element.type == "checkbox",
isRadio = element.type == "radio";
// Only bind to check boxes and radio buttons
if (!isCheckbox && !isRadio) {
return;
}
var isValueArray = isCheckbox && (ko.utils.unwrapObservable(valueAccessor()) instanceof Array),
oldElemValue = isValueArray ? checkedValue() : undefined,
useCheckedValue = isRadio || isValueArray;
// IE 6 won't allow radio buttons to be selected unless they have a name
if (isRadio && !element.name)
ko.bindingHandlers['uniqueName']['init'](element, function() { return true });
// Set up two computeds to update the binding:
// The first responds to changes in the checkedValue value and to element clicks
ko.computed(updateModel, null, { disposeWhenNodeIsRemoved: element });
ko.utils.registerEventHandler(element, "click", updateModel);
// The second responds to changes in the model value (the one associated with the checked binding)
ko.computed(updateView, null, { disposeWhenNodeIsRemoved: element });
}
};
ko.expressionRewriting.twoWayBindings['checked'] = true;
ko.bindingHandlers['checkedValue'] = {
'update': function (element, valueAccessor) {
element.value = ko.utils.unwrapObservable(valueAccessor());
}
};
})();var classesWrittenByBindingKey = '__ko__cssValue';
ko.bindingHandlers['css'] = {
'update': function (element, valueAccessor) {
var value = ko.utils.unwrapObservable(valueAccessor());
if (value !== null && typeof value == "object") {
ko.utils.objectForEach(value, function(className, shouldHaveClass) {
shouldHaveClass = ko.utils.unwrapObservable(shouldHaveClass);
ko.utils.toggleDomNodeCssClass(element, className, shouldHaveClass);
});
} else {
value = String(value || ''); // Make sure we don't try to store or set a non-string value
ko.utils.toggleDomNodeCssClass(element, element[classesWrittenByBindingKey], false);
element[classesWrittenByBindingKey] = value;
ko.utils.toggleDomNodeCssClass(element, value, true);
}
}
};
ko.bindingHandlers['enable'] = {
'update': function (element, valueAccessor) {
var value = ko.utils.unwrapObservable(valueAccessor());
if (value && element.disabled)
element.removeAttribute("disabled");
else if ((!value) && (!element.disabled))
element.disabled = true;
}
};
ko.bindingHandlers['disable'] = {
'update': function (element, valueAccessor) {
ko.bindingHandlers['enable']['update'](element, function() { return !ko.utils.unwrapObservable(valueAccessor()) });
}
};
// For certain common events (currently just 'click'), allow a simplified data-binding syntax
// e.g. click:handler instead of the usual full-length event:{click:handler}
function makeEventHandlerShortcut(eventName) {
ko.bindingHandlers[eventName] = {
'init': function(element, valueAccessor, allBindings, viewModel, bindingContext) {
var newValueAccessor = function () {
var result = {};
result[eventName] = valueAccessor();
return result;
};
return ko.bindingHandlers['event']['init'].call(this, element, newValueAccessor, allBindings, viewModel, bindingContext);
}
}
}
ko.bindingHandlers['event'] = {
'init' : function (element, valueAccessor, allBindings, viewModel, bindingContext) {
var eventsToHandle = valueAccessor() || {};
ko.utils.objectForEach(eventsToHandle, function(eventName) {
if (typeof eventName == "string") {
ko.utils.registerEventHandler(element, eventName, function (event) {
var handlerReturnValue;
var handlerFunction = valueAccessor()[eventName];
if (!handlerFunction)
return;
try {
// Take all the event args, and prefix with the viewmodel
var argsForHandler = ko.utils.makeArray(arguments);
viewModel = bindingContext['$data'];
argsForHandler.unshift(viewModel);
handlerReturnValue = handlerFunction.apply(viewModel, argsForHandler);
} finally {
if (handlerReturnValue !== true) { // Normally we want to prevent default action. Developer can override this be explicitly returning true.
if (event.preventDefault)
event.preventDefault();
else
event.returnValue = false;
}
}
var bubble = allBindings.get(eventName + 'Bubble') !== false;
if (!bubble) {
event.cancelBubble = true;
if (event.stopPropagation)
event.stopPropagation();
}
});
}
});
}
};
// "foreach: someExpression" is equivalent to "template: { foreach: someExpression }"
// "foreach: { data: someExpression, afterAdd: myfn }" is equivalent to "template: { foreach: someExpression, afterAdd: myfn }"
ko.bindingHandlers['foreach'] = {
makeTemplateValueAccessor: function(valueAccessor) {
return function() {
var modelValue = valueAccessor(),
unwrappedValue = ko.utils.peekObservable(modelValue); // Unwrap without setting a dependency here
// If unwrappedValue is the array, pass in the wrapped value on its own
// The value will be unwrapped and tracked within the template binding
// (See https://github.com/SteveSanderson/knockout/issues/523)
if ((!unwrappedValue) || typeof unwrappedValue.length == "number")
return { 'foreach': modelValue, 'templateEngine': ko.nativeTemplateEngine.instance };
// If unwrappedValue.data is the array, preserve all relevant options and unwrap again value so we get updates
ko.utils.unwrapObservable(modelValue);
return {
'foreach': unwrappedValue['data'],
'as': unwrappedValue['as'],
'includeDestroyed': unwrappedValue['includeDestroyed'],
'afterAdd': unwrappedValue['afterAdd'],
'beforeRemove': unwrappedValue['beforeRemove'],
'afterRender': unwrappedValue['afterRender'],
'beforeMove': unwrappedValue['beforeMove'],
'afterMove': unwrappedValue['afterMove'],
'templateEngine': ko.nativeTemplateEngine.instance
};
};
},
'init': function(element, valueAccessor, allBindings, viewModel, bindingContext) {
return ko.bindingHandlers['template']['init'](element, ko.bindingHandlers['foreach'].makeTemplateValueAccessor(valueAccessor));
},
'update': function(element, valueAccessor, allBindings, viewModel, bindingContext) {
return ko.bindingHandlers['template']['update'](element, ko.bindingHandlers['foreach'].makeTemplateValueAccessor(valueAccessor), allBindings, viewModel, bindingContext);
}
};
ko.expressionRewriting.bindingRewriteValidators['foreach'] = false; // Can't rewrite control flow bindings
ko.virtualElements.allowedBindings['foreach'] = true;
var hasfocusUpdatingProperty = '__ko_hasfocusUpdating';
var hasfocusLastValue = '__ko_hasfocusLastValue';
ko.bindingHandlers['hasfocus'] = {
'init': function(element, valueAccessor, allBindings) {
var handleElementFocusChange = function(isFocused) {
// Where possible, ignore which event was raised and determine focus state using activeElement,
// as this avoids phantom focus/blur events raised when changing tabs in modern browsers.
// However, not all KO-targeted browsers (Firefox 2) support activeElement. For those browsers,
// prevent a loss of focus when changing tabs/windows by setting a flag that prevents hasfocus
// from calling 'blur()' on the element when it loses focus.
// Discussion at https://github.com/SteveSanderson/knockout/pull/352
element[hasfocusUpdatingProperty] = true;
var ownerDoc = element.ownerDocument;
if ("activeElement" in ownerDoc) {
var active;
try {
active = ownerDoc.activeElement;
} catch(e) {
// IE9 throws if you access activeElement during page load (see issue #703)
active = ownerDoc.body;
}
isFocused = (active === element);
}
var modelValue = valueAccessor();
ko.expressionRewriting.writeValueToProperty(modelValue, allBindings, 'hasfocus', isFocused, true);
//cache the latest value, so we can avoid unnecessarily calling focus/blur in the update function
element[hasfocusLastValue] = isFocused;
element[hasfocusUpdatingProperty] = false;
};
var handleElementFocusIn = handleElementFocusChange.bind(null, true);
var handleElementFocusOut = handleElementFocusChange.bind(null, false);
ko.utils.registerEventHandler(element, "focus", handleElementFocusIn);
ko.utils.registerEventHandler(element, "focusin", handleElementFocusIn); // For IE
ko.utils.registerEventHandler(element, "blur", handleElementFocusOut);
ko.utils.registerEventHandler(element, "focusout", handleElementFocusOut); // For IE
},
'update': function(element, valueAccessor) {
var value = !!ko.utils.unwrapObservable(valueAccessor()); //force boolean to compare with last value
if (!element[hasfocusUpdatingProperty] && element[hasfocusLastValue] !== value) {
value ? element.focus() : element.blur();
ko.dependencyDetection.ignore(ko.utils.triggerEvent, null, [element, value ? "focusin" : "focusout"]); // For IE, which doesn't reliably fire "focus" or "blur" events synchronously
}
}
};
ko.expressionRewriting.twoWayBindings['hasfocus'] = true;
ko.bindingHandlers['hasFocus'] = ko.bindingHandlers['hasfocus']; // Make "hasFocus" an alias
ko.expressionRewriting.twoWayBindings['hasFocus'] = true;
ko.bindingHandlers['html'] = {
'init': function() {
// Prevent binding on the dynamically-injected HTML (as developers are unlikely to expect that, and it has security implications)
return { 'controlsDescendantBindings': true };
},
'update': function (element, valueAccessor) {
// setHtml will unwrap the value if needed
ko.utils.setHtml(element, valueAccessor());
}
};
// Makes a binding like with or if
function makeWithIfBinding(bindingKey, isWith, isNot, makeContextCallback) {
ko.bindingHandlers[bindingKey] = {
'init': function(element, valueAccessor, allBindings, viewModel, bindingContext) {
var didDisplayOnLastUpdate,
savedNodes;
ko.computed(function() {
var dataValue = ko.utils.unwrapObservable(valueAccessor()),
shouldDisplay = !isNot !== !dataValue, // equivalent to isNot ? !dataValue : !!dataValue
isFirstRender = !savedNodes,
needsRefresh = isFirstRender || isWith || (shouldDisplay !== didDisplayOnLastUpdate);
if (needsRefresh) {
// Save a copy of the inner nodes on the initial update, but only if we have dependencies.
if (isFirstRender && ko.computedContext.getDependenciesCount()) {
savedNodes = ko.utils.cloneNodes(ko.virtualElements.childNodes(element), true /* shouldCleanNodes */);
}
if (shouldDisplay) {
if (!isFirstRender) {
ko.virtualElements.setDomNodeChildren(element, ko.utils.cloneNodes(savedNodes));
}
ko.applyBindingsToDescendants(makeContextCallback ? makeContextCallback(bindingContext, dataValue) : bindingContext, element);
} else {
ko.virtualElements.emptyNode(element);
}
didDisplayOnLastUpdate = shouldDisplay;
}
}, null, { disposeWhenNodeIsRemoved: element });
return { 'controlsDescendantBindings': true };
}
};
ko.expressionRewriting.bindingRewriteValidators[bindingKey] = false; // Can't rewrite control flow bindings
ko.virtualElements.allowedBindings[bindingKey] = true;
}
// Construct the actual binding handlers
makeWithIfBinding('if');
makeWithIfBinding('ifnot', false /* isWith */, true /* isNot */);
makeWithIfBinding('with', true /* isWith */, false /* isNot */,
function(bindingContext, dataValue) {
return bindingContext['createChildContext'](dataValue);
}
);
var captionPlaceholder = {};
ko.bindingHandlers['options'] = {
'init': function(element) {
if (ko.utils.tagNameLower(element) !== "select")
throw new Error("options binding applies only to SELECT elements");
// Remove all existing <option>s.
while (element.length > 0) {
element.remove(0);
}
// Ensures that the binding processor doesn't try to bind the options
return { 'controlsDescendantBindings': true };
},
'update': function (element, valueAccessor, allBindings) {
function selectedOptions() {
return ko.utils.arrayFilter(element.options, function (node) { return node.selected; });
}
var selectWasPreviouslyEmpty = element.length == 0,
multiple = element.multiple,
previousScrollTop = (!selectWasPreviouslyEmpty && multiple) ? element.scrollTop : null,
unwrappedArray = ko.utils.unwrapObservable(valueAccessor()),
valueAllowUnset = allBindings.get('valueAllowUnset') && allBindings['has']('value'),
includeDestroyed = allBindings.get('optionsIncludeDestroyed'),
arrayToDomNodeChildrenOptions = {},
captionValue,
filteredArray,
previousSelectedValues = [];
if (!valueAllowUnset) {
if (multiple) {
previousSelectedValues = ko.utils.arrayMap(selectedOptions(), ko.selectExtensions.readValue);
} else if (element.selectedIndex >= 0) {
previousSelectedValues.push(ko.selectExtensions.readValue(element.options[element.selectedIndex]));
}
}
if (unwrappedArray) {
if (typeof unwrappedArray.length == "undefined") // Coerce single value into array
unwrappedArray = [unwrappedArray];
// Filter out any entries marked as destroyed
filteredArray = ko.utils.arrayFilter(unwrappedArray, function(item) {
return includeDestroyed || item === undefined || item === null || !ko.utils.unwrapObservable(item['_destroy']);
});
// If caption is included, add it to the array
if (allBindings['has']('optionsCaption')) {
captionValue = ko.utils.unwrapObservable(allBindings.get('optionsCaption'));
// If caption value is null or undefined, don't show a caption
if (captionValue !== null && captionValue !== undefined) {
filteredArray.unshift(captionPlaceholder);
}
}
} else {
// If a falsy value is provided (e.g. null), we'll simply empty the select element
}
function applyToObject(object, predicate, defaultValue) {
var predicateType = typeof predicate;
if (predicateType == "function") // Given a function; run it against the data value
return predicate(object);
else if (predicateType == "string") // Given a string; treat it as a property name on the data value
return object[predicate];
else // Given no optionsText arg; use the data value itself
return defaultValue;
}
// The following functions can run at two different times:
// The first is when the whole array is being updated directly from this binding handler.
// The second is when an observable value for a specific array entry is updated.
// oldOptions will be empty in the first case, but will be filled with the previously generated option in the second.
var itemUpdate = false;
function optionForArrayItem(arrayEntry, index, oldOptions) {
if (oldOptions.length) {
previousSelectedValues = !valueAllowUnset && oldOptions[0].selected ? [ ko.selectExtensions.readValue(oldOptions[0]) ] : [];
itemUpdate = true;
}
var option = element.ownerDocument.createElement("option");
if (arrayEntry === captionPlaceholder) {
ko.utils.setTextContent(option, allBindings.get('optionsCaption'));
ko.selectExtensions.writeValue(option, undefined);
} else {
// Apply a value to the option element
var optionValue = applyToObject(arrayEntry, allBindings.get('optionsValue'), arrayEntry);
ko.selectExtensions.writeValue(option, ko.utils.unwrapObservable(optionValue));
// Apply some text to the option element
var optionText = applyToObject(arrayEntry, allBindings.get('optionsText'), optionValue);
ko.utils.setTextContent(option, optionText);
}
return [option];
}
// By using a beforeRemove callback, we delay the removal until after new items are added. This fixes a selection
// problem in IE<=8 and Firefox. See https://github.com/knockout/knockout/issues/1208
arrayToDomNodeChildrenOptions['beforeRemove'] =
function (option) {
element.removeChild(option);
};
function setSelectionCallback(arrayEntry, newOptions) {
if (itemUpdate && valueAllowUnset) {
// The model value is authoritative, so make sure its value is the one selected
// There is no need to use dependencyDetection.ignore since setDomNodeChildrenFromArrayMapping does so already.
ko.selectExtensions.writeValue(element, ko.utils.unwrapObservable(allBindings.get('value')), true /* allowUnset */);
} else if (previousSelectedValues.length) {
// IE6 doesn't like us to assign selection to OPTION nodes before they're added to the document.
// That's why we first added them without selection. Now it's time to set the selection.
var isSelected = ko.utils.arrayIndexOf(previousSelectedValues, ko.selectExtensions.readValue(newOptions[0])) >= 0;
ko.utils.setOptionNodeSelectionState(newOptions[0], isSelected);
// If this option was changed from being selected during a single-item update, notify the change
if (itemUpdate && !isSelected) {
ko.dependencyDetection.ignore(ko.utils.triggerEvent, null, [element, "change"]);
}
}
}
var callback = setSelectionCallback;
if (allBindings['has']('optionsAfterRender') && typeof allBindings.get('optionsAfterRender') == "function") {
callback = function(arrayEntry, newOptions) {
setSelectionCallback(arrayEntry, newOptions);
ko.dependencyDetection.ignore(allBindings.get('optionsAfterRender'), null, [newOptions[0], arrayEntry !== captionPlaceholder ? arrayEntry : undefined]);
}
}
ko.utils.setDomNodeChildrenFromArrayMapping(element, filteredArray, optionForArrayItem, arrayToDomNodeChildrenOptions, callback);
ko.dependencyDetection.ignore(function () {
if (valueAllowUnset) {
// The model value is authoritative, so make sure its value is the one selected
ko.selectExtensions.writeValue(element, ko.utils.unwrapObservable(allBindings.get('value')), true /* allowUnset */);
} else {
// Determine if the selection has changed as a result of updating the options list
var selectionChanged;
if (multiple) {
// For a multiple-select box, compare the new selection count to the previous one
// But if nothing was selected before, the selection can't have changed
selectionChanged = previousSelectedValues.length && selectedOptions().length < previousSelectedValues.length;
} else {
// For a single-select box, compare the current value to the previous value
// But if nothing was selected before or nothing is selected now, just look for a change in selection
selectionChanged = (previousSelectedValues.length && element.selectedIndex >= 0)
? (ko.selectExtensions.readValue(element.options[element.selectedIndex]) !== previousSelectedValues[0])
: (previousSelectedValues.length || element.selectedIndex >= 0);
}
// Ensure consistency between model value and selected option.
// If the dropdown was changed so that selection is no longer the same,
// notify the value or selectedOptions binding.
if (selectionChanged) {
ko.utils.triggerEvent(element, "change");
}
}
});
// Workaround for IE bug
ko.utils.ensureSelectElementIsRenderedCorrectly(element);
if (previousScrollTop && Math.abs(previousScrollTop - element.scrollTop) > 20)
element.scrollTop = previousScrollTop;
}
};
ko.bindingHandlers['options'].optionValueDomDataKey = ko.utils.domData.nextKey();
ko.bindingHandlers['selectedOptions'] = {
'after': ['options', 'foreach'],
'init': function (element, valueAccessor, allBindings) {
ko.utils.registerEventHandler(element, "change", function () {
var value = valueAccessor(), valueToWrite = [];
ko.utils.arrayForEach(element.getElementsByTagName("option"), function(node) {
if (node.selected)
valueToWrite.push(ko.selectExtensions.readValue(node));
});
ko.expressionRewriting.writeValueToProperty(value, allBindings, 'selectedOptions', valueToWrite);
});
},
'update': function (element, valueAccessor) {
if (ko.utils.tagNameLower(element) != "select")
throw new Error("values binding applies only to SELECT elements");
var newValue = ko.utils.unwrapObservable(valueAccessor());
if (newValue && typeof newValue.length == "number") {
ko.utils.arrayForEach(element.getElementsByTagName("option"), function(node) {
var isSelected = ko.utils.arrayIndexOf(newValue, ko.selectExtensions.readValue(node)) >= 0;
ko.utils.setOptionNodeSelectionState(node, isSelected);
});
}
}
};
ko.expressionRewriting.twoWayBindings['selectedOptions'] = true;
ko.bindingHandlers['style'] = {
'update': function (element, valueAccessor) {
var value = ko.utils.unwrapObservable(valueAccessor() || {});
ko.utils.objectForEach(value, function(styleName, styleValue) {
styleValue = ko.utils.unwrapObservable(styleValue);
if (styleValue === null || styleValue === undefined || styleValue === false) {
// Empty string removes the value, whereas null/undefined have no effect
styleValue = "";
}
element.style[styleName] = styleValue;
});
}
};
ko.bindingHandlers['submit'] = {
'init': function (element, valueAccessor, allBindings, viewModel, bindingContext) {
if (typeof valueAccessor() != "function")
throw new Error("The value for a submit binding must be a function");
ko.utils.registerEventHandler(element, "submit", function (event) {
var handlerReturnValue;
var value = valueAccessor();
try { handlerReturnValue = value.call(bindingContext['$data'], element); }
finally {
if (handlerReturnValue !== true) { // Normally we want to prevent default action. Developer can override this be explicitly returning true.
if (event.preventDefault)
event.preventDefault();
else
event.returnValue = false;
}
}
});
}
};
ko.bindingHandlers['text'] = {
'init': function() {
// Prevent binding on the dynamically-injected text node (as developers are unlikely to expect that, and it has security implications).
// It should also make things faster, as we no longer have to consider whether the text node might be bindable.
return { 'controlsDescendantBindings': true };
},
'update': function (element, valueAccessor) {
ko.utils.setTextContent(element, valueAccessor());
}
};
ko.virtualElements.allowedBindings['text'] = true;
(function () {
if (window && window.navigator) {
var parseVersion = function (matches) {
if (matches) {
return parseFloat(matches[1]);
}
};
// Detect various browser versions because some old versions don't fully support the 'input' event
var operaVersion = window.opera && window.opera.version && parseInt(window.opera.version()),
userAgent = window.navigator.userAgent,
safariVersion = parseVersion(userAgent.match(/^(?:(?!chrome).)*version\/([^ ]*) safari/i)),
firefoxVersion = parseVersion(userAgent.match(/Firefox\/([^ ]*)/));
}
// IE 8 and 9 have bugs that prevent the normal events from firing when the value changes.
// But it does fire the 'selectionchange' event on many of those, presumably because the
// cursor is moving and that counts as the selection changing. The 'selectionchange' event is
// fired at the document level only and doesn't directly indicate which element changed. We
// set up just one event handler for the document and use 'activeElement' to determine which
// element was changed.
if (ko.utils.ieVersion < 10) {
var selectionChangeRegisteredName = ko.utils.domData.nextKey(),
selectionChangeHandlerName = ko.utils.domData.nextKey();
var selectionChangeHandler = function(event) {
var target = this.activeElement,
handler = target && ko.utils.domData.get(target, selectionChangeHandlerName);
if (handler) {
handler(event);
}
};
var registerForSelectionChangeEvent = function (element, handler) {
var ownerDoc = element.ownerDocument;
if (!ko.utils.domData.get(ownerDoc, selectionChangeRegisteredName)) {
ko.utils.domData.set(ownerDoc, selectionChangeRegisteredName, true);
ko.utils.registerEventHandler(ownerDoc, 'selectionchange', selectionChangeHandler);
}
ko.utils.domData.set(element, selectionChangeHandlerName, handler);
};
}
ko.bindingHandlers['textInput'] = {
'init': function (element, valueAccessor, allBindings) {
var previousElementValue = element.value,
timeoutHandle,
elementValueBeforeEvent;
var updateModel = function (event) {
clearTimeout(timeoutHandle);
elementValueBeforeEvent = timeoutHandle = undefined;
var elementValue = element.value;
if (previousElementValue !== elementValue) {
// Provide a way for tests to know exactly which event was processed
if (DEBUG && event) element['_ko_textInputProcessedEvent'] = event.type;
previousElementValue = elementValue;
ko.expressionRewriting.writeValueToProperty(valueAccessor(), allBindings, 'textInput', elementValue);
}
};
var deferUpdateModel = function (event) {
if (!timeoutHandle) {
// The elementValueBeforeEvent variable is set *only* during the brief gap between an
// event firing and the updateModel function running. This allows us to ignore model
// updates that are from the previous state of the element, usually due to techniques
// such as rateLimit. Such updates, if not ignored, can cause keystrokes to be lost.
elementValueBeforeEvent = element.value;
var handler = DEBUG ? updateModel.bind(element, {type: event.type}) : updateModel;
timeoutHandle = setTimeout(handler, 4);
}
};
var updateView = function () {
var modelValue = ko.utils.unwrapObservable(valueAccessor());
if (modelValue === null || modelValue === undefined) {
modelValue = '';
}
if (elementValueBeforeEvent !== undefined && modelValue === elementValueBeforeEvent) {
setTimeout(updateView, 4);
return;
}
// Update the element only if the element and model are different. On some browsers, updating the value
// will move the cursor to the end of the input, which would be bad while the user is typing.
if (element.value !== modelValue) {
previousElementValue = modelValue; // Make sure we ignore events (propertychange) that result from updating the value
element.value = modelValue;
}
};
var onEvent = function (event, handler) {
ko.utils.registerEventHandler(element, event, handler);
};
if (DEBUG && ko.bindingHandlers['textInput']['_forceUpdateOn']) {
// Provide a way for tests to specify exactly which events are bound
ko.utils.arrayForEach(ko.bindingHandlers['textInput']['_forceUpdateOn'], function(eventName) {
if (eventName.slice(0,5) == 'after') {
onEvent(eventName.slice(5), deferUpdateModel);
} else {
onEvent(eventName, updateModel);
}
});
} else {
if (ko.utils.ieVersion < 10) {
// Internet Explorer <= 8 doesn't support the 'input' event, but does include 'propertychange' that fires whenever
// any property of an element changes. Unlike 'input', it also fires if a property is changed from JavaScript code,
// but that's an acceptable compromise for this binding. IE 9 does support 'input', but since it doesn't fire it
// when using autocomplete, we'll use 'propertychange' for it also.
onEvent('propertychange', function(event) {
if (event.propertyName === 'value') {
updateModel(event);
}
});
if (ko.utils.ieVersion == 8) {
// IE 8 has a bug where it fails to fire 'propertychange' on the first update following a value change from
// JavaScript code. It also doesn't fire if you clear the entire value. To fix this, we bind to the following
// events too.
onEvent('keyup', updateModel); // A single keystoke
onEvent('keydown', updateModel); // The first character when a key is held down
}
if (ko.utils.ieVersion >= 8) {
// Internet Explorer 9 doesn't fire the 'input' event when deleting text, including using
// the backspace, delete, or ctrl-x keys, clicking the 'x' to clear the input, dragging text
// out of the field, and cutting or deleting text using the context menu. 'selectionchange'
// can detect all of those except dragging text out of the field, for which we use 'dragend'.
// These are also needed in IE8 because of the bug described above.
registerForSelectionChangeEvent(element, updateModel); // 'selectionchange' covers cut, paste, drop, delete, etc.
onEvent('dragend', deferUpdateModel);
}
} else {
// All other supported browsers support the 'input' event, which fires whenever the content of the element is changed
// through the user interface.
onEvent('input', updateModel);
if (safariVersion < 5 && ko.utils.tagNameLower(element) === "textarea") {
// Safari <5 doesn't fire the 'input' event for <textarea> elements (it does fire 'textInput'
// but only when typing). So we'll just catch as much as we can with keydown, cut, and paste.
onEvent('keydown', deferUpdateModel);
onEvent('paste', deferUpdateModel);
onEvent('cut', deferUpdateModel);
} else if (operaVersion < 11) {
// Opera 10 doesn't always fire the 'input' event for cut, paste, undo & drop operations.
// We can try to catch some of those using 'keydown'.
onEvent('keydown', deferUpdateModel);
} else if (firefoxVersion < 4.0) {
// Firefox <= 3.6 doesn't fire the 'input' event when text is filled in through autocomplete
onEvent('DOMAutoComplete', updateModel);
// Firefox <=3.5 doesn't fire the 'input' event when text is dropped into the input.
onEvent('dragdrop', updateModel); // <3.5
onEvent('drop', updateModel); // 3.5
}
}
}
// Bind to the change event so that we can catch programmatic updates of the value that fire this event.
onEvent('change', updateModel);
ko.computed(updateView, null, { disposeWhenNodeIsRemoved: element });
}
};
ko.expressionRewriting.twoWayBindings['textInput'] = true;
// textinput is an alias for textInput
ko.bindingHandlers['textinput'] = {
// preprocess is the only way to set up a full alias
'preprocess': function (value, name, addBinding) {
addBinding('textInput', value);
}
};
})();ko.bindingHandlers['uniqueName'] = {
'init': function (element, valueAccessor) {
if (valueAccessor()) {
var name = "ko_unique_" + (++ko.bindingHandlers['uniqueName'].currentIndex);
ko.utils.setElementName(element, name);
}
}
};
ko.bindingHandlers['uniqueName'].currentIndex = 0;
ko.bindingHandlers['value'] = {
'after': ['options', 'foreach'],
'init': function (element, valueAccessor, allBindings) {
// If the value binding is placed on a radio/checkbox, then just pass through to checkedValue and quit
if (element.tagName.toLowerCase() == "input" && (element.type == "checkbox" || element.type == "radio")) {
ko.applyBindingAccessorsToNode(element, { 'checkedValue': valueAccessor });
return;
}
// Always catch "change" event; possibly other events too if asked
var eventsToCatch = ["change"];
var requestedEventsToCatch = allBindings.get("valueUpdate");
var propertyChangedFired = false;
var elementValueBeforeEvent = null;
if (requestedEventsToCatch) {
if (typeof requestedEventsToCatch == "string") // Allow both individual event names, and arrays of event names
requestedEventsToCatch = [requestedEventsToCatch];
ko.utils.arrayPushAll(eventsToCatch, requestedEventsToCatch);
eventsToCatch = ko.utils.arrayGetDistinctValues(eventsToCatch);
}
var valueUpdateHandler = function() {
elementValueBeforeEvent = null;
propertyChangedFired = false;
var modelValue = valueAccessor();
var elementValue = ko.selectExtensions.readValue(element);
ko.expressionRewriting.writeValueToProperty(modelValue, allBindings, 'value', elementValue);
}
// Workaround for https://github.com/SteveSanderson/knockout/issues/122
// IE doesn't fire "change" events on textboxes if the user selects a value from its autocomplete list
var ieAutoCompleteHackNeeded = ko.utils.ieVersion && element.tagName.toLowerCase() == "input" && element.type == "text"
&& element.autocomplete != "off" && (!element.form || element.form.autocomplete != "off");
if (ieAutoCompleteHackNeeded && ko.utils.arrayIndexOf(eventsToCatch, "propertychange") == -1) {
ko.utils.registerEventHandler(element, "propertychange", function () { propertyChangedFired = true });
ko.utils.registerEventHandler(element, "focus", function () { propertyChangedFired = false });
ko.utils.registerEventHandler(element, "blur", function() {
if (propertyChangedFired) {
valueUpdateHandler();
}
});
}
ko.utils.arrayForEach(eventsToCatch, function(eventName) {
// The syntax "after<eventname>" means "run the handler asynchronously after the event"
// This is useful, for example, to catch "keydown" events after the browser has updated the control
// (otherwise, ko.selectExtensions.readValue(this) will receive the control's value *before* the key event)
var handler = valueUpdateHandler;
if (ko.utils.stringStartsWith(eventName, "after")) {
handler = function() {
// The elementValueBeforeEvent variable is non-null *only* during the brief gap between
// a keyX event firing and the valueUpdateHandler running, which is scheduled to happen
// at the earliest asynchronous opportunity. We store this temporary information so that
// if, between keyX and valueUpdateHandler, the underlying model value changes separately,
// we can overwrite that model value change with the value the user just typed. Otherwise,
// techniques like rateLimit can trigger model changes at critical moments that will
// override the user's inputs, causing keystrokes to be lost.
elementValueBeforeEvent = ko.selectExtensions.readValue(element);
setTimeout(valueUpdateHandler, 0);
};
eventName = eventName.substring("after".length);
}
ko.utils.registerEventHandler(element, eventName, handler);
});
var updateFromModel = function () {
var newValue = ko.utils.unwrapObservable(valueAccessor());
var elementValue = ko.selectExtensions.readValue(element);
if (elementValueBeforeEvent !== null && newValue === elementValueBeforeEvent) {
setTimeout(updateFromModel, 0);
return;
}
var valueHasChanged = (newValue !== elementValue);
if (valueHasChanged) {
if (ko.utils.tagNameLower(element) === "select") {
var allowUnset = allBindings.get('valueAllowUnset');
var applyValueAction = function () {
ko.selectExtensions.writeValue(element, newValue, allowUnset);
};
applyValueAction();
if (!allowUnset && newValue !== ko.selectExtensions.readValue(element)) {
// If you try to set a model value that can't be represented in an already-populated dropdown, reject that change,
// because you're not allowed to have a model value that disagrees with a visible UI selection.
ko.dependencyDetection.ignore(ko.utils.triggerEvent, null, [element, "change"]);
} else {
// Workaround for IE6 bug: It won't reliably apply values to SELECT nodes during the same execution thread
// right after you've changed the set of OPTION nodes on it. So for that node type, we'll schedule a second thread
// to apply the value as well.
setTimeout(applyValueAction, 0);
}
} else {
ko.selectExtensions.writeValue(element, newValue);
}
}
};
ko.computed(updateFromModel, null, { disposeWhenNodeIsRemoved: element });
},
'update': function() {} // Keep for backwards compatibility with code that may have wrapped value binding
};
ko.expressionRewriting.twoWayBindings['value'] = true;
ko.bindingHandlers['visible'] = {
'update': function (element, valueAccessor) {
var value = ko.utils.unwrapObservable(valueAccessor());
var isCurrentlyVisible = !(element.style.display == "none");
if (value && !isCurrentlyVisible)
element.style.display = "";
else if ((!value) && isCurrentlyVisible)
element.style.display = "none";
}
};
// 'click' is just a shorthand for the usual full-length event:{click:handler}
makeEventHandlerShortcut('click');
// If you want to make a custom template engine,
//
// [1] Inherit from this class (like ko.nativeTemplateEngine does)
// [2] Override 'renderTemplateSource', supplying a function with this signature:
//
// function (templateSource, bindingContext, options) {
// // - templateSource.text() is the text of the template you should render
// // - bindingContext.$data is the data you should pass into the template
// // - you might also want to make bindingContext.$parent, bindingContext.$parents,
// // and bindingContext.$root available in the template too
// // - options gives you access to any other properties set on "data-bind: { template: options }"
// // - templateDocument is the document object of the template
// //
// // Return value: an array of DOM nodes
// }
//
// [3] Override 'createJavaScriptEvaluatorBlock', supplying a function with this signature:
//
// function (script) {
// // Return value: Whatever syntax means "Evaluate the JavaScript statement 'script' and output the result"
// // For example, the jquery.tmpl template engine converts 'someScript' to '${ someScript }'
// }
//
// This is only necessary if you want to allow data-bind attributes to reference arbitrary template variables.
// If you don't want to allow that, you can set the property 'allowTemplateRewriting' to false (like ko.nativeTemplateEngine does)
// and then you don't need to override 'createJavaScriptEvaluatorBlock'.
ko.templateEngine = function () { };
ko.templateEngine.prototype['renderTemplateSource'] = function (templateSource, bindingContext, options, templateDocument) {
throw new Error("Override renderTemplateSource");
};
ko.templateEngine.prototype['createJavaScriptEvaluatorBlock'] = function (script) {
throw new Error("Override createJavaScriptEvaluatorBlock");
};
ko.templateEngine.prototype['makeTemplateSource'] = function(template, templateDocument) {
// Named template
if (typeof template == "string") {
templateDocument = templateDocument || document;
var elem = templateDocument.getElementById(template);
if (!elem)
throw new Error("Cannot find template with ID " + template);
return new ko.templateSources.domElement(elem);
} else if ((template.nodeType == 1) || (template.nodeType == 8)) {
// Anonymous template
return new ko.templateSources.anonymousTemplate(template);
} else
throw new Error("Unknown template type: " + template);
};
ko.templateEngine.prototype['renderTemplate'] = function (template, bindingContext, options, templateDocument) {
var templateSource = this['makeTemplateSource'](template, templateDocument);
return this['renderTemplateSource'](templateSource, bindingContext, options, templateDocument);
};
ko.templateEngine.prototype['isTemplateRewritten'] = function (template, templateDocument) {
// Skip rewriting if requested
if (this['allowTemplateRewriting'] === false)
return true;
return this['makeTemplateSource'](template, templateDocument)['data']("isRewritten");
};
ko.templateEngine.prototype['rewriteTemplate'] = function (template, rewriterCallback, templateDocument) {
var templateSource = this['makeTemplateSource'](template, templateDocument);
var rewritten = rewriterCallback(templateSource['text']());
templateSource['text'](rewritten);
templateSource['data']("isRewritten", true);
};
ko.exportSymbol('templateEngine', ko.templateEngine);
ko.templateRewriting = (function () {
var memoizeDataBindingAttributeSyntaxRegex = /(<([a-z]+\d*)(?:\s+(?!data-bind\s*=\s*)[a-z0-9\-]+(?:=(?:\"[^\"]*\"|\'[^\']*\'|[^>]*))?)*\s+)data-bind\s*=\s*(["'])([\s\S]*?)\3/gi;
var memoizeVirtualContainerBindingSyntaxRegex = /<!--\s*ko\b\s*([\s\S]*?)\s*-->/g;
function validateDataBindValuesForRewriting(keyValueArray) {
var allValidators = ko.expressionRewriting.bindingRewriteValidators;
for (var i = 0; i < keyValueArray.length; i++) {
var key = keyValueArray[i]['key'];
if (allValidators.hasOwnProperty(key)) {
var validator = allValidators[key];
if (typeof validator === "function") {
var possibleErrorMessage = validator(keyValueArray[i]['value']);
if (possibleErrorMessage)
throw new Error(possibleErrorMessage);
} else if (!validator) {
throw new Error("This template engine does not support the '" + key + "' binding within its templates");
}
}
}
}
function constructMemoizedTagReplacement(dataBindAttributeValue, tagToRetain, nodeName, templateEngine) {
var dataBindKeyValueArray = ko.expressionRewriting.parseObjectLiteral(dataBindAttributeValue);
validateDataBindValuesForRewriting(dataBindKeyValueArray);
var rewrittenDataBindAttributeValue = ko.expressionRewriting.preProcessBindings(dataBindKeyValueArray, {'valueAccessors':true});
// For no obvious reason, Opera fails to evaluate rewrittenDataBindAttributeValue unless it's wrapped in an additional
// anonymous function, even though Opera's built-in debugger can evaluate it anyway. No other browser requires this
// extra indirection.
var applyBindingsToNextSiblingScript =
"ko.__tr_ambtns(function($context,$element){return(function(){return{ " + rewrittenDataBindAttributeValue + " } })()},'" + nodeName.toLowerCase() + "')";
return templateEngine['createJavaScriptEvaluatorBlock'](applyBindingsToNextSiblingScript) + tagToRetain;
}
return {
ensureTemplateIsRewritten: function (template, templateEngine, templateDocument) {
if (!templateEngine['isTemplateRewritten'](template, templateDocument))
templateEngine['rewriteTemplate'](template, function (htmlString) {
return ko.templateRewriting.memoizeBindingAttributeSyntax(htmlString, templateEngine);
}, templateDocument);
},
memoizeBindingAttributeSyntax: function (htmlString, templateEngine) {
return htmlString.replace(memoizeDataBindingAttributeSyntaxRegex, function () {
return constructMemoizedTagReplacement(/* dataBindAttributeValue: */ arguments[4], /* tagToRetain: */ arguments[1], /* nodeName: */ arguments[2], templateEngine);
}).replace(memoizeVirtualContainerBindingSyntaxRegex, function() {
return constructMemoizedTagReplacement(/* dataBindAttributeValue: */ arguments[1], /* tagToRetain: */ "<!-- ko -->", /* nodeName: */ "#comment", templateEngine);
});
},
applyMemoizedBindingsToNextSibling: function (bindings, nodeName) {
return ko.memoization.memoize(function (domNode, bindingContext) {
var nodeToBind = domNode.nextSibling;
if (nodeToBind && nodeToBind.nodeName.toLowerCase() === nodeName) {
ko.applyBindingAccessorsToNode(nodeToBind, bindings, bindingContext);
}
});
}
}
})();
// Exported only because it has to be referenced by string lookup from within rewritten template
ko.exportSymbol('__tr_ambtns', ko.templateRewriting.applyMemoizedBindingsToNextSibling);
(function() {
// A template source represents a read/write way of accessing a template. This is to eliminate the need for template loading/saving
// logic to be duplicated in every template engine (and means they can all work with anonymous templates, etc.)
//
// Two are provided by default:
// 1. ko.templateSources.domElement - reads/writes the text content of an arbitrary DOM element
// 2. ko.templateSources.anonymousElement - uses ko.utils.domData to read/write text *associated* with the DOM element, but
// without reading/writing the actual element text content, since it will be overwritten
// with the rendered template output.
// You can implement your own template source if you want to fetch/store templates somewhere other than in DOM elements.
// Template sources need to have the following functions:
// text() - returns the template text from your storage location
// text(value) - writes the supplied template text to your storage location
// data(key) - reads values stored using data(key, value) - see below
// data(key, value) - associates "value" with this template and the key "key". Is used to store information like "isRewritten".
//
// Optionally, template sources can also have the following functions:
// nodes() - returns a DOM element containing the nodes of this template, where available
// nodes(value) - writes the given DOM element to your storage location
// If a DOM element is available for a given template source, template engines are encouraged to use it in preference over text()
// for improved speed. However, all templateSources must supply text() even if they don't supply nodes().
//
// Once you've implemented a templateSource, make your template engine use it by subclassing whatever template engine you were
// using and overriding "makeTemplateSource" to return an instance of your custom template source.
ko.templateSources = {};
// ---- ko.templateSources.domElement -----
ko.templateSources.domElement = function(element) {
this.domElement = element;
}
ko.templateSources.domElement.prototype['text'] = function(/* valueToWrite */) {
var tagNameLower = ko.utils.tagNameLower(this.domElement),
elemContentsProperty = tagNameLower === "script" ? "text"
: tagNameLower === "textarea" ? "value"
: "innerHTML";
if (arguments.length == 0) {
return this.domElement[elemContentsProperty];
} else {
var valueToWrite = arguments[0];
if (elemContentsProperty === "innerHTML")
ko.utils.setHtml(this.domElement, valueToWrite);
else
this.domElement[elemContentsProperty] = valueToWrite;
}
};
var dataDomDataPrefix = ko.utils.domData.nextKey() + "_";
ko.templateSources.domElement.prototype['data'] = function(key /*, valueToWrite */) {
if (arguments.length === 1) {
return ko.utils.domData.get(this.domElement, dataDomDataPrefix + key);
} else {
ko.utils.domData.set(this.domElement, dataDomDataPrefix + key, arguments[1]);
}
};
// ---- ko.templateSources.anonymousTemplate -----
// Anonymous templates are normally saved/retrieved as DOM nodes through "nodes".
// For compatibility, you can also read "text"; it will be serialized from the nodes on demand.
// Writing to "text" is still supported, but then the template data will not be available as DOM nodes.
var anonymousTemplatesDomDataKey = ko.utils.domData.nextKey();
ko.templateSources.anonymousTemplate = function(element) {
this.domElement = element;
}
ko.templateSources.anonymousTemplate.prototype = new ko.templateSources.domElement();
ko.templateSources.anonymousTemplate.prototype.constructor = ko.templateSources.anonymousTemplate;
ko.templateSources.anonymousTemplate.prototype['text'] = function(/* valueToWrite */) {
if (arguments.length == 0) {
var templateData = ko.utils.domData.get(this.domElement, anonymousTemplatesDomDataKey) || {};
if (templateData.textData === undefined && templateData.containerData)
templateData.textData = templateData.containerData.innerHTML;
return templateData.textData;
} else {
var valueToWrite = arguments[0];
ko.utils.domData.set(this.domElement, anonymousTemplatesDomDataKey, {textData: valueToWrite});
}
};
ko.templateSources.domElement.prototype['nodes'] = function(/* valueToWrite */) {
if (arguments.length == 0) {
var templateData = ko.utils.domData.get(this.domElement, anonymousTemplatesDomDataKey) || {};
return templateData.containerData;
} else {
var valueToWrite = arguments[0];
ko.utils.domData.set(this.domElement, anonymousTemplatesDomDataKey, {containerData: valueToWrite});
}
};
ko.exportSymbol('templateSources', ko.templateSources);
ko.exportSymbol('templateSources.domElement', ko.templateSources.domElement);
ko.exportSymbol('templateSources.anonymousTemplate', ko.templateSources.anonymousTemplate);
})();
(function () {
var _templateEngine;
ko.setTemplateEngine = function (templateEngine) {
if ((templateEngine != undefined) && !(templateEngine instanceof ko.templateEngine))
throw new Error("templateEngine must inherit from ko.templateEngine");
_templateEngine = templateEngine;
}
function invokeForEachNodeInContinuousRange(firstNode, lastNode, action) {
var node, nextInQueue = firstNode, firstOutOfRangeNode = ko.virtualElements.nextSibling(lastNode);
while (nextInQueue && ((node = nextInQueue) !== firstOutOfRangeNode)) {
nextInQueue = ko.virtualElements.nextSibling(node);
action(node, nextInQueue);
}
}
function activateBindingsOnContinuousNodeArray(continuousNodeArray, bindingContext) {
// To be used on any nodes that have been rendered by a template and have been inserted into some parent element
// Walks through continuousNodeArray (which *must* be continuous, i.e., an uninterrupted sequence of sibling nodes, because
// the algorithm for walking them relies on this), and for each top-level item in the virtual-element sense,
// (1) Does a regular "applyBindings" to associate bindingContext with this node and to activate any non-memoized bindings
// (2) Unmemoizes any memos in the DOM subtree (e.g., to activate bindings that had been memoized during template rewriting)
if (continuousNodeArray.length) {
var firstNode = continuousNodeArray[0],
lastNode = continuousNodeArray[continuousNodeArray.length - 1],
parentNode = firstNode.parentNode,
provider = ko.bindingProvider['instance'],
preprocessNode = provider['preprocessNode'];
if (preprocessNode) {
invokeForEachNodeInContinuousRange(firstNode, lastNode, function(node, nextNodeInRange) {
var nodePreviousSibling = node.previousSibling;
var newNodes = preprocessNode.call(provider, node);
if (newNodes) {
if (node === firstNode)
firstNode = newNodes[0] || nextNodeInRange;
if (node === lastNode)
lastNode = newNodes[newNodes.length - 1] || nodePreviousSibling;
}
});
// Because preprocessNode can change the nodes, including the first and last nodes, update continuousNodeArray to match.
// We need the full set, including inner nodes, because the unmemoize step might remove the first node (and so the real
// first node needs to be in the array).
continuousNodeArray.length = 0;
if (!firstNode) { // preprocessNode might have removed all the nodes, in which case there's nothing left to do
return;
}
if (firstNode === lastNode) {
continuousNodeArray.push(firstNode);
} else {
continuousNodeArray.push(firstNode, lastNode);
ko.utils.fixUpContinuousNodeArray(continuousNodeArray, parentNode);
}
}
// Need to applyBindings *before* unmemoziation, because unmemoization might introduce extra nodes (that we don't want to re-bind)
// whereas a regular applyBindings won't introduce new memoized nodes
invokeForEachNodeInContinuousRange(firstNode, lastNode, function(node) {
if (node.nodeType === 1 || node.nodeType === 8)
ko.applyBindings(bindingContext, node);
});
invokeForEachNodeInContinuousRange(firstNode, lastNode, function(node) {
if (node.nodeType === 1 || node.nodeType === 8)
ko.memoization.unmemoizeDomNodeAndDescendants(node, [bindingContext]);
});
// Make sure any changes done by applyBindings or unmemoize are reflected in the array
ko.utils.fixUpContinuousNodeArray(continuousNodeArray, parentNode);
}
}
function getFirstNodeFromPossibleArray(nodeOrNodeArray) {
return nodeOrNodeArray.nodeType ? nodeOrNodeArray
: nodeOrNodeArray.length > 0 ? nodeOrNodeArray[0]
: null;
}
function executeTemplate(targetNodeOrNodeArray, renderMode, template, bindingContext, options) {
options = options || {};
var firstTargetNode = targetNodeOrNodeArray && getFirstNodeFromPossibleArray(targetNodeOrNodeArray);
var templateDocument = (firstTargetNode || template || {}).ownerDocument;
var templateEngineToUse = (options['templateEngine'] || _templateEngine);
ko.templateRewriting.ensureTemplateIsRewritten(template, templateEngineToUse, templateDocument);
var renderedNodesArray = templateEngineToUse['renderTemplate'](template, bindingContext, options, templateDocument);
// Loosely check result is an array of DOM nodes
if ((typeof renderedNodesArray.length != "number") || (renderedNodesArray.length > 0 && typeof renderedNodesArray[0].nodeType != "number"))
throw new Error("Template engine must return an array of DOM nodes");
var haveAddedNodesToParent = false;
switch (renderMode) {
case "replaceChildren":
ko.virtualElements.setDomNodeChildren(targetNodeOrNodeArray, renderedNodesArray);
haveAddedNodesToParent = true;
break;
case "replaceNode":
ko.utils.replaceDomNodes(targetNodeOrNodeArray, renderedNodesArray);
haveAddedNodesToParent = true;
break;
case "ignoreTargetNode": break;
default:
throw new Error("Unknown renderMode: " + renderMode);
}
if (haveAddedNodesToParent) {
activateBindingsOnContinuousNodeArray(renderedNodesArray, bindingContext);
if (options['afterRender'])
ko.dependencyDetection.ignore(options['afterRender'], null, [renderedNodesArray, bindingContext['$data']]);
}
return renderedNodesArray;
}
function resolveTemplateName(template, data, context) {
// The template can be specified as:
if (ko.isObservable(template)) {
// 1. An observable, with string value
return template();
} else if (typeof template === 'function') {
// 2. A function of (data, context) returning a string
return template(data, context);
} else {
// 3. A string
return template;
}
}
ko.renderTemplate = function (template, dataOrBindingContext, options, targetNodeOrNodeArray, renderMode) {
options = options || {};
if ((options['templateEngine'] || _templateEngine) == undefined)
throw new Error("Set a template engine before calling renderTemplate");
renderMode = renderMode || "replaceChildren";
if (targetNodeOrNodeArray) {
var firstTargetNode = getFirstNodeFromPossibleArray(targetNodeOrNodeArray);
var whenToDispose = function () { return (!firstTargetNode) || !ko.utils.domNodeIsAttachedToDocument(firstTargetNode); }; // Passive disposal (on next evaluation)
var activelyDisposeWhenNodeIsRemoved = (firstTargetNode && renderMode == "replaceNode") ? firstTargetNode.parentNode : firstTargetNode;
return ko.dependentObservable( // So the DOM is automatically updated when any dependency changes
function () {
// Ensure we've got a proper binding context to work with
var bindingContext = (dataOrBindingContext && (dataOrBindingContext instanceof ko.bindingContext))
? dataOrBindingContext
: new ko.bindingContext(ko.utils.unwrapObservable(dataOrBindingContext));
var templateName = resolveTemplateName(template, bindingContext['$data'], bindingContext),
renderedNodesArray = executeTemplate(targetNodeOrNodeArray, renderMode, templateName, bindingContext, options);
if (renderMode == "replaceNode") {
targetNodeOrNodeArray = renderedNodesArray;
firstTargetNode = getFirstNodeFromPossibleArray(targetNodeOrNodeArray);
}
},
null,
{ disposeWhen: whenToDispose, disposeWhenNodeIsRemoved: activelyDisposeWhenNodeIsRemoved }
);
} else {
// We don't yet have a DOM node to evaluate, so use a memo and render the template later when there is a DOM node
return ko.memoization.memoize(function (domNode) {
ko.renderTemplate(template, dataOrBindingContext, options, domNode, "replaceNode");
});
}
};
ko.renderTemplateForEach = function (template, arrayOrObservableArray, options, targetNode, parentBindingContext) {
// Since setDomNodeChildrenFromArrayMapping always calls executeTemplateForArrayItem and then
// activateBindingsCallback for added items, we can store the binding context in the former to use in the latter.
var arrayItemContext;
// This will be called by setDomNodeChildrenFromArrayMapping to get the nodes to add to targetNode
var executeTemplateForArrayItem = function (arrayValue, index) {
// Support selecting template as a function of the data being rendered
arrayItemContext = parentBindingContext['createChildContext'](arrayValue, options['as'], function(context) {
context['$index'] = index;
});
var templateName = resolveTemplateName(template, arrayValue, arrayItemContext);
return executeTemplate(null, "ignoreTargetNode", templateName, arrayItemContext, options);
}
// This will be called whenever setDomNodeChildrenFromArrayMapping has added nodes to targetNode
var activateBindingsCallback = function(arrayValue, addedNodesArray, index) {
activateBindingsOnContinuousNodeArray(addedNodesArray, arrayItemContext);
if (options['afterRender'])
options['afterRender'](addedNodesArray, arrayValue);
// release the "cache" variable, so that it can be collected by
// the GC when its value isn't used from within the bindings anymore.
arrayItemContext = null;
};
return ko.dependentObservable(function () {
var unwrappedArray = ko.utils.unwrapObservable(arrayOrObservableArray) || [];
if (typeof unwrappedArray.length == "undefined") // Coerce single value into array
unwrappedArray = [unwrappedArray];
// Filter out any entries marked as destroyed
var filteredArray = ko.utils.arrayFilter(unwrappedArray, function(item) {
return options['includeDestroyed'] || item === undefined || item === null || !ko.utils.unwrapObservable(item['_destroy']);
});
// Call setDomNodeChildrenFromArrayMapping, ignoring any observables unwrapped within (most likely from a callback function).
// If the array items are observables, though, they will be unwrapped in executeTemplateForArrayItem and managed within setDomNodeChildrenFromArrayMapping.
ko.dependencyDetection.ignore(ko.utils.setDomNodeChildrenFromArrayMapping, null, [targetNode, filteredArray, executeTemplateForArrayItem, options, activateBindingsCallback]);
}, null, { disposeWhenNodeIsRemoved: targetNode });
};
var templateComputedDomDataKey = ko.utils.domData.nextKey();
function disposeOldComputedAndStoreNewOne(element, newComputed) {
var oldComputed = ko.utils.domData.get(element, templateComputedDomDataKey);
if (oldComputed && (typeof(oldComputed.dispose) == 'function'))
oldComputed.dispose();
ko.utils.domData.set(element, templateComputedDomDataKey, (newComputed && newComputed.isActive()) ? newComputed : undefined);
}
ko.bindingHandlers['template'] = {
'init': function(element, valueAccessor) {
// Support anonymous templates
var bindingValue = ko.utils.unwrapObservable(valueAccessor());
if (typeof bindingValue == "string" || bindingValue['name']) {
// It's a named template - clear the element
ko.virtualElements.emptyNode(element);
} else if ('nodes' in bindingValue) {
// We've been given an array of DOM nodes. Save them as the template source.
// There is no known use case for the node array being an observable array (if the output
// varies, put that behavior *into* your template - that's what templates are for), and
// the implementation would be a mess, so assert that it's not observable.
var nodes = bindingValue['nodes'] || [];
if (ko.isObservable(nodes)) {
throw new Error('The "nodes" option must be a plain, non-observable array.');
}
var container = ko.utils.moveCleanedNodesToContainerElement(nodes); // This also removes the nodes from their current parent
new ko.templateSources.anonymousTemplate(element)['nodes'](container);
} else {
// It's an anonymous template - store the element contents, then clear the element
var templateNodes = ko.virtualElements.childNodes(element),
container = ko.utils.moveCleanedNodesToContainerElement(templateNodes); // This also removes the nodes from their current parent
new ko.templateSources.anonymousTemplate(element)['nodes'](container);
}
return { 'controlsDescendantBindings': true };
},
'update': function (element, valueAccessor, allBindings, viewModel, bindingContext) {
var value = valueAccessor(),
dataValue,
options = ko.utils.unwrapObservable(value),
shouldDisplay = true,
templateComputed = null,
templateName;
if (typeof options == "string") {
templateName = value;
options = {};
} else {
templateName = options['name'];
// Support "if"/"ifnot" conditions
if ('if' in options)
shouldDisplay = ko.utils.unwrapObservable(options['if']);
if (shouldDisplay && 'ifnot' in options)
shouldDisplay = !ko.utils.unwrapObservable(options['ifnot']);
dataValue = ko.utils.unwrapObservable(options['data']);
}
if ('foreach' in options) {
// Render once for each data point (treating data set as empty if shouldDisplay==false)
var dataArray = (shouldDisplay && options['foreach']) || [];
templateComputed = ko.renderTemplateForEach(templateName || element, dataArray, options, element, bindingContext);
} else if (!shouldDisplay) {
ko.virtualElements.emptyNode(element);
} else {
// Render once for this single data point (or use the viewModel if no data was provided)
var innerBindingContext = ('data' in options) ?
bindingContext['createChildContext'](dataValue, options['as']) : // Given an explitit 'data' value, we create a child binding context for it
bindingContext; // Given no explicit 'data' value, we retain the same binding context
templateComputed = ko.renderTemplate(templateName || element, innerBindingContext, options, element);
}
// It only makes sense to have a single template computed per element (otherwise which one should have its output displayed?)
disposeOldComputedAndStoreNewOne(element, templateComputed);
}
};
// Anonymous templates can't be rewritten. Give a nice error message if you try to do it.
ko.expressionRewriting.bindingRewriteValidators['template'] = function(bindingValue) {
var parsedBindingValue = ko.expressionRewriting.parseObjectLiteral(bindingValue);
if ((parsedBindingValue.length == 1) && parsedBindingValue[0]['unknown'])
return null; // It looks like a string literal, not an object literal, so treat it as a named template (which is allowed for rewriting)
if (ko.expressionRewriting.keyValueArrayContainsKey(parsedBindingValue, "name"))
return null; // Named templates can be rewritten, so return "no error"
return "This template engine does not support anonymous templates nested within its templates";
};
ko.virtualElements.allowedBindings['template'] = true;
})();
ko.exportSymbol('setTemplateEngine', ko.setTemplateEngine);
ko.exportSymbol('renderTemplate', ko.renderTemplate);
// Go through the items that have been added and deleted and try to find matches between them.
ko.utils.findMovesInArrayComparison = function (left, right, limitFailedCompares) {
if (left.length && right.length) {
var failedCompares, l, r, leftItem, rightItem;
for (failedCompares = l = 0; (!limitFailedCompares || failedCompares < limitFailedCompares) && (leftItem = left[l]); ++l) {
for (r = 0; rightItem = right[r]; ++r) {
if (leftItem['value'] === rightItem['value']) {
leftItem['moved'] = rightItem['index'];
rightItem['moved'] = leftItem['index'];
right.splice(r, 1); // This item is marked as moved; so remove it from right list
failedCompares = r = 0; // Reset failed compares count because we're checking for consecutive failures
break;
}
}
failedCompares += r;
}
}
};
ko.utils.compareArrays = (function () {
var statusNotInOld = 'added', statusNotInNew = 'deleted';
// Simple calculation based on Levenshtein distance.
function compareArrays(oldArray, newArray, options) {
// For backward compatibility, if the third arg is actually a bool, interpret
// it as the old parameter 'dontLimitMoves'. Newer code should use { dontLimitMoves: true }.
options = (typeof options === 'boolean') ? { 'dontLimitMoves': options } : (options || {});
oldArray = oldArray || [];
newArray = newArray || [];
if (oldArray.length <= newArray.length)
return compareSmallArrayToBigArray(oldArray, newArray, statusNotInOld, statusNotInNew, options);
else
return compareSmallArrayToBigArray(newArray, oldArray, statusNotInNew, statusNotInOld, options);
}
function compareSmallArrayToBigArray(smlArray, bigArray, statusNotInSml, statusNotInBig, options) {
var myMin = Math.min,
myMax = Math.max,
editDistanceMatrix = [],
smlIndex, smlIndexMax = smlArray.length,
bigIndex, bigIndexMax = bigArray.length,
compareRange = (bigIndexMax - smlIndexMax) || 1,
maxDistance = smlIndexMax + bigIndexMax + 1,
thisRow, lastRow,
bigIndexMaxForRow, bigIndexMinForRow;
for (smlIndex = 0; smlIndex <= smlIndexMax; smlIndex++) {
lastRow = thisRow;
editDistanceMatrix.push(thisRow = []);
bigIndexMaxForRow = myMin(bigIndexMax, smlIndex + compareRange);
bigIndexMinForRow = myMax(0, smlIndex - 1);
for (bigIndex = bigIndexMinForRow; bigIndex <= bigIndexMaxForRow; bigIndex++) {
if (!bigIndex)
thisRow[bigIndex] = smlIndex + 1;
else if (!smlIndex) // Top row - transform empty array into new array via additions
thisRow[bigIndex] = bigIndex + 1;
else if (smlArray[smlIndex - 1] === bigArray[bigIndex - 1])
thisRow[bigIndex] = lastRow[bigIndex - 1]; // copy value (no edit)
else {
var northDistance = lastRow[bigIndex] || maxDistance; // not in big (deletion)
var westDistance = thisRow[bigIndex - 1] || maxDistance; // not in small (addition)
thisRow[bigIndex] = myMin(northDistance, westDistance) + 1;
}
}
}
var editScript = [], meMinusOne, notInSml = [], notInBig = [];
for (smlIndex = smlIndexMax, bigIndex = bigIndexMax; smlIndex || bigIndex;) {
meMinusOne = editDistanceMatrix[smlIndex][bigIndex] - 1;
if (bigIndex && meMinusOne === editDistanceMatrix[smlIndex][bigIndex-1]) {
notInSml.push(editScript[editScript.length] = { // added
'status': statusNotInSml,
'value': bigArray[--bigIndex],
'index': bigIndex });
} else if (smlIndex && meMinusOne === editDistanceMatrix[smlIndex - 1][bigIndex]) {
notInBig.push(editScript[editScript.length] = { // deleted
'status': statusNotInBig,
'value': smlArray[--smlIndex],
'index': smlIndex });
} else {
--bigIndex;
--smlIndex;
if (!options['sparse']) {
editScript.push({
'status': "retained",
'value': bigArray[bigIndex] });
}
}
}
// Set a limit on the number of consecutive non-matching comparisons; having it a multiple of
// smlIndexMax keeps the time complexity of this algorithm linear.
ko.utils.findMovesInArrayComparison(notInSml, notInBig, smlIndexMax * 10);
return editScript.reverse();
}
return compareArrays;
})();
ko.exportSymbol('utils.compareArrays', ko.utils.compareArrays);
(function () {
// Objective:
// * Given an input array, a container DOM node, and a function from array elements to arrays of DOM nodes,
// map the array elements to arrays of DOM nodes, concatenate together all these arrays, and use them to populate the container DOM node
// * Next time we're given the same combination of things (with the array possibly having mutated), update the container DOM node
// so that its children is again the concatenation of the mappings of the array elements, but don't re-map any array elements that we
// previously mapped - retain those nodes, and just insert/delete other ones
// "callbackAfterAddingNodes" will be invoked after any "mapping"-generated nodes are inserted into the container node
// You can use this, for example, to activate bindings on those nodes.
function mapNodeAndRefreshWhenChanged(containerNode, mapping, valueToMap, callbackAfterAddingNodes, index) {
// Map this array value inside a dependentObservable so we re-map when any dependency changes
var mappedNodes = [];
var dependentObservable = ko.dependentObservable(function() {
var newMappedNodes = mapping(valueToMap, index, ko.utils.fixUpContinuousNodeArray(mappedNodes, containerNode)) || [];
// On subsequent evaluations, just replace the previously-inserted DOM nodes
if (mappedNodes.length > 0) {
ko.utils.replaceDomNodes(mappedNodes, newMappedNodes);
if (callbackAfterAddingNodes)
ko.dependencyDetection.ignore(callbackAfterAddingNodes, null, [valueToMap, newMappedNodes, index]);
}
// Replace the contents of the mappedNodes array, thereby updating the record
// of which nodes would be deleted if valueToMap was itself later removed
mappedNodes.length = 0;
ko.utils.arrayPushAll(mappedNodes, newMappedNodes);
}, null, { disposeWhenNodeIsRemoved: containerNode, disposeWhen: function() { return !ko.utils.anyDomNodeIsAttachedToDocument(mappedNodes); } });
return { mappedNodes : mappedNodes, dependentObservable : (dependentObservable.isActive() ? dependentObservable : undefined) };
}
var lastMappingResultDomDataKey = ko.utils.domData.nextKey();
ko.utils.setDomNodeChildrenFromArrayMapping = function (domNode, array, mapping, options, callbackAfterAddingNodes) {
// Compare the provided array against the previous one
array = array || [];
options = options || {};
var isFirstExecution = ko.utils.domData.get(domNode, lastMappingResultDomDataKey) === undefined;
var lastMappingResult = ko.utils.domData.get(domNode, lastMappingResultDomDataKey) || [];
var lastArray = ko.utils.arrayMap(lastMappingResult, function (x) { return x.arrayEntry; });
var editScript = ko.utils.compareArrays(lastArray, array, options['dontLimitMoves']);
// Build the new mapping result
var newMappingResult = [];
var lastMappingResultIndex = 0;
var newMappingResultIndex = 0;
var nodesToDelete = [];
var itemsToProcess = [];
var itemsForBeforeRemoveCallbacks = [];
var itemsForMoveCallbacks = [];
var itemsForAfterAddCallbacks = [];
var mapData;
function itemMovedOrRetained(editScriptIndex, oldPosition) {
mapData = lastMappingResult[oldPosition];
if (newMappingResultIndex !== oldPosition)
itemsForMoveCallbacks[editScriptIndex] = mapData;
// Since updating the index might change the nodes, do so before calling fixUpContinuousNodeArray
mapData.indexObservable(newMappingResultIndex++);
ko.utils.fixUpContinuousNodeArray(mapData.mappedNodes, domNode);
newMappingResult.push(mapData);
itemsToProcess.push(mapData);
}
function callCallback(callback, items) {
if (callback) {
for (var i = 0, n = items.length; i < n; i++) {
if (items[i]) {
ko.utils.arrayForEach(items[i].mappedNodes, function(node) {
callback(node, i, items[i].arrayEntry);
});
}
}
}
}
for (var i = 0, editScriptItem, movedIndex; editScriptItem = editScript[i]; i++) {
movedIndex = editScriptItem['moved'];
switch (editScriptItem['status']) {
case "deleted":
if (movedIndex === undefined) {
mapData = lastMappingResult[lastMappingResultIndex];
// Stop tracking changes to the mapping for these nodes
if (mapData.dependentObservable)
mapData.dependentObservable.dispose();
// Queue these nodes for later removal
nodesToDelete.push.apply(nodesToDelete, ko.utils.fixUpContinuousNodeArray(mapData.mappedNodes, domNode));
if (options['beforeRemove']) {
itemsForBeforeRemoveCallbacks[i] = mapData;
itemsToProcess.push(mapData);
}
}
lastMappingResultIndex++;
break;
case "retained":
itemMovedOrRetained(i, lastMappingResultIndex++);
break;
case "added":
if (movedIndex !== undefined) {
itemMovedOrRetained(i, movedIndex);
} else {
mapData = { arrayEntry: editScriptItem['value'], indexObservable: ko.observable(newMappingResultIndex++) };
newMappingResult.push(mapData);
itemsToProcess.push(mapData);
if (!isFirstExecution)
itemsForAfterAddCallbacks[i] = mapData;
}
break;
}
}
// Call beforeMove first before any changes have been made to the DOM
callCallback(options['beforeMove'], itemsForMoveCallbacks);
// Next remove nodes for deleted items (or just clean if there's a beforeRemove callback)
ko.utils.arrayForEach(nodesToDelete, options['beforeRemove'] ? ko.cleanNode : ko.removeNode);
// Next add/reorder the remaining items (will include deleted items if there's a beforeRemove callback)
for (var i = 0, nextNode = ko.virtualElements.firstChild(domNode), lastNode, node; mapData = itemsToProcess[i]; i++) {
// Get nodes for newly added items
if (!mapData.mappedNodes)
ko.utils.extend(mapData, mapNodeAndRefreshWhenChanged(domNode, mapping, mapData.arrayEntry, callbackAfterAddingNodes, mapData.indexObservable));
// Put nodes in the right place if they aren't there already
for (var j = 0; node = mapData.mappedNodes[j]; nextNode = node.nextSibling, lastNode = node, j++) {
if (node !== nextNode)
ko.virtualElements.insertAfter(domNode, node, lastNode);
}
// Run the callbacks for newly added nodes (for example, to apply bindings, etc.)
if (!mapData.initialized && callbackAfterAddingNodes) {
callbackAfterAddingNodes(mapData.arrayEntry, mapData.mappedNodes, mapData.indexObservable);
mapData.initialized = true;
}
}
// If there's a beforeRemove callback, call it after reordering.
// Note that we assume that the beforeRemove callback will usually be used to remove the nodes using
// some sort of animation, which is why we first reorder the nodes that will be removed. If the
// callback instead removes the nodes right away, it would be more efficient to skip reordering them.
// Perhaps we'll make that change in the future if this scenario becomes more common.
callCallback(options['beforeRemove'], itemsForBeforeRemoveCallbacks);
// Finally call afterMove and afterAdd callbacks
callCallback(options['afterMove'], itemsForMoveCallbacks);
callCallback(options['afterAdd'], itemsForAfterAddCallbacks);
// Store a copy of the array items we just considered so we can difference it next time
ko.utils.domData.set(domNode, lastMappingResultDomDataKey, newMappingResult);
}
})();
ko.exportSymbol('utils.setDomNodeChildrenFromArrayMapping', ko.utils.setDomNodeChildrenFromArrayMapping);
ko.nativeTemplateEngine = function () {
this['allowTemplateRewriting'] = false;
}
ko.nativeTemplateEngine.prototype = new ko.templateEngine();
ko.nativeTemplateEngine.prototype.constructor = ko.nativeTemplateEngine;
ko.nativeTemplateEngine.prototype['renderTemplateSource'] = function (templateSource, bindingContext, options, templateDocument) {
var useNodesIfAvailable = !(ko.utils.ieVersion < 9), // IE<9 cloneNode doesn't work properly
templateNodesFunc = useNodesIfAvailable ? templateSource['nodes'] : null,
templateNodes = templateNodesFunc ? templateSource['nodes']() : null;
if (templateNodes) {
return ko.utils.makeArray(templateNodes.cloneNode(true).childNodes);
} else {
var templateText = templateSource['text']();
return ko.utils.parseHtmlFragment(templateText, templateDocument);
}
};
ko.nativeTemplateEngine.instance = new ko.nativeTemplateEngine();
ko.setTemplateEngine(ko.nativeTemplateEngine.instance);
ko.exportSymbol('nativeTemplateEngine', ko.nativeTemplateEngine);
(function() {
ko.jqueryTmplTemplateEngine = function () {
// Detect which version of jquery-tmpl you're using. Unfortunately jquery-tmpl
// doesn't expose a version number, so we have to infer it.
// Note that as of Knockout 1.3, we only support jQuery.tmpl 1.0.0pre and later,
// which KO internally refers to as version "2", so older versions are no longer detected.
var jQueryTmplVersion = this.jQueryTmplVersion = (function() {
if (!jQueryInstance || !(jQueryInstance['tmpl']))
return 0;
// Since it exposes no official version number, we use our own numbering system. To be updated as jquery-tmpl evolves.
try {
if (jQueryInstance['tmpl']['tag']['tmpl']['open'].toString().indexOf('__') >= 0) {
// Since 1.0.0pre, custom tags should append markup to an array called "__"
return 2; // Final version of jquery.tmpl
}
} catch(ex) { /* Apparently not the version we were looking for */ }
return 1; // Any older version that we don't support
})();
function ensureHasReferencedJQueryTemplates() {
if (jQueryTmplVersion < 2)
throw new Error("Your version of jQuery.tmpl is too old. Please upgrade to jQuery.tmpl 1.0.0pre or later.");
}
function executeTemplate(compiledTemplate, data, jQueryTemplateOptions) {
return jQueryInstance['tmpl'](compiledTemplate, data, jQueryTemplateOptions);
}
this['renderTemplateSource'] = function(templateSource, bindingContext, options, templateDocument) {
templateDocument = templateDocument || document;
options = options || {};
ensureHasReferencedJQueryTemplates();
// Ensure we have stored a precompiled version of this template (don't want to reparse on every render)
var precompiled = templateSource['data']('precompiled');
if (!precompiled) {
var templateText = templateSource['text']() || "";
// Wrap in "with($whatever.koBindingContext) { ... }"
templateText = "{{ko_with $item.koBindingContext}}" + templateText + "{{/ko_with}}";
precompiled = jQueryInstance['template'](null, templateText);
templateSource['data']('precompiled', precompiled);
}
var data = [bindingContext['$data']]; // Prewrap the data in an array to stop jquery.tmpl from trying to unwrap any arrays
var jQueryTemplateOptions = jQueryInstance['extend']({ 'koBindingContext': bindingContext }, options['templateOptions']);
var resultNodes = executeTemplate(precompiled, data, jQueryTemplateOptions);
resultNodes['appendTo'](templateDocument.createElement("div")); // Using "appendTo" forces jQuery/jQuery.tmpl to perform necessary cleanup work
jQueryInstance['fragments'] = {}; // Clear jQuery's fragment cache to avoid a memory leak after a large number of template renders
return resultNodes;
};
this['createJavaScriptEvaluatorBlock'] = function(script) {
return "{{ko_code ((function() { return " + script + " })()) }}";
};
this['addTemplate'] = function(templateName, templateMarkup) {
document.write("<script type='text/html' id='" + templateName + "'>" + templateMarkup + "<" + "/script>");
};
if (jQueryTmplVersion > 0) {
jQueryInstance['tmpl']['tag']['ko_code'] = {
open: "__.push($1 || '');"
};
jQueryInstance['tmpl']['tag']['ko_with'] = {
open: "with($1) {",
close: "} "
};
}
};
ko.jqueryTmplTemplateEngine.prototype = new ko.templateEngine();
ko.jqueryTmplTemplateEngine.prototype.constructor = ko.jqueryTmplTemplateEngine;
// Use this one by default *only if jquery.tmpl is referenced*
var jqueryTmplTemplateEngineInstance = new ko.jqueryTmplTemplateEngine();
if (jqueryTmplTemplateEngineInstance.jQueryTmplVersion > 0)
ko.setTemplateEngine(jqueryTmplTemplateEngineInstance);
ko.exportSymbol('jqueryTmplTemplateEngine', ko.jqueryTmplTemplateEngine);
})();
}));
}());
})();
|
train_000.parquet/775
|
{
"file_path": "js/lib/knockout.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 269933,
"token_count": 73379
}
|
/*
jQuery deparam is an extraction of the deparam method from Ben Alman's jQuery BBQ
http://benalman.com/projects/jquery-bbq-plugin/
*/
(function ($) {
$.deparam = function (params, coerce) {
var obj = {},
coerce_types = { 'true': !0, 'false': !1, 'null': null };
// Iterate over all name=value pairs.
$.each(params.replace(/\+/g, ' ').split('&'), function (j,v) {
var param = v.split('='),
key = decodeURIComponent(param[0]),
val,
cur = obj,
i = 0,
// If key is more complex than 'foo', like 'a[]' or 'a[b][c]', split it
// into its component parts.
keys = key.split(']['),
keys_last = keys.length - 1;
// If the first keys part contains [ and the last ends with ], then []
// are correctly balanced.
if (/\[/.test(keys[0]) && /\]$/.test(keys[keys_last])) {
// Remove the trailing ] from the last keys part.
keys[keys_last] = keys[keys_last].replace(/\]$/, '');
// Split first keys part into two parts on the [ and add them back onto
// the beginning of the keys array.
keys = keys.shift().split('[').concat(keys);
keys_last = keys.length - 1;
} else {
// Basic 'foo' style key.
keys_last = 0;
}
// Are we dealing with a name=value pair, or just a name?
if (param.length === 2) {
val = decodeURIComponent(param[1]);
// Coerce values.
if (coerce) {
val = val && !isNaN(val) ? +val // number
: val === 'undefined' ? undefined // undefined
: coerce_types[val] !== undefined ? coerce_types[val] // true, false, null
: val; // string
}
if ( keys_last ) {
// Complex key, build deep object structure based on a few rules:
// * The 'cur' pointer starts at the object top-level.
// * [] = array push (n is set to array length), [n] = array if n is
// numeric, otherwise object.
// * If at the last keys part, set the value.
// * For each keys part, if the current level is undefined create an
// object or array based on the type of the next keys part.
// * Move the 'cur' pointer to the next level.
// * Rinse & repeat.
for (; i <= keys_last; i++) {
key = keys[i] === '' ? cur.length : keys[i];
cur = cur[key] = i < keys_last
? cur[key] || (keys[i+1] && isNaN(keys[i+1]) ? {} : [])
: val;
}
} else {
// Simple key, even simpler rules, since only scalars and shallow
// arrays are allowed.
if ($.isArray(obj[key])) {
// val is already an array, so push on the next value.
obj[key].push( val );
} else if (obj[key] !== undefined) {
// val isn't an array, but since a second value has been specified,
// convert val into an array.
obj[key] = [obj[key], val];
} else {
// val is a scalar.
obj[key] = val;
}
}
} else if (key) {
// No value was defined, so set something meaningful.
obj[key] = coerce
? undefined
: '';
}
});
return obj;
};
})(jQuery);
|
train_000.parquet/776
|
{
"file_path": "js/lib/jquery.deparam.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 3583,
"token_count": 1062
}
|
/*!
* jQuery JavaScript Library v2.1.4
* http://jquery.com/
*
* Includes Sizzle.js
* http://sizzlejs.com/
*
* Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2015-04-28T16:01Z
*/
(function( global, factory ) {
if ( typeof module === "object" && typeof module.exports === "object" ) {
// For CommonJS and CommonJS-like environments where a proper `window`
// is present, execute the factory and get jQuery.
// For environments that do not have a `window` with a `document`
// (such as Node.js), expose a factory as module.exports.
// This accentuates the need for the creation of a real `window`.
// e.g. var jQuery = require("jquery")(window);
// See ticket #14549 for more info.
module.exports = global.document ?
factory( global, true ) :
function( w ) {
if ( !w.document ) {
throw new Error( "jQuery requires a window with a document" );
}
return factory( w );
};
} else {
factory( global );
}
// Pass this if window is not defined yet
}(typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
// Support: Firefox 18+
// Can't be in strict mode, several libs including ASP.NET trace
// the stack via arguments.caller.callee and Firefox dies if
// you try to trace through "use strict" call chains. (#13335)
//
var arr = [];
var slice = arr.slice;
var concat = arr.concat;
var push = arr.push;
var indexOf = arr.indexOf;
var class2type = {};
var toString = class2type.toString;
var hasOwn = class2type.hasOwnProperty;
var support = {};
var
// Use the correct document accordingly with window argument (sandbox)
document = window.document,
version = "2.1.4",
// Define a local copy of jQuery
jQuery = function( selector, context ) {
// The jQuery object is actually just the init constructor 'enhanced'
// Need init if jQuery is called (just allow error to be thrown if not included)
return new jQuery.fn.init( selector, context );
},
// Support: Android<4.1
// Make sure we trim BOM and NBSP
rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
// Matches dashed string for camelizing
rmsPrefix = /^-ms-/,
rdashAlpha = /-([\da-z])/gi,
// Used by jQuery.camelCase as callback to replace()
fcamelCase = function( all, letter ) {
return letter.toUpperCase();
};
jQuery.fn = jQuery.prototype = {
// The current version of jQuery being used
jquery: version,
constructor: jQuery,
// Start with an empty selector
selector: "",
// The default length of a jQuery object is 0
length: 0,
toArray: function() {
return slice.call( this );
},
// Get the Nth element in the matched element set OR
// Get the whole matched element set as a clean array
get: function( num ) {
return num != null ?
// Return just the one element from the set
( num < 0 ? this[ num + this.length ] : this[ num ] ) :
// Return all the elements in a clean array
slice.call( this );
},
// Take an array of elements and push it onto the stack
// (returning the new matched element set)
pushStack: function( elems ) {
// Build a new jQuery matched element set
var ret = jQuery.merge( this.constructor(), elems );
// Add the old object onto the stack (as a reference)
ret.prevObject = this;
ret.context = this.context;
// Return the newly-formed element set
return ret;
},
// Execute a callback for every element in the matched set.
// (You can seed the arguments with an array of args, but this is
// only used internally.)
each: function( callback, args ) {
return jQuery.each( this, callback, args );
},
map: function( callback ) {
return this.pushStack( jQuery.map(this, function( elem, i ) {
return callback.call( elem, i, elem );
}));
},
slice: function() {
return this.pushStack( slice.apply( this, arguments ) );
},
first: function() {
return this.eq( 0 );
},
last: function() {
return this.eq( -1 );
},
eq: function( i ) {
var len = this.length,
j = +i + ( i < 0 ? len : 0 );
return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );
},
end: function() {
return this.prevObject || this.constructor(null);
},
// For internal use only.
// Behaves like an Array's method, not like a jQuery method.
push: push,
sort: arr.sort,
splice: arr.splice
};
jQuery.extend = jQuery.fn.extend = function() {
var options, name, src, copy, copyIsArray, clone,
target = arguments[0] || {},
i = 1,
length = arguments.length,
deep = false;
// Handle a deep copy situation
if ( typeof target === "boolean" ) {
deep = target;
// Skip the boolean and the target
target = arguments[ i ] || {};
i++;
}
// Handle case when target is a string or something (possible in deep copy)
if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
target = {};
}
// Extend jQuery itself if only one argument is passed
if ( i === length ) {
target = this;
i--;
}
for ( ; i < length; i++ ) {
// Only deal with non-null/undefined values
if ( (options = arguments[ i ]) != null ) {
// Extend the base object
for ( name in options ) {
src = target[ name ];
copy = options[ name ];
// Prevent never-ending loop
if ( target === copy ) {
continue;
}
// Recurse if we're merging plain objects or arrays
if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {
if ( copyIsArray ) {
copyIsArray = false;
clone = src && jQuery.isArray(src) ? src : [];
} else {
clone = src && jQuery.isPlainObject(src) ? src : {};
}
// Never move original objects, clone them
target[ name ] = jQuery.extend( deep, clone, copy );
// Don't bring in undefined values
} else if ( copy !== undefined ) {
target[ name ] = copy;
}
}
}
}
// Return the modified object
return target;
};
jQuery.extend({
// Unique for each copy of jQuery on the page
expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
// Assume jQuery is ready without the ready module
isReady: true,
error: function( msg ) {
throw new Error( msg );
},
noop: function() {},
isFunction: function( obj ) {
return jQuery.type(obj) === "function";
},
isArray: Array.isArray,
isWindow: function( obj ) {
return obj != null && obj === obj.window;
},
isNumeric: function( obj ) {
// parseFloat NaNs numeric-cast false positives (null|true|false|"")
// ...but misinterprets leading-number strings, particularly hex literals ("0x...")
// subtraction forces infinities to NaN
// adding 1 corrects loss of precision from parseFloat (#15100)
return !jQuery.isArray( obj ) && (obj - parseFloat( obj ) + 1) >= 0;
},
isPlainObject: function( obj ) {
// Not plain objects:
// - Any object or value whose internal [[Class]] property is not "[object Object]"
// - DOM nodes
// - window
if ( jQuery.type( obj ) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) {
return false;
}
if ( obj.constructor &&
!hasOwn.call( obj.constructor.prototype, "isPrototypeOf" ) ) {
return false;
}
// If the function hasn't returned already, we're confident that
// |obj| is a plain object, created by {} or constructed with new Object
return true;
},
isEmptyObject: function( obj ) {
var name;
for ( name in obj ) {
return false;
}
return true;
},
type: function( obj ) {
if ( obj == null ) {
return obj + "";
}
// Support: Android<4.0, iOS<6 (functionish RegExp)
return typeof obj === "object" || typeof obj === "function" ?
class2type[ toString.call(obj) ] || "object" :
typeof obj;
},
// Evaluates a script in a global context
globalEval: function( code ) {
var script,
indirect = eval;
code = jQuery.trim( code );
if ( code ) {
// If the code includes a valid, prologue position
// strict mode pragma, execute code by injecting a
// script tag into the document.
if ( code.indexOf("use strict") === 1 ) {
script = document.createElement("script");
script.text = code;
document.head.appendChild( script ).parentNode.removeChild( script );
} else {
// Otherwise, avoid the DOM node creation, insertion
// and removal by using an indirect global eval
indirect( code );
}
}
},
// Convert dashed to camelCase; used by the css and data modules
// Support: IE9-11+
// Microsoft forgot to hump their vendor prefix (#9572)
camelCase: function( string ) {
return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
},
nodeName: function( elem, name ) {
return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
},
// args is for internal usage only
each: function( obj, callback, args ) {
var value,
i = 0,
length = obj.length,
isArray = isArraylike( obj );
if ( args ) {
if ( isArray ) {
for ( ; i < length; i++ ) {
value = callback.apply( obj[ i ], args );
if ( value === false ) {
break;
}
}
} else {
for ( i in obj ) {
value = callback.apply( obj[ i ], args );
if ( value === false ) {
break;
}
}
}
// A special, fast, case for the most common use of each
} else {
if ( isArray ) {
for ( ; i < length; i++ ) {
value = callback.call( obj[ i ], i, obj[ i ] );
if ( value === false ) {
break;
}
}
} else {
for ( i in obj ) {
value = callback.call( obj[ i ], i, obj[ i ] );
if ( value === false ) {
break;
}
}
}
}
return obj;
},
// Support: Android<4.1
trim: function( text ) {
return text == null ?
"" :
( text + "" ).replace( rtrim, "" );
},
// results is for internal usage only
makeArray: function( arr, results ) {
var ret = results || [];
if ( arr != null ) {
if ( isArraylike( Object(arr) ) ) {
jQuery.merge( ret,
typeof arr === "string" ?
[ arr ] : arr
);
} else {
push.call( ret, arr );
}
}
return ret;
},
inArray: function( elem, arr, i ) {
return arr == null ? -1 : indexOf.call( arr, elem, i );
},
merge: function( first, second ) {
var len = +second.length,
j = 0,
i = first.length;
for ( ; j < len; j++ ) {
first[ i++ ] = second[ j ];
}
first.length = i;
return first;
},
grep: function( elems, callback, invert ) {
var callbackInverse,
matches = [],
i = 0,
length = elems.length,
callbackExpect = !invert;
// Go through the array, only saving the items
// that pass the validator function
for ( ; i < length; i++ ) {
callbackInverse = !callback( elems[ i ], i );
if ( callbackInverse !== callbackExpect ) {
matches.push( elems[ i ] );
}
}
return matches;
},
// arg is for internal usage only
map: function( elems, callback, arg ) {
var value,
i = 0,
length = elems.length,
isArray = isArraylike( elems ),
ret = [];
// Go through the array, translating each of the items to their new values
if ( isArray ) {
for ( ; i < length; i++ ) {
value = callback( elems[ i ], i, arg );
if ( value != null ) {
ret.push( value );
}
}
// Go through every key on the object,
} else {
for ( i in elems ) {
value = callback( elems[ i ], i, arg );
if ( value != null ) {
ret.push( value );
}
}
}
// Flatten any nested arrays
return concat.apply( [], ret );
},
// A global GUID counter for objects
guid: 1,
// Bind a function to a context, optionally partially applying any
// arguments.
proxy: function( fn, context ) {
var tmp, args, proxy;
if ( typeof context === "string" ) {
tmp = fn[ context ];
context = fn;
fn = tmp;
}
// Quick check to determine if target is callable, in the spec
// this throws a TypeError, but we will just return undefined.
if ( !jQuery.isFunction( fn ) ) {
return undefined;
}
// Simulated bind
args = slice.call( arguments, 2 );
proxy = function() {
return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
};
// Set the guid of unique handler to the same of original handler, so it can be removed
proxy.guid = fn.guid = fn.guid || jQuery.guid++;
return proxy;
},
now: Date.now,
// jQuery.support is not used in Core but other projects attach their
// properties to it so it needs to exist.
support: support
});
// Populate the class2type map
jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) {
class2type[ "[object " + name + "]" ] = name.toLowerCase();
});
function isArraylike( obj ) {
// Support: iOS 8.2 (not reproducible in simulator)
// `in` check used to prevent JIT error (gh-2145)
// hasOwn isn't used here due to false negatives
// regarding Nodelist length in IE
var length = "length" in obj && obj.length,
type = jQuery.type( obj );
if ( type === "function" || jQuery.isWindow( obj ) ) {
return false;
}
if ( obj.nodeType === 1 && length ) {
return true;
}
return type === "array" || length === 0 ||
typeof length === "number" && length > 0 && ( length - 1 ) in obj;
}
var Sizzle =
/*!
* Sizzle CSS Selector Engine v2.2.0-pre
* http://sizzlejs.com/
*
* Copyright 2008, 2014 jQuery Foundation, Inc. and other contributors
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2014-12-16
*/
(function( window ) {
var i,
support,
Expr,
getText,
isXML,
tokenize,
compile,
select,
outermostContext,
sortInput,
hasDuplicate,
// Local document vars
setDocument,
document,
docElem,
documentIsHTML,
rbuggyQSA,
rbuggyMatches,
matches,
contains,
// Instance-specific data
expando = "sizzle" + 1 * new Date(),
preferredDoc = window.document,
dirruns = 0,
done = 0,
classCache = createCache(),
tokenCache = createCache(),
compilerCache = createCache(),
sortOrder = function( a, b ) {
if ( a === b ) {
hasDuplicate = true;
}
return 0;
},
// General-purpose constants
MAX_NEGATIVE = 1 << 31,
// Instance methods
hasOwn = ({}).hasOwnProperty,
arr = [],
pop = arr.pop,
push_native = arr.push,
push = arr.push,
slice = arr.slice,
// Use a stripped-down indexOf as it's faster than native
// http://jsperf.com/thor-indexof-vs-for/5
indexOf = function( list, elem ) {
var i = 0,
len = list.length;
for ( ; i < len; i++ ) {
if ( list[i] === elem ) {
return i;
}
}
return -1;
},
booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
// Regular expressions
// Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace
whitespace = "[\\x20\\t\\r\\n\\f]",
// http://www.w3.org/TR/css3-syntax/#characters
characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",
// Loosely modeled on CSS identifier characters
// An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors
// Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
identifier = characterEncoding.replace( "w", "w#" ),
// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors
attributes = "\\[" + whitespace + "*(" + characterEncoding + ")(?:" + whitespace +
// Operator (capture 2)
"*([*^$|!~]?=)" + whitespace +
// "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]"
"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace +
"*\\]",
pseudos = ":(" + characterEncoding + ")(?:\\((" +
// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:
// 1. quoted (capture 3; capture 4 or capture 5)
"('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" +
// 2. simple (capture 6)
"((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" +
// 3. anything else (capture 2)
".*" +
")\\)|)",
// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
rwhitespace = new RegExp( whitespace + "+", "g" ),
rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ),
rpseudo = new RegExp( pseudos ),
ridentifier = new RegExp( "^" + identifier + "$" ),
matchExpr = {
"ID": new RegExp( "^#(" + characterEncoding + ")" ),
"CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ),
"TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ),
"ATTR": new RegExp( "^" + attributes ),
"PSEUDO": new RegExp( "^" + pseudos ),
"CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
"*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
"*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
"bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
// For use in libraries implementing .is()
// We use this for POS matching in `select`
"needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
},
rinputs = /^(?:input|select|textarea|button)$/i,
rheader = /^h\d$/i,
rnative = /^[^{]+\{\s*\[native \w/,
// Easily-parseable/retrievable ID or TAG or CLASS selectors
rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
rsibling = /[+~]/,
rescape = /'|\\/g,
// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ),
funescape = function( _, escaped, escapedWhitespace ) {
var high = "0x" + escaped - 0x10000;
// NaN means non-codepoint
// Support: Firefox<24
// Workaround erroneous numeric interpretation of +"0x"
return high !== high || escapedWhitespace ?
escaped :
high < 0 ?
// BMP codepoint
String.fromCharCode( high + 0x10000 ) :
// Supplemental Plane codepoint (surrogate pair)
String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
},
// Used for iframes
// See setDocument()
// Removing the function wrapper causes a "Permission Denied"
// error in IE
unloadHandler = function() {
setDocument();
};
// Optimize for push.apply( _, NodeList )
try {
push.apply(
(arr = slice.call( preferredDoc.childNodes )),
preferredDoc.childNodes
);
// Support: Android<4.0
// Detect silently failing push.apply
arr[ preferredDoc.childNodes.length ].nodeType;
} catch ( e ) {
push = { apply: arr.length ?
// Leverage slice if possible
function( target, els ) {
push_native.apply( target, slice.call(els) );
} :
// Support: IE<9
// Otherwise append directly
function( target, els ) {
var j = target.length,
i = 0;
// Can't trust NodeList.length
while ( (target[j++] = els[i++]) ) {}
target.length = j - 1;
}
};
}
function Sizzle( selector, context, results, seed ) {
var match, elem, m, nodeType,
// QSA vars
i, groups, old, nid, newContext, newSelector;
if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
setDocument( context );
}
context = context || document;
results = results || [];
nodeType = context.nodeType;
if ( typeof selector !== "string" || !selector ||
nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {
return results;
}
if ( !seed && documentIsHTML ) {
// Try to shortcut find operations when possible (e.g., not under DocumentFragment)
if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {
// Speed-up: Sizzle("#ID")
if ( (m = match[1]) ) {
if ( nodeType === 9 ) {
elem = context.getElementById( m );
// Check parentNode to catch when Blackberry 4.6 returns
// nodes that are no longer in the document (jQuery #6963)
if ( elem && elem.parentNode ) {
// Handle the case where IE, Opera, and Webkit return items
// by name instead of ID
if ( elem.id === m ) {
results.push( elem );
return results;
}
} else {
return results;
}
} else {
// Context is not a document
if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&
contains( context, elem ) && elem.id === m ) {
results.push( elem );
return results;
}
}
// Speed-up: Sizzle("TAG")
} else if ( match[2] ) {
push.apply( results, context.getElementsByTagName( selector ) );
return results;
// Speed-up: Sizzle(".CLASS")
} else if ( (m = match[3]) && support.getElementsByClassName ) {
push.apply( results, context.getElementsByClassName( m ) );
return results;
}
}
// QSA path
if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
nid = old = expando;
newContext = context;
newSelector = nodeType !== 1 && selector;
// qSA works strangely on Element-rooted queries
// We can work around this by specifying an extra ID on the root
// and working up from there (Thanks to Andrew Dupont for the technique)
// IE 8 doesn't work on object elements
if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) {
groups = tokenize( selector );
if ( (old = context.getAttribute("id")) ) {
nid = old.replace( rescape, "\\$&" );
} else {
context.setAttribute( "id", nid );
}
nid = "[id='" + nid + "'] ";
i = groups.length;
while ( i-- ) {
groups[i] = nid + toSelector( groups[i] );
}
newContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;
newSelector = groups.join(",");
}
if ( newSelector ) {
try {
push.apply( results,
newContext.querySelectorAll( newSelector )
);
return results;
} catch(qsaError) {
} finally {
if ( !old ) {
context.removeAttribute("id");
}
}
}
}
}
// All others
return select( selector.replace( rtrim, "$1" ), context, results, seed );
}
/**
* Create key-value caches of limited size
* @returns {Function(string, Object)} Returns the Object data after storing it on itself with
* property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
* deleting the oldest entry
*/
function createCache() {
var keys = [];
function cache( key, value ) {
// Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
if ( keys.push( key + " " ) > Expr.cacheLength ) {
// Only keep the most recent entries
delete cache[ keys.shift() ];
}
return (cache[ key + " " ] = value);
}
return cache;
}
/**
* Mark a function for special use by Sizzle
* @param {Function} fn The function to mark
*/
function markFunction( fn ) {
fn[ expando ] = true;
return fn;
}
/**
* Support testing using an element
* @param {Function} fn Passed the created div and expects a boolean result
*/
function assert( fn ) {
var div = document.createElement("div");
try {
return !!fn( div );
} catch (e) {
return false;
} finally {
// Remove from its parent by default
if ( div.parentNode ) {
div.parentNode.removeChild( div );
}
// release memory in IE
div = null;
}
}
/**
* Adds the same handler for all of the specified attrs
* @param {String} attrs Pipe-separated list of attributes
* @param {Function} handler The method that will be applied
*/
function addHandle( attrs, handler ) {
var arr = attrs.split("|"),
i = attrs.length;
while ( i-- ) {
Expr.attrHandle[ arr[i] ] = handler;
}
}
/**
* Checks document order of two siblings
* @param {Element} a
* @param {Element} b
* @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
*/
function siblingCheck( a, b ) {
var cur = b && a,
diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
( ~b.sourceIndex || MAX_NEGATIVE ) -
( ~a.sourceIndex || MAX_NEGATIVE );
// Use IE sourceIndex if available on both nodes
if ( diff ) {
return diff;
}
// Check if b follows a
if ( cur ) {
while ( (cur = cur.nextSibling) ) {
if ( cur === b ) {
return -1;
}
}
}
return a ? 1 : -1;
}
/**
* Returns a function to use in pseudos for input types
* @param {String} type
*/
function createInputPseudo( type ) {
return function( elem ) {
var name = elem.nodeName.toLowerCase();
return name === "input" && elem.type === type;
};
}
/**
* Returns a function to use in pseudos for buttons
* @param {String} type
*/
function createButtonPseudo( type ) {
return function( elem ) {
var name = elem.nodeName.toLowerCase();
return (name === "input" || name === "button") && elem.type === type;
};
}
/**
* Returns a function to use in pseudos for positionals
* @param {Function} fn
*/
function createPositionalPseudo( fn ) {
return markFunction(function( argument ) {
argument = +argument;
return markFunction(function( seed, matches ) {
var j,
matchIndexes = fn( [], seed.length, argument ),
i = matchIndexes.length;
// Match elements found at the specified indexes
while ( i-- ) {
if ( seed[ (j = matchIndexes[i]) ] ) {
seed[j] = !(matches[j] = seed[j]);
}
}
});
});
}
/**
* Checks a node for validity as a Sizzle context
* @param {Element|Object=} context
* @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
*/
function testContext( context ) {
return context && typeof context.getElementsByTagName !== "undefined" && context;
}
// Expose support vars for convenience
support = Sizzle.support = {};
/**
* Detects XML nodes
* @param {Element|Object} elem An element or a document
* @returns {Boolean} True iff elem is a non-HTML XML node
*/
isXML = Sizzle.isXML = function( elem ) {
// documentElement is verified for cases where it doesn't yet exist
// (such as loading iframes in IE - #4833)
var documentElement = elem && (elem.ownerDocument || elem).documentElement;
return documentElement ? documentElement.nodeName !== "HTML" : false;
};
/**
* Sets document-related variables once based on the current document
* @param {Element|Object} [doc] An element or document object to use to set the document
* @returns {Object} Returns the current document
*/
setDocument = Sizzle.setDocument = function( node ) {
var hasCompare, parent,
doc = node ? node.ownerDocument || node : preferredDoc;
// If no document and documentElement is available, return
if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
return document;
}
// Set our document
document = doc;
docElem = doc.documentElement;
parent = doc.defaultView;
// Support: IE>8
// If iframe document is assigned to "document" variable and if iframe has been reloaded,
// IE will throw "permission denied" error when accessing "document" variable, see jQuery #13936
// IE6-8 do not support the defaultView property so parent will be undefined
if ( parent && parent !== parent.top ) {
// IE11 does not have attachEvent, so all must suffer
if ( parent.addEventListener ) {
parent.addEventListener( "unload", unloadHandler, false );
} else if ( parent.attachEvent ) {
parent.attachEvent( "onunload", unloadHandler );
}
}
/* Support tests
---------------------------------------------------------------------- */
documentIsHTML = !isXML( doc );
/* Attributes
---------------------------------------------------------------------- */
// Support: IE<8
// Verify that getAttribute really returns attributes and not properties
// (excepting IE8 booleans)
support.attributes = assert(function( div ) {
div.className = "i";
return !div.getAttribute("className");
});
/* getElement(s)By*
---------------------------------------------------------------------- */
// Check if getElementsByTagName("*") returns only elements
support.getElementsByTagName = assert(function( div ) {
div.appendChild( doc.createComment("") );
return !div.getElementsByTagName("*").length;
});
// Support: IE<9
support.getElementsByClassName = rnative.test( doc.getElementsByClassName );
// Support: IE<10
// Check if getElementById returns elements by name
// The broken getElementById methods don't pick up programatically-set names,
// so use a roundabout getElementsByName test
support.getById = assert(function( div ) {
docElem.appendChild( div ).id = expando;
return !doc.getElementsByName || !doc.getElementsByName( expando ).length;
});
// ID find and filter
if ( support.getById ) {
Expr.find["ID"] = function( id, context ) {
if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
var m = context.getElementById( id );
// Check parentNode to catch when Blackberry 4.6 returns
// nodes that are no longer in the document #6963
return m && m.parentNode ? [ m ] : [];
}
};
Expr.filter["ID"] = function( id ) {
var attrId = id.replace( runescape, funescape );
return function( elem ) {
return elem.getAttribute("id") === attrId;
};
};
} else {
// Support: IE6/7
// getElementById is not reliable as a find shortcut
delete Expr.find["ID"];
Expr.filter["ID"] = function( id ) {
var attrId = id.replace( runescape, funescape );
return function( elem ) {
var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id");
return node && node.value === attrId;
};
};
}
// Tag
Expr.find["TAG"] = support.getElementsByTagName ?
function( tag, context ) {
if ( typeof context.getElementsByTagName !== "undefined" ) {
return context.getElementsByTagName( tag );
// DocumentFragment nodes don't have gEBTN
} else if ( support.qsa ) {
return context.querySelectorAll( tag );
}
} :
function( tag, context ) {
var elem,
tmp = [],
i = 0,
// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too
results = context.getElementsByTagName( tag );
// Filter out possible comments
if ( tag === "*" ) {
while ( (elem = results[i++]) ) {
if ( elem.nodeType === 1 ) {
tmp.push( elem );
}
}
return tmp;
}
return results;
};
// Class
Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) {
if ( documentIsHTML ) {
return context.getElementsByClassName( className );
}
};
/* QSA/matchesSelector
---------------------------------------------------------------------- */
// QSA and matchesSelector support
// matchesSelector(:active) reports false when true (IE9/Opera 11.5)
rbuggyMatches = [];
// qSa(:focus) reports false when true (Chrome 21)
// We allow this because of a bug in IE8/9 that throws an error
// whenever `document.activeElement` is accessed on an iframe
// So, we allow :focus to pass through QSA all the time to avoid the IE error
// See http://bugs.jquery.com/ticket/13378
rbuggyQSA = [];
if ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {
// Build QSA regex
// Regex strategy adopted from Diego Perini
assert(function( div ) {
// Select is set to empty string on purpose
// This is to test IE's treatment of not explicitly
// setting a boolean content attribute,
// since its presence should be enough
// http://bugs.jquery.com/ticket/12359
docElem.appendChild( div ).innerHTML = "<a id='" + expando + "'></a>" +
"<select id='" + expando + "-\f]' msallowcapture=''>" +
"<option selected=''></option></select>";
// Support: IE8, Opera 11-12.16
// Nothing should be selected when empty strings follow ^= or $= or *=
// The test attribute must be unknown in Opera but "safe" for WinRT
// http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section
if ( div.querySelectorAll("[msallowcapture^='']").length ) {
rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
}
// Support: IE8
// Boolean attributes and "value" are not treated correctly
if ( !div.querySelectorAll("[selected]").length ) {
rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
}
// Support: Chrome<29, Android<4.2+, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.7+
if ( !div.querySelectorAll( "[id~=" + expando + "-]" ).length ) {
rbuggyQSA.push("~=");
}
// Webkit/Opera - :checked should return selected option elements
// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
// IE8 throws error here and will not see later tests
if ( !div.querySelectorAll(":checked").length ) {
rbuggyQSA.push(":checked");
}
// Support: Safari 8+, iOS 8+
// https://bugs.webkit.org/show_bug.cgi?id=136851
// In-page `selector#id sibing-combinator selector` fails
if ( !div.querySelectorAll( "a#" + expando + "+*" ).length ) {
rbuggyQSA.push(".#.+[+~]");
}
});
assert(function( div ) {
// Support: Windows 8 Native Apps
// The type and name attributes are restricted during .innerHTML assignment
var input = doc.createElement("input");
input.setAttribute( "type", "hidden" );
div.appendChild( input ).setAttribute( "name", "D" );
// Support: IE8
// Enforce case-sensitivity of name attribute
if ( div.querySelectorAll("[name=d]").length ) {
rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
}
// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
// IE8 throws error here and will not see later tests
if ( !div.querySelectorAll(":enabled").length ) {
rbuggyQSA.push( ":enabled", ":disabled" );
}
// Opera 10-11 does not throw on post-comma invalid pseudos
div.querySelectorAll("*,:x");
rbuggyQSA.push(",.*:");
});
}
if ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||
docElem.webkitMatchesSelector ||
docElem.mozMatchesSelector ||
docElem.oMatchesSelector ||
docElem.msMatchesSelector) )) ) {
assert(function( div ) {
// Check to see if it's possible to do matchesSelector
// on a disconnected node (IE 9)
support.disconnectedMatch = matches.call( div, "div" );
// This should fail with an exception
// Gecko does not error, returns false instead
matches.call( div, "[s!='']:x" );
rbuggyMatches.push( "!=", pseudos );
});
}
rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") );
rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") );
/* Contains
---------------------------------------------------------------------- */
hasCompare = rnative.test( docElem.compareDocumentPosition );
// Element contains another
// Purposefully does not implement inclusive descendent
// As in, an element does not contain itself
contains = hasCompare || rnative.test( docElem.contains ) ?
function( a, b ) {
var adown = a.nodeType === 9 ? a.documentElement : a,
bup = b && b.parentNode;
return a === bup || !!( bup && bup.nodeType === 1 && (
adown.contains ?
adown.contains( bup ) :
a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
));
} :
function( a, b ) {
if ( b ) {
while ( (b = b.parentNode) ) {
if ( b === a ) {
return true;
}
}
}
return false;
};
/* Sorting
---------------------------------------------------------------------- */
// Document order sorting
sortOrder = hasCompare ?
function( a, b ) {
// Flag for duplicate removal
if ( a === b ) {
hasDuplicate = true;
return 0;
}
// Sort on method existence if only one input has compareDocumentPosition
var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
if ( compare ) {
return compare;
}
// Calculate position if both inputs belong to the same document
compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?
a.compareDocumentPosition( b ) :
// Otherwise we know they are disconnected
1;
// Disconnected nodes
if ( compare & 1 ||
(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
// Choose the first element that is related to our preferred document
if ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
return -1;
}
if ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {
return 1;
}
// Maintain original order
return sortInput ?
( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
0;
}
return compare & 4 ? -1 : 1;
} :
function( a, b ) {
// Exit early if the nodes are identical
if ( a === b ) {
hasDuplicate = true;
return 0;
}
var cur,
i = 0,
aup = a.parentNode,
bup = b.parentNode,
ap = [ a ],
bp = [ b ];
// Parentless nodes are either documents or disconnected
if ( !aup || !bup ) {
return a === doc ? -1 :
b === doc ? 1 :
aup ? -1 :
bup ? 1 :
sortInput ?
( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
0;
// If the nodes are siblings, we can do a quick check
} else if ( aup === bup ) {
return siblingCheck( a, b );
}
// Otherwise we need full lists of their ancestors for comparison
cur = a;
while ( (cur = cur.parentNode) ) {
ap.unshift( cur );
}
cur = b;
while ( (cur = cur.parentNode) ) {
bp.unshift( cur );
}
// Walk down the tree looking for a discrepancy
while ( ap[i] === bp[i] ) {
i++;
}
return i ?
// Do a sibling check if the nodes have a common ancestor
siblingCheck( ap[i], bp[i] ) :
// Otherwise nodes in our document sort first
ap[i] === preferredDoc ? -1 :
bp[i] === preferredDoc ? 1 :
0;
};
return doc;
};
Sizzle.matches = function( expr, elements ) {
return Sizzle( expr, null, null, elements );
};
Sizzle.matchesSelector = function( elem, expr ) {
// Set document vars if needed
if ( ( elem.ownerDocument || elem ) !== document ) {
setDocument( elem );
}
// Make sure that attribute selectors are quoted
expr = expr.replace( rattributeQuotes, "='$1']" );
if ( support.matchesSelector && documentIsHTML &&
( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) {
try {
var ret = matches.call( elem, expr );
// IE 9's matchesSelector returns false on disconnected nodes
if ( ret || support.disconnectedMatch ||
// As well, disconnected nodes are said to be in a document
// fragment in IE 9
elem.document && elem.document.nodeType !== 11 ) {
return ret;
}
} catch (e) {}
}
return Sizzle( expr, document, null, [ elem ] ).length > 0;
};
Sizzle.contains = function( context, elem ) {
// Set document vars if needed
if ( ( context.ownerDocument || context ) !== document ) {
setDocument( context );
}
return contains( context, elem );
};
Sizzle.attr = function( elem, name ) {
// Set document vars if needed
if ( ( elem.ownerDocument || elem ) !== document ) {
setDocument( elem );
}
var fn = Expr.attrHandle[ name.toLowerCase() ],
// Don't get fooled by Object.prototype properties (jQuery #13807)
val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
fn( elem, name, !documentIsHTML ) :
undefined;
return val !== undefined ?
val :
support.attributes || !documentIsHTML ?
elem.getAttribute( name ) :
(val = elem.getAttributeNode(name)) && val.specified ?
val.value :
null;
};
Sizzle.error = function( msg ) {
throw new Error( "Syntax error, unrecognized expression: " + msg );
};
/**
* Document sorting and removing duplicates
* @param {ArrayLike} results
*/
Sizzle.uniqueSort = function( results ) {
var elem,
duplicates = [],
j = 0,
i = 0;
// Unless we *know* we can detect duplicates, assume their presence
hasDuplicate = !support.detectDuplicates;
sortInput = !support.sortStable && results.slice( 0 );
results.sort( sortOrder );
if ( hasDuplicate ) {
while ( (elem = results[i++]) ) {
if ( elem === results[ i ] ) {
j = duplicates.push( i );
}
}
while ( j-- ) {
results.splice( duplicates[ j ], 1 );
}
}
// Clear input after sorting to release objects
// See https://github.com/jquery/sizzle/pull/225
sortInput = null;
return results;
};
/**
* Utility function for retrieving the text value of an array of DOM nodes
* @param {Array|Element} elem
*/
getText = Sizzle.getText = function( elem ) {
var node,
ret = "",
i = 0,
nodeType = elem.nodeType;
if ( !nodeType ) {
// If no nodeType, this is expected to be an array
while ( (node = elem[i++]) ) {
// Do not traverse comment nodes
ret += getText( node );
}
} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
// Use textContent for elements
// innerText usage removed for consistency of new lines (jQuery #11153)
if ( typeof elem.textContent === "string" ) {
return elem.textContent;
} else {
// Traverse its children
for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
ret += getText( elem );
}
}
} else if ( nodeType === 3 || nodeType === 4 ) {
return elem.nodeValue;
}
// Do not include comment or processing instruction nodes
return ret;
};
Expr = Sizzle.selectors = {
// Can be adjusted by the user
cacheLength: 50,
createPseudo: markFunction,
match: matchExpr,
attrHandle: {},
find: {},
relative: {
">": { dir: "parentNode", first: true },
" ": { dir: "parentNode" },
"+": { dir: "previousSibling", first: true },
"~": { dir: "previousSibling" }
},
preFilter: {
"ATTR": function( match ) {
match[1] = match[1].replace( runescape, funescape );
// Move the given value to match[3] whether quoted or unquoted
match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape );
if ( match[2] === "~=" ) {
match[3] = " " + match[3] + " ";
}
return match.slice( 0, 4 );
},
"CHILD": function( match ) {
/* matches from matchExpr["CHILD"]
1 type (only|nth|...)
2 what (child|of-type)
3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
4 xn-component of xn+y argument ([+-]?\d*n|)
5 sign of xn-component
6 x of xn-component
7 sign of y-component
8 y of y-component
*/
match[1] = match[1].toLowerCase();
if ( match[1].slice( 0, 3 ) === "nth" ) {
// nth-* requires argument
if ( !match[3] ) {
Sizzle.error( match[0] );
}
// numeric x and y parameters for Expr.filter.CHILD
// remember that false/true cast respectively to 0/1
match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );
// other types prohibit arguments
} else if ( match[3] ) {
Sizzle.error( match[0] );
}
return match;
},
"PSEUDO": function( match ) {
var excess,
unquoted = !match[6] && match[2];
if ( matchExpr["CHILD"].test( match[0] ) ) {
return null;
}
// Accept quoted arguments as-is
if ( match[3] ) {
match[2] = match[4] || match[5] || "";
// Strip excess characters from unquoted arguments
} else if ( unquoted && rpseudo.test( unquoted ) &&
// Get excess from tokenize (recursively)
(excess = tokenize( unquoted, true )) &&
// advance to the next closing parenthesis
(excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
// excess is a negative index
match[0] = match[0].slice( 0, excess );
match[2] = unquoted.slice( 0, excess );
}
// Return only captures needed by the pseudo filter method (type and argument)
return match.slice( 0, 3 );
}
},
filter: {
"TAG": function( nodeNameSelector ) {
var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
return nodeNameSelector === "*" ?
function() { return true; } :
function( elem ) {
return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
};
},
"CLASS": function( className ) {
var pattern = classCache[ className + " " ];
return pattern ||
(pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
classCache( className, function( elem ) {
return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" );
});
},
"ATTR": function( name, operator, check ) {
return function( elem ) {
var result = Sizzle.attr( elem, name );
if ( result == null ) {
return operator === "!=";
}
if ( !operator ) {
return true;
}
result += "";
return operator === "=" ? result === check :
operator === "!=" ? result !== check :
operator === "^=" ? check && result.indexOf( check ) === 0 :
operator === "*=" ? check && result.indexOf( check ) > -1 :
operator === "$=" ? check && result.slice( -check.length ) === check :
operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 :
operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
false;
};
},
"CHILD": function( type, what, argument, first, last ) {
var simple = type.slice( 0, 3 ) !== "nth",
forward = type.slice( -4 ) !== "last",
ofType = what === "of-type";
return first === 1 && last === 0 ?
// Shortcut for :nth-*(n)
function( elem ) {
return !!elem.parentNode;
} :
function( elem, context, xml ) {
var cache, outerCache, node, diff, nodeIndex, start,
dir = simple !== forward ? "nextSibling" : "previousSibling",
parent = elem.parentNode,
name = ofType && elem.nodeName.toLowerCase(),
useCache = !xml && !ofType;
if ( parent ) {
// :(first|last|only)-(child|of-type)
if ( simple ) {
while ( dir ) {
node = elem;
while ( (node = node[ dir ]) ) {
if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {
return false;
}
}
// Reverse direction for :only-* (if we haven't yet done so)
start = dir = type === "only" && !start && "nextSibling";
}
return true;
}
start = [ forward ? parent.firstChild : parent.lastChild ];
// non-xml :nth-child(...) stores cache data on `parent`
if ( forward && useCache ) {
// Seek `elem` from a previously-cached index
outerCache = parent[ expando ] || (parent[ expando ] = {});
cache = outerCache[ type ] || [];
nodeIndex = cache[0] === dirruns && cache[1];
diff = cache[0] === dirruns && cache[2];
node = nodeIndex && parent.childNodes[ nodeIndex ];
while ( (node = ++nodeIndex && node && node[ dir ] ||
// Fallback to seeking `elem` from the start
(diff = nodeIndex = 0) || start.pop()) ) {
// When found, cache indexes on `parent` and break
if ( node.nodeType === 1 && ++diff && node === elem ) {
outerCache[ type ] = [ dirruns, nodeIndex, diff ];
break;
}
}
// Use previously-cached element index if available
} else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {
diff = cache[1];
// xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)
} else {
// Use the same loop as above to seek `elem` from the start
while ( (node = ++nodeIndex && node && node[ dir ] ||
(diff = nodeIndex = 0) || start.pop()) ) {
if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {
// Cache the index of each encountered element
if ( useCache ) {
(node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];
}
if ( node === elem ) {
break;
}
}
}
}
// Incorporate the offset, then check against cycle size
diff -= last;
return diff === first || ( diff % first === 0 && diff / first >= 0 );
}
};
},
"PSEUDO": function( pseudo, argument ) {
// pseudo-class names are case-insensitive
// http://www.w3.org/TR/selectors/#pseudo-classes
// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
// Remember that setFilters inherits from pseudos
var args,
fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
Sizzle.error( "unsupported pseudo: " + pseudo );
// The user may use createPseudo to indicate that
// arguments are needed to create the filter function
// just as Sizzle does
if ( fn[ expando ] ) {
return fn( argument );
}
// But maintain support for old signatures
if ( fn.length > 1 ) {
args = [ pseudo, pseudo, "", argument ];
return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
markFunction(function( seed, matches ) {
var idx,
matched = fn( seed, argument ),
i = matched.length;
while ( i-- ) {
idx = indexOf( seed, matched[i] );
seed[ idx ] = !( matches[ idx ] = matched[i] );
}
}) :
function( elem ) {
return fn( elem, 0, args );
};
}
return fn;
}
},
pseudos: {
// Potentially complex pseudos
"not": markFunction(function( selector ) {
// Trim the selector passed to compile
// to avoid treating leading and trailing
// spaces as combinators
var input = [],
results = [],
matcher = compile( selector.replace( rtrim, "$1" ) );
return matcher[ expando ] ?
markFunction(function( seed, matches, context, xml ) {
var elem,
unmatched = matcher( seed, null, xml, [] ),
i = seed.length;
// Match elements unmatched by `matcher`
while ( i-- ) {
if ( (elem = unmatched[i]) ) {
seed[i] = !(matches[i] = elem);
}
}
}) :
function( elem, context, xml ) {
input[0] = elem;
matcher( input, null, xml, results );
// Don't keep the element (issue #299)
input[0] = null;
return !results.pop();
};
}),
"has": markFunction(function( selector ) {
return function( elem ) {
return Sizzle( selector, elem ).length > 0;
};
}),
"contains": markFunction(function( text ) {
text = text.replace( runescape, funescape );
return function( elem ) {
return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
};
}),
// "Whether an element is represented by a :lang() selector
// is based solely on the element's language value
// being equal to the identifier C,
// or beginning with the identifier C immediately followed by "-".
// The matching of C against the element's language value is performed case-insensitively.
// The identifier C does not have to be a valid language name."
// http://www.w3.org/TR/selectors/#lang-pseudo
"lang": markFunction( function( lang ) {
// lang value must be a valid identifier
if ( !ridentifier.test(lang || "") ) {
Sizzle.error( "unsupported lang: " + lang );
}
lang = lang.replace( runescape, funescape ).toLowerCase();
return function( elem ) {
var elemLang;
do {
if ( (elemLang = documentIsHTML ?
elem.lang :
elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) {
elemLang = elemLang.toLowerCase();
return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
}
} while ( (elem = elem.parentNode) && elem.nodeType === 1 );
return false;
};
}),
// Miscellaneous
"target": function( elem ) {
var hash = window.location && window.location.hash;
return hash && hash.slice( 1 ) === elem.id;
},
"root": function( elem ) {
return elem === docElem;
},
"focus": function( elem ) {
return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
},
// Boolean properties
"enabled": function( elem ) {
return elem.disabled === false;
},
"disabled": function( elem ) {
return elem.disabled === true;
},
"checked": function( elem ) {
// In CSS3, :checked should return both checked and selected elements
// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
var nodeName = elem.nodeName.toLowerCase();
return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
},
"selected": function( elem ) {
// Accessing this property makes selected-by-default
// options in Safari work properly
if ( elem.parentNode ) {
elem.parentNode.selectedIndex;
}
return elem.selected === true;
},
// Contents
"empty": function( elem ) {
// http://www.w3.org/TR/selectors/#empty-pseudo
// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
// but not by others (comment: 8; processing instruction: 7; etc.)
// nodeType < 6 works because attributes (2) do not appear as children
for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
if ( elem.nodeType < 6 ) {
return false;
}
}
return true;
},
"parent": function( elem ) {
return !Expr.pseudos["empty"]( elem );
},
// Element/input types
"header": function( elem ) {
return rheader.test( elem.nodeName );
},
"input": function( elem ) {
return rinputs.test( elem.nodeName );
},
"button": function( elem ) {
var name = elem.nodeName.toLowerCase();
return name === "input" && elem.type === "button" || name === "button";
},
"text": function( elem ) {
var attr;
return elem.nodeName.toLowerCase() === "input" &&
elem.type === "text" &&
// Support: IE<8
// New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" );
},
// Position-in-collection
"first": createPositionalPseudo(function() {
return [ 0 ];
}),
"last": createPositionalPseudo(function( matchIndexes, length ) {
return [ length - 1 ];
}),
"eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
return [ argument < 0 ? argument + length : argument ];
}),
"even": createPositionalPseudo(function( matchIndexes, length ) {
var i = 0;
for ( ; i < length; i += 2 ) {
matchIndexes.push( i );
}
return matchIndexes;
}),
"odd": createPositionalPseudo(function( matchIndexes, length ) {
var i = 1;
for ( ; i < length; i += 2 ) {
matchIndexes.push( i );
}
return matchIndexes;
}),
"lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
var i = argument < 0 ? argument + length : argument;
for ( ; --i >= 0; ) {
matchIndexes.push( i );
}
return matchIndexes;
}),
"gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
var i = argument < 0 ? argument + length : argument;
for ( ; ++i < length; ) {
matchIndexes.push( i );
}
return matchIndexes;
})
}
};
Expr.pseudos["nth"] = Expr.pseudos["eq"];
// Add button/input type pseudos
for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
Expr.pseudos[ i ] = createInputPseudo( i );
}
for ( i in { submit: true, reset: true } ) {
Expr.pseudos[ i ] = createButtonPseudo( i );
}
// Easy API for creating new setFilters
function setFilters() {}
setFilters.prototype = Expr.filters = Expr.pseudos;
Expr.setFilters = new setFilters();
tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
var matched, match, tokens, type,
soFar, groups, preFilters,
cached = tokenCache[ selector + " " ];
if ( cached ) {
return parseOnly ? 0 : cached.slice( 0 );
}
soFar = selector;
groups = [];
preFilters = Expr.preFilter;
while ( soFar ) {
// Comma and first run
if ( !matched || (match = rcomma.exec( soFar )) ) {
if ( match ) {
// Don't consume trailing commas as valid
soFar = soFar.slice( match[0].length ) || soFar;
}
groups.push( (tokens = []) );
}
matched = false;
// Combinators
if ( (match = rcombinators.exec( soFar )) ) {
matched = match.shift();
tokens.push({
value: matched,
// Cast descendant combinators to space
type: match[0].replace( rtrim, " " )
});
soFar = soFar.slice( matched.length );
}
// Filters
for ( type in Expr.filter ) {
if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
(match = preFilters[ type ]( match ))) ) {
matched = match.shift();
tokens.push({
value: matched,
type: type,
matches: match
});
soFar = soFar.slice( matched.length );
}
}
if ( !matched ) {
break;
}
}
// Return the length of the invalid excess
// if we're just parsing
// Otherwise, throw an error or return tokens
return parseOnly ?
soFar.length :
soFar ?
Sizzle.error( selector ) :
// Cache the tokens
tokenCache( selector, groups ).slice( 0 );
};
function toSelector( tokens ) {
var i = 0,
len = tokens.length,
selector = "";
for ( ; i < len; i++ ) {
selector += tokens[i].value;
}
return selector;
}
function addCombinator( matcher, combinator, base ) {
var dir = combinator.dir,
checkNonElements = base && dir === "parentNode",
doneName = done++;
return combinator.first ?
// Check against closest ancestor/preceding element
function( elem, context, xml ) {
while ( (elem = elem[ dir ]) ) {
if ( elem.nodeType === 1 || checkNonElements ) {
return matcher( elem, context, xml );
}
}
} :
// Check against all ancestor/preceding elements
function( elem, context, xml ) {
var oldCache, outerCache,
newCache = [ dirruns, doneName ];
// We can't set arbitrary data on XML nodes, so they don't benefit from dir caching
if ( xml ) {
while ( (elem = elem[ dir ]) ) {
if ( elem.nodeType === 1 || checkNonElements ) {
if ( matcher( elem, context, xml ) ) {
return true;
}
}
}
} else {
while ( (elem = elem[ dir ]) ) {
if ( elem.nodeType === 1 || checkNonElements ) {
outerCache = elem[ expando ] || (elem[ expando ] = {});
if ( (oldCache = outerCache[ dir ]) &&
oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
// Assign to newCache so results back-propagate to previous elements
return (newCache[ 2 ] = oldCache[ 2 ]);
} else {
// Reuse newcache so results back-propagate to previous elements
outerCache[ dir ] = newCache;
// A match means we're done; a fail means we have to keep checking
if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {
return true;
}
}
}
}
}
};
}
function elementMatcher( matchers ) {
return matchers.length > 1 ?
function( elem, context, xml ) {
var i = matchers.length;
while ( i-- ) {
if ( !matchers[i]( elem, context, xml ) ) {
return false;
}
}
return true;
} :
matchers[0];
}
function multipleContexts( selector, contexts, results ) {
var i = 0,
len = contexts.length;
for ( ; i < len; i++ ) {
Sizzle( selector, contexts[i], results );
}
return results;
}
function condense( unmatched, map, filter, context, xml ) {
var elem,
newUnmatched = [],
i = 0,
len = unmatched.length,
mapped = map != null;
for ( ; i < len; i++ ) {
if ( (elem = unmatched[i]) ) {
if ( !filter || filter( elem, context, xml ) ) {
newUnmatched.push( elem );
if ( mapped ) {
map.push( i );
}
}
}
}
return newUnmatched;
}
function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
if ( postFilter && !postFilter[ expando ] ) {
postFilter = setMatcher( postFilter );
}
if ( postFinder && !postFinder[ expando ] ) {
postFinder = setMatcher( postFinder, postSelector );
}
return markFunction(function( seed, results, context, xml ) {
var temp, i, elem,
preMap = [],
postMap = [],
preexisting = results.length,
// Get initial elements from seed or context
elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
// Prefilter to get matcher input, preserving a map for seed-results synchronization
matcherIn = preFilter && ( seed || !selector ) ?
condense( elems, preMap, preFilter, context, xml ) :
elems,
matcherOut = matcher ?
// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
// ...intermediate processing is necessary
[] :
// ...otherwise use results directly
results :
matcherIn;
// Find primary matches
if ( matcher ) {
matcher( matcherIn, matcherOut, context, xml );
}
// Apply postFilter
if ( postFilter ) {
temp = condense( matcherOut, postMap );
postFilter( temp, [], context, xml );
// Un-match failing elements by moving them back to matcherIn
i = temp.length;
while ( i-- ) {
if ( (elem = temp[i]) ) {
matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
}
}
}
if ( seed ) {
if ( postFinder || preFilter ) {
if ( postFinder ) {
// Get the final matcherOut by condensing this intermediate into postFinder contexts
temp = [];
i = matcherOut.length;
while ( i-- ) {
if ( (elem = matcherOut[i]) ) {
// Restore matcherIn since elem is not yet a final match
temp.push( (matcherIn[i] = elem) );
}
}
postFinder( null, (matcherOut = []), temp, xml );
}
// Move matched elements from seed to results to keep them synchronized
i = matcherOut.length;
while ( i-- ) {
if ( (elem = matcherOut[i]) &&
(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {
seed[temp] = !(results[temp] = elem);
}
}
}
// Add elements to results, through postFinder if defined
} else {
matcherOut = condense(
matcherOut === results ?
matcherOut.splice( preexisting, matcherOut.length ) :
matcherOut
);
if ( postFinder ) {
postFinder( null, results, matcherOut, xml );
} else {
push.apply( results, matcherOut );
}
}
});
}
function matcherFromTokens( tokens ) {
var checkContext, matcher, j,
len = tokens.length,
leadingRelative = Expr.relative[ tokens[0].type ],
implicitRelative = leadingRelative || Expr.relative[" "],
i = leadingRelative ? 1 : 0,
// The foundational matcher ensures that elements are reachable from top-level context(s)
matchContext = addCombinator( function( elem ) {
return elem === checkContext;
}, implicitRelative, true ),
matchAnyContext = addCombinator( function( elem ) {
return indexOf( checkContext, elem ) > -1;
}, implicitRelative, true ),
matchers = [ function( elem, context, xml ) {
var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
(checkContext = context).nodeType ?
matchContext( elem, context, xml ) :
matchAnyContext( elem, context, xml ) );
// Avoid hanging onto element (issue #299)
checkContext = null;
return ret;
} ];
for ( ; i < len; i++ ) {
if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
} else {
matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
// Return special upon seeing a positional matcher
if ( matcher[ expando ] ) {
// Find the next relative operator (if any) for proper handling
j = ++i;
for ( ; j < len; j++ ) {
if ( Expr.relative[ tokens[j].type ] ) {
break;
}
}
return setMatcher(
i > 1 && elementMatcher( matchers ),
i > 1 && toSelector(
// If the preceding token was a descendant combinator, insert an implicit any-element `*`
tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
).replace( rtrim, "$1" ),
matcher,
i < j && matcherFromTokens( tokens.slice( i, j ) ),
j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
j < len && toSelector( tokens )
);
}
matchers.push( matcher );
}
}
return elementMatcher( matchers );
}
function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
var bySet = setMatchers.length > 0,
byElement = elementMatchers.length > 0,
superMatcher = function( seed, context, xml, results, outermost ) {
var elem, j, matcher,
matchedCount = 0,
i = "0",
unmatched = seed && [],
setMatched = [],
contextBackup = outermostContext,
// We must always have either seed elements or outermost context
elems = seed || byElement && Expr.find["TAG"]( "*", outermost ),
// Use integer dirruns iff this is the outermost matcher
dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
len = elems.length;
if ( outermost ) {
outermostContext = context !== document && context;
}
// Add elements passing elementMatchers directly to results
// Keep `i` a string if there are no elements so `matchedCount` will be "00" below
// Support: IE<9, Safari
// Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id
for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
if ( byElement && elem ) {
j = 0;
while ( (matcher = elementMatchers[j++]) ) {
if ( matcher( elem, context, xml ) ) {
results.push( elem );
break;
}
}
if ( outermost ) {
dirruns = dirrunsUnique;
}
}
// Track unmatched elements for set filters
if ( bySet ) {
// They will have gone through all possible matchers
if ( (elem = !matcher && elem) ) {
matchedCount--;
}
// Lengthen the array for every element, matched or not
if ( seed ) {
unmatched.push( elem );
}
}
}
// Apply set filters to unmatched elements
matchedCount += i;
if ( bySet && i !== matchedCount ) {
j = 0;
while ( (matcher = setMatchers[j++]) ) {
matcher( unmatched, setMatched, context, xml );
}
if ( seed ) {
// Reintegrate element matches to eliminate the need for sorting
if ( matchedCount > 0 ) {
while ( i-- ) {
if ( !(unmatched[i] || setMatched[i]) ) {
setMatched[i] = pop.call( results );
}
}
}
// Discard index placeholder values to get only actual matches
setMatched = condense( setMatched );
}
// Add matches to results
push.apply( results, setMatched );
// Seedless set matches succeeding multiple successful matchers stipulate sorting
if ( outermost && !seed && setMatched.length > 0 &&
( matchedCount + setMatchers.length ) > 1 ) {
Sizzle.uniqueSort( results );
}
}
// Override manipulation of globals by nested matchers
if ( outermost ) {
dirruns = dirrunsUnique;
outermostContext = contextBackup;
}
return unmatched;
};
return bySet ?
markFunction( superMatcher ) :
superMatcher;
}
compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {
var i,
setMatchers = [],
elementMatchers = [],
cached = compilerCache[ selector + " " ];
if ( !cached ) {
// Generate a function of recursive functions that can be used to check each element
if ( !match ) {
match = tokenize( selector );
}
i = match.length;
while ( i-- ) {
cached = matcherFromTokens( match[i] );
if ( cached[ expando ] ) {
setMatchers.push( cached );
} else {
elementMatchers.push( cached );
}
}
// Cache the compiled function
cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
// Save selector and tokenization
cached.selector = selector;
}
return cached;
};
/**
* A low-level selection function that works with Sizzle's compiled
* selector functions
* @param {String|Function} selector A selector or a pre-compiled
* selector function built with Sizzle.compile
* @param {Element} context
* @param {Array} [results]
* @param {Array} [seed] A set of elements to match against
*/
select = Sizzle.select = function( selector, context, results, seed ) {
var i, tokens, token, type, find,
compiled = typeof selector === "function" && selector,
match = !seed && tokenize( (selector = compiled.selector || selector) );
results = results || [];
// Try to minimize operations if there is no seed and only one group
if ( match.length === 1 ) {
// Take a shortcut and set the context if the root selector is an ID
tokens = match[0] = match[0].slice( 0 );
if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
support.getById && context.nodeType === 9 && documentIsHTML &&
Expr.relative[ tokens[1].type ] ) {
context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
if ( !context ) {
return results;
// Precompiled matchers will still verify ancestry, so step up a level
} else if ( compiled ) {
context = context.parentNode;
}
selector = selector.slice( tokens.shift().value.length );
}
// Fetch a seed set for right-to-left matching
i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
while ( i-- ) {
token = tokens[i];
// Abort if we hit a combinator
if ( Expr.relative[ (type = token.type) ] ) {
break;
}
if ( (find = Expr.find[ type ]) ) {
// Search, expanding context for leading sibling combinators
if ( (seed = find(
token.matches[0].replace( runescape, funescape ),
rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
)) ) {
// If seed is empty or no tokens remain, we can return early
tokens.splice( i, 1 );
selector = seed.length && toSelector( tokens );
if ( !selector ) {
push.apply( results, seed );
return results;
}
break;
}
}
}
}
// Compile and execute a filtering function if one is not provided
// Provide `match` to avoid retokenization if we modified the selector above
( compiled || compile( selector, match ) )(
seed,
context,
!documentIsHTML,
results,
rsibling.test( selector ) && testContext( context.parentNode ) || context
);
return results;
};
// One-time assignments
// Sort stability
support.sortStable = expando.split("").sort( sortOrder ).join("") === expando;
// Support: Chrome 14-35+
// Always assume duplicates if they aren't passed to the comparison function
support.detectDuplicates = !!hasDuplicate;
// Initialize against the default document
setDocument();
// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
// Detached nodes confoundingly follow *each other*
support.sortDetached = assert(function( div1 ) {
// Should return 1, but returns 4 (following)
return div1.compareDocumentPosition( document.createElement("div") ) & 1;
});
// Support: IE<8
// Prevent attribute/property "interpolation"
// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
if ( !assert(function( div ) {
div.innerHTML = "<a href='#'></a>";
return div.firstChild.getAttribute("href") === "#" ;
}) ) {
addHandle( "type|href|height|width", function( elem, name, isXML ) {
if ( !isXML ) {
return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
}
});
}
// Support: IE<9
// Use defaultValue in place of getAttribute("value")
if ( !support.attributes || !assert(function( div ) {
div.innerHTML = "<input/>";
div.firstChild.setAttribute( "value", "" );
return div.firstChild.getAttribute( "value" ) === "";
}) ) {
addHandle( "value", function( elem, name, isXML ) {
if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
return elem.defaultValue;
}
});
}
// Support: IE<9
// Use getAttributeNode to fetch booleans when getAttribute lies
if ( !assert(function( div ) {
return div.getAttribute("disabled") == null;
}) ) {
addHandle( booleans, function( elem, name, isXML ) {
var val;
if ( !isXML ) {
return elem[ name ] === true ? name.toLowerCase() :
(val = elem.getAttributeNode( name )) && val.specified ?
val.value :
null;
}
});
}
return Sizzle;
})( window );
jQuery.find = Sizzle;
jQuery.expr = Sizzle.selectors;
jQuery.expr[":"] = jQuery.expr.pseudos;
jQuery.unique = Sizzle.uniqueSort;
jQuery.text = Sizzle.getText;
jQuery.isXMLDoc = Sizzle.isXML;
jQuery.contains = Sizzle.contains;
var rneedsContext = jQuery.expr.match.needsContext;
var rsingleTag = (/^<(\w+)\s*\/?>(?:<\/\1>|)$/);
var risSimple = /^.[^:#\[\.,]*$/;
// Implement the identical functionality for filter and not
function winnow( elements, qualifier, not ) {
if ( jQuery.isFunction( qualifier ) ) {
return jQuery.grep( elements, function( elem, i ) {
/* jshint -W018 */
return !!qualifier.call( elem, i, elem ) !== not;
});
}
if ( qualifier.nodeType ) {
return jQuery.grep( elements, function( elem ) {
return ( elem === qualifier ) !== not;
});
}
if ( typeof qualifier === "string" ) {
if ( risSimple.test( qualifier ) ) {
return jQuery.filter( qualifier, elements, not );
}
qualifier = jQuery.filter( qualifier, elements );
}
return jQuery.grep( elements, function( elem ) {
return ( indexOf.call( qualifier, elem ) >= 0 ) !== not;
});
}
jQuery.filter = function( expr, elems, not ) {
var elem = elems[ 0 ];
if ( not ) {
expr = ":not(" + expr + ")";
}
return elems.length === 1 && elem.nodeType === 1 ?
jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :
jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
return elem.nodeType === 1;
}));
};
jQuery.fn.extend({
find: function( selector ) {
var i,
len = this.length,
ret = [],
self = this;
if ( typeof selector !== "string" ) {
return this.pushStack( jQuery( selector ).filter(function() {
for ( i = 0; i < len; i++ ) {
if ( jQuery.contains( self[ i ], this ) ) {
return true;
}
}
}) );
}
for ( i = 0; i < len; i++ ) {
jQuery.find( selector, self[ i ], ret );
}
// Needed because $( selector, context ) becomes $( context ).find( selector )
ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );
ret.selector = this.selector ? this.selector + " " + selector : selector;
return ret;
},
filter: function( selector ) {
return this.pushStack( winnow(this, selector || [], false) );
},
not: function( selector ) {
return this.pushStack( winnow(this, selector || [], true) );
},
is: function( selector ) {
return !!winnow(
this,
// If this is a positional/relative selector, check membership in the returned set
// so $("p:first").is("p:last") won't return true for a doc with two "p".
typeof selector === "string" && rneedsContext.test( selector ) ?
jQuery( selector ) :
selector || [],
false
).length;
}
});
// Initialize a jQuery object
// A central reference to the root jQuery(document)
var rootjQuery,
// A simple way to check for HTML strings
// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
// Strict HTML recognition (#11290: must start with <)
rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,
init = jQuery.fn.init = function( selector, context ) {
var match, elem;
// HANDLE: $(""), $(null), $(undefined), $(false)
if ( !selector ) {
return this;
}
// Handle HTML strings
if ( typeof selector === "string" ) {
if ( selector[0] === "<" && selector[ selector.length - 1 ] === ">" && selector.length >= 3 ) {
// Assume that strings that start and end with <> are HTML and skip the regex check
match = [ null, selector, null ];
} else {
match = rquickExpr.exec( selector );
}
// Match html or make sure no context is specified for #id
if ( match && (match[1] || !context) ) {
// HANDLE: $(html) -> $(array)
if ( match[1] ) {
context = context instanceof jQuery ? context[0] : context;
// Option to run scripts is true for back-compat
// Intentionally let the error be thrown if parseHTML is not present
jQuery.merge( this, jQuery.parseHTML(
match[1],
context && context.nodeType ? context.ownerDocument || context : document,
true
) );
// HANDLE: $(html, props)
if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {
for ( match in context ) {
// Properties of context are called as methods if possible
if ( jQuery.isFunction( this[ match ] ) ) {
this[ match ]( context[ match ] );
// ...and otherwise set as attributes
} else {
this.attr( match, context[ match ] );
}
}
}
return this;
// HANDLE: $(#id)
} else {
elem = document.getElementById( match[2] );
// Support: Blackberry 4.6
// gEBID returns nodes no longer in the document (#6963)
if ( elem && elem.parentNode ) {
// Inject the element directly into the jQuery object
this.length = 1;
this[0] = elem;
}
this.context = document;
this.selector = selector;
return this;
}
// HANDLE: $(expr, $(...))
} else if ( !context || context.jquery ) {
return ( context || rootjQuery ).find( selector );
// HANDLE: $(expr, context)
// (which is just equivalent to: $(context).find(expr)
} else {
return this.constructor( context ).find( selector );
}
// HANDLE: $(DOMElement)
} else if ( selector.nodeType ) {
this.context = this[0] = selector;
this.length = 1;
return this;
// HANDLE: $(function)
// Shortcut for document ready
} else if ( jQuery.isFunction( selector ) ) {
return typeof rootjQuery.ready !== "undefined" ?
rootjQuery.ready( selector ) :
// Execute immediately if ready is not present
selector( jQuery );
}
if ( selector.selector !== undefined ) {
this.selector = selector.selector;
this.context = selector.context;
}
return jQuery.makeArray( selector, this );
};
// Give the init function the jQuery prototype for later instantiation
init.prototype = jQuery.fn;
// Initialize central reference
rootjQuery = jQuery( document );
var rparentsprev = /^(?:parents|prev(?:Until|All))/,
// Methods guaranteed to produce a unique set when starting from a unique set
guaranteedUnique = {
children: true,
contents: true,
next: true,
prev: true
};
jQuery.extend({
dir: function( elem, dir, until ) {
var matched = [],
truncate = until !== undefined;
while ( (elem = elem[ dir ]) && elem.nodeType !== 9 ) {
if ( elem.nodeType === 1 ) {
if ( truncate && jQuery( elem ).is( until ) ) {
break;
}
matched.push( elem );
}
}
return matched;
},
sibling: function( n, elem ) {
var matched = [];
for ( ; n; n = n.nextSibling ) {
if ( n.nodeType === 1 && n !== elem ) {
matched.push( n );
}
}
return matched;
}
});
jQuery.fn.extend({
has: function( target ) {
var targets = jQuery( target, this ),
l = targets.length;
return this.filter(function() {
var i = 0;
for ( ; i < l; i++ ) {
if ( jQuery.contains( this, targets[i] ) ) {
return true;
}
}
});
},
closest: function( selectors, context ) {
var cur,
i = 0,
l = this.length,
matched = [],
pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ?
jQuery( selectors, context || this.context ) :
0;
for ( ; i < l; i++ ) {
for ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) {
// Always skip document fragments
if ( cur.nodeType < 11 && (pos ?
pos.index(cur) > -1 :
// Don't pass non-elements to Sizzle
cur.nodeType === 1 &&
jQuery.find.matchesSelector(cur, selectors)) ) {
matched.push( cur );
break;
}
}
}
return this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );
},
// Determine the position of an element within the set
index: function( elem ) {
// No argument, return index in parent
if ( !elem ) {
return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
}
// Index in selector
if ( typeof elem === "string" ) {
return indexOf.call( jQuery( elem ), this[ 0 ] );
}
// Locate the position of the desired element
return indexOf.call( this,
// If it receives a jQuery object, the first element is used
elem.jquery ? elem[ 0 ] : elem
);
},
add: function( selector, context ) {
return this.pushStack(
jQuery.unique(
jQuery.merge( this.get(), jQuery( selector, context ) )
)
);
},
addBack: function( selector ) {
return this.add( selector == null ?
this.prevObject : this.prevObject.filter(selector)
);
}
});
function sibling( cur, dir ) {
while ( (cur = cur[dir]) && cur.nodeType !== 1 ) {}
return cur;
}
jQuery.each({
parent: function( elem ) {
var parent = elem.parentNode;
return parent && parent.nodeType !== 11 ? parent : null;
},
parents: function( elem ) {
return jQuery.dir( elem, "parentNode" );
},
parentsUntil: function( elem, i, until ) {
return jQuery.dir( elem, "parentNode", until );
},
next: function( elem ) {
return sibling( elem, "nextSibling" );
},
prev: function( elem ) {
return sibling( elem, "previousSibling" );
},
nextAll: function( elem ) {
return jQuery.dir( elem, "nextSibling" );
},
prevAll: function( elem ) {
return jQuery.dir( elem, "previousSibling" );
},
nextUntil: function( elem, i, until ) {
return jQuery.dir( elem, "nextSibling", until );
},
prevUntil: function( elem, i, until ) {
return jQuery.dir( elem, "previousSibling", until );
},
siblings: function( elem ) {
return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );
},
children: function( elem ) {
return jQuery.sibling( elem.firstChild );
},
contents: function( elem ) {
return elem.contentDocument || jQuery.merge( [], elem.childNodes );
}
}, function( name, fn ) {
jQuery.fn[ name ] = function( until, selector ) {
var matched = jQuery.map( this, fn, until );
if ( name.slice( -5 ) !== "Until" ) {
selector = until;
}
if ( selector && typeof selector === "string" ) {
matched = jQuery.filter( selector, matched );
}
if ( this.length > 1 ) {
// Remove duplicates
if ( !guaranteedUnique[ name ] ) {
jQuery.unique( matched );
}
// Reverse order for parents* and prev-derivatives
if ( rparentsprev.test( name ) ) {
matched.reverse();
}
}
return this.pushStack( matched );
};
});
var rnotwhite = (/\S+/g);
// String to Object options format cache
var optionsCache = {};
// Convert String-formatted options into Object-formatted ones and store in cache
function createOptions( options ) {
var object = optionsCache[ options ] = {};
jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {
object[ flag ] = true;
});
return object;
}
/*
* Create a callback list using the following parameters:
*
* options: an optional list of space-separated options that will change how
* the callback list behaves or a more traditional option object
*
* By default a callback list will act like an event callback list and can be
* "fired" multiple times.
*
* Possible options:
*
* once: will ensure the callback list can only be fired once (like a Deferred)
*
* memory: will keep track of previous values and will call any callback added
* after the list has been fired right away with the latest "memorized"
* values (like a Deferred)
*
* unique: will ensure a callback can only be added once (no duplicate in the list)
*
* stopOnFalse: interrupt callings when a callback returns false
*
*/
jQuery.Callbacks = function( options ) {
// Convert options from String-formatted to Object-formatted if needed
// (we check in cache first)
options = typeof options === "string" ?
( optionsCache[ options ] || createOptions( options ) ) :
jQuery.extend( {}, options );
var // Last fire value (for non-forgettable lists)
memory,
// Flag to know if list was already fired
fired,
// Flag to know if list is currently firing
firing,
// First callback to fire (used internally by add and fireWith)
firingStart,
// End of the loop when firing
firingLength,
// Index of currently firing callback (modified by remove if needed)
firingIndex,
// Actual callback list
list = [],
// Stack of fire calls for repeatable lists
stack = !options.once && [],
// Fire callbacks
fire = function( data ) {
memory = options.memory && data;
fired = true;
firingIndex = firingStart || 0;
firingStart = 0;
firingLength = list.length;
firing = true;
for ( ; list && firingIndex < firingLength; firingIndex++ ) {
if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {
memory = false; // To prevent further calls using add
break;
}
}
firing = false;
if ( list ) {
if ( stack ) {
if ( stack.length ) {
fire( stack.shift() );
}
} else if ( memory ) {
list = [];
} else {
self.disable();
}
}
},
// Actual Callbacks object
self = {
// Add a callback or a collection of callbacks to the list
add: function() {
if ( list ) {
// First, we save the current length
var start = list.length;
(function add( args ) {
jQuery.each( args, function( _, arg ) {
var type = jQuery.type( arg );
if ( type === "function" ) {
if ( !options.unique || !self.has( arg ) ) {
list.push( arg );
}
} else if ( arg && arg.length && type !== "string" ) {
// Inspect recursively
add( arg );
}
});
})( arguments );
// Do we need to add the callbacks to the
// current firing batch?
if ( firing ) {
firingLength = list.length;
// With memory, if we're not firing then
// we should call right away
} else if ( memory ) {
firingStart = start;
fire( memory );
}
}
return this;
},
// Remove a callback from the list
remove: function() {
if ( list ) {
jQuery.each( arguments, function( _, arg ) {
var index;
while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
list.splice( index, 1 );
// Handle firing indexes
if ( firing ) {
if ( index <= firingLength ) {
firingLength--;
}
if ( index <= firingIndex ) {
firingIndex--;
}
}
}
});
}
return this;
},
// Check if a given callback is in the list.
// If no argument is given, return whether or not list has callbacks attached.
has: function( fn ) {
return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );
},
// Remove all callbacks from the list
empty: function() {
list = [];
firingLength = 0;
return this;
},
// Have the list do nothing anymore
disable: function() {
list = stack = memory = undefined;
return this;
},
// Is it disabled?
disabled: function() {
return !list;
},
// Lock the list in its current state
lock: function() {
stack = undefined;
if ( !memory ) {
self.disable();
}
return this;
},
// Is it locked?
locked: function() {
return !stack;
},
// Call all callbacks with the given context and arguments
fireWith: function( context, args ) {
if ( list && ( !fired || stack ) ) {
args = args || [];
args = [ context, args.slice ? args.slice() : args ];
if ( firing ) {
stack.push( args );
} else {
fire( args );
}
}
return this;
},
// Call all the callbacks with the given arguments
fire: function() {
self.fireWith( this, arguments );
return this;
},
// To know if the callbacks have already been called at least once
fired: function() {
return !!fired;
}
};
return self;
};
jQuery.extend({
Deferred: function( func ) {
var tuples = [
// action, add listener, listener list, final state
[ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ],
[ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ],
[ "notify", "progress", jQuery.Callbacks("memory") ]
],
state = "pending",
promise = {
state: function() {
return state;
},
always: function() {
deferred.done( arguments ).fail( arguments );
return this;
},
then: function( /* fnDone, fnFail, fnProgress */ ) {
var fns = arguments;
return jQuery.Deferred(function( newDefer ) {
jQuery.each( tuples, function( i, tuple ) {
var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];
// deferred[ done | fail | progress ] for forwarding actions to newDefer
deferred[ tuple[1] ](function() {
var returned = fn && fn.apply( this, arguments );
if ( returned && jQuery.isFunction( returned.promise ) ) {
returned.promise()
.done( newDefer.resolve )
.fail( newDefer.reject )
.progress( newDefer.notify );
} else {
newDefer[ tuple[ 0 ] + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );
}
});
});
fns = null;
}).promise();
},
// Get a promise for this deferred
// If obj is provided, the promise aspect is added to the object
promise: function( obj ) {
return obj != null ? jQuery.extend( obj, promise ) : promise;
}
},
deferred = {};
// Keep pipe for back-compat
promise.pipe = promise.then;
// Add list-specific methods
jQuery.each( tuples, function( i, tuple ) {
var list = tuple[ 2 ],
stateString = tuple[ 3 ];
// promise[ done | fail | progress ] = list.add
promise[ tuple[1] ] = list.add;
// Handle state
if ( stateString ) {
list.add(function() {
// state = [ resolved | rejected ]
state = stateString;
// [ reject_list | resolve_list ].disable; progress_list.lock
}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
}
// deferred[ resolve | reject | notify ]
deferred[ tuple[0] ] = function() {
deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments );
return this;
};
deferred[ tuple[0] + "With" ] = list.fireWith;
});
// Make the deferred a promise
promise.promise( deferred );
// Call given func if any
if ( func ) {
func.call( deferred, deferred );
}
// All done!
return deferred;
},
// Deferred helper
when: function( subordinate /* , ..., subordinateN */ ) {
var i = 0,
resolveValues = slice.call( arguments ),
length = resolveValues.length,
// the count of uncompleted subordinates
remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,
// the master Deferred. If resolveValues consist of only a single Deferred, just use that.
deferred = remaining === 1 ? subordinate : jQuery.Deferred(),
// Update function for both resolve and progress values
updateFunc = function( i, contexts, values ) {
return function( value ) {
contexts[ i ] = this;
values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
if ( values === progressValues ) {
deferred.notifyWith( contexts, values );
} else if ( !( --remaining ) ) {
deferred.resolveWith( contexts, values );
}
};
},
progressValues, progressContexts, resolveContexts;
// Add listeners to Deferred subordinates; treat others as resolved
if ( length > 1 ) {
progressValues = new Array( length );
progressContexts = new Array( length );
resolveContexts = new Array( length );
for ( ; i < length; i++ ) {
if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {
resolveValues[ i ].promise()
.done( updateFunc( i, resolveContexts, resolveValues ) )
.fail( deferred.reject )
.progress( updateFunc( i, progressContexts, progressValues ) );
} else {
--remaining;
}
}
}
// If we're not waiting on anything, resolve the master
if ( !remaining ) {
deferred.resolveWith( resolveContexts, resolveValues );
}
return deferred.promise();
}
});
// The deferred used on DOM ready
var readyList;
jQuery.fn.ready = function( fn ) {
// Add the callback
jQuery.ready.promise().done( fn );
return this;
};
jQuery.extend({
// Is the DOM ready to be used? Set to true once it occurs.
isReady: false,
// A counter to track how many items to wait for before
// the ready event fires. See #6781
readyWait: 1,
// Hold (or release) the ready event
holdReady: function( hold ) {
if ( hold ) {
jQuery.readyWait++;
} else {
jQuery.ready( true );
}
},
// Handle when the DOM is ready
ready: function( wait ) {
// Abort if there are pending holds or we're already ready
if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
return;
}
// Remember that the DOM is ready
jQuery.isReady = true;
// If a normal DOM Ready event fired, decrement, and wait if need be
if ( wait !== true && --jQuery.readyWait > 0 ) {
return;
}
// If there are functions bound, to execute
readyList.resolveWith( document, [ jQuery ] );
// Trigger any bound ready events
if ( jQuery.fn.triggerHandler ) {
jQuery( document ).triggerHandler( "ready" );
jQuery( document ).off( "ready" );
}
}
});
/**
* The ready event handler and self cleanup method
*/
function completed() {
document.removeEventListener( "DOMContentLoaded", completed, false );
window.removeEventListener( "load", completed, false );
jQuery.ready();
}
jQuery.ready.promise = function( obj ) {
if ( !readyList ) {
readyList = jQuery.Deferred();
// Catch cases where $(document).ready() is called after the browser event has already occurred.
// We once tried to use readyState "interactive" here, but it caused issues like the one
// discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15
if ( document.readyState === "complete" ) {
// Handle it asynchronously to allow scripts the opportunity to delay ready
setTimeout( jQuery.ready );
} else {
// Use the handy event callback
document.addEventListener( "DOMContentLoaded", completed, false );
// A fallback to window.onload, that will always work
window.addEventListener( "load", completed, false );
}
}
return readyList.promise( obj );
};
// Kick off the DOM ready check even if the user does not
jQuery.ready.promise();
// Multifunctional method to get and set values of a collection
// The value/s can optionally be executed if it's a function
var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
var i = 0,
len = elems.length,
bulk = key == null;
// Sets many values
if ( jQuery.type( key ) === "object" ) {
chainable = true;
for ( i in key ) {
jQuery.access( elems, fn, i, key[i], true, emptyGet, raw );
}
// Sets one value
} else if ( value !== undefined ) {
chainable = true;
if ( !jQuery.isFunction( value ) ) {
raw = true;
}
if ( bulk ) {
// Bulk operations run against the entire set
if ( raw ) {
fn.call( elems, value );
fn = null;
// ...except when executing function values
} else {
bulk = fn;
fn = function( elem, key, value ) {
return bulk.call( jQuery( elem ), value );
};
}
}
if ( fn ) {
for ( ; i < len; i++ ) {
fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );
}
}
}
return chainable ?
elems :
// Gets
bulk ?
fn.call( elems ) :
len ? fn( elems[0], key ) : emptyGet;
};
/**
* Determines whether an object can have data
*/
jQuery.acceptData = function( owner ) {
// Accepts only:
// - Node
// - Node.ELEMENT_NODE
// - Node.DOCUMENT_NODE
// - Object
// - Any
/* jshint -W018 */
return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
};
function Data() {
// Support: Android<4,
// Old WebKit does not have Object.preventExtensions/freeze method,
// return new empty object instead with no [[set]] accessor
Object.defineProperty( this.cache = {}, 0, {
get: function() {
return {};
}
});
this.expando = jQuery.expando + Data.uid++;
}
Data.uid = 1;
Data.accepts = jQuery.acceptData;
Data.prototype = {
key: function( owner ) {
// We can accept data for non-element nodes in modern browsers,
// but we should not, see #8335.
// Always return the key for a frozen object.
if ( !Data.accepts( owner ) ) {
return 0;
}
var descriptor = {},
// Check if the owner object already has a cache key
unlock = owner[ this.expando ];
// If not, create one
if ( !unlock ) {
unlock = Data.uid++;
// Secure it in a non-enumerable, non-writable property
try {
descriptor[ this.expando ] = { value: unlock };
Object.defineProperties( owner, descriptor );
// Support: Android<4
// Fallback to a less secure definition
} catch ( e ) {
descriptor[ this.expando ] = unlock;
jQuery.extend( owner, descriptor );
}
}
// Ensure the cache object
if ( !this.cache[ unlock ] ) {
this.cache[ unlock ] = {};
}
return unlock;
},
set: function( owner, data, value ) {
var prop,
// There may be an unlock assigned to this node,
// if there is no entry for this "owner", create one inline
// and set the unlock as though an owner entry had always existed
unlock = this.key( owner ),
cache = this.cache[ unlock ];
// Handle: [ owner, key, value ] args
if ( typeof data === "string" ) {
cache[ data ] = value;
// Handle: [ owner, { properties } ] args
} else {
// Fresh assignments by object are shallow copied
if ( jQuery.isEmptyObject( cache ) ) {
jQuery.extend( this.cache[ unlock ], data );
// Otherwise, copy the properties one-by-one to the cache object
} else {
for ( prop in data ) {
cache[ prop ] = data[ prop ];
}
}
}
return cache;
},
get: function( owner, key ) {
// Either a valid cache is found, or will be created.
// New caches will be created and the unlock returned,
// allowing direct access to the newly created
// empty data object. A valid owner object must be provided.
var cache = this.cache[ this.key( owner ) ];
return key === undefined ?
cache : cache[ key ];
},
access: function( owner, key, value ) {
var stored;
// In cases where either:
//
// 1. No key was specified
// 2. A string key was specified, but no value provided
//
// Take the "read" path and allow the get method to determine
// which value to return, respectively either:
//
// 1. The entire cache object
// 2. The data stored at the key
//
if ( key === undefined ||
((key && typeof key === "string") && value === undefined) ) {
stored = this.get( owner, key );
return stored !== undefined ?
stored : this.get( owner, jQuery.camelCase(key) );
}
// [*]When the key is not a string, or both a key and value
// are specified, set or extend (existing objects) with either:
//
// 1. An object of properties
// 2. A key and value
//
this.set( owner, key, value );
// Since the "set" path can have two possible entry points
// return the expected data based on which path was taken[*]
return value !== undefined ? value : key;
},
remove: function( owner, key ) {
var i, name, camel,
unlock = this.key( owner ),
cache = this.cache[ unlock ];
if ( key === undefined ) {
this.cache[ unlock ] = {};
} else {
// Support array or space separated string of keys
if ( jQuery.isArray( key ) ) {
// If "name" is an array of keys...
// When data is initially created, via ("key", "val") signature,
// keys will be converted to camelCase.
// Since there is no way to tell _how_ a key was added, remove
// both plain key and camelCase key. #12786
// This will only penalize the array argument path.
name = key.concat( key.map( jQuery.camelCase ) );
} else {
camel = jQuery.camelCase( key );
// Try the string as a key before any manipulation
if ( key in cache ) {
name = [ key, camel ];
} else {
// If a key with the spaces exists, use it.
// Otherwise, create an array by matching non-whitespace
name = camel;
name = name in cache ?
[ name ] : ( name.match( rnotwhite ) || [] );
}
}
i = name.length;
while ( i-- ) {
delete cache[ name[ i ] ];
}
}
},
hasData: function( owner ) {
return !jQuery.isEmptyObject(
this.cache[ owner[ this.expando ] ] || {}
);
},
discard: function( owner ) {
if ( owner[ this.expando ] ) {
delete this.cache[ owner[ this.expando ] ];
}
}
};
var data_priv = new Data();
var data_user = new Data();
// Implementation Summary
//
// 1. Enforce API surface and semantic compatibility with 1.9.x branch
// 2. Improve the module's maintainability by reducing the storage
// paths to a single mechanism.
// 3. Use the same single mechanism to support "private" and "user" data.
// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)
// 5. Avoid exposing implementation details on user objects (eg. expando properties)
// 6. Provide a clear path for implementation upgrade to WeakMap in 2014
var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
rmultiDash = /([A-Z])/g;
function dataAttr( elem, key, data ) {
var name;
// If nothing was found internally, try to fetch any
// data from the HTML5 data-* attribute
if ( data === undefined && elem.nodeType === 1 ) {
name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase();
data = elem.getAttribute( name );
if ( typeof data === "string" ) {
try {
data = data === "true" ? true :
data === "false" ? false :
data === "null" ? null :
// Only convert to a number if it doesn't change the string
+data + "" === data ? +data :
rbrace.test( data ) ? jQuery.parseJSON( data ) :
data;
} catch( e ) {}
// Make sure we set the data so it isn't changed later
data_user.set( elem, key, data );
} else {
data = undefined;
}
}
return data;
}
jQuery.extend({
hasData: function( elem ) {
return data_user.hasData( elem ) || data_priv.hasData( elem );
},
data: function( elem, name, data ) {
return data_user.access( elem, name, data );
},
removeData: function( elem, name ) {
data_user.remove( elem, name );
},
// TODO: Now that all calls to _data and _removeData have been replaced
// with direct calls to data_priv methods, these can be deprecated.
_data: function( elem, name, data ) {
return data_priv.access( elem, name, data );
},
_removeData: function( elem, name ) {
data_priv.remove( elem, name );
}
});
jQuery.fn.extend({
data: function( key, value ) {
var i, name, data,
elem = this[ 0 ],
attrs = elem && elem.attributes;
// Gets all values
if ( key === undefined ) {
if ( this.length ) {
data = data_user.get( elem );
if ( elem.nodeType === 1 && !data_priv.get( elem, "hasDataAttrs" ) ) {
i = attrs.length;
while ( i-- ) {
// Support: IE11+
// The attrs elements can be null (#14894)
if ( attrs[ i ] ) {
name = attrs[ i ].name;
if ( name.indexOf( "data-" ) === 0 ) {
name = jQuery.camelCase( name.slice(5) );
dataAttr( elem, name, data[ name ] );
}
}
}
data_priv.set( elem, "hasDataAttrs", true );
}
}
return data;
}
// Sets multiple values
if ( typeof key === "object" ) {
return this.each(function() {
data_user.set( this, key );
});
}
return access( this, function( value ) {
var data,
camelKey = jQuery.camelCase( key );
// The calling jQuery object (element matches) is not empty
// (and therefore has an element appears at this[ 0 ]) and the
// `value` parameter was not undefined. An empty jQuery object
// will result in `undefined` for elem = this[ 0 ] which will
// throw an exception if an attempt to read a data cache is made.
if ( elem && value === undefined ) {
// Attempt to get data from the cache
// with the key as-is
data = data_user.get( elem, key );
if ( data !== undefined ) {
return data;
}
// Attempt to get data from the cache
// with the key camelized
data = data_user.get( elem, camelKey );
if ( data !== undefined ) {
return data;
}
// Attempt to "discover" the data in
// HTML5 custom data-* attrs
data = dataAttr( elem, camelKey, undefined );
if ( data !== undefined ) {
return data;
}
// We tried really hard, but the data doesn't exist.
return;
}
// Set the data...
this.each(function() {
// First, attempt to store a copy or reference of any
// data that might've been store with a camelCased key.
var data = data_user.get( this, camelKey );
// For HTML5 data-* attribute interop, we have to
// store property names with dashes in a camelCase form.
// This might not apply to all properties...*
data_user.set( this, camelKey, value );
// *... In the case of properties that might _actually_
// have dashes, we need to also store a copy of that
// unchanged property.
if ( key.indexOf("-") !== -1 && data !== undefined ) {
data_user.set( this, key, value );
}
});
}, null, value, arguments.length > 1, null, true );
},
removeData: function( key ) {
return this.each(function() {
data_user.remove( this, key );
});
}
});
jQuery.extend({
queue: function( elem, type, data ) {
var queue;
if ( elem ) {
type = ( type || "fx" ) + "queue";
queue = data_priv.get( elem, type );
// Speed up dequeue by getting out quickly if this is just a lookup
if ( data ) {
if ( !queue || jQuery.isArray( data ) ) {
queue = data_priv.access( elem, type, jQuery.makeArray(data) );
} else {
queue.push( data );
}
}
return queue || [];
}
},
dequeue: function( elem, type ) {
type = type || "fx";
var queue = jQuery.queue( elem, type ),
startLength = queue.length,
fn = queue.shift(),
hooks = jQuery._queueHooks( elem, type ),
next = function() {
jQuery.dequeue( elem, type );
};
// If the fx queue is dequeued, always remove the progress sentinel
if ( fn === "inprogress" ) {
fn = queue.shift();
startLength--;
}
if ( fn ) {
// Add a progress sentinel to prevent the fx queue from being
// automatically dequeued
if ( type === "fx" ) {
queue.unshift( "inprogress" );
}
// Clear up the last queue stop function
delete hooks.stop;
fn.call( elem, next, hooks );
}
if ( !startLength && hooks ) {
hooks.empty.fire();
}
},
// Not public - generate a queueHooks object, or return the current one
_queueHooks: function( elem, type ) {
var key = type + "queueHooks";
return data_priv.get( elem, key ) || data_priv.access( elem, key, {
empty: jQuery.Callbacks("once memory").add(function() {
data_priv.remove( elem, [ type + "queue", key ] );
})
});
}
});
jQuery.fn.extend({
queue: function( type, data ) {
var setter = 2;
if ( typeof type !== "string" ) {
data = type;
type = "fx";
setter--;
}
if ( arguments.length < setter ) {
return jQuery.queue( this[0], type );
}
return data === undefined ?
this :
this.each(function() {
var queue = jQuery.queue( this, type, data );
// Ensure a hooks for this queue
jQuery._queueHooks( this, type );
if ( type === "fx" && queue[0] !== "inprogress" ) {
jQuery.dequeue( this, type );
}
});
},
dequeue: function( type ) {
return this.each(function() {
jQuery.dequeue( this, type );
});
},
clearQueue: function( type ) {
return this.queue( type || "fx", [] );
},
// Get a promise resolved when queues of a certain type
// are emptied (fx is the type by default)
promise: function( type, obj ) {
var tmp,
count = 1,
defer = jQuery.Deferred(),
elements = this,
i = this.length,
resolve = function() {
if ( !( --count ) ) {
defer.resolveWith( elements, [ elements ] );
}
};
if ( typeof type !== "string" ) {
obj = type;
type = undefined;
}
type = type || "fx";
while ( i-- ) {
tmp = data_priv.get( elements[ i ], type + "queueHooks" );
if ( tmp && tmp.empty ) {
count++;
tmp.empty.add( resolve );
}
}
resolve();
return defer.promise( obj );
}
});
var pnum = (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
var isHidden = function( elem, el ) {
// isHidden might be called from jQuery#filter function;
// in that case, element will be second argument
elem = el || elem;
return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem );
};
var rcheckableType = (/^(?:checkbox|radio)$/i);
(function() {
var fragment = document.createDocumentFragment(),
div = fragment.appendChild( document.createElement( "div" ) ),
input = document.createElement( "input" );
// Support: Safari<=5.1
// Check state lost if the name is set (#11217)
// Support: Windows Web Apps (WWA)
// `name` and `type` must use .setAttribute for WWA (#14901)
input.setAttribute( "type", "radio" );
input.setAttribute( "checked", "checked" );
input.setAttribute( "name", "t" );
div.appendChild( input );
// Support: Safari<=5.1, Android<4.2
// Older WebKit doesn't clone checked state correctly in fragments
support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
// Support: IE<=11+
// Make sure textarea (and checkbox) defaultValue is properly cloned
div.innerHTML = "<textarea>x</textarea>";
support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
})();
var strundefined = typeof undefined;
support.focusinBubbles = "onfocusin" in window;
var
rkeyEvent = /^key/,
rmouseEvent = /^(?:mouse|pointer|contextmenu)|click/,
rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
rtypenamespace = /^([^.]*)(?:\.(.+)|)$/;
function returnTrue() {
return true;
}
function returnFalse() {
return false;
}
function safeActiveElement() {
try {
return document.activeElement;
} catch ( err ) { }
}
/*
* Helper functions for managing events -- not part of the public interface.
* Props to Dean Edwards' addEvent library for many of the ideas.
*/
jQuery.event = {
global: {},
add: function( elem, types, handler, data, selector ) {
var handleObjIn, eventHandle, tmp,
events, t, handleObj,
special, handlers, type, namespaces, origType,
elemData = data_priv.get( elem );
// Don't attach events to noData or text/comment nodes (but allow plain objects)
if ( !elemData ) {
return;
}
// Caller can pass in an object of custom data in lieu of the handler
if ( handler.handler ) {
handleObjIn = handler;
handler = handleObjIn.handler;
selector = handleObjIn.selector;
}
// Make sure that the handler has a unique ID, used to find/remove it later
if ( !handler.guid ) {
handler.guid = jQuery.guid++;
}
// Init the element's event structure and main handler, if this is the first
if ( !(events = elemData.events) ) {
events = elemData.events = {};
}
if ( !(eventHandle = elemData.handle) ) {
eventHandle = elemData.handle = function( e ) {
// Discard the second event of a jQuery.event.trigger() and
// when an event is called after a page has unloaded
return typeof jQuery !== strundefined && jQuery.event.triggered !== e.type ?
jQuery.event.dispatch.apply( elem, arguments ) : undefined;
};
}
// Handle multiple events separated by a space
types = ( types || "" ).match( rnotwhite ) || [ "" ];
t = types.length;
while ( t-- ) {
tmp = rtypenamespace.exec( types[t] ) || [];
type = origType = tmp[1];
namespaces = ( tmp[2] || "" ).split( "." ).sort();
// There *must* be a type, no attaching namespace-only handlers
if ( !type ) {
continue;
}
// If event changes its type, use the special event handlers for the changed type
special = jQuery.event.special[ type ] || {};
// If selector defined, determine special event api type, otherwise given type
type = ( selector ? special.delegateType : special.bindType ) || type;
// Update special based on newly reset type
special = jQuery.event.special[ type ] || {};
// handleObj is passed to all event handlers
handleObj = jQuery.extend({
type: type,
origType: origType,
data: data,
handler: handler,
guid: handler.guid,
selector: selector,
needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
namespace: namespaces.join(".")
}, handleObjIn );
// Init the event handler queue if we're the first
if ( !(handlers = events[ type ]) ) {
handlers = events[ type ] = [];
handlers.delegateCount = 0;
// Only use addEventListener if the special events handler returns false
if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
if ( elem.addEventListener ) {
elem.addEventListener( type, eventHandle, false );
}
}
}
if ( special.add ) {
special.add.call( elem, handleObj );
if ( !handleObj.handler.guid ) {
handleObj.handler.guid = handler.guid;
}
}
// Add to the element's handler list, delegates in front
if ( selector ) {
handlers.splice( handlers.delegateCount++, 0, handleObj );
} else {
handlers.push( handleObj );
}
// Keep track of which events have ever been used, for event optimization
jQuery.event.global[ type ] = true;
}
},
// Detach an event or set of events from an element
remove: function( elem, types, handler, selector, mappedTypes ) {
var j, origCount, tmp,
events, t, handleObj,
special, handlers, type, namespaces, origType,
elemData = data_priv.hasData( elem ) && data_priv.get( elem );
if ( !elemData || !(events = elemData.events) ) {
return;
}
// Once for each type.namespace in types; type may be omitted
types = ( types || "" ).match( rnotwhite ) || [ "" ];
t = types.length;
while ( t-- ) {
tmp = rtypenamespace.exec( types[t] ) || [];
type = origType = tmp[1];
namespaces = ( tmp[2] || "" ).split( "." ).sort();
// Unbind all events (on this namespace, if provided) for the element
if ( !type ) {
for ( type in events ) {
jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
}
continue;
}
special = jQuery.event.special[ type ] || {};
type = ( selector ? special.delegateType : special.bindType ) || type;
handlers = events[ type ] || [];
tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" );
// Remove matching events
origCount = j = handlers.length;
while ( j-- ) {
handleObj = handlers[ j ];
if ( ( mappedTypes || origType === handleObj.origType ) &&
( !handler || handler.guid === handleObj.guid ) &&
( !tmp || tmp.test( handleObj.namespace ) ) &&
( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) {
handlers.splice( j, 1 );
if ( handleObj.selector ) {
handlers.delegateCount--;
}
if ( special.remove ) {
special.remove.call( elem, handleObj );
}
}
}
// Remove generic event handler if we removed something and no more handlers exist
// (avoids potential for endless recursion during removal of special event handlers)
if ( origCount && !handlers.length ) {
if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
jQuery.removeEvent( elem, type, elemData.handle );
}
delete events[ type ];
}
}
// Remove the expando if it's no longer used
if ( jQuery.isEmptyObject( events ) ) {
delete elemData.handle;
data_priv.remove( elem, "events" );
}
},
trigger: function( event, data, elem, onlyHandlers ) {
var i, cur, tmp, bubbleType, ontype, handle, special,
eventPath = [ elem || document ],
type = hasOwn.call( event, "type" ) ? event.type : event,
namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : [];
cur = tmp = elem = elem || document;
// Don't do events on text and comment nodes
if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
return;
}
// focus/blur morphs to focusin/out; ensure we're not firing them right now
if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
return;
}
if ( type.indexOf(".") >= 0 ) {
// Namespaced trigger; create a regexp to match event type in handle()
namespaces = type.split(".");
type = namespaces.shift();
namespaces.sort();
}
ontype = type.indexOf(":") < 0 && "on" + type;
// Caller can pass in a jQuery.Event object, Object, or just an event type string
event = event[ jQuery.expando ] ?
event :
new jQuery.Event( type, typeof event === "object" && event );
// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
event.isTrigger = onlyHandlers ? 2 : 3;
event.namespace = namespaces.join(".");
event.namespace_re = event.namespace ?
new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) :
null;
// Clean up the event in case it is being reused
event.result = undefined;
if ( !event.target ) {
event.target = elem;
}
// Clone any incoming data and prepend the event, creating the handler arg list
data = data == null ?
[ event ] :
jQuery.makeArray( data, [ event ] );
// Allow special events to draw outside the lines
special = jQuery.event.special[ type ] || {};
if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
return;
}
// Determine event propagation path in advance, per W3C events spec (#9951)
// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {
bubbleType = special.delegateType || type;
if ( !rfocusMorph.test( bubbleType + type ) ) {
cur = cur.parentNode;
}
for ( ; cur; cur = cur.parentNode ) {
eventPath.push( cur );
tmp = cur;
}
// Only add window if we got to document (e.g., not plain obj or detached DOM)
if ( tmp === (elem.ownerDocument || document) ) {
eventPath.push( tmp.defaultView || tmp.parentWindow || window );
}
}
// Fire handlers on the event path
i = 0;
while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {
event.type = i > 1 ?
bubbleType :
special.bindType || type;
// jQuery handler
handle = ( data_priv.get( cur, "events" ) || {} )[ event.type ] && data_priv.get( cur, "handle" );
if ( handle ) {
handle.apply( cur, data );
}
// Native handler
handle = ontype && cur[ ontype ];
if ( handle && handle.apply && jQuery.acceptData( cur ) ) {
event.result = handle.apply( cur, data );
if ( event.result === false ) {
event.preventDefault();
}
}
}
event.type = type;
// If nobody prevented the default action, do it now
if ( !onlyHandlers && !event.isDefaultPrevented() ) {
if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&
jQuery.acceptData( elem ) ) {
// Call a native DOM method on the target with the same name name as the event.
// Don't do default actions on window, that's where global variables be (#6170)
if ( ontype && jQuery.isFunction( elem[ type ] ) && !jQuery.isWindow( elem ) ) {
// Don't re-trigger an onFOO event when we call its FOO() method
tmp = elem[ ontype ];
if ( tmp ) {
elem[ ontype ] = null;
}
// Prevent re-triggering of the same event, since we already bubbled it above
jQuery.event.triggered = type;
elem[ type ]();
jQuery.event.triggered = undefined;
if ( tmp ) {
elem[ ontype ] = tmp;
}
}
}
}
return event.result;
},
dispatch: function( event ) {
// Make a writable jQuery.Event from the native event object
event = jQuery.event.fix( event );
var i, j, ret, matched, handleObj,
handlerQueue = [],
args = slice.call( arguments ),
handlers = ( data_priv.get( this, "events" ) || {} )[ event.type ] || [],
special = jQuery.event.special[ event.type ] || {};
// Use the fix-ed jQuery.Event rather than the (read-only) native event
args[0] = event;
event.delegateTarget = this;
// Call the preDispatch hook for the mapped type, and let it bail if desired
if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
return;
}
// Determine handlers
handlerQueue = jQuery.event.handlers.call( this, event, handlers );
// Run delegates first; they may want to stop propagation beneath us
i = 0;
while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {
event.currentTarget = matched.elem;
j = 0;
while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {
// Triggered event must either 1) have no namespace, or 2) have namespace(s)
// a subset or equal to those in the bound event (both can have no namespace).
if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {
event.handleObj = handleObj;
event.data = handleObj.data;
ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )
.apply( matched.elem, args );
if ( ret !== undefined ) {
if ( (event.result = ret) === false ) {
event.preventDefault();
event.stopPropagation();
}
}
}
}
}
// Call the postDispatch hook for the mapped type
if ( special.postDispatch ) {
special.postDispatch.call( this, event );
}
return event.result;
},
handlers: function( event, handlers ) {
var i, matches, sel, handleObj,
handlerQueue = [],
delegateCount = handlers.delegateCount,
cur = event.target;
// Find delegate handlers
// Black-hole SVG <use> instance trees (#13180)
// Avoid non-left-click bubbling in Firefox (#3861)
if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) {
for ( ; cur !== this; cur = cur.parentNode || this ) {
// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
if ( cur.disabled !== true || event.type !== "click" ) {
matches = [];
for ( i = 0; i < delegateCount; i++ ) {
handleObj = handlers[ i ];
// Don't conflict with Object.prototype properties (#13203)
sel = handleObj.selector + " ";
if ( matches[ sel ] === undefined ) {
matches[ sel ] = handleObj.needsContext ?
jQuery( sel, this ).index( cur ) >= 0 :
jQuery.find( sel, this, null, [ cur ] ).length;
}
if ( matches[ sel ] ) {
matches.push( handleObj );
}
}
if ( matches.length ) {
handlerQueue.push({ elem: cur, handlers: matches });
}
}
}
}
// Add the remaining (directly-bound) handlers
if ( delegateCount < handlers.length ) {
handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });
}
return handlerQueue;
},
// Includes some event props shared by KeyEvent and MouseEvent
props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),
fixHooks: {},
keyHooks: {
props: "char charCode key keyCode".split(" "),
filter: function( event, original ) {
// Add which for key events
if ( event.which == null ) {
event.which = original.charCode != null ? original.charCode : original.keyCode;
}
return event;
}
},
mouseHooks: {
props: "button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),
filter: function( event, original ) {
var eventDoc, doc, body,
button = original.button;
// Calculate pageX/Y if missing and clientX/Y available
if ( event.pageX == null && original.clientX != null ) {
eventDoc = event.target.ownerDocument || document;
doc = eventDoc.documentElement;
body = eventDoc.body;
event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );
event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 );
}
// Add which for click: 1 === left; 2 === middle; 3 === right
// Note: button is not normalized, so don't use it
if ( !event.which && button !== undefined ) {
event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );
}
return event;
}
},
fix: function( event ) {
if ( event[ jQuery.expando ] ) {
return event;
}
// Create a writable copy of the event object and normalize some properties
var i, prop, copy,
type = event.type,
originalEvent = event,
fixHook = this.fixHooks[ type ];
if ( !fixHook ) {
this.fixHooks[ type ] = fixHook =
rmouseEvent.test( type ) ? this.mouseHooks :
rkeyEvent.test( type ) ? this.keyHooks :
{};
}
copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;
event = new jQuery.Event( originalEvent );
i = copy.length;
while ( i-- ) {
prop = copy[ i ];
event[ prop ] = originalEvent[ prop ];
}
// Support: Cordova 2.5 (WebKit) (#13255)
// All events should have a target; Cordova deviceready doesn't
if ( !event.target ) {
event.target = document;
}
// Support: Safari 6.0+, Chrome<28
// Target should not be a text node (#504, #13143)
if ( event.target.nodeType === 3 ) {
event.target = event.target.parentNode;
}
return fixHook.filter ? fixHook.filter( event, originalEvent ) : event;
},
special: {
load: {
// Prevent triggered image.load events from bubbling to window.load
noBubble: true
},
focus: {
// Fire native event if possible so blur/focus sequence is correct
trigger: function() {
if ( this !== safeActiveElement() && this.focus ) {
this.focus();
return false;
}
},
delegateType: "focusin"
},
blur: {
trigger: function() {
if ( this === safeActiveElement() && this.blur ) {
this.blur();
return false;
}
},
delegateType: "focusout"
},
click: {
// For checkbox, fire native event so checked state will be right
trigger: function() {
if ( this.type === "checkbox" && this.click && jQuery.nodeName( this, "input" ) ) {
this.click();
return false;
}
},
// For cross-browser consistency, don't fire native .click() on links
_default: function( event ) {
return jQuery.nodeName( event.target, "a" );
}
},
beforeunload: {
postDispatch: function( event ) {
// Support: Firefox 20+
// Firefox doesn't alert if the returnValue field is not set.
if ( event.result !== undefined && event.originalEvent ) {
event.originalEvent.returnValue = event.result;
}
}
}
},
simulate: function( type, elem, event, bubble ) {
// Piggyback on a donor event to simulate a different one.
// Fake originalEvent to avoid donor's stopPropagation, but if the
// simulated event prevents default then we do the same on the donor.
var e = jQuery.extend(
new jQuery.Event(),
event,
{
type: type,
isSimulated: true,
originalEvent: {}
}
);
if ( bubble ) {
jQuery.event.trigger( e, null, elem );
} else {
jQuery.event.dispatch.call( elem, e );
}
if ( e.isDefaultPrevented() ) {
event.preventDefault();
}
}
};
jQuery.removeEvent = function( elem, type, handle ) {
if ( elem.removeEventListener ) {
elem.removeEventListener( type, handle, false );
}
};
jQuery.Event = function( src, props ) {
// Allow instantiation without the 'new' keyword
if ( !(this instanceof jQuery.Event) ) {
return new jQuery.Event( src, props );
}
// Event object
if ( src && src.type ) {
this.originalEvent = src;
this.type = src.type;
// Events bubbling up the document may have been marked as prevented
// by a handler lower down the tree; reflect the correct value.
this.isDefaultPrevented = src.defaultPrevented ||
src.defaultPrevented === undefined &&
// Support: Android<4.0
src.returnValue === false ?
returnTrue :
returnFalse;
// Event type
} else {
this.type = src;
}
// Put explicitly provided properties onto the event object
if ( props ) {
jQuery.extend( this, props );
}
// Create a timestamp if incoming event doesn't have one
this.timeStamp = src && src.timeStamp || jQuery.now();
// Mark it as fixed
this[ jQuery.expando ] = true;
};
// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
jQuery.Event.prototype = {
isDefaultPrevented: returnFalse,
isPropagationStopped: returnFalse,
isImmediatePropagationStopped: returnFalse,
preventDefault: function() {
var e = this.originalEvent;
this.isDefaultPrevented = returnTrue;
if ( e && e.preventDefault ) {
e.preventDefault();
}
},
stopPropagation: function() {
var e = this.originalEvent;
this.isPropagationStopped = returnTrue;
if ( e && e.stopPropagation ) {
e.stopPropagation();
}
},
stopImmediatePropagation: function() {
var e = this.originalEvent;
this.isImmediatePropagationStopped = returnTrue;
if ( e && e.stopImmediatePropagation ) {
e.stopImmediatePropagation();
}
this.stopPropagation();
}
};
// Create mouseenter/leave events using mouseover/out and event-time checks
// Support: Chrome 15+
jQuery.each({
mouseenter: "mouseover",
mouseleave: "mouseout",
pointerenter: "pointerover",
pointerleave: "pointerout"
}, function( orig, fix ) {
jQuery.event.special[ orig ] = {
delegateType: fix,
bindType: fix,
handle: function( event ) {
var ret,
target = this,
related = event.relatedTarget,
handleObj = event.handleObj;
// For mousenter/leave call the handler if related is outside the target.
// NB: No relatedTarget if the mouse left/entered the browser window
if ( !related || (related !== target && !jQuery.contains( target, related )) ) {
event.type = handleObj.origType;
ret = handleObj.handler.apply( this, arguments );
event.type = fix;
}
return ret;
}
};
});
// Support: Firefox, Chrome, Safari
// Create "bubbling" focus and blur events
if ( !support.focusinBubbles ) {
jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) {
// Attach a single capturing handler on the document while someone wants focusin/focusout
var handler = function( event ) {
jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );
};
jQuery.event.special[ fix ] = {
setup: function() {
var doc = this.ownerDocument || this,
attaches = data_priv.access( doc, fix );
if ( !attaches ) {
doc.addEventListener( orig, handler, true );
}
data_priv.access( doc, fix, ( attaches || 0 ) + 1 );
},
teardown: function() {
var doc = this.ownerDocument || this,
attaches = data_priv.access( doc, fix ) - 1;
if ( !attaches ) {
doc.removeEventListener( orig, handler, true );
data_priv.remove( doc, fix );
} else {
data_priv.access( doc, fix, attaches );
}
}
};
});
}
jQuery.fn.extend({
on: function( types, selector, data, fn, /*INTERNAL*/ one ) {
var origFn, type;
// Types can be a map of types/handlers
if ( typeof types === "object" ) {
// ( types-Object, selector, data )
if ( typeof selector !== "string" ) {
// ( types-Object, data )
data = data || selector;
selector = undefined;
}
for ( type in types ) {
this.on( type, selector, data, types[ type ], one );
}
return this;
}
if ( data == null && fn == null ) {
// ( types, fn )
fn = selector;
data = selector = undefined;
} else if ( fn == null ) {
if ( typeof selector === "string" ) {
// ( types, selector, fn )
fn = data;
data = undefined;
} else {
// ( types, data, fn )
fn = data;
data = selector;
selector = undefined;
}
}
if ( fn === false ) {
fn = returnFalse;
} else if ( !fn ) {
return this;
}
if ( one === 1 ) {
origFn = fn;
fn = function( event ) {
// Can use an empty set, since event contains the info
jQuery().off( event );
return origFn.apply( this, arguments );
};
// Use same guid so caller can remove using origFn
fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
}
return this.each( function() {
jQuery.event.add( this, types, fn, data, selector );
});
},
one: function( types, selector, data, fn ) {
return this.on( types, selector, data, fn, 1 );
},
off: function( types, selector, fn ) {
var handleObj, type;
if ( types && types.preventDefault && types.handleObj ) {
// ( event ) dispatched jQuery.Event
handleObj = types.handleObj;
jQuery( types.delegateTarget ).off(
handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType,
handleObj.selector,
handleObj.handler
);
return this;
}
if ( typeof types === "object" ) {
// ( types-object [, selector] )
for ( type in types ) {
this.off( type, selector, types[ type ] );
}
return this;
}
if ( selector === false || typeof selector === "function" ) {
// ( types [, fn] )
fn = selector;
selector = undefined;
}
if ( fn === false ) {
fn = returnFalse;
}
return this.each(function() {
jQuery.event.remove( this, types, fn, selector );
});
},
trigger: function( type, data ) {
return this.each(function() {
jQuery.event.trigger( type, data, this );
});
},
triggerHandler: function( type, data ) {
var elem = this[0];
if ( elem ) {
return jQuery.event.trigger( type, data, elem, true );
}
}
});
var
rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,
rtagName = /<([\w:]+)/,
rhtml = /<|&#?\w+;/,
rnoInnerhtml = /<(?:script|style|link)/i,
// checked="checked" or checked
rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
rscriptType = /^$|\/(?:java|ecma)script/i,
rscriptTypeMasked = /^true\/(.*)/,
rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,
// We have to close these tags to support XHTML (#13200)
wrapMap = {
// Support: IE9
option: [ 1, "<select multiple='multiple'>", "</select>" ],
thead: [ 1, "<table>", "</table>" ],
col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
tr: [ 2, "<table><tbody>", "</tbody></table>" ],
td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
_default: [ 0, "", "" ]
};
// Support: IE9
wrapMap.optgroup = wrapMap.option;
wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
wrapMap.th = wrapMap.td;
// Support: 1.x compatibility
// Manipulating tables requires a tbody
function manipulationTarget( elem, content ) {
return jQuery.nodeName( elem, "table" ) &&
jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ?
elem.getElementsByTagName("tbody")[0] ||
elem.appendChild( elem.ownerDocument.createElement("tbody") ) :
elem;
}
// Replace/restore the type attribute of script elements for safe DOM manipulation
function disableScript( elem ) {
elem.type = (elem.getAttribute("type") !== null) + "/" + elem.type;
return elem;
}
function restoreScript( elem ) {
var match = rscriptTypeMasked.exec( elem.type );
if ( match ) {
elem.type = match[ 1 ];
} else {
elem.removeAttribute("type");
}
return elem;
}
// Mark scripts as having already been evaluated
function setGlobalEval( elems, refElements ) {
var i = 0,
l = elems.length;
for ( ; i < l; i++ ) {
data_priv.set(
elems[ i ], "globalEval", !refElements || data_priv.get( refElements[ i ], "globalEval" )
);
}
}
function cloneCopyEvent( src, dest ) {
var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;
if ( dest.nodeType !== 1 ) {
return;
}
// 1. Copy private data: events, handlers, etc.
if ( data_priv.hasData( src ) ) {
pdataOld = data_priv.access( src );
pdataCur = data_priv.set( dest, pdataOld );
events = pdataOld.events;
if ( events ) {
delete pdataCur.handle;
pdataCur.events = {};
for ( type in events ) {
for ( i = 0, l = events[ type ].length; i < l; i++ ) {
jQuery.event.add( dest, type, events[ type ][ i ] );
}
}
}
}
// 2. Copy user data
if ( data_user.hasData( src ) ) {
udataOld = data_user.access( src );
udataCur = jQuery.extend( {}, udataOld );
data_user.set( dest, udataCur );
}
}
function getAll( context, tag ) {
var ret = context.getElementsByTagName ? context.getElementsByTagName( tag || "*" ) :
context.querySelectorAll ? context.querySelectorAll( tag || "*" ) :
[];
return tag === undefined || tag && jQuery.nodeName( context, tag ) ?
jQuery.merge( [ context ], ret ) :
ret;
}
// Fix IE bugs, see support tests
function fixInput( src, dest ) {
var nodeName = dest.nodeName.toLowerCase();
// Fails to persist the checked state of a cloned checkbox or radio button.
if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
dest.checked = src.checked;
// Fails to return the selected option to the default selected state when cloning options
} else if ( nodeName === "input" || nodeName === "textarea" ) {
dest.defaultValue = src.defaultValue;
}
}
jQuery.extend({
clone: function( elem, dataAndEvents, deepDataAndEvents ) {
var i, l, srcElements, destElements,
clone = elem.cloneNode( true ),
inPage = jQuery.contains( elem.ownerDocument, elem );
// Fix IE cloning issues
if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&
!jQuery.isXMLDoc( elem ) ) {
// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2
destElements = getAll( clone );
srcElements = getAll( elem );
for ( i = 0, l = srcElements.length; i < l; i++ ) {
fixInput( srcElements[ i ], destElements[ i ] );
}
}
// Copy the events from the original to the clone
if ( dataAndEvents ) {
if ( deepDataAndEvents ) {
srcElements = srcElements || getAll( elem );
destElements = destElements || getAll( clone );
for ( i = 0, l = srcElements.length; i < l; i++ ) {
cloneCopyEvent( srcElements[ i ], destElements[ i ] );
}
} else {
cloneCopyEvent( elem, clone );
}
}
// Preserve script evaluation history
destElements = getAll( clone, "script" );
if ( destElements.length > 0 ) {
setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
}
// Return the cloned set
return clone;
},
buildFragment: function( elems, context, scripts, selection ) {
var elem, tmp, tag, wrap, contains, j,
fragment = context.createDocumentFragment(),
nodes = [],
i = 0,
l = elems.length;
for ( ; i < l; i++ ) {
elem = elems[ i ];
if ( elem || elem === 0 ) {
// Add nodes directly
if ( jQuery.type( elem ) === "object" ) {
// Support: QtWebKit, PhantomJS
// push.apply(_, arraylike) throws on ancient WebKit
jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
// Convert non-html into a text node
} else if ( !rhtml.test( elem ) ) {
nodes.push( context.createTextNode( elem ) );
// Convert html into DOM nodes
} else {
tmp = tmp || fragment.appendChild( context.createElement("div") );
// Deserialize a standard representation
tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase();
wrap = wrapMap[ tag ] || wrapMap._default;
tmp.innerHTML = wrap[ 1 ] + elem.replace( rxhtmlTag, "<$1></$2>" ) + wrap[ 2 ];
// Descend through wrappers to the right content
j = wrap[ 0 ];
while ( j-- ) {
tmp = tmp.lastChild;
}
// Support: QtWebKit, PhantomJS
// push.apply(_, arraylike) throws on ancient WebKit
jQuery.merge( nodes, tmp.childNodes );
// Remember the top-level container
tmp = fragment.firstChild;
// Ensure the created nodes are orphaned (#12392)
tmp.textContent = "";
}
}
}
// Remove wrapper from fragment
fragment.textContent = "";
i = 0;
while ( (elem = nodes[ i++ ]) ) {
// #4087 - If origin and destination elements are the same, and this is
// that element, do not do anything
if ( selection && jQuery.inArray( elem, selection ) !== -1 ) {
continue;
}
contains = jQuery.contains( elem.ownerDocument, elem );
// Append to fragment
tmp = getAll( fragment.appendChild( elem ), "script" );
// Preserve script evaluation history
if ( contains ) {
setGlobalEval( tmp );
}
// Capture executables
if ( scripts ) {
j = 0;
while ( (elem = tmp[ j++ ]) ) {
if ( rscriptType.test( elem.type || "" ) ) {
scripts.push( elem );
}
}
}
}
return fragment;
},
cleanData: function( elems ) {
var data, elem, type, key,
special = jQuery.event.special,
i = 0;
for ( ; (elem = elems[ i ]) !== undefined; i++ ) {
if ( jQuery.acceptData( elem ) ) {
key = elem[ data_priv.expando ];
if ( key && (data = data_priv.cache[ key ]) ) {
if ( data.events ) {
for ( type in data.events ) {
if ( special[ type ] ) {
jQuery.event.remove( elem, type );
// This is a shortcut to avoid jQuery.event.remove's overhead
} else {
jQuery.removeEvent( elem, type, data.handle );
}
}
}
if ( data_priv.cache[ key ] ) {
// Discard any remaining `private` data
delete data_priv.cache[ key ];
}
}
}
// Discard any remaining `user` data
delete data_user.cache[ elem[ data_user.expando ] ];
}
}
});
jQuery.fn.extend({
text: function( value ) {
return access( this, function( value ) {
return value === undefined ?
jQuery.text( this ) :
this.empty().each(function() {
if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
this.textContent = value;
}
});
}, null, value, arguments.length );
},
append: function() {
return this.domManip( arguments, function( elem ) {
if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
var target = manipulationTarget( this, elem );
target.appendChild( elem );
}
});
},
prepend: function() {
return this.domManip( arguments, function( elem ) {
if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
var target = manipulationTarget( this, elem );
target.insertBefore( elem, target.firstChild );
}
});
},
before: function() {
return this.domManip( arguments, function( elem ) {
if ( this.parentNode ) {
this.parentNode.insertBefore( elem, this );
}
});
},
after: function() {
return this.domManip( arguments, function( elem ) {
if ( this.parentNode ) {
this.parentNode.insertBefore( elem, this.nextSibling );
}
});
},
remove: function( selector, keepData /* Internal Use Only */ ) {
var elem,
elems = selector ? jQuery.filter( selector, this ) : this,
i = 0;
for ( ; (elem = elems[i]) != null; i++ ) {
if ( !keepData && elem.nodeType === 1 ) {
jQuery.cleanData( getAll( elem ) );
}
if ( elem.parentNode ) {
if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {
setGlobalEval( getAll( elem, "script" ) );
}
elem.parentNode.removeChild( elem );
}
}
return this;
},
empty: function() {
var elem,
i = 0;
for ( ; (elem = this[i]) != null; i++ ) {
if ( elem.nodeType === 1 ) {
// Prevent memory leaks
jQuery.cleanData( getAll( elem, false ) );
// Remove any remaining nodes
elem.textContent = "";
}
}
return this;
},
clone: function( dataAndEvents, deepDataAndEvents ) {
dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
return this.map(function() {
return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
});
},
html: function( value ) {
return access( this, function( value ) {
var elem = this[ 0 ] || {},
i = 0,
l = this.length;
if ( value === undefined && elem.nodeType === 1 ) {
return elem.innerHTML;
}
// See if we can take a shortcut and just use innerHTML
if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
!wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) {
value = value.replace( rxhtmlTag, "<$1></$2>" );
try {
for ( ; i < l; i++ ) {
elem = this[ i ] || {};
// Remove element nodes and prevent memory leaks
if ( elem.nodeType === 1 ) {
jQuery.cleanData( getAll( elem, false ) );
elem.innerHTML = value;
}
}
elem = 0;
// If using innerHTML throws an exception, use the fallback method
} catch( e ) {}
}
if ( elem ) {
this.empty().append( value );
}
}, null, value, arguments.length );
},
replaceWith: function() {
var arg = arguments[ 0 ];
// Make the changes, replacing each context element with the new content
this.domManip( arguments, function( elem ) {
arg = this.parentNode;
jQuery.cleanData( getAll( this ) );
if ( arg ) {
arg.replaceChild( elem, this );
}
});
// Force removal if there was no new content (e.g., from empty arguments)
return arg && (arg.length || arg.nodeType) ? this : this.remove();
},
detach: function( selector ) {
return this.remove( selector, true );
},
domManip: function( args, callback ) {
// Flatten any nested arrays
args = concat.apply( [], args );
var fragment, first, scripts, hasScripts, node, doc,
i = 0,
l = this.length,
set = this,
iNoClone = l - 1,
value = args[ 0 ],
isFunction = jQuery.isFunction( value );
// We can't cloneNode fragments that contain checked, in WebKit
if ( isFunction ||
( l > 1 && typeof value === "string" &&
!support.checkClone && rchecked.test( value ) ) ) {
return this.each(function( index ) {
var self = set.eq( index );
if ( isFunction ) {
args[ 0 ] = value.call( this, index, self.html() );
}
self.domManip( args, callback );
});
}
if ( l ) {
fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );
first = fragment.firstChild;
if ( fragment.childNodes.length === 1 ) {
fragment = first;
}
if ( first ) {
scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
hasScripts = scripts.length;
// Use the original fragment for the last item instead of the first because it can end up
// being emptied incorrectly in certain situations (#8070).
for ( ; i < l; i++ ) {
node = fragment;
if ( i !== iNoClone ) {
node = jQuery.clone( node, true, true );
// Keep references to cloned scripts for later restoration
if ( hasScripts ) {
// Support: QtWebKit
// jQuery.merge because push.apply(_, arraylike) throws
jQuery.merge( scripts, getAll( node, "script" ) );
}
}
callback.call( this[ i ], node, i );
}
if ( hasScripts ) {
doc = scripts[ scripts.length - 1 ].ownerDocument;
// Reenable scripts
jQuery.map( scripts, restoreScript );
// Evaluate executable scripts on first document insertion
for ( i = 0; i < hasScripts; i++ ) {
node = scripts[ i ];
if ( rscriptType.test( node.type || "" ) &&
!data_priv.access( node, "globalEval" ) && jQuery.contains( doc, node ) ) {
if ( node.src ) {
// Optional AJAX dependency, but won't run scripts if not present
if ( jQuery._evalUrl ) {
jQuery._evalUrl( node.src );
}
} else {
jQuery.globalEval( node.textContent.replace( rcleanScript, "" ) );
}
}
}
}
}
}
return this;
}
});
jQuery.each({
appendTo: "append",
prependTo: "prepend",
insertBefore: "before",
insertAfter: "after",
replaceAll: "replaceWith"
}, function( name, original ) {
jQuery.fn[ name ] = function( selector ) {
var elems,
ret = [],
insert = jQuery( selector ),
last = insert.length - 1,
i = 0;
for ( ; i <= last; i++ ) {
elems = i === last ? this : this.clone( true );
jQuery( insert[ i ] )[ original ]( elems );
// Support: QtWebKit
// .get() because push.apply(_, arraylike) throws
push.apply( ret, elems.get() );
}
return this.pushStack( ret );
};
});
var iframe,
elemdisplay = {};
/**
* Retrieve the actual display of a element
* @param {String} name nodeName of the element
* @param {Object} doc Document object
*/
// Called only from within defaultDisplay
function actualDisplay( name, doc ) {
var style,
elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),
// getDefaultComputedStyle might be reliably used only on attached element
display = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ?
// Use of this method is a temporary fix (more like optimization) until something better comes along,
// since it was removed from specification and supported only in FF
style.display : jQuery.css( elem[ 0 ], "display" );
// We don't have any data stored on the element,
// so use "detach" method as fast way to get rid of the element
elem.detach();
return display;
}
/**
* Try to determine the default display value of an element
* @param {String} nodeName
*/
function defaultDisplay( nodeName ) {
var doc = document,
display = elemdisplay[ nodeName ];
if ( !display ) {
display = actualDisplay( nodeName, doc );
// If the simple way fails, read from inside an iframe
if ( display === "none" || !display ) {
// Use the already-created iframe if possible
iframe = (iframe || jQuery( "<iframe frameborder='0' width='0' height='0'/>" )).appendTo( doc.documentElement );
// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse
doc = iframe[ 0 ].contentDocument;
// Support: IE
doc.write();
doc.close();
display = actualDisplay( nodeName, doc );
iframe.detach();
}
// Store the correct default display
elemdisplay[ nodeName ] = display;
}
return display;
}
var rmargin = (/^margin/);
var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
var getStyles = function( elem ) {
// Support: IE<=11+, Firefox<=30+ (#15098, #14150)
// IE throws on elements created in popups
// FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
if ( elem.ownerDocument.defaultView.opener ) {
return elem.ownerDocument.defaultView.getComputedStyle( elem, null );
}
return window.getComputedStyle( elem, null );
};
function curCSS( elem, name, computed ) {
var width, minWidth, maxWidth, ret,
style = elem.style;
computed = computed || getStyles( elem );
// Support: IE9
// getPropertyValue is only needed for .css('filter') (#12537)
if ( computed ) {
ret = computed.getPropertyValue( name ) || computed[ name ];
}
if ( computed ) {
if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) {
ret = jQuery.style( elem, name );
}
// Support: iOS < 6
// A tribute to the "awesome hack by Dean Edwards"
// iOS < 6 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels
// this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values
if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {
// Remember the original values
width = style.width;
minWidth = style.minWidth;
maxWidth = style.maxWidth;
// Put in the new values to get a computed value out
style.minWidth = style.maxWidth = style.width = ret;
ret = computed.width;
// Revert the changed values
style.width = width;
style.minWidth = minWidth;
style.maxWidth = maxWidth;
}
}
return ret !== undefined ?
// Support: IE
// IE returns zIndex value as an integer.
ret + "" :
ret;
}
function addGetHookIf( conditionFn, hookFn ) {
// Define the hook, we'll check on the first run if it's really needed.
return {
get: function() {
if ( conditionFn() ) {
// Hook not needed (or it's not possible to use it due
// to missing dependency), remove it.
delete this.get;
return;
}
// Hook needed; redefine it so that the support test is not executed again.
return (this.get = hookFn).apply( this, arguments );
}
};
}
(function() {
var pixelPositionVal, boxSizingReliableVal,
docElem = document.documentElement,
container = document.createElement( "div" ),
div = document.createElement( "div" );
if ( !div.style ) {
return;
}
// Support: IE9-11+
// Style of cloned element affects source element cloned (#8908)
div.style.backgroundClip = "content-box";
div.cloneNode( true ).style.backgroundClip = "";
support.clearCloneStyle = div.style.backgroundClip === "content-box";
container.style.cssText = "border:0;width:0;height:0;top:0;left:-9999px;margin-top:1px;" +
"position:absolute";
container.appendChild( div );
// Executing both pixelPosition & boxSizingReliable tests require only one layout
// so they're executed at the same time to save the second computation.
function computePixelPositionAndBoxSizingReliable() {
div.style.cssText =
// Support: Firefox<29, Android 2.3
// Vendor-prefix box-sizing
"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;" +
"box-sizing:border-box;display:block;margin-top:1%;top:1%;" +
"border:1px;padding:1px;width:4px;position:absolute";
div.innerHTML = "";
docElem.appendChild( container );
var divStyle = window.getComputedStyle( div, null );
pixelPositionVal = divStyle.top !== "1%";
boxSizingReliableVal = divStyle.width === "4px";
docElem.removeChild( container );
}
// Support: node.js jsdom
// Don't assume that getComputedStyle is a property of the global object
if ( window.getComputedStyle ) {
jQuery.extend( support, {
pixelPosition: function() {
// This test is executed only once but we still do memoizing
// since we can use the boxSizingReliable pre-computing.
// No need to check if the test was already performed, though.
computePixelPositionAndBoxSizingReliable();
return pixelPositionVal;
},
boxSizingReliable: function() {
if ( boxSizingReliableVal == null ) {
computePixelPositionAndBoxSizingReliable();
}
return boxSizingReliableVal;
},
reliableMarginRight: function() {
// Support: Android 2.3
// Check if div with explicit width and no margin-right incorrectly
// gets computed margin-right based on width of container. (#3333)
// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
// This support function is only executed once so no memoizing is needed.
var ret,
marginDiv = div.appendChild( document.createElement( "div" ) );
// Reset CSS: box-sizing; display; margin; border; padding
marginDiv.style.cssText = div.style.cssText =
// Support: Firefox<29, Android 2.3
// Vendor-prefix box-sizing
"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;" +
"box-sizing:content-box;display:block;margin:0;border:0;padding:0";
marginDiv.style.marginRight = marginDiv.style.width = "0";
div.style.width = "1px";
docElem.appendChild( container );
ret = !parseFloat( window.getComputedStyle( marginDiv, null ).marginRight );
docElem.removeChild( container );
div.removeChild( marginDiv );
return ret;
}
});
}
})();
// A method for quickly swapping in/out CSS properties to get correct calculations.
jQuery.swap = function( elem, options, callback, args ) {
var ret, name,
old = {};
// Remember the old values, and insert the new ones
for ( name in options ) {
old[ name ] = elem.style[ name ];
elem.style[ name ] = options[ name ];
}
ret = callback.apply( elem, args || [] );
// Revert the old values
for ( name in options ) {
elem.style[ name ] = old[ name ];
}
return ret;
};
var
// Swappable if display is none or starts with table except "table", "table-cell", or "table-caption"
// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
rdisplayswap = /^(none|table(?!-c[ea]).+)/,
rnumsplit = new RegExp( "^(" + pnum + ")(.*)$", "i" ),
rrelNum = new RegExp( "^([+-])=(" + pnum + ")", "i" ),
cssShow = { position: "absolute", visibility: "hidden", display: "block" },
cssNormalTransform = {
letterSpacing: "0",
fontWeight: "400"
},
cssPrefixes = [ "Webkit", "O", "Moz", "ms" ];
// Return a css property mapped to a potentially vendor prefixed property
function vendorPropName( style, name ) {
// Shortcut for names that are not vendor prefixed
if ( name in style ) {
return name;
}
// Check for vendor prefixed names
var capName = name[0].toUpperCase() + name.slice(1),
origName = name,
i = cssPrefixes.length;
while ( i-- ) {
name = cssPrefixes[ i ] + capName;
if ( name in style ) {
return name;
}
}
return origName;
}
function setPositiveNumber( elem, value, subtract ) {
var matches = rnumsplit.exec( value );
return matches ?
// Guard against undefined "subtract", e.g., when used as in cssHooks
Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) :
value;
}
function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {
var i = extra === ( isBorderBox ? "border" : "content" ) ?
// If we already have the right measurement, avoid augmentation
4 :
// Otherwise initialize for horizontal or vertical properties
name === "width" ? 1 : 0,
val = 0;
for ( ; i < 4; i += 2 ) {
// Both box models exclude margin, so add it if we want it
if ( extra === "margin" ) {
val += jQuery.css( elem, extra + cssExpand[ i ], true, styles );
}
if ( isBorderBox ) {
// border-box includes padding, so remove it if we want content
if ( extra === "content" ) {
val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
}
// At this point, extra isn't border nor margin, so remove border
if ( extra !== "margin" ) {
val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
}
} else {
// At this point, extra isn't content, so add padding
val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
// At this point, extra isn't content nor padding, so add border
if ( extra !== "padding" ) {
val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
}
}
}
return val;
}
function getWidthOrHeight( elem, name, extra ) {
// Start with offset property, which is equivalent to the border-box value
var valueIsBorderBox = true,
val = name === "width" ? elem.offsetWidth : elem.offsetHeight,
styles = getStyles( elem ),
isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box";
// Some non-html elements return undefined for offsetWidth, so check for null/undefined
// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285
// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668
if ( val <= 0 || val == null ) {
// Fall back to computed then uncomputed css if necessary
val = curCSS( elem, name, styles );
if ( val < 0 || val == null ) {
val = elem.style[ name ];
}
// Computed unit is not pixels. Stop here and return.
if ( rnumnonpx.test(val) ) {
return val;
}
// Check for style in case a browser which returns unreliable values
// for getComputedStyle silently falls back to the reliable elem.style
valueIsBorderBox = isBorderBox &&
( support.boxSizingReliable() || val === elem.style[ name ] );
// Normalize "", auto, and prepare for extra
val = parseFloat( val ) || 0;
}
// Use the active box-sizing model to add/subtract irrelevant styles
return ( val +
augmentWidthOrHeight(
elem,
name,
extra || ( isBorderBox ? "border" : "content" ),
valueIsBorderBox,
styles
)
) + "px";
}
function showHide( elements, show ) {
var display, elem, hidden,
values = [],
index = 0,
length = elements.length;
for ( ; index < length; index++ ) {
elem = elements[ index ];
if ( !elem.style ) {
continue;
}
values[ index ] = data_priv.get( elem, "olddisplay" );
display = elem.style.display;
if ( show ) {
// Reset the inline display of this element to learn if it is
// being hidden by cascaded rules or not
if ( !values[ index ] && display === "none" ) {
elem.style.display = "";
}
// Set elements which have been overridden with display: none
// in a stylesheet to whatever the default browser style is
// for such an element
if ( elem.style.display === "" && isHidden( elem ) ) {
values[ index ] = data_priv.access( elem, "olddisplay", defaultDisplay(elem.nodeName) );
}
} else {
hidden = isHidden( elem );
if ( display !== "none" || !hidden ) {
data_priv.set( elem, "olddisplay", hidden ? display : jQuery.css( elem, "display" ) );
}
}
}
// Set the display of most of the elements in a second loop
// to avoid the constant reflow
for ( index = 0; index < length; index++ ) {
elem = elements[ index ];
if ( !elem.style ) {
continue;
}
if ( !show || elem.style.display === "none" || elem.style.display === "" ) {
elem.style.display = show ? values[ index ] || "" : "none";
}
}
return elements;
}
jQuery.extend({
// Add in style property hooks for overriding the default
// behavior of getting and setting a style property
cssHooks: {
opacity: {
get: function( elem, computed ) {
if ( computed ) {
// We should always get a number back from opacity
var ret = curCSS( elem, "opacity" );
return ret === "" ? "1" : ret;
}
}
}
},
// Don't automatically add "px" to these possibly-unitless properties
cssNumber: {
"columnCount": true,
"fillOpacity": true,
"flexGrow": true,
"flexShrink": true,
"fontWeight": true,
"lineHeight": true,
"opacity": true,
"order": true,
"orphans": true,
"widows": true,
"zIndex": true,
"zoom": true
},
// Add in properties whose names you wish to fix before
// setting or getting the value
cssProps: {
"float": "cssFloat"
},
// Get and set the style property on a DOM Node
style: function( elem, name, value, extra ) {
// Don't set styles on text and comment nodes
if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
return;
}
// Make sure that we're working with the right name
var ret, type, hooks,
origName = jQuery.camelCase( name ),
style = elem.style;
name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );
// Gets hook for the prefixed version, then unprefixed version
hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
// Check if we're setting a value
if ( value !== undefined ) {
type = typeof value;
// Convert "+=" or "-=" to relative numbers (#7345)
if ( type === "string" && (ret = rrelNum.exec( value )) ) {
value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );
// Fixes bug #9237
type = "number";
}
// Make sure that null and NaN values aren't set (#7116)
if ( value == null || value !== value ) {
return;
}
// If a number, add 'px' to the (except for certain CSS properties)
if ( type === "number" && !jQuery.cssNumber[ origName ] ) {
value += "px";
}
// Support: IE9-11+
// background-* props affect original clone's values
if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) {
style[ name ] = "inherit";
}
// If a hook was provided, use that value, otherwise just set the specified value
if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {
style[ name ] = value;
}
} else {
// If a hook was provided get the non-computed value from there
if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {
return ret;
}
// Otherwise just get the value from the style object
return style[ name ];
}
},
css: function( elem, name, extra, styles ) {
var val, num, hooks,
origName = jQuery.camelCase( name );
// Make sure that we're working with the right name
name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );
// Try prefixed name followed by the unprefixed name
hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
// If a hook was provided get the computed value from there
if ( hooks && "get" in hooks ) {
val = hooks.get( elem, true, extra );
}
// Otherwise, if a way to get the computed value exists, use that
if ( val === undefined ) {
val = curCSS( elem, name, styles );
}
// Convert "normal" to computed value
if ( val === "normal" && name in cssNormalTransform ) {
val = cssNormalTransform[ name ];
}
// Make numeric if forced or a qualifier was provided and val looks numeric
if ( extra === "" || extra ) {
num = parseFloat( val );
return extra === true || jQuery.isNumeric( num ) ? num || 0 : val;
}
return val;
}
});
jQuery.each([ "height", "width" ], function( i, name ) {
jQuery.cssHooks[ name ] = {
get: function( elem, computed, extra ) {
if ( computed ) {
// Certain elements can have dimension info if we invisibly show them
// but it must have a current display style that would benefit
return rdisplayswap.test( jQuery.css( elem, "display" ) ) && elem.offsetWidth === 0 ?
jQuery.swap( elem, cssShow, function() {
return getWidthOrHeight( elem, name, extra );
}) :
getWidthOrHeight( elem, name, extra );
}
},
set: function( elem, value, extra ) {
var styles = extra && getStyles( elem );
return setPositiveNumber( elem, value, extra ?
augmentWidthOrHeight(
elem,
name,
extra,
jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
styles
) : 0
);
}
};
});
// Support: Android 2.3
jQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,
function( elem, computed ) {
if ( computed ) {
return jQuery.swap( elem, { "display": "inline-block" },
curCSS, [ elem, "marginRight" ] );
}
}
);
// These hooks are used by animate to expand properties
jQuery.each({
margin: "",
padding: "",
border: "Width"
}, function( prefix, suffix ) {
jQuery.cssHooks[ prefix + suffix ] = {
expand: function( value ) {
var i = 0,
expanded = {},
// Assumes a single number if not a string
parts = typeof value === "string" ? value.split(" ") : [ value ];
for ( ; i < 4; i++ ) {
expanded[ prefix + cssExpand[ i ] + suffix ] =
parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
}
return expanded;
}
};
if ( !rmargin.test( prefix ) ) {
jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
}
});
jQuery.fn.extend({
css: function( name, value ) {
return access( this, function( elem, name, value ) {
var styles, len,
map = {},
i = 0;
if ( jQuery.isArray( name ) ) {
styles = getStyles( elem );
len = name.length;
for ( ; i < len; i++ ) {
map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );
}
return map;
}
return value !== undefined ?
jQuery.style( elem, name, value ) :
jQuery.css( elem, name );
}, name, value, arguments.length > 1 );
},
show: function() {
return showHide( this, true );
},
hide: function() {
return showHide( this );
},
toggle: function( state ) {
if ( typeof state === "boolean" ) {
return state ? this.show() : this.hide();
}
return this.each(function() {
if ( isHidden( this ) ) {
jQuery( this ).show();
} else {
jQuery( this ).hide();
}
});
}
});
function Tween( elem, options, prop, end, easing ) {
return new Tween.prototype.init( elem, options, prop, end, easing );
}
jQuery.Tween = Tween;
Tween.prototype = {
constructor: Tween,
init: function( elem, options, prop, end, easing, unit ) {
this.elem = elem;
this.prop = prop;
this.easing = easing || "swing";
this.options = options;
this.start = this.now = this.cur();
this.end = end;
this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
},
cur: function() {
var hooks = Tween.propHooks[ this.prop ];
return hooks && hooks.get ?
hooks.get( this ) :
Tween.propHooks._default.get( this );
},
run: function( percent ) {
var eased,
hooks = Tween.propHooks[ this.prop ];
if ( this.options.duration ) {
this.pos = eased = jQuery.easing[ this.easing ](
percent, this.options.duration * percent, 0, 1, this.options.duration
);
} else {
this.pos = eased = percent;
}
this.now = ( this.end - this.start ) * eased + this.start;
if ( this.options.step ) {
this.options.step.call( this.elem, this.now, this );
}
if ( hooks && hooks.set ) {
hooks.set( this );
} else {
Tween.propHooks._default.set( this );
}
return this;
}
};
Tween.prototype.init.prototype = Tween.prototype;
Tween.propHooks = {
_default: {
get: function( tween ) {
var result;
if ( tween.elem[ tween.prop ] != null &&
(!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {
return tween.elem[ tween.prop ];
}
// Passing an empty string as a 3rd parameter to .css will automatically
// attempt a parseFloat and fallback to a string if the parse fails.
// Simple values such as "10px" are parsed to Float;
// complex values such as "rotate(1rad)" are returned as-is.
result = jQuery.css( tween.elem, tween.prop, "" );
// Empty strings, null, undefined and "auto" are converted to 0.
return !result || result === "auto" ? 0 : result;
},
set: function( tween ) {
// Use step hook for back compat.
// Use cssHook if its there.
// Use .style if available and use plain properties where available.
if ( jQuery.fx.step[ tween.prop ] ) {
jQuery.fx.step[ tween.prop ]( tween );
} else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {
jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
} else {
tween.elem[ tween.prop ] = tween.now;
}
}
}
};
// Support: IE9
// Panic based approach to setting things on disconnected nodes
Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
set: function( tween ) {
if ( tween.elem.nodeType && tween.elem.parentNode ) {
tween.elem[ tween.prop ] = tween.now;
}
}
};
jQuery.easing = {
linear: function( p ) {
return p;
},
swing: function( p ) {
return 0.5 - Math.cos( p * Math.PI ) / 2;
}
};
jQuery.fx = Tween.prototype.init;
// Back Compat <1.8 extension point
jQuery.fx.step = {};
var
fxNow, timerId,
rfxtypes = /^(?:toggle|show|hide)$/,
rfxnum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ),
rrun = /queueHooks$/,
animationPrefilters = [ defaultPrefilter ],
tweeners = {
"*": [ function( prop, value ) {
var tween = this.createTween( prop, value ),
target = tween.cur(),
parts = rfxnum.exec( value ),
unit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
// Starting value computation is required for potential unit mismatches
start = ( jQuery.cssNumber[ prop ] || unit !== "px" && +target ) &&
rfxnum.exec( jQuery.css( tween.elem, prop ) ),
scale = 1,
maxIterations = 20;
if ( start && start[ 3 ] !== unit ) {
// Trust units reported by jQuery.css
unit = unit || start[ 3 ];
// Make sure we update the tween properties later on
parts = parts || [];
// Iteratively approximate from a nonzero starting point
start = +target || 1;
do {
// If previous iteration zeroed out, double until we get *something*.
// Use string for doubling so we don't accidentally see scale as unchanged below
scale = scale || ".5";
// Adjust and apply
start = start / scale;
jQuery.style( tween.elem, prop, start + unit );
// Update scale, tolerating zero or NaN from tween.cur(),
// break the loop if scale is unchanged or perfect, or if we've just had enough
} while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );
}
// Update tween properties
if ( parts ) {
start = tween.start = +start || +target || 0;
tween.unit = unit;
// If a +=/-= token was provided, we're doing a relative animation
tween.end = parts[ 1 ] ?
start + ( parts[ 1 ] + 1 ) * parts[ 2 ] :
+parts[ 2 ];
}
return tween;
} ]
};
// Animations created synchronously will run synchronously
function createFxNow() {
setTimeout(function() {
fxNow = undefined;
});
return ( fxNow = jQuery.now() );
}
// Generate parameters to create a standard animation
function genFx( type, includeWidth ) {
var which,
i = 0,
attrs = { height: type };
// If we include width, step value is 1 to do all cssExpand values,
// otherwise step value is 2 to skip over Left and Right
includeWidth = includeWidth ? 1 : 0;
for ( ; i < 4 ; i += 2 - includeWidth ) {
which = cssExpand[ i ];
attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
}
if ( includeWidth ) {
attrs.opacity = attrs.width = type;
}
return attrs;
}
function createTween( value, prop, animation ) {
var tween,
collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ),
index = 0,
length = collection.length;
for ( ; index < length; index++ ) {
if ( (tween = collection[ index ].call( animation, prop, value )) ) {
// We're done with this property
return tween;
}
}
}
function defaultPrefilter( elem, props, opts ) {
/* jshint validthis: true */
var prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,
anim = this,
orig = {},
style = elem.style,
hidden = elem.nodeType && isHidden( elem ),
dataShow = data_priv.get( elem, "fxshow" );
// Handle queue: false promises
if ( !opts.queue ) {
hooks = jQuery._queueHooks( elem, "fx" );
if ( hooks.unqueued == null ) {
hooks.unqueued = 0;
oldfire = hooks.empty.fire;
hooks.empty.fire = function() {
if ( !hooks.unqueued ) {
oldfire();
}
};
}
hooks.unqueued++;
anim.always(function() {
// Ensure the complete handler is called before this completes
anim.always(function() {
hooks.unqueued--;
if ( !jQuery.queue( elem, "fx" ).length ) {
hooks.empty.fire();
}
});
});
}
// Height/width overflow pass
if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) {
// Make sure that nothing sneaks out
// Record all 3 overflow attributes because IE9-10 do not
// change the overflow attribute when overflowX and
// overflowY are set to the same value
opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
// Set display property to inline-block for height/width
// animations on inline elements that are having width/height animated
display = jQuery.css( elem, "display" );
// Test default display if display is currently "none"
checkDisplay = display === "none" ?
data_priv.get( elem, "olddisplay" ) || defaultDisplay( elem.nodeName ) : display;
if ( checkDisplay === "inline" && jQuery.css( elem, "float" ) === "none" ) {
style.display = "inline-block";
}
}
if ( opts.overflow ) {
style.overflow = "hidden";
anim.always(function() {
style.overflow = opts.overflow[ 0 ];
style.overflowX = opts.overflow[ 1 ];
style.overflowY = opts.overflow[ 2 ];
});
}
// show/hide pass
for ( prop in props ) {
value = props[ prop ];
if ( rfxtypes.exec( value ) ) {
delete props[ prop ];
toggle = toggle || value === "toggle";
if ( value === ( hidden ? "hide" : "show" ) ) {
// If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden
if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
hidden = true;
} else {
continue;
}
}
orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
// Any non-fx value stops us from restoring the original display value
} else {
display = undefined;
}
}
if ( !jQuery.isEmptyObject( orig ) ) {
if ( dataShow ) {
if ( "hidden" in dataShow ) {
hidden = dataShow.hidden;
}
} else {
dataShow = data_priv.access( elem, "fxshow", {} );
}
// Store state if its toggle - enables .stop().toggle() to "reverse"
if ( toggle ) {
dataShow.hidden = !hidden;
}
if ( hidden ) {
jQuery( elem ).show();
} else {
anim.done(function() {
jQuery( elem ).hide();
});
}
anim.done(function() {
var prop;
data_priv.remove( elem, "fxshow" );
for ( prop in orig ) {
jQuery.style( elem, prop, orig[ prop ] );
}
});
for ( prop in orig ) {
tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
if ( !( prop in dataShow ) ) {
dataShow[ prop ] = tween.start;
if ( hidden ) {
tween.end = tween.start;
tween.start = prop === "width" || prop === "height" ? 1 : 0;
}
}
}
// If this is a noop like .hide().hide(), restore an overwritten display value
} else if ( (display === "none" ? defaultDisplay( elem.nodeName ) : display) === "inline" ) {
style.display = display;
}
}
function propFilter( props, specialEasing ) {
var index, name, easing, value, hooks;
// camelCase, specialEasing and expand cssHook pass
for ( index in props ) {
name = jQuery.camelCase( index );
easing = specialEasing[ name ];
value = props[ index ];
if ( jQuery.isArray( value ) ) {
easing = value[ 1 ];
value = props[ index ] = value[ 0 ];
}
if ( index !== name ) {
props[ name ] = value;
delete props[ index ];
}
hooks = jQuery.cssHooks[ name ];
if ( hooks && "expand" in hooks ) {
value = hooks.expand( value );
delete props[ name ];
// Not quite $.extend, this won't overwrite existing keys.
// Reusing 'index' because we have the correct "name"
for ( index in value ) {
if ( !( index in props ) ) {
props[ index ] = value[ index ];
specialEasing[ index ] = easing;
}
}
} else {
specialEasing[ name ] = easing;
}
}
}
function Animation( elem, properties, options ) {
var result,
stopped,
index = 0,
length = animationPrefilters.length,
deferred = jQuery.Deferred().always( function() {
// Don't match elem in the :animated selector
delete tick.elem;
}),
tick = function() {
if ( stopped ) {
return false;
}
var currentTime = fxNow || createFxNow(),
remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
// Support: Android 2.3
// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)
temp = remaining / animation.duration || 0,
percent = 1 - temp,
index = 0,
length = animation.tweens.length;
for ( ; index < length ; index++ ) {
animation.tweens[ index ].run( percent );
}
deferred.notifyWith( elem, [ animation, percent, remaining ]);
if ( percent < 1 && length ) {
return remaining;
} else {
deferred.resolveWith( elem, [ animation ] );
return false;
}
},
animation = deferred.promise({
elem: elem,
props: jQuery.extend( {}, properties ),
opts: jQuery.extend( true, { specialEasing: {} }, options ),
originalProperties: properties,
originalOptions: options,
startTime: fxNow || createFxNow(),
duration: options.duration,
tweens: [],
createTween: function( prop, end ) {
var tween = jQuery.Tween( elem, animation.opts, prop, end,
animation.opts.specialEasing[ prop ] || animation.opts.easing );
animation.tweens.push( tween );
return tween;
},
stop: function( gotoEnd ) {
var index = 0,
// If we are going to the end, we want to run all the tweens
// otherwise we skip this part
length = gotoEnd ? animation.tweens.length : 0;
if ( stopped ) {
return this;
}
stopped = true;
for ( ; index < length ; index++ ) {
animation.tweens[ index ].run( 1 );
}
// Resolve when we played the last frame; otherwise, reject
if ( gotoEnd ) {
deferred.resolveWith( elem, [ animation, gotoEnd ] );
} else {
deferred.rejectWith( elem, [ animation, gotoEnd ] );
}
return this;
}
}),
props = animation.props;
propFilter( props, animation.opts.specialEasing );
for ( ; index < length ; index++ ) {
result = animationPrefilters[ index ].call( animation, elem, props, animation.opts );
if ( result ) {
return result;
}
}
jQuery.map( props, createTween, animation );
if ( jQuery.isFunction( animation.opts.start ) ) {
animation.opts.start.call( elem, animation );
}
jQuery.fx.timer(
jQuery.extend( tick, {
elem: elem,
anim: animation,
queue: animation.opts.queue
})
);
// attach callbacks from options
return animation.progress( animation.opts.progress )
.done( animation.opts.done, animation.opts.complete )
.fail( animation.opts.fail )
.always( animation.opts.always );
}
jQuery.Animation = jQuery.extend( Animation, {
tweener: function( props, callback ) {
if ( jQuery.isFunction( props ) ) {
callback = props;
props = [ "*" ];
} else {
props = props.split(" ");
}
var prop,
index = 0,
length = props.length;
for ( ; index < length ; index++ ) {
prop = props[ index ];
tweeners[ prop ] = tweeners[ prop ] || [];
tweeners[ prop ].unshift( callback );
}
},
prefilter: function( callback, prepend ) {
if ( prepend ) {
animationPrefilters.unshift( callback );
} else {
animationPrefilters.push( callback );
}
}
});
jQuery.speed = function( speed, easing, fn ) {
var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
complete: fn || !fn && easing ||
jQuery.isFunction( speed ) && speed,
duration: speed,
easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
};
opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
// Normalize opt.queue - true/undefined/null -> "fx"
if ( opt.queue == null || opt.queue === true ) {
opt.queue = "fx";
}
// Queueing
opt.old = opt.complete;
opt.complete = function() {
if ( jQuery.isFunction( opt.old ) ) {
opt.old.call( this );
}
if ( opt.queue ) {
jQuery.dequeue( this, opt.queue );
}
};
return opt;
};
jQuery.fn.extend({
fadeTo: function( speed, to, easing, callback ) {
// Show any hidden elements after setting opacity to 0
return this.filter( isHidden ).css( "opacity", 0 ).show()
// Animate to the value specified
.end().animate({ opacity: to }, speed, easing, callback );
},
animate: function( prop, speed, easing, callback ) {
var empty = jQuery.isEmptyObject( prop ),
optall = jQuery.speed( speed, easing, callback ),
doAnimation = function() {
// Operate on a copy of prop so per-property easing won't be lost
var anim = Animation( this, jQuery.extend( {}, prop ), optall );
// Empty animations, or finishing resolves immediately
if ( empty || data_priv.get( this, "finish" ) ) {
anim.stop( true );
}
};
doAnimation.finish = doAnimation;
return empty || optall.queue === false ?
this.each( doAnimation ) :
this.queue( optall.queue, doAnimation );
},
stop: function( type, clearQueue, gotoEnd ) {
var stopQueue = function( hooks ) {
var stop = hooks.stop;
delete hooks.stop;
stop( gotoEnd );
};
if ( typeof type !== "string" ) {
gotoEnd = clearQueue;
clearQueue = type;
type = undefined;
}
if ( clearQueue && type !== false ) {
this.queue( type || "fx", [] );
}
return this.each(function() {
var dequeue = true,
index = type != null && type + "queueHooks",
timers = jQuery.timers,
data = data_priv.get( this );
if ( index ) {
if ( data[ index ] && data[ index ].stop ) {
stopQueue( data[ index ] );
}
} else {
for ( index in data ) {
if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
stopQueue( data[ index ] );
}
}
}
for ( index = timers.length; index--; ) {
if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {
timers[ index ].anim.stop( gotoEnd );
dequeue = false;
timers.splice( index, 1 );
}
}
// Start the next in the queue if the last step wasn't forced.
// Timers currently will call their complete callbacks, which
// will dequeue but only if they were gotoEnd.
if ( dequeue || !gotoEnd ) {
jQuery.dequeue( this, type );
}
});
},
finish: function( type ) {
if ( type !== false ) {
type = type || "fx";
}
return this.each(function() {
var index,
data = data_priv.get( this ),
queue = data[ type + "queue" ],
hooks = data[ type + "queueHooks" ],
timers = jQuery.timers,
length = queue ? queue.length : 0;
// Enable finishing flag on private data
data.finish = true;
// Empty the queue first
jQuery.queue( this, type, [] );
if ( hooks && hooks.stop ) {
hooks.stop.call( this, true );
}
// Look for any active animations, and finish them
for ( index = timers.length; index--; ) {
if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
timers[ index ].anim.stop( true );
timers.splice( index, 1 );
}
}
// Look for any animations in the old queue and finish them
for ( index = 0; index < length; index++ ) {
if ( queue[ index ] && queue[ index ].finish ) {
queue[ index ].finish.call( this );
}
}
// Turn off finishing flag
delete data.finish;
});
}
});
jQuery.each([ "toggle", "show", "hide" ], function( i, name ) {
var cssFn = jQuery.fn[ name ];
jQuery.fn[ name ] = function( speed, easing, callback ) {
return speed == null || typeof speed === "boolean" ?
cssFn.apply( this, arguments ) :
this.animate( genFx( name, true ), speed, easing, callback );
};
});
// Generate shortcuts for custom animations
jQuery.each({
slideDown: genFx("show"),
slideUp: genFx("hide"),
slideToggle: genFx("toggle"),
fadeIn: { opacity: "show" },
fadeOut: { opacity: "hide" },
fadeToggle: { opacity: "toggle" }
}, function( name, props ) {
jQuery.fn[ name ] = function( speed, easing, callback ) {
return this.animate( props, speed, easing, callback );
};
});
jQuery.timers = [];
jQuery.fx.tick = function() {
var timer,
i = 0,
timers = jQuery.timers;
fxNow = jQuery.now();
for ( ; i < timers.length; i++ ) {
timer = timers[ i ];
// Checks the timer has not already been removed
if ( !timer() && timers[ i ] === timer ) {
timers.splice( i--, 1 );
}
}
if ( !timers.length ) {
jQuery.fx.stop();
}
fxNow = undefined;
};
jQuery.fx.timer = function( timer ) {
jQuery.timers.push( timer );
if ( timer() ) {
jQuery.fx.start();
} else {
jQuery.timers.pop();
}
};
jQuery.fx.interval = 13;
jQuery.fx.start = function() {
if ( !timerId ) {
timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );
}
};
jQuery.fx.stop = function() {
clearInterval( timerId );
timerId = null;
};
jQuery.fx.speeds = {
slow: 600,
fast: 200,
// Default speed
_default: 400
};
// Based off of the plugin by Clint Helfers, with permission.
// http://blindsignals.com/index.php/2009/07/jquery-delay/
jQuery.fn.delay = function( time, type ) {
time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
type = type || "fx";
return this.queue( type, function( next, hooks ) {
var timeout = setTimeout( next, time );
hooks.stop = function() {
clearTimeout( timeout );
};
});
};
(function() {
var input = document.createElement( "input" ),
select = document.createElement( "select" ),
opt = select.appendChild( document.createElement( "option" ) );
input.type = "checkbox";
// Support: iOS<=5.1, Android<=4.2+
// Default value for a checkbox should be "on"
support.checkOn = input.value !== "";
// Support: IE<=11+
// Must access selectedIndex to make default options select
support.optSelected = opt.selected;
// Support: Android<=2.3
// Options inside disabled selects are incorrectly marked as disabled
select.disabled = true;
support.optDisabled = !opt.disabled;
// Support: IE<=11+
// An input loses its value after becoming a radio
input = document.createElement( "input" );
input.value = "t";
input.type = "radio";
support.radioValue = input.value === "t";
})();
var nodeHook, boolHook,
attrHandle = jQuery.expr.attrHandle;
jQuery.fn.extend({
attr: function( name, value ) {
return access( this, jQuery.attr, name, value, arguments.length > 1 );
},
removeAttr: function( name ) {
return this.each(function() {
jQuery.removeAttr( this, name );
});
}
});
jQuery.extend({
attr: function( elem, name, value ) {
var hooks, ret,
nType = elem.nodeType;
// don't get/set attributes on text, comment and attribute nodes
if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
return;
}
// Fallback to prop when attributes are not supported
if ( typeof elem.getAttribute === strundefined ) {
return jQuery.prop( elem, name, value );
}
// All attributes are lowercase
// Grab necessary hook if one is defined
if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
name = name.toLowerCase();
hooks = jQuery.attrHooks[ name ] ||
( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );
}
if ( value !== undefined ) {
if ( value === null ) {
jQuery.removeAttr( elem, name );
} else if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {
return ret;
} else {
elem.setAttribute( name, value + "" );
return value;
}
} else if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) {
return ret;
} else {
ret = jQuery.find.attr( elem, name );
// Non-existent attributes return null, we normalize to undefined
return ret == null ?
undefined :
ret;
}
},
removeAttr: function( elem, value ) {
var name, propName,
i = 0,
attrNames = value && value.match( rnotwhite );
if ( attrNames && elem.nodeType === 1 ) {
while ( (name = attrNames[i++]) ) {
propName = jQuery.propFix[ name ] || name;
// Boolean attributes get special treatment (#10870)
if ( jQuery.expr.match.bool.test( name ) ) {
// Set corresponding property to false
elem[ propName ] = false;
}
elem.removeAttribute( name );
}
}
},
attrHooks: {
type: {
set: function( elem, value ) {
if ( !support.radioValue && value === "radio" &&
jQuery.nodeName( elem, "input" ) ) {
var val = elem.value;
elem.setAttribute( "type", value );
if ( val ) {
elem.value = val;
}
return value;
}
}
}
}
});
// Hooks for boolean attributes
boolHook = {
set: function( elem, value, name ) {
if ( value === false ) {
// Remove boolean attributes when set to false
jQuery.removeAttr( elem, name );
} else {
elem.setAttribute( name, name );
}
return name;
}
};
jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {
var getter = attrHandle[ name ] || jQuery.find.attr;
attrHandle[ name ] = function( elem, name, isXML ) {
var ret, handle;
if ( !isXML ) {
// Avoid an infinite loop by temporarily removing this function from the getter
handle = attrHandle[ name ];
attrHandle[ name ] = ret;
ret = getter( elem, name, isXML ) != null ?
name.toLowerCase() :
null;
attrHandle[ name ] = handle;
}
return ret;
};
});
var rfocusable = /^(?:input|select|textarea|button)$/i;
jQuery.fn.extend({
prop: function( name, value ) {
return access( this, jQuery.prop, name, value, arguments.length > 1 );
},
removeProp: function( name ) {
return this.each(function() {
delete this[ jQuery.propFix[ name ] || name ];
});
}
});
jQuery.extend({
propFix: {
"for": "htmlFor",
"class": "className"
},
prop: function( elem, name, value ) {
var ret, hooks, notxml,
nType = elem.nodeType;
// Don't get/set properties on text, comment and attribute nodes
if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
return;
}
notxml = nType !== 1 || !jQuery.isXMLDoc( elem );
if ( notxml ) {
// Fix name and attach hooks
name = jQuery.propFix[ name ] || name;
hooks = jQuery.propHooks[ name ];
}
if ( value !== undefined ) {
return hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?
ret :
( elem[ name ] = value );
} else {
return hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ?
ret :
elem[ name ];
}
},
propHooks: {
tabIndex: {
get: function( elem ) {
return elem.hasAttribute( "tabindex" ) || rfocusable.test( elem.nodeName ) || elem.href ?
elem.tabIndex :
-1;
}
}
}
});
if ( !support.optSelected ) {
jQuery.propHooks.selected = {
get: function( elem ) {
var parent = elem.parentNode;
if ( parent && parent.parentNode ) {
parent.parentNode.selectedIndex;
}
return null;
}
};
}
jQuery.each([
"tabIndex",
"readOnly",
"maxLength",
"cellSpacing",
"cellPadding",
"rowSpan",
"colSpan",
"useMap",
"frameBorder",
"contentEditable"
], function() {
jQuery.propFix[ this.toLowerCase() ] = this;
});
var rclass = /[\t\r\n\f]/g;
jQuery.fn.extend({
addClass: function( value ) {
var classes, elem, cur, clazz, j, finalValue,
proceed = typeof value === "string" && value,
i = 0,
len = this.length;
if ( jQuery.isFunction( value ) ) {
return this.each(function( j ) {
jQuery( this ).addClass( value.call( this, j, this.className ) );
});
}
if ( proceed ) {
// The disjunction here is for better compressibility (see removeClass)
classes = ( value || "" ).match( rnotwhite ) || [];
for ( ; i < len; i++ ) {
elem = this[ i ];
cur = elem.nodeType === 1 && ( elem.className ?
( " " + elem.className + " " ).replace( rclass, " " ) :
" "
);
if ( cur ) {
j = 0;
while ( (clazz = classes[j++]) ) {
if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
cur += clazz + " ";
}
}
// only assign if different to avoid unneeded rendering.
finalValue = jQuery.trim( cur );
if ( elem.className !== finalValue ) {
elem.className = finalValue;
}
}
}
}
return this;
},
removeClass: function( value ) {
var classes, elem, cur, clazz, j, finalValue,
proceed = arguments.length === 0 || typeof value === "string" && value,
i = 0,
len = this.length;
if ( jQuery.isFunction( value ) ) {
return this.each(function( j ) {
jQuery( this ).removeClass( value.call( this, j, this.className ) );
});
}
if ( proceed ) {
classes = ( value || "" ).match( rnotwhite ) || [];
for ( ; i < len; i++ ) {
elem = this[ i ];
// This expression is here for better compressibility (see addClass)
cur = elem.nodeType === 1 && ( elem.className ?
( " " + elem.className + " " ).replace( rclass, " " ) :
""
);
if ( cur ) {
j = 0;
while ( (clazz = classes[j++]) ) {
// Remove *all* instances
while ( cur.indexOf( " " + clazz + " " ) >= 0 ) {
cur = cur.replace( " " + clazz + " ", " " );
}
}
// Only assign if different to avoid unneeded rendering.
finalValue = value ? jQuery.trim( cur ) : "";
if ( elem.className !== finalValue ) {
elem.className = finalValue;
}
}
}
}
return this;
},
toggleClass: function( value, stateVal ) {
var type = typeof value;
if ( typeof stateVal === "boolean" && type === "string" ) {
return stateVal ? this.addClass( value ) : this.removeClass( value );
}
if ( jQuery.isFunction( value ) ) {
return this.each(function( i ) {
jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );
});
}
return this.each(function() {
if ( type === "string" ) {
// Toggle individual class names
var className,
i = 0,
self = jQuery( this ),
classNames = value.match( rnotwhite ) || [];
while ( (className = classNames[ i++ ]) ) {
// Check each className given, space separated list
if ( self.hasClass( className ) ) {
self.removeClass( className );
} else {
self.addClass( className );
}
}
// Toggle whole class name
} else if ( type === strundefined || type === "boolean" ) {
if ( this.className ) {
// store className if set
data_priv.set( this, "__className__", this.className );
}
// If the element has a class name or if we're passed `false`,
// then remove the whole classname (if there was one, the above saved it).
// Otherwise bring back whatever was previously saved (if anything),
// falling back to the empty string if nothing was stored.
this.className = this.className || value === false ? "" : data_priv.get( this, "__className__" ) || "";
}
});
},
hasClass: function( selector ) {
var className = " " + selector + " ",
i = 0,
l = this.length;
for ( ; i < l; i++ ) {
if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) {
return true;
}
}
return false;
}
});
var rreturn = /\r/g;
jQuery.fn.extend({
val: function( value ) {
var hooks, ret, isFunction,
elem = this[0];
if ( !arguments.length ) {
if ( elem ) {
hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];
if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) {
return ret;
}
ret = elem.value;
return typeof ret === "string" ?
// Handle most common string cases
ret.replace(rreturn, "") :
// Handle cases where value is null/undef or number
ret == null ? "" : ret;
}
return;
}
isFunction = jQuery.isFunction( value );
return this.each(function( i ) {
var val;
if ( this.nodeType !== 1 ) {
return;
}
if ( isFunction ) {
val = value.call( this, i, jQuery( this ).val() );
} else {
val = value;
}
// Treat null/undefined as ""; convert numbers to string
if ( val == null ) {
val = "";
} else if ( typeof val === "number" ) {
val += "";
} else if ( jQuery.isArray( val ) ) {
val = jQuery.map( val, function( value ) {
return value == null ? "" : value + "";
});
}
hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
// If set returns undefined, fall back to normal setting
if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) {
this.value = val;
}
});
}
});
jQuery.extend({
valHooks: {
option: {
get: function( elem ) {
var val = jQuery.find.attr( elem, "value" );
return val != null ?
val :
// Support: IE10-11+
// option.text throws exceptions (#14686, #14858)
jQuery.trim( jQuery.text( elem ) );
}
},
select: {
get: function( elem ) {
var value, option,
options = elem.options,
index = elem.selectedIndex,
one = elem.type === "select-one" || index < 0,
values = one ? null : [],
max = one ? index + 1 : options.length,
i = index < 0 ?
max :
one ? index : 0;
// Loop through all the selected options
for ( ; i < max; i++ ) {
option = options[ i ];
// IE6-9 doesn't update selected after form reset (#2551)
if ( ( option.selected || i === index ) &&
// Don't return options that are disabled or in a disabled optgroup
( support.optDisabled ? !option.disabled : option.getAttribute( "disabled" ) === null ) &&
( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {
// Get the specific value for the option
value = jQuery( option ).val();
// We don't need an array for one selects
if ( one ) {
return value;
}
// Multi-Selects return an array
values.push( value );
}
}
return values;
},
set: function( elem, value ) {
var optionSet, option,
options = elem.options,
values = jQuery.makeArray( value ),
i = options.length;
while ( i-- ) {
option = options[ i ];
if ( (option.selected = jQuery.inArray( option.value, values ) >= 0) ) {
optionSet = true;
}
}
// Force browsers to behave consistently when non-matching value is set
if ( !optionSet ) {
elem.selectedIndex = -1;
}
return values;
}
}
}
});
// Radios and checkboxes getter/setter
jQuery.each([ "radio", "checkbox" ], function() {
jQuery.valHooks[ this ] = {
set: function( elem, value ) {
if ( jQuery.isArray( value ) ) {
return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );
}
}
};
if ( !support.checkOn ) {
jQuery.valHooks[ this ].get = function( elem ) {
return elem.getAttribute("value") === null ? "on" : elem.value;
};
}
});
// Return jQuery for attributes-only inclusion
jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " +
"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
"change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) {
// Handle event binding
jQuery.fn[ name ] = function( data, fn ) {
return arguments.length > 0 ?
this.on( name, null, data, fn ) :
this.trigger( name );
};
});
jQuery.fn.extend({
hover: function( fnOver, fnOut ) {
return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
},
bind: function( types, data, fn ) {
return this.on( types, null, data, fn );
},
unbind: function( types, fn ) {
return this.off( types, null, fn );
},
delegate: function( selector, types, data, fn ) {
return this.on( types, selector, data, fn );
},
undelegate: function( selector, types, fn ) {
// ( namespace ) or ( selector, types [, fn] )
return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn );
}
});
var nonce = jQuery.now();
var rquery = (/\?/);
// Support: Android 2.3
// Workaround failure to string-cast null input
jQuery.parseJSON = function( data ) {
return JSON.parse( data + "" );
};
// Cross-browser xml parsing
jQuery.parseXML = function( data ) {
var xml, tmp;
if ( !data || typeof data !== "string" ) {
return null;
}
// Support: IE9
try {
tmp = new DOMParser();
xml = tmp.parseFromString( data, "text/xml" );
} catch ( e ) {
xml = undefined;
}
if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) {
jQuery.error( "Invalid XML: " + data );
}
return xml;
};
var
rhash = /#.*$/,
rts = /([?&])_=[^&]*/,
rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
// #7653, #8125, #8152: local protocol detection
rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
rnoContent = /^(?:GET|HEAD)$/,
rprotocol = /^\/\//,
rurl = /^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,
/* Prefilters
* 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
* 2) These are called:
* - BEFORE asking for a transport
* - AFTER param serialization (s.data is a string if s.processData is true)
* 3) key is the dataType
* 4) the catchall symbol "*" can be used
* 5) execution will start with transport dataType and THEN continue down to "*" if needed
*/
prefilters = {},
/* Transports bindings
* 1) key is the dataType
* 2) the catchall symbol "*" can be used
* 3) selection will start with transport dataType and THEN go to "*" if needed
*/
transports = {},
// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
allTypes = "*/".concat( "*" ),
// Document location
ajaxLocation = window.location.href,
// Segment location into parts
ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];
// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
function addToPrefiltersOrTransports( structure ) {
// dataTypeExpression is optional and defaults to "*"
return function( dataTypeExpression, func ) {
if ( typeof dataTypeExpression !== "string" ) {
func = dataTypeExpression;
dataTypeExpression = "*";
}
var dataType,
i = 0,
dataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];
if ( jQuery.isFunction( func ) ) {
// For each dataType in the dataTypeExpression
while ( (dataType = dataTypes[i++]) ) {
// Prepend if requested
if ( dataType[0] === "+" ) {
dataType = dataType.slice( 1 ) || "*";
(structure[ dataType ] = structure[ dataType ] || []).unshift( func );
// Otherwise append
} else {
(structure[ dataType ] = structure[ dataType ] || []).push( func );
}
}
}
};
}
// Base inspection function for prefilters and transports
function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
var inspected = {},
seekingTransport = ( structure === transports );
function inspect( dataType ) {
var selected;
inspected[ dataType ] = true;
jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
if ( typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {
options.dataTypes.unshift( dataTypeOrTransport );
inspect( dataTypeOrTransport );
return false;
} else if ( seekingTransport ) {
return !( selected = dataTypeOrTransport );
}
});
return selected;
}
return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
}
// A special extend for ajax options
// that takes "flat" options (not to be deep extended)
// Fixes #9887
function ajaxExtend( target, src ) {
var key, deep,
flatOptions = jQuery.ajaxSettings.flatOptions || {};
for ( key in src ) {
if ( src[ key ] !== undefined ) {
( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];
}
}
if ( deep ) {
jQuery.extend( true, target, deep );
}
return target;
}
/* Handles responses to an ajax request:
* - finds the right dataType (mediates between content-type and expected dataType)
* - returns the corresponding response
*/
function ajaxHandleResponses( s, jqXHR, responses ) {
var ct, type, finalDataType, firstDataType,
contents = s.contents,
dataTypes = s.dataTypes;
// Remove auto dataType and get content-type in the process
while ( dataTypes[ 0 ] === "*" ) {
dataTypes.shift();
if ( ct === undefined ) {
ct = s.mimeType || jqXHR.getResponseHeader("Content-Type");
}
}
// Check if we're dealing with a known content-type
if ( ct ) {
for ( type in contents ) {
if ( contents[ type ] && contents[ type ].test( ct ) ) {
dataTypes.unshift( type );
break;
}
}
}
// Check to see if we have a response for the expected dataType
if ( dataTypes[ 0 ] in responses ) {
finalDataType = dataTypes[ 0 ];
} else {
// Try convertible dataTypes
for ( type in responses ) {
if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) {
finalDataType = type;
break;
}
if ( !firstDataType ) {
firstDataType = type;
}
}
// Or just use first one
finalDataType = finalDataType || firstDataType;
}
// If we found a dataType
// We add the dataType to the list if needed
// and return the corresponding response
if ( finalDataType ) {
if ( finalDataType !== dataTypes[ 0 ] ) {
dataTypes.unshift( finalDataType );
}
return responses[ finalDataType ];
}
}
/* Chain conversions given the request and the original response
* Also sets the responseXXX fields on the jqXHR instance
*/
function ajaxConvert( s, response, jqXHR, isSuccess ) {
var conv2, current, conv, tmp, prev,
converters = {},
// Work with a copy of dataTypes in case we need to modify it for conversion
dataTypes = s.dataTypes.slice();
// Create converters map with lowercased keys
if ( dataTypes[ 1 ] ) {
for ( conv in s.converters ) {
converters[ conv.toLowerCase() ] = s.converters[ conv ];
}
}
current = dataTypes.shift();
// Convert to each sequential dataType
while ( current ) {
if ( s.responseFields[ current ] ) {
jqXHR[ s.responseFields[ current ] ] = response;
}
// Apply the dataFilter if provided
if ( !prev && isSuccess && s.dataFilter ) {
response = s.dataFilter( response, s.dataType );
}
prev = current;
current = dataTypes.shift();
if ( current ) {
// There's only work to do if current dataType is non-auto
if ( current === "*" ) {
current = prev;
// Convert response if prev dataType is non-auto and differs from current
} else if ( prev !== "*" && prev !== current ) {
// Seek a direct converter
conv = converters[ prev + " " + current ] || converters[ "* " + current ];
// If none found, seek a pair
if ( !conv ) {
for ( conv2 in converters ) {
// If conv2 outputs current
tmp = conv2.split( " " );
if ( tmp[ 1 ] === current ) {
// If prev can be converted to accepted input
conv = converters[ prev + " " + tmp[ 0 ] ] ||
converters[ "* " + tmp[ 0 ] ];
if ( conv ) {
// Condense equivalence converters
if ( conv === true ) {
conv = converters[ conv2 ];
// Otherwise, insert the intermediate dataType
} else if ( converters[ conv2 ] !== true ) {
current = tmp[ 0 ];
dataTypes.unshift( tmp[ 1 ] );
}
break;
}
}
}
}
// Apply converter (if not an equivalence)
if ( conv !== true ) {
// Unless errors are allowed to bubble, catch and return them
if ( conv && s[ "throws" ] ) {
response = conv( response );
} else {
try {
response = conv( response );
} catch ( e ) {
return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current };
}
}
}
}
}
}
return { state: "success", data: response };
}
jQuery.extend({
// Counter for holding the number of active queries
active: 0,
// Last-Modified header cache for next request
lastModified: {},
etag: {},
ajaxSettings: {
url: ajaxLocation,
type: "GET",
isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),
global: true,
processData: true,
async: true,
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
/*
timeout: 0,
data: null,
dataType: null,
username: null,
password: null,
cache: null,
throws: false,
traditional: false,
headers: {},
*/
accepts: {
"*": allTypes,
text: "text/plain",
html: "text/html",
xml: "application/xml, text/xml",
json: "application/json, text/javascript"
},
contents: {
xml: /xml/,
html: /html/,
json: /json/
},
responseFields: {
xml: "responseXML",
text: "responseText",
json: "responseJSON"
},
// Data converters
// Keys separate source (or catchall "*") and destination types with a single space
converters: {
// Convert anything to text
"* text": String,
// Text to html (true = no transformation)
"text html": true,
// Evaluate text as a json expression
"text json": jQuery.parseJSON,
// Parse text as xml
"text xml": jQuery.parseXML
},
// For options that shouldn't be deep extended:
// you can add your own custom options here if
// and when you create one that shouldn't be
// deep extended (see ajaxExtend)
flatOptions: {
url: true,
context: true
}
},
// Creates a full fledged settings object into target
// with both ajaxSettings and settings fields.
// If target is omitted, writes into ajaxSettings.
ajaxSetup: function( target, settings ) {
return settings ?
// Building a settings object
ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
// Extending ajaxSettings
ajaxExtend( jQuery.ajaxSettings, target );
},
ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
ajaxTransport: addToPrefiltersOrTransports( transports ),
// Main method
ajax: function( url, options ) {
// If url is an object, simulate pre-1.5 signature
if ( typeof url === "object" ) {
options = url;
url = undefined;
}
// Force options to be an object
options = options || {};
var transport,
// URL without anti-cache param
cacheURL,
// Response headers
responseHeadersString,
responseHeaders,
// timeout handle
timeoutTimer,
// Cross-domain detection vars
parts,
// To know if global events are to be dispatched
fireGlobals,
// Loop variable
i,
// Create the final options object
s = jQuery.ajaxSetup( {}, options ),
// Callbacks context
callbackContext = s.context || s,
// Context for global events is callbackContext if it is a DOM node or jQuery collection
globalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?
jQuery( callbackContext ) :
jQuery.event,
// Deferreds
deferred = jQuery.Deferred(),
completeDeferred = jQuery.Callbacks("once memory"),
// Status-dependent callbacks
statusCode = s.statusCode || {},
// Headers (they are sent all at once)
requestHeaders = {},
requestHeadersNames = {},
// The jqXHR state
state = 0,
// Default abort message
strAbort = "canceled",
// Fake xhr
jqXHR = {
readyState: 0,
// Builds headers hashtable if needed
getResponseHeader: function( key ) {
var match;
if ( state === 2 ) {
if ( !responseHeaders ) {
responseHeaders = {};
while ( (match = rheaders.exec( responseHeadersString )) ) {
responseHeaders[ match[1].toLowerCase() ] = match[ 2 ];
}
}
match = responseHeaders[ key.toLowerCase() ];
}
return match == null ? null : match;
},
// Raw string
getAllResponseHeaders: function() {
return state === 2 ? responseHeadersString : null;
},
// Caches the header
setRequestHeader: function( name, value ) {
var lname = name.toLowerCase();
if ( !state ) {
name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;
requestHeaders[ name ] = value;
}
return this;
},
// Overrides response content-type header
overrideMimeType: function( type ) {
if ( !state ) {
s.mimeType = type;
}
return this;
},
// Status-dependent callbacks
statusCode: function( map ) {
var code;
if ( map ) {
if ( state < 2 ) {
for ( code in map ) {
// Lazy-add the new callback in a way that preserves old ones
statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
}
} else {
// Execute the appropriate callbacks
jqXHR.always( map[ jqXHR.status ] );
}
}
return this;
},
// Cancel the request
abort: function( statusText ) {
var finalText = statusText || strAbort;
if ( transport ) {
transport.abort( finalText );
}
done( 0, finalText );
return this;
}
};
// Attach deferreds
deferred.promise( jqXHR ).complete = completeDeferred.add;
jqXHR.success = jqXHR.done;
jqXHR.error = jqXHR.fail;
// Remove hash character (#7531: and string promotion)
// Add protocol if not provided (prefilters might expect it)
// Handle falsy url in the settings object (#10093: consistency with old signature)
// We also use the url parameter if available
s.url = ( ( url || s.url || ajaxLocation ) + "" ).replace( rhash, "" )
.replace( rprotocol, ajaxLocParts[ 1 ] + "//" );
// Alias method option to type as per ticket #12004
s.type = options.method || options.type || s.method || s.type;
// Extract dataTypes list
s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( rnotwhite ) || [ "" ];
// A cross-domain request is in order when we have a protocol:host:port mismatch
if ( s.crossDomain == null ) {
parts = rurl.exec( s.url.toLowerCase() );
s.crossDomain = !!( parts &&
( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||
( parts[ 3 ] || ( parts[ 1 ] === "http:" ? "80" : "443" ) ) !==
( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? "80" : "443" ) ) )
);
}
// Convert data if not already a string
if ( s.data && s.processData && typeof s.data !== "string" ) {
s.data = jQuery.param( s.data, s.traditional );
}
// Apply prefilters
inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
// If request was aborted inside a prefilter, stop there
if ( state === 2 ) {
return jqXHR;
}
// We can fire global events as of now if asked to
// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)
fireGlobals = jQuery.event && s.global;
// Watch for a new set of requests
if ( fireGlobals && jQuery.active++ === 0 ) {
jQuery.event.trigger("ajaxStart");
}
// Uppercase the type
s.type = s.type.toUpperCase();
// Determine if request has content
s.hasContent = !rnoContent.test( s.type );
// Save the URL in case we're toying with the If-Modified-Since
// and/or If-None-Match header later on
cacheURL = s.url;
// More options handling for requests with no content
if ( !s.hasContent ) {
// If data is available, append data to url
if ( s.data ) {
cacheURL = ( s.url += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data );
// #9682: remove data so that it's not used in an eventual retry
delete s.data;
}
// Add anti-cache in url if needed
if ( s.cache === false ) {
s.url = rts.test( cacheURL ) ?
// If there is already a '_' parameter, set its value
cacheURL.replace( rts, "$1_=" + nonce++ ) :
// Otherwise add one to the end
cacheURL + ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + nonce++;
}
}
// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
if ( s.ifModified ) {
if ( jQuery.lastModified[ cacheURL ] ) {
jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
}
if ( jQuery.etag[ cacheURL ] ) {
jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
}
}
// Set the correct header, if data is being sent
if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
jqXHR.setRequestHeader( "Content-Type", s.contentType );
}
// Set the Accepts header for the server, depending on the dataType
jqXHR.setRequestHeader(
"Accept",
s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?
s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
s.accepts[ "*" ]
);
// Check for headers option
for ( i in s.headers ) {
jqXHR.setRequestHeader( i, s.headers[ i ] );
}
// Allow custom headers/mimetypes and early abort
if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {
// Abort if not done already and return
return jqXHR.abort();
}
// Aborting is no longer a cancellation
strAbort = "abort";
// Install callbacks on deferreds
for ( i in { success: 1, error: 1, complete: 1 } ) {
jqXHR[ i ]( s[ i ] );
}
// Get transport
transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
// If no transport, we auto-abort
if ( !transport ) {
done( -1, "No Transport" );
} else {
jqXHR.readyState = 1;
// Send global event
if ( fireGlobals ) {
globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
}
// Timeout
if ( s.async && s.timeout > 0 ) {
timeoutTimer = setTimeout(function() {
jqXHR.abort("timeout");
}, s.timeout );
}
try {
state = 1;
transport.send( requestHeaders, done );
} catch ( e ) {
// Propagate exception as error if not done
if ( state < 2 ) {
done( -1, e );
// Simply rethrow otherwise
} else {
throw e;
}
}
}
// Callback for when everything is done
function done( status, nativeStatusText, responses, headers ) {
var isSuccess, success, error, response, modified,
statusText = nativeStatusText;
// Called once
if ( state === 2 ) {
return;
}
// State is "done" now
state = 2;
// Clear timeout if it exists
if ( timeoutTimer ) {
clearTimeout( timeoutTimer );
}
// Dereference transport for early garbage collection
// (no matter how long the jqXHR object will be used)
transport = undefined;
// Cache response headers
responseHeadersString = headers || "";
// Set readyState
jqXHR.readyState = status > 0 ? 4 : 0;
// Determine if successful
isSuccess = status >= 200 && status < 300 || status === 304;
// Get response data
if ( responses ) {
response = ajaxHandleResponses( s, jqXHR, responses );
}
// Convert no matter what (that way responseXXX fields are always set)
response = ajaxConvert( s, response, jqXHR, isSuccess );
// If successful, handle type chaining
if ( isSuccess ) {
// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
if ( s.ifModified ) {
modified = jqXHR.getResponseHeader("Last-Modified");
if ( modified ) {
jQuery.lastModified[ cacheURL ] = modified;
}
modified = jqXHR.getResponseHeader("etag");
if ( modified ) {
jQuery.etag[ cacheURL ] = modified;
}
}
// if no content
if ( status === 204 || s.type === "HEAD" ) {
statusText = "nocontent";
// if not modified
} else if ( status === 304 ) {
statusText = "notmodified";
// If we have data, let's convert it
} else {
statusText = response.state;
success = response.data;
error = response.error;
isSuccess = !error;
}
} else {
// Extract error from statusText and normalize for non-aborts
error = statusText;
if ( status || !statusText ) {
statusText = "error";
if ( status < 0 ) {
status = 0;
}
}
}
// Set data for the fake xhr object
jqXHR.status = status;
jqXHR.statusText = ( nativeStatusText || statusText ) + "";
// Success/Error
if ( isSuccess ) {
deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
} else {
deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
}
// Status-dependent callbacks
jqXHR.statusCode( statusCode );
statusCode = undefined;
if ( fireGlobals ) {
globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
[ jqXHR, s, isSuccess ? success : error ] );
}
// Complete
completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
if ( fireGlobals ) {
globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
// Handle the global AJAX counter
if ( !( --jQuery.active ) ) {
jQuery.event.trigger("ajaxStop");
}
}
}
return jqXHR;
},
getJSON: function( url, data, callback ) {
return jQuery.get( url, data, callback, "json" );
},
getScript: function( url, callback ) {
return jQuery.get( url, undefined, callback, "script" );
}
});
jQuery.each( [ "get", "post" ], function( i, method ) {
jQuery[ method ] = function( url, data, callback, type ) {
// Shift arguments if data argument was omitted
if ( jQuery.isFunction( data ) ) {
type = type || callback;
callback = data;
data = undefined;
}
return jQuery.ajax({
url: url,
type: method,
dataType: type,
data: data,
success: callback
});
};
});
jQuery._evalUrl = function( url ) {
return jQuery.ajax({
url: url,
type: "GET",
dataType: "script",
async: false,
global: false,
"throws": true
});
};
jQuery.fn.extend({
wrapAll: function( html ) {
var wrap;
if ( jQuery.isFunction( html ) ) {
return this.each(function( i ) {
jQuery( this ).wrapAll( html.call(this, i) );
});
}
if ( this[ 0 ] ) {
// The elements to wrap the target around
wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );
if ( this[ 0 ].parentNode ) {
wrap.insertBefore( this[ 0 ] );
}
wrap.map(function() {
var elem = this;
while ( elem.firstElementChild ) {
elem = elem.firstElementChild;
}
return elem;
}).append( this );
}
return this;
},
wrapInner: function( html ) {
if ( jQuery.isFunction( html ) ) {
return this.each(function( i ) {
jQuery( this ).wrapInner( html.call(this, i) );
});
}
return this.each(function() {
var self = jQuery( this ),
contents = self.contents();
if ( contents.length ) {
contents.wrapAll( html );
} else {
self.append( html );
}
});
},
wrap: function( html ) {
var isFunction = jQuery.isFunction( html );
return this.each(function( i ) {
jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );
});
},
unwrap: function() {
return this.parent().each(function() {
if ( !jQuery.nodeName( this, "body" ) ) {
jQuery( this ).replaceWith( this.childNodes );
}
}).end();
}
});
jQuery.expr.filters.hidden = function( elem ) {
// Support: Opera <= 12.12
// Opera reports offsetWidths and offsetHeights less than zero on some elements
return elem.offsetWidth <= 0 && elem.offsetHeight <= 0;
};
jQuery.expr.filters.visible = function( elem ) {
return !jQuery.expr.filters.hidden( elem );
};
var r20 = /%20/g,
rbracket = /\[\]$/,
rCRLF = /\r?\n/g,
rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
rsubmittable = /^(?:input|select|textarea|keygen)/i;
function buildParams( prefix, obj, traditional, add ) {
var name;
if ( jQuery.isArray( obj ) ) {
// Serialize array item.
jQuery.each( obj, function( i, v ) {
if ( traditional || rbracket.test( prefix ) ) {
// Treat each array item as a scalar.
add( prefix, v );
} else {
// Item is non-scalar (array or object), encode its numeric index.
buildParams( prefix + "[" + ( typeof v === "object" ? i : "" ) + "]", v, traditional, add );
}
});
} else if ( !traditional && jQuery.type( obj ) === "object" ) {
// Serialize object item.
for ( name in obj ) {
buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
}
} else {
// Serialize scalar item.
add( prefix, obj );
}
}
// Serialize an array of form elements or a set of
// key/values into a query string
jQuery.param = function( a, traditional ) {
var prefix,
s = [],
add = function( key, value ) {
// If value is a function, invoke it and return its value
value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value );
s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value );
};
// Set traditional to true for jQuery <= 1.3.2 behavior.
if ( traditional === undefined ) {
traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;
}
// If an array was passed in, assume that it is an array of form elements.
if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
// Serialize the form elements
jQuery.each( a, function() {
add( this.name, this.value );
});
} else {
// If traditional, encode the "old" way (the way 1.3.2 or older
// did it), otherwise encode params recursively.
for ( prefix in a ) {
buildParams( prefix, a[ prefix ], traditional, add );
}
}
// Return the resulting serialization
return s.join( "&" ).replace( r20, "+" );
};
jQuery.fn.extend({
serialize: function() {
return jQuery.param( this.serializeArray() );
},
serializeArray: function() {
return this.map(function() {
// Can add propHook for "elements" to filter or add form elements
var elements = jQuery.prop( this, "elements" );
return elements ? jQuery.makeArray( elements ) : this;
})
.filter(function() {
var type = this.type;
// Use .is( ":disabled" ) so that fieldset[disabled] works
return this.name && !jQuery( this ).is( ":disabled" ) &&
rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
( this.checked || !rcheckableType.test( type ) );
})
.map(function( i, elem ) {
var val = jQuery( this ).val();
return val == null ?
null :
jQuery.isArray( val ) ?
jQuery.map( val, function( val ) {
return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
}) :
{ name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
}).get();
}
});
jQuery.ajaxSettings.xhr = function() {
try {
return new XMLHttpRequest();
} catch( e ) {}
};
var xhrId = 0,
xhrCallbacks = {},
xhrSuccessStatus = {
// file protocol always yields status code 0, assume 200
0: 200,
// Support: IE9
// #1450: sometimes IE returns 1223 when it should be 204
1223: 204
},
xhrSupported = jQuery.ajaxSettings.xhr();
// Support: IE9
// Open requests must be manually aborted on unload (#5280)
// See https://support.microsoft.com/kb/2856746 for more info
if ( window.attachEvent ) {
window.attachEvent( "onunload", function() {
for ( var key in xhrCallbacks ) {
xhrCallbacks[ key ]();
}
});
}
support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
support.ajax = xhrSupported = !!xhrSupported;
jQuery.ajaxTransport(function( options ) {
var callback;
// Cross domain only allowed if supported through XMLHttpRequest
if ( support.cors || xhrSupported && !options.crossDomain ) {
return {
send: function( headers, complete ) {
var i,
xhr = options.xhr(),
id = ++xhrId;
xhr.open( options.type, options.url, options.async, options.username, options.password );
// Apply custom fields if provided
if ( options.xhrFields ) {
for ( i in options.xhrFields ) {
xhr[ i ] = options.xhrFields[ i ];
}
}
// Override mime type if needed
if ( options.mimeType && xhr.overrideMimeType ) {
xhr.overrideMimeType( options.mimeType );
}
// X-Requested-With header
// For cross-domain requests, seeing as conditions for a preflight are
// akin to a jigsaw puzzle, we simply never set it to be sure.
// (it can always be set on a per-request basis or even using ajaxSetup)
// For same-domain requests, won't change header if already provided.
if ( !options.crossDomain && !headers["X-Requested-With"] ) {
headers["X-Requested-With"] = "XMLHttpRequest";
}
// Set headers
for ( i in headers ) {
xhr.setRequestHeader( i, headers[ i ] );
}
// Callback
callback = function( type ) {
return function() {
if ( callback ) {
delete xhrCallbacks[ id ];
callback = xhr.onload = xhr.onerror = null;
if ( type === "abort" ) {
xhr.abort();
} else if ( type === "error" ) {
complete(
// file: protocol always yields status 0; see #8605, #14207
xhr.status,
xhr.statusText
);
} else {
complete(
xhrSuccessStatus[ xhr.status ] || xhr.status,
xhr.statusText,
// Support: IE9
// Accessing binary-data responseText throws an exception
// (#11426)
typeof xhr.responseText === "string" ? {
text: xhr.responseText
} : undefined,
xhr.getAllResponseHeaders()
);
}
}
};
};
// Listen to events
xhr.onload = callback();
xhr.onerror = callback("error");
// Create the abort callback
callback = xhrCallbacks[ id ] = callback("abort");
try {
// Do send the request (this may raise an exception)
xhr.send( options.hasContent && options.data || null );
} catch ( e ) {
// #14683: Only rethrow if this hasn't been notified as an error yet
if ( callback ) {
throw e;
}
}
},
abort: function() {
if ( callback ) {
callback();
}
}
};
}
});
// Install script dataType
jQuery.ajaxSetup({
accepts: {
script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"
},
contents: {
script: /(?:java|ecma)script/
},
converters: {
"text script": function( text ) {
jQuery.globalEval( text );
return text;
}
}
});
// Handle cache's special case and crossDomain
jQuery.ajaxPrefilter( "script", function( s ) {
if ( s.cache === undefined ) {
s.cache = false;
}
if ( s.crossDomain ) {
s.type = "GET";
}
});
// Bind script tag hack transport
jQuery.ajaxTransport( "script", function( s ) {
// This transport only deals with cross domain requests
if ( s.crossDomain ) {
var script, callback;
return {
send: function( _, complete ) {
script = jQuery("<script>").prop({
async: true,
charset: s.scriptCharset,
src: s.url
}).on(
"load error",
callback = function( evt ) {
script.remove();
callback = null;
if ( evt ) {
complete( evt.type === "error" ? 404 : 200, evt.type );
}
}
);
document.head.appendChild( script[ 0 ] );
},
abort: function() {
if ( callback ) {
callback();
}
}
};
}
});
var oldCallbacks = [],
rjsonp = /(=)\?(?=&|$)|\?\?/;
// Default jsonp settings
jQuery.ajaxSetup({
jsonp: "callback",
jsonpCallback: function() {
var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) );
this[ callback ] = true;
return callback;
}
});
// Detect, normalize options and install callbacks for jsonp requests
jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
var callbackName, overwritten, responseContainer,
jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?
"url" :
typeof s.data === "string" && !( s.contentType || "" ).indexOf("application/x-www-form-urlencoded") && rjsonp.test( s.data ) && "data"
);
// Handle iff the expected data type is "jsonp" or we have a parameter to set
if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {
// Get callback name, remembering preexisting value associated with it
callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?
s.jsonpCallback() :
s.jsonpCallback;
// Insert callback into url or form data
if ( jsonProp ) {
s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName );
} else if ( s.jsonp !== false ) {
s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
}
// Use data converter to retrieve json after script execution
s.converters["script json"] = function() {
if ( !responseContainer ) {
jQuery.error( callbackName + " was not called" );
}
return responseContainer[ 0 ];
};
// force json dataType
s.dataTypes[ 0 ] = "json";
// Install callback
overwritten = window[ callbackName ];
window[ callbackName ] = function() {
responseContainer = arguments;
};
// Clean-up function (fires after converters)
jqXHR.always(function() {
// Restore preexisting value
window[ callbackName ] = overwritten;
// Save back as free
if ( s[ callbackName ] ) {
// make sure that re-using the options doesn't screw things around
s.jsonpCallback = originalSettings.jsonpCallback;
// save the callback name for future use
oldCallbacks.push( callbackName );
}
// Call if it was a function and we have a response
if ( responseContainer && jQuery.isFunction( overwritten ) ) {
overwritten( responseContainer[ 0 ] );
}
responseContainer = overwritten = undefined;
});
// Delegate to script
return "script";
}
});
// data: string of html
// context (optional): If specified, the fragment will be created in this context, defaults to document
// keepScripts (optional): If true, will include scripts passed in the html string
jQuery.parseHTML = function( data, context, keepScripts ) {
if ( !data || typeof data !== "string" ) {
return null;
}
if ( typeof context === "boolean" ) {
keepScripts = context;
context = false;
}
context = context || document;
var parsed = rsingleTag.exec( data ),
scripts = !keepScripts && [];
// Single tag
if ( parsed ) {
return [ context.createElement( parsed[1] ) ];
}
parsed = jQuery.buildFragment( [ data ], context, scripts );
if ( scripts && scripts.length ) {
jQuery( scripts ).remove();
}
return jQuery.merge( [], parsed.childNodes );
};
// Keep a copy of the old load method
var _load = jQuery.fn.load;
/**
* Load a url into a page
*/
jQuery.fn.load = function( url, params, callback ) {
if ( typeof url !== "string" && _load ) {
return _load.apply( this, arguments );
}
var selector, type, response,
self = this,
off = url.indexOf(" ");
if ( off >= 0 ) {
selector = jQuery.trim( url.slice( off ) );
url = url.slice( 0, off );
}
// If it's a function
if ( jQuery.isFunction( params ) ) {
// We assume that it's the callback
callback = params;
params = undefined;
// Otherwise, build a param string
} else if ( params && typeof params === "object" ) {
type = "POST";
}
// If we have elements to modify, make the request
if ( self.length > 0 ) {
jQuery.ajax({
url: url,
// if "type" variable is undefined, then "GET" method will be used
type: type,
dataType: "html",
data: params
}).done(function( responseText ) {
// Save response for use in complete callback
response = arguments;
self.html( selector ?
// If a selector was specified, locate the right elements in a dummy div
// Exclude scripts to avoid IE 'Permission Denied' errors
jQuery("<div>").append( jQuery.parseHTML( responseText ) ).find( selector ) :
// Otherwise use the full result
responseText );
}).complete( callback && function( jqXHR, status ) {
self.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );
});
}
return this;
};
// Attach a bunch of functions for handling common AJAX events
jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) {
jQuery.fn[ type ] = function( fn ) {
return this.on( type, fn );
};
});
jQuery.expr.filters.animated = function( elem ) {
return jQuery.grep(jQuery.timers, function( fn ) {
return elem === fn.elem;
}).length;
};
var docElem = window.document.documentElement;
/**
* Gets a window from an element
*/
function getWindow( elem ) {
return jQuery.isWindow( elem ) ? elem : elem.nodeType === 9 && elem.defaultView;
}
jQuery.offset = {
setOffset: function( elem, options, i ) {
var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
position = jQuery.css( elem, "position" ),
curElem = jQuery( elem ),
props = {};
// Set position first, in-case top/left are set even on static elem
if ( position === "static" ) {
elem.style.position = "relative";
}
curOffset = curElem.offset();
curCSSTop = jQuery.css( elem, "top" );
curCSSLeft = jQuery.css( elem, "left" );
calculatePosition = ( position === "absolute" || position === "fixed" ) &&
( curCSSTop + curCSSLeft ).indexOf("auto") > -1;
// Need to be able to calculate position if either
// top or left is auto and position is either absolute or fixed
if ( calculatePosition ) {
curPosition = curElem.position();
curTop = curPosition.top;
curLeft = curPosition.left;
} else {
curTop = parseFloat( curCSSTop ) || 0;
curLeft = parseFloat( curCSSLeft ) || 0;
}
if ( jQuery.isFunction( options ) ) {
options = options.call( elem, i, curOffset );
}
if ( options.top != null ) {
props.top = ( options.top - curOffset.top ) + curTop;
}
if ( options.left != null ) {
props.left = ( options.left - curOffset.left ) + curLeft;
}
if ( "using" in options ) {
options.using.call( elem, props );
} else {
curElem.css( props );
}
}
};
jQuery.fn.extend({
offset: function( options ) {
if ( arguments.length ) {
return options === undefined ?
this :
this.each(function( i ) {
jQuery.offset.setOffset( this, options, i );
});
}
var docElem, win,
elem = this[ 0 ],
box = { top: 0, left: 0 },
doc = elem && elem.ownerDocument;
if ( !doc ) {
return;
}
docElem = doc.documentElement;
// Make sure it's not a disconnected DOM node
if ( !jQuery.contains( docElem, elem ) ) {
return box;
}
// Support: BlackBerry 5, iOS 3 (original iPhone)
// If we don't have gBCR, just use 0,0 rather than error
if ( typeof elem.getBoundingClientRect !== strundefined ) {
box = elem.getBoundingClientRect();
}
win = getWindow( doc );
return {
top: box.top + win.pageYOffset - docElem.clientTop,
left: box.left + win.pageXOffset - docElem.clientLeft
};
},
position: function() {
if ( !this[ 0 ] ) {
return;
}
var offsetParent, offset,
elem = this[ 0 ],
parentOffset = { top: 0, left: 0 };
// Fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is its only offset parent
if ( jQuery.css( elem, "position" ) === "fixed" ) {
// Assume getBoundingClientRect is there when computed position is fixed
offset = elem.getBoundingClientRect();
} else {
// Get *real* offsetParent
offsetParent = this.offsetParent();
// Get correct offsets
offset = this.offset();
if ( !jQuery.nodeName( offsetParent[ 0 ], "html" ) ) {
parentOffset = offsetParent.offset();
}
// Add offsetParent borders
parentOffset.top += jQuery.css( offsetParent[ 0 ], "borderTopWidth", true );
parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true );
}
// Subtract parent offsets and element margins
return {
top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ),
left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true )
};
},
offsetParent: function() {
return this.map(function() {
var offsetParent = this.offsetParent || docElem;
while ( offsetParent && ( !jQuery.nodeName( offsetParent, "html" ) && jQuery.css( offsetParent, "position" ) === "static" ) ) {
offsetParent = offsetParent.offsetParent;
}
return offsetParent || docElem;
});
}
});
// Create scrollLeft and scrollTop methods
jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) {
var top = "pageYOffset" === prop;
jQuery.fn[ method ] = function( val ) {
return access( this, function( elem, method, val ) {
var win = getWindow( elem );
if ( val === undefined ) {
return win ? win[ prop ] : elem[ method ];
}
if ( win ) {
win.scrollTo(
!top ? val : window.pageXOffset,
top ? val : window.pageYOffset
);
} else {
elem[ method ] = val;
}
}, method, val, arguments.length, null );
};
});
// Support: Safari<7+, Chrome<37+
// Add the top/left cssHooks using jQuery.fn.position
// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
// Blink bug: https://code.google.com/p/chromium/issues/detail?id=229280
// getComputedStyle returns percent when specified for top/left/bottom/right;
// rather than make the css module depend on the offset module, just check for it here
jQuery.each( [ "top", "left" ], function( i, prop ) {
jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
function( elem, computed ) {
if ( computed ) {
computed = curCSS( elem, prop );
// If curCSS returns percentage, fallback to offset
return rnumnonpx.test( computed ) ?
jQuery( elem ).position()[ prop ] + "px" :
computed;
}
}
);
});
// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) {
// Margin is only for outerHeight, outerWidth
jQuery.fn[ funcName ] = function( margin, value ) {
var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
return access( this, function( elem, type, value ) {
var doc;
if ( jQuery.isWindow( elem ) ) {
// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
// isn't a whole lot we can do. See pull request at this URL for discussion:
// https://github.com/jquery/jquery/pull/764
return elem.document.documentElement[ "client" + name ];
}
// Get document width or height
if ( elem.nodeType === 9 ) {
doc = elem.documentElement;
// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],
// whichever is greatest
return Math.max(
elem.body[ "scroll" + name ], doc[ "scroll" + name ],
elem.body[ "offset" + name ], doc[ "offset" + name ],
doc[ "client" + name ]
);
}
return value === undefined ?
// Get width or height on the element, requesting but not forcing parseFloat
jQuery.css( elem, type, extra ) :
// Set width or height on the element
jQuery.style( elem, type, value, extra );
}, type, chainable ? margin : undefined, chainable, null );
};
});
});
// The number of elements contained in the matched element set
jQuery.fn.size = function() {
return this.length;
};
jQuery.fn.andSelf = jQuery.fn.addBack;
// Register as a named AMD module, since jQuery can be concatenated with other
// files that may use define, but not via a proper concatenation script that
// understands anonymous AMD modules. A named AMD is safest and most robust
// way to register. Lowercase jquery is used because AMD module names are
// derived from file names, and jQuery is normally delivered in a lowercase
// file name. Do this after creating the global so that if an AMD module wants
// to call noConflict to hide this version of jQuery, it will work.
// Note that for maximum portability, libraries that are not jQuery should
// declare themselves as anonymous modules, and avoid setting a global if an
// AMD loader is present. jQuery is a special case. For more information, see
// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon
if ( typeof define === "function" && define.amd ) {
define( "jquery", [], function() {
return jQuery;
});
}
var
// Map over jQuery in case of overwrite
_jQuery = window.jQuery,
// Map over the $ in case of overwrite
_$ = window.$;
jQuery.noConflict = function( deep ) {
if ( window.$ === jQuery ) {
window.$ = _$;
}
if ( deep && window.jQuery === jQuery ) {
window.jQuery = _jQuery;
}
return jQuery;
};
// Expose jQuery and $ identifiers, even in AMD
// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
// and CommonJS for browser emulators (#13566)
if ( typeof noGlobal === strundefined ) {
window.jQuery = window.$ = jQuery;
}
return jQuery;
}));
|
train_000.parquet/777
|
{
"file_path": "js/lib/jquery.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 247597,
"token_count": 101380
}
|
/*! showdown 22-07-2015 */
(function(){function a(a){"use strict";var b={omitExtraWLInCodeBlocks:{"default":!1,describe:"Omit the default extra whiteline added to code blocks",type:"boolean"},noHeaderId:{"default":!1,describe:"Turn on/off generated header id",type:"boolean"},prefixHeaderId:{"default":!1,describe:"Specify a prefix to generated header ids",type:"string"},headerLevelStart:{"default":!1,describe:"The header blocks level start",type:"integer"},parseImgDimensions:{"default":!1,describe:"Turn on/off image dimension parsing",type:"boolean"},simplifiedAutoLink:{"default":!1,describe:"Turn on/off GFM autolink style",type:"boolean"},literalMidWordUnderscores:{"default":!1,describe:"Parse midword underscores as literal underscores",type:"boolean"},strikethrough:{"default":!1,describe:"Turn on/off strikethrough support",type:"boolean"},tables:{"default":!1,describe:"Turn on/off tables support",type:"boolean"},tablesHeaderId:{"default":!1,describe:"Add an id to table headers",type:"boolean"},ghCodeBlocks:{"default":!0,describe:"Turn on/off GFM fenced code blocks support",type:"boolean"},tasklists:{"default":!1,describe:"Turn on/off GFM tasklist support",type:"boolean"},smoothLivePreview:{"default":!1,describe:"Prevents weird effects in live previews due to incomplete input",type:"boolean"}};if(a===!1)return JSON.parse(JSON.stringify(b));var c={};for(var d in b)b.hasOwnProperty(d)&&(c[d]=b[d]["default"]);return c}function b(a,b){"use strict";var c=b?"Error in "+b+" extension->":"Error in unnamed extension",e={valid:!0,error:""};d.helper.isArray(a)||(a=[a]);for(var f=0;f<a.length;++f){var g=c+" sub-extension "+f+": ",h=a[f];if("object"!=typeof h)return e.valid=!1,e.error=g+"must be an object, but "+typeof h+" given",e;if(!d.helper.isString(h.type))return e.valid=!1,e.error=g+'property "type" must be a string, but '+typeof h.type+" given",e;var i=h.type=h.type.toLowerCase();if("language"===i&&(i=h.type="lang"),"html"===i&&(i=h.type="output"),"lang"!==i&&"output"!==i)return e.valid=!1,e.error=g+"type "+i+' is not recognized. Valid values: "lang" or "output"',e;if(h.filter){if("function"!=typeof h.filter)return e.valid=!1,e.error=g+'"filter" must be a function, but '+typeof h.filter+" given",e}else{if(!h.regex)return e.valid=!1,e.error=g+'extensions must define either a "regex" property or a "filter" method',e;if(d.helper.isString(h.regex)&&(h.regex=new RegExp(h.regex,"g")),!h.regex instanceof RegExp)return e.valid=!1,e.error=g+'"regex" property must either be a string or a RegExp object, but '+typeof h.regex+" given",e;if(d.helper.isUndefined(h.replace))return e.valid=!1,e.error=g+'"regex" extensions must implement a replace string or function',e}if(d.helper.isUndefined(h.filter)&&d.helper.isUndefined(h.regex))return e.valid=!1,e.error=g+"output extensions must define a filter property",e}return e}function c(a,b){"use strict";var c=b.charCodeAt(0);return"~E"+c+"E"}var d={},e={},f={},g=a(!0),h={github:{omitExtraWLInCodeBlocks:!0,prefixHeaderId:"user-content-",simplifiedAutoLink:!0,literalMidWordUnderscores:!0,strikethrough:!0,tables:!0,tablesHeaderId:!0,ghCodeBlocks:!0,tasklists:!0},vanilla:a(!0)};d.helper={},d.extensions={},d.setOption=function(a,b){"use strict";return g[a]=b,this},d.getOption=function(a){"use strict";return g[a]},d.getOptions=function(){"use strict";return g},d.resetOptions=function(){"use strict";g=a(!0)},d.setFlavor=function(a){"use strict";if(h.hasOwnProperty(a)){var b=h[a];for(var c in b)b.hasOwnProperty(c)&&(g[c]=b[c])}},d.getDefaultOptions=function(b){"use strict";return a(b)},d.subParser=function(a,b){"use strict";if(d.helper.isString(a)){if("undefined"==typeof b){if(e.hasOwnProperty(a))return e[a];throw Error("SubParser named "+a+" not registered!")}e[a]=b}},d.extension=function(a,c){"use strict";if(!d.helper.isString(a))throw Error("Extension 'name' must be a string");if(a=d.helper.stdExtName(a),d.helper.isUndefined(c)){if(!f.hasOwnProperty(a))throw Error("Extension named "+a+" is not registered!");return f[a]}"function"==typeof c&&(c=c()),d.helper.isArray(c)||(c=[c]);var e=b(c,a);if(!e.valid)throw Error(e.error);f[a]=c},d.getAllExtensions=function(){"use strict";return f},d.removeExtension=function(a){"use strict";delete f[a]},d.resetExtensions=function(){"use strict";f={}},d.validateExtension=function(a){"use strict";var c=b(a,null);return c.valid?!0:(console.warn(c.error),!1)},d.hasOwnProperty("helper")||(d.helper={}),d.helper.isString=function(a){"use strict";return"string"==typeof a||a instanceof String},d.helper.forEach=function(a,b){"use strict";if("function"==typeof a.forEach)a.forEach(b);else for(var c=0;c<a.length;c++)b(a[c],c,a)},d.helper.isArray=function(a){"use strict";return a.constructor===Array},d.helper.isUndefined=function(a){"use strict";return"undefined"==typeof a},d.helper.stdExtName=function(a){"use strict";return a.replace(/[_-]||\s/g,"").toLowerCase()},d.helper.escapeCharactersCallback=c,d.helper.escapeCharacters=function(a,b,d){"use strict";var e="(["+b.replace(/([\[\]\\])/g,"\\$1")+"])";d&&(e="\\\\"+e);var f=new RegExp(e,"g");return a=a.replace(f,c)},d.helper.isUndefined(console)&&(console={warn:function(a){"use strict";alert(a)},log:function(a){"use strict";alert(a)}}),d.Converter=function(a){"use strict";function c(){a=a||{};for(var b in g)g.hasOwnProperty(b)&&(k[b]=g[b]);if("object"!=typeof a)throw Error("Converter expects the passed parameter to be an object, but "+typeof a+" was passed instead.");for(var c in a)a.hasOwnProperty(c)&&(k[c]=a[c]);k.extensions&&d.helper.forEach(k.extensions,i)}function i(a,c){if(c=c||null,d.helper.isString(a)){if(a=d.helper.stdExtName(a),c=a,d.extensions[a])return console.warn("DEPRECATION WARNING: "+a+" is an old extension that uses a deprecated loading method.Please inform the developer that the extension should be updated!"),void j(d.extensions[a],a);if(d.helper.isUndefined(f[a]))throw Error('Extension "'+a+'" could not be loaded. It was either not found or is not a valid extension.');a=f[a]}"function"==typeof a&&(a=a()),d.helper.isArray(a)||(a=[a]);var e=b(a,c);if(!e.valid)throw Error(e.error);for(var g=0;g<a.length;++g)switch(a[g].type){case"lang":l.push(a[g]);break;case"output":m.push(a[g]);break;default:throw Error("Extension loader error: Type unrecognized!!!")}}function j(a,c){"function"==typeof a&&(a=a(new d.Converter)),d.helper.isArray(a)||(a=[a]);var e=b(a,c);if(!e.valid)throw Error(e.error);for(var f=0;f<a.length;++f)switch(a[f].type){case"lang":l.push(a[f]);break;case"output":m.push(a[f]);break;default:throw Error("Extension loader error: Type unrecognized!!!")}}var k={},l=[],m=[],n=["githubCodeBlocks","hashHTMLBlocks","stripLinkDefinitions","blockGamut","unescapeSpecialChars"];c(),this.makeHtml=function(a){if(!a)return a;var b={gHtmlBlocks:[],gUrls:{},gTitles:{},gDimensions:{},gListLevel:0,hashLinkCounts:{},langExtensions:l,outputModifiers:m,converter:this};a=a.replace(/~/g,"~T"),a=a.replace(/\$/g,"~D"),a=a.replace(/\r\n/g,"\n"),a=a.replace(/\r/g,"\n"),a="\n\n"+a+"\n\n",a=d.subParser("detab")(a,k,b),a=d.subParser("stripBlankLines")(a,k,b),d.helper.forEach(l,function(c){a=d.subParser("runExtension")(c,a,k,b)});for(var c=0;c<n.length;++c){var f=n[c];a=e[f](a,k,b)}return a=a.replace(/~D/g,"$$"),a=a.replace(/~T/g,"~"),d.helper.forEach(m,function(c){a=d.subParser("runExtension")(c,a,k,b)}),a},this.setOption=function(a,b){k[a]=b},this.getOption=function(a){return k[a]},this.getOptions=function(){return k},this.addExtension=function(a,b){b=b||null,i(a,b)},this.useExtension=function(a){i(a)},this.setFlavor=function(a){if(h.hasOwnProperty(a)){var b=h[a];for(var c in b)b.hasOwnProperty(c)&&(k[c]=b[c])}},this.removeExtension=function(a){d.helper.isArray(a)||(a=[a]);for(var b=0;b<a.length;++b){for(var c=a[b],e=0;e<l.length;++e)l[e]===c&&l[e].splice(e,1);for(var f=0;f<m.length;++e)m[f]===c&&m[f].splice(e,1)}},this.getAllExtensions=function(){return{language:l,output:m}}},d.subParser("anchors",function(a,b,c){"use strict";var e=function(a,b,e,f,g,h,i,j){d.helper.isUndefined(j)&&(j=""),a=b;var k=e,l=f.toLowerCase(),m=g,n=j;if(!m)if(l||(l=k.toLowerCase().replace(/ ?\n/g," ")),m="#"+l,d.helper.isUndefined(c.gUrls[l])){if(!(a.search(/\(\s*\)$/m)>-1))return a;m=""}else m=c.gUrls[l],d.helper.isUndefined(c.gTitles[l])||(n=c.gTitles[l]);m=d.helper.escapeCharacters(m,"*_",!1);var o='<a href="'+m+'"';return""!==n&&null!==n&&(n=n.replace(/"/g,"""),n=d.helper.escapeCharacters(n,"*_",!1),o+=' title="'+n+'"'),o+=">"+k+"</a>"};return a=a.replace(/(\[((?:\[[^\]]*\]|[^\[\]])*)\][ ]?(?:\n[ ]*)?\[(.*?)\])()()()()/g,e),a=a.replace(/(\[((?:\[[^\]]*\]|[^\[\]])*)\]\([ \t]*()<?(.*?(?:\(.*?\).*?)?)>?[ \t]*((['"])(.*?)\6[ \t]*)?\))/g,e),a=a.replace(/(\[([^\[\]]+)\])()()()()()/g,e)}),d.subParser("autoLinks",function(a,b){"use strict";function c(a,b){var c=d.subParser("unescapeSpecialChars")(b);return d.subParser("encodeEmailAddress")(c)}var e=/\b(((https?|ftp|dict):\/\/|www\.)[^'">\s]+\.[^'">\s]+)(?=\s|$)(?!["<>])/gi,f=/<(((https?|ftp|dict):\/\/|www\.)[^'">\s]+)>/gi,g=/\b(?:mailto:)?([-.\w]+@[-a-z0-9]+(\.[-a-z0-9]+)*\.[a-z]+)\b/gi,h=/<(?:mailto:)?([-.\w]+@[-a-z0-9]+(\.[-a-z0-9]+)*\.[a-z]+)>/gi;return a=a.replace(f,'<a href="$1">$1</a>'),a=a.replace(h,c),b.simplifiedAutoLink&&(a=a.replace(e,'<a href="$1">$1</a>'),a=a.replace(g,'<a href="$1">$1</a>')),a}),d.subParser("blockGamut",function(a,b,c){"use strict";a=d.subParser("headers")(a,b,c);var e=d.subParser("hashBlock")("<hr />",b,c);return a=a.replace(/^[ ]{0,2}([ ]?\*[ ]?){3,}[ \t]*$/gm,e),a=a.replace(/^[ ]{0,2}([ ]?\-[ ]?){3,}[ \t]*$/gm,e),a=a.replace(/^[ ]{0,2}([ ]?_[ ]?){3,}[ \t]*$/gm,e),a=d.subParser("tables")(a,b,c),a=d.subParser("lists")(a,b,c),a=d.subParser("codeBlocks")(a,b,c),a=d.subParser("blockQuotes")(a,b,c),a=d.subParser("hashHTMLBlocks")(a,b,c),a=d.subParser("paragraphs")(a,b,c)}),d.subParser("blockQuotes",function(a,b,c){"use strict";return a=a.replace(/((^[ \t]*>[ \t]?.+\n(.+\n)*\n*)+)/gm,function(a,e){var f=e;return f=f.replace(/^[ \t]*>[ \t]?/gm,"~0"),f=f.replace(/~0/g,""),f=f.replace(/^[ \t]+$/gm,""),f=d.subParser("blockGamut")(f,b,c),f=f.replace(/(^|\n)/g,"$1 "),f=f.replace(/(\s*<pre>[^\r]+?<\/pre>)/gm,function(a,b){var c=b;return c=c.replace(/^ /gm,"~0"),c=c.replace(/~0/g,"")}),d.subParser("hashBlock")("<blockquote>\n"+f+"\n</blockquote>",b,c)})}),d.subParser("codeBlocks",function(a,b,c){"use strict";a+="~0";var e=/(?:\n\n|^)((?:(?:[ ]{4}|\t).*\n+)+)(\n*[ ]{0,3}[^ \t\n]|(?=~0))/g;return a=a.replace(e,function(a,e,f){var g=e,h=f,i="\n";return g=d.subParser("outdent")(g),g=d.subParser("encodeCode")(g),g=d.subParser("detab")(g),g=g.replace(/^\n+/g,""),g=g.replace(/\n+$/g,""),b.omitExtraWLInCodeBlocks&&(i=""),g="<pre><code>"+g+i+"</code></pre>",d.subParser("hashBlock")(g,b,c)+h}),a=a.replace(/~0/,"")}),d.subParser("codeSpans",function(a){"use strict";return a=a.replace(/(<code[^><]*?>)([^]*?)<\/code>/g,function(a,b,c){return c=c.replace(/^([ \t]*)/g,""),c=c.replace(/[ \t]*$/g,""),c=d.subParser("encodeCode")(c),b+c+"</code>"}),a=a.replace(/(^|[^\\])(`+)([^\r]*?[^`])\2(?!`)/gm,function(a,b,c,e){var f=e;return f=f.replace(/^([ \t]*)/g,""),f=f.replace(/[ \t]*$/g,""),f=d.subParser("encodeCode")(f),b+"<code>"+f+"</code>"})}),d.subParser("detab",function(a){"use strict";return a=a.replace(/\t(?=\t)/g," "),a=a.replace(/\t/g,"~A~B"),a=a.replace(/~B(.+?)~A/g,function(a,b){for(var c=b,d=4-c.length%4,e=0;d>e;e++)c+=" ";return c}),a=a.replace(/~A/g," "),a=a.replace(/~B/g,"")}),d.subParser("encodeAmpsAndAngles",function(a){"use strict";return a=a.replace(/&(?!#?[xX]?(?:[0-9a-fA-F]+|\w+);)/g,"&"),a=a.replace(/<(?![a-z\/?\$!])/gi,"<")}),d.subParser("encodeBackslashEscapes",function(a){"use strict";return a=a.replace(/\\(\\)/g,d.helper.escapeCharactersCallback),a=a.replace(/\\([`*_{}\[\]()>#+-.!])/g,d.helper.escapeCharactersCallback)}),d.subParser("encodeCode",function(a){"use strict";return a=a.replace(/&/g,"&"),a=a.replace(/</g,"<"),a=a.replace(/>/g,">"),a=d.helper.escapeCharacters(a,"*_{}[]\\",!1)}),d.subParser("encodeEmailAddress",function(a){"use strict";var b=[function(a){return"&#"+a.charCodeAt(0)+";"},function(a){return"&#x"+a.charCodeAt(0).toString(16)+";"},function(a){return a}];return a="mailto:"+a,a=a.replace(/./g,function(a){if("@"===a)a=b[Math.floor(2*Math.random())](a);else if(":"!==a){var c=Math.random();a=c>.9?b[2](a):c>.45?b[1](a):b[0](a)}return a}),a='<a href="'+a+'">'+a+"</a>",a=a.replace(/">.+:/g,'">')}),d.subParser("escapeSpecialCharsWithinTagAttributes",function(a){"use strict";var b=/(<[a-z\/!$]("[^"]*"|'[^']*'|[^'">])*>|<!(--.*?--\s*)+>)/gi;return a=a.replace(b,function(a){var b=a.replace(/(.)<\/?code>(?=.)/g,"$1`");return b=d.helper.escapeCharacters(b,"\\`*_",!1)})}),d.subParser("githubCodeBlocks",function(a,b,c){"use strict";return b.ghCodeBlocks?(a+="~0",a=a.replace(/(?:^|\n)```(.*)\n([\s\S]*?)\n```/g,function(a,e,f){var g=e,h=f,i="\n";return b.omitExtraWLInCodeBlocks&&(i=""),h=d.subParser("encodeCode")(h),h=d.subParser("detab")(h),h=h.replace(/^\n+/g,""),h=h.replace(/\n+$/g,""),h="<pre><code"+(g?' class="'+g+" language-"+g+'"':"")+">"+h+i+"</code></pre>",d.subParser("hashBlock")(h,b,c)}),a=a.replace(/~0/,"")):a}),d.subParser("hashBlock",function(a,b,c){"use strict";return a=a.replace(/(^\n+|\n+$)/g,""),"\n\n~K"+(c.gHtmlBlocks.push(a)-1)+"K\n\n"}),d.subParser("hashElement",function(a,b,c){"use strict";return function(a,b){var d=b;return d=d.replace(/\n\n/g,"\n"),d=d.replace(/^\n/,""),d=d.replace(/\n+$/g,""),d="\n\n~K"+(c.gHtmlBlocks.push(d)-1)+"K\n\n"}}),d.subParser("hashHTMLBlocks",function(a,b,c){"use strict";return a=a.replace(/\n/g,"\n\n"),a=a.replace(/^(<(p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math|ins|del)\b[^\r]*?\n<\/\2>[ \t]*(?=\n+))/gm,d.subParser("hashElement")(a,b,c)),a=a.replace(/^(<(p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math|style|section|header|footer|nav|article|aside|address|audio|canvas|figure|hgroup|output|video)\b[^\r]*?<\/\2>[ \t]*(?=\n+)\n)/gm,d.subParser("hashElement")(a,b,c)),a=a.replace(/(\n[ ]{0,3}(<(hr)\b([^<>])*?\/?>)[ \t]*(?=\n{2,}))/g,d.subParser("hashElement")(a,b,c)),a=a.replace(/(\n\n[ ]{0,3}<!(--[^\r]*?--\s*)+>[ \t]*(?=\n{2,}))/g,d.subParser("hashElement")(a,b,c)),a=a.replace(/(?:\n\n)([ ]{0,3}(?:<([?%])[^\r]*?\2>)[ \t]*(?=\n{2,}))/g,d.subParser("hashElement")(a,b,c)),a=a.replace(/\n\n/g,"\n")}),d.subParser("headers",function(a,b,c){"use strict";function e(a){var b,e=a.replace(/[^\w]/g,"").toLowerCase();return c.hashLinkCounts[e]?b=e+"-"+c.hashLinkCounts[e]++:(b=e,c.hashLinkCounts[e]=1),f===!0&&(f="section"),d.helper.isString(f)?f+b:b}var f=b.prefixHeaderId,g=isNaN(parseInt(b.headerLevelStart))?1:parseInt(b.headerLevelStart),h=b.smoothLivePreview?/^(.+)[ \t]*\n={2,}[ \t]*\n+/gm:/^(.+)[ \t]*\n=+[ \t]*\n+/gm,i=b.smoothLivePreview?/^(.+)[ \t]*\n-{2,}[ \t]*\n+/gm:/^(.+)[ \t]*\n-+[ \t]*\n+/gm;return a=a.replace(h,function(a,f){var h=d.subParser("spanGamut")(f,b,c),i=b.noHeaderId?"":' id="'+e(f)+'"',j=g,k="<h"+j+i+">"+h+"</h"+j+">";return d.subParser("hashBlock")(k,b,c)}),a=a.replace(i,function(a,f){var h=d.subParser("spanGamut")(f,b,c),i=b.noHeaderId?"":' id="'+e(f)+'"',j=g+1,k="<h"+j+i+">"+h+"</h"+j+">";return d.subParser("hashBlock")(k,b,c)}),a=a.replace(/^(#{1,6})[ \t]*(.+?)[ \t]*#*\n+/gm,function(a,f,h){var i=d.subParser("spanGamut")(h,b,c),j=b.noHeaderId?"":' id="'+e(h)+'"',k=g-1+f.length,l="<h"+k+j+">"+i+"</h"+k+">";return d.subParser("hashBlock")(l,b,c)})}),d.subParser("images",function(a,b,c){"use strict";function e(a,b,e,f,g,h,i,j){var k=c.gUrls,l=c.gTitles,m=c.gDimensions;if(e=e.toLowerCase(),j||(j=""),""===f||null===f){if((""===e||null===e)&&(e=b.toLowerCase().replace(/ ?\n/g," ")),f="#"+e,d.helper.isUndefined(k[e]))return a;f=k[e],d.helper.isUndefined(l[e])||(j=l[e]),d.helper.isUndefined(m[e])||(g=m[e].width,h=m[e].height)}b=b.replace(/"/g,"""),b=d.helper.escapeCharacters(b,"*_",!1),f=d.helper.escapeCharacters(f,"*_",!1);var n='<img src="'+f+'" alt="'+b+'"';return j&&(j=j.replace(/"/g,"""),j=d.helper.escapeCharacters(j,"*_",!1),n+=' title="'+j+'"'),g&&h&&(g="*"===g?"auto":g,h="*"===h?"auto":h,n+=' width="'+g+'"',n+=' height="'+h+'"'),n+=" />"}var f=/!\[(.*?)]\s?\([ \t]*()<?(\S+?)>?(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*(?:(['"])(.*?)\6[ \t]*)?\)/g,g=/!\[(.*?)][ ]?(?:\n[ ]*)?\[(.*?)]()()()()()/g;return a=a.replace(g,e),a=a.replace(f,e)}),d.subParser("italicsAndBold",function(a,b){"use strict";return b.literalMidWordUnderscores?(a=a.replace(/(^|\s|>|\b)__(?=\S)([^]+?)__(?=\b|<|\s|$)/gm,"$1<strong>$2</strong>"),a=a.replace(/(^|\s|>|\b)_(?=\S)([^]+?)_(?=\b|<|\s|$)/gm,"$1<em>$2</em>"),a=a.replace(/\*\*(?=\S)([^]+?)\*\*/g,"<strong>$1</strong>"),a=a.replace(/\*(?=\S)([^]+?)\*/g,"<em>$1</em>")):(a=a.replace(/(\*\*|__)(?=\S)([^\r]*?\S[*_]*)\1/g,"<strong>$2</strong>"),a=a.replace(/(\*|_)(?=\S)([^\r]*?\S)\1/g,"<em>$2</em>")),a}),d.subParser("lists",function(a,b,c){"use strict";function e(a){c.gListLevel++,a=a.replace(/\n{2,}$/,"\n"),a+="~0";var e=/(\n)?(^[ \t]*)([*+-]|\d+[.])[ \t]+((\[(x| )?])?[ \t]*[^\r]+?(\n{1,2}))(?=\n*(~0|\2([*+-]|\d+[.])[ \t]+))/gm;return a=a.replace(e,function(a,e,f,h,i,j,k){k=k&&""!==k.trim();var l=d.subParser("outdent")(i,b,c);e||l.search(/\n{2,}/)>-1?l=d.subParser("blockGamut")(l,b,c):(j&&b.tasklists&&(l=l.replace(j,function(){var a='<input type="checkbox" disabled style="margin: 0px 0.35em 0.25em -1.6em; vertical-align: middle;"';return k&&(a+=" checked"),a+=">"})),l=d.subParser("lists")(l,b,c),l=l.replace(/\n$/,""),l=d.subParser("spanGamut")(l,b,c));var m=h.search(/[*+-]/g)>-1?"ul":"ol",n="";return j&&(n=' class="task-list-item" style="list-style-type: none;"'),g+m+"<li"+n+">"+l+"</li>\n"}),a=a.replace(/~0/g,""),c.gListLevel--,a}function f(a,b){var c=/(<p[^>]+?>|<p>|<\/p>)/gim,d=[[]],e="",f=0;d[0].type=b;for(var g=0;g<a.length;++g){var h=a[g].slice(2),i=a[g].slice(0,2);b!==i&&(f++,d[f]=[],d[f].type=i,b=i),d[f].push(h)}for(g=0;g<d.length;++g){e+="<"+d[g].type+">\n";for(var j=0;j<d[g].length;++j)d[g].length>1&&j===d[g].length-1&&!c.test(d[g][j-1]),e+=d[g][j];e+="</"+d[g].type+">\n"}return e}var g="~1";a+="~0";var h=/^(([ ]{0,3}([*+-]|\d+[.])[ \t]+)[^\r]+?(~0|\n{2,}(?=\S)(?![ \t]*(?:[*+-]|\d+[.])[ \t]+)))/gm;return c.gListLevel?a=a.replace(h,function(a,b,c){var d=c.search(/[*+-]/g)>-1?"ul":"ol",h=e(b);h=h.replace(/\s+$/,"");var i=h.split(g);return i.shift(),h=f(i,d)}):(h=/(\n\n|^\n?)(([ ]{0,3}([*+-]|\d+[.])[ \t]+)[^\r]+?(~0|\n{2,}(?=\S)(?![ \t]*(?:[*+-]|\d+[.])[ \t]+)))/g,a=a.replace(h,function(a,b,c,d){var h=c.replace(/\n{2,}/g,"\n\n\n"),i=d.search(/[*+-]/g)>-1?"ul":"ol",j=e(h),k=j.split(g);return k.shift(),b+f(k,i)+"\n"})),a=a.replace(/~0/,"")}),d.subParser("outdent",function(a){"use strict";return a=a.replace(/^(\t|[ ]{1,4})/gm,"~0"),a=a.replace(/~0/g,"")}),d.subParser("paragraphs",function(a,b,c){"use strict";a=a.replace(/^\n+/g,""),a=a.replace(/\n+$/g,"");for(var e=a.split(/\n{2,}/g),f=[],g=e.length,h=0;g>h;h++){var i=e[h];i.search(/~K(\d+)K/g)>=0?f.push(i):i.search(/\S/)>=0&&(i=d.subParser("spanGamut")(i,b,c),i=i.replace(/^([ \t]*)/g,"<p>"),i+="</p>",f.push(i))}for(g=f.length,h=0;g>h;h++)for(;f[h].search(/~K(\d+)K/)>=0;){var j=c.gHtmlBlocks[RegExp.$1];j=j.replace(/\$/g,"$$$$"),f[h]=f[h].replace(/~K\d+K/,j)}return f.join("\n\n")}),d.subParser("runExtension",function(a,b,c,d){"use strict";if(a.filter)b=a.filter(b,d.converter,c);else if(a.regex){var e=a.regex;!e instanceof RegExp&&(e=new RegExp(e,"g")),b=b.replace(e,a.replace)}return b}),d.subParser("spanGamut",function(a,b,c){"use strict";return a=d.subParser("codeSpans")(a,b,c),a=d.subParser("escapeSpecialCharsWithinTagAttributes")(a,b,c),a=d.subParser("encodeBackslashEscapes")(a,b,c),a=d.subParser("images")(a,b,c),a=d.subParser("anchors")(a,b,c),a=d.subParser("autoLinks")(a,b,c),a=d.subParser("encodeAmpsAndAngles")(a,b,c),a=d.subParser("italicsAndBold")(a,b,c),a=d.subParser("strikethrough")(a,b,c),a=a.replace(/ +\n/g," <br />\n")}),d.subParser("strikethrough",function(a,b){"use strict";return b.strikethrough&&(a=a.replace(/(?:~T){2}([^~]+)(?:~T){2}/g,"<del>$1</del>")),a}),d.subParser("stripBlankLines",function(a){"use strict";return a.replace(/^[ \t]+$/gm,"")}),d.subParser("stripLinkDefinitions",function(a,b,c){"use strict";var e=/^ {0,3}\[(.+)]:[ \t]*\n?[ \t]*<?(\S+?)>?(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*\n?[ \t]*(?:(\n*)["|'(](.+?)["|')][ \t]*)?(?:\n+|(?=~0))/gm;return a+="~0",a=a.replace(e,function(a,e,f,g,h,i,j){return e=e.toLowerCase(),c.gUrls[e]=d.subParser("encodeAmpsAndAngles")(f),i?i+j:(j&&(c.gTitles[e]=j.replace(/"|'/g,""")),b.parseImgDimensions&&g&&h&&(c.gDimensions[e]={width:g,height:h}),"")}),a=a.replace(/~0/,"")}),d.subParser("tables",function(a,b,c){"use strict";var e=function(){var a,e={};return e.th=function(a,e){var f="";return a=a.trim(),""===a?"":(b.tableHeaderId&&(f=' id="'+a.replace(/ /g,"_").toLowerCase()+'"'),a=d.subParser("spanGamut")(a,b,c),e=e&&""!==e.trim()?' style="'+e+'"':"","<th"+f+e+">"+a+"</th>")},e.td=function(a,e){var f=d.subParser("spanGamut")(a.trim(),b,c);return e=e&&""!==e.trim()?' style="'+e+'"':"","<td"+e+">"+f+"</td>"},e.ths=function(){var a="",b=0,c=[].slice.apply(arguments[0]),d=[].slice.apply(arguments[1]);for(b;b<c.length;b+=1)a+=e.th(c[b],d[b])+"\n";return a},e.tds=function(){var a="",b=0,c=[].slice.apply(arguments[0]),d=[].slice.apply(arguments[1]);for(b;b<c.length;b+=1)a+=e.td(c[b],d[b])+"\n";return a},e.thead=function(){var a,b=[].slice.apply(arguments[0]),c=[].slice.apply(arguments[1]);return a="<thead>\n",a+="<tr>\n",a+=e.ths.apply(this,[b,c]),a+="</tr>\n",a+="</thead>\n"},e.tr=function(){var a,b=[].slice.apply(arguments[0]),c=[].slice.apply(arguments[1]);return a="<tr>\n",a+=e.tds.apply(this,[b,c]),a+="</tr>\n"},a=function(a){var b,c,d=0,f=a.split("\n"),g=[];for(d;d<f.length;d+=1){if(b=f[d],b.trim().match(/^[|].*[|]$/)){b=b.trim();var h=[],i=f[d+1].trim(),j=[],k=0;if(i.match(/^[|][-=|: ]+[|]$/))for(j=i.substring(1,i.length-1).split("|"),k=0;k<j.length;++k)j[k]=j[k].trim(),j[k].match(/^[:][-=| ]+[:]$/)?j[k]="text-align:center;":j[k].match(/^[-=| ]+[:]$/)?j[k]="text-align:right;":j[k].match(/^[:][-=| ]+$/)?j[k]="text-align:left;":j[k]="";if(h.push("<table>"),c=b.substring(1,b.length-1).split("|"),0===j.length)for(k=0;k<c.length;++k)j.push("text-align:left");if(h.push(e.thead.apply(this,[c,j])),b=f[++d],b.trim().match(/^[|][-=|: ]+[|]$/)){for(b=f[++d],h.push("<tbody>");b.trim().match(/^[|].*[|]$/);)b=b.trim(),h.push(e.tr.apply(this,[b.substring(1,b.length-1).split("|"),j])),b=f[++d];h.push("</tbody>"),h.push("</table>"),g.push(h.join("\n"));continue}b=f[--d]}g.push(b)}return g.join("\n")},{parse:a}};if(b.tables){var f=e();return f.parse(a)}return a}),d.subParser("unescapeSpecialChars",function(a){"use strict";return a=a.replace(/~E(\d+)E/g,function(a,b){var c=parseInt(b);return String.fromCharCode(c)})});var i=this;"undefined"!=typeof module&&module.exports?module.exports=d:"function"==typeof define&&define.amd?define("showdown",function(){"use strict";return d}):i.showdown=d}).call(this);
//# sourceMappingURL=showdown.min.js.map
|
train_000.parquet/778
|
{
"file_path": "js/lib/showdown.min.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 23040,
"token_count": 11950
}
|
SYNO = window.SYNO || {};
(function(){
"use-strict";
SYNO.Encryption = {};
SYNO.Encryption.Base64 = (function() {
var b = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
var a = "=";
return {
hex2b64: function(f) {
var e;
var g;
var d = "";
for (e = 0; e + 3 <= f.length; e += 3) {
g = parseInt(f.substring(e, e + 3), 16);
d += b.charAt(g >> 6) + b.charAt(g & 63)
}
if (e + 1 == f.length) {
g = parseInt(f.substring(e, e + 1), 16);
d += b.charAt(g << 2)
} else {
if (e + 2 == f.length) {
g = parseInt(f.substring(e, e + 2), 16);
d += b.charAt(g >> 2) + b.charAt((g & 3) << 4)
}
}
while ((d.length & 3) > 0) {
d += a
}
return d
},
b64tohex: function(g) {
var e = "";
var f;
var c = 0;
var d;
for (f = 0; f < g.length; ++f) {
if (g.charAt(f) == a) {
break
}
v = b.indexOf(g.charAt(f));
if (v < 0) {
continue
}
if (c == 0) {
e += int2char(v >> 2);
d = v & 3;
c = 1
} else {
if (c == 1) {
e += int2char((d << 2) | (v >> 4));
d = v & 15;
c = 2
} else {
if (c == 2) {
e += int2char(d);
e += int2char(v >> 2);
d = v & 3;
c = 3
} else {
e += int2char((d << 2) | (v >> 4));
e += int2char(v & 15);
c = 0
}
}
}
}
if (c == 1) {
e += int2char(d << 2)
}
return e
},
b64toBA: function(f) {
var e = b64tohex(f);
var d;
var c = new Array();
for (d = 0; 2 * d < e.length; ++d) {
c[d] = parseInt(e.substring(2 * d, 2 * d + 2), 16)
}
return c
}
}
})();
SYNO = window.SYNO || {};
SYNO.Encryption = SYNO.Encryption || {};
SYNO.Encryption.BigInteger = (function() {
var H;
var Z = 244837814094590;
var f = ((Z & 16777215) == 15715070);
function d(ab, aa, ac) {
if (ab != null) {
if ("number" == typeof ab) {
this.fromNumber(ab, aa, ac)
} else {
if (aa == null && "string" != typeof ab) {
this.fromString(ab, 256)
} else {
this.fromString(ab, aa)
}
}
}
}
function l() {
return new d(null)
}
function L(ae, aa, ab, ad, ag, af) {
while (--af >= 0) {
var ac = aa * this[ae++] + ab[ad] + ag;
ag = Math.floor(ac / 67108864);
ab[ad++] = ac & 67108863
}
return ag
}
function K(ae, aj, ak, ad, ah, aa) {
var ag = aj & 32767,
ai = aj >> 15;
while (--aa >= 0) {
var ac = this[ae] & 32767;
var af = this[ae++] >> 15;
var ab = ai * ac + af * ag;
ac = ag * ac + ((ab & 32767) << 15) + ak[ad] + (ah & 1073741823);
ah = (ac >>> 30) + (ab >>> 15) + ai * af + (ah >>> 30);
ak[ad++] = ac & 1073741823
}
return ah
}
function J(ae, aj, ak, ad, ah, aa) {
var ag = aj & 16383,
ai = aj >> 14;
while (--aa >= 0) {
var ac = this[ae] & 16383;
var af = this[ae++] >> 14;
var ab = ai * ac + af * ag;
ac = ag * ac + ((ab & 16383) << 14) + ak[ad] + ah;
ah = (ac >> 28) + (ab >> 14) + ai * af;
ak[ad++] = ac & 268435455
}
return ah
}
if (f && (navigator.appName == "Microsoft Internet Explorer")) {
d.prototype.am = K;
H = 30
} else {
if (f && (navigator.appName != "Netscape")) {
d.prototype.am = L;
H = 26
} else {
d.prototype.am = J;
H = 28
}
}
d.prototype.DB = H;
d.prototype.DM = ((1 << H) - 1);
d.prototype.DV = (1 << H);
var m = 52;
d.prototype.FV = Math.pow(2, m);
d.prototype.F1 = m - H;
d.prototype.F2 = 2 * H - m;
var t = "0123456789abcdefghijklmnopqrstuvwxyz";
var y = new Array();
var E, o;
E = "0".charCodeAt(0);
for (o = 0; o <= 9; ++o) {
y[E++] = o
}
E = "a".charCodeAt(0);
for (o = 10; o < 36; ++o) {
y[E++] = o
}
E = "A".charCodeAt(0);
for (o = 10; o < 36; ++o) {
y[E++] = o
}
function x(aa) {
return t.charAt(aa)
}
function C(ab, aa) {
var ac = y[ab.charCodeAt(aa)];
return (ac == null) ? -1 : ac
}
function n(ab) {
for (var aa = this.t - 1; aa >= 0; --aa) {
ab[aa] = this[aa]
}
ab.t = this.t;
ab.s = this.s
}
function R(aa) {
this.t = 1;
this.s = (aa < 0) ? -1 : 0;
if (aa > 0) {
this[0] = aa
} else {
if (aa < -1) {
this[0] = aa + DV
} else {
this.t = 0
}
}
}
function b(aa) {
var ab = l();
ab.fromInt(aa);
return ab
}
function M(ag, ab) {
var ad;
if (ab == 16) {
ad = 4
} else {
if (ab == 8) {
ad = 3
} else {
if (ab == 256) {
ad = 8
} else {
if (ab == 2) {
ad = 1
} else {
if (ab == 32) {
ad = 5
} else {
if (ab == 4) {
ad = 2
} else {
this.fromRadix(ag, ab);
return
}
}
}
}
}
}
this.t = 0;
this.s = 0;
var af = ag.length,
ac = false,
ae = 0;
while (--af >= 0) {
var aa = (ad == 8) ? ag[af] & 255 : C(ag, af);
if (aa < 0) {
if (ag.charAt(af) == "-") {
ac = true
}
continue
}
ac = false;
if (ae == 0) {
this[this.t++] = aa
} else {
if (ae + ad > this.DB) {
this[this.t - 1] |= (aa & ((1 << (this.DB - ae)) - 1)) << ae;
this[this.t++] = (aa >> (this.DB - ae))
} else {
this[this.t - 1] |= aa << ae
}
}
ae += ad;
if (ae >= this.DB) {
ae -= this.DB
}
}
if (ad == 8 && (ag[0] & 128) != 0) {
this.s = -1;
if (ae > 0) {
this[this.t - 1] |= ((1 << (this.DB - ae)) - 1) << ae
}
}
this.clamp();
if (ac) {
d.ZERO.subTo(this, this)
}
}
function P() {
var aa = this.s & this.DM;
while (this.t > 0 && this[this.t - 1] == aa) {
--this.t
}
}
function T(ab) {
if (this.s < 0) {
return "-" + this.negate().toString(ab)
}
var ac;
if (ab == 16) {
ac = 4
} else {
if (ab == 8) {
ac = 3
} else {
if (ab == 2) {
ac = 1
} else {
if (ab == 32) {
ac = 5
} else {
if (ab == 4) {
ac = 2
} else {
return this.toRadix(ab)
}
}
}
}
}
var ae = (1 << ac) - 1,
ah, aa = false,
af = "",
ad = this.t;
var ag = this.DB - (ad * this.DB) % ac;
if (ad-- > 0) {
if (ag < this.DB && (ah = this[ad] >> ag) > 0) {
aa = true;
af = x(ah)
}
while (ad >= 0) {
if (ag < ac) {
ah = (this[ad] & ((1 << ag) - 1)) << (ac - ag);
ah |= this[--ad] >> (ag += this.DB - ac)
} else {
ah = (this[ad] >> (ag -= ac)) & ae;
if (ag <= 0) {
ag += this.DB;
--ad
}
}
if (ah > 0) {
aa = true
}
if (aa) {
af += x(ah)
}
}
}
return aa ? af : "0"
}
function N() {
var aa = l();
d.ZERO.subTo(this, aa);
return aa
}
function G() {
return (this.s < 0) ? this.negate() : this
}
function V(aa) {
var ac = this.s - aa.s;
if (ac != 0) {
return ac
}
var ab = this.t;
ac = ab - aa.t;
if (ac != 0) {
return ac
}
while (--ab >= 0) {
if ((ac = this[ab] - aa[ab]) != 0) {
return ac
}
}
return 0
}
function U(aa) {
var ac = 1,
ab;
if ((ab = aa >>> 16) != 0) {
aa = ab;
ac += 16
}
if ((ab = aa >> 8) != 0) {
aa = ab;
ac += 8
}
if ((ab = aa >> 4) != 0) {
aa = ab;
ac += 4
}
if ((ab = aa >> 2) != 0) {
aa = ab;
ac += 2
}
if ((ab = aa >> 1) != 0) {
aa = ab;
ac += 1
}
return ac
}
function g() {
if (this.t <= 0) {
return 0
}
return this.DB * (this.t - 1) + U(this[this.t - 1] ^ (this.s & this.DM))
}
function a(ac, ab) {
var aa;
for (aa = this.t - 1; aa >= 0; --aa) {
ab[aa + ac] = this[aa]
}
for (aa = ac - 1; aa >= 0; --aa) {
ab[aa] = 0
}
ab.t = this.t + ac;
ab.s = this.s
}
function z(ac, ab) {
for (var aa = ac; aa < this.t; ++aa) {
ab[aa - ac] = this[aa]
}
ab.t = Math.max(this.t - ac, 0);
ab.s = this.s
}
function s(ah, ad) {
var ab = ah % this.DB;
var aa = this.DB - ab;
var af = (1 << aa) - 1;
var ae = Math.floor(ah / this.DB),
ag = (this.s << ab) & this.DM,
ac;
for (ac = this.t - 1; ac >= 0; --ac) {
ad[ac + ae + 1] = (this[ac] >> aa) | ag;
ag = (this[ac] & af) << ab
}
for (ac = ae - 1; ac >= 0; --ac) {
ad[ac] = 0
}
ad[ae] = ag;
ad.t = this.t + ae + 1;
ad.s = this.s;
ad.clamp()
}
function Q(ag, ad) {
ad.s = this.s;
var ae = Math.floor(ag / this.DB);
if (ae >= this.t) {
ad.t = 0;
return
}
var ab = ag % this.DB;
var aa = this.DB - ab;
var af = (1 << ab) - 1;
ad[0] = this[ae] >> ab;
for (var ac = ae + 1; ac < this.t; ++ac) {
ad[ac - ae - 1] |= (this[ac] & af) << aa;
ad[ac - ae] = this[ac] >> ab
}
if (ab > 0) {
ad[this.t - ae - 1] |= (this.s & af) << aa
}
ad.t = this.t - ae;
ad.clamp()
}
function h(ab, ad) {
var ac = 0,
ae = 0,
aa = Math.min(ab.t, this.t);
while (ac < aa) {
ae += this[ac] - ab[ac];
ad[ac++] = ae & this.DM;
ae >>= this.DB
}
if (ab.t < this.t) {
ae -= ab.s;
while (ac < this.t) {
ae += this[ac];
ad[ac++] = ae & this.DM;
ae >>= this.DB
}
ae += this.s
} else {
ae += this.s;
while (ac < ab.t) {
ae -= ab[ac];
ad[ac++] = ae & this.DM;
ae >>= this.DB
}
ae -= ab.s
}
ad.s = (ae < 0) ? -1 : 0;
if (ae < -1) {
ad[ac++] = this.DV + ae
} else {
if (ae > 0) {
ad[ac++] = ae
}
}
ad.t = ac;
ad.clamp()
}
function O(ab, ad) {
var aa = this.abs(),
ae = ab.abs();
var ac = aa.t;
ad.t = ac + ae.t;
while (--ac >= 0) {
ad[ac] = 0
}
for (ac = 0; ac < ae.t; ++ac) {
ad[ac + aa.t] = aa.am(0, ae[ac], ad, ac, 0, aa.t)
}
ad.s = 0;
ad.clamp();
if (this.s != ab.s) {
d.ZERO.subTo(ad, ad)
}
}
function A(ac) {
var ab, aa = this.abs();
ab = ac.t = 2 * aa.t;
while (--ab >= 0) {
ac[ab] = 0
}
for (ab = 0; ab < aa.t - 1; ++ab) {
var ad = aa.am(ab, aa[ab], ac, 2 * ab, 0, 1);
if ((ac[ab + aa.t] += aa.am(ab + 1, 2 * aa[ab], ac, 2 * ab + 1, ad, aa.t - ab - 1)) >= aa.DV) {
ac[ab + aa.t] -= aa.DV;
ac[ab + aa.t + 1] = 1
}
}
if (ac.t > 0) {
ac[ac.t - 1] += aa.am(ab, aa[ab], ac, 2 * ab, 0, 1)
}
ac.s = 0;
ac.clamp()
}
function I(aj, ag, af) {
var ap = aj.abs();
if (ap.t <= 0) {
return
}
var ah = this.abs();
if (ah.t < ap.t) {
if (ag != null) {
ag.fromInt(0)
}
if (af != null) {
this.copyTo(af)
}
return
}
if (af == null) {
af = l()
}
var ad = l(),
aa = this.s,
ai = aj.s;
var ao = this.DB - U(ap[ap.t - 1]);
if (ao > 0) {
ap.lShiftTo(ao, ad);
ah.lShiftTo(ao, af)
} else {
ap.copyTo(ad);
ah.copyTo(af)
}
var al = ad.t;
var ab = ad[al - 1];
if (ab == 0) {
return
}
var ak = ab * (1 << this.F1) + ((al > 1) ? ad[al - 2] >> this.F2 : 0);
var at = this.FV / ak,
ar = (1 << this.F1) / ak,
aq = 1 << this.F2;
var an = af.t,
am = an - al,
ae = (ag == null) ? l() : ag;
ad.dlShiftTo(am, ae);
if (af.compareTo(ae) >= 0) {
af[af.t++] = 1;
af.subTo(ae, af)
}
d.ONE.dlShiftTo(al, ae);
ae.subTo(ad, ad);
while (ad.t < al) {
ad[ad.t++] = 0
}
while (--am >= 0) {
var ac = (af[--an] == ab) ? this.DM : Math.floor(af[an] * at + (af[an - 1] + aq) * ar);
if ((af[an] += ad.am(0, ac, af, am, 0, al)) < ac) {
ad.dlShiftTo(am, ae);
af.subTo(ae, af);
while (af[an] < --ac) {
af.subTo(ae, af)
}
}
}
if (ag != null) {
af.drShiftTo(al, ag);
if (aa != ai) {
d.ZERO.subTo(ag, ag)
}
}
af.t = al;
af.clamp();
if (ao > 0) {
af.rShiftTo(ao, af)
}
if (aa < 0) {
d.ZERO.subTo(af, af)
}
}
function j(aa) {
var ab = l();
this.abs().divRemTo(aa, null, ab);
if (this.s < 0 && ab.compareTo(d.ZERO) > 0) {
aa.subTo(ab, ab)
}
return ab
}
function W(aa) {
this.m = aa
}
function w(aa) {
if (aa.s < 0 || aa.compareTo(this.m) >= 0) {
return aa.mod(this.m)
} else {
return aa
}
}
function p(aa) {
return aa
}
function c(aa) {
aa.divRemTo(this.m, null, aa)
}
function X(aa, ac, ab) {
aa.multiplyTo(ac, ab);
this.reduce(ab)
}
function Y(aa, ab) {
aa.squareTo(ab);
this.reduce(ab)
}
W.prototype.convert = w;
W.prototype.revert = p;
W.prototype.reduce = c;
W.prototype.mulTo = X;
W.prototype.sqrTo = Y;
function r() {
if (this.t < 1) {
return 0
}
var aa = this[0];
if ((aa & 1) == 0) {
return 0
}
var ab = aa & 3;
ab = (ab * (2 - (aa & 15) * ab)) & 15;
ab = (ab * (2 - (aa & 255) * ab)) & 255;
ab = (ab * (2 - (((aa & 65535) * ab) & 65535))) & 65535;
ab = (ab * (2 - aa * ab % this.DV)) % this.DV;
return (ab > 0) ? this.DV - ab : -ab
}
function B(aa) {
this.m = aa;
this.mp = aa.invDigit();
this.mpl = this.mp & 32767;
this.mph = this.mp >> 15;
this.um = (1 << (aa.DB - 15)) - 1;
this.mt2 = 2 * aa.t
}
function q(aa) {
var ab = l();
aa.abs().dlShiftTo(this.m.t, ab);
ab.divRemTo(this.m, null, ab);
if (aa.s < 0 && ab.compareTo(d.ZERO) > 0) {
this.m.subTo(ab, ab)
}
return ab
}
function S(aa) {
var ab = l();
aa.copyTo(ab);
this.reduce(ab);
return ab
}
function F(aa) {
while (aa.t <= this.mt2) {
aa[aa.t++] = 0
}
for (var ac = 0; ac < this.m.t; ++ac) {
var ab = aa[ac] & 32767;
var ad = (ab * this.mpl + (((ab * this.mph + (aa[ac] >> 15) * this.mpl) & this.um) << 15)) & aa.DM;
ab = ac + this.m.t;
aa[ab] += this.m.am(0, ad, aa, ac, 0, this.m.t);
while (aa[ab] >= aa.DV) {
aa[ab] -= aa.DV;
aa[++ab]++
}
}
aa.clamp();
aa.drShiftTo(this.m.t, aa);
if (aa.compareTo(this.m) >= 0) {
aa.subTo(this.m, aa)
}
}
function k(aa, ab) {
aa.squareTo(ab);
this.reduce(ab)
}
function i(aa, ac, ab) {
aa.multiplyTo(ac, ab);
this.reduce(ab)
}
B.prototype.convert = q;
B.prototype.revert = S;
B.prototype.reduce = F;
B.prototype.mulTo = i;
B.prototype.sqrTo = k;
function u() {
return 0 == ((this.t > 0) ? (this[0] & 1) : this.s)
}
function e(af, ag) {
if (af > 4294967295 || af < 1) {
return d.ONE
}
var ae = l(),
aa = l(),
ad = ag.convert(this),
ac = U(af) - 1;
ad.copyTo(ae);
while (--ac >= 0) {
ag.sqrTo(ae, aa);
if ((af & (1 << ac)) > 0) {
ag.mulTo(aa, ad, ae)
} else {
var ab = ae;
ae = aa;
aa = ab
}
}
return ag.revert(ae)
}
function D(ab, aa) {
var ac;
if (ab < 256 || aa.isEven()) {
ac = new W(aa)
} else {
ac = new B(aa)
}
return this.exp(ab, ac)
}
d.prototype.copyTo = n;
d.prototype.fromInt = R;
d.prototype.fromString = M;
d.prototype.clamp = P;
d.prototype.dlShiftTo = a;
d.prototype.drShiftTo = z;
d.prototype.lShiftTo = s;
d.prototype.rShiftTo = Q;
d.prototype.subTo = h;
d.prototype.multiplyTo = O;
d.prototype.squareTo = A;
d.prototype.divRemTo = I;
d.prototype.invDigit = r;
d.prototype.isEven = u;
d.prototype.exp = e;
d.prototype.toString = T;
d.prototype.negate = N;
d.prototype.abs = G;
d.prototype.compareTo = V;
d.prototype.bitLength = g;
d.prototype.mod = j;
d.prototype.modPowInt = D;
d.ZERO = b(0);
d.ONE = b(1);
return d
})();
SYNO = window.SYNO || {};
SYNO.Encryption = SYNO.Encryption || {};
SYNO.Encryption.SecureRandom = (function() {
function g() {
this.i = 0;
this.j = 0;
this.S = new Array()
}
function l(s) {
var r, p, q;
for (r = 0; r < 256; ++r) {
this.S[r] = r
}
p = 0;
for (r = 0; r < 256; ++r) {
p = (p + this.S[r] + s[r % s.length]) & 255;
q = this.S[r];
this.S[r] = this.S[p];
this.S[p] = q
}
this.i = 0;
this.j = 0
}
function d() {
var p;
this.i = (this.i + 1) & 255;
this.j = (this.j + this.S[this.i]) & 255;
p = this.S[this.i];
this.S[this.i] = this.S[this.j];
this.S[this.j] = p;
return this.S[(p + this.S[this.i]) & 255]
}
g.prototype.init = l;
g.prototype.next = d;
function j() {
return new g()
}
var m = 256;
var k;
var b;
var f;
function h(p) {
b[f++] ^= p & 255;
b[f++] ^= (p >> 8) & 255;
b[f++] ^= (p >> 16) & 255;
b[f++] ^= (p >> 24) & 255;
if (f >= m) {
f -= m
}
}
function o() {
h(new Date().getTime())
}
if (b == null) {
b = new Array();
f = 0;
var n;
if (navigator.appName == "Netscape" && navigator.appVersion < "5" && window.crypto) {
var i = window.crypto.random(32);
for (n = 0; n < i.length; ++n) {
b[f++] = i.charCodeAt(n) & 255
}
}
while (f < m) {
n = Math.floor(65536 * Math.random());
b[f++] = n >>> 8;
b[f++] = n & 255
}
f = 0;
o()
}
function c() {
if (k == null) {
o();
k = j();
k.init(b);
for (f = 0; f < b.length; ++f) {
b[f] = 0
}
f = 0
}
return k.next()
}
function e(q) {
var p;
for (p = 0; p < q.length; ++p) {
q[p] = c()
}
}
function a() {}
a.prototype.nextBytes = e;
a.rng_seed_time = o;
return a
})();
SYNO = window.SYNO || {};
SYNO.Encryption = SYNO.Encryption || {};
SYNO.Encryption.RSA = (function() {
function c(i, h) {
return new SYNO.Encryption.BigInteger(i, h)
}
function b(h) {
if (h < 16) {
return "0" + h.toString(16)
}
return h.toString(16)
}
function a(l, p) {
if (p < l.length + 11) {
return null
}
var o = new Array();
var k = l.length - 1;
while (k >= 0 && p > 0) {
var m = l.charCodeAt(k--);
if (m < 128) {
o[--p] = m
} else {
if ((m > 127) && (m < 2048)) {
o[--p] = (m & 63) | 128;
o[--p] = (m >> 6) | 192
} else {
o[--p] = (m & 63) | 128;
o[--p] = ((m >> 6) & 63) | 128;
o[--p] = (m >> 12) | 224
}
}
}
o[--p] = 0;
var j = new SYNO.Encryption.SecureRandom();
var h = new Array();
while (p > 2) {
h[0] = 0;
while (h[0] == 0) {
j.nextBytes(h)
}
o[--p] = h[0]
}
o[--p] = 2;
o[--p] = 0;
return new SYNO.Encryption.BigInteger(o)
}
function e() {
this.n = null;
this.e = 0;
this.d = null;
this.p = null;
this.q = null;
this.dmp1 = null;
this.dmq1 = null;
this.coeff = null
}
function f(i, h) {
if (i != null && h != null && i.length > 0 && h.length > 0) {
this.n = c(i, 16);
this.e = parseInt(h, 16)
} else {}
}
function g(h) {
return h.modPowInt(this.e, this.n)
}
function d(k) {
var i = a(k, (this.n.bitLength() + 7) >> 3);
if (i == null) {
return null
}
var l = this.doPublic(i);
if (l == null) {
return null
}
var j = l.toString(16);
if ((j.length & 1) == 0) {
return j
} else {
return "0" + j
}
}
e.prototype.doPublic = g;
e.prototype.setPublic = f;
e.prototype.encrypt = d;
return e
})();
SYNO = window.SYNO || {};
SYNO.Encryption = SYNO.Encryption || {};
SYNO.Encryption.CipherKey = "";
SYNO.Encryption.RSAModulus = "";
SYNO.Encryption.CipherToken = "";
SYNO.Encryption.TimeBias = 0;
SYNO.Encryption.EncryptParam = function(e, cipherKey, rsaModulus, cipherToken, timeBias) {
var c, d, b = {},
a = {};
if (!cipherKey || !rsaModulus || !cipherToken) {
return e;
}
c = new SYNO.Encryption.RSA();
c.setPublic(rsaModulus, "10001");
e[cipherToken] = Math.floor(+new Date() / 1000) + timeBias;
var encodedData = $.param(e).replace(/\+/g, '%20');
d = c.encrypt(encodedData);
if (!d) {
return e;
}
a[cipherKey] = SYNO.Encryption.Base64.hex2b64(d);
return a
};
})();
|
train_000.parquet/779
|
{
"file_path": "js/lib/encryption.js",
"repo_id": "007revad/Synology_Download_Station_Chrome_Extension",
"size": 19881,
"token_count": 12264
}
|
## All my scripts, tools and guides
<img src="https://hitscounter.dev/api/hit?url=https%3A%2F%2F007revad.github.io%2F&label=Visitors&icon=github&color=%23198754&message=&style=flat&tz=UTC">
#### Contents
- [Plex](#plex)
- [Synology docker](#synology-docker)
- [Synology recovery](#synology-recovery)
- [Other Synology scripts](#other-synology-scripts)
- [Synology hardware restrictions](#synology-hardware-restrictions)
- [2025 plus models](#2025-plus-models)
- [How To Guides](#how-to-guides)
- [Synology dev](#synology-dev)
***
### Plex
- **<a href="https://github.com/007revad/Synology_Plex_Backup">Synology_Plex_Backup</a>**
- A script to backup Plex to a tgz file foror DSM 7 and DSM 6.
- Works for Plex Synology package and Plex in docker.
- **<a href="https://github.com/007revad/Asustor_Plex_Backup">Asustor_Plex_Backup</a>**
- Backup your Asustor's Plex Media Server settings and database.
- **<a href="https://github.com/007revad/Linux_Plex_Backup">Linux_Plex_Backup</a>**
- Backup your Linux Plex Media Server's settings and database.
- **<a href="https://github.com/007revad/Plex_Server_Sync">Plex_Server_Sync</a>**
- Sync your main Plex server database & metadata to a backup Plex server.
- Works for Synology, Asustor, Linux and supports Plex package or Plex in docker.
[Back to Contents](#contents)
### Synology docker
- **<a href="https://github.com/007revad/Synology_Docker_Export">Synology_Docker_export</a>**
- Export all Synology Container Manager or Docker containers' settings as json files to your docker shared folder.
- **<a href="https://github.com/007revad/Synology_ContainerManager_IPv6">Synology_ContainerManager_IPv6</a>**
- Enable IPv6 for Container Manager's bridge network.
- **<a href="https://github.com/007revad/ContainerManager_for_all_armv8">ContainerManager_for_all_armv8</a>**
- Script to install Container Manager on a RS819, DS119j, DS418, DS418j, DS218, DS218play or DS118.
- **<a href="https://github.com/007revad/Docker_Autocompose">Docker_Autocompose</a>**
- Create .yml files from your docker existing containers.
- **<a href="https://github.com/007revad/Synology_docker_cleanup">Synology_docker_cleanup</a>**
- Remove orphan docker btrfs subvolumes and images in Synology DSM 7 and DSM 6.
[Back to Contents](#contents)
### Synology recovery
- **<a href="https://github.com/007revad/Synology_DSM_reinstall">Synology_DSM_reinstall</a>**
- Easily re-install the same DSM version without losing any data or settings.
- **<a href="https://github.com/007revad/Synology_Recover_Data">Synology_Recover_Data</a>**
- A script to make it easy to recover your data from your Synology's drives using a computer.
- **<a href="https://github.com/007revad/Synology_clear_drive_error">Synology clear drive error</a>**
- Clear drive critical errors so DSM will let you use the drive.
- **<a href="https://github.com/007revad/Synology_DSM_Telnet_Password">Synology_DSM_Telnet_Password</a>**
- Synology DSM Recovery Telnet Password of the Day generator.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/Synoboot_backup">Synoboot_backup</a>**
- Back up synoboot after each DSM update so you can recover from a corrupt USBDOM.
[Back to Contents](#contents)
### Other Synology scripts
- **<a href="https://github.com/007revad/Synology_app_mover">Synology_app_mover</a>**
- Easily move Synology packages from one volume to another volume.
- **<a href="https://github.com/007revad/Video_Station_for_DSM_722">Video_Station_for_DSM_722</a>**
- Script to install Video Station in DSM 7.2.2
- **<a href="https://github.com/007revad/SS_Motion_Detection">SS_Motion_Detection</a>**
- Installs previous Surveillance Station and Advanced Media Extensions versions so motion detection and HEVC are supported.
- **<a href="https://github.com/007revad/Synology_Config_Backup">Synology_Config_Backup</a>**
- Backup and export your Synology DSM configuration.
- **<a href="https://github.com/007revad/Synology_CPU_temperature">Synology_CPU_temperature</a>**
- Get and log Synology NAS CPU temperature via SSH.
- **<a href="https://github.com/007revad/Synology_SMART_info">Synology_SMART_info</a>**
- Show Synology smart test progress or smart health and attributes.
- **<a href="https://github.com/007revad/Synology_Cleanup_Coredumps">Synology_Cleanup_Coredumps</a>**
- Cleanup memory core dumps from crashed processes.
- **<a href="https://github.com/007revad/Synology_toggle_reset_button">Synology_toggle_reset_button</a>**
- Script to disable or enable the reset button and show current setting.
- **<a href="https://github.com/007revad/Synology_Download_Station_Chrome_Extension">Synology_Download_Station_Chrome_Extension</a>**
- Download Station Chrome Extension.
- **<a href="https://github.com/007revad/Seagate_lowCurrentSpinup">Seagate_lowCurrentSpinup</a>**
- This script avoids the need to buy and install a higher wattage power supply when using multiple large Seagate SATA HDDs.
[Back to Contents](#contents)
### Synology hardware restrictions
- **<a href="https://github.com/007revad/Synology_HDD_db">Synology_HDD_db</a>**
- Add your SATA or SAS HDDs and SSDs plus SATA and NVMe M.2 drives to your Synology's compatible drive databases, including your Synology M.2 PCIe card and Expansion Unit databases.
- **<a href="https://github.com/007revad/Synology_enable_M2_volume">Synology_enable_M2_volume</a>**
- Enable creating volumes with non-Synology M.2 drives.
- Enable Health Info for non-Synology NVMe drives (not in DSM 7.2.1 or later).
- **<a href="https://github.com/007revad/Synology_M2_volume">Synology_M2_volume</a>**
- Easily create an M.2 volume on Synology NAS.
- **<a href="https://github.com/007revad/Synology_enable_M2_card">Synology_enable_M2_card</a>**
- Enable Synology M.2 PCIe cards in Synology NAS that don't officially support them.
- **<a href="https://github.com/007revad/Synology_enable_eunit">Synology_enable_eunit</a>**
- Enable an unsupported Synology eSATA Expansion Unit models.
- **<a href="https://github.com/007revad/Synology_enable_Deduplication">Synology_enable_Deduplication</a>**
- Enable deduplication with non-Synology SSDs and unsupported NAS models.
- **<a href="https://github.com/007revad/Synology_SHR_switch">Synology_SHR_switch</a>**
- Easily switch between SHR and RAID Groups, or enable RAID F1.
- **<a href="https://github.com/007revad/Synology_enable_sequential_IO">Synology_enable_sequential_IO</a>**
- Enables sequential I/O for your SSD caches, like DSM 6 had.
- **<a href="https://github.com/007revad/Synology_Information_Wiki">Synology_Information_Wiki</a>**
- Information about Synology hardware.
[Back to Contents](#contents)
### 2025 plus models
- **<a href="https://github.com/007revad/Transcode_for_x25">Transcode_for_x25</a>**
- Installs the modules needed for Plex or Jellyfin hardware transcoding in DS425+ and DS225+.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md">2025 series or later Plus models</a>**
- Unverified 3rd party drive limitations and unofficial solutions.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#setting-up-a-new-2025-or-later-plus-model-with-only-unverified-hdds">Setup with only 3rd party drives</a>**
- Setting up a new 2025 or later plus model with only unverified HDDs.
- **<a href="https://github.com/007revad/Synology_HDD_db/blob/main/2025_plus_models.md#deleting-and-recreating-your-storage-pool-on-unverified-hdds">Recreating storage pool on migrated drives</a>**
- Deleting and recreating your storage pool on unverified HDDs.
[Back to Contents](#contents)
### How To Guides
- **<a href="https://github.com/007revad/Synology_SSH_key_setup">Synology_SSH_key_setup</a>**
- How to setup SSH key authentication for your Synology.
[Back to Contents](#contents)
### Synology dev
- **<a href="https://github.com/007revad/Download_Synology_Archive">Download_Synology_Archive</a>**
- Download all or part of the Synology archive.
- **<a href="https://github.com/007revad/Syno_DSM_Extractor_GUI">Syno_DSM_Extractor_GUI</a>**
- Windows GUI for extracting Synology DSM 7 pat files and spk package files.
- **<a href="https://github.com/007revad/ScriptNotify">ScriptNotify</a>**
- DSM 7 package to allow your scripts to send DSM notifications.
- **<a href="https://github.com/007revad/DTC_GUI_for_Windows">DTC_GUI_for_Windows</a>**
- GUI for DTC.exe for Windows.
[Back to Contents](#contents)
|
train_000.parquet/780
|
{
"file_path": "my-other-scripts.md",
"repo_id": "007revad/Synology_enable_sequential_IO",
"size": 9099,
"token_count": 3421
}
|
#!/usr/bin/env bash
# shellcheck disable=SC2076,SC2207
#------------------------------------------------------------------------------
# Github: https://github.com/007revad/Synology_enable_sequential_IO
# Script verified at https://www.shellcheck.net/
#
# Synology sets the skip_seq_thresh_kb to 1024
# Setting skip_seq_thresh_kb to 0 enables sequential I/O like DSM 6 had.
#
# To run in a shell (replace /volume1/scripts/ with path to script):
# sudo -i /volume1/scripts/syno_seq_io.sh
#
# You can run this script with a parameter to specify the skip_seq_thresh_kb
# For example the following would set the cache you select back to default
# sudo -i /volume1/scripts/syno_seq_io.sh 1024
#
# If no parameter the script defaults to 0
#------------------------------------------------------------------------------
# v2.0.3
# Added --volumes option to make it possible to schedule script to run at boot-up.
# - You can specify multiple comma separated volumes.
# Added --kb option to replace setting kb via first parameter.
# Bug fix for "Not persistent across reboots" issue #2
# Bug fix for when no caches are found.
# Bug fix for when multiple caches are found.
scriptver="v2.0.3"
script=Synology_enable_sequential_IO
repo="007revad/Synology_enable_sequential_IO"
#scriptname=syno_seq_io
# Check script is running as root
if [[ $( whoami ) != "root" ]]; then
echo -e "$script $scriptver - by 007revad"
echo -e "ERROR This script must be run as sudo or root!"
exit 1
fi
version(){
echo -e "$script $scriptver - by 007revad"
echo -e "See https://github.com/$repo \n"
}
# Save options used
args=("$@")
usage(){
cat <<EOF
$script $scriptver - by 007revad
Usage: $(basename "$0") [options]
Options:
--volumes=VOLUME Volume or volumes to enable sequential I/O for
Use when scheduling the script
Examples:
--volumes=volume_1
--volumes=volume_1,volume_3,volume_4
--kb=KB Set a specific sequential I/O kb value
Use to disable sequential I/O
--kb=1024
-e, --email Disable colored text in output scheduler emails
-h, --help Show this help message
-v, --version Show the script version
EOF
exit 0
}
# Check for flags with getopt
if options="$(getopt -o abcdefghijklmnopqrstuvwxyz0123456789 -l \
volumes:,kb:,email,help,version -- "${args[@]}")"; then
eval set -- "$options"
while true; do
case "${1,,}" in
-h|--help) # Show usage options
usage
;;
-v|--version) # Show script version
scriptversion
exit
;;
--volumes) # Volumes to process
if [[ -n "$2" ]]; then
IFS=',' read -r -a cachevols <<< "$2"
scheduled="yes"
shift
fi
;;
--kb) # kb value to set
if [[ $2 =~ ^[0-9]+$ ]]; then
kb="$2"
shift
fi
;;
-e|--email) # Disable colour text in task scheduler emails
color=no
;;
--)
shift
break
;;
*) # Show usage options
echo -e "Invalid option '$1'\n"
usage "$1"
;;
esac
shift
done
else
echo
usage
fi
if [[ -z "$kb" ]]; then
kb="0"
fi
# Show script version
version
# Show options used
if [[ ${#args[@]} -gt "0" ]]; then
echo "Using options: ${args[*]}"
fi
# Shell Colors
if [[ $color != "no" ]]; then
#Black='\e[0;30m' # ${Black}
Red='\e[0;31m' # ${Red}
Green='\e[0;32m' # ${Green}
#Yellow='\e[0;33m' # ${Yellow}
#Blue='\e[0;34m' # ${Blue}
#Purple='\e[0;35m' # ${Purple}
Cyan='\e[0;36m' # ${Cyan}
#White='\e[0;37m' # ${White}
#Error='\e[41m' # ${Error}
Off='\e[0m' # ${Off}
else
echo "" # For task scheduler email readability
fi
# Get list of volumes with caches
cachelist=("$(sysctl dev | grep skip_seq_thresh_kb)")
IFS=$'\n' caches=($(sort <<<"${cachelist[*]}")); unset IFS
if [[ ${#caches[@]} -lt "1" ]]; then
echo "No caches found!" && exit 1
fi
# Get caches' current setting
for c in "${caches[@]}"; do
volume="$(echo "$c" | cut -d"+" -f2 | cut -d"." -f1)"
kbs="$(echo "$c" | cut -d"=" -f2 | awk '{print $1}')"
volumes+=("${volume}|$kbs")
sysctl_dev="$(echo "$c" | cut -d"." -f2 | awk '{print $1}')"
sysctl_devs+=("$sysctl_dev")
done
# Show cache volumes and current setting
if [[ $scheduled != "yes" ]]; then
if [[ ${#volumes[@]} -gt 0 ]]; then
echo -e "Setting a cache's skip_seq_thresh_kb to 0 enables sequential I/O\n"
#echo "Volumes with a cache: "
echo "----------------------"
echo " Cache_Vol Setting"
echo "----------------------"
for ((i=1; i<=${#volumes[@]}; i++)); do
info="${volumes[i-1]}"
before_pipe="${info%%|*}"
after_pipe="${info#*|}"
printf "%-3s %-9s %s\n" "$i)" "$before_pipe" "$after_pipe"
done
echo "----------------------"
else
echo "No caches found!" && exit 1
fi
else
echo ""
fi
# Select volume's cache to edit if not scheduled
if [[ $scheduled != "yes" ]]; then
# Parse selected element of array
read -rp "Select cache volume to edit: " choice
#IFS="|" read -r cachevol setting <<< "${volumes[choice-1]}"
# Check valid choice entered
if [[ $choice =~ ^[0-9]+$ ]] && [[ $choice != "0" ]] &&\
[[ ! $choice -gt "${#volumes[@]}" ]]; then
IFS="|" read -r cachevol setting <<< "${volumes[choice-1]}"
else
echo "Invalid choice! $choice"
exit
fi
echo -e "\nYou selected $cachevol to set to $kb\n"
cachevols=("$cachevol")
fi
for v in "${sysctl_devs[@]}"; do
for c in "${cachevols[@]}"; do
if [[ $v =~ "$c" ]]; then
cachevol="$c"
# Get cache's key name
cacheval="$(sysctl dev | grep skip_seq_thresh_kb | grep "$cachevol")"
key="$(echo "$cacheval" | cut -d"=" -f1 | cut -d" " -f1)"
# Set new cache kb value
val="$(synosetkeyvalue /etc/sysctl.conf "$key")"
if [[ $val != "$kb" ]]; then
synosetkeyvalue /etc/sysctl.conf "$key" "$kb"
fi
if echo "$v" | grep "$cachevol" >/dev/null; then
echo "$kb" > "/proc/sys/dev/${v}/skip_seq_thresh_kb"
fi
# Check we set key value
check="$(synogetkeyvalue /etc/sysctl.conf "$key")"
if [[ "$check" == "0" ]]; then
echo -e "Sequential I/O for $cachevol cache is ${Green}Enabled${Off} in /etc/sysctl.conf"
elif [[ "$check" == "1024" ]]; then
echo -e "Sequential I/O for $cachevol cache is ${Red}Disabled${Off} in /etc/sysctl.conf"
elif [[ -z "$check" ]]; then
echo -e "Sequential I/O for $cachevol cache is ${Red}not set${Off} in /etc/sysctl.conf"
else
echo -e "Sequential I/O for $cachevol cache is set to ${Cyan}$check${Off} in /etc/sysctl.conf"
fi
# Check we set proc/sys/dev
val="$(cat /proc/sys/dev/"${v}"/skip_seq_thresh_kb)"
if [[ "$val" == "0" ]]; then
echo -e "Sequential I/O for $cachevol cache is ${Green}Enabled${Off} in /proc/sys/dev\n"
elif [[ "$val" == "1024" ]]; then
echo -e "Sequential I/O for $cachevol cache is ${Red}Disabled${Off} in /proc/sys/dev\n"
elif [[ -z "$val" ]]; then
echo -e "Sequential I/O for $cachevol cache is ${Red}not set${Off} in /proc/sys/dev\n"
else
echo -e "Sequential I/O for $cachevol cache is set to ${Cyan}$val${Off} in /proc/sys/dev\n"
fi
fi
done
done
if [[ $scheduled != "yes" ]]; then
echo "You need to run this script after each reboot,"
echo -e "or schedule a triggered task to run it as root at boot.\n"
fi
exit
|
train_000.parquet/781
|
{
"file_path": "syno_seq_io.sh",
"repo_id": "007revad/Synology_enable_sequential_IO",
"size": 8383,
"token_count": 2993
}
|
# Synology enable sequential I/O
<a href="https://github.com/007revad/Synology_enable_sequential_IO/releases"><img src="https://img.shields.io/github/release/007revad/Synology_enable_sequential_IO.svg"></a>

[](https://www.paypal.com/paypalme/007revad)
[](https://github.com/sponsors/007revad)
[](https://user-badge.committers.top/australia/007revad)
### Description
Enables sequential I/O for your SSD caches, like DSM 6 had when you unticked the "Skip sequential I/O" option.
**Note:** Monitor your NVMe drive and 10G card temperature. There have been reports online that enabling sequential I/O for an SSD cache can cause a 10G network card to overheat (which may be why Synology disabled SSD cache sequential I/O from DSM 7 onwards). It will also wear out the NVMe drive(s) much faster.
### Download the script
1. Download the latest version _Source code (zip)_ from https://github.com/007revad/Synology_enable_sequential_IO/releases
2. Save the download zip file to a folder on the Synology.
3. Unzip the zip file.
### Running the script via SSH
[How to enable SSH and login to DSM via SSH](https://kb.synology.com/en-global/DSM/tutorial/How_to_login_to_DSM_with_root_permission_via_SSH_Telnet)
**Note:** Replace /volume1/scripts/ with the path to where the script is located.
Run the script then reboot the Synology:
```YAML
sudo -i /volume1/scripts/syno_seq_io.sh
```
### Scheduling the script in Synology's Task Scheduler
To ensure that your cache(s) still have sequential I/O enabled after a reboot you should schedule the script to run at boot.
See <a href=how_to_schedule.md/>How to schedule a script to run at boot in Synology Task Scheduler</a>
### Options
```
--volumes=VOLUME Volume or volumes to enable sequential I/O for
Use when scheduling the script
Examples:
--volumes=volume_1
--volumes=volume_1,volume_3,volume_4
--kb=KB Set a specific sequential I/O kb value
Use to disable sequential I/O
--kb=1024
-e, --email Disable colored text in output scheduler emails
-h, --help Show this help message
-v, --version Show the script version
```
You can run this script with a parameter to specify the skip_seq_thresh_kb
For example the following would set the cache you select back to default
```YAML
sudo -i /volume1/scripts/syno_seq_io.sh 1024
```
**Note:** If no parameter the script defaults to 0 (which enables sequential I/O).
<br>
## Screenshots
<p align="center">Enabling sequential I/O</p>
<p align="center"><img src="/images/manual.png"></p>
<p align="center">Reset a cache to 1024 KB to disable sequential I/O</p>
<p align="center"><img src="/images/default.png"></p>
<p align="center">Scheduled to enable sequential I/O for 2 caches with --volume option</p>
<p align="center"><img src="/images/2caches.png"></p>
<p align="center">Choose from multiple caches</p>
<p align="center"><img src="/images/screenshot.png"></p>
|
train_000.parquet/782
|
{
"file_path": "README.md",
"repo_id": "007revad/Synology_enable_sequential_IO",
"size": 3522,
"token_count": 1225
}
|
# How to schedule a script in Synology Task Scheduler
To schedule a script to run on your Synology at boot-up follow these steps:
1. Go to **Control Panel** > **Task Scheduler** > click **Create** > and select **Triggered Task**.
2. Select **User-defined script**.
3. Enter a task name.
4. Select **root** as the user (The script needs to run as root).
5. Select **Boot-up** as the event that triggers the task.
6. Leave **Enable** ticked.
7. Click **Task Settings**.
8. Optionally you can tick **Send run details by email** and **Send run details only when the script terminates abnormally** then enter your email address.
9. In the box under **User-defined script** type the path to the script.
- e.g. If you saved the script to a shared folder on volume1 called "scripts" and your cache was set to volume1 you'd type:
- **/volume1/scripts/syno_enable_sequential_IO.sh --email --volumes=volume_1**
- or if you have caches was set to volume1 and volume2 you'd type:
- **/volume1/scripts/syno_enable_sequential_IO.sh --email --volumes=volume_1,volumes_2**
- For information on the options see [Options](README.md#options)
11. Click **OK** to save the settings.
Here's some screenshots showing what needs to be set:
<p align="leftr"><img src="images/schedule-1.png"></p>
<p align="leftr"><img src="images/schedule-2.png"></p>
<p align="leftr"><img src="images/schedule-3.png"></p>
|
train_000.parquet/783
|
{
"file_path": "how_to_schedule.md",
"repo_id": "007revad/Synology_enable_sequential_IO",
"size": 1407,
"token_count": 460
}
|
# Synology Information Wiki
Hardware information of what various Synology models support

### General Software Information
* [DSM version types](pages/DSM-version-types.md) (Major, Minor, Micro, Build, Nano)
* [2025_and_later_Plus_model_auto_update](pages/2025plus_autoupdate.md)
### General Hardware Information
* [2025_and_later_Plus_model_drive_restrictions](pages/2025plus_drives.md)
* [CPU information](pages/CPU-information.md)
* [DSM versions per model](pages/DSM-versions-per-model.md)
* [eSATA Expansion Unit Support](pages/eSATA-Expansion-Unit-Support.md)
* [Expansion Unit support in DSM-7.2.1](pages/Expansion-Unit-support-in-DSM-7.2.1.md)
* [ext4 for RackStations](pages/ext4_for_RackStations.md)
* [FAN Speed Modes](pages/FAN-Speed-Modes.md)
* [HDD SSD Help](pages/HDD-SSD-Help.md)
* [Ironwolf Health](pages/Ironwolf-Health.md)
* [Linux Kernel in each platform arch](pages/Linux-Kernel-in-each-platform-arch.md)
* [NVMe speed per NAS model](pages/NVMe-speed.md)
* [NVMe Power Loss Protection](pages/NVMe-Power-Loss-Protection.md)
* [PCIe network cards](pages/PCIe-network-cards.md)
* [RAID min and max drives](pages/RAID-min-and-max-drives.md)
* [S.M.A.R.T.](pages/SMART.md)
* [SSD Sequential I/O Cache](pages/SSD-Sequential-I-O-Cache.md)
* [SSD TRIM support](pages/SSD-TRIM-support.md)
* [StorageManager package support](pages/StorageManager-package-support.md)
* [Synology HDDs and SSDs](pages/Synology-HDDs-and-SSDs.md)
* [Number of supported cameras](pages/Max-cameras-per-model.md)
* [Models that are white](pages/Models_that_are_white.md)
* [Synology Update sites](pages/Synology-Update-sites.md)
* [WDDA information](pages/WDDA-information.md)
### Which Models Support Which Hardware Feature
* [Models that run fans full speed due to PCIe NIC](pages/Models-that-run-fans-full-due-to-PCIe-NIC.md)
* [Models that support 200TB Volumes](pages/Models-that-support-200TB-Volumes.md)
* [Models that support Deduplication](pages/Models-that-support-Deduplication.md)
* [Models that support E10G22‐T1‐Mini](pages/Models-that-support-E10G22%E2%80%90T1%E2%80%90Mini.md)
* [Models that support Expansion Units](pages/Models-that-support-Expansion-Units.md)
* [Models that support Immutable Snapshots](pages/Models-that-support-Immutable-Snapshots.md)
* [Models that support M.2 Drives](pages/Models-that-support-M.2-Drives.md)
* [Models that support M.2 Volumes](pages/Models-that-support-M.2-Volumes.md)
* [Models that support PCIe M.2 cards](pages/Models-that-support-PCIe-M.2-cards.md)
* [Models that support Peta Volumes](pages/Models-that-support-Peta-Volumes.md)
* [Models that support RAID F1](pages/Models-that-support-RAID-F1.md)
* [Models that support RAID Groups](pages/Models-that-support-RAID-Groups.md)
* [Models that support SAS drives](pages/Models-that-support-SAS-drives.md)
* [Models that support SHR (Synology Hybrid RAID)](pages/Models-that-support-SHR.md)
* [Models that support SSD Cache](pages/Models-that-support-SSD-Cache.md)
* [Models that support UASP](pages/Models-that-support-UASP.md)
* [Models that support WriteOnce and immutable snapshots (WORM)](pages/Models-that-support-WORM.md)
* [Models that use DeviceTree](pages/Models-that-use-DeviceTree.md)
* [Models that use sata1 instead of sda](pages/Models-that-use-sata1-instead-of-sda.md)
* [Models with a GPU](pages/Models-with-a-GPU.md)
* [Models with internal M.2 slots](pages/Models-with-internal-M.2-slots.md)
* [Models with PCIe slots](pages/Models-with-PCIe-slots.md)
* [Models with PCIe slots & no NVMe support](pages/Models-with-PCIe-slots-&-no-NVMe-support.md)
|
train_000.parquet/784
|
{
"file_path": "README.md",
"repo_id": "007revad/Synology_Information_Wiki",
"size": 3762,
"token_count": 1559
}
|
## 2025 series or later Plus models
### Unverified 3rd party drive limitations and unoffical solutions
| Action | Works | Result | Solution |
|--------|--------------|--------|----------|
| Setup the NAS with Synology drives | yes | | |
| Setup the NAS with 3rd party SSDs | yes | Lots of warnings | Use [Synology HDD db](https://github.com/007revad/Synology_HDD_db) |
| Setup the NAS with unverified 3rd party HDDs | **No!** | | See <a href="#setting-up-a-new-2025-or-later-plus-model-with-only-unverified-hdds">Setup with unverifed HDDs</a> |
| Migrate unverified 3rd party drives from other Synology | yes | Lots of warnings | Use [Synology HDD db](https://github.com/007revad/Synology_HDD_db) |
| Migrate unverified 3rd party drives and NVMe cache from other Synology | yes | Lots of warnings | Use [Synology HDD db](https://github.com/007revad/Synology_HDD_db) |
| Replace migrated 3rd party drives with 3rd party drives | **No!** | | Use [Synology HDD db](https://github.com/007revad/Synology_HDD_db) |
| Gradually replace migrated 3rd party drives with Synology drives | yes | Lots of warnings until all 3rd party drives replaced | Use [Synology HDD db](https://github.com/007revad/Synology_HDD_db) See [Migration and Drive Replacement](https://github.com/007revad/Synology_HDD_db/discussions/468#discussioncomment-13086639) |
| Expand migrated 3rd party storage pool with 3rd party drives | **No!** | | Use [Synology HDD db](https://github.com/007revad/Synology_HDD_db) |
| Use 3rd party drive as hot spare | **No!** | | Use [Synology HDD db](https://github.com/007revad/Synology_HDD_db) |
| Create a cache with 3rd party SSDs | **No!** | | Use [Synology HDD db](https://github.com/007revad/Synology_HDD_db) |
| Delete and create storage pool on migrated 3rd party drives | **No!** | | See <a href="#deleting-and-recreating-your-storage-pool-on-unverified-hdds">Recreating storage pool</a> |
<br>
### Setting up a new 2025 or later plus model with only unverified HDDs
Credit to Alex_of_Chaos on reddit
DSM won't install on a 2025 or later series plus model if you only have unverified HDDs. But we can get around that.
1. Start telnet by entering `http://<NAS-IP>:5000/webman/start_telnet.cgi` into your browser's address bar.
- Replace `<NAS-IP>` with the IP address of the Synology NAS.
3. Open a telnet client on your computer and log in to telnet with:
- `root` for the username
- `101-0101` for the password
5. Execute the following command: (using a while loop in case DSM is running in a VM)
```
while true; do touch /tmp/installable_check_pass; sleep 1; done
```
7. Refresh the web installation page and install DSM.
8. Then in the telnet window, or via SSH, execute the following command:
```
/usr/syno/bin/synosetkeyvalue support_disk_compatibility no
```
9. If Storage Manager is already open close then open it, or refresh the web page.
10. You can now create your storage pool from Storage Manager.
<br>
### Deleting and recreating your storage pool on unverified HDDs
You can't download Synology HDD db to a volume because you've just deleted your storage pool. So you'd first need to download Synology HDD db to a system folder and run it from there.
You can do this via SSH or via a scheduled task.
#### Via SSH
1. Create and cd to /opt
```
sudo mkdir /opt && sudo chmod 775 /opt
```
2. Create /opt
```
sudo mkdir -m775 /opt
```
2. cd to /opt
```
cd /opt || (echo "Failed to CD to /opt"; exit 1)
```
3. Download syno_hdd_db.sh to /opt
```
sudo curl -O "https://raw.githubusercontent.com/007revad/Synology_HDD_db/refs/heads/main/syno_hdd_db.sh"
```
4. Download syno_hdd_vendor_ids.txt to /opt
```
sudo curl -O "https://raw.githubusercontent.com/007revad/Synology_HDD_db/refs/heads/main/syno_hdd_vendor_ids.txt"
```
5. Then set permissions on /opt/syno_hdd_db.sh
```
sudo chmod 750 /opt/syno_hdd_db.sh
```
6. Finally run syno_hdd_db. You don't need any options at this point.
```
sudo -s /opt/syno_hdd_db.sh
```
8. If Storage Manager is already open close then open it, or refresh the web page.
9. You can now create your storage pool from Storage Manager.
#### Via a scheduled task
First setup email notifications (if you haven't already):
1. Go to **Control Panel** > **Notification** > **Email** > click **Setup**.
Then create the scheduled task:
1. Go to **Control Panel** > **Task Scheduler** > click **Create** > **Scheduled Task** > **User-defined script**.
2. Enter a task name.
3. Select **root** as the user (The script needs to run as root).
4. Untick **Enable**.
5. Click **Task Settings**.
6. Tick **Send run details by email** and enter your email address.
7. In the box under **User-defined script** paste the following:
```
mkdir -m775 /opt
cd /opt || (echo "Failed to CD to /opt"; exit 1)
curl -O "https://raw.githubusercontent.com/007revad/Synology_HDD_db/refs/heads/main/syno_hdd_db.sh"
curl -O "https://raw.githubusercontent.com/007revad/Synology_HDD_db/refs/heads/main/syno_hdd_vendor_ids.txt"
chmod 750 /opt/syno_hdd_db.sh
/opt/syno_hdd_db.sh -e
```
8. Click **OK** > **OK** > type your password > **Submit** to save the scheduled task.
9. Now select the scheduld task and click **Run** > **OK**.
10. Check your emails to make sure the scheduled task ran without any error.
11. If Storage Manager is already open close then open it, or refresh the web page.
12. You can now create your storage pool from Storage Manager.
|
train_000.parquet/785
|
{
"file_path": "pages/2025plus_drives.md",
"repo_id": "007revad/Synology_Information_Wiki",
"size": 5551,
"token_count": 2001
}
|
Synology NAS models that have PCIe slots (that support DSM 7.2.1)
```
DS723+ Gen3 x2 slot - E10G22-T1-Mini only
DS923+ Gen3 x2 slot - E10G22-T1-Mini only
DS1517+ Gen 2 x8 slot (x4 link)
DS1522+ Gen3 x2 slot - E10G22-T1-Mini only
DS1618+ Gen3 x8 slot (x4 link)
DS1621+ Gen3 x8 slot (x4 link)
DS1621xs+ Gen3 x8 slot (x8 link)
DS1817+ Gen 2 x8 slot (x4 link)
DS1819+ Gen3 x8 slot (x4 link)
DS1821+ Gen3 x8 slot (x4 link)
DS1823xs+ Gen3 x8 slot (x4 link)
DS2419+ Gen3 x8 slot (x4 link)
DS2419+II Gen3 x8 slot (x4 link)
DS2422+ Gen3 x8 slot (x4 link)
DS3018xs Gen3 x8 slot (x8 link)
DS3617xs Gen3 x8 slot (x8 link)
DS3617xsII Gen3 x8 slot (x8 link)
DS3622xs+ Gen3 x8 slot (x8 link)
RS422+ Gen3 x2 slot - E10G22-T1-Mini only
RS818+ Gen 2 x8 slot (x4 link)
RS818RP+ Gen 2 x8 slot (x4 link)
RS820+ Gen3 x8 slot (x4 link)
RS820RP+ Gen3 x8 slot (x4 link)
RS822+ Gen3 x8 slot (x4 link)
RS822RP+ Gen3 x8 slot (x4 link)
RS1219+ Gen 2 x8 slot (x4 link)
RS1221+ Gen3 x8 slot (x4 link)
RS1221RP+ Gen3 x8 slot (x4 link)
RS1619xs+ Gen3 x8 slot (x8 link)
RS2418+ Gen3 x8 slot (x4 link)
RS2418RP+ Gen3 x8 slot (x4 link)
RS2421+ Gen3 x8 slot (x4 link)
RS2421RP+ Gen3 x8 slot (x4 link)
RS2423+ Gen3 x8 slot (x4 link)
RS2423RP+ Gen3 x8 slot (x4 link)
RS2818RP+ Gen3 x8 slot (x4 link)
RS2821RP+ Gen3 x8 slot (x4 link)
RS3617xs+ 2 x Gen3 x8 slots (x8 link)
RS3617xs 2 x Gen3 x8 slots (x8 link)
RS3617RPxs 2 x Gen3 x8 slots (x8 link)
RS3618xs 2 x Gen3 x8 slots (x8 link)
RS3621xs+ 2 x Gen3 x8 slots (x8 link)
RS3621RPxs 2 x Gen3 x8 slots (x8 link)
RS4017xs+ 2 x Gen3 x8 slots (x8 link)
RS4021xs+ 2 x Gen3 x8 slots (x8 link)
RS18016xs+ 2 x Gen3 x8 slots (x8 link)
RS18017xs+ 2 x Gen3 x8 slots (x8 link)
FS1018 Gen3 x8 slot (x8 link)
FS2017 Gen3 x8 slot (x8 link)
FS2500 Gen3 x8 slot (x4 link)
FS3017 2 PCIe slots, 1 x Gen3 x16 slot (x16 link), 1 x Gen3 x8 slot (x8 link)
FS3400 Gen3 x8 slot (x8 link)
FS3410 2 x Gen3 x8 slots (x8 link)
FS3600 Gen3 x8 slot (x8 link)
FS6400 2 x Gen3 x8 slots (x8 link)
HD6500 4 PCIe slots, 2 x Gen3 x16 slot2 (x16 link), 2 x Gen3 x8 slots (x8 link)
SA3200D Gen3 x8 slot (x8 link) (per controller)
SA3400 2 x Gen3 x8 slots (x8 link)
SA3400D Gen3 x8 slot (x8 link) (per controller)
SA3410 2 x Gen3 x8 slots (x8 link)
SA3600 2 x Gen3 x8 slots (x8 link)
SA3610 2 x Gen3 x8 slots (x8 link)
SA6400 2 x Gen3 x8 slots (x8 link)
```
|
train_000.parquet/786
|
{
"file_path": "pages/Models-with-PCIe-slots.md",
"repo_id": "007revad/Synology_Information_Wiki",
"size": 2370,
"token_count": 1336
}
|
[Does the eSATA port of Synology products support eSATA disk enclosures with port multipliers?](https://kb.synology.com/en-us/DSM/tutorial/Does_the_eSATA_port_of_Synology_products_support_eSATA_disk_enclosures_with_port_multipliers)
All Synology products do not support eSATA disk enclosures with port multipliers. The installed drives on eSATA disk enclosures with port multipliers may not be recognized by Synology products. If you would like to use external disk enclosures with multiple drives, we recommend you to use Synology Expansion Units. Please see the compatibility list [here](https://www.synology.com/en-us/knowledgebase/DSM/tutorial/Compatibility_List/Which_Synology_DiskStation_RackStation_can_I_use_with_Synology_Expansion_Units) for more information.
<br>
| Model | eSATA Speed | Notes |
|-------|-------------|-------|
| DX517 | 6 Gbps | 600 MB/s |
| RX418 | 6 Gbps | 600 MB/s |
| | |
| DX513 | 3 Gbps | 300 MB/s |
| DX213 | 3 Gbps | 300 MB/s |
| RX415 | 3 Gbps | 300 MB/s |
| | |
| DX510 | 1.5 Gbps | 150 MB/s |
| RX410 | 1.5 Gbps | 150 MB/s |
<br>
[Which Synology DiskStation RackStation can I use with Synology Expansion Units](https://kb.synology.com/en-global/DSM/tutorial/Which_Synology_DiskStation_RackStation_can_I_use_with_Synology_Expansion_Units)
### eSATA Expansion Unit Support
| NAS Model | DX517 | DX513/DX213 | DX510 | RX418 | RX415 | RX410 | Notes |
|-----------|-------|-------------|-------|-------|-------|-------|----------|
| DS1823xs+ | yes | | | | | | |
| DS1821+ | yes | | | | | | |
| DS1819+ | yes | | | | | | |
| DS1817+ | yes | yes | | | | | |
| DS1817 | yes | | | | | | |
| DS1815+ | yes | yes | | | | | See note 1 |
| DS1813+ | | yes | yes | | | | See note 1 |
| DS1812+ | | yes | yes | | | | See note 1 |
| DS1621xs+ | yes | | | | | | |
| DS1621+ | yes | | | | | | |
| DS1618+ | yes | | | | | | |
| DS1522+ | yes | | | | | | |
| DS1520+ | yes | | | | | | |
| DS1517+ | yes | yes | | | | | |
| DS1517 | yes | | | | | | |
| DS1515+ | yes | yes | | | | | See note 1 |
| DS1515 | yes | yes | | | | | |
| DS1513+ | | yes | yes | | | | See note 1 |
| DS1512+ | | yes | yes | | | | See note 1 |
| DS1511+ | | yes | yes | | | | See note 1 |
| DS1019+ | yes | | | | | | |
| DS1010+ | | yes | yes | | | | See note 1 |
| DS923+ | yes | | | | | | |
| DS920+ | yes | | | | | | |
| DS918+ | yes | | | | | | |
| DS916+ | yes | yes | | | | | See note 1 |
| DS723+ | yes | | | | | | |
| DS720+ | yes | | | | | | |
| DS718+ | yes | | | | | | |
| DS716+II | yes | yes | | | | | |
| DS716+ | yes | yes | | | | | |
| DS715 | | yes | | | | | |
| DS713+ | | yes | yes | | | | See note 1 |
| DS712+ | | yes | yes | | | | See note 1 |
| DS710+ | | yes | yes | | | | See note 1 |
| DS415+ | yes| yes | | | | | See note 1 |
| DS413 | | yes | | | | | See note 1 |
| DS412+ | | yes | | | | | See note 1 |
| DS218+ | yes | | | | | | See note 1 |
| DS216+II | yes | yes | | | | | See note 1 |
| DS216+ | yes | yes | | | | | See note 1 |
| DS215+ | | yes | | | | | See note 1 |
| DS214play | | yes | | | | | See note 1 |
| DS214+ | | yes | | | | | See note 1 |
| DS213+ | | yes | | | | | See note 1 |
| DS212+ | | yes | | | | | See note 1 |
| DS115 | | yes | | | | | See note 1 |
| DS114 | | yes | | | | | See note 1 |
| DS112+ | | yes | | | | | See note 1 |
| DS112 | | yes | | | | | See note 1 |
| | | | | | | | |
| RS1221(RP)+ | | | | yes | | | |
| RS1219+ | | | | yes | | | |
| RS822(RP)+ | | | | yes | | | |
| RS820(RP)+ | | | | yes | | | |
| RS819 | | | | yes | | | |
| RS818(RP)+ | | | | yes | yes | | |
| RS816 | | | | yes | yes | | |
| RS815(RP)+ | | | | yes | yes | | |
| RS815 | | | | yes | yes | | |
| RS814(RP)+ | | | | | yes | yes | |
| RS814 | | | | | yes | yes | |
| RS812(RP)+ | | | | | yes | yes | |
| RS812 | | | | | yes | yes | |
| RS810(RP)+ | | | | | | yes | |
| RS217 | | | | yes | yes | | See note 1 |
| RS214 | | | | | yes | | See note 1 |
| | | | | | | | |
| NVR2165 | yes | | | | | | |
| NVR1218 | yes | | | | | | |
| NVR216 | | yes | | | | | |
| | | | | | | | |
| DVA3221 | yes | | | | | | |
| DVA3219 | yes | | | | | | |
### Notes
1. Independent volumes only
<br>
|
train_000.parquet/787
|
{
"file_path": "pages/eSATA-Expansion-Unit-Support.md",
"repo_id": "007revad/Synology_Information_Wiki",
"size": 4123,
"token_count": 1956
}
|
### Maximum number of Surveillance Cameras supported per NAS model
```
5 DS119j
5 DS120j
10 DS216j
10 DS416slim
10 DS419slim
12 DS124
12 DS220j
12 DS223j
14 DS218j
15 DS216play
15 DS218play
16 DS116
16 DS118
16 DS216
16 DS416j
16 DS418j
16 DS420j
16 RS217
16 RS816
20 DS218
20 DS223
25 DS216+
25 DS216+II
25 DS218+
25 DS220+
25 DS224+
25 DS416
25 DS416play
25 DS418play
25 DS420+
25 DS620slim
30 DS418
30 DS423
30 DS1517
30 RS819
32 DVA1622
32 DVA3219
32 DVA3221
40 DS423+
40 DS716+
40 DS716+II
40 DS718+
40 DS720+
40 DS723+
40 DS916+
40 DS918+
40 DS920+
40 DS923+
40 DS1019+
40 DS1517+
40 DS1520+
40 DS1522+
40 DS1618+
40 DS1621+
40 DS1817+
40 DS1819+
40 DS1821+
40 DS2419+
40 DS2419+II
40 DS2422+
40 RS422+
40 RS818+
40 RS818RP+
40 RS820+
40 RS820RP+
40 RS822+
40 RS822RP+
40 RS1219+
40 RS1221+
40 RS1221RP+
40 RS2416+
40 RS2416RP+
40 RS2418+
40 RS2418RP+
40 RS2421+
40 RS2421RP+
40 RS2818RP+
40 RS2821RP+
40 VirtualDSM
50 RS2423+
50 RS2423RP+
55 DS1817
75 DS1621xs+
75 DS3018xs
75 DS3617xs
75 DS3617xsII
75 FS1018
75 RS1619xs+
75 RS3617RPxs
75 RS3617xs
75 RS3618xs
75 RS3621RPxs
90 DS3622xs+
90 RS3617xs+
90 RS3621xs+
90 RS4017xs+
90 RS4021xs+
90 RS18016xs+
90 RS18017xs+
100 FS2017
100 FS2500
100 FS3017
100 FS3400
100 FS3410
100 SA3200D
100 SA3400
100 SA3400D
128 DS1823xs+
128 FS3600
128 SA3410
128 SA3600
128 SA3610
128 SA6400
150 FS6400
150 HD6500
```
|
train_000.parquet/788
|
{
"file_path": "pages/Max-cameras-per-model.md",
"repo_id": "007revad/Synology_Information_Wiki",
"size": 1594,
"token_count": 1153
}
|
Synology NAS models that have /etc.defaults/model.dtb, /etc/model.dtb and /run/model.dtb
Last updated 11 March 2024
### DSM 7.2-64570
| Model | CPU Model | CPU Arch |
|--------------|-------------------------|---------------|
| DS124 | Realtek RTD1619B | rtd1619b |
| DS220+ | Intel Celeron J4025 | Geminilake |
| DS223 | Realtek RTD1619B | rtd1619b |
| DS223j | Realtek RTD1619B | rtd1619b |
| DS224+ | Intel Celeron J4125 | Geminilake |
| DS420+ | Intel Celeron J4025 | Geminilake |
| DS423+ | Intel Celeron J4125 | Geminilake |
| DS423 | Realtek RTD1619B | rtd1619b |
| DS720+ | Intel Celeron J4125 | Geminilake |
| DS723+ | AMD Ryzen R1600 | R1000 |
| DS920+ | Intel Celeron J4125 | Geminilake |
| DS923+ | AMD Ryzen R1600 | R1000 |
| DS1520+ | Intel Celeron J4125 | Geminilake |
| DS1522+ | AMD Ryzen R1600 | R1000 |
| DS1621+ | AMD Ryzen V1500B | V1000 |
| DS1821+ | AMD Ryzen V1500B | V1000 |
| DS1823xs+ | AMD Ryzen V1780B | V1000 |
| DS2422+ | AMD Ryzen V1500B | V1000 |
||||
| RS422+ | AMD Ryzen R1600 | R1000 |
| RS822+ | AMD Ryzen V1500B | V1000 |
| RS822RP+ | AMD Ryzen V1500B | V1000 |
| RS1221+ | AMD Ryzen V1500B | V1000 |
| RS1221RP+ | AMD Ryzen V1500B | V1000 |
| RS2421+ | AMD Ryzen V1500B | V1000 |
| RS2421RP+ | AMD Ryzen V1500B | V1000 |
| RS2423+ | AMD Ryzen V1780B | V1000 |
| RS2423RP+ | AMD Ryzen V1780B | V1000 |
| RS2821RP+ | AMD Ryzen V1500B | V1000 |
||||
| DVA1622 | Intel Celeron J4125 | Geminilake |
||||
| FS2500 | AMD Ryzen V1780B | V1000 |
| FS3410 | Intel Xeon D-1541 | Broadwellnkv2 |
| FS6400 | Intel Xeon D-1567 | Purley |
||||
| HD6500 | Intel Xeon Silver 4210R | Purley |
||||
| SA3410 | Intel Xeon D-1541 | Broadwellnkv2 |
| SA3610 | Intel Xeon D-1567 | Broadwellnkv2 |
| SA6400 | AMD EPYC 7272 | Epyc7002 |
### Flat list
```
DS124
DS220+
DS223
DS223j
DS224+
DS420+
DS423+
DS423
DS720+
DS723+
DS920+
DS923+
DS1520+
DS1522+
DS1621+
DS1821+
DS1823xs+
DS2422+
RS422+
RS822+
RS822RP+
RS1221+
RS1221RP+
RS2421+
RS2421RP+
RS2423+
RS2423RP+
RS2821RP+
DVA1622
FS2500
FS3410
FS6400
HD6500
SA3410
SA3610
SA6400
```
|
train_000.parquet/789
|
{
"file_path": "pages/Models-that-use-DeviceTree.md",
"repo_id": "007revad/Synology_Information_Wiki",
"size": 2708,
"token_count": 1330
}
|
### NVMe drives with Power Loss Protection (PLP) in a Synology NAS
NVMe drives with power loss protection are more common in the 22110 size. But there are some 2280 size data center NVMe drives available:
- Addlink D60 NAS SSD NVMe drives in 480GB, 960GB and 1.92TB https://www.addlink.com.tw/nas-d60
- Kingston DC2000B NVMe drives in 240GB. 480GB and 960GB https://www.kingston.com/en/ssd/DC2000B-data-center-solid-state-drive
- Kingston DC1000B NVMe drives in 240GB and 480GB https://www.kingston.com/en/ssd/dc1000b-data-center-boot-ssd
All Synology NAS with built-in M.2 slots are 2280.
The only M.2 PCIe adaptor cards that can take 22110 M.2 drives are the E10M20-T1 and M20D20.
- **E10M20-T1** specs: https://www.synology.com/en-global/products/E10M20-T1#specs
- **M20D20** specs: https://www.synology.com/en-global/products/M2D20#specs
- M20D18 specs: https://www.synology.com/en-global/products/M2D20#specs
If you have a reliable UPS, and you should, then you don't really need NVMe drives with power loss protection.
|
train_000.parquet/790
|
{
"file_path": "pages/NVMe-Power-Loss-Protection.md",
"repo_id": "007revad/Synology_Information_Wiki",
"size": 1032,
"token_count": 433
}
|
### What type of fan speed modes are available on my Synology NAS?
https://kb.synology.com/en-ca/DSM/tutorial/What_type_of_fan_speed_modes_are_available_on_my_Synology_NAS
<br>
Some models run the fans at full or high speed when a network card is installed. This is configured by a setting in /etc.defaults/synoinfo.conf
For some reason Synology chose to run the fans at full speed for the RS2418RP+ and RS2418+
```
support_fan_adjust_by_ext_nic="full"
RS2418RP+
RS2418+
```
Yet for other models Synology set the fans to run at high speed (Cool Mode).
```
support_fan_adjust_by_ext_nic="high"
RS4021xs+
RS4017xs+
RS3621xs+
RS3621RPxs
RS3618xs
RS3617xs
RS3617xs+
RS3617RPxs
RS18017xs+
RS18016xs+
RS1619xs+
FS6400
FS3600
FS3410
FS3400
FS3017
FS2017
SA3610
SA3600
SA3410
SA3400D
SA3400
SA3200D
HD6500
```
If you own an RS2418RP+ or RS2418+ and want to run the fans in cool mode with a network card installed:
```
sudo synosetkeyvalue /etc.defaults/synoinfo.conf support_fan_adjust_by_ext_nic high
sudo synosetkeyvalue /etc/synoinfo.conf support_fan_adjust_by_ext_nic high
```
So you don't have to do that after every DSM update you can set a scheduled task:
1. Go to **Control Panel** > **Task Scheduler** > click **Create** > and select **Triggered Task**.
2. Select **User-defined script**.
3. Enter a task name.
4. Select **root** as the user (The command needs to run as root).
5. Select **Boot-up** as the event that triggers the task.
6. Leave **Enable** ticked.
7. Click **Task Settings**.
8. Optionally you can tick **Send run details by email** and **Send run details only when the script terminates abnormally** then enter your email address.
9. In the box under **User-defined script** enter the following 2 lines.
```
/usr/syno/bin/synosetkeyvalue /etc.defaults/synoinfo.conf support_fan_adjust_by_ext_nic high
/usr/syno/bin/synosetkeyvalue /etc/synoinfo.conf support_fan_adjust_by_ext_nic high
```
11. Click **OK** to save the settings.
|
train_000.parquet/791
|
{
"file_path": "pages/FAN-Speed-Modes.md",
"repo_id": "007revad/Synology_Information_Wiki",
"size": 1976,
"token_count": 790
}
|
https://www.reddit.com/r/synology/comments/186s6h8/comment/kbaue3c/
### Geminilake: DS1520+, DS920+ and DS720+
| File | RX418 | DX517 | RX415 | DX513 | DX213 | Comment |
|-------------------|-------|-------|-------|-------|-------|------------|
| model.dtb | no | yes | no | no | no | see Note 1 |
| synoinfo.conf | yes | yes | no | no | no | see Note 2 |
| scemd | yes | yes | no | no | no | OK see Note 3 |
| scemd.xml | yes | yes | yes | yes | yes | OK |
| libhwcontrol.so.1 | yes | yes | yes | yes | yes | OK |
| diskaction.xml | no | no | no | yes | yes | OK see Note 4 |
| drive db file | yes | yes | yes | yes | yes | OK |
**Notes:**
1. Use [Synology enable eunit](https://github.com/007revad/Synology_enable_eunit)
2. synoinfo.conf only relevent for extended warranty (support_ew_20_eunit)
3. Works without editing scemd.
4. All NAS models have the same diskaction.xml
5. All Synology NAS models have the required drive database files.
<br>
**File locations:**
```
/etc.defaults/model.dtb
/etc.defaults/synoinfo.conf
/usr/syno/bin/scemd
/usr/syno/etc.defaults/scemd.xml
/usr/lib/libhwcontrol.so.1
/var.defaults/lib/diskaction/diskaction.xml
```
<br>
|
train_000.parquet/792
|
{
"file_path": "pages/Expansion-Unit-support-in-DSM-7.2.1.md",
"repo_id": "007revad/Synology_Information_Wiki",
"size": 1327,
"token_count": 529
}
|
https://kb.synology.com/en-global/DSM/tutorial/Which_Synology_NAS_models_support_SSD_cache
## Which Synology NAS models support SSD cache?
Last updated: Jul 27, 2023
<br> </br>
### 2.5" SSDs installed in drive trays
Type | Protocol | Series | Models
-- | -- | -- | --
2.5" | SAS / SATA | FS-series | FS6400, FS3600, FS3400, FS3017, FS2017
2.5" | SAS / SATA | SA-series | SA3610, SA3600, SA3410, SA3400
2.5" | SAS / SATA | 17-series | RS18017xs+
2.5" | SAS / SATA | 16-series | RS18016xs+
2.5" | SAS / SATA | 13-series | RS10613xs+
|||
2.5" | SAS only | SA-series | SA3400D, SA3200D
2.5" | SAS only | 15-series | RC18015xs+
|||
2.5" | SATA only | FS-series | FS3410, FS2500, FS1018
2.5" | SATA only | HD-series | HD65001,2
2.5" | SATA only | SA-series | SA6400
2.5" | SATA only | 23-series | RS2423RP+, RS2423+, DS1823xs+, DS923+, DS723+, DS423+
2.5" | SATA only | 22-series | RS822RP+, RS822+, RS422+, DS3622xs+, DS2422+, DS1522+
2.5" | SATA only | 21-series | RS4021xs+, RS3621xs+, RS3621RPxs, RS2821RP+, RS2421RP+, RS2421+, RS1221RP+, RS1221+
2.5" | SATA only | 21-series | DS1821+, DS1621xs+, DS1621+, DVA3221
2.5" | SATA only | 20-series | RS820RP+, RS820+, DS1520+, DS920+, DS720+, DS420+, DS620slim
2.5" | SATA only | 19-series | RS1619xs+, RS1219+, DS2419+II, DS2419+, DS1819+, DS1019+, DVA3219
2.5" | SATA only | 18-series | RS3618xs, RS2818RP+, RS2418RP+, RS2418+, RS818RP+, RS818+
2.5" | SATA only | 18-series | DS3018xs, DS1618+, DS918+, DS718+
2.5" | SATA only | 17-series | RS4017xs+, RS3617xs+, RS3617RPxs, RS3617xs
2.5" | SATA only | 17-series | DS3617xsII, DS3617xs, DS1817+, DS1517+, DS1817, DS1517
2.5" | SATA only | 16-series | RS2416RP+, RS2416+, DS916+, DS716+II, DS716+
2.5" | SATA only | 15-series | RS815RP+, RS815+
2.5" | SATA only | 15-series | DS3615xs, DS2015xs, DS2415+, DS1815+, DS1515+, DS415+, DS1515, DS715
2.5" | SATA only | 14-series | RS3614xs+, RS3614RPxs, RS3614xs, RS2414RP+, RS2414+, RS814RP+, RS814+
2.5" | SATA only | 13-series | RS3413xs+, DS2413+, DS1813+, DS1513+, DS713+
2.5" | SATA only | 12-series | RS3412RPxs, RS3412xs, RS2212RP+, RS2212+, RS812RP+, RS812+
2.5" | SATA only | 12-series | DS3612xs, DS1812+, DS1512+, DS412+
2.5" | SATA only | 11-series | RS3411RPxs, RS3411xs, DS3611xs
<br> </br>
### M.2 SSDs installed in built-in M.2 SSD slots
Type | Protocol | Series | Models
-- | -- | -- | --
M.2 2280 | NVMe | 23-series | DS1823xs+, DS923+, DS723+, DS423+
M.2 2280 | NVMe | 22-series | DS1522+
M.2 2280 | NVMe | 21-series | DS1821+, DS1621xs+, DS1621+
M.2 2280 | NVMe | 20-series | DS1520+, DS920+, DS720+, DS420+
M.2 2280 | NVMe | 19-series | DS1019+
M.2 2280 | NVMe | 18-series | DS918+
|||
M.2 2280 | NVMe / SATA | 19-series | RS1619xs+
<br> </br>
### M.2 SSDs installed using an optional M.2 SSD adapter card
[E10M20-T1](https://www.synology.com/en-global/compatibility?search_by=category&category=m2_ssd_e10m20&p=1)
[M2D20](https://www.synology.com/en-global/compatibility?search_by=category&category=m2_ssd_m2d20&p=1)
[M2D18](https://www.synology.com/en-global/compatibility?search_by=category&category=m2_ssd_m2d18&p=1)
[M2D17](https://www.synology.com/en-global/compatibility?search_by=category&category=m2_ssd_m2d17&p=1)
M.2 SSD Adapter | Type | Protocol | Series | Models
-- | -- | -- | -- | --
E10M20-T1 | M.2 2280 | NVMe | 23-series | RS2423RP+, RS2423+
E10M20-T1 | M.2 2280 | NVMe | 22-series | RS822RP+, RS822+, DS2422+
E10M20-T1 | M.2 2280 | NVMe | 21-series | RS2821RP+, RS2421RP+, RS2421+, RS1221(RP)+
E10M20-T1 | M.2 2280 | NVMe | 20-series | RS820(RP)+
E10M20-T1 | M.2 2280 | NVMe | 19-series | DS2419+II, DS2419+, DS1819+
E10M20-T1 | M.2 2280 | NVMe | 18-series | RS2818RP+, DS1618+
||||
E10M20-T1 | M.2 22110 | NVMe | SA-series | SA6400, SA3610, SA3600, SA3410, SA3400
E10M20-T1 | M.2 22110 | NVMe | 23-series | RS2423RP+, RS2423+
E10M20-T1 | M.2 22110 | NVMe | 22-series | RS822RP+, RS822+, DS3622xs+, DS2422+
E10M20-T1 | M.2 22110 | NVMe | 21-series | RS4021xs+, RS3621xs+, RS3621RPxs, RS2821RP+, RS2421RP+, RS2421+, RS1221RP+, RS1221+
E10M20-T1 | M.2 22110 | NVMe | 20-series | RS820(RP)+
E10M20-T1 | M.2 22110 | NVMe | 19-series | DS2419+II, DS2419+, DS1819+
E10M20-T1 | M.2 22110 | NVMe | 18-series | RS3618xs, RS2818RP+, DS3018xs, DS1618+
E10M20-T1 | M.2 22110 | NVMe | 17-series | RS18017xs+, RS4017xs+, RS3617xs+, RS3617RPxs, DS3617xs, DS3617xsII
||||
M2D20 | M.2 2280 | NVMe | 23-series | RS2423RP+, RS2423+
M2D20 | M.2 2280 | NVMe | 22-series | RS822RP+, RS822+, DS2422+
M2D20 | M.2 2280 | NVMe | 21-series | RS2821RP+, RS2421RP+, RS2421+, RS1221RP+, RS1221+
M2D20 | M.2 2280 | NVMe | 20-series | RS820(RP)+
M2D20 | M.2 2280 | NVMe | 19-series | DS2419+II, DS2419+, DS1819+
M2D20 | M.2 2280 | NVMe | 18-series | RS2818RP+, RS2418(RP)+, DS1618+
M2D20 | M.2 2280 | NVMe | 17-series | RS18017xs+, RS4017xs+, RS3617xs+, RS3617RPxs, DS3617xs, DS3617xsII
||||
M2D20 | M.2 22110 | NVMe | SA-series | SA6400, SA3610, SA3600, SA3410, SA3400
M2D20 | M.2 22110 | NVMe | 23-series | RS2423RP+, RS2423+
M2D20 | M.2 22110 | NVMe | 22-series | RS822RP+, RS822+, DS3622xs+, DS2422+
M2D20 | M.2 22110 | NVMe | 21-series | RS4021xs+, RS3621xs+, RS3621RPxs, RS2821RP+, RS2421RP+, RS2421+, RS1221RP+, RS1221+
M2D20 | M.2 22110 | NVMe | 20-series | RS820(RP)+
M2D20 | M.2 22110 | NVMe | 19-series | DS2419+II, DS2419+, DS1819+
M2D20 | M.2 22110 | NVMe | 18-series | RS3618xs, RS2818RP+, RS2418(RP)+, DS3018xs, DS1618+
M2D20 | M.2 22110 | NVMe | 17-series | RS18017xs+, RS4017xs+, RS3617xs+, RS3617RPxs, DS3617xs, DS3617xsII
||||
M2D18 | M.2 2242/2260/2280 | SATA | FS-series | FS2017
M2D18 | M.2 2242/2260/2280 | SATA | 19-series | RS1219+
M2D18 | M.2 2242/2260/2280 | SATA | 18-series | RS3618xs, RS818RP+, RS818+
M2D18 | M.2 2242/2260/2280 | SATA | 17-series | RS18017xs+, RS4017xs+, RS3617xs+, RS3617RPxs
M2D18 | M.2 2242/2260/2280 | SATA | 17-series | DS3617xs, DS3617xsII, DS1817+, DS1517+
||||
M2D18 | M.2 2242/2260/2280 | NVMe/SATA | FS-series | FS1018
M2D18 | M.2 2242/2260/2280 | NVMe/SATA | 20-series | RS820RP+, RS820+
M2D18 | M.2 2242/2260/2280 | NVMe/SATA | 19-series | DS2419+II, DS2419+, DS1819+
M2D18 | M.2 2242/2260/2280 | NVMe/SATA | 18-series | RS2818RP+, RS2418RP+, RS2418+, DS3018xs, DS1618+
||||
M2D17 | M.2 2242/2260/2280 | SATA | FS-series | FS1018
M2D17 | M.2 2242/2260/2280 | SATA | 18-series | RS2818RP+, RS2418RP+, RS2418+, DS3018xs, DS1618+
M2D17 | M.2 2242/2260/2280 | SATA | 17-series | DS1817+, DS1517+
|
train_000.parquet/793
|
{
"file_path": "pages/Models-that-support-SSD-Cache.md",
"repo_id": "007revad/Synology_Information_Wiki",
"size": 6439,
"token_count": 3965
}
|
From [Synology's Software_Life_Cycle_Policy_enu.pdf](https://global.download.synology.com/download/Document/Software/WhitePaper/Os/DSM/All/enu/Software_Life_Cycle_Policy_enu.pdf) -
Last updated: Jul 2, 2024
Or see https://kb.synology.com/en-global/WP/Software_Life_Cycle_Policy/2
### DiskStation Manager (DSM)
DSM follows the MAJOR.MINOR.MICRO-BUILD-NANO versioning rules:
- MAJOR version is for incompatible system behavior or API changes
- MINOR version is for new functionality in a backward-compatible manner
- MICRO version is for incremental security or bug fix updates
- BUILD is an additional engineering identification of the release
- NANO version is for a specific security or bug fixes with backward compatibility
Each minor version of DSM, such as DSM 6.2, is identified as a different product with a different
number of life-cycle phases. Some of them will have an extended life phase and are identified as
long-term support. Security fixes, bug fixes, software enhancements, or hardware enablements
may be contained in each phase.
Software changes to DSM will be delivered via individual nano updates as minimum changes, such
as DSM 6.2.2-24922-4, or be aggregated as an incremental release, such as DSM 6.2-23739 or
6.2.2-24922.
The following table lists the differences between each release version:
| | Major Release | Minor Release | Micro Release | Nano Release |
|--|--|--|--|--|
| Examples (Naming) | DSM 6.0-7321 | DSM 6.2-23739 | DSM 6.2.2-24922 | DSM 6.2.2-24922-4 |
| Release: Frequency | Years | Years | Quarters | Months |
| Release: Basis | Schedule | Schedule | Schedule | Incident |
| Includes: Features | Yes | Yes¹ | Yes¹ | No |
| Includes: Criteria | Liberal | Strict¹ | Strict¹ | Very Strict |
| System ABI Guaranteed | No | No | Yes | Yes |
1. Depends on the life-cycle phase.
|
train_000.parquet/794
|
{
"file_path": "pages/DSM-version-types.md",
"repo_id": "007revad/Synology_Information_Wiki",
"size": 1824,
"token_count": 584
}
|
### Synology models that officially support data deduplication
https://kb.synology.com/en-global/DSM/tutorial/Which_models_support_data_deduplication
**Which Synology NAS models support data deduplication?**
- FS6400, FS3600, FS3410, FS3400, FS2500
- HD6500
- SA6400, SA3610, SA3600, SA3410, SA3400
- RS4021xs+, RS3621xs+, RS3621RPxs
**Requirements:**
- Data deduplication is only supported on Synology SSDs and Btrfs volumes. You need to create a storage pool consisting entirely of Synology SSDs and then create at least one Btrfs volume.
- Data deduplication can only run when the volume status is Healthy.
- Data deduplication requires you to Enable usage detail analysis for the Btrfs volume.
**Notes:**
- RS3621xs+/RS3621RPxs and FS2500 need at least 16 GB of memory to enable data deduplication.
<br>
**Configure Data Deduplication:**
https://kb.synology.com/en-global/DSM/help/DSM/StorageManager/volume_btrfs_dedup?version=7
<br>
**Configure Snapshot Replication and Data Deduplication:**
https://kb.synology.com/en-global/DSM/tutorial/Configure_snapshot_replication_and_data_deduplication
<br>
***
### Undocumented models that support data deduplication
DiskStation models that support Tiny Btrfs Data Deduplication in DSM 7.2.1
- DS1522+, DS1621+, DS1621xs+, DS1821+, DS1823xs+, DS423+, DS723+ and DS923+.
These models have "tiny btrfs data deduplication" enabled and only need 4GB of memory or more.
In my test on a DS720+ with only 2GB of memory I got a message saying at 4GB of system memory was needed.
https://www.reddit.com/r/synology/comments/18oyu21/data_deduplication_only_needs_4gb_of_memory/
<br>
|
train_000.parquet/795
|
{
"file_path": "pages/Models-that-support-Deduplication.md",
"repo_id": "007revad/Synology_Information_Wiki",
"size": 1638,
"token_count": 609
}
|
https://kb.synology.com/en-global/DSM/tutorial/Why_does_my_Synology_NAS_have_a_single_volume_size_limitation
https://kb.synology.com/en-global/DSM/tutorial/What_is_Btrfs_Peta_Volume
- 200TB volumes require 32GB or more of memory.
- Btrfs Peta volumes require 64GB ore more of memory.
| NAS requirements | 108TB volume | 200TB volume | Peta volume | Comment |
| -----------------------|--------------|--------------|-------------|---------|
| Required memory | | 32GB + | 64GB + | |
| Required file system | | Btrfs | Btrfs | |
| Required RAID type | | RAID 5 or 6 | RAID 6 | See Notes |
**Notes (by 007revad)**
1. 200TB volumes work in SHR if the NAS supports SHR (like a DS1821+ with 32GB or more memory).
2. Peta volumes may work in SHR2 if the NAS supports SHR.
<br>
**Models that officially support 200TB volumes**
- RS2423+, RS2423RP+
- All xs RS and DS models
- All FS models
- All HD models
- All SA models
<br>
There are 2 models that support 200TB volumes and SHR, that have no supportraidgroup
1. RS2423+
2. RS2423RP+
| Synoinfo setting | 108TB volume | 200TB volume | Peta volume | Model |
| -----------------------|--------------|--------------|-------------|-----------|
| supportraidgroup | | "yes | "yes" | |
| supportraidgroup | | | | RS2423+ |
| supportraidgroup | | | | RS2423RP+ |
<br>
### Models that support 200TB volumes even though Synology says they don't
| Model | Memory Needed | File System | RAID Type |
| ------------|---------------|-------------|----------------|
| DS1522+ | 32GB or more | Btrfs | |
| DS1621+ | 32GB or more | Btrfs | |
| DS1821+ | 32GB or more | Btrfs | |
<br>
|
train_000.parquet/796
|
{
"file_path": "pages/Models-that-support-200TB-Volumes.md",
"repo_id": "007revad/Synology_Information_Wiki",
"size": 1920,
"token_count": 681
}
|
**Which Synology server models have limited or no SHR (Synology Hyrbid RAID) support?**
https://kb.synology.com/en-global/DSM/tutorial/Which_models_have_limited_support_for_Synology_Hybrid_RAID_SHR
*Synology stopped updating that page in Oct 2022*
<br>
**Which Synology server models fully support SHR (Synology Hyrbid RAID)?**
Models with SHR that have support_syno_hybrid_raid="yes" in synoinfo.conf in DSM 7.2.1
<br>
**DS models**
- DS216+
DS216+II
DS216
DS216j
DS216play
DS218+
DS218
DS218j
DS218play
DS220+
DS220j
DS223
DS223j
DS224+
- DS416
DS416j
DS416play
DS416slim
DS418
DS418j
DS418play
DS419slim
DS420+
DS420j
DS423+
DS423
- DS620slim
- DS716+
DS716+II
DS718+
DS720+
DS723+
- DS916+
DS918+
DS920+
DS923+
- DS1019+
- DS1517+
DS1517
DS1520+
DS1522+
- DS1618+
DS1621+
- DS1817+
DS1817
DS1819+
DS1821+
- DS2419+
DS2419+II
DS2422+
<br>
**DVA models**
- DVA1622
DVA3221
DVA3219
<br>
**RS models**
- RS422+
- RS816
RS818+
RS818RP+
RS819
RS820+
RS820RP+
RS822+
RS822RP+
- RS1219+
RS1221+
RS1221RP+
RS217
- RS2416+
RS2416RP+
RS2418+
RS2418RP+
RS2421+
RS2421RP+
RS2423+
RS2423RP+
- RS2818RP+
RS2821RP+
|
train_000.parquet/797
|
{
"file_path": "pages/Models-that-support-SHR.md",
"repo_id": "007revad/Synology_Information_Wiki",
"size": 1130,
"token_count": 712
}
|
### Synology HDD and SSD manufacturers
| Drive Series | Type | Drive Model | Manufacturer | Based on | |
|--------------|----------------|-------------|--------------|--------------|--------------|
| Plus | SATA 3.5" HDD | HAT3310 | Toshiba | MG08 | 8, 12 and 16TB |
| Plus | SATA 3.5" HDD | HAT3300 | Seagate | Ironwolf | 2, 4 and 6TB |
| Enterprise | SATA 3.5" HDD | HAT5310 | Seagate? Toshiba? | Ironwolf Pro? MG09? |
| Enterprise | SATA 3.5" HDD | HAT5300 | Toshiba | MG08 | Discontinued? |
| | | | | |
| Enterprise | SAS 3.5" HDD | HAS5300 | Toshiba | MG08 |
| | | | | |
| Enterprise | SATA 2.5" SSD | SAT5220 | Toshiba? | ??? |
| Enterprise | SATA 2.5" SSD | SAT5210 | Toshiba? | ??? |
| Enterprise | SATA 2.5" SSD | SAT5200 | Toshiba? | ??? | Discontinued? |
| | | | | |
| Enterprise | M.2 2280 NVMe | SNV3410 | Seagate? | ??? |
| Enterprise | M.2 2280 NVMe | SNV3400 | Seagate? | ??? | Discontinued? |
| | | | | |
| Enterprise | M.2 22110 NVMe | SNV3510 | ??? | ??? |
| Enterprise | M.2 22110 NVMe | SNV3500 | ??? | ??? | Discontinued? |
<br>
### Synology HDD compatibility policy
[SpaceRex video on DSM 7.1](https://www.youtube.com/watch?v=NoC3BA3kMo0)
https://www.blackvoid.club/synology-hdd-compatibility-policy-explained/ (old info from DSM 7.0)
<br>
|
train_000.parquet/798
|
{
"file_path": "pages/Synology-HDDs-and-SSDs.md",
"repo_id": "007revad/Synology_Information_Wiki",
"size": 1440,
"token_count": 610
}
|
Officially no Synology NAS supports using M.2 drives in a PCIe card as a volume and they can only be used a cache.
Unofficially you can use either:
- https://github.com/007revad/Synology_HD_db for newer NAS models
- Or https://github.com/007revad/Synology_M2_volume for all NAS models
***
### E10M20-T1
https://www.synology.com/en-global/products/E10M20-T1#specs
```
NVMe SSD
SA series: SA6400, SA3610, SA3600, SA3410, SA3400
25 series: RS2825RP+
23 series: RS2423RP+, RS2423+
22 series: RS822RP+, RS822+, DS3622xs+, DS2422+
21 series: RS4021xs+, RS3621xs+, RS3621RPxs, RS2821RP+, RS2421RP+, RS2421+, RS1221RP+, RS1221+
20 series: RS820RP+, RS820+
19 series: DS2419+, DS2419+II, DS1819+
18 series: RS3618xs, RS2818RP+, DS3018xs, DS1618+
17 series: RS18017xs+, RS4017xs+, RS3617xs+, RS3617RPxs, DS3617xs, DS3617xsII
```
**Notes**
- DSM version requirement: 6.2.3-25426 or later version
- DSM version requirement for RS18017xs+, RS4017xs+, RS3618xs, RS3617xs+, RS3617RPxs, DS3617xs and DS3617xsII: 7.0.1 or later version
***
### M2D20
https://www.synology.com/en-global/products/M2D20#specs
```
NVMe SSD
SA series: SA6400, SA3610, SA3600, SA3410, SA3400
25 series: RS2825RP+
23 series: RS2423RP+, RS2423+
22 series: RS822RP+, RS822+, DS3622xs+, DS2422+
21 series: RS4021xs+, RS3621xs+, RS3621RPxs, RS2821RP+, RS2421RP+, RS2421+, RS1221RP+, RS1221+
20 series: RS820RP+, RS820+
19 series: DS2419+, DS2419+II, DS1819+
18 series: RS3618xs, RS2818RP+, RS2418RP+, RS2418+, DS3018xs, DS1618+
17 series: RS18017xs+, RS4017xs+, RS3617xs+, RS3617RPxs, DS3617xs, DS3617xsII
```
***
### M2D18
https://www.synology.com/en-global/products/M2D18#specs
```
NVMe & SATA SSD
FS series: FS1018
22 series: RS822RP+, RS822+
21 series: RS1221RP+, RS1221+
20 series: RS820RP+, RS820+
19 series: DS2419+, DS2419+II, DS1819+
18 series: RS2818RP+, RS2418RP+, RS2418+, DS3018xs, DS1618+
```
```
SATA SSD
FS series: FS2017
19 series: RS1219+
18 series: RS3618xs, RS818RP+, RS818+
17 series: RS18017xs+, RS4017xs+, RS3617xs+, RS3617RPxs, DS3617xs, DS3617xsII, DS1817+, DS1517+
```
**Notes**
- DSM version requirement: 6.2-23739-2 onward (or 6.1-15284-2 onward with DSM 6.1)
- Operating system requirement for RS1221RP+, RS1221+, RS822RP+, and RS822+: DSM 7.2-64551 or later.
- RS1221RP+, RS1221+, RS822RP+, and RS822+ support M.2 NVMe SSD with the M2D18 add-in card.
|
train_000.parquet/799
|
{
"file_path": "pages/Models-that-support-PCIe-M.2-cards.md",
"repo_id": "007revad/Synology_Information_Wiki",
"size": 2410,
"token_count": 1317
}
|