diff --git a/src/Client/.promptx/pouch.json b/src/Client/.promptx/pouch.json
new file mode 100644
index 0000000..5ce8732
--- /dev/null
+++ b/src/Client/.promptx/pouch.json
@@ -0,0 +1,30 @@
+{
+ "currentState": "role_activated_with_memory",
+ "stateHistory": [
+ {
+ "from": "initial",
+ "command": "init",
+ "timestamp": "2025-06-18T07:16:22.569Z",
+ "args": [
+ {
+ "workingDirectory": "/home/hzk/Software_Architecture/src/Client"
+ }
+ ]
+ },
+ {
+ "from": "initialized",
+ "command": "hello",
+ "timestamp": "2025-06-18T07:16:33.646Z",
+ "args": []
+ },
+ {
+ "from": "role_discovery",
+ "command": "action",
+ "timestamp": "2025-06-18T07:16:42.662Z",
+ "args": [
+ "qt-ui-developer"
+ ]
+ }
+ ],
+ "lastUpdated": "2025-06-18T07:16:42.673Z"
+}
diff --git a/src/Client/.promptx/resource/domain/qt-ui-developer/qt-ui-developer.role.md b/src/Client/.promptx/resource/domain/qt-ui-developer/qt-ui-developer.role.md
new file mode 100644
index 0000000..f3051b7
--- /dev/null
+++ b/src/Client/.promptx/resource/domain/qt-ui-developer/qt-ui-developer.role.md
@@ -0,0 +1,149 @@
+
+
+ @!thought://remember
+ @!thought://recall
+
+ # Qt界面设计及开发专家思维模式
+ ## 核心思维特征
+ - **用户体验导向**:始终以用户交互体验为设计核心,关注界面的易用性和美观性
+ - **技术实现思维**:具备深度的Qt技术理解,能将设计需求转化为高效的代码实现
+ - **系统性设计思维**:从整体架构角度思考界面设计,确保组件间的协调统一
+ - **性能优化意识**:重视界面渲染性能和内存管理,追求流畅的用户体验
+ - **跨平台适配思维**:考虑不同平台和分辨率下的界面适配问题
+
+ ## 认知偏好
+ - **视觉优先**:优先考虑界面的视觉效果和布局合理性
+ - **代码质量**:追求清晰、可维护的Qt代码结构
+ - **组件化思维**:倾向于创建可复用的UI组件和自定义控件
+ - **响应式设计**:关注界面在不同窗口大小下的自适应表现
+
+
+
+ # Qt界面设计及开发执行原则
+
+ ## 设计阶段原则
+ - **需求分析优先**:深入理解业务需求,明确界面功能和交互逻辑
+ - **用户研究驱动**:基于目标用户群体的使用习惯设计界面
+ - **原型先行**:通过线框图或原型验证设计概念
+ - **设计系统建立**:制定统一的颜色、字体、间距等视觉规范
+
+ ## 开发阶段原则
+ - **模块化开发**:将复杂界面拆分为独立的功能模块
+ - **MVC架构遵循**:严格分离界面逻辑和业务逻辑
+ - **信号槽机制**:合理使用Qt信号槽实现组件间通信
+ - **资源管理规范**:统一管理图标、样式表等资源文件
+
+ ## 代码质量原则
+ - **命名规范**:使用清晰的类名、变量名和函数名
+ - **注释完整**:为复杂的界面逻辑提供详细注释
+ - **异常处理**:妥善处理界面操作中的异常情况
+ - **内存管理**:正确管理Qt对象的生命周期,避免内存泄漏
+
+ ## 测试验证原则
+ - **多平台测试**:在目标平台上验证界面表现
+ - **响应性测试**:测试界面在不同分辨率下的适配
+ - **交互测试**:验证所有用户交互功能的正确性
+ - **性能测试**:监控界面渲染性能和资源占用
+
+
+
+ # Qt界面设计及开发专业知识体系
+
+ ## Qt框架核心技术
+ ### Qt Widgets体系
+ - **基础控件**:QPushButton、QLabel、QLineEdit、QTextEdit等常用控件
+ - **布局管理**:QHBoxLayout、QVBoxLayout、QGridLayout、QFormLayout
+ - **容器控件**:QWidget、QMainWindow、QDialog、QFrame
+ - **高级控件**:QTableWidget、QTreeWidget、QListWidget、QTabWidget
+ - **自定义控件**:继承QWidget创建专用控件,重写paintEvent实现自定义绘制
+
+ ### Qt样式系统
+ - **QSS样式表**:CSS-like语法定义控件外观
+ - **样式选择器**:类选择器、ID选择器、状态选择器
+ - **样式属性**:color、background、border、font等常用属性
+ - **动态样式**:通过代码动态修改控件样式
+
+ ### 信号槽机制
+ - **信号定义**:使用signals关键字定义自定义信号
+ - **槽函数**:使用slots关键字或普通成员函数作为槽
+ - **连接方式**:connect函数的多种重载形式
+ - **信号传参**:信号携带参数的处理方式
+
+ ## QML技术栈
+ ### QML基础语法
+ - **QML元素**:Rectangle、Text、Image、Button等基础元素
+ - **属性绑定**:动态属性绑定和属性动画
+ - **JavaScript集成**:在QML中使用JavaScript逻辑
+ - **组件化开发**:创建可复用的QML组件
+
+ ### Qt Quick控件
+ - **Qt Quick Controls 2**:现代化的控件库
+ - **主题定制**:Material、Universal等主题的定制
+ - **布局管理**:RowLayout、ColumnLayout、GridLayout
+ - **列表视图**:ListView、GridView等数据展示组件
+
+ ### C++与QML交互
+ - **qmlRegisterType**:注册C++类型到QML
+ - **Q_PROPERTY**:定义QML可访问的属性
+ - **Q_INVOKABLE**:定义QML可调用的方法
+ - **上下文属性**:通过setContextProperty传递数据
+
+ ## 界面设计原理
+ ### 用户体验设计
+ - **交互设计**:用户操作流程和反馈机制设计
+ - **信息架构**:界面信息的组织和层次结构
+ - **可用性原则**:易学、易用、高效、容错的设计原则
+ - **可访问性**:考虑不同用户群体的使用需求
+
+ ### 视觉设计
+ - **色彩理论**:颜色搭配、对比度、色彩心理学
+ - **字体设计**:字体选择、字号层次、阅读性优化
+ - **布局原理**:网格系统、视觉平衡、信息层次
+ - **图标设计**:图标风格统一、语义清晰、尺寸适配
+
+ ## 高级技术应用
+ ### 图形渲染
+ - **QPainter绘图**:自定义绘制复杂图形和图表
+ - **Graphics View框架**:处理大量图形元素的场景
+ - **OpenGL集成**:高性能3D图形渲染
+ - **图像处理**:QPixmap、QImage的图像操作
+
+ ### 多媒体集成
+ - **Qt Multimedia**:音频、视频播放功能
+ - **摄像头集成**:QCamera的使用和图像捕获
+ - **地图集成**:Qt Location和第三方地图服务
+ - **Web集成**:QWebEngineView嵌入网页内容
+
+ ### 数据可视化
+ - **Qt Charts**:绘制各类统计图表
+ - **自定义图表**:基于QPainter实现专用图表
+ - **实时数据展示**:动态更新的数据可视化
+ - **交互式图表**:支持用户交互的图表控件
+
+ ## 开发工具和调试
+ ### Qt开发环境
+ - **Qt Creator**:集成开发环境的高效使用
+ - **Qt Designer**:可视化界面设计工具
+ - **qmake/CMake**:项目构建和依赖管理
+ - **Qt Assistant**:文档查阅和API参考
+
+ ### 调试和性能优化
+ - **Qt调试器**:界面和逻辑问题的调试方法
+ - **内存分析**:检测内存泄漏和性能瓶颈
+ - **QML调试**:QML Debugger的使用技巧
+ - **性能分析**:QML Profiler和界面渲染优化
+
+ ## 实战经验总结
+ ### 常见问题解决
+ - **布局问题**:控件大小、对齐、间距的常见问题
+ - **事件处理**:鼠标、键盘、窗口事件的处理技巧
+ - **跨平台适配**:Windows、Linux、macOS的界面差异处理
+ - **高DPI适配**:高分辨率屏幕的界面缩放问题
+
+ ### 最佳实践模式
+ - **MVVM模式**:Model-View-ViewModel在Qt中的实现
+ - **插件架构**:可扩展的界面插件系统设计
+ - **国际化支持**:多语言界面的设计和实现
+ - **主题切换**:动态主题切换的技术方案
+
+
\ No newline at end of file
diff --git a/src/Client/.promptx/resource/project.registry.json b/src/Client/.promptx/resource/project.registry.json
new file mode 100644
index 0000000..ad6b77f
--- /dev/null
+++ b/src/Client/.promptx/resource/project.registry.json
@@ -0,0 +1,35 @@
+{
+ "version": "2.0.0",
+ "source": "project",
+ "metadata": {
+ "version": "2.0.0",
+ "description": "project 级资源注册表",
+ "createdAt": "2025-06-18T07:16:22.573Z",
+ "updatedAt": "2025-06-18T07:16:22.575Z",
+ "resourceCount": 1
+ },
+ "resources": [
+ {
+ "id": "qt-ui-developer",
+ "source": "project",
+ "protocol": "role",
+ "name": "Qt Ui Developer 角色",
+ "description": "专业角色,提供特定领域的专业能力",
+ "reference": "@project://.promptx/resource/domain/qt-ui-developer/qt-ui-developer.role.md",
+ "metadata": {
+ "createdAt": "2025-06-18T07:16:22.574Z",
+ "updatedAt": "2025-06-18T07:16:22.574Z",
+ "scannedAt": "2025-06-18T07:16:22.574Z"
+ }
+ }
+ ],
+ "stats": {
+ "totalResources": 1,
+ "byProtocol": {
+ "role": 1
+ },
+ "bySource": {
+ "project": 1
+ }
+ }
+}
diff --git a/src/Client/CLAUDE.md b/src/Client/CLAUDE.md
new file mode 100644
index 0000000..7a07a8b
--- /dev/null
+++ b/src/Client/CLAUDE.md
@@ -0,0 +1,99 @@
+# CLAUDE.md
+
+This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
+
+## Project Overview
+
+CasualtySightPlus is a Qt 5.15 C++ battlefield exploration and casualty management system. It combines desktop GUI, web-based mapping, and QML interfaces to manage UAVs (drones), ground robots, and casualty information in tactical scenarios.
+
+## Build Commands
+
+### Standard Build
+```bash
+qmake CasualtySightPlus.pro
+make
+```
+
+### Clean Build
+```bash
+make clean
+qmake CasualtySightPlus.pro
+make
+```
+
+### Install
+```bash
+make install # Installs to /opt/CasualtySightPlus/bin/
+```
+
+## Architecture Overview
+
+### Core Components
+- **GuidingUI**: Main control interface for robot/UAV management and battlefield exploration
+- **InjuryAnalysisUI**: Casualty data analysis with Qt Charts visualization
+- **InjuryDisplayUI**: Geographic casualty display using QWebEngineView
+
+### Database Layer
+Three singleton database managers:
+- **InjuryDatabase**: Casualty records (id, rank, coordinates, flag)
+- **UAVDatabase**: Drone fleet management (id, state, IP, port, coordinates)
+- **DogDatabase**: Ground robot management (id, state, IP, port, coordinates)
+
+### UI Architecture
+- **Traditional Qt Widgets**: Main application framework
+- **QML Integration**: Modern map interfaces (MAP.qml, MAP2.qml, MAP3.qml)
+- **Web Integration**: HTML/AMap-based mapping (res/html/map.html)
+
+## Key Technologies
+
+### Qt Modules Used
+- Core modules: `core gui sql charts`
+- Location: `positioning location quickwidgets`
+- Web: `webenginewidgets webchannel`
+- Media: `multimedia multimediawidgets`
+
+### External Dependencies
+- **AMap (高德地图)**: Chinese mapping service integration
+- **Face Recognition**: External process integration for tracking
+- **Qt Charts**: Statistical visualization
+- **SQLite**: Database backend
+
+## Resource Management
+
+Assets are managed through Qt Resource System:
+- **Images**: `/image` prefix - military icons, UI elements, status indicators
+- **QML**: `/qml` prefix - interactive map components
+- **Web**: `/html` prefix - HTML mapping interfaces
+
+## Development Notes
+
+### File Structure
+- **Source Files**: All `.cpp` files in `src/` directory
+- **Header Files**: All `.h` files in `include/` directory
+- **UI Files**: All `.ui` files in `ui/` directory - define widget layouts
+- **Build Artifacts**: All generated files in `build/` directory
+- **Resources**: `res.qrc` contains all embedded assets
+- **Generated Files**: `moc_*.cpp`, `ui_*.h`, and object files auto-generated in `build/`
+
+### Database Pattern
+All database classes follow singleton pattern with standard CRUD operations. Access through static instance methods.
+
+### Coordinate System
+Application uses longitude/latitude coordinates throughout. Both QML and web components expect geographic coordinates.
+
+### Build Artifacts
+- **Object Files**: `.o` files generated during compilation
+- **MOC Files**: `moc_*.cpp` files for Qt meta-object system
+- **UI Headers**: `ui_*.h` files generated from `.ui` files
+- **Resource Code**: `qrc_*.cpp` generated from `.qrc` files
+
+## Testing
+
+No explicit test framework detected. Manual testing through GUI interaction.
+
+## Deployment
+
+Application configured for:
+- **Primary**: Linux x86_64 desktop
+- **Secondary**: Android (AndroidManifest.xml present)
+- **Installation**: System-wide deployment to `/opt/CasualtySightPlus/`
\ No newline at end of file
diff --git a/src/Client/CasualtySightPlus b/src/Client/CasualtySightPlus
old mode 100644
new mode 100755
index d5e554a..fdf3199
Binary files a/src/Client/CasualtySightPlus and b/src/Client/CasualtySightPlus differ
diff --git a/src/Client/CasualtySightPlus.pro b/src/Client/CasualtySightPlus.pro
old mode 100644
new mode 100755
index 4179a09..63454b4
--- a/src/Client/CasualtySightPlus.pro
+++ b/src/Client/CasualtySightPlus.pro
@@ -1,40 +1,46 @@
-QT += core gui
-QT += core gui quickwidgets positioning location
-QT += multimedia
-QT += multimediawidgets
+QT += core gui widgets quickwidgets positioning
+QT += multimedia multimediawidgets
QT += webenginewidgets webchannel
-QT += sql
-QT += charts
+QT += sql charts
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++17
+# Include paths
+INCLUDEPATH += include
+
+# Build directories
+OBJECTS_DIR = build
+MOC_DIR = build
+UI_DIR = build
+RCC_DIR = build
+
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
- DogDatabase.cpp \
- InjuryAnalysisUI.cpp \
- InjuryDatabase.cpp \
- UAVDatabase.cpp \
- injurydisiplayui.cpp \
- main.cpp \
- guidingui.cpp
+ src/DogDatabase.cpp \
+ src/InjuryAnalysisUI.cpp \
+ src/InjuryDatabase.cpp \
+ src/UAVDatabase.cpp \
+ src/injurydisiplayui.cpp \
+ src/main.cpp \
+ src/guidingui.cpp
HEADERS += \
- DogDatabase.h \
- InjuryAnalysisUI.h \
- InjuryDatabase.h \
- UAVDatabase.h \
- guidingui.h \
- injurydisiplayui.h
+ include/DogDatabase.h \
+ include/InjuryAnalysisUI.h \
+ include/InjuryDatabase.h \
+ include/UAVDatabase.h \
+ include/guidingui.h \
+ include/injurydisiplayui.h
FORMS += \
- InjuryAnalysisUI.ui \
- guidingui.ui \
- injurydisiplayui.ui
+ ui/InjuryAnalysisUI.ui \
+ ui/guidingui.ui \
+ ui/injurydisiplayui.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
diff --git a/src/Client/DogDatabase.cpp b/src/Client/DogDatabase.cpp
deleted file mode 100644
index d3a89fc..0000000
--- a/src/Client/DogDatabase.cpp
+++ /dev/null
@@ -1,194 +0,0 @@
-#include "DogDatabase.h"
-
-DogDatabase *DogDatabase::getInstance()
-{
- static DogDatabase db;
- return &db;
-}
-
-DogDatabase::~DogDatabase()
-{
- close();
-}
-
-DogDatabase::DogDatabase()
-{
- m_sqlDb = QSqlDatabase::addDatabase("QMYSQL");
-}
-
-//添加记录
-bool DogDatabase::add(const Dog &data)
-{
- if(open("fly_land_database","root","hzk200407140238"))
- {
- beginAddFiled("dogdatabase");
- addFiled("id");
- addFiled("state");
- addFiled("ip");
- addFiled("port");
- addFiled("lon");
- addFiled("lat");
- endAddFiled();
-
- beginAddRow();
- addValue(data.id);
- addValue(data.state);
- addValue(data.ip);
- addValue(data.port);
- addValue(data.lon);
- addValue(data.lat);
- endAddRow();
-
- m_valueSql = m_valueSql.left(m_valueSql.length()-1);
- QString sql;
- sql = m_headerSql + m_valueSql;
- return exec(sql);
- }
- close();
- return false;
-}
-
-//查询位置信息的记录
-Point DogDatabase::ReturnUAVPosition(QString id)
-{
- Point position;
- position.lon = 0;
- position.lat = 0;
-
- if(open("fly_land_database","root","hzk200407140238"))
- {
- QSqlQuery query(m_sqlDb);
-
- QString strQuery;
- strQuery = "SELECT lon, lat FROM ";
- strQuery += "dogdatabase";
- strQuery += " WHERE id = ";
- strQuery += id;
-
- qDebug()<
-#include
-#include
-#include
-#include
-#include
-#include
-#include "UAVDatabase.h"
-
-using namespace std;
-
-
-struct Dog
-{
- QString id;
- int state;
- QString ip;
- int port;
- double lon;
- double lat;
-};
-
-
-class DogDatabase
-{
- // Q_OBJECT宏用于提供Qt信号槽和元对象系统服务
- // 它必须限定为私有访问权限
- //Q_OBJECT
-
-public:
- static DogDatabase *getInstance();
- DogDatabase();
- ~DogDatabase();
-
- Dog data;
-
- //返回状态信息
- int giveInfo(QString id);
- //添加数据记录
- bool add(const Dog &data);
- //查询位置信息数据
- Point ReturnUAVPosition( QString id);
-
-
-
-private:
- //打开
- bool open(const QString &dbName,const QString &userName = QString(),const QString &passwd = QString());
- //关闭
- void close();
- //开始添加字段
- void beginAddFiled(const QString &tableName);
-
- //添加字段
- void addFiled(const QString &filedName);
-
- //结束添加字段
- void endAddFiled();
-
- //开始添加行
- void beginAddRow();
-
- //添加字段值
- void addValue(const QVariant &value);
-
- //结束添加行
- void endAddRow();
-
- //执行
- bool exec(const QString &sql);
-
-
-private:
- //数据库
- QSqlDatabase m_sqlDb;
-
- //表名
- QString m_tableName;
-
- //字段名
- QStringList m_fieldName;
-
- //头sql
- QString m_headerSql;
-
- //值sql
- QString m_valueSql;
-
- //已添加row数
- int m_fieldAdd = 0;
-
-};
-
-
-#endif // DOGDATABASE_H
diff --git a/src/Client/DogDatabase.o b/src/Client/DogDatabase.o
deleted file mode 100644
index 221c01c..0000000
Binary files a/src/Client/DogDatabase.o and /dev/null differ
diff --git a/src/Client/InjuryAnalysisUI.h b/src/Client/InjuryAnalysisUI.h
deleted file mode 100644
index 54d63ec..0000000
--- a/src/Client/InjuryAnalysisUI.h
+++ /dev/null
@@ -1,44 +0,0 @@
-#ifndef INJURYANALYSISUI_H
-#define INJURYANALYSISUI_H
-
-#include "InjuryDatabase.h"
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-QT_BEGIN_NAMESPACE
-namespace Ui {
-class InjuryAnalysisUI; //声明ui命名空间下的类
-}
-QT_END_NAMESPACE
-
-class InjuryAnalysisUI : public QWidget
-{
- // Q_OBJECT宏用于提供Qt信号槽和元对象系统服务
- // 它必须限定为私有访问权限
- Q_OBJECT
-
-public:
- InjuryAnalysisUI(QWidget *parent = nullptr);
- ~InjuryAnalysisUI();
- QList result;
-
-private:
- void createBarChart();
- void updateBarChart();
-
-private slots:
- void on_searchButton_clicked();
-
-private:
- // 创建Ui::InjuryAnalysisUI类型的指针,用于操作ui界面及其控件
- Ui::InjuryAnalysisUI *ui;
- QChart *chart;
- QChartView *chartView;
-};
-
-#endif // INJURYANALYSISUI_H
diff --git a/src/Client/InjuryAnalysisUI.o b/src/Client/InjuryAnalysisUI.o
deleted file mode 100644
index ca25db8..0000000
Binary files a/src/Client/InjuryAnalysisUI.o and /dev/null differ
diff --git a/src/Client/InjuryDatabase.o b/src/Client/InjuryDatabase.o
deleted file mode 100644
index b59a7f6..0000000
Binary files a/src/Client/InjuryDatabase.o and /dev/null differ
diff --git a/src/Client/Makefile b/src/Client/Makefile
index 0a7ecc8..2beab72 100644
--- a/src/Client/Makefile
+++ b/src/Client/Makefile
@@ -1,6 +1,6 @@
#############################################################################
# Makefile for building: CasualtySightPlus
-# Generated by qmake (3.1) (Qt 5.15.13)
+# Generated by qmake (3.1) (Qt 5.15.15)
# Project: CasualtySightPlus.pro
# Template: app
# Command: /usr/lib/qt5/bin/qmake -o Makefile CasualtySightPlus.pro
@@ -14,10 +14,10 @@ EQ = =
CC = gcc
CXX = g++
-DEFINES = -DQT_NO_DEBUG -DQT_QUICKWIDGETS_LIB -DQT_LOCATION_LIB -DQT_POSITIONINGQUICK_LIB -DQT_WEBENGINEWIDGETS_LIB -DQT_WEBENGINECORE_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIAWIDGETS_LIB -DQT_PRINTSUPPORT_LIB -DQT_CHARTS_LIB -DQT_WIDGETS_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_WEBCHANNEL_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_POSITIONING_LIB -DQT_SQL_LIB -DQT_CORE_LIB
+DEFINES = -DQT_NO_DEBUG -DQT_QUICKWIDGETS_LIB -DQT_MULTIMEDIAWIDGETS_LIB -DQT_WEBENGINEWIDGETS_LIB -DQT_PRINTSUPPORT_LIB -DQT_CHARTS_LIB -DQT_WIDGETS_LIB -DQT_WEBENGINECORE_LIB -DQT_QUICK_LIB -DQT_MULTIMEDIA_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB -DQT_WEBCHANNEL_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_POSITIONING_LIB -DQT_SQL_LIB -DQT_CORE_LIB
CFLAGS = -pipe -O2 -Wall -Wextra -D_REENTRANT -fPIC $(DEFINES)
CXXFLAGS = -pipe -O2 -std=gnu++1z -Wall -Wextra -D_REENTRANT -fPIC $(DEFINES)
-INCPATH = -I. -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtQuickWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtLocation -I/usr/include/x86_64-linux-gnu/qt5/QtPositioningQuick -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineCore -I/usr/include/x86_64-linux-gnu/qt5/QtQuick -I/usr/include/x86_64-linux-gnu/qt5/QtMultimediaWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtPrintSupport -I/usr/include/x86_64-linux-gnu/qt5/QtCharts -I/usr/include/x86_64-linux-gnu/qt5/QtWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtMultimedia -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5/QtQmlModels -I/usr/include/x86_64-linux-gnu/qt5/QtWebChannel -I/usr/include/x86_64-linux-gnu/qt5/QtQml -I/usr/include/x86_64-linux-gnu/qt5/QtNetwork -I/usr/include/x86_64-linux-gnu/qt5/QtPositioning -I/usr/include/x86_64-linux-gnu/qt5/QtSql -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I. -I. -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++
+INCPATH = -I. -Iinclude -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtQuickWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtMultimediaWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtPrintSupport -I/usr/include/x86_64-linux-gnu/qt5/QtCharts -I/usr/include/x86_64-linux-gnu/qt5/QtWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineCore -I/usr/include/x86_64-linux-gnu/qt5/QtQuick -I/usr/include/x86_64-linux-gnu/qt5/QtMultimedia -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5/QtQmlModels -I/usr/include/x86_64-linux-gnu/qt5/QtWebChannel -I/usr/include/x86_64-linux-gnu/qt5/QtQml -I/usr/include/x86_64-linux-gnu/qt5/QtNetwork -I/usr/include/x86_64-linux-gnu/qt5/QtPositioning -I/usr/include/x86_64-linux-gnu/qt5/QtSql -I/usr/include/x86_64-linux-gnu/qt5/QtCore -Ibuild -Ibuild -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++
QMAKE = /usr/lib/qt5/bin/qmake
DEL_FILE = rm -f
CHK_DIR_EXISTS= test -d
@@ -37,10 +37,10 @@ MOVE = mv -f
TAR = tar -cf
COMPRESS = gzip -9f
DISTNAME = CasualtySightPlus1.0.0
-DISTDIR = /home/hzk/Enjoy/src/Client/.tmp/CasualtySightPlus1.0.0
+DISTDIR = /home/hzk/Software_Architecture/src/Client/build/CasualtySightPlus1.0.0
LINK = g++
LFLAGS = -Wl,-O1 -Wl,-rpath-link,/usr/lib/x86_64-linux-gnu
-LIBS = $(SUBLIBS) /usr/lib/x86_64-linux-gnu/libQt5QuickWidgets.so /usr/lib/x86_64-linux-gnu/libQt5Location.so /usr/lib/x86_64-linux-gnu/libQt5PositioningQuick.so /usr/lib/x86_64-linux-gnu/libQt5WebEngineWidgets.so /usr/lib/x86_64-linux-gnu/libQt5WebEngineCore.so /usr/lib/x86_64-linux-gnu/libQt5Quick.so /usr/lib/x86_64-linux-gnu/libQt5MultimediaWidgets.so /usr/lib/x86_64-linux-gnu/libQt5PrintSupport.so /usr/lib/x86_64-linux-gnu/libQt5Charts.so /usr/lib/x86_64-linux-gnu/libQt5Widgets.so /usr/lib/x86_64-linux-gnu/libQt5Multimedia.so /usr/lib/x86_64-linux-gnu/libQt5Gui.so /usr/lib/x86_64-linux-gnu/libQt5QmlModels.so /usr/lib/x86_64-linux-gnu/libQt5WebChannel.so /usr/lib/x86_64-linux-gnu/libQt5Qml.so /usr/lib/x86_64-linux-gnu/libQt5Network.so /usr/lib/x86_64-linux-gnu/libQt5Positioning.so /usr/lib/x86_64-linux-gnu/libQt5Sql.so /usr/lib/x86_64-linux-gnu/libQt5Core.so -lGL -lpthread
+LIBS = $(SUBLIBS) /usr/lib/x86_64-linux-gnu/libQt5QuickWidgets.so /usr/lib/x86_64-linux-gnu/libQt5MultimediaWidgets.so /usr/lib/x86_64-linux-gnu/libQt5WebEngineWidgets.so /usr/lib/x86_64-linux-gnu/libQt5PrintSupport.so /usr/lib/x86_64-linux-gnu/libQt5Charts.so /usr/lib/x86_64-linux-gnu/libQt5Widgets.so /usr/lib/x86_64-linux-gnu/libQt5WebEngineCore.so /usr/lib/x86_64-linux-gnu/libQt5Quick.so /usr/lib/x86_64-linux-gnu/libQt5Multimedia.so /usr/lib/x86_64-linux-gnu/libQt5Gui.so /usr/lib/x86_64-linux-gnu/libQt5QmlModels.so /usr/lib/x86_64-linux-gnu/libQt5WebChannel.so /usr/lib/x86_64-linux-gnu/libQt5Qml.so /usr/lib/x86_64-linux-gnu/libQt5Network.so /usr/lib/x86_64-linux-gnu/libQt5Positioning.so /usr/lib/x86_64-linux-gnu/libQt5Sql.so /usr/lib/x86_64-linux-gnu/libQt5Core.so -lGL -lpthread
AR = ar cqs
RANLIB =
SED = sed
@@ -48,31 +48,31 @@ STRIP = strip
####### Output directory
-OBJECTS_DIR = ./
+OBJECTS_DIR = build/
####### Files
-SOURCES = DogDatabase.cpp \
- InjuryAnalysisUI.cpp \
- InjuryDatabase.cpp \
- UAVDatabase.cpp \
- injurydisiplayui.cpp \
- main.cpp \
- guidingui.cpp qrc_res.cpp \
- moc_InjuryAnalysisUI.cpp \
- moc_guidingui.cpp \
- moc_injurydisiplayui.cpp
-OBJECTS = DogDatabase.o \
- InjuryAnalysisUI.o \
- InjuryDatabase.o \
- UAVDatabase.o \
- injurydisiplayui.o \
- main.o \
- guidingui.o \
- qrc_res.o \
- moc_InjuryAnalysisUI.o \
- moc_guidingui.o \
- moc_injurydisiplayui.o
+SOURCES = src/DogDatabase.cpp \
+ src/InjuryAnalysisUI.cpp \
+ src/InjuryDatabase.cpp \
+ src/UAVDatabase.cpp \
+ src/injurydisiplayui.cpp \
+ src/main.cpp \
+ src/guidingui.cpp build/qrc_res.cpp \
+ build/moc_InjuryAnalysisUI.cpp \
+ build/moc_guidingui.cpp \
+ build/moc_injurydisiplayui.cpp
+OBJECTS = build/DogDatabase.o \
+ build/InjuryAnalysisUI.o \
+ build/InjuryDatabase.o \
+ build/UAVDatabase.o \
+ build/injurydisiplayui.o \
+ build/main.o \
+ build/guidingui.o \
+ build/qrc_res.o \
+ build/moc_InjuryAnalysisUI.o \
+ build/moc_guidingui.o \
+ build/moc_injurydisiplayui.o
DIST = /usr/lib/x86_64-linux-gnu/qt5/mkspecs/features/spec_pre.prf \
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/common/unix.conf \
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/common/linux.conf \
@@ -105,7 +105,6 @@ DIST = /usr/lib/x86_64-linux-gnu/qt5/mkspecs/features/spec_pre.prf \
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_input_support_private.pri \
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_kms_support_private.pri \
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_linuxaccessibility_support_private.pri \
- /usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_location.pri \
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_multimedia.pri \
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_multimediawidgets.pri \
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_network.pri \
@@ -166,18 +165,18 @@ DIST = /usr/lib/x86_64-linux-gnu/qt5/mkspecs/features/spec_pre.prf \
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/features/exceptions.prf \
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/features/yacc.prf \
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/features/lex.prf \
- CasualtySightPlus.pro DogDatabase.h \
- InjuryAnalysisUI.h \
- InjuryDatabase.h \
- UAVDatabase.h \
- guidingui.h \
- injurydisiplayui.h DogDatabase.cpp \
- InjuryAnalysisUI.cpp \
- InjuryDatabase.cpp \
- UAVDatabase.cpp \
- injurydisiplayui.cpp \
- main.cpp \
- guidingui.cpp
+ CasualtySightPlus.pro include/DogDatabase.h \
+ include/InjuryAnalysisUI.h \
+ include/InjuryDatabase.h \
+ include/UAVDatabase.h \
+ include/guidingui.h \
+ include/injurydisiplayui.h src/DogDatabase.cpp \
+ src/InjuryAnalysisUI.cpp \
+ src/InjuryDatabase.cpp \
+ src/UAVDatabase.cpp \
+ src/injurydisiplayui.cpp \
+ src/main.cpp \
+ src/guidingui.cpp
QMAKE_TARGET = CasualtySightPlus
DESTDIR =
TARGET = CasualtySightPlus
@@ -186,7 +185,7 @@ TARGET = CasualtySightPlus
first: all
####### Build rules
-CasualtySightPlus: ui_InjuryAnalysisUI.h ui_guidingui.h ui_injurydisiplayui.h $(OBJECTS)
+CasualtySightPlus: build/ui_InjuryAnalysisUI.h build/ui_guidingui.h build/ui_injurydisiplayui.h $(OBJECTS)
$(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS)
Makefile: CasualtySightPlus.pro /usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++/qmake.conf /usr/lib/x86_64-linux-gnu/qt5/mkspecs/features/spec_pre.prf \
@@ -221,7 +220,6 @@ Makefile: CasualtySightPlus.pro /usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++/
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_input_support_private.pri \
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_kms_support_private.pri \
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_linuxaccessibility_support_private.pri \
- /usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_location.pri \
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_multimedia.pri \
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_multimediawidgets.pri \
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_network.pri \
@@ -317,7 +315,6 @@ Makefile: CasualtySightPlus.pro /usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++/
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_input_support_private.pri:
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_kms_support_private.pri:
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_linuxaccessibility_support_private.pri:
-/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_location.pri:
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_multimedia.pri:
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_multimediawidgets.pri:
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_lib_network.pri:
@@ -396,9 +393,9 @@ distdir: FORCE
$(COPY_FILE) --parents $(DIST) $(DISTDIR)/
$(COPY_FILE) --parents res.qrc $(DISTDIR)/
$(COPY_FILE) --parents /usr/lib/x86_64-linux-gnu/qt5/mkspecs/features/data/dummy.cpp $(DISTDIR)/
- $(COPY_FILE) --parents DogDatabase.h InjuryAnalysisUI.h InjuryDatabase.h UAVDatabase.h guidingui.h injurydisiplayui.h $(DISTDIR)/
- $(COPY_FILE) --parents DogDatabase.cpp InjuryAnalysisUI.cpp InjuryDatabase.cpp UAVDatabase.cpp injurydisiplayui.cpp main.cpp guidingui.cpp $(DISTDIR)/
- $(COPY_FILE) --parents InjuryAnalysisUI.ui guidingui.ui injurydisiplayui.ui $(DISTDIR)/
+ $(COPY_FILE) --parents include/DogDatabase.h include/InjuryAnalysisUI.h include/InjuryDatabase.h include/UAVDatabase.h include/guidingui.h include/injurydisiplayui.h $(DISTDIR)/
+ $(COPY_FILE) --parents src/DogDatabase.cpp src/InjuryAnalysisUI.cpp src/InjuryDatabase.cpp src/UAVDatabase.cpp src/injurydisiplayui.cpp src/main.cpp src/guidingui.cpp $(DISTDIR)/
+ $(COPY_FILE) --parents ui/InjuryAnalysisUI.ui ui/guidingui.ui ui/injurydisiplayui.ui $(DISTDIR)/
clean: compiler_clean
@@ -422,10 +419,10 @@ check: first
benchmark: first
-compiler_rcc_make_all: qrc_res.cpp
+compiler_rcc_make_all: build/qrc_res.cpp
compiler_rcc_clean:
- -$(DEL_FILE) qrc_res.cpp
-qrc_res.cpp: res.qrc \
+ -$(DEL_FILE) build/qrc_res.cpp
+build/qrc_res.cpp: res.qrc \
/usr/lib/qt5/bin/rcc \
res/qml/MAP2.qml \
res/qml/MAP.qml \
@@ -454,51 +451,51 @@ qrc_res.cpp: res.qrc \
res/image/soldier.png \
res/image/MapBackGround.png \
res/image/logo.png
- /usr/lib/qt5/bin/rcc -name res res.qrc -o qrc_res.cpp
+ /usr/lib/qt5/bin/rcc -name res res.qrc -o build/qrc_res.cpp
-compiler_moc_predefs_make_all: moc_predefs.h
+compiler_moc_predefs_make_all: build/moc_predefs.h
compiler_moc_predefs_clean:
- -$(DEL_FILE) moc_predefs.h
-moc_predefs.h: /usr/lib/x86_64-linux-gnu/qt5/mkspecs/features/data/dummy.cpp
- g++ -pipe -O2 -std=gnu++1z -Wall -Wextra -dM -E -o moc_predefs.h /usr/lib/x86_64-linux-gnu/qt5/mkspecs/features/data/dummy.cpp
+ -$(DEL_FILE) build/moc_predefs.h
+build/moc_predefs.h: /usr/lib/x86_64-linux-gnu/qt5/mkspecs/features/data/dummy.cpp
+ g++ -pipe -O2 -std=gnu++1z -Wall -Wextra -dM -E -o build/moc_predefs.h /usr/lib/x86_64-linux-gnu/qt5/mkspecs/features/data/dummy.cpp
-compiler_moc_header_make_all: moc_InjuryAnalysisUI.cpp moc_guidingui.cpp moc_injurydisiplayui.cpp
+compiler_moc_header_make_all: build/moc_InjuryAnalysisUI.cpp build/moc_guidingui.cpp build/moc_injurydisiplayui.cpp
compiler_moc_header_clean:
- -$(DEL_FILE) moc_InjuryAnalysisUI.cpp moc_guidingui.cpp moc_injurydisiplayui.cpp
-moc_InjuryAnalysisUI.cpp: InjuryAnalysisUI.h \
- InjuryDatabase.h \
- moc_predefs.h \
+ -$(DEL_FILE) build/moc_InjuryAnalysisUI.cpp build/moc_guidingui.cpp build/moc_injurydisiplayui.cpp
+build/moc_InjuryAnalysisUI.cpp: include/InjuryAnalysisUI.h \
+ include/InjuryDatabase.h \
+ build/moc_predefs.h \
/usr/lib/qt5/bin/moc
- /usr/lib/qt5/bin/moc $(DEFINES) --include /home/hzk/Enjoy/src/Client/moc_predefs.h -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -I/home/hzk/Enjoy/src/Client -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtQuickWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtLocation -I/usr/include/x86_64-linux-gnu/qt5/QtPositioningQuick -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineCore -I/usr/include/x86_64-linux-gnu/qt5/QtQuick -I/usr/include/x86_64-linux-gnu/qt5/QtMultimediaWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtPrintSupport -I/usr/include/x86_64-linux-gnu/qt5/QtCharts -I/usr/include/x86_64-linux-gnu/qt5/QtWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtMultimedia -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5/QtQmlModels -I/usr/include/x86_64-linux-gnu/qt5/QtWebChannel -I/usr/include/x86_64-linux-gnu/qt5/QtQml -I/usr/include/x86_64-linux-gnu/qt5/QtNetwork -I/usr/include/x86_64-linux-gnu/qt5/QtPositioning -I/usr/include/x86_64-linux-gnu/qt5/QtSql -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/c++/13 -I/usr/include/x86_64-linux-gnu/c++/13 -I/usr/include/c++/13/backward -I/usr/lib/gcc/x86_64-linux-gnu/13/include -I/usr/local/include -I/usr/include/x86_64-linux-gnu -I/usr/include InjuryAnalysisUI.h -o moc_InjuryAnalysisUI.cpp
+ /usr/lib/qt5/bin/moc $(DEFINES) --include /home/hzk/Software_Architecture/src/Client/build/moc_predefs.h -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -I/home/hzk/Software_Architecture/src/Client -I/home/hzk/Software_Architecture/src/Client/include -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtQuickWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtMultimediaWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtPrintSupport -I/usr/include/x86_64-linux-gnu/qt5/QtCharts -I/usr/include/x86_64-linux-gnu/qt5/QtWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineCore -I/usr/include/x86_64-linux-gnu/qt5/QtQuick -I/usr/include/x86_64-linux-gnu/qt5/QtMultimedia -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5/QtQmlModels -I/usr/include/x86_64-linux-gnu/qt5/QtWebChannel -I/usr/include/x86_64-linux-gnu/qt5/QtQml -I/usr/include/x86_64-linux-gnu/qt5/QtNetwork -I/usr/include/x86_64-linux-gnu/qt5/QtPositioning -I/usr/include/x86_64-linux-gnu/qt5/QtSql -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/c++/13 -I/usr/include/x86_64-linux-gnu/c++/13 -I/usr/include/c++/13/backward -I/usr/lib/gcc/x86_64-linux-gnu/13/include -I/usr/local/include -I/usr/include/x86_64-linux-gnu -I/usr/include include/InjuryAnalysisUI.h -o build/moc_InjuryAnalysisUI.cpp
-moc_guidingui.cpp: guidingui.h \
- moc_predefs.h \
+build/moc_guidingui.cpp: include/guidingui.h \
+ build/moc_predefs.h \
/usr/lib/qt5/bin/moc
- /usr/lib/qt5/bin/moc $(DEFINES) --include /home/hzk/Enjoy/src/Client/moc_predefs.h -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -I/home/hzk/Enjoy/src/Client -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtQuickWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtLocation -I/usr/include/x86_64-linux-gnu/qt5/QtPositioningQuick -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineCore -I/usr/include/x86_64-linux-gnu/qt5/QtQuick -I/usr/include/x86_64-linux-gnu/qt5/QtMultimediaWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtPrintSupport -I/usr/include/x86_64-linux-gnu/qt5/QtCharts -I/usr/include/x86_64-linux-gnu/qt5/QtWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtMultimedia -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5/QtQmlModels -I/usr/include/x86_64-linux-gnu/qt5/QtWebChannel -I/usr/include/x86_64-linux-gnu/qt5/QtQml -I/usr/include/x86_64-linux-gnu/qt5/QtNetwork -I/usr/include/x86_64-linux-gnu/qt5/QtPositioning -I/usr/include/x86_64-linux-gnu/qt5/QtSql -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/c++/13 -I/usr/include/x86_64-linux-gnu/c++/13 -I/usr/include/c++/13/backward -I/usr/lib/gcc/x86_64-linux-gnu/13/include -I/usr/local/include -I/usr/include/x86_64-linux-gnu -I/usr/include guidingui.h -o moc_guidingui.cpp
+ /usr/lib/qt5/bin/moc $(DEFINES) --include /home/hzk/Software_Architecture/src/Client/build/moc_predefs.h -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -I/home/hzk/Software_Architecture/src/Client -I/home/hzk/Software_Architecture/src/Client/include -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtQuickWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtMultimediaWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtPrintSupport -I/usr/include/x86_64-linux-gnu/qt5/QtCharts -I/usr/include/x86_64-linux-gnu/qt5/QtWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineCore -I/usr/include/x86_64-linux-gnu/qt5/QtQuick -I/usr/include/x86_64-linux-gnu/qt5/QtMultimedia -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5/QtQmlModels -I/usr/include/x86_64-linux-gnu/qt5/QtWebChannel -I/usr/include/x86_64-linux-gnu/qt5/QtQml -I/usr/include/x86_64-linux-gnu/qt5/QtNetwork -I/usr/include/x86_64-linux-gnu/qt5/QtPositioning -I/usr/include/x86_64-linux-gnu/qt5/QtSql -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/c++/13 -I/usr/include/x86_64-linux-gnu/c++/13 -I/usr/include/c++/13/backward -I/usr/lib/gcc/x86_64-linux-gnu/13/include -I/usr/local/include -I/usr/include/x86_64-linux-gnu -I/usr/include include/guidingui.h -o build/moc_guidingui.cpp
-moc_injurydisiplayui.cpp: injurydisiplayui.h \
- moc_predefs.h \
+build/moc_injurydisiplayui.cpp: include/injurydisiplayui.h \
+ build/moc_predefs.h \
/usr/lib/qt5/bin/moc
- /usr/lib/qt5/bin/moc $(DEFINES) --include /home/hzk/Enjoy/src/Client/moc_predefs.h -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -I/home/hzk/Enjoy/src/Client -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtQuickWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtLocation -I/usr/include/x86_64-linux-gnu/qt5/QtPositioningQuick -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineCore -I/usr/include/x86_64-linux-gnu/qt5/QtQuick -I/usr/include/x86_64-linux-gnu/qt5/QtMultimediaWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtPrintSupport -I/usr/include/x86_64-linux-gnu/qt5/QtCharts -I/usr/include/x86_64-linux-gnu/qt5/QtWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtMultimedia -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5/QtQmlModels -I/usr/include/x86_64-linux-gnu/qt5/QtWebChannel -I/usr/include/x86_64-linux-gnu/qt5/QtQml -I/usr/include/x86_64-linux-gnu/qt5/QtNetwork -I/usr/include/x86_64-linux-gnu/qt5/QtPositioning -I/usr/include/x86_64-linux-gnu/qt5/QtSql -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/c++/13 -I/usr/include/x86_64-linux-gnu/c++/13 -I/usr/include/c++/13/backward -I/usr/lib/gcc/x86_64-linux-gnu/13/include -I/usr/local/include -I/usr/include/x86_64-linux-gnu -I/usr/include injurydisiplayui.h -o moc_injurydisiplayui.cpp
+ /usr/lib/qt5/bin/moc $(DEFINES) --include /home/hzk/Software_Architecture/src/Client/build/moc_predefs.h -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -I/home/hzk/Software_Architecture/src/Client -I/home/hzk/Software_Architecture/src/Client/include -I/usr/include/x86_64-linux-gnu/qt5 -I/usr/include/x86_64-linux-gnu/qt5/QtQuickWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtMultimediaWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtPrintSupport -I/usr/include/x86_64-linux-gnu/qt5/QtCharts -I/usr/include/x86_64-linux-gnu/qt5/QtWidgets -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineCore -I/usr/include/x86_64-linux-gnu/qt5/QtQuick -I/usr/include/x86_64-linux-gnu/qt5/QtMultimedia -I/usr/include/x86_64-linux-gnu/qt5/QtGui -I/usr/include/x86_64-linux-gnu/qt5/QtQmlModels -I/usr/include/x86_64-linux-gnu/qt5/QtWebChannel -I/usr/include/x86_64-linux-gnu/qt5/QtQml -I/usr/include/x86_64-linux-gnu/qt5/QtNetwork -I/usr/include/x86_64-linux-gnu/qt5/QtPositioning -I/usr/include/x86_64-linux-gnu/qt5/QtSql -I/usr/include/x86_64-linux-gnu/qt5/QtCore -I/usr/include/c++/13 -I/usr/include/x86_64-linux-gnu/c++/13 -I/usr/include/c++/13/backward -I/usr/lib/gcc/x86_64-linux-gnu/13/include -I/usr/local/include -I/usr/include/x86_64-linux-gnu -I/usr/include include/injurydisiplayui.h -o build/moc_injurydisiplayui.cpp
compiler_moc_objc_header_make_all:
compiler_moc_objc_header_clean:
compiler_moc_source_make_all:
compiler_moc_source_clean:
-compiler_uic_make_all: ui_InjuryAnalysisUI.h ui_guidingui.h ui_injurydisiplayui.h
+compiler_uic_make_all: build/ui_InjuryAnalysisUI.h build/ui_guidingui.h build/ui_injurydisiplayui.h
compiler_uic_clean:
- -$(DEL_FILE) ui_InjuryAnalysisUI.h ui_guidingui.h ui_injurydisiplayui.h
-ui_InjuryAnalysisUI.h: InjuryAnalysisUI.ui \
+ -$(DEL_FILE) build/ui_InjuryAnalysisUI.h build/ui_guidingui.h build/ui_injurydisiplayui.h
+build/ui_InjuryAnalysisUI.h: ui/InjuryAnalysisUI.ui \
/usr/lib/qt5/bin/uic
- /usr/lib/qt5/bin/uic InjuryAnalysisUI.ui -o ui_InjuryAnalysisUI.h
+ /usr/lib/qt5/bin/uic ui/InjuryAnalysisUI.ui -o build/ui_InjuryAnalysisUI.h
-ui_guidingui.h: guidingui.ui \
+build/ui_guidingui.h: ui/guidingui.ui \
/usr/lib/qt5/bin/uic
- /usr/lib/qt5/bin/uic guidingui.ui -o ui_guidingui.h
+ /usr/lib/qt5/bin/uic ui/guidingui.ui -o build/ui_guidingui.h
-ui_injurydisiplayui.h: injurydisiplayui.ui \
+build/ui_injurydisiplayui.h: ui/injurydisiplayui.ui \
/usr/lib/qt5/bin/uic
- /usr/lib/qt5/bin/uic injurydisiplayui.ui -o ui_injurydisiplayui.h
+ /usr/lib/qt5/bin/uic ui/injurydisiplayui.ui -o build/ui_injurydisiplayui.h
compiler_yacc_decl_make_all:
compiler_yacc_decl_clean:
@@ -510,47 +507,47 @@ compiler_clean: compiler_rcc_clean compiler_moc_predefs_clean compiler_moc_heade
####### Compile
-DogDatabase.o: DogDatabase.cpp DogDatabase.h \
- UAVDatabase.h
- $(CXX) -c $(CXXFLAGS) $(INCPATH) -o DogDatabase.o DogDatabase.cpp
+build/DogDatabase.o: src/DogDatabase.cpp include/DogDatabase.h \
+ include/UAVDatabase.h
+ $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/DogDatabase.o src/DogDatabase.cpp
-InjuryAnalysisUI.o: InjuryAnalysisUI.cpp InjuryAnalysisUI.h \
- InjuryDatabase.h \
- ui_InjuryAnalysisUI.h
- $(CXX) -c $(CXXFLAGS) $(INCPATH) -o InjuryAnalysisUI.o InjuryAnalysisUI.cpp
+build/InjuryAnalysisUI.o: src/InjuryAnalysisUI.cpp include/InjuryAnalysisUI.h \
+ include/InjuryDatabase.h \
+ build/ui_InjuryAnalysisUI.h
+ $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/InjuryAnalysisUI.o src/InjuryAnalysisUI.cpp
-InjuryDatabase.o: InjuryDatabase.cpp InjuryDatabase.h
- $(CXX) -c $(CXXFLAGS) $(INCPATH) -o InjuryDatabase.o InjuryDatabase.cpp
+build/InjuryDatabase.o: src/InjuryDatabase.cpp include/InjuryDatabase.h
+ $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/InjuryDatabase.o src/InjuryDatabase.cpp
-UAVDatabase.o: UAVDatabase.cpp UAVDatabase.h
- $(CXX) -c $(CXXFLAGS) $(INCPATH) -o UAVDatabase.o UAVDatabase.cpp
+build/UAVDatabase.o: src/UAVDatabase.cpp include/UAVDatabase.h
+ $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/UAVDatabase.o src/UAVDatabase.cpp
-injurydisiplayui.o: injurydisiplayui.cpp injurydisiplayui.h \
- ui_injurydisiplayui.h \
- InjuryDatabase.h \
- guidingui.h
- $(CXX) -c $(CXXFLAGS) $(INCPATH) -o injurydisiplayui.o injurydisiplayui.cpp
+build/injurydisiplayui.o: src/injurydisiplayui.cpp include/injurydisiplayui.h \
+ build/ui_injurydisiplayui.h \
+ include/InjuryDatabase.h \
+ include/guidingui.h
+ $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/injurydisiplayui.o src/injurydisiplayui.cpp
-main.o: main.cpp guidingui.h \
- DogDatabase.h \
- UAVDatabase.h
- $(CXX) -c $(CXXFLAGS) $(INCPATH) -o main.o main.cpp
+build/main.o: src/main.cpp include/guidingui.h \
+ include/DogDatabase.h \
+ include/UAVDatabase.h
+ $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/main.o src/main.cpp
-guidingui.o: guidingui.cpp guidingui.h \
- ui_guidingui.h
- $(CXX) -c $(CXXFLAGS) $(INCPATH) -o guidingui.o guidingui.cpp
+build/guidingui.o: src/guidingui.cpp include/guidingui.h \
+ build/ui_guidingui.h
+ $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/guidingui.o src/guidingui.cpp
-qrc_res.o: qrc_res.cpp
- $(CXX) -c $(CXXFLAGS) $(INCPATH) -o qrc_res.o qrc_res.cpp
+build/qrc_res.o: build/qrc_res.cpp
+ $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/qrc_res.o build/qrc_res.cpp
-moc_InjuryAnalysisUI.o: moc_InjuryAnalysisUI.cpp
- $(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_InjuryAnalysisUI.o moc_InjuryAnalysisUI.cpp
+build/moc_InjuryAnalysisUI.o: build/moc_InjuryAnalysisUI.cpp
+ $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_InjuryAnalysisUI.o build/moc_InjuryAnalysisUI.cpp
-moc_guidingui.o: moc_guidingui.cpp
- $(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_guidingui.o moc_guidingui.cpp
+build/moc_guidingui.o: build/moc_guidingui.cpp
+ $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_guidingui.o build/moc_guidingui.cpp
-moc_injurydisiplayui.o: moc_injurydisiplayui.cpp
- $(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_injurydisiplayui.o moc_injurydisiplayui.cpp
+build/moc_injurydisiplayui.o: build/moc_injurydisiplayui.cpp
+ $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/moc_injurydisiplayui.o build/moc_injurydisiplayui.cpp
####### Install
diff --git a/src/Client/UAVDatabase.o b/src/Client/UAVDatabase.o
deleted file mode 100644
index 69e5cc7..0000000
Binary files a/src/Client/UAVDatabase.o and /dev/null differ
diff --git a/src/Client/AndroidToolchainManager.o b/src/Client/build/AndroidToolchainManager.o
similarity index 100%
rename from src/Client/AndroidToolchainManager.o
rename to src/Client/build/AndroidToolchainManager.o
diff --git a/src/Client/build/DogDatabase.o b/src/Client/build/DogDatabase.o
new file mode 100644
index 0000000..46be1fa
Binary files /dev/null and b/src/Client/build/DogDatabase.o differ
diff --git a/src/Client/build/InjuryAnalysisUI.o b/src/Client/build/InjuryAnalysisUI.o
new file mode 100644
index 0000000..aa54fd3
Binary files /dev/null and b/src/Client/build/InjuryAnalysisUI.o differ
diff --git a/src/Client/build/InjuryDatabase.o b/src/Client/build/InjuryDatabase.o
new file mode 100644
index 0000000..cfe31c6
Binary files /dev/null and b/src/Client/build/InjuryDatabase.o differ
diff --git a/src/Client/build/UAVDatabase.o b/src/Client/build/UAVDatabase.o
new file mode 100644
index 0000000..424134c
Binary files /dev/null and b/src/Client/build/UAVDatabase.o differ
diff --git a/src/Client/build/guidingui.o b/src/Client/build/guidingui.o
new file mode 100644
index 0000000..1af1b27
Binary files /dev/null and b/src/Client/build/guidingui.o differ
diff --git a/src/Client/build/injurydisiplayui.o b/src/Client/build/injurydisiplayui.o
new file mode 100644
index 0000000..e988a59
Binary files /dev/null and b/src/Client/build/injurydisiplayui.o differ
diff --git a/src/Client/build/main.o b/src/Client/build/main.o
new file mode 100644
index 0000000..b805c80
Binary files /dev/null and b/src/Client/build/main.o differ
diff --git a/src/Client/build/moc_InjuryAnalysisUI.cpp b/src/Client/build/moc_InjuryAnalysisUI.cpp
new file mode 100644
index 0000000..21d8eb0
--- /dev/null
+++ b/src/Client/build/moc_InjuryAnalysisUI.cpp
@@ -0,0 +1,120 @@
+/****************************************************************************
+** Meta object code from reading C++ file 'InjuryAnalysisUI.h'
+**
+** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.15)
+**
+** WARNING! All changes made in this file will be lost!
+*****************************************************************************/
+
+#include
+#include "../include/InjuryAnalysisUI.h"
+#include
+#include
+#if !defined(Q_MOC_OUTPUT_REVISION)
+#error "The header file 'InjuryAnalysisUI.h' doesn't include ."
+#elif Q_MOC_OUTPUT_REVISION != 67
+#error "This file was generated using the moc from 5.15.15. It"
+#error "cannot be used with the include files from this version of Qt."
+#error "(The moc has changed too much.)"
+#endif
+
+QT_BEGIN_MOC_NAMESPACE
+QT_WARNING_PUSH
+QT_WARNING_DISABLE_DEPRECATED
+struct qt_meta_stringdata_InjuryAnalysisUI_t {
+ QByteArrayData data[3];
+ char stringdata0[40];
+};
+#define QT_MOC_LITERAL(idx, ofs, len) \
+ Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
+ qptrdiff(offsetof(qt_meta_stringdata_InjuryAnalysisUI_t, stringdata0) + ofs \
+ - idx * sizeof(QByteArrayData)) \
+ )
+static const qt_meta_stringdata_InjuryAnalysisUI_t qt_meta_stringdata_InjuryAnalysisUI = {
+ {
+QT_MOC_LITERAL(0, 0, 16), // "InjuryAnalysisUI"
+QT_MOC_LITERAL(1, 17, 21), // "onSearchButtonClicked"
+QT_MOC_LITERAL(2, 39, 0) // ""
+
+ },
+ "InjuryAnalysisUI\0onSearchButtonClicked\0"
+ ""
+};
+#undef QT_MOC_LITERAL
+
+static const uint qt_meta_data_InjuryAnalysisUI[] = {
+
+ // content:
+ 8, // revision
+ 0, // classname
+ 0, 0, // classinfo
+ 1, 14, // methods
+ 0, 0, // properties
+ 0, 0, // enums/sets
+ 0, 0, // constructors
+ 0, // flags
+ 0, // signalCount
+
+ // slots: name, argc, parameters, tag, flags
+ 1, 0, 19, 2, 0x08 /* Private */,
+
+ // slots: parameters
+ QMetaType::Void,
+
+ 0 // eod
+};
+
+void InjuryAnalysisUI::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
+{
+ if (_c == QMetaObject::InvokeMetaMethod) {
+ auto *_t = static_cast(_o);
+ (void)_t;
+ switch (_id) {
+ case 0: _t->onSearchButtonClicked(); break;
+ default: ;
+ }
+ }
+ (void)_a;
+}
+
+QT_INIT_METAOBJECT const QMetaObject InjuryAnalysisUI::staticMetaObject = { {
+ QMetaObject::SuperData::link(),
+ qt_meta_stringdata_InjuryAnalysisUI.data,
+ qt_meta_data_InjuryAnalysisUI,
+ qt_static_metacall,
+ nullptr,
+ nullptr
+} };
+
+
+const QMetaObject *InjuryAnalysisUI::metaObject() const
+{
+ return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
+}
+
+void *InjuryAnalysisUI::qt_metacast(const char *_clname)
+{
+ if (!_clname) return nullptr;
+ if (!strcmp(_clname, qt_meta_stringdata_InjuryAnalysisUI.stringdata0))
+ return static_cast(this);
+ return QWidget::qt_metacast(_clname);
+}
+
+int InjuryAnalysisUI::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
+{
+ _id = QWidget::qt_metacall(_c, _id, _a);
+ if (_id < 0)
+ return _id;
+ if (_c == QMetaObject::InvokeMetaMethod) {
+ if (_id < 1)
+ qt_static_metacall(this, _c, _id, _a);
+ _id -= 1;
+ } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
+ if (_id < 1)
+ *reinterpret_cast(_a[0]) = -1;
+ _id -= 1;
+ }
+ return _id;
+}
+QT_WARNING_POP
+QT_END_MOC_NAMESPACE
diff --git a/src/Client/build/moc_InjuryAnalysisUI.o b/src/Client/build/moc_InjuryAnalysisUI.o
new file mode 100644
index 0000000..61f43fa
Binary files /dev/null and b/src/Client/build/moc_InjuryAnalysisUI.o differ
diff --git a/src/Client/build/moc_guidingui.cpp b/src/Client/build/moc_guidingui.cpp
new file mode 100644
index 0000000..efcb27c
--- /dev/null
+++ b/src/Client/build/moc_guidingui.cpp
@@ -0,0 +1,160 @@
+/****************************************************************************
+** Meta object code from reading C++ file 'guidingui.h'
+**
+** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.15)
+**
+** WARNING! All changes made in this file will be lost!
+*****************************************************************************/
+
+#include
+#include "../include/guidingui.h"
+#include
+#include
+#if !defined(Q_MOC_OUTPUT_REVISION)
+#error "The header file 'guidingui.h' doesn't include ."
+#elif Q_MOC_OUTPUT_REVISION != 67
+#error "This file was generated using the moc from 5.15.15. It"
+#error "cannot be used with the include files from this version of Qt."
+#error "(The moc has changed too much.)"
+#endif
+
+QT_BEGIN_MOC_NAMESPACE
+QT_WARNING_PUSH
+QT_WARNING_DISABLE_DEPRECATED
+struct qt_meta_stringdata_GuidingUI_t {
+ QByteArrayData data[12];
+ char stringdata0[212];
+};
+#define QT_MOC_LITERAL(idx, ofs, len) \
+ Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
+ qptrdiff(offsetof(qt_meta_stringdata_GuidingUI_t, stringdata0) + ofs \
+ - idx * sizeof(QByteArrayData)) \
+ )
+static const qt_meta_stringdata_GuidingUI_t qt_meta_stringdata_GuidingUI = {
+ {
+QT_MOC_LITERAL(0, 0, 9), // "GuidingUI"
+QT_MOC_LITERAL(1, 10, 17), // "onAddRobotClicked"
+QT_MOC_LITERAL(2, 28, 0), // ""
+QT_MOC_LITERAL(3, 29, 17), // "onRobotTabClicked"
+QT_MOC_LITERAL(4, 47, 26), // "onSpecifiedRobotTabClicked"
+QT_MOC_LITERAL(5, 74, 15), // "onAddUAVClicked"
+QT_MOC_LITERAL(6, 90, 15), // "onUAVTabClicked"
+QT_MOC_LITERAL(7, 106, 22), // "onRobotLocationClicked"
+QT_MOC_LITERAL(8, 129, 16), // "onUAVViewClicked"
+QT_MOC_LITERAL(9, 146, 18), // "onRobotViewClicked"
+QT_MOC_LITERAL(10, 165, 21), // "onRobotMappingClicked"
+QT_MOC_LITERAL(11, 187, 24) // "onSmartNavigationClicked"
+
+ },
+ "GuidingUI\0onAddRobotClicked\0\0"
+ "onRobotTabClicked\0onSpecifiedRobotTabClicked\0"
+ "onAddUAVClicked\0onUAVTabClicked\0"
+ "onRobotLocationClicked\0onUAVViewClicked\0"
+ "onRobotViewClicked\0onRobotMappingClicked\0"
+ "onSmartNavigationClicked"
+};
+#undef QT_MOC_LITERAL
+
+static const uint qt_meta_data_GuidingUI[] = {
+
+ // content:
+ 8, // revision
+ 0, // classname
+ 0, 0, // classinfo
+ 10, 14, // methods
+ 0, 0, // properties
+ 0, 0, // enums/sets
+ 0, 0, // constructors
+ 0, // flags
+ 0, // signalCount
+
+ // slots: name, argc, parameters, tag, flags
+ 1, 0, 64, 2, 0x0a /* Public */,
+ 3, 0, 65, 2, 0x0a /* Public */,
+ 4, 0, 66, 2, 0x0a /* Public */,
+ 5, 0, 67, 2, 0x08 /* Private */,
+ 6, 0, 68, 2, 0x08 /* Private */,
+ 7, 0, 69, 2, 0x08 /* Private */,
+ 8, 0, 70, 2, 0x08 /* Private */,
+ 9, 0, 71, 2, 0x08 /* Private */,
+ 10, 0, 72, 2, 0x08 /* Private */,
+ 11, 0, 73, 2, 0x08 /* Private */,
+
+ // slots: parameters
+ QMetaType::Void,
+ QMetaType::Void,
+ QMetaType::Void,
+ QMetaType::Void,
+ QMetaType::Void,
+ QMetaType::Void,
+ QMetaType::Void,
+ QMetaType::Void,
+ QMetaType::Void,
+ QMetaType::Void,
+
+ 0 // eod
+};
+
+void GuidingUI::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
+{
+ if (_c == QMetaObject::InvokeMetaMethod) {
+ auto *_t = static_cast(_o);
+ (void)_t;
+ switch (_id) {
+ case 0: _t->onAddRobotClicked(); break;
+ case 1: _t->onRobotTabClicked(); break;
+ case 2: _t->onSpecifiedRobotTabClicked(); break;
+ case 3: _t->onAddUAVClicked(); break;
+ case 4: _t->onUAVTabClicked(); break;
+ case 5: _t->onRobotLocationClicked(); break;
+ case 6: _t->onUAVViewClicked(); break;
+ case 7: _t->onRobotViewClicked(); break;
+ case 8: _t->onRobotMappingClicked(); break;
+ case 9: _t->onSmartNavigationClicked(); break;
+ default: ;
+ }
+ }
+ (void)_a;
+}
+
+QT_INIT_METAOBJECT const QMetaObject GuidingUI::staticMetaObject = { {
+ QMetaObject::SuperData::link(),
+ qt_meta_stringdata_GuidingUI.data,
+ qt_meta_data_GuidingUI,
+ qt_static_metacall,
+ nullptr,
+ nullptr
+} };
+
+
+const QMetaObject *GuidingUI::metaObject() const
+{
+ return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
+}
+
+void *GuidingUI::qt_metacast(const char *_clname)
+{
+ if (!_clname) return nullptr;
+ if (!strcmp(_clname, qt_meta_stringdata_GuidingUI.stringdata0))
+ return static_cast(this);
+ return QMainWindow::qt_metacast(_clname);
+}
+
+int GuidingUI::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
+{
+ _id = QMainWindow::qt_metacall(_c, _id, _a);
+ if (_id < 0)
+ return _id;
+ if (_c == QMetaObject::InvokeMetaMethod) {
+ if (_id < 10)
+ qt_static_metacall(this, _c, _id, _a);
+ _id -= 10;
+ } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
+ if (_id < 10)
+ *reinterpret_cast(_a[0]) = -1;
+ _id -= 10;
+ }
+ return _id;
+}
+QT_WARNING_POP
+QT_END_MOC_NAMESPACE
diff --git a/src/Client/build/moc_guidingui.o b/src/Client/build/moc_guidingui.o
new file mode 100644
index 0000000..f6e3fb7
Binary files /dev/null and b/src/Client/build/moc_guidingui.o differ
diff --git a/src/Client/build/moc_injurydisiplayui.cpp b/src/Client/build/moc_injurydisiplayui.cpp
new file mode 100644
index 0000000..be5773e
--- /dev/null
+++ b/src/Client/build/moc_injurydisiplayui.cpp
@@ -0,0 +1,95 @@
+/****************************************************************************
+** Meta object code from reading C++ file 'injurydisiplayui.h'
+**
+** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.15)
+**
+** WARNING! All changes made in this file will be lost!
+*****************************************************************************/
+
+#include
+#include "../include/injurydisiplayui.h"
+#include
+#include
+#if !defined(Q_MOC_OUTPUT_REVISION)
+#error "The header file 'injurydisiplayui.h' doesn't include ."
+#elif Q_MOC_OUTPUT_REVISION != 67
+#error "This file was generated using the moc from 5.15.15. It"
+#error "cannot be used with the include files from this version of Qt."
+#error "(The moc has changed too much.)"
+#endif
+
+QT_BEGIN_MOC_NAMESPACE
+QT_WARNING_PUSH
+QT_WARNING_DISABLE_DEPRECATED
+struct qt_meta_stringdata_InjuryDisiplayUI_t {
+ QByteArrayData data[1];
+ char stringdata0[17];
+};
+#define QT_MOC_LITERAL(idx, ofs, len) \
+ Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
+ qptrdiff(offsetof(qt_meta_stringdata_InjuryDisiplayUI_t, stringdata0) + ofs \
+ - idx * sizeof(QByteArrayData)) \
+ )
+static const qt_meta_stringdata_InjuryDisiplayUI_t qt_meta_stringdata_InjuryDisiplayUI = {
+ {
+QT_MOC_LITERAL(0, 0, 16) // "InjuryDisiplayUI"
+
+ },
+ "InjuryDisiplayUI"
+};
+#undef QT_MOC_LITERAL
+
+static const uint qt_meta_data_InjuryDisiplayUI[] = {
+
+ // content:
+ 8, // revision
+ 0, // classname
+ 0, 0, // classinfo
+ 0, 0, // methods
+ 0, 0, // properties
+ 0, 0, // enums/sets
+ 0, 0, // constructors
+ 0, // flags
+ 0, // signalCount
+
+ 0 // eod
+};
+
+void InjuryDisiplayUI::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
+{
+ (void)_o;
+ (void)_id;
+ (void)_c;
+ (void)_a;
+}
+
+QT_INIT_METAOBJECT const QMetaObject InjuryDisiplayUI::staticMetaObject = { {
+ QMetaObject::SuperData::link(),
+ qt_meta_stringdata_InjuryDisiplayUI.data,
+ qt_meta_data_InjuryDisiplayUI,
+ qt_static_metacall,
+ nullptr,
+ nullptr
+} };
+
+
+const QMetaObject *InjuryDisiplayUI::metaObject() const
+{
+ return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
+}
+
+void *InjuryDisiplayUI::qt_metacast(const char *_clname)
+{
+ if (!_clname) return nullptr;
+ if (!strcmp(_clname, qt_meta_stringdata_InjuryDisiplayUI.stringdata0))
+ return static_cast(this);
+ return QDialog::qt_metacast(_clname);
+}
+
+int InjuryDisiplayUI::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
+{
+ _id = QDialog::qt_metacall(_c, _id, _a);
+ return _id;
+}
+QT_WARNING_POP
+QT_END_MOC_NAMESPACE
diff --git a/src/Client/moc_injurydisiplayui.o b/src/Client/build/moc_injurydisiplayui.o
similarity index 86%
rename from src/Client/moc_injurydisiplayui.o
rename to src/Client/build/moc_injurydisiplayui.o
index 85f31b2..7fb1333 100644
Binary files a/src/Client/moc_injurydisiplayui.o and b/src/Client/build/moc_injurydisiplayui.o differ
diff --git a/src/Client/moc_predefs.h b/src/Client/build/moc_predefs.h
similarity index 99%
rename from src/Client/moc_predefs.h
rename to src/Client/build/moc_predefs.h
index f29ad61..fc44955 100644
--- a/src/Client/moc_predefs.h
+++ b/src/Client/build/moc_predefs.h
@@ -126,7 +126,7 @@
#define __FLT64_MANT_DIG__ 53
#define __FLT64X_MANT_DIG__ 64
#define __BFLT16_DIG__ 2
-#define __GNUC__ 13
+#define __GNUC__ 14
#define __GXX_RTTI 1
#define __pie__ 2
#define __MMX__ 1
@@ -170,7 +170,7 @@
#define __PTRDIFF_MAX__ 0x7fffffffffffffffL
#define __amd64 1
#define __ATOMIC_HLE_ACQUIRE 65536
-#define __GNUG__ 13
+#define __GNUG__ 14
#define __LONG_LONG_MAX__ 0x7fffffffffffffffLL
#define __SIZEOF_SIZE_T__ 8
#define __BFLT16_HAS_INFINITY__ 1
@@ -181,7 +181,7 @@
#define __cpp_initializer_lists 200806L
#define __FLT32_MAX_EXP__ 128
#define __cpp_hex_float 201603L
-#define __GXX_ABI_VERSION 1018
+#define __GXX_ABI_VERSION 1019
#define __FLT_MIN_EXP__ (-125)
#define __GCC_HAVE_DWARF2_CFI_ASM 1
#define __x86_64 1
@@ -213,7 +213,7 @@
#define __DEC_EVAL_METHOD__ 2
#define __FLT_MANT_DIG__ 24
#define __LDBL_DECIMAL_DIG__ 21
-#define __VERSION__ "13.3.0"
+#define __VERSION__ "14.2.0"
#define __UINT64_C(c) c ## UL
#define __cpp_unicode_characters 201411L
#define _STDC_PREDEF_H 1
@@ -279,7 +279,6 @@
#define __FLT16_EPSILON__ 9.76562500000000000000000000000000000e-4F16
#define __FLT_HAS_QUIET_NAN__ 1
#define __FLT_MAX_10_EXP__ 38
-#define __LONG_MAX__ 0x7fffffffffffffffL
#define __FLT64X_HAS_DENORM__ 1
#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL
#define __FLT_HAS_INFINITY__ 1
@@ -429,7 +428,7 @@
#define __GLIBCXX_BITSIZE_INT_N_0 128
#define __FLT32X_HAS_QUIET_NAN__ 1
#define __ATOMIC_CONSUME 1
-#define __GNUC_MINOR__ 3
+#define __GNUC_MINOR__ 2
#define __GLIBCXX_TYPE_INT_N_0 __int128
#define __UINTMAX_MAX__ 0xffffffffffffffffUL
#define __PIE__ 2
@@ -440,6 +439,7 @@
#define __INT16_C(c) c
#define __STDC__ 1
#define __PTRDIFF_TYPE__ long int
+#define __LONG_MAX__ 0x7fffffffffffffffL
#define __FLT32X_MIN_10_EXP__ (-307)
#define __UINTPTR_TYPE__ long unsigned int
#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD
diff --git a/src/Client/build/qrc_res.cpp b/src/Client/build/qrc_res.cpp
new file mode 100644
index 0000000..f2b973b
--- /dev/null
+++ b/src/Client/build/qrc_res.cpp
@@ -0,0 +1,8530 @@
+/****************************************************************************
+** Resource object code
+**
+** Created by: The Resource Compiler for Qt version 5.15.15
+**
+** WARNING! All changes made in this file will be lost!
+*****************************************************************************/
+
+static const unsigned char qt_resource_data[] = {
+ // /home/hzk/Software_Architecture/src/Client/res/qml/MAP2.qml
+ 0x0,0x0,0x3,0xa0,
+ 0x69,
+ 0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,0x69,0x63,0x6b,0xa,0x69,0x6d,
+ 0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x4c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0xa,
+ 0x69,0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,
+ 0x6e,0x69,0x6e,0x67,0xa,0x69,0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,
+ 0x69,0x63,0x6b,0x2e,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x73,0xa,0x69,0x6d,0x70,
+ 0x6f,0x72,0x74,0x20,0x51,0x74,0x4c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x35,
+ 0x2e,0x31,0x35,0xa,0x69,0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x50,0x6f,0x73,
+ 0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x20,0x35,0x2e,0x31,0x35,0xa,0x57,0x69,
+ 0x6e,0x64,0x6f,0x77,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x72,
+ 0x6f,0x6f,0x74,0xa,0x20,0x20,0x20,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x3a,
+ 0x20,0x74,0x72,0x75,0x65,0xa,0x20,0x20,0x20,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,
+ 0x20,0x36,0x34,0x30,0xa,0x20,0x20,0x20,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,
+ 0x20,0x34,0x38,0x30,0xa,0x20,0x20,0x20,0x20,0x74,0x69,0x74,0x6c,0x65,0x3a,0x20,
+ 0x71,0x73,0x54,0x72,0x28,0x22,0x4d,0x79,0x20,0x51,0x74,0x20,0x4c,0x6f,0x63,0x61,
+ 0x74,0x69,0x6f,0x6e,0x22,0x29,0xa,0xa,0x20,0x20,0x20,0x20,0x4d,0x61,0x70,0x20,
+ 0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x74,0x68,
+ 0x65,0x5f,0x6d,0x61,0x70,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6e,
+ 0x63,0x68,0x6f,0x72,0x73,0x2e,0x66,0x69,0x6c,0x6c,0x3a,0x20,0x70,0x61,0x72,0x65,
+ 0x6e,0x74,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x69,0x6e,0x69,0x6d,
+ 0x75,0x6d,0x5a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0x3a,0x20,0x33,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x78,0x69,0x6d,0x75,0x6d,0x5a,0x6f,
+ 0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0x3a,0x20,0x31,0x36,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x7a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0x3a,0x20,0x31,
+ 0x30,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,
+ 0x3a,0x20,0x51,0x74,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x2e,
+ 0x63,0x6f,0x6f,0x72,0x64,0x69,0x6e,0x61,0x74,0x65,0x28,0x33,0x30,0x2e,0x36,0x37,
+ 0x2c,0x20,0x31,0x30,0x34,0x2e,0x30,0x36,0x29,0xa,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x70,0x6c,0x75,0x67,0x69,0x6e,0x3a,0x20,0x50,0x6c,0x75,0x67,0x69,
+ 0x6e,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x6e,0x61,0x6d,0x65,0x3a,0x20,0x22,0x6d,0x79,0x6d,0x61,0x70,0x22,0x20,0x2f,0x2f,
+ 0x22,0x65,0x73,0x72,0x69,0x22,0x20,0x22,0x6d,0x61,0x70,0x62,0x6f,0x78,0x22,0x20,
+ 0x22,0x6f,0x73,0x6d,0x22,0x20,0x22,0x68,0x65,0x72,0x65,0x22,0xa,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0xe4,0xbd,0xbf,
+ 0xe7,0x94,0xa8,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0xe5,0xb1,0x9e,
+ 0xe6,0x80,0xa7,0xe6,0x9d,0xa5,0xe8,0xae,0xbe,0xe7,0xbd,0xae,0xe6,0x8f,0x92,0xe4,
+ 0xbb,0xb6,0xe5,0x8f,0x82,0xe6,0x95,0xb0,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x3a,
+ 0x20,0x5b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x50,0x6c,0x75,0x67,0x69,0x6e,0x50,0x61,0x72,0x61,0x6d,0x65,0x74,
+ 0x65,0x72,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x20,0x22,
+ 0x6d,0x61,0x70,0x50,0x61,0x74,0x68,0x22,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x6c,
+ 0x75,0x65,0x3a,0x20,0x61,0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x44,
+ 0x69,0x72,0x50,0x61,0x74,0x68,0x2b,0x22,0x2f,0x64,0x69,0x61,0x6e,0x7a,0x69,0x5f,
+ 0x67,0x61,0x6f,0x64,0x65,0x5f,0x41,0x72,0x63,0x67,0x69,0x73,0x53,0x65,0x72,0x76,
+ 0x65,0x72,0x54,0x69,0x6c,0x65,0x73,0x2f,0x5f,0x61,0x6c,0x6c,0x6c,0x61,0x79,0x65,
+ 0x72,0x73,0x22,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x7d,0x2c,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x50,0x6c,0x75,0x67,0x69,0x6e,0x50,0x61,0x72,
+ 0x61,0x6d,0x65,0x74,0x65,0x72,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x6d,
+ 0x65,0x3a,0x20,0x22,0x66,0x6f,0x72,0x6d,0x61,0x74,0x22,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x76,0x61,0x6c,0x75,0x65,0x3a,0x20,0x22,0x70,0x6e,0x67,0x22,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0x7d,0xa,
+ // /home/hzk/Software_Architecture/src/Client/res/qml/MAP.qml
+ 0x0,0x0,0x14,0xa9,
+ 0x69,
+ 0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,0x69,0x63,0x6b,0xa,0x69,0x6d,
+ 0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x4c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0xa,
+ 0x69,0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,
+ 0x6e,0x69,0x6e,0x67,0xa,0x69,0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,
+ 0x69,0x63,0x6b,0x2e,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x73,0xa,0x69,0x6d,0x70,
+ 0x6f,0x72,0x74,0x20,0x51,0x74,0x4c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x35,
+ 0x2e,0x31,0x35,0xa,0x69,0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x50,0x6f,0x73,
+ 0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x20,0x35,0x2e,0x31,0x35,0xa,0x52,0x65,
+ 0x63,0x74,0x61,0x6e,0x67,0x6c,0x65,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x77,0x69,
+ 0x64,0x74,0x68,0x3a,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0xa,0x20,0x20,0x20,0x20,
+ 0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0xa,0x20,
+ 0x20,0x20,0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x3a,0x20,0x74,0x72,0x75,0x65,
+ 0xa,0xa,0x20,0x20,0x20,0x20,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x53,0x6f,
+ 0x75,0x72,0x63,0x65,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,
+ 0x64,0x3a,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x53,0x6f,0x75,0x72,0x63,
+ 0x65,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x76,0x65,
+ 0x3a,0x20,0x74,0x72,0x75,0x65,0x20,0x2f,0x2f,0x20,0xe5,0x90,0xaf,0xe5,0x8a,0xa8,
+ 0xe4,0xbd,0x8d,0xe7,0xbd,0xae,0xe6,0x9c,0x8d,0xe5,0x8a,0xa1,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x65,0x66,0x65,0x72,0x72,0x65,0x64,0x50,0x6f,
+ 0x73,0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x4d,0x65,0x74,0x68,0x6f,0x64,0x73,
+ 0x3a,0x20,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x53,0x6f,0x75,0x72,0x63,0x65,
+ 0x2e,0x41,0x6c,0x6c,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x4d,
+ 0x65,0x74,0x68,0x6f,0x64,0x73,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,
+ 0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x69,0x64,0x3a,0x6c,0x61,0x62,0x65,0x6c,0x63,0x70,0x70,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x4e,0x61,0x6d,0x65,
+ 0x3a,0x20,0x27,0x6c,0x61,0x62,0x65,0x6c,0x63,0x70,0x70,0x27,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x6e,0x74,0x2e,0x70,0x6f,0x69,0x6e,0x74,0x53,
+ 0x69,0x7a,0x65,0x3a,0x20,0x34,0x30,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x2f,0x2f,0x20,0x70,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x20,0x72,0x65,0x61,0x6c,
+ 0x20,0x6c,0x61,0x74,0x69,0x74,0x75,0x64,0x65,0x53,0x61,0x76,0x65,0x3a,0x20,0x32,
+ 0x38,0x2e,0x32,0x33,0x31,0x32,0x32,0x32,0x37,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x2f,0x2f,0x20,0x70,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x20,0x72,0x65,
+ 0x61,0x6c,0x20,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x53,0x61,0x76,0x65,
+ 0x3a,0x20,0x31,0x31,0x32,0x2e,0x39,0x33,0x33,0x34,0x35,0x37,0x34,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x63,0x70,0x70,0xe8,0xb0,0x83,0xe7,0x94,
+ 0xa8,0xe8,0xbf,0x99,0xe4,0xb8,0xaa,0xe5,0x87,0xbd,0xe6,0x95,0xb0,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x67,0x65,0x74,0x54,0x65,0x78,0x74,0x20,
+ 0xe8,0xbf,0x94,0xe5,0x9b,0x9e,0xe5,0x9c,0xb0,0xe5,0x9b,0xbe,0xe7,0x9a,0x84,0xe4,
+ 0xb8,0xad,0xe5,0xbf,0x83,0xe5,0x9d,0x90,0xe6,0xa0,0x87,0xe5,0x92,0x8c,0xe7,0xbc,
+ 0xa9,0xe6,0x94,0xbe,0xe7,0xba,0xa7,0xe5,0x88,0xab,0xef,0xbc,0x8c,0x73,0x65,0x74,
+ 0x43,0x6f,0x6f,0x72,0x64,0x69,0x6e,0x61,0x74,0x65,0x20,0xe8,0xae,0xbe,0xe7,0xbd,
+ 0xae,0xe5,0x9c,0xb0,0xe5,0x9b,0xbe,0xe7,0x9a,0x84,0xe4,0xb8,0xad,0xe5,0xbf,0x83,
+ 0xe5,0x9d,0x90,0xe6,0xa0,0x87,0xe3,0x80,0x82,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x54,0x65,
+ 0x78,0x74,0x28,0x29,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7b,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,
+ 0x6e,0x20,0x20,0x6d,0x61,0x70,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x20,0x2b,0x20,
+ 0x22,0x20,0x7a,0x6f,0x6f,0x6d,0x20,0x22,0x20,0x2b,0x20,0x6d,0x61,0x70,0x2e,0x7a,
+ 0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0x2e,0x74,0x6f,0x46,0x69,0x78,0x65,0x64,
+ 0x28,0x33,0x29,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2b,0x20,0x22,0x20,0x6d,0x69,0x6e,0x20,
+ 0x22,0x20,0x2b,0x20,0x6d,0x61,0x70,0x2e,0x6d,0x69,0x6e,0x69,0x6d,0x75,0x6d,0x5a,
+ 0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0x20,0x2b,0x20,0x22,0x20,0x6d,0x61,0x78,
+ 0x20,0x22,0x20,0x2b,0x20,0x6d,0x61,0x70,0x2e,0x6d,0x61,0x78,0x69,0x6d,0x75,0x6d,
+ 0x5a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x75,0x6e,0x63,
+ 0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x74,0x43,0x6f,0x6f,0x72,0x64,0x69,0x6e,0x61,
+ 0x74,0x65,0x28,0x6c,0x61,0x74,0x69,0x74,0x75,0x64,0x65,0x2c,0x6c,0x6f,0x6e,0x67,
+ 0x69,0x74,0x75,0x64,0x65,0x29,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7b,
+ 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,
+ 0x6c,0x61,0x74,0x69,0x74,0x75,0x64,0x65,0x53,0x61,0x76,0x65,0x20,0x3d,0x20,0x6c,
+ 0x61,0x74,0x69,0x74,0x75,0x64,0x65,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,
+ 0x53,0x61,0x76,0x65,0x20,0x3d,0x20,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,
+ 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x70,
+ 0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x2e,0x6c,0x61,0x74,0x69,0x74,0x75,0x64,0x65,
+ 0x20,0x3d,0x20,0x6c,0x61,0x74,0x69,0x74,0x75,0x64,0x65,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x70,0x2e,0x63,0x65,0x6e,0x74,
+ 0x65,0x72,0x2e,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x20,0x3d,0x20,0x6c,
+ 0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x70,0x2e,0x75,0x70,0x64,0x61,0x74,0x65,0x28,
+ 0x29,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,
+ 0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x22,0x6c,0x61,0x74,0x69,0x74,
+ 0x75,0x64,0x65,0x3d,0x22,0x2b,0x6c,0x61,0x74,0x69,0x74,0x75,0x64,0x65,0x2b,0x22,
+ 0x20,0x20,0x20,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x3d,0x22,0x2b,0x6c,
+ 0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,
+ 0x6f,0x67,0x28,0x51,0x74,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,
+ 0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x2e,0x63,0x6f,0x6f,0x72,0x64,0x69,
+ 0x6e,0x61,0x74,0x65,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,
+ 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,
+ 0x6e,0x20,0x61,0x64,0x64,0x49,0x6e,0x66,0x6f,0x28,0x6c,0x61,0x74,0x69,0x74,0x75,
+ 0x64,0x65,0x2c,0x20,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x2c,0x20,0x6c,
+ 0x65,0x76,0x65,0x6c,0x29,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x72,0x20,
+ 0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x22,0x23,0x30,0x30,0x46,0x46,0x30,0x30,
+ 0x22,0x3b,0x20,0x2f,0x2f,0x20,0xe9,0xbb,0x98,0xe8,0xae,0xa4,0xe9,0xa2,0x9c,0xe8,
+ 0x89,0xb2,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x65,0x76,0x65,0x6c,
+ 0x20,0x3d,0x3d,0x3d,0x20,0x32,0x29,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x22,0x23,0x46,0x46,0x46,0x46,
+ 0x30,0x30,0x22,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,
+ 0x69,0x66,0x20,0x28,0x6c,0x65,0x76,0x65,0x6c,0x20,0x3d,0x3d,0x3d,0x20,0x33,0x29,
+ 0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6c,0x6f,0x72,
+ 0x20,0x3d,0x20,0x22,0x23,0x46,0x46,0x30,0x30,0x30,0x30,0x22,0x3b,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x7d,0xa,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0xe5,0x88,0x9b,0xe5,
+ 0xbb,0xba,0xe6,0x96,0xb0,0xe7,0x9a,0x84,0x20,0x4d,0x61,0x70,0x43,0x69,0x72,0x63,
+ 0x6c,0x65,0x20,0xe5,0xaf,0xb9,0xe8,0xb1,0xa1,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,
+ 0x72,0x20,0x6e,0x65,0x77,0x43,0x69,0x72,0x63,0x6c,0x65,0x20,0x3d,0x20,0x6d,0x61,
+ 0x70,0x50,0x6c,0x75,0x67,0x69,0x6e,0x2e,0x63,0x72,0x65,0x61,0x74,0x65,0x4d,0x61,
+ 0x70,0x49,0x74,0x65,0x6d,0x28,0x22,0x4d,0x61,0x70,0x43,0x69,0x72,0x63,0x6c,0x65,
+ 0x22,0x2c,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0x69,0x64,
+ 0x22,0x3a,0x6e,0x65,0x77,0x43,0x69,0x72,0x63,0x6c,0x65,0x2c,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x22,0x63,0x65,0x6e,0x74,0x65,0x72,0x22,0x3a,0x20,0x51,
+ 0x74,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x2e,0x63,0x6f,0x6f,
+ 0x72,0x64,0x69,0x6e,0x61,0x74,0x65,0x28,0x6c,0x61,0x74,0x69,0x74,0x75,0x64,0x65,
+ 0x2c,0x20,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x29,0x2c,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x22,0x72,0x61,0x64,0x69,0x75,0x73,0x22,0x3a,0x20,
+ 0x35,0x30,0x2c,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0x62,0x6f,0x72,
+ 0x64,0x65,0x72,0x2e,0x77,0x69,0x64,0x74,0x68,0x22,0x3a,0x20,0x35,0x2c,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0x63,0x6f,0x6c,0x6f,0x72,0x22,0x3a,0x20,
+ 0x63,0x6f,0x6c,0x6f,0x72,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0xa,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x2f,0x2f,0x20,0xe5,0xb0,0x86,0xe6,0x96,0xb0,0xe5,0x9c,0x86,0xe5,
+ 0x9c,0x88,0xe6,0xb7,0xbb,0xe5,0x8a,0xa0,0xe5,0x88,0xb0,0xe5,0x9c,0xb0,0xe5,0x9b,
+ 0xbe,0xe4,0xb8,0x8a,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x70,0x2e,0x61,0x64,0x64,
+ 0x4d,0x61,0x70,0x49,0x74,0x65,0x6d,0x28,0x6e,0x65,0x77,0x43,0x69,0x72,0x63,0x6c,
+ 0x65,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0xa,0x20,0x20,0x20,
+ 0x20,0x50,0x6c,0x75,0x67,0x69,0x6e,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x69,0x64,0x3a,0x20,0x6d,0x61,0x70,0x50,0x6c,0x75,0x67,0x69,0x6e,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x20,0x22,0x6f,
+ 0x73,0x6d,0x22,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0xa,0x20,0x20,0x20,0x20,0x4d,
+ 0x61,0x70,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,
+ 0x20,0x6d,0x61,0x70,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x61,0x6e,0x63,0x68,0x6f,0x72,0x73,0x2e,0x66,0x69,0x6c,0x6c,0x3a,0x20,0x70,
+ 0x61,0x72,0x65,0x6e,0x74,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x70,0x6c,0x75,0x67,0x69,0x6e,0x3a,0x20,0x6d,0x61,0x70,0x50,0x6c,0x75,
+ 0x67,0x69,0x6e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x63,0x65,0x6e,0x74,0x65,0x72,0x3a,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,
+ 0x53,0x6f,0x75,0x72,0x63,0x65,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x2e,
+ 0x63,0x6f,0x6f,0x72,0x64,0x69,0x6e,0x61,0x74,0x65,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,
+ 0x3a,0x20,0x31,0x35,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x4d,0x61,0x70,0x54,0x79,0x70,0x65,0x3a,0x20,
+ 0x6d,0x61,0x70,0x2e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x4d,0x61,0x70,
+ 0x54,0x79,0x70,0x65,0x73,0x5b,0x31,0x5d,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x73,0x56,
+ 0x69,0x73,0x69,0x62,0x6c,0x65,0x3a,0x20,0x66,0x61,0x6c,0x73,0x65,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x61,0x70,0x54,0x79,0x70,0x65,
+ 0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x20,0x20,0x20,
+ 0x20,0x69,0x64,0x3a,0x20,0x6d,0x61,0x70,0x54,0x79,0x70,0x65,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x79,0x6c,
+ 0x65,0x3a,0x4d,0x61,0x70,0x54,0x79,0x70,0x65,0x2e,0x53,0x61,0x74,0x65,0x6c,0x6c,
+ 0x69,0x74,0x65,0x4d,0x61,0x70,0x44,0x61,0x79,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x2f,0x2f,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x50,
+ 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x53,0x6f,0x75,0x72,0x63,0x65,0x20,0x7b,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x70,0x6f,0x73,0x53,0x6f,0x75,0x72,0x63,
+ 0x65,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x63,0x74,0x69,0x76,0x65,0x3a,0x20,0x74,0x72,
+ 0x75,0x65,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,
+ 0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x64,0x3a,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x6d,0x61,0x70,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x20,0x3d,
+ 0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x2e,0x63,0x6f,0x6f,0x72,0x64,0x69,
+ 0x6e,0x61,0x74,0x65,0x20,0x2f,0x2f,0x20,0xe8,0xae,0xbe,0xe7,0xbd,0xae,0xe5,0x9c,
+ 0xb0,0xe5,0x9b,0xbe,0xe4,0xb8,0xad,0xe5,0xbf,0x83,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x53,0x6f,0x75,0x72,0x63,
+ 0x65,0x2e,0x61,0x63,0x74,0x69,0x76,0x65,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x20,
+ 0x2f,0x2f,0x20,0xe7,0xa6,0x81,0xe7,0x94,0xa8,0xe4,0xbd,0x8d,0xe7,0xbd,0xae,0xe6,
+ 0x9c,0x8d,0xe5,0x8a,0xa1,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x70,0x72,0x65,0x66,0x65,0x72,0x72,0x65,0x64,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,
+ 0x6e,0x69,0x6e,0x67,0x4d,0x65,0x74,0x68,0x6f,0x64,0x73,0x3a,0x20,0x50,0x6f,0x73,
+ 0x69,0x74,0x69,0x6f,0x6e,0x53,0x6f,0x75,0x72,0x63,0x65,0x2e,0x41,0x6c,0x6c,0x50,
+ 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x4d,0x65,0x74,0x68,0x6f,0x64,
+ 0x73,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x7d,0xa,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x50,0x69,0x6e,
+ 0x63,0x68,0x48,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x70,0x69,0x6e,0x63,
+ 0x68,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,
+ 0x72,0x67,0x65,0x74,0x3a,0x20,0x6e,0x75,0x6c,0x6c,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x41,0x63,0x74,0x69,0x76,0x65,0x43,
+ 0x68,0x61,0x6e,0x67,0x65,0x64,0x3a,0x20,0x69,0x66,0x20,0x28,0x61,0x63,0x74,0x69,
+ 0x76,0x65,0x29,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x70,0x2e,0x73,0x74,0x61,0x72,0x74,0x43,
+ 0x65,0x6e,0x74,0x72,0x6f,0x69,0x64,0x20,0x3d,0x20,0x6d,0x61,0x70,0x2e,0x74,0x6f,
+ 0x43,0x6f,0x6f,0x72,0x64,0x69,0x6e,0x61,0x74,0x65,0x28,0x70,0x69,0x6e,0x63,0x68,
+ 0x2e,0x63,0x65,0x6e,0x74,0x72,0x6f,0x69,0x64,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,
+ 0x6f,0x6e,0x2c,0x20,0x66,0x61,0x6c,0x73,0x65,0x29,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x53,0x63,0x61,0x6c,0x65,0x43,0x68,0x61,0x6e,
+ 0x67,0x65,0x64,0x3a,0x20,0x28,0x64,0x65,0x6c,0x74,0x61,0x29,0x20,0x3d,0x3e,0x20,
+ 0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x6d,0x61,0x70,0x2e,0x7a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0x20,
+ 0x2b,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x6c,0x6f,0x67,0x32,0x28,0x64,0x65,0x6c,
+ 0x74,0x61,0x29,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x6d,0x61,0x70,0x2e,0x61,0x6c,0x69,0x67,0x6e,0x43,0x6f,0x6f,
+ 0x72,0x64,0x69,0x6e,0x61,0x74,0x65,0x54,0x6f,0x50,0x6f,0x69,0x6e,0x74,0x28,0x6d,
+ 0x61,0x70,0x2e,0x73,0x74,0x61,0x72,0x74,0x43,0x65,0x6e,0x74,0x72,0x6f,0x69,0x64,
+ 0x2c,0x20,0x70,0x69,0x6e,0x63,0x68,0x2e,0x63,0x65,0x6e,0x74,0x72,0x6f,0x69,0x64,
+ 0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x29,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x52,0x6f,0x74,0x61,0x74,0x69,0x6f,0x6e,0x43,
+ 0x68,0x61,0x6e,0x67,0x65,0x64,0x3a,0x20,0x28,0x64,0x65,0x6c,0x74,0x61,0x29,0x20,
+ 0x3d,0x3e,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x70,0x2e,0x62,0x65,0x61,0x72,0x69,0x6e,0x67,
+ 0x20,0x2d,0x3d,0x20,0x64,0x65,0x6c,0x74,0x61,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x70,0x2e,0x61,0x6c,
+ 0x69,0x67,0x6e,0x43,0x6f,0x6f,0x72,0x64,0x69,0x6e,0x61,0x74,0x65,0x54,0x6f,0x50,
+ 0x6f,0x69,0x6e,0x74,0x28,0x6d,0x61,0x70,0x2e,0x73,0x74,0x61,0x72,0x74,0x43,0x65,
+ 0x6e,0x74,0x72,0x6f,0x69,0x64,0x2c,0x20,0x70,0x69,0x6e,0x63,0x68,0x2e,0x63,0x65,
+ 0x6e,0x74,0x72,0x6f,0x69,0x64,0x2e,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x29,
+ 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x67,0x72,0x61,0x62,0x50,
+ 0x65,0x72,0x6d,0x69,0x73,0x73,0x69,0x6f,0x6e,0x73,0x3a,0x20,0x50,0x6f,0x69,0x6e,
+ 0x74,0x65,0x72,0x48,0x61,0x6e,0x64,0x6c,0x65,0x72,0x2e,0x54,0x61,0x6b,0x65,0x4f,
+ 0x76,0x65,0x72,0x46,0x6f,0x72,0x62,0x69,0x64,0x64,0x65,0x6e,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x57,
+ 0x68,0x65,0x65,0x6c,0x48,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x7b,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x77,0x68,
+ 0x65,0x65,0x6c,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x2f,0x2f,0x20,0x77,0x6f,0x72,0x6b,0x61,0x72,0x6f,0x75,0x6e,0x64,0x20,0x66,0x6f,
+ 0x72,0x20,0x51,0x54,0x42,0x55,0x47,0x2d,0x38,0x37,0x36,0x34,0x36,0x20,0x2f,0x20,
+ 0x51,0x54,0x42,0x55,0x47,0x2d,0x31,0x31,0x32,0x33,0x39,0x34,0x20,0x2f,0x20,0x51,
+ 0x54,0x42,0x55,0x47,0x2d,0x31,0x31,0x32,0x34,0x33,0x32,0x3a,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x4d,0x61,0x67,0x69,
+ 0x63,0x20,0x4d,0x6f,0x75,0x73,0x65,0x20,0x70,0x72,0x65,0x74,0x65,0x6e,0x64,0x73,
+ 0x20,0x74,0x6f,0x20,0x62,0x65,0x20,0x61,0x20,0x74,0x72,0x61,0x63,0x6b,0x70,0x61,
+ 0x64,0x20,0x62,0x75,0x74,0x20,0x64,0x6f,0x65,0x73,0x6e,0x27,0x74,0x20,0x77,0x6f,
+ 0x72,0x6b,0x20,0x77,0x69,0x74,0x68,0x20,0x50,0x69,0x6e,0x63,0x68,0x48,0x61,0x6e,
+ 0x64,0x6c,0x65,0x72,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x2f,0x2f,0x20,0x61,0x6e,0x64,0x20,0x77,0x65,0x20,0x64,0x6f,0x6e,0x27,0x74,
+ 0x20,0x79,0x65,0x74,0x20,0x64,0x69,0x73,0x74,0x69,0x6e,0x67,0x75,0x69,0x73,0x68,
+ 0x20,0x6d,0x69,0x63,0x65,0x20,0x61,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x6b,0x70,
+ 0x61,0x64,0x73,0x20,0x6f,0x6e,0x20,0x57,0x61,0x79,0x6c,0x61,0x6e,0x64,0x20,0x65,
+ 0x69,0x74,0x68,0x65,0x72,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x61,0x63,0x63,0x65,0x70,0x74,0x65,0x64,0x44,0x65,0x76,0x69,0x63,0x65,
+ 0x73,0x3a,0x20,0x51,0x74,0x2e,0x70,0x6c,0x61,0x74,0x66,0x6f,0x72,0x6d,0x2e,0x70,
+ 0x6c,0x75,0x67,0x69,0x6e,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x3d,0x3d,0x20,0x22,0x63,
+ 0x6f,0x63,0x6f,0x61,0x22,0x20,0x7c,0x7c,0x20,0x51,0x74,0x2e,0x70,0x6c,0x61,0x74,
+ 0x66,0x6f,0x72,0x6d,0x2e,0x70,0x6c,0x75,0x67,0x69,0x6e,0x4e,0x61,0x6d,0x65,0x20,
+ 0x3d,0x3d,0x3d,0x20,0x22,0x77,0x61,0x79,0x6c,0x61,0x6e,0x64,0x22,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x50,0x6f,0x69,
+ 0x6e,0x74,0x65,0x72,0x44,0x65,0x76,0x69,0x63,0x65,0x2e,0x4d,0x6f,0x75,0x73,0x65,
+ 0x20,0x7c,0x20,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,0x44,0x65,0x76,0x69,0x63,0x65,
+ 0x2e,0x54,0x6f,0x75,0x63,0x68,0x50,0x61,0x64,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3a,0x20,0x50,0x6f,0x69,0x6e,0x74,0x65,0x72,
+ 0x44,0x65,0x76,0x69,0x63,0x65,0x2e,0x4d,0x6f,0x75,0x73,0x65,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x6f,0x74,0x61,0x74,0x69,0x6f,
+ 0x6e,0x53,0x63,0x61,0x6c,0x65,0x3a,0x20,0x31,0x2f,0x31,0x32,0x30,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x70,0x65,0x72,
+ 0x74,0x79,0x3a,0x20,0x22,0x7a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0x22,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x44,0x72,0x61,0x67,0x48,0x61,0x6e,0x64,0x6c,0x65,0x72,0x20,0x7b,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,
+ 0x64,0x72,0x61,0x67,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x3a,0x20,0x6e,0x75,0x6c,0x6c,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x54,0x72,0x61,0x6e,
+ 0x73,0x6c,0x61,0x74,0x69,0x6f,0x6e,0x43,0x68,0x61,0x6e,0x67,0x65,0x64,0x3a,0x20,
+ 0x28,0x64,0x65,0x6c,0x74,0x61,0x29,0x20,0x3d,0x3e,0x20,0x6d,0x61,0x70,0x2e,0x70,
+ 0x61,0x6e,0x28,0x2d,0x64,0x65,0x6c,0x74,0x61,0x2e,0x78,0x2c,0x20,0x2d,0x64,0x65,
+ 0x6c,0x74,0x61,0x2e,0x79,0x29,0xa,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x7d,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0xe5,0xae,0x9a,0xe4,
+ 0xb9,0x89,0xe4,0xba,0x86,0xe4,0xb8,0xa4,0xe4,0xb8,0xaa,0xe5,0xbf,0xab,0xe6,0x8d,
+ 0xb7,0xe9,0x94,0xae,0xef,0xbc,0x8c,0xe7,0x94,0xa8,0xe4,0xba,0x8e,0xe6,0x94,0xbe,
+ 0xe5,0xa4,0xa7,0xe5,0x92,0x8c,0xe7,0xbc,0xa9,0xe5,0xb0,0x8f,0xe5,0x9c,0xb0,0xe5,
+ 0x9b,0xbe,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x53,0x68,0x6f,0x72,0x74,
+ 0x63,0x75,0x74,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x20,0x6d,0x61,0x70,0x2e,0x7a,
+ 0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0x20,0x3c,0x20,0x6d,0x61,0x70,0x2e,0x6d,
+ 0x61,0x78,0x69,0x6d,0x75,0x6d,0x5a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x65,0x71,0x75,
+ 0x65,0x6e,0x63,0x65,0x3a,0x20,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x4b,0x65,
+ 0x79,0x2e,0x5a,0x6f,0x6f,0x6d,0x49,0x6e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x41,0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x64,
+ 0x3a,0x20,0x6d,0x61,0x70,0x2e,0x7a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0x20,
+ 0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x72,0x6f,0x75,0x6e,0x64,0x28,0x6d,0x61,0x70,
+ 0x2e,0x7a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0x20,0x2b,0x20,0x31,0x29,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x53,0x68,0x6f,0x72,0x74,0x63,0x75,0x74,0x20,0x7b,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,
+ 0x3a,0x20,0x6d,0x61,0x70,0x2e,0x7a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0x20,
+ 0x3e,0x20,0x6d,0x61,0x70,0x2e,0x6d,0x69,0x6e,0x69,0x6d,0x75,0x6d,0x5a,0x6f,0x6f,
+ 0x6d,0x4c,0x65,0x76,0x65,0x6c,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x73,0x65,0x71,0x75,0x65,0x6e,0x63,0x65,0x3a,0x20,0x53,0x74,0x61,
+ 0x6e,0x64,0x61,0x72,0x64,0x4b,0x65,0x79,0x2e,0x5a,0x6f,0x6f,0x6d,0x4f,0x75,0x74,
+ 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x41,
+ 0x63,0x74,0x69,0x76,0x61,0x74,0x65,0x64,0x3a,0x20,0x6d,0x61,0x70,0x2e,0x7a,0x6f,
+ 0x6f,0x6d,0x4c,0x65,0x76,0x65,0x6c,0x20,0x3d,0x20,0x4d,0x61,0x74,0x68,0x2e,0x72,
+ 0x6f,0x75,0x6e,0x64,0x28,0x6d,0x61,0x70,0x2e,0x7a,0x6f,0x6f,0x6d,0x4c,0x65,0x76,
+ 0x65,0x6c,0x20,0x2d,0x20,0x31,0x29,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x7d,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x43,0x6f,0x6d,0x70,0x6f,0x6e,
+ 0x65,0x6e,0x74,0x2e,0x6f,0x6e,0x43,0x6f,0x6d,0x70,0x6c,0x65,0x74,0x65,0x64,0x3a,
+ 0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,
+ 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x53,0x6f,0x75,0x72,0x63,0x65,0x2e,0x61,0x63,
+ 0x74,0x69,0x76,0x65,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x70,0x2e,0x61,0x64,0x64,0x4d,
+ 0x61,0x70,0x49,0x74,0x65,0x6d,0x28,0x63,0x69,0x72,0x63,0x6c,0x65,0x29,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,
+ 0x20,0x20,0x20,0x4d,0x61,0x70,0x43,0x69,0x72,0x63,0x6c,0x65,0x20,0x7b,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x63,0x69,0x72,0x63,0x6c,
+ 0x65,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,
+ 0x3a,0x20,0x51,0x74,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x69,0x6e,0x67,0x2e,
+ 0x63,0x6f,0x6f,0x72,0x64,0x69,0x6e,0x61,0x74,0x65,0x28,0x6c,0x61,0x62,0x65,0x6c,
+ 0x63,0x70,0x70,0x2e,0x6c,0x61,0x74,0x69,0x74,0x75,0x64,0x65,0x53,0x61,0x76,0x65,
+ 0x2c,0x6c,0x61,0x62,0x65,0x6c,0x63,0x70,0x70,0x2e,0x6c,0x6f,0x6e,0x67,0x69,0x74,
+ 0x75,0x64,0x65,0x53,0x61,0x76,0x65,0x29,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x20,0x31,0x30,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2e,0x77,0x69,0x64,0x74,0x68,
+ 0x3a,0x20,0x33,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6c,0x6f,
+ 0x72,0x3a,0x22,0x62,0x6c,0x61,0x63,0x6b,0x22,0xa,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x2f,0x2f,0xe9,0xbc,0xa0,0xe6,0xa0,0x87,0xe6,0x8c,0x89,0xe4,0xbd,
+ 0x8f,0xe5,0x90,0x8e,0xe5,0x8f,0xaf,0xe7,0xa7,0xbb,0xe5,0x8a,0xa8,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x4d,0x6f,0x75,0x73,0x65,0x41,0x72,0x65,0x61,0x20,
+ 0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6e,
+ 0x63,0x68,0x6f,0x72,0x73,0x2e,0x66,0x69,0x6c,0x6c,0x3a,0x20,0x70,0x61,0x72,0x65,
+ 0x6e,0x74,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,
+ 0x72,0x61,0x67,0x2e,0x74,0x61,0x72,0x67,0x65,0x74,0x3a,0x20,0x70,0x61,0x72,0x65,
+ 0x6e,0x74,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xa,0xa,0x20,0x20,
+ 0x20,0x20,0x7d,0xa,0x7d,0xa,0xa,0xa,
+ // /home/hzk/Software_Architecture/src/Client/res/icon/green.png
+ 0x0,0x0,0x1f,0xe2,
+ 0x89,
+ 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+ 0x0,0x0,0xc8,0x0,0x0,0x0,0xc8,0x8,0x6,0x0,0x0,0x0,0xad,0x58,0xae,0x9e,
+ 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x1f,
+ 0x9c,0x49,0x44,0x41,0x54,0x78,0x5e,0xed,0x7d,0xb,0xb8,0x1c,0x65,0x79,0xff,0xef,
+ 0x9d,0xdd,0x99,0xdd,0x44,0x2e,0x42,0x5,0xb2,0xb3,0x49,0x9,0x1a,0x39,0x3b,0x9b,
+ 0x20,0xc1,0xb4,0x58,0x40,0x91,0x8,0x69,0x2b,0xb7,0xe0,0x5,0xb1,0xa,0x96,0x94,
+ 0x7a,0x7d,0x5a,0x15,0x83,0x72,0x29,0xfe,0xc5,0xc7,0xb,0x49,0x41,0x41,0x2c,0x58,
+ 0xdb,0x52,0x81,0x20,0xa2,0xe2,0x25,0x92,0x42,0x6a,0x95,0xab,0x50,0x5,0xe9,0x9f,
+ 0x4b,0xb2,0xb3,0x89,0xa0,0x11,0xce,0xce,0x26,0x80,0x21,0x15,0x49,0xce,0xce,0xec,
+ 0xce,0x5b,0x66,0xce,0x9e,0x93,0x3d,0xe7,0xec,0xce,0xce,0xcc,0xce,0xee,0xd9,0xdd,
+ 0xf9,0xbe,0xe7,0xc9,0x73,0x4e,0xce,0x7e,0xef,0xfb,0xbd,0xef,0xef,0xfd,0x7e,0xfb,
+ 0xdd,0xbf,0x8f,0x20,0x92,0x40,0x40,0x20,0xd0,0x12,0x1,0x12,0xd8,0x8,0x4,0x4,
+ 0x2,0xad,0x11,0x10,0x4,0x11,0xb5,0x43,0x20,0xe0,0x81,0x80,0x20,0x88,0xa8,0x1e,
+ 0x2,0x1,0x41,0x10,0x51,0x7,0x4,0x2,0xe1,0x10,0x10,0x2d,0x48,0x38,0xdc,0x84,
+ 0x54,0x4c,0x10,0x10,0x4,0x89,0x49,0xa0,0x85,0x9b,0xe1,0x10,0x10,0x4,0x9,0x87,
+ 0x9b,0x90,0x8a,0x9,0x2,0x82,0x20,0x31,0x9,0xb4,0x70,0x33,0x1c,0x2,0x82,0x20,
+ 0xe1,0x70,0x13,0x52,0x31,0x41,0x40,0x10,0x24,0x26,0x81,0x16,0x6e,0x86,0x43,0x40,
+ 0x10,0x24,0x1c,0x6e,0x42,0x2a,0x26,0x8,0x8,0x82,0xc4,0x24,0xd0,0xc2,0xcd,0x70,
+ 0x8,0x8,0x82,0x84,0xc3,0x4d,0x48,0xc5,0x4,0x1,0x41,0x90,0x98,0x4,0x5a,0xb8,
+ 0x19,0xe,0x1,0x41,0x90,0x70,0xb8,0x9,0xa9,0x98,0x20,0x20,0x8,0x12,0x61,0xa0,
+ 0x17,0xfd,0x6a,0x51,0xea,0xa5,0x43,0x13,0x47,0x90,0x4d,0x19,0x92,0xe8,0x0,0xdb,
+ 0xc6,0x81,0x44,0x74,0x0,0x8,0x7,0x0,0xf6,0x81,0x4c,0x74,0x0,0x1,0x7,0x80,
+ 0x71,0x20,0x9c,0xbf,0x33,0x1f,0x8,0x80,0x1,0x8c,0x1,0xa8,0x80,0x51,0x1,0xd5,
+ 0x7f,0x77,0xfe,0xf,0x54,0x18,0x18,0x93,0x40,0x5b,0x41,0xf6,0x16,0x10,0x6d,0xa1,
+ 0x2a,0xb6,0x8e,0xa6,0xf5,0x5f,0x45,0x68,0xb6,0x50,0xe5,0x81,0x80,0x20,0x48,0xc8,
+ 0xea,0x71,0xc8,0x9e,0x91,0xc3,0x64,0x59,0xd2,0x6c,0xc6,0x62,0xd8,0xbc,0x14,0x44,
+ 0x47,0x2,0x58,0x1c,0x52,0x5d,0x50,0x31,0x1b,0xc0,0x16,0x30,0xb6,0x3a,0x3f,0x59,
+ 0x92,0xee,0x56,0x93,0xe9,0x9f,0x3e,0x42,0x8f,0x58,0x41,0x15,0x89,0xfc,0xde,0x8,
+ 0x8,0x82,0xf8,0xa8,0x21,0xf3,0xcd,0xfc,0xd1,0x35,0xf0,0xeb,0x0,0xe4,0x89,0x58,
+ 0x83,0x4d,0x47,0x82,0x90,0xf1,0x21,0xda,0x2c,0x8b,0x9,0xc2,0x4e,0x30,0x76,0x2,
+ 0xfc,0x2,0x40,0x29,0x0,0xfb,0x3,0x78,0x65,0xfd,0xa7,0x12,0x52,0xaf,0xd,0xc6,
+ 0x1d,0x20,0x6c,0x94,0xd8,0xbe,0x7f,0x34,0xb5,0xe5,0xf1,0x90,0x7a,0x84,0x58,0x3,
+ 0x2,0x82,0x20,0x2d,0xaa,0x83,0x3a,0x36,0x32,0x82,0x44,0xe2,0x34,0x30,0x9f,0x6,
+ 0xe0,0x78,0x1f,0xb5,0x66,0xf,0x80,0xc7,0x18,0x78,0x94,0x18,0xdb,0x98,0xd8,0x25,
+ 0x81,0x24,0xf1,0x4e,0x24,0x93,0x3b,0x79,0x8c,0x5f,0xb0,0xd2,0xd8,0xf9,0x1c,0x15,
+ 0xfe,0xe0,0xa5,0x4b,0x35,0x96,0xcd,0x95,0x33,0xbb,0xf7,0x37,0xcd,0xc4,0x2b,0x25,
+ 0xaa,0xed,0xf,0xb6,0xe7,0x3,0x52,0xe,0x84,0x11,0x6,0x72,0x18,0xff,0xb7,0x8f,
+ 0xf,0x7b,0x36,0x3,0xb8,0x7,0x8c,0xfb,0xc7,0x14,0xeb,0xce,0x9d,0xf4,0xe4,0xef,
+ 0x7d,0xc8,0x88,0x2c,0xd3,0x10,0x10,0x4,0x69,0x0,0xe4,0x60,0x5e,0x72,0x48,0xc2,
+ 0xaa,0x9d,0x46,0x4c,0xa7,0x83,0x5c,0x62,0x34,0x4f,0x84,0x12,0xdb,0x78,0x4c,0x92,
+ 0xf8,0x51,0xb6,0xe9,0x9,0x5b,0x91,0x1e,0xdf,0x4e,0x9b,0xb,0x61,0x6a,0xd7,0x21,
+ 0x63,0xaf,0x7d,0x75,0x92,0x95,0x85,0x44,0x76,0xba,0x46,0x9c,0x26,0x20,0xd,0x92,
+ 0xd2,0x0,0xa7,0xc9,0xe6,0xb4,0x4d,0x52,0x9a,0x60,0x27,0x1,0x1a,0x3,0xd3,0x18,
+ 0x4b,0xf6,0x98,0x64,0xf3,0x5c,0x90,0xf4,0x47,0x60,0x3e,0x98,0x13,0xb4,0x90,0x80,
+ 0x23,0x98,0x3d,0x5a,0x34,0x46,0x99,0x9,0xeb,0x61,0x4b,0xeb,0xcb,0xe9,0xcd,0x1b,
+ 0xc3,0xd8,0x19,0x57,0x99,0xd8,0x13,0x64,0x21,0x2f,0x4c,0x5b,0xe6,0xdc,0xd3,0x1c,
+ 0x42,0x30,0x70,0x7a,0xbd,0x9b,0x33,0xbd,0x3e,0xfc,0x12,0xcc,0xff,0xc1,0x9,0x3c,
+ 0x9e,0xa8,0xd2,0x13,0x41,0x7,0xc9,0x2a,0x2f,0x9b,0xcb,0xd6,0xee,0x1c,0x31,0xe7,
+ 0x20,0x49,0x23,0x70,0x7e,0xee,0x6d,0xd,0xc2,0x76,0xa9,0xa6,0xda,0xe8,0x46,0x92,
+ 0x76,0x1,0xbc,0x7,0xec,0xb6,0x30,0xfb,0x36,0xaf,0xd4,0xfc,0x18,0x48,0x5a,0xcf,
+ 0xcc,0xeb,0xcb,0x8a,0xfe,0x3f,0x71,0xad,0xf8,0x7e,0xfd,0x8e,0x2d,0x41,0x32,0x66,
+ 0x6e,0x19,0x41,0x3a,0x17,0x70,0x5b,0x8a,0x43,0x9b,0x0,0xa6,0x83,0xb0,0x81,0x81,
+ 0xd,0x65,0x59,0xbf,0xcf,0x2f,0xa0,0x4e,0xbe,0x3,0x79,0xd1,0x7e,0xa9,0x4a,0xf2,
+ 0x18,0x22,0x5a,0xe,0xc2,0x49,0x0,0x96,0x5,0x91,0x8f,0x34,0xaf,0x13,0x61,0x67,
+ 0x9e,0xac,0x79,0xfa,0x9,0x83,0x6e,0x2b,0x3f,0x70,0xf0,0xf5,0x58,0x7e,0x4f,0x35,
+ 0xd2,0x72,0x87,0x44,0x59,0xec,0x8,0xe2,0x10,0x43,0x82,0xf4,0x1,0x6,0x7f,0xa0,
+ 0x49,0xc,0x9f,0x6,0xb0,0xc1,0x96,0x68,0xc3,0xf6,0x64,0xe1,0x4e,0xbf,0x31,0xde,
+ 0x4b,0x8,0x1c,0x3,0xa2,0xe3,0x0,0x97,0x14,0xfd,0x93,0x26,0x48,0xd2,0x9a,0x2c,
+ 0x8f,0x3,0x74,0x7d,0x6d,0x67,0xf2,0xfa,0x1d,0xf3,0x1e,0x7f,0xa9,0x7f,0xc,0x9f,
+ 0x7d,0x4b,0x62,0x43,0x10,0xf,0x62,0xfc,0xce,0x21,0x5,0xb1,0xb4,0x41,0x56,0x5e,
+ 0xda,0xb0,0x8d,0xb6,0x39,0x6b,0x12,0xbe,0x92,0x5a,0xcd,0x9d,0x6,0x9b,0x56,0x82,
+ 0xb0,0x12,0x8c,0x57,0xf9,0x12,0x9a,0xed,0x4c,0xde,0x64,0x79,0x1a,0x84,0x7f,0x92,
+ 0x76,0x4b,0xd7,0x8f,0xee,0xbf,0x79,0xe7,0x6c,0x9b,0xda,0xf,0xe5,0xf,0x3d,0x41,
+ 0x3c,0x88,0xb1,0x8b,0x98,0xaf,0xa3,0x9a,0x7d,0xdd,0xe8,0xdc,0xad,0x25,0xbf,0xc1,
+ 0xc8,0x9a,0xda,0x9f,0x31,0x3b,0xa4,0xe0,0x95,0x0,0x34,0xbf,0x72,0x83,0x94,0x8f,
+ 0x9c,0x69,0x68,0xe0,0xc6,0xa4,0x89,0x2b,0x7e,0xfb,0xa,0xbd,0x3c,0x48,0xb6,0x47,
+ 0x6d,0xeb,0xd0,0x12,0xc4,0x83,0x18,0x16,0x11,0xae,0xad,0x55,0xf9,0x2b,0xdb,0xe7,
+ 0x14,0xb7,0xf9,0x1,0x74,0xfe,0xee,0xc3,0xb3,0x9c,0x4c,0xbc,0xb,0xc0,0x4a,0x6,
+ 0xde,0xec,0x47,0x66,0x28,0xf2,0x10,0x76,0x93,0x8d,0xdb,0x4a,0x8a,0xbe,0xa,0x4,
+ 0x67,0x71,0x32,0x76,0x69,0x28,0x9,0x92,0x35,0xf3,0x5f,0x6f,0x31,0xc6,0xf8,0x57,
+ 0xbb,0xc6,0x5f,0xf4,0x4b,0xc,0x77,0xa,0x96,0x12,0xe7,0x31,0xd1,0x79,0x0,0xe,
+ 0x89,0x5d,0xed,0x98,0x70,0x98,0xf8,0xf7,0x60,0xdc,0x20,0xc9,0x7f,0xb8,0x68,0x94,
+ 0x46,0x9d,0xf5,0x9e,0xd8,0xa4,0xa1,0x23,0xc8,0xbc,0x3d,0xb9,0x13,0xa4,0x4,0xdd,
+ 0x3d,0x35,0x82,0x74,0x83,0x5d,0xb3,0x3f,0xeb,0x97,0x18,0x99,0xca,0x12,0x8d,0xa8,
+ 0x7a,0x1e,0xe0,0x12,0xc3,0x59,0xe1,0x16,0xc9,0x41,0xc0,0xe9,0x7a,0xd9,0xf4,0x55,
+ 0x45,0x51,0xae,0xde,0x46,0x8f,0xee,0x8a,0x3,0x28,0xc3,0x4a,0x90,0x6f,0x0,0x58,
+ 0x8,0x4,0x23,0x46,0xd6,0xcc,0x2f,0x65,0xe0,0x3c,0x80,0x1d,0x62,0xcc,0x89,0x43,
+ 0x5,0x8,0xe5,0x23,0xe1,0x39,0x6,0x5d,0x5d,0x4b,0x4a,0xd7,0x3f,0x4b,0x9b,0x76,
+ 0x84,0xd2,0x31,0x20,0x42,0x43,0x47,0x90,0x30,0xb8,0x2f,0xe0,0x25,0xaf,0xa9,0x59,
+ 0xb5,0x4f,0x0,0xf8,0x10,0x0,0x29,0x8c,0x8e,0x58,0xca,0x10,0x76,0x0,0x7c,0xf5,
+ 0xdc,0x64,0xf5,0xaa,0x27,0xe9,0x49,0x67,0xf7,0xf1,0xd0,0xa5,0x58,0x13,0x64,0x11,
+ 0x2f,0x4a,0xed,0xae,0x26,0xcf,0x7,0x93,0x43,0x8e,0x83,0x86,0x2e,0xba,0xbd,0x73,
+ 0xe8,0x7f,0x98,0xe9,0xaa,0x72,0xaa,0x70,0x73,0xef,0x8a,0xec,0x4d,0x49,0xb1,0x25,
+ 0x48,0xa6,0x92,0x3f,0x9b,0x88,0xcf,0x7,0xf0,0xfa,0xde,0x40,0x3d,0xc4,0xa5,0x4c,
+ 0xae,0xad,0xf0,0x8f,0xec,0x2a,0xae,0xda,0x3e,0xa7,0x78,0xcf,0xb0,0x78,0x1b,0x3b,
+ 0x82,0xb8,0x83,0xf8,0x24,0x9c,0x56,0xc3,0xd9,0x77,0x25,0x52,0x48,0x4,0x9c,0xdd,
+ 0x2b,0x1e,0x95,0xe7,0xba,0x84,0x9c,0xf8,0xf2,0x33,0xb4,0xe9,0xa9,0x90,0xea,0xfb,
+ 0x46,0x2c,0x3e,0x4,0xe1,0x13,0x92,0xaa,0xf5,0xec,0x1a,0x80,0x57,0xf7,0xd,0xfa,
+ 0x83,0x6e,0x88,0x37,0x4b,0x9e,0x23,0xd0,0xa7,0x4b,0x4a,0xe1,0xeb,0x83,0xec,0x66,
+ 0x2c,0x8,0x32,0xcf,0xcc,0x1f,0x4d,0x84,0x35,0xc4,0xbc,0x7c,0x90,0x83,0xd5,0xb7,
+ 0xb6,0x7b,0x6f,0x88,0xbc,0x76,0xae,0x6c,0xad,0x1e,0xd4,0x41,0xfc,0xd0,0x13,0x24,
+ 0x6b,0xe6,0x3f,0xc4,0xe0,0xb5,0x0,0xf6,0xeb,0xdb,0xa,0x36,0xe4,0x86,0x11,0x70,
+ 0xaf,0xd,0xfb,0x82,0xb2,0xb2,0xe5,0x97,0x83,0xe6,0xea,0xd0,0x12,0x64,0x3e,0x2f,
+ 0x3e,0xd0,0xb6,0xec,0x35,0x0,0xde,0x3f,0x68,0x41,0x19,0x48,0x7b,0x9b,0x75,0xb7,
+ 0xa6,0xb6,0x2c,0x3b,0x9,0xbc,0xba,0xa4,0x14,0x6f,0x18,0x24,0xff,0x86,0x92,0x20,
+ 0xaa,0xa5,0x9d,0x4,0x86,0xd3,0x6a,0x88,0x19,0xaa,0x7e,0xab,0x8d,0x44,0x5f,0x32,
+ 0xe4,0xc2,0x5,0xfd,0x66,0x56,0x2b,0x7b,0xfa,0x92,0x20,0xd9,0x6a,0xee,0x54,0x9b,
+ 0xe9,0x7d,0x12,0xf3,0x1d,0x41,0xbf,0x71,0x32,0xa6,0xf6,0xb7,0x4,0xfc,0xeb,0xa0,
+ 0x4,0x20,0x96,0x76,0x12,0xfd,0xa8,0x96,0x4c,0xbe,0x67,0x7,0xf5,0xff,0xd9,0x93,
+ 0xbe,0x23,0xc8,0xfc,0x4a,0xee,0x8,0x5b,0xa2,0x8d,0x60,0xa8,0x4e,0xe5,0x91,0x65,
+ 0xa8,0xbf,0x25,0x7f,0x5b,0xae,0x33,0x56,0xfe,0x12,0x62,0xfe,0x42,0x2c,0x2b,0x5d,
+ 0xbf,0x39,0xed,0x3d,0x70,0x77,0xe,0x39,0xfe,0xc2,0xae,0x98,0xa7,0xef,0xd8,0xf7,
+ 0xa9,0x67,0xfb,0xcd,0xf4,0x46,0x7b,0xfa,0x8e,0x20,0x6a,0x45,0xbb,0x5,0x84,0xbf,
+ 0x72,0x8c,0x24,0xf0,0xc3,0x25,0xa5,0x78,0xb4,0x1f,0x0,0xb3,0xa6,0x76,0x35,0x3,
+ 0x1f,0xf3,0x93,0x57,0xe4,0xe9,0x13,0x4,0x18,0xbf,0xa9,0xd9,0xf6,0x89,0x3b,0xe6,
+ 0x6c,0xf9,0x4d,0x9f,0x58,0x34,0xc3,0x8c,0x3e,0x24,0x48,0xee,0xa,0x10,0x5d,0x40,
+ 0x44,0xdf,0xab,0x26,0x93,0x1f,0xd9,0x41,0x8f,0xb7,0xfd,0x86,0x51,0x4d,0xed,0x96,
+ 0x97,0x2f,0x50,0x73,0x49,0x25,0xd2,0xc0,0x21,0xf0,0x92,0x2d,0xd3,0x1b,0xb6,0x53,
+ 0xc1,0xb9,0xa6,0xa8,0xef,0x52,0xdf,0x11,0xc4,0x41,0xc8,0x59,0xed,0xf6,0xbb,0x5d,
+ 0x41,0xb5,0xb4,0xdb,0xc1,0x38,0xb5,0xef,0x90,0x15,0x6,0x4d,0x22,0xc0,0xc,0x50,
+ 0x9b,0x9a,0x26,0x81,0xde,0x30,0xaa,0x14,0x1e,0xea,0x37,0xd8,0xfa,0x92,0x20,0x7e,
+ 0x41,0xca,0x98,0xf9,0xbb,0x8,0x62,0xf1,0xcf,0x2f,0x5e,0xb3,0x9a,0xaf,0xcd,0xde,
+ 0x14,0xd7,0x36,0x92,0xde,0x68,0xc8,0x9b,0x1f,0x98,0x55,0x3b,0xa7,0x15,0x3e,0xb0,
+ 0x4,0xc9,0x98,0xda,0xd7,0x68,0x7c,0x7b,0xba,0x48,0x43,0x84,0x40,0xcd,0xae,0xbe,
+ 0x66,0x47,0xfa,0x57,0xbf,0xee,0x17,0x97,0x66,0x95,0x20,0xd9,0x4a,0xfe,0x4c,0x3b,
+ 0xc1,0xd5,0x72,0x52,0xff,0x41,0x10,0x40,0xea,0xab,0xe3,0x5f,0xb,0x22,0x23,0xf2,
+ 0xe,0xe,0x2,0x52,0xb5,0x36,0x3f,0xc8,0x45,0x1a,0xdd,0xf4,0x6c,0xd6,0x8,0xd2,
+ 0xd8,0x2,0xd8,0x35,0x3e,0xcc,0xef,0x71,0xd8,0x6c,0x65,0xe4,0x9d,0x4c,0xd2,0x77,
+ 0xbb,0x9,0x8a,0xd0,0xdd,0x65,0x4,0xa6,0x77,0xb7,0xa6,0xff,0x9f,0x60,0x60,0x4f,
+ 0xed,0x48,0x63,0xbf,0xad,0xcf,0x77,0xd9,0x92,0xb6,0xea,0x67,0x85,0x20,0xd9,0xaa,
+ 0xf6,0x3e,0xb6,0x71,0xe3,0x84,0x75,0x55,0x39,0x31,0xcf,0xcf,0xd1,0x4d,0xd5,0xd2,
+ 0x56,0x80,0xf1,0xe3,0xb6,0x5e,0x39,0x19,0xa6,0x81,0xee,0x67,0xa0,0xe8,0x4b,0x6f,
+ 0xaf,0x33,0xf9,0xe9,0xbb,0xf7,0xda,0xa6,0x88,0xcb,0x6b,0xba,0x64,0x42,0xf8,0x99,
+ 0xb9,0xcb,0x3e,0xf9,0xf9,0x83,0xb6,0xbc,0x18,0x71,0x71,0x81,0xd4,0xf5,0x9c,0x20,
+ 0xf3,0x2b,0x23,0xaf,0xb3,0x89,0x7e,0xe,0xd0,0xf8,0x99,0x6f,0xc2,0x45,0x86,0xac,
+ 0x3b,0xdb,0x42,0x3c,0xd3,0x7c,0x33,0xff,0x6,0x9b,0xf8,0x27,0xf5,0x7b,0x67,0xdb,
+ 0x65,0x9f,0xfa,0xf9,0x40,0x55,0x32,0x6,0x98,0x66,0x1c,0xb6,0x70,0x2b,0xd1,0x40,
+ 0xf9,0x11,0x2c,0x44,0x4d,0x73,0x33,0xdd,0x9e,0x51,0xe6,0xbc,0x63,0x36,0xdf,0x3d,
+ 0xe9,0x39,0x41,0x54,0x33,0xf7,0x53,0x80,0xde,0xe2,0x7e,0xc9,0x13,0xbe,0x5b,0x96,
+ 0x75,0xe7,0xbe,0x29,0xcf,0x34,0x7e,0x66,0xdc,0xde,0x0,0xb8,0x97,0x3e,0xf,0x6f,
+ 0x8a,0x19,0x1,0x5c,0x77,0xdb,0xad,0xb8,0x33,0xdf,0x56,0x4e,0x15,0xcf,0x9c,0xad,
+ 0xa0,0xf7,0x94,0x20,0x6a,0x65,0x7c,0x11,0x70,0xbc,0xe1,0xa0,0x5f,0x57,0x6d,0x6b,
+ 0x85,0x9f,0x19,0xb,0xd5,0xca,0xad,0x17,0x27,0x0,0x67,0xab,0x8a,0xcc,0x7e,0xb9,
+ 0xc4,0xf8,0x74,0x29,0xa5,0x7f,0x7e,0x36,0x2c,0xe9,0x19,0x41,0x32,0xa6,0x76,0xe,
+ 0x1,0x37,0x4d,0x38,0x49,0x4c,0xef,0x2a,0xa5,0xa,0x6d,0x7,0xdb,0x6a,0x25,0x7f,
+ 0x39,0x88,0x2f,0x9a,0xd,0x70,0xfa,0xb9,0xcc,0x81,0x1d,0x53,0x35,0x1,0xb5,0x4d,
+ 0x23,0xe2,0x4a,0x48,0x36,0x4e,0x19,0x4d,0xeb,0x77,0xf4,0x3a,0x26,0x3d,0x21,0xc8,
+ 0x42,0x5e,0xfa,0x4a,0xd3,0xaa,0x3c,0x38,0x79,0x97,0x2d,0x63,0xad,0x91,0xd2,0xdb,
+ 0x56,0xfa,0xfa,0xc5,0xa,0xeb,0x7c,0x81,0x12,0xb3,0xee,0x89,0xdb,0x37,0xb1,0x9d,
+ 0x25,0x6a,0x5f,0xe8,0xc,0x7c,0x26,0x6,0x9e,0xa8,0xc9,0x89,0x15,0x7e,0x26,0x73,
+ 0xa2,0x74,0xb6,0x27,0xf0,0x66,0x2a,0xda,0xe7,0x89,0xf0,0xf,0xae,0xe1,0x84,0x7,
+ 0xd,0x59,0x77,0x9e,0x8,0xf0,0x4c,0x19,0x53,0x7b,0x3d,0x1,0xce,0x6b,0x48,0x1,
+ 0xaf,0xe3,0x19,0x20,0xa6,0xf8,0xf9,0xea,0xf4,0x42,0xa9,0x53,0xf9,0x76,0x41,0xe8,
+ 0xbf,0xcf,0x6f,0x34,0x14,0xfd,0xdc,0x5e,0x9a,0xd5,0x75,0x82,0xa8,0x66,0xfe,0x28,
+ 0x80,0x9d,0xd6,0x23,0xed,0x38,0xc6,0x12,0xbf,0xa3,0x9c,0x2c,0x7e,0xdf,0xcb,0x49,
+ 0xe7,0xbe,0xaa,0x97,0x2c,0x79,0x23,0x1,0x27,0xf4,0x12,0x8c,0x5e,0x97,0xd5,0x79,
+ 0x37,0x69,0x80,0xbe,0xc,0xfc,0x80,0xeb,0x87,0xf0,0x36,0x7d,0xcc,0x48,0x17,0xae,
+ 0xf1,0xa3,0x2e,0x8a,0x3c,0xdd,0x27,0x48,0x25,0xf7,0x4d,0x10,0xbd,0xc7,0x35,0x96,
+ 0xf9,0x16,0x23,0x55,0x7c,0x6f,0x3b,0xc3,0x55,0x53,0xbb,0x16,0xc0,0x47,0xda,0xe5,
+ 0x9b,0xf1,0xb9,0x1f,0x80,0x3,0x2b,0x15,0x2,0x3d,0x43,0xc0,0x1f,0xdf,0xf7,0x80,
+ 0xa4,0x15,0xbd,0xda,0xb3,0xd5,0x55,0x82,0x64,0xaa,0xb9,0xb7,0x93,0x4d,0xdf,0xab,
+ 0x3,0x3c,0x6,0xd0,0xb1,0x86,0x52,0xf8,0xff,0x5e,0x80,0xab,0x55,0xed,0x2c,0xd8,
+ 0xb8,0xb5,0x67,0x41,0x11,0x5,0xf5,0x2f,0x2,0x2d,0x9,0xc3,0x77,0x19,0x4a,0xf1,
+ 0xc4,0x5e,0x18,0xde,0x55,0x82,0xbc,0xbc,0xf2,0xfd,0xc0,0xcb,0x2b,0xdf,0xc7,0x8e,
+ 0x37,0x1e,0xf8,0x42,0x39,0xa5,0x5f,0xda,0xae,0x6b,0xb5,0xdb,0x92,0x9d,0xdd,0x9c,
+ 0xed,0xdf,0xf4,0x13,0xad,0xc5,0x8c,0xdd,0x2,0xbd,0xa8,0x30,0x7d,0x53,0x86,0x8d,
+ 0x4f,0x19,0x69,0xfd,0x8a,0x6e,0xdb,0xd3,0x35,0x82,0x64,0x4d,0xed,0xc3,0xc,0x5c,
+ 0x57,0x77,0x40,0x57,0xe4,0xd4,0xb1,0xed,0xae,0xcc,0xcf,0x56,0xb4,0x4b,0x99,0xf0,
+ 0xb9,0xb6,0x4e,0x37,0x92,0x63,0xc2,0x83,0xd6,0xf,0x55,0xb6,0x55,0x27,0x32,0xf4,
+ 0x39,0x2,0xcd,0x5b,0x92,0x5d,0x12,0xf3,0xf1,0xa3,0xa9,0xe2,0x13,0xdd,0xb4,0xbe,
+ 0x2b,0x4,0x71,0x9e,0x56,0xae,0x58,0x73,0x1e,0x72,0xde,0xef,0x76,0x5b,0xf,0xe0,
+ 0xfd,0x65,0x45,0xff,0x37,0x2f,0x47,0xe,0xa9,0x68,0x4b,0x92,0x12,0x7e,0xc6,0x8c,
+ 0xfd,0x3d,0x1d,0x1e,0xa6,0x96,0x63,0x98,0x7c,0xe9,0x66,0x2d,0x6d,0xad,0xfb,0x56,
+ 0x43,0xd1,0xbb,0x7a,0x92,0xb4,0x2b,0x4,0xc9,0x9a,0xda,0xf9,0xc,0x7c,0xd9,0xf1,
+ 0x8b,0x8,0xf7,0x96,0x64,0xbd,0xed,0x6c,0x94,0x6a,0x6a,0xce,0x7d,0x49,0x7f,0x3d,
+ 0x3b,0x38,0x8b,0x52,0xfb,0xf,0x1,0x7f,0x23,0x76,0x2,0x9f,0x5b,0x52,0x8a,0x93,
+ 0x1b,0x5f,0xa3,0xf6,0x23,0x72,0x82,0xb8,0x8b,0x82,0x66,0xe5,0x61,0x10,0x16,0xb9,
+ 0x4,0x61,0xfb,0xcc,0x52,0x6a,0xcb,0x6d,0x6d,0x6,0xe6,0x67,0xc0,0x46,0xa0,0x33,
+ 0x21,0x51,0x3,0x21,0xf4,0xf5,0x39,0x2,0xad,0xe7,0xc4,0xb7,0x56,0xe5,0xc4,0xf1,
+ 0xdd,0x5a,0x40,0x8c,0x9c,0x20,0x19,0x2b,0x7f,0x31,0x31,0x7f,0xd1,0x85,0x9b,0xb1,
+ 0xde,0x48,0xe9,0x67,0xb4,0x83,0x5e,0x35,0x35,0x67,0x60,0xee,0xe,0xe6,0x3d,0x93,
+ 0xbf,0x2f,0x95,0x76,0x5a,0x86,0xe6,0xf3,0xa1,0x87,0xc3,0xef,0xf8,0x92,0xf8,0x1a,
+ 0x43,0x2e,0x76,0xe5,0x46,0x9b,0x48,0x9,0x72,0x10,0xe7,0xe7,0xc9,0xa6,0xfd,0x30,
+ 0x88,0xe6,0x8f,0x77,0xaf,0xe8,0xa4,0x92,0x5c,0xf8,0xa9,0x67,0xeb,0x61,0x6a,0xce,
+ 0x73,0x67,0x9e,0xe3,0x93,0x71,0xf9,0x21,0xec,0xb0,0xf,0x7d,0xd,0xef,0xd9,0x77,
+ 0x91,0xc5,0x9c,0x38,0xb2,0x9c,0xda,0xa4,0x47,0x5d,0x62,0xa4,0x4,0xc9,0x8e,0xe5,
+ 0x3e,0xc1,0x12,0x7d,0xa9,0x5e,0xa1,0x6f,0x30,0x94,0xc2,0xaa,0x76,0x6,0xab,0xa6,
+ 0xe6,0xac,0xb2,0x1f,0x13,0xcb,0x96,0x43,0x10,0xa4,0x5d,0xf5,0x98,0xf1,0x39,0x11,
+ 0x81,0xdd,0x83,0x31,0xd3,0x12,0xd3,0x1a,0x23,0x55,0xb8,0x38,0xb0,0xc2,0x36,0x2,
+ 0x91,0x12,0x44,0x35,0xb5,0x7b,0x1,0x1c,0xef,0x94,0x69,0x43,0x3a,0x7a,0xbb,0xb2,
+ 0xf9,0x61,0xaf,0xf2,0x7d,0x6f,0x46,0x1c,0xc2,0xc6,0x63,0x12,0x97,0x61,0xf6,0x2d,
+ 0xea,0xda,0xea,0xa5,0x8f,0x50,0xc2,0x9e,0xda,0xd2,0xa8,0x8f,0xe9,0x46,0x46,0x10,
+ 0xd5,0xca,0x1d,0xb,0x26,0xf7,0xca,0x16,0x66,0xdc,0x51,0x4e,0xe9,0xa7,0xb4,0xc3,
+ 0x27,0x63,0x6a,0x77,0x7,0xda,0x6f,0x35,0x8c,0x95,0x69,0x18,0x7d,0x6a,0x17,0xf8,
+ 0x2e,0x7d,0x4e,0xc0,0x27,0x4a,0x8a,0x7e,0x55,0x94,0xea,0x23,0x24,0x88,0xb6,0x16,
+ 0x8c,0x4f,0x8d,0x8f,0x16,0x78,0x55,0xbb,0x4b,0xa7,0x9d,0x1b,0x4d,0x98,0xf8,0x3b,
+ 0xed,0x9d,0x11,0xfd,0x90,0xf6,0x18,0xc5,0x21,0x47,0x43,0x3d,0x68,0xf5,0xa5,0xc2,
+ 0x78,0xd4,0x48,0xe9,0x47,0x45,0x89,0x46,0x34,0x4,0x61,0x48,0xaa,0xa5,0x39,0x3,
+ 0xa4,0xc3,0x1,0x6c,0xab,0xed,0x94,0x97,0xec,0x98,0xe7,0x7d,0x73,0xb7,0x6a,0xe5,
+ 0x37,0x82,0xf9,0x2f,0xa2,0x74,0x26,0x76,0xba,0xe2,0xf4,0xdd,0xe1,0xd3,0x57,0x66,
+ 0x3a,0x27,0xca,0xd7,0x76,0x23,0x21,0x48,0xa6,0x92,0x7b,0xbb,0x73,0x97,0xae,0x5b,
+ 0x41,0x19,0x57,0x18,0x29,0xdd,0x6d,0x49,0x5a,0x25,0x75,0x6c,0xf1,0xe9,0x90,0xec,
+ 0xf5,0xb1,0xab,0xd0,0x51,0x3b,0xec,0xb3,0xd2,0x44,0x5d,0xec,0xac,0xeb,0xf3,0xea,
+ 0x96,0x32,0x7e,0x6c,0xa4,0xf4,0xc8,0xbe,0x78,0xa3,0x21,0x88,0xa9,0xdd,0x48,0xc0,
+ 0xfb,0xfc,0xe,0xce,0xc5,0x65,0xd3,0x11,0x54,0x31,0x31,0x76,0x69,0xd,0x22,0xf1,
+ 0x71,0x86,0x5c,0x74,0x66,0x47,0x3b,0x4e,0x1d,0x13,0xa4,0xfe,0xd4,0xd9,0xaf,0x0,
+ 0x1c,0x8,0xe6,0x8d,0x46,0xaa,0xf8,0x56,0x2f,0xab,0x16,0xf0,0x88,0x5a,0xb3,0xa4,
+ 0x2d,0x0,0xf6,0xe9,0xd8,0xfa,0x38,0x2b,0x10,0x4,0x69,0x19,0x7d,0x22,0xba,0xbc,
+ 0x24,0x17,0x2e,0x89,0xa2,0x7a,0x74,0x4c,0x90,0x4c,0x25,0xff,0x5e,0x22,0xbe,0xd9,
+ 0x35,0x86,0xf0,0x29,0x43,0xf6,0xde,0x82,0x9c,0x35,0xf3,0x1f,0x64,0xf0,0x3f,0x47,
+ 0x61,0xfc,0x30,0xe8,0x10,0xf5,0xbc,0x83,0x28,0xb6,0x0,0x8f,0x80,0x4d,0x25,0x45,
+ 0x77,0x37,0xca,0x76,0x9a,0x3a,0x26,0x88,0x6a,0xe6,0x6e,0x6,0xc8,0x3d,0x25,0x48,
+ 0xa0,0xa3,0x4a,0x4a,0xe1,0x51,0xcf,0xf1,0x47,0x45,0xdb,0x0,0x42,0xdb,0x29,0xe0,
+ 0x4e,0x1d,0x13,0xf2,0x71,0x40,0xa0,0xf5,0x20,0x8c,0x6d,0xe9,0xad,0xe5,0xf4,0x66,
+ 0xe7,0x4e,0x83,0x8e,0x52,0x47,0x4,0x99,0xd2,0xbd,0x2,0x3f,0x66,0x28,0xc5,0xa5,
+ 0xde,0xe4,0x38,0x3c,0x7,0x4a,0x44,0xbe,0x1d,0xa0,0x23,0x4,0x84,0xf0,0x60,0x21,
+ 0xe0,0x77,0x62,0x42,0xc2,0xb5,0x46,0x52,0xff,0xbb,0x4e,0x9d,0xeb,0x88,0x20,0x53,
+ 0xba,0x57,0xa0,0x2f,0x19,0x8a,0xf7,0xeb,0xa5,0xaa,0xa5,0x7d,0x12,0x8c,0x7f,0xec,
+ 0xd4,0x68,0x21,0x3f,0xf3,0xee,0xe1,0xd8,0x60,0xe2,0x97,0x20,0xc0,0xd3,0x92,0xfc,
+ 0x62,0x6e,0x94,0x46,0xf7,0x74,0x82,0x4d,0x47,0x4,0x69,0xec,0x5e,0xa1,0x6a,0xbf,
+ 0xd1,0x98,0xbb,0xc5,0xf3,0xf1,0x13,0xd5,0xd4,0xee,0x3,0xf0,0xa6,0x4e,0xc,0x16,
+ 0xb2,0x2,0x1,0xbf,0xfb,0x56,0x89,0xe9,0xac,0x52,0xaa,0xe0,0x63,0x31,0xba,0x35,
+ 0xa6,0xa1,0x9,0xf2,0x2a,0x1e,0xd9,0x57,0xb1,0xa4,0x6d,0xee,0xec,0x15,0xb0,0xc3,
+ 0x50,0xf4,0x79,0x5e,0xa1,0x9b,0x6f,0xe6,0x8f,0xb6,0xc1,0xbf,0x10,0xe1,0x9d,0x86,
+ 0x80,0x18,0xa5,0x87,0xa8,0x12,0xfe,0x9a,0x11,0x2,0xd6,0x95,0x14,0xdd,0x5d,0x7e,
+ 0x8,0x9b,0x42,0x13,0x24,0x6b,0x2d,0x7e,0xb,0xb3,0x3d,0xbe,0x95,0x9d,0xf1,0x6d,
+ 0x23,0xa5,0xbf,0xdb,0x73,0xfc,0x61,0xe5,0x2f,0x0,0x73,0xd7,0xf,0xd9,0x87,0x5,
+ 0x42,0xc8,0xd,0xe,0x2,0xbe,0xef,0x13,0x63,0x18,0x46,0x4a,0xcf,0x76,0xe2,0x59,
+ 0x68,0x82,0xa8,0x15,0xed,0x42,0x10,0xd6,0xb8,0x85,0x13,0x5f,0x6c,0xc8,0xc5,0xf1,
+ 0xdf,0x5b,0x24,0xd5,0xd2,0x7e,0x8,0xc6,0xca,0x4e,0x8c,0x15,0xb2,0x2,0x81,0xa0,
+ 0x8,0xd8,0x35,0x5e,0xee,0xf7,0x41,0xd8,0x66,0xba,0x43,0x13,0x24,0x63,0xe5,0xbf,
+ 0x4b,0xcc,0xef,0x74,0x94,0xda,0x12,0x9d,0xbc,0x3d,0x59,0xb8,0xb3,0xd,0x41,0x9e,
+ 0x7,0xe3,0x8f,0x82,0x3a,0x28,0xf2,0x37,0x47,0xc0,0x5f,0x27,0x23,0x26,0xe8,0x79,
+ 0x80,0xd1,0xe9,0xcd,0xf0,0xa1,0x9,0xa2,0x9a,0x9a,0x33,0xfe,0x38,0xd4,0x9,0x41,
+ 0xc2,0xb2,0xb3,0xcf,0xbc,0x62,0x8b,0xd1,0x2a,0x1c,0xce,0xb3,0xce,0x52,0x82,0xee,
+ 0x8e,0x49,0xb8,0x82,0xb9,0x29,0x6a,0x7a,0x30,0xbc,0x26,0x72,0xfb,0xc5,0x8d,0xe9,
+ 0x3f,0x8d,0x54,0xe1,0x2f,0xc3,0x15,0x12,0xf2,0x6e,0xf0,0x79,0x7b,0x72,0xb,0xa5,
+ 0x4,0xfd,0xa6,0x5e,0xe8,0x73,0x86,0xa2,0x1f,0xec,0xd9,0x7a,0x54,0x72,0x97,0x81,
+ 0xe8,0x33,0x61,0x8d,0x1c,0x6a,0x39,0xbf,0x81,0x1e,0x6a,0x10,0x82,0x3b,0x17,0x0,
+ 0xb6,0x97,0xc,0x45,0xf,0xbd,0xad,0x29,0x54,0xb,0xa2,0x56,0xb4,0xb3,0x40,0x93,
+ 0xd7,0x83,0xfe,0xc4,0x50,0xf4,0x15,0x5e,0x2e,0x6,0x3e,0x18,0x15,0x1c,0xaf,0xc1,
+ 0x96,0x10,0x33,0x59,0x9d,0xc7,0xcf,0x83,0x31,0x9d,0x8c,0x43,0x42,0x11,0x24,0x6b,
+ 0xe5,0xbf,0xc8,0xcc,0xe3,0xe7,0x7f,0x89,0xaf,0x34,0xe4,0xe2,0x27,0x3d,0x5b,0x10,
+ 0x53,0xb3,0x0,0x24,0x3b,0x47,0x61,0x48,0x35,0x8,0x82,0x74,0x37,0xb0,0xcc,0x9f,
+ 0x35,0x52,0xc5,0xcb,0xc2,0x14,0x12,0x8a,0x20,0x99,0x8a,0x76,0x13,0x11,0xce,0xa9,
+ 0x17,0xf8,0xb7,0x86,0xa2,0x5f,0x2f,0xc6,0x1f,0x61,0xe0,0x17,0x32,0x1d,0x21,0xe0,
+ 0xf3,0x8b,0x85,0x81,0x7b,0xca,0x8a,0xbe,0x3c,0x4c,0x59,0xa1,0x8,0x32,0xf5,0x21,
+ 0x4e,0x3a,0xbe,0x2c,0x17,0xee,0x6f,0x55,0x78,0xd6,0xcc,0x9d,0xcb,0xa0,0x6f,0x84,
+ 0x31,0x4e,0xc8,0x78,0x20,0x10,0xa0,0x13,0x1e,0xb,0x1c,0xbd,0xc8,0x42,0xd8,0x6e,
+ 0xc8,0x7a,0x26,0xc,0xe,0x21,0x9,0xa2,0x15,0x1,0x8c,0x38,0x5,0x5a,0x26,0x65,
+ 0x9e,0xdb,0xa7,0xb0,0xbd,0x55,0xe1,0xaa,0x18,0xa0,0x87,0x89,0x4b,0x7b,0x19,0x41,
+ 0x90,0x40,0xb7,0xdb,0x2b,0x72,0xea,0x80,0x76,0x97,0xa7,0x37,0x3,0x3d,0x2c,0x41,
+ 0xfe,0x0,0xe0,0x15,0x0,0x7e,0x6f,0x28,0xba,0xe7,0x65,0xd3,0xaa,0x99,0xff,0x6,
+ 0xc0,0x3d,0x7d,0x36,0xab,0x7d,0xed,0x1a,0xf0,0x1c,0x3e,0xbb,0x16,0x3,0xee,0x65,
+ 0x7b,0xf3,0x3,0x7c,0x49,0x10,0x70,0x4c,0x49,0xd1,0x7f,0xde,0x5e,0xe9,0xd4,0x1c,
+ 0x81,0x9,0x52,0x7f,0x90,0xf3,0x85,0xba,0x9a,0x5f,0x1a,0x8a,0xfe,0xa7,0x5e,0x85,
+ 0x8a,0x19,0xac,0xa0,0x21,0xf1,0x91,0x5f,0x10,0x64,0x26,0x48,0x6d,0x30,0xf1,0x73,
+ 0xd3,0x4e,0x24,0x2d,0xc8,0xbc,0x4a,0x7e,0xb1,0x44,0xbc,0x69,0x5c,0x19,0xdd,0x62,
+ 0x28,0x5,0xcf,0x27,0xd5,0x54,0x53,0x73,0xd6,0x4b,0x16,0xfa,0x8,0x7b,0x6c,0xb3,
+ 0x88,0xfa,0xde,0x83,0xd0,0x13,0xad,0x31,0xe4,0xe0,0x37,0x2f,0x6,0x6e,0x41,0xa6,
+ 0x6e,0x52,0x6c,0x3f,0x7d,0xa6,0x9a,0x9a,0x78,0xda,0xa6,0x7,0xf1,0x17,0x45,0xb4,
+ 0x41,0x80,0xf0,0x43,0x43,0xd6,0xdf,0x16,0x14,0xa7,0xe0,0x4,0x19,0xd3,0x4e,0x61,
+ 0x9,0x1b,0xc6,0x1b,0x10,0x5c,0x68,0xc8,0x7a,0xcb,0x3,0x50,0xd3,0x56,0xdc,0x83,
+ 0xda,0x26,0xf2,0xb,0x4,0x82,0x21,0xe0,0x39,0x26,0xa1,0xa2,0xa1,0x14,0xb4,0x60,
+ 0xa,0x43,0x6c,0x35,0xc9,0x56,0x46,0xde,0xc9,0x24,0x7d,0xb7,0xde,0xc5,0xfa,0xa8,
+ 0xa1,0x14,0xbe,0xda,0xaa,0x50,0xb1,0x7,0x2b,0x68,0x38,0x7c,0xe6,0xf,0x30,0x38,
+ 0xf5,0xa9,0x71,0x38,0xb2,0xb5,0xe9,0xab,0x1a,0x8a,0x1e,0xb8,0x41,0x8,0x2c,0x90,
+ 0xa9,0xe6,0xcf,0x26,0x9b,0xd7,0x39,0x88,0xb6,0x7b,0x5a,0x4d,0xad,0x68,0x67,0x80,
+ 0xc4,0xc3,0x38,0xc3,0x51,0xfb,0xfa,0xd4,0x8b,0x0,0x3,0x38,0x45,0xde,0x33,0x67,
+ 0x1b,0x6d,0x1b,0xb,0xe2,0x49,0x70,0x82,0x98,0xb9,0xf7,0x13,0xe8,0x5f,0x5c,0x82,
+ 0x30,0x9d,0x5d,0x4e,0x15,0xbe,0xd9,0xaa,0x40,0xb1,0x48,0xe8,0x33,0x14,0x1,0x82,
+ 0xec,0x53,0x63,0x8c,0xb2,0xf9,0x7,0x2f,0xcc,0x5a,0x48,0x60,0x82,0xa8,0x66,0xfe,
+ 0xa3,0x0,0x7f,0x65,0x9c,0x20,0xfc,0x8e,0x72,0xaa,0xf8,0xfd,0x56,0xd1,0xc8,0x8c,
+ 0x69,0x1f,0x27,0x9,0x91,0xde,0xb6,0x1d,0xa3,0xc8,0xb,0x57,0x23,0x46,0xa0,0xdd,
+ 0xa2,0x76,0xb3,0xe2,0x82,0x13,0xa4,0xe1,0x24,0xa1,0x6d,0xd3,0xc9,0xdb,0xd3,0xad,
+ 0xf,0x4a,0x89,0x55,0xf4,0x88,0x23,0x2c,0xd4,0xcd,0x44,0xc0,0x7f,0x3,0x2,0xbb,
+ 0xc6,0x87,0x6d,0x9f,0x53,0x74,0xce,0x31,0xf9,0x4e,0x21,0x8,0xb2,0xf7,0x6c,0x47,
+ 0xbb,0x6d,0xc4,0x59,0x4b,0xbb,0x8a,0x19,0x1f,0xf7,0x6d,0x8d,0xc8,0xe8,0xb,0x1,
+ 0x31,0x46,0xf7,0x5,0xd3,0xcc,0x4c,0x5c,0xd3,0x8c,0xd4,0x56,0x67,0x9b,0x94,0xef,
+ 0x14,0x9c,0x20,0x56,0xee,0x22,0x30,0x5d,0xee,0x96,0xc0,0x78,0x9b,0x91,0xd2,0x7f,
+ 0xd8,0xaa,0x34,0xb1,0xcd,0xc4,0x67,0x1c,0x44,0x8d,0xf7,0x9,0x54,0x67,0xd9,0xfc,
+ 0xdc,0xfc,0x39,0xbd,0x84,0xc0,0x4,0xc9,0x98,0xda,0xc7,0x9,0xe3,0xe3,0x8a,0x76,
+ 0xcb,0xf7,0xaa,0xa5,0xfd,0x0,0x8c,0xb6,0xaf,0xdc,0x76,0xe6,0xf6,0x10,0x48,0xb,
+ 0x82,0xf4,0x24,0x88,0x61,0xf6,0x63,0x5,0x26,0x48,0xd6,0xd4,0x3e,0xcc,0xc0,0x75,
+ 0x6e,0x3,0x62,0xe3,0xfc,0x72,0x5a,0xbf,0xba,0x95,0x77,0x62,0x1f,0x56,0x80,0xb8,
+ 0x7,0xe8,0x4b,0x7,0xd0,0x2a,0xb2,0x36,0x20,0xd0,0x6e,0x48,0xd0,0xc,0xac,0xc0,
+ 0x4,0x51,0xab,0xf9,0x55,0xb0,0xf9,0xdf,0xc7,0xbb,0x58,0xde,0x5b,0x4d,0x44,0xb,
+ 0x12,0xa0,0x7e,0xa,0x82,0x4,0x0,0x2b,0x5c,0xd6,0x9e,0xb4,0x20,0x6a,0x25,0xf7,
+ 0x1e,0x10,0xb9,0x6b,0x1f,0x44,0xb8,0xba,0x24,0xeb,0xe7,0x8b,0x31,0x48,0xb8,0x80,
+ 0x9,0xa9,0xde,0x22,0xd0,0x9b,0x31,0x48,0x35,0xf7,0x76,0xb2,0xeb,0xcf,0xad,0x81,
+ 0x3c,0xdf,0x42,0x17,0xb3,0x58,0x5d,0xaa,0x0,0x62,0xcc,0xb2,0x17,0xd8,0x20,0x2d,
+ 0x6f,0x2f,0x66,0xb1,0xb2,0x55,0xed,0x14,0xb6,0x27,0x37,0x2b,0x7a,0xee,0x90,0x14,
+ 0xeb,0x20,0x82,0x20,0x5d,0x42,0xa0,0xde,0xc3,0x77,0x7b,0x31,0xbe,0x53,0x4f,0xd6,
+ 0x41,0xb2,0x56,0xfe,0x44,0x66,0xfe,0x89,0x3b,0x4,0x69,0x73,0x18,0x5e,0xac,0xa4,
+ 0xfb,0x8e,0x9d,0xff,0x8c,0x41,0xbe,0x31,0xfd,0x6b,0x1d,0xcc,0x9c,0x1,0x5b,0xd2,
+ 0x9e,0xac,0xa4,0x2f,0x60,0x6d,0x49,0xcd,0xc2,0x13,0x2e,0xa2,0x6d,0xe,0xc3,0x8b,
+ 0xbd,0x58,0x5d,0xa8,0x77,0x82,0x20,0xa1,0x41,0xed,0xc9,0x5e,0xac,0x3c,0xe7,0x95,
+ 0x5d,0x16,0x57,0x26,0xac,0xf4,0x2a,0x54,0xec,0xe6,0xf5,0x1f,0x4b,0x51,0xef,0xfd,
+ 0x63,0x15,0x6e,0x0,0x2,0xf4,0x64,0x37,0xaf,0x63,0x9c,0x6a,0x6a,0xbf,0x6,0x70,
+ 0xd8,0x78,0x23,0xd2,0xfa,0x30,0xbc,0x38,0xf,0x12,0x26,0xe8,0x42,0xa6,0x5b,0x8,
+ 0xf4,0xe4,0x3c,0x88,0x4b,0x90,0x4a,0x7e,0x23,0x88,0xdd,0xc7,0xda,0xbd,0x56,0xd3,
+ 0xc5,0x89,0xc2,0x6e,0x85,0x5a,0xe8,0x9d,0x81,0x40,0xdb,0xf1,0x48,0x8f,0x4e,0x14,
+ 0x8e,0xb7,0x20,0xb9,0xaf,0x0,0xf4,0xd1,0xf1,0x71,0x88,0xf7,0x61,0x78,0x71,0x26,
+ 0x3d,0xe2,0xca,0xdc,0xb6,0x22,0x44,0x5c,0xde,0xb0,0xa8,0xeb,0xd5,0x99,0xf4,0x7a,
+ 0x17,0xeb,0x23,0x0,0xae,0xad,0xf,0xd4,0xbd,0xa7,0x7a,0xc5,0xad,0x26,0xc3,0x52,
+ 0xc5,0x6,0xdb,0x8f,0x5e,0xdd,0x6a,0xe2,0x12,0x64,0x4c,0x3b,0x9,0x12,0xfe,0x6b,
+ 0x1c,0x31,0xef,0xa6,0x4b,0xec,0xc7,0xf2,0x59,0xaf,0xc4,0x28,0xdd,0x27,0x50,0xe1,
+ 0xb2,0xb5,0xdb,0x58,0xdb,0x4a,0x6b,0x80,0x65,0x96,0xbd,0x2a,0xd4,0xdd,0x4b,0x16,
+ 0x20,0x59,0x7b,0x7a,0xe2,0x2f,0x5e,0x83,0x1f,0xb1,0xe5,0x3d,0x5c,0x40,0x85,0x54,
+ 0x0,0x4,0x7c,0x74,0x3b,0xc3,0xec,0xc3,0xaa,0x4f,0x42,0x5,0x30,0xa4,0x21,0xab,
+ 0x6a,0x69,0x93,0x4f,0xaa,0x79,0x15,0x2e,0x56,0xd3,0xc3,0xe1,0x2b,0xa4,0xa2,0x45,
+ 0x20,0xcc,0x1a,0x48,0x47,0x4,0xc9,0x9a,0xda,0x4d,0x8c,0xf1,0x27,0x10,0xbc,0xb6,
+ 0xbd,0x8b,0xc5,0xc2,0x68,0x3,0xed,0xe3,0xcb,0x32,0xda,0x2,0x87,0x41,0x5b,0xaf,
+ 0x6f,0x77,0x77,0xc7,0x21,0x55,0xed,0xdd,0xb0,0xf1,0xad,0x3a,0x7e,0xb7,0x1a,0x8a,
+ 0xfe,0x57,0xcd,0xb0,0x14,0x6b,0x21,0x3e,0x6b,0x98,0xa8,0xf9,0x3e,0x81,0x6a,0x92,
+ 0xad,0xcd,0xf8,0xad,0xdd,0x96,0x28,0xaf,0x82,0x43,0x8d,0x41,0x1c,0x85,0x87,0xb2,
+ 0x96,0xb1,0x2c,0x4c,0x3c,0xdc,0xb9,0xcd,0x50,0x74,0x77,0xe1,0xb0,0x59,0x52,0xc5,
+ 0xb,0x53,0xed,0x83,0x2f,0x8,0xd2,0x1e,0xa3,0x90,0x39,0x88,0x70,0x69,0x49,0xd6,
+ 0xbf,0x10,0x46,0x3c,0x34,0x41,0xdc,0x56,0xc4,0xd2,0xee,0x7,0xe3,0x8d,0x6e,0x5f,
+ 0xcd,0xe6,0x91,0x52,0xba,0xb8,0xb5,0x29,0x41,0x2a,0xb9,0x3b,0x41,0x14,0xfa,0xa5,
+ 0xd1,0x30,0x8e,0xd,0xad,0x8c,0x98,0xed,0xa,0x1c,0x5a,0x22,0x3e,0xb6,0x24,0x17,
+ 0xff,0x3b,0xb0,0xe0,0xf8,0x4e,0x91,0xf0,0xa9,0x71,0x0,0xce,0x12,0x9d,0x5d,0x4e,
+ 0x36,0xbf,0x44,0x2e,0x3b,0x96,0x5b,0xcd,0x12,0x5d,0x19,0xbe,0x24,0x21,0x29,0x10,
+ 0x8,0x8d,0xc0,0x8b,0x86,0xa2,0xef,0x17,0x56,0xba,0x23,0x82,0x4c,0xb9,0xe9,0x1d,
+ 0x7c,0x8d,0xa1,0x14,0x3f,0xd6,0xcc,0x90,0xac,0x95,0x3b,0x86,0x99,0x1e,0xc,0x6b,
+ 0x64,0x5c,0xe4,0x98,0xdb,0x9c,0x6f,0x10,0xdd,0xb0,0xf1,0xaf,0xf4,0x20,0xef,0x5,
+ 0x10,0x7e,0x60,0xc8,0xfa,0xdb,0xc3,0xd6,0xa1,0x8e,0x8,0xb2,0x8c,0x97,0xc9,0xe5,
+ 0xea,0xee,0x6d,0x60,0xa8,0x4,0x3c,0x54,0x52,0xf4,0x37,0x78,0x8c,0x43,0x9e,0x7d,
+ 0x79,0xf5,0xfd,0xa0,0xb0,0x86,0xc6,0x46,0x2e,0x68,0x5,0x88,0xd,0x30,0xe1,0x1c,
+ 0x25,0xe0,0x13,0x25,0x45,0xf,0x7d,0xbb,0x67,0x47,0x4,0x71,0x4c,0x6e,0x7c,0xf1,
+ 0x96,0x6a,0xf6,0x5b,0x4a,0x73,0xb6,0xdc,0xdd,0xcc,0x95,0x8c,0xa5,0x7d,0x87,0x18,
+ 0x67,0x86,0x73,0x33,0xa6,0x52,0xa2,0xc5,0xe8,0x38,0xf0,0x9d,0x8c,0x3f,0xdc,0xb1,
+ 0x75,0xa7,0x16,0x64,0x2a,0xb9,0x77,0x10,0xd1,0x6d,0x75,0x65,0x5f,0x29,0x29,0x7a,
+ 0xd3,0x9b,0x14,0xb3,0xa6,0x76,0x3e,0x3,0x5f,0xee,0xb4,0x3c,0x21,0x2f,0x10,0xf0,
+ 0x8d,0x0,0xf3,0xa8,0x91,0x2a,0x2e,0xf0,0x9d,0xbf,0x49,0xc6,0x8e,0x9,0x2,0x3e,
+ 0x21,0xa9,0x5a,0x3b,0x74,0x0,0x8b,0xc0,0xd8,0x36,0x57,0xb1,0x72,0x4f,0xd2,0x93,
+ 0x93,0x7,0xaa,0x26,0xca,0x9c,0x6f,0xe6,0x8f,0xb6,0xc1,0xbf,0xe8,0xc4,0x58,0x21,
+ 0x2b,0x10,0x8,0x82,0x0,0x1,0xeb,0x4a,0x8a,0xfe,0xbe,0x20,0x32,0xd3,0xf3,0x76,
+ 0x4e,0x10,0x77,0xfb,0x7b,0xfe,0x4a,0x80,0x57,0xbb,0xad,0x88,0x44,0x67,0x95,0x92,
+ 0x85,0xef,0x34,0x33,0x4a,0x35,0xb5,0xfb,0x0,0xbc,0xa9,0x13,0x83,0x85,0xac,0x40,
+ 0xc0,0x2f,0x2,0xc4,0x74,0x56,0x29,0xd5,0xbc,0x2e,0xfa,0xd6,0xe1,0x37,0xa3,0x57,
+ 0xbe,0x8c,0x95,0x7f,0x13,0x31,0x3b,0x95,0xdf,0xf3,0x61,0x4f,0xd5,0xd2,0x3e,0x9,
+ 0x46,0xcb,0x27,0xdb,0xa2,0xb0,0x45,0xe8,0x18,0x70,0x4,0xa2,0x9b,0xa4,0x78,0x5a,
+ 0x92,0x5f,0xcc,0x8d,0xd2,0xe8,0x9e,0x4e,0x10,0x89,0xa4,0x5,0x71,0xc,0x50,0x4d,
+ 0xcd,0x99,0xc6,0x3d,0x6,0xc0,0x4b,0xa8,0x26,0x34,0x63,0xee,0xa6,0x67,0xa6,0x1b,
+ 0xa6,0x56,0xe,0xcf,0x81,0x12,0x4e,0x77,0x4c,0x24,0x81,0x40,0x73,0x4,0xa2,0x22,
+ 0x88,0x84,0x6b,0x8d,0xa4,0xfe,0x77,0x9d,0xc2,0x1c,0x1d,0x41,0x1a,0xde,0xd,0x1,
+ 0xf8,0xef,0xd,0xa5,0xf8,0x4f,0x4d,0xbb,0x59,0x15,0x6d,0x3,0x8,0xa7,0x74,0x6a,
+ 0xb8,0x90,0x17,0x8,0x78,0x21,0xc0,0xb6,0xf4,0xd6,0x72,0x7a,0xf3,0xc6,0x4e,0x51,
+ 0x8a,0x90,0x20,0x53,0x5a,0x87,0x47,0xc,0x45,0xff,0x93,0x66,0xc6,0x65,0xcd,0xfc,
+ 0x7,0x19,0xfc,0xcf,0x9d,0x1a,0x2e,0xe4,0x87,0x0,0x81,0x89,0xda,0x37,0xb1,0xf0,
+ 0xd7,0xaa,0xf5,0x68,0x9c,0xee,0xf6,0xd1,0xc2,0x10,0xb0,0xa9,0xa4,0xe8,0x47,0x44,
+ 0x81,0x50,0x64,0x4,0x71,0xbb,0x59,0x95,0xdc,0x37,0x40,0x74,0xae,0xf3,0x3b,0x83,
+ 0x3f,0x58,0x56,0x8a,0xee,0x5b,0x86,0x8d,0x69,0x1,0x8f,0xa8,0x35,0x4b,0xda,0x2,
+ 0x60,0x9f,0x28,0x1c,0x10,0x3a,0x86,0x4,0x81,0x8,0xd7,0x7c,0x88,0xe8,0xf2,0x92,
+ 0x5c,0xb8,0x24,0xa,0x64,0x22,0x25,0x48,0xc6,0xd2,0x8e,0x27,0xc6,0xbd,0x75,0xc3,
+ 0x5a,0xb6,0x22,0xaa,0xa9,0xdd,0x2,0xa0,0xe9,0xf6,0xf8,0x28,0x9c,0x12,0x3a,0x62,
+ 0x8e,0x0,0xf1,0x71,0x86,0x5c,0x8c,0x64,0x6b,0x53,0xa4,0x4,0x71,0xc2,0x92,0xb5,
+ 0xf2,0xb7,0x39,0x8f,0x7b,0x7a,0xb5,0x22,0xea,0xd8,0xe2,0xd3,0x21,0xd9,0xeb,0x63,
+ 0x1e,0x46,0xe1,0x7e,0x50,0x4,0xfc,0xb4,0x32,0x8c,0x1f,0x1b,0x29,0xdd,0xbd,0x92,
+ 0x2a,0x8a,0x14,0x3d,0x41,0xc6,0x72,0xa7,0xb2,0x44,0xb7,0xb7,0x6d,0x45,0xac,0xfc,
+ 0x46,0xf0,0xf8,0xdd,0x5a,0x22,0x9,0x4,0x9a,0x22,0xe0,0x87,0x10,0xd3,0x4,0x99,
+ 0xe9,0x9c,0x72,0xaa,0x70,0x73,0x54,0x88,0x46,0x4e,0x10,0xc7,0x30,0xd5,0xd4,0x7e,
+ 0xc,0x60,0x85,0x57,0x2b,0x92,0xad,0xe4,0xcf,0x64,0xe2,0xa6,0xb,0x8a,0x51,0x39,
+ 0x27,0xf4,0xc,0x11,0x2,0x7e,0xc8,0xc2,0x78,0xd4,0x48,0xe9,0x47,0x45,0xe9,0x75,
+ 0x77,0x8,0xd2,0xf0,0xc8,0xe,0x80,0x96,0x63,0x11,0x71,0x25,0x50,0x94,0xa1,0x1c,
+ 0x76,0x5d,0xed,0x19,0xd2,0xe9,0xce,0xdd,0x66,0x8,0x76,0x85,0x20,0x4e,0x41,0x19,
+ 0x53,0xfb,0x39,0x1,0xe3,0xdb,0xdf,0x6d,0x7c,0xca,0x48,0xeb,0x57,0x4c,0x37,0x20,
+ 0x53,0xc9,0x9f,0x4d,0xc4,0xeb,0x86,0x3d,0xb4,0xc2,0xbf,0xe,0x11,0xf0,0x31,0xb5,
+ 0xb,0x42,0x9,0x7b,0x6a,0x4b,0x8d,0xfd,0xb6,0x3e,0xdf,0x61,0x69,0x53,0xc4,0xbb,
+ 0x46,0x10,0xd5,0xcc,0xaf,0x2,0xea,0x6f,0x19,0x12,0x3f,0x2b,0x25,0x13,0xc7,0x8d,
+ 0xd2,0xe6,0x27,0xa7,0x1b,0xdf,0xb0,0x2,0x1f,0xa5,0x5f,0x42,0x57,0xdc,0x10,0x60,
+ 0x5a,0x63,0xa4,0xa,0x17,0x47,0xed,0x76,0xd7,0x8,0xe2,0x8e,0x45,0x2a,0xda,0xb7,
+ 0x41,0x78,0x97,0xf3,0x3b,0x81,0xfe,0xa5,0xa4,0x14,0x3e,0xd8,0x84,0x20,0xe7,0x1,
+ 0xf8,0xb7,0xa8,0x1d,0x13,0xfa,0x62,0x85,0x80,0xc5,0x9c,0x38,0xb2,0x9c,0xda,0x14,
+ 0xf9,0x36,0xa6,0xae,0x12,0x24,0x6b,0x2e,0x3e,0x92,0x61,0x3b,0x9b,0x18,0xdd,0x33,
+ 0xc1,0xb6,0x4d,0x27,0x6f,0x4f,0x17,0xee,0x6c,0x42,0x92,0x7,0x0,0x1c,0x1b,0xab,
+ 0x90,0xa,0x67,0xa3,0x43,0x80,0xf8,0x1a,0x43,0x6e,0x7e,0xdc,0xbb,0xd3,0x42,0xba,
+ 0x4a,0x90,0x7a,0x2b,0x72,0x21,0x8,0x6b,0x5c,0x43,0x89,0xef,0x32,0xe4,0xe2,0x89,
+ 0x33,0x8,0x52,0xd5,0xce,0x80,0x8d,0x1f,0x74,0xea,0x8c,0x90,0x8f,0x25,0x2,0x5b,
+ 0xab,0x72,0xe2,0xf8,0x67,0x69,0xd3,0x8e,0x6e,0x78,0xdf,0x75,0x82,0x38,0x46,0x67,
+ 0xac,0xfc,0x5d,0xc4,0xbc,0x7c,0xdc,0x1,0xfa,0xa8,0xa1,0x14,0xbe,0xda,0xa4,0x15,
+ 0xb9,0x1,0xc0,0x5f,0x77,0xc3,0x49,0xa1,0x73,0x78,0x11,0x20,0xf0,0xb9,0x25,0xa5,
+ 0x78,0x63,0xb7,0x3c,0xec,0x9,0x41,0x54,0x4b,0x3b,0x9,0x5c,0xbf,0xd,0x9e,0xf1,
+ 0x4c,0x82,0x13,0xcb,0x9f,0x49,0x6f,0x7a,0xaa,0xd1,0xa9,0x43,0x2a,0xda,0x92,0xa4,
+ 0x84,0x9f,0x31,0x63,0xff,0x6e,0x39,0x2b,0xf4,0xe,0x1d,0x2,0x2d,0x6f,0xf4,0x8c,
+ 0xca,0xd3,0x9e,0x10,0xc4,0xed,0x6a,0x35,0x9c,0x3a,0x4,0x63,0xbd,0x91,0xd2,0xcf,
+ 0x98,0xee,0x44,0xb6,0xa2,0x5d,0xca,0x84,0xcf,0x45,0xe5,0x9c,0xd0,0x33,0xd4,0x8,
+ 0xec,0x92,0x98,0x8f,0x1f,0x4d,0x15,0xc7,0x1f,0x94,0xed,0x52,0xea,0x19,0x41,0x5e,
+ 0xf5,0xdc,0xc8,0xbe,0xca,0xfe,0x92,0xb3,0xc2,0xfe,0x67,0x8e,0x2f,0x4c,0xf8,0x7c,
+ 0x59,0xd6,0x3f,0xdd,0xe8,0xd7,0x22,0x5e,0x94,0xda,0x6d,0xc9,0xce,0x80,0x7d,0x59,
+ 0x97,0xfc,0x15,0x6a,0x87,0x5,0x81,0x16,0x6b,0x6b,0x51,0xbb,0xd7,0x33,0x82,0x38,
+ 0x86,0xcf,0xb3,0x72,0x6f,0x96,0x98,0x9c,0x87,0x77,0x64,0xd7,0x11,0xc6,0xbb,0x8d,
+ 0x94,0xfe,0xed,0x46,0xa7,0xd4,0xaa,0x76,0x16,0x6c,0xdc,0x1a,0xb5,0xa3,0x42,0xdf,
+ 0x30,0x21,0xc0,0x77,0x19,0xca,0xcc,0xc9,0x9e,0x6e,0x78,0xd8,0x53,0x82,0x38,0xe,
+ 0x4c,0xb9,0xfe,0x87,0x68,0xd4,0x4e,0xd2,0x5f,0x6c,0xa7,0xcd,0x85,0x29,0x24,0x31,
+ 0x35,0xe7,0x79,0x37,0xe7,0x99,0x37,0x91,0x4,0x2,0xd3,0x11,0xd8,0x3,0x92,0x56,
+ 0x18,0xf2,0x66,0xa7,0xa7,0xd1,0xf5,0xd4,0x73,0x82,0xd4,0x49,0xb2,0x8e,0x81,0xb3,
+ 0xc7,0x5b,0x11,0xde,0x68,0xa4,0x8a,0x6f,0x9d,0xde,0xd5,0x7a,0xc9,0x92,0x37,0x12,
+ 0x70,0x42,0xd7,0x11,0x10,0x5,0xc,0x16,0x2,0x36,0x7d,0xcc,0x48,0x17,0xae,0xe9,
+ 0x95,0xd1,0xb3,0x42,0x90,0xf9,0xbb,0xf,0xcf,0xda,0xc9,0x84,0xd3,0xd5,0xd2,0xea,
+ 0x24,0xb9,0xd2,0x48,0x15,0x3f,0xd9,0xe8,0x74,0xc6,0xd4,0x5e,0x4f,0x80,0x73,0xa6,
+ 0x58,0x5c,0x57,0xda,0xab,0xda,0xd0,0xff,0xe5,0xdc,0x68,0x28,0xba,0x7b,0x62,0xb5,
+ 0x57,0x69,0x56,0x8,0xe2,0x38,0xa7,0x56,0x73,0xa7,0xc1,0xa6,0x1f,0x4d,0x3a,0xca,
+ 0xfc,0x59,0x23,0x55,0xbc,0x6c,0xa,0x49,0xc4,0x66,0xc6,0x5e,0xd5,0x83,0xbe,0x2f,
+ 0x87,0x81,0x27,0x6a,0x72,0x62,0x45,0xb7,0x16,0x4,0x5b,0x1,0x30,0x6b,0x4,0x71,
+ 0x49,0x52,0xc9,0x5d,0x6,0xa2,0xcf,0x78,0x91,0x44,0xad,0xe4,0x2f,0x7,0xf1,0x45,
+ 0x7d,0x1f,0x41,0x61,0x60,0x57,0x11,0x90,0x6c,0x9c,0x32,0x9a,0xd6,0xef,0xe8,0x6a,
+ 0x21,0x4d,0x94,0xcf,0x2a,0x41,0x5c,0x92,0x98,0xda,0xf5,0x0,0xfe,0x66,0xd2,0x36,
+ 0xe2,0xcb,0xc,0xb9,0xf8,0xd9,0x46,0x5b,0x55,0x2b,0xb7,0x1e,0x4c,0xa7,0xf7,0x1a,
+ 0x1c,0x51,0x5e,0xc4,0x8,0xf8,0xd9,0xb6,0xde,0xac,0x92,0x32,0x3e,0x5d,0x4a,0xe9,
+ 0x9f,0x8f,0xd8,0x1a,0x5f,0xea,0x66,0x9d,0x20,0x2e,0x49,0x2c,0xed,0xbf,0xc0,0x38,
+ 0x69,0xc2,0x62,0x2,0x7d,0xa8,0xa4,0x14,0xbe,0x3e,0xf1,0xff,0x5,0xbc,0xe4,0x35,
+ 0x35,0xab,0xe6,0x7c,0x7b,0x1c,0xee,0xcb,0x2b,0x91,0xa9,0xff,0x10,0x98,0x4e,0xe,
+ 0x9f,0x64,0x21,0xa6,0xef,0x95,0x52,0x85,0x77,0xce,0x96,0x43,0x7d,0x41,0x90,0x7a,
+ 0x4b,0xe2,0x5c,0x5,0xb4,0x97,0x0,0x4c,0x67,0x18,0xa9,0xc2,0xe4,0xc5,0xe,0x59,
+ 0x2b,0x7f,0x22,0x83,0x37,0x80,0x91,0x9e,0x2d,0xb0,0x44,0xb9,0x3d,0x47,0xe0,0x7e,
+ 0x45,0xde,0xf3,0xe7,0xdb,0x68,0xdb,0x58,0xcf,0x4b,0xae,0x17,0xd8,0x37,0x4,0xf9,
+ 0xe3,0x5d,0x47,0x1c,0x50,0x7d,0x45,0xd5,0x68,0x24,0x80,0x5d,0xe3,0xe5,0xdb,0xe7,
+ 0x14,0xef,0x99,0x0,0x47,0xad,0xe6,0x57,0xc1,0xae,0x1f,0xc2,0x9a,0x2d,0xc4,0x44,
+ 0xb9,0xbd,0x42,0x60,0xb,0xc9,0x7c,0x5c,0x89,0x8a,0xbf,0xeb,0x55,0x81,0xcd,0xca,
+ 0xe9,0x1b,0x82,0xb8,0xad,0xc8,0xd8,0xc8,0x8,0x24,0xa9,0xd8,0x68,0xe8,0xc,0x92,
+ 0x58,0xb9,0xcf,0xbc,0xbc,0x4f,0x65,0xca,0x6c,0xd7,0x6c,0x2,0x28,0xca,0xf6,0x40,
+ 0xc0,0x67,0x37,0x6a,0x86,0x6,0xc2,0xb,0xa8,0xd2,0x52,0x63,0x4e,0xe1,0xe9,0xd9,
+ 0xc6,0xb7,0xaf,0x8,0xe2,0x80,0x31,0xf5,0xa6,0xf8,0x3a,0x3c,0x8c,0xb7,0x19,0x29,
+ 0xfd,0x87,0x93,0x2d,0x89,0xa9,0x5d,0x7,0xe0,0xc3,0xb3,0xd,0x9e,0x28,0xdf,0x3,
+ 0x81,0xf6,0x77,0x2c,0xb4,0x14,0x66,0x4e,0xe4,0xbb,0x71,0x3a,0x30,0x4c,0xbc,0xfa,
+ 0x8e,0x20,0x6e,0x4b,0xc2,0x4b,0x16,0xc0,0xaa,0x4d,0xf9,0xf6,0x20,0xf0,0xaa,0x92,
+ 0x52,0x74,0xce,0x8c,0xb8,0x29,0x5b,0xc9,0xdf,0xc6,0x34,0x7e,0x41,0x9d,0x48,0xc3,
+ 0x83,0x0,0xc3,0xfe,0xd3,0xb2,0xb2,0xe5,0x97,0xfd,0xe2,0x51,0x5f,0x12,0xc4,0x1,
+ 0xe7,0x80,0x9d,0xaf,0xde,0x7f,0xce,0x3e,0x29,0xe7,0xb8,0xee,0xeb,0x26,0xc0,0x62,
+ 0x1b,0xe7,0x97,0xd3,0xfa,0xd5,0xd,0x2d,0x89,0xb3,0x1a,0x3f,0x39,0xfb,0xd5,0x2f,
+ 0xa0,0xa,0x3b,0x1a,0x10,0x8,0xd0,0x92,0x30,0xe1,0xcd,0x65,0x59,0xaf,0xbf,0x33,
+ 0xd3,0x1f,0x28,0xf6,0x2d,0x41,0x26,0x5b,0xa,0x53,0xbb,0x89,0x81,0x73,0x26,0xe1,
+ 0x9a,0xb6,0xe2,0x9e,0x35,0xf3,0x5f,0x67,0xf0,0x7,0xfa,0x3,0x4e,0x61,0x45,0x58,
+ 0x4,0x24,0x5b,0x7a,0xed,0x68,0x7a,0xe6,0xad,0x37,0x61,0xf5,0x45,0x25,0xd7,0xf7,
+ 0x4,0x71,0xbb,0x5c,0x66,0xee,0x1a,0x80,0xfe,0x7e,0xc2,0x69,0x67,0x6e,0xdc,0x56,
+ 0x78,0x75,0x99,0xf4,0xdf,0xba,0x9f,0x5b,0xda,0x85,0x2f,0xcf,0x7e,0x8d,0x9f,0x7b,
+ 0x17,0x69,0xd0,0x10,0x78,0x1,0xd5,0xc4,0x91,0xcd,0x1e,0x5c,0xea,0x7,0x47,0x6,
+ 0x82,0x20,0xe,0x50,0x19,0x4b,0xfb,0x1c,0x31,0x2e,0x6d,0x0,0x6d,0xb,0xd9,0x7c,
+ 0x41,0x29,0x5d,0xdc,0xe0,0xfc,0x2d,0x6b,0xe6,0x3f,0xc4,0xe0,0xaf,0xf5,0x3,0xa8,
+ 0x71,0xb7,0x81,0xc1,0xce,0x35,0x4f,0x7e,0x60,0x78,0xa4,0x56,0x31,0x4f,0xde,0xb1,
+ 0xef,0x53,0xcf,0xfa,0xc9,0x3c,0x1b,0x79,0x7c,0x79,0x31,0x1b,0x86,0x35,0x2b,0x53,
+ 0x1d,0xbf,0xd2,0xd4,0x69,0x29,0xf6,0x3e,0xed,0x4b,0x7c,0xb1,0x21,0x17,0xdd,0xd6,
+ 0x63,0xca,0x65,0x75,0xfd,0x62,0xf4,0xb0,0xda,0x11,0x76,0xa,0x77,0x2,0xf,0xc6,
+ 0x7f,0x8c,0x29,0xd6,0x7b,0x76,0xd2,0x93,0xbf,0xef,0x67,0x88,0x6,0x8a,0x20,0x2e,
+ 0x9,0x9c,0x77,0xe,0xa5,0xc4,0x1a,0x30,0x56,0xee,0x5,0x96,0xbf,0x69,0xc9,0xd2,
+ 0x5,0xcf,0x51,0x61,0x7b,0x9d,0x44,0xdf,0xec,0x67,0xd0,0x7,0xde,0x36,0xa7,0xd6,
+ 0xd8,0xee,0x6d,0x80,0xa1,0x12,0x11,0x7d,0x6f,0x4e,0xd2,0x7c,0x6f,0xb3,0xe7,0xc2,
+ 0x43,0x29,0xec,0xa2,0x50,0x48,0x17,0xbb,0x68,0x91,0x4f,0xd5,0x6a,0x25,0xf7,0xff,
+ 0x40,0xd4,0xb8,0xa9,0xf1,0x71,0x30,0xaf,0x31,0x52,0xc5,0x6f,0xd5,0x6f,0x51,0x59,
+ 0xb,0xe0,0xf5,0x3e,0xd5,0x89,0x6c,0x9d,0x20,0x10,0x60,0xa6,0xa,0x44,0x5f,0x32,
+ 0xe4,0xc2,0x5,0x9d,0x14,0xd7,0x4b,0xd9,0x81,0x25,0x88,0x3b,0xee,0xa8,0x6a,0xa7,
+ 0xb0,0xd,0x87,0x8,0x8b,0x1b,0x40,0xfb,0x8e,0x8d,0xda,0x95,0x49,0x59,0x7e,0xca,
+ 0xb6,0x6c,0xa7,0xeb,0xf5,0xfe,0x5e,0x2,0x3a,0xd4,0x65,0x85,0xdc,0x70,0x58,0xc7,
+ 0x64,0x27,0x81,0x57,0x37,0xae,0x65,0xd,0x2,0x56,0x3,0x4d,0x10,0x7,0xe0,0x43,
+ 0x59,0xcb,0x58,0x16,0x7f,0x1,0xa0,0x55,0xd,0x80,0x5b,0xc4,0x7c,0x85,0xac,0xa4,
+ 0xaf,0xb0,0x2c,0xf3,0xdd,0xc,0x76,0x48,0xe4,0x5e,0x7f,0x2a,0x52,0x8,0x4,0xc8,
+ 0xb9,0x14,0xd3,0xb9,0x63,0xa3,0x21,0x5,0x68,0x35,0x8,0xb8,0xd7,0x86,0x7d,0x41,
+ 0x3f,0x2d,0x0,0xfa,0x45,0x61,0xe0,0x9,0x32,0xe1,0x68,0xb6,0x9a,0x7f,0x17,0xdb,
+ 0xf6,0x25,0x0,0x1d,0xd9,0xe0,0x7c,0x1,0xa0,0x2b,0x6d,0x60,0x33,0x11,0xd6,0xec,
+ 0xbd,0xdd,0xd1,0x2f,0x3c,0x22,0xdf,0xc,0x4,0x82,0xf,0xce,0xaf,0x9d,0x2b,0x5b,
+ 0xab,0x7,0x61,0xbc,0xd1,0x2c,0xda,0x43,0x43,0x10,0xc7,0xb9,0x3,0x79,0xd1,0x7e,
+ 0xe9,0xaa,0x7c,0x9,0x18,0x17,0x4e,0x71,0x96,0xe8,0x76,0x10,0xae,0x87,0x8d,0x37,
+ 0x1,0xbc,0x5a,0x54,0xfb,0x9e,0x20,0xf0,0x3b,0x2,0xfd,0x43,0xe3,0xb9,0x9e,0x9e,
+ 0x94,0x1a,0x71,0x21,0x43,0x45,0x90,0xc9,0xd6,0x64,0xcf,0xc8,0x72,0x4e,0x48,0xce,
+ 0x33,0xc0,0x53,0xb7,0xa1,0x10,0xdd,0x4e,0xe0,0x87,0x99,0xf9,0x4,0x80,0xde,0x12,
+ 0x31,0x96,0x83,0xaf,0xce,0xab,0x75,0x8,0xd0,0xa5,0x2,0xe8,0x6,0x70,0x75,0xad,
+ 0x91,0xda,0x3a,0x65,0x67,0xf6,0x20,0x2,0x34,0x94,0x4,0x99,0x24,0x8a,0x95,0x5b,
+ 0xcd,0x90,0x3e,0xe,0xe6,0xf9,0x33,0x5a,0x14,0xe6,0x1d,0x60,0x9c,0xa,0xc2,0xbc,
+ 0x41,0xc,0x5c,0x64,0x36,0x7b,0x54,0xfc,0x40,0x9c,0x70,0xef,0x1,0xc4,0x43,0x60,
+ 0x5e,0x5b,0x4e,0x15,0xbf,0x1f,0x99,0x7d,0xb3,0xac,0x68,0xa8,0x9,0xe2,0x60,0x3b,
+ 0xef,0xc5,0x45,0x7,0x49,0x69,0xf9,0x5c,0xd8,0x58,0x5,0xaa,0x5f,0x33,0x34,0x9,
+ 0x3a,0xdd,0x5,0x82,0x15,0xcb,0xd7,0x76,0xdb,0x8d,0x25,0x82,0xb1,0xe3,0xf,0x44,
+ 0x58,0x3b,0x2f,0x39,0x77,0xed,0x23,0xf4,0x88,0x35,0xcb,0x75,0x3a,0xd2,0xe2,0x87,
+ 0x9e,0x20,0x13,0x68,0x39,0xf7,0xfe,0xee,0xb1,0x94,0x73,0x6d,0xf0,0xaa,0xc9,0xb7,
+ 0x13,0x27,0x3e,0x64,0x94,0x9,0xee,0x6,0x89,0x4c,0xd8,0xc5,0xaf,0x48,0xa3,0xd2,
+ 0x6d,0x65,0x6e,0xe5,0xf,0xc6,0x0,0xf,0x93,0xbe,0x45,0x90,0xd6,0x96,0x94,0xcd,
+ 0x8f,0x75,0xdb,0xec,0xd9,0xd0,0x1f,0x1b,0x82,0x34,0x82,0x5b,0x5f,0x6d,0x77,0x2e,
+ 0x20,0x73,0x9f,0xaa,0x9e,0x96,0x76,0x3,0x98,0xeb,0xce,0x69,0xe,0x1b,0x3a,0xed,
+ 0x5a,0x8d,0x0,0x35,0x90,0x80,0x9b,0x99,0x78,0x9d,0x21,0x17,0x9d,0xb,0xc9,0x87,
+ 0x36,0xd,0x5b,0x15,0x8,0x14,0xa8,0xf9,0x63,0xda,0xc9,0x2c,0xd1,0x4a,0x6,0x3b,
+ 0xdb,0x56,0xe,0x99,0x21,0x3c,0xc8,0x24,0x89,0x90,0xc,0x7b,0x7b,0xa4,0x78,0x9e,
+ 0x19,0xeb,0x24,0x99,0x6e,0x2a,0x51,0xe1,0xd1,0x40,0x60,0xf,0x68,0xe6,0x58,0x13,
+ 0x64,0x22,0x66,0xb,0x79,0xe9,0x2b,0x2d,0x6b,0x6c,0x25,0x13,0xad,0xac,0xef,0xf1,
+ 0x92,0x6,0x2e,0x9e,0xdd,0x20,0xc4,0x5e,0x10,0x74,0x10,0xdf,0x24,0x59,0xf6,0xba,
+ 0xd1,0xb9,0x5b,0x4b,0x3,0x87,0x4d,0x7,0x6,0xb,0x82,0x4c,0x3,0x2f,0x3b,0x96,
+ 0x3b,0x9c,0x41,0x2b,0x21,0x39,0xad,0xa,0x1d,0xe7,0xb,0xdb,0x1e,0xb7,0x34,0xcc,
+ 0x0,0x5,0x8d,0x5c,0x70,0x2,0x55,0x89,0x68,0x3d,0x88,0xd7,0xcf,0x4b,0xcc,0xbd,
+ 0x75,0xd8,0x6,0xdf,0xbe,0xe2,0x3a,0x84,0xbd,0x6c,0xbf,0x7e,0xfb,0xca,0x97,0xe5,
+ 0xfc,0x52,0x58,0xbc,0x9c,0x99,0x96,0x43,0xe2,0x13,0xc0,0xd8,0xd7,0x97,0xa0,0x9b,
+ 0xa9,0xbe,0x3f,0x63,0x72,0xd7,0xab,0xb3,0x57,0xc3,0xf9,0x5b,0x3b,0xd,0xd3,0xf6,
+ 0x75,0x84,0x25,0x5f,0x58,0x39,0xe0,0x7e,0x22,0x5e,0x4f,0xb5,0xc4,0xfa,0x7e,0x3c,
+ 0xe1,0xd7,0xe,0xbd,0xa8,0x3f,0x6f,0x1b,0xae,0xa8,0xb,0x1c,0x54,0x7d,0x79,0xce,
+ 0x2b,0xff,0x5b,0xe3,0x15,0x6c,0xf3,0x9f,0x3,0xe4,0xc,0xee,0xc7,0x6f,0xa6,0xef,
+ 0x93,0x14,0xbc,0x81,0x68,0x34,0x9c,0x8a,0x4e,0x4b,0x41,0xe0,0xf5,0x25,0xb9,0xf8,
+ 0xdf,0x7d,0xe2,0x52,0x5f,0x98,0x21,0x8,0x12,0x32,0xc,0xea,0xee,0x25,0xb,0x38,
+ 0x51,0x3d,0x1a,0x90,0x46,0x88,0x78,0x9,0x40,0x47,0x1,0xf6,0x42,0x80,0xfa,0xff,
+ 0xe6,0x47,0xe2,0x67,0x61,0xd3,0x83,0x60,0x3c,0x88,0x4,0x3f,0x60,0xc8,0xc5,0x7,
+ 0x43,0xc2,0x30,0xf4,0x62,0x82,0x20,0x11,0x87,0x78,0x1e,0x2f,0x3a,0x28,0x59,0x4d,
+ 0x2d,0xb3,0xd9,0x3e,0x95,0x9,0x7f,0x42,0xcc,0x87,0x81,0xe8,0xe0,0xa9,0x5b,0x61,
+ 0xeb,0x85,0x4e,0xa0,0x3f,0xe5,0xf0,0x51,0x43,0xdf,0xa8,0x7e,0x30,0xc9,0x57,0xcf,
+ 0xcc,0xdb,0x8f,0xff,0x5,0xd3,0x7d,0x90,0x70,0x9f,0xc4,0xb8,0x6f,0x54,0x29,0x3c,
+ 0x14,0xb1,0xdb,0x43,0xab,0x4e,0x10,0xa4,0x7,0xa1,0x55,0x79,0xd9,0x5c,0xb6,0x76,
+ 0xe7,0x88,0x39,0x7,0x49,0x1a,0x81,0xf3,0x13,0x98,0xf8,0xa7,0x44,0x66,0x2,0xc1,
+ 0x0,0xb8,0x8,0xa6,0x22,0x6c,0xda,0x2,0xd8,0x45,0xb0,0x54,0xec,0x87,0x1b,0xa,
+ 0x23,0xf3,0xb1,0xc7,0x8a,0x4,0x41,0x7a,0xc,0xf8,0xf4,0xe2,0xe,0x19,0x7b,0xed,
+ 0xab,0x93,0xac,0x2c,0x24,0xb2,0xd3,0x35,0xe2,0x34,0x1,0x69,0x90,0x94,0x6,0x38,
+ 0x4d,0x36,0xa7,0x6d,0x92,0xd2,0x4,0x3b,0x9,0xd0,0x18,0x98,0xc6,0x58,0xb2,0xc7,
+ 0xa4,0x89,0xdf,0xb9,0x36,0xe6,0xfc,0xdd,0x96,0xa4,0x5d,0xa6,0x6c,0x16,0xfb,0xfd,
+ 0x7c,0xf7,0x2c,0x43,0x1d,0xaa,0x78,0x41,0x90,0x50,0xb0,0x9,0xa1,0xb8,0x20,0x20,
+ 0x8,0x12,0x97,0x48,0xb,0x3f,0x43,0x21,0x20,0x8,0x12,0xa,0x36,0x21,0x14,0x17,
+ 0x4,0x4,0x41,0xe2,0x12,0x69,0xe1,0x67,0x28,0x4,0x4,0x41,0x42,0xc1,0x26,0x84,
+ 0xe2,0x82,0x80,0x20,0x48,0x5c,0x22,0x2d,0xfc,0xc,0x85,0x80,0x20,0x48,0x28,0xd8,
+ 0x84,0x50,0x5c,0x10,0x10,0x4,0x89,0x4b,0xa4,0x85,0x9f,0xa1,0x10,0x10,0x4,0x9,
+ 0x5,0x9b,0x10,0x8a,0xb,0x2,0x82,0x20,0x71,0x89,0xb4,0xf0,0x33,0x14,0x2,0x82,
+ 0x20,0xa1,0x60,0x13,0x42,0x71,0x41,0x40,0x10,0x24,0x2e,0x91,0x16,0x7e,0x86,0x42,
+ 0x40,0x10,0x24,0x14,0x6c,0x42,0x28,0x2e,0x8,0x8,0x82,0xc4,0x25,0xd2,0xc2,0xcf,
+ 0x50,0x8,0x8,0x82,0x84,0x82,0x4d,0x8,0xc5,0x5,0x81,0xff,0x3,0xc2,0x59,0xb7,
+ 0x5f,0x8,0x4,0x0,0xce,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,
+ 0x82,
+ // /home/hzk/Software_Architecture/src/Client/res/icon/yellow.png
+ 0x0,0x0,0x28,0xba,
+ 0x89,
+ 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+ 0x0,0x0,0xc8,0x0,0x0,0x0,0xc8,0x8,0x6,0x0,0x0,0x0,0xad,0x58,0xae,0x9e,
+ 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x20,
+ 0x0,0x49,0x44,0x41,0x54,0x78,0x5e,0xed,0x9d,0x7,0x9c,0x14,0x45,0xf6,0xc7,0xbf,
+ 0xb5,0x64,0x4,0x1,0x15,0x3c,0x4c,0x80,0x4a,0x32,0x11,0x76,0x76,0x51,0x50,0x14,
+ 0x15,0xb3,0x9e,0x39,0xeb,0xa9,0x98,0x73,0x42,0xfd,0x7b,0x7a,0xe6,0x13,0xb3,0x87,
+ 0x19,0xf5,0xc,0x98,0x4f,0xf4,0x3c,0xd3,0x19,0xce,0x80,0x82,0x61,0x67,0x11,0x33,
+ 0xa0,0x82,0xa2,0x22,0x26,0x50,0x90,0xc,0xdb,0xff,0x79,0x3d,0x35,0xbb,0xbd,0xbb,
+ 0xd3,0x61,0x7a,0x67,0x66,0x67,0xa6,0xeb,0x7d,0x3e,0xf3,0xd9,0xd0,0x55,0xd5,0xef,
+ 0xbd,0xaa,0xdf,0x54,0x7a,0x41,0x61,0xc8,0x68,0xc0,0x68,0xc0,0x55,0x3,0xca,0xe8,
+ 0xc6,0x68,0xc0,0x68,0xc0,0x5d,0x3,0x6,0x20,0x66,0x74,0x18,0xd,0x78,0x68,0xc0,
+ 0x0,0xc4,0xc,0xf,0xa3,0x1,0x3,0x10,0x33,0x6,0x8c,0x6,0xc2,0x69,0xc0,0xcc,
+ 0x20,0xe1,0xf4,0x66,0x6a,0x45,0x44,0x3,0x6,0x20,0x11,0xe9,0x68,0x23,0x66,0x38,
+ 0xd,0x18,0x80,0x84,0xd3,0x9b,0xa9,0x15,0x11,0xd,0x18,0x80,0x44,0xa4,0xa3,0x8d,
+ 0x98,0xe1,0x34,0x60,0x0,0x12,0x4e,0x6f,0xa6,0x56,0x44,0x34,0x60,0x0,0x12,0x91,
+ 0x8e,0x36,0x62,0x86,0xd3,0x80,0x1,0x48,0x38,0xbd,0x99,0x5a,0x11,0xd1,0x80,0x1,
+ 0x48,0x44,0x3a,0xda,0x88,0x19,0x4e,0x3,0x6,0x20,0xe1,0xf4,0x66,0x6a,0x45,0x44,
+ 0x3,0x6,0x20,0x11,0xe9,0x68,0x23,0x66,0x38,0xd,0x18,0x80,0x84,0xd3,0x9b,0xa9,
+ 0x15,0x11,0xd,0x18,0x80,0x64,0xb7,0xa3,0xdb,0x0,0x9b,0x3,0xdd,0x81,0x2e,0xc0,
+ 0x1a,0xfa,0xa7,0xdb,0xef,0xf2,0xdc,0x2,0x96,0x2,0xcb,0xf4,0xc7,0xf9,0xbb,0xfc,
+ 0x4f,0xfe,0x9e,0x1,0x4c,0xd7,0x1f,0xf9,0xfd,0x8b,0xec,0xb2,0x6d,0x5a,0x73,0xd3,
+ 0x80,0x1,0x48,0xf8,0xb1,0xd1,0xb,0xe8,0xf,0x6c,0xa,0xc,0x4,0x6,0xe8,0xdf,
+ 0xc3,0xb7,0x18,0xbc,0x66,0x8d,0x3,0x2c,0x2,0x9c,0xd7,0x81,0xff,0x1,0x2b,0x82,
+ 0x37,0x61,0x4a,0x6,0xd1,0x80,0x1,0x48,0x10,0x2d,0x41,0x25,0xb0,0x5,0xb0,0x89,
+ 0x6,0x85,0x80,0x41,0x66,0x89,0x30,0xb4,0x1c,0x98,0xa7,0x3f,0xf3,0x1,0x99,0x75,
+ 0x3a,0x1,0x9d,0xf5,0xcf,0xd6,0x61,0x1a,0x5,0x4,0x34,0x2f,0x0,0xff,0x5,0xde,
+ 0x2,0x3e,0xa,0xd9,0x8e,0xa9,0xe6,0xd0,0x80,0x1,0x88,0xfb,0x70,0xe8,0xb,0xec,
+ 0xa9,0x3f,0xc3,0x3,0x8c,0x9a,0x25,0xc0,0x87,0xc0,0x54,0xe0,0x6b,0x7,0x8,0x9c,
+ 0x60,0x90,0xdf,0xff,0xf0,0x69,0xab,0x7d,0x3,0xc0,0xac,0x7,0xf4,0x3,0x84,0x1f,
+ 0xf9,0x29,0x9f,0xe,0x1,0xf8,0xf9,0x14,0x78,0x43,0x83,0xe5,0x45,0x60,0x41,0x80,
+ 0x3a,0xa6,0x48,0x3,0xd,0x18,0x80,0xd4,0x57,0xc8,0xda,0x1a,0x10,0x7b,0xe9,0x9f,
+ 0x6e,0x3,0xe6,0x7b,0x7,0x18,0x3e,0xd6,0xdf,0xd6,0x9f,0x85,0x19,0x5d,0x56,0x15,
+ 0x1b,0x52,0x46,0x4f,0x6a,0x68,0x8b,0x45,0x5b,0xca,0xf4,0xcf,0xfa,0xbf,0xb7,0x44,
+ 0xb1,0xd4,0xfe,0xd4,0xb0,0xf4,0x8d,0xf,0x68,0xff,0xea,0xfb,0xac,0x39,0x75,0x3a,
+ 0xdd,0xa6,0x7f,0x43,0xcf,0xef,0x7e,0x64,0xf3,0xa5,0xcb,0x3d,0x67,0xb4,0x1f,0x80,
+ 0x67,0xf4,0x47,0x66,0x18,0x43,0x1,0x35,0x60,0x0,0x2,0x6d,0x1d,0x33,0x85,0x0,
+ 0x43,0x96,0x3b,0xd,0x29,0xe,0x3c,0xaf,0x81,0x20,0x80,0xc8,0x68,0x93,0x6c,0xc5,
+ 0x91,0x59,0x21,0xf9,0xed,0x5f,0x46,0x5f,0x6a,0x6a,0x67,0x2,0xf9,0x5f,0xd8,0x25,
+ 0x55,0x3d,0x1e,0xbf,0x98,0xd,0xaf,0x55,0xf1,0xdb,0x8b,0x93,0x59,0x32,0xe9,0x43,
+ 0x3a,0xfc,0xf2,0x1b,0x1d,0x5d,0xc6,0x80,0xcc,0x72,0x29,0xb0,0x4c,0x9,0x38,0x4e,
+ 0x22,0x5b,0x2c,0xca,0x0,0x29,0x4f,0x2c,0x85,0x8e,0xd2,0xe0,0xe8,0x91,0x66,0x4,
+ 0x7c,0xe,0x3c,0xa7,0x3f,0x13,0x33,0x19,0x21,0xd6,0xbb,0xac,0x4e,0x2b,0xb6,0xc2,
+ 0x62,0x4,0xb0,0x23,0x20,0xef,0xca,0x2b,0xc5,0x3f,0x83,0xb7,0xa7,0xc2,0xcb,0xef,
+ 0xc2,0x8b,0x93,0x5d,0x5f,0xfd,0x2a,0xf0,0x24,0x70,0x2f,0xb0,0x32,0xaf,0xc,0x16,
+ 0xc9,0xcb,0xa2,0x8,0x10,0x19,0xac,0xc7,0xeb,0x4f,0xc3,0x6e,0x9a,0xed,0x0,0x85,
+ 0xac,0xdb,0x3,0x51,0x2d,0x20,0x6a,0xd8,0x8a,0x32,0x86,0x61,0xd9,0xa0,0x28,0x18,
+ 0xfa,0xf2,0xdb,0x24,0x48,0x5e,0x9c,0xe4,0xa,0x16,0xd9,0xd0,0xb,0x48,0xe4,0xb3,
+ 0xa8,0x60,0x18,0x2f,0x0,0x46,0xa2,0x4,0x10,0x37,0x60,0xfc,0xea,0x0,0x85,0xcc,
+ 0x18,0x72,0xef,0x10,0x88,0xac,0x6a,0xf6,0xc4,0xe2,0xcf,0x60,0x7f,0xd6,0xa,0x54,
+ 0xa9,0x99,0xb,0x79,0x81,0xa5,0x7d,0x5b,0x66,0x2f,0x5e,0xca,0xad,0x1a,0x28,0x72,
+ 0xa0,0x10,0x79,0x8a,0x2,0x40,0xdc,0x80,0xf1,0x1b,0x70,0xbb,0xfe,0xc8,0xa6,0x3b,
+ 0x10,0x59,0xd5,0x6c,0xe9,0x0,0x85,0xdc,0x83,0x14,0x2d,0x55,0x7f,0xe,0xe3,0x9e,
+ 0x86,0x71,0x4f,0xd5,0x17,0xa1,0x53,0x47,0xe6,0x75,0x59,0x9d,0x7,0xbe,0xfe,0x9e,
+ 0xeb,0x0,0xd9,0xe0,0x47,0x96,0x4a,0x19,0x20,0x6e,0xc0,0x90,0xcb,0xb4,0xdb,0x12,
+ 0x37,0xdc,0xff,0xd0,0xc7,0xb1,0xbe,0x9d,0x6f,0x4d,0x66,0x5d,0xda,0x70,0xa0,0x3d,
+ 0x53,0x58,0x6c,0xeb,0x5b,0xa1,0xc8,0xa,0xb8,0x1,0xa5,0x6b,0x17,0x16,0x8f,0xa8,
+ 0xe0,0xc9,0xc7,0x87,0x72,0xb4,0xba,0xd4,0xbe,0x67,0x89,0x1c,0x95,0x2a,0x40,0xee,
+ 0x72,0xd9,0x63,0xdc,0x9d,0x38,0x35,0xfa,0x7b,0x60,0x60,0xc8,0x11,0x2c,0x8c,0x42,
+ 0x31,0xa,0x90,0x23,0xe0,0x92,0x26,0x37,0xa0,0x6c,0x33,0x98,0x5,0x7b,0x6f,0xcb,
+ 0xfd,0x67,0x1f,0xc0,0x5,0x6a,0x28,0x72,0xdf,0x13,0x19,0x2a,0x45,0x80,0x6c,0xa7,
+ 0x4d,0x2f,0x9c,0x9d,0x78,0x3f,0x70,0x59,0x60,0x60,0x54,0xd3,0x1f,0xcb,0x6,0x85,
+ 0x7c,0xe4,0x86,0x3b,0x52,0x24,0x40,0xb9,0xfd,0x5f,0xf0,0xcf,0xff,0xd4,0x17,0xfb,
+ 0x84,0x7d,0x99,0x77,0xf2,0x1,0xdc,0xb2,0x45,0x3f,0x6e,0x56,0x83,0x90,0x25,0x6a,
+ 0xc9,0x53,0xa9,0x2,0xe4,0x3e,0xa0,0x67,0xe2,0x93,0x19,0x30,0xde,0x67,0x20,0x2d,
+ 0x18,0xa5,0xc1,0xd1,0xae,0xe4,0x7b,0xdf,0x47,0xc0,0xe7,0xde,0x82,0xeb,0xc6,0xc3,
+ 0x44,0xc7,0x6d,0x49,0xef,0xd,0xe0,0xb4,0x83,0xf9,0xf9,0xb4,0x83,0xb8,0x99,0x15,
+ 0xdc,0xab,0xb6,0xe4,0xc7,0x52,0xd6,0x53,0x29,0x2,0x24,0xe3,0xfe,0xb2,0xe2,0x6c,
+ 0x94,0x30,0xc5,0x38,0x1b,0xc5,0x89,0x58,0x94,0x65,0xdc,0x40,0x89,0x57,0xb8,0xe9,
+ 0x11,0xb8,0x7e,0x3c,0xcc,0xf9,0xb9,0x4e,0xd0,0x7d,0x46,0xc0,0x95,0x27,0xf3,0xe3,
+ 0x26,0xbd,0xb8,0x99,0x4e,0xdc,0xa4,0x7a,0xdb,0xd6,0xc8,0x25,0x47,0x91,0x6,0x88,
+ 0xf5,0x5,0x6d,0xf8,0x9d,0xb3,0x6c,0x70,0x40,0xd7,0x92,0xeb,0xdd,0x2c,0xa,0x34,
+ 0x6b,0x4e,0x12,0x24,0xb2,0xf4,0x4a,0x51,0x8f,0xee,0x30,0xe6,0x34,0x38,0x78,0x27,
+ 0xa6,0xa0,0xb8,0x49,0x95,0xf3,0x50,0x16,0x5f,0x59,0x10,0x4d,0x45,0x16,0x20,0x56,
+ 0x35,0x87,0x63,0xd9,0xe0,0x18,0x5c,0x10,0x3d,0x51,0x24,0x4c,0xbc,0xf2,0x1e,0x5c,
+ 0x7c,0x7,0xbc,0xf7,0x49,0x1d,0xc3,0xa3,0x8f,0x84,0x31,0xa7,0x42,0x59,0xb,0xfe,
+ 0x43,0xd,0x37,0xa9,0xa,0xdb,0x48,0xb2,0x24,0x28,0x72,0x0,0xb1,0xaa,0xd8,0x8e,
+ 0x32,0xce,0xc2,0x42,0xec,0xae,0xc,0x85,0xd0,0xc0,0xfc,0x5,0x70,0xc6,0xf5,0x30,
+ 0x5e,0x8c,0xeb,0x35,0x6d,0x5f,0x1,0xd7,0x9c,0x6,0x31,0x71,0x8,0x48,0xde,0x2f,
+ 0xdd,0xa8,0x62,0x7c,0x15,0xa2,0xf9,0x82,0xaa,0x12,0x19,0x80,0x58,0xaf,0xd3,0x92,
+ 0x8e,0x8c,0x1,0xce,0x29,0xa8,0x1e,0x28,0x62,0x66,0xae,0xbc,0x37,0x39,0x9b,0xa4,
+ 0xa8,0x73,0xc7,0x24,0x48,0x8e,0xdf,0xd7,0xfe,0xcf,0xcf,0x28,0x2e,0x56,0xe5,0xc8,
+ 0x91,0x7b,0xd1,0x52,0x24,0x0,0x62,0x55,0x51,0x89,0xb2,0xc1,0x21,0xc6,0x83,0x86,
+ 0xb2,0xa8,0x81,0x27,0x5e,0x81,0x33,0x6f,0x80,0x1f,0x7e,0xa9,0x6b,0xf4,0xdc,0x23,
+ 0xe0,0xba,0x33,0xf4,0xdf,0x16,0xb7,0xd1,0x99,0x73,0x8a,0x75,0x13,0x5f,0xf2,0x0,
+ 0xb1,0xe2,0x9c,0x8,0x5c,0x93,0x98,0xf2,0x57,0xcf,0xe2,0xb8,0x30,0x4d,0x39,0x34,
+ 0x30,0x75,0x6,0x9c,0x79,0x3d,0xbc,0xe9,0x38,0xe,0x3e,0x62,0x37,0x78,0xf0,0x72,
+ 0x5d,0x48,0xf1,0x26,0x2b,0x39,0x57,0xd,0x41,0xdc,0x6,0x8a,0x8a,0x4a,0x16,0x20,
+ 0xd6,0x64,0xd6,0xa0,0xd,0x63,0xb0,0x38,0xae,0xa8,0x7a,0xa4,0x48,0x99,0x5d,0xbc,
+ 0x14,0x46,0x5d,0xe,0x8f,0xbd,0x5c,0x27,0xc0,0x4e,0x5b,0xc2,0x4b,0x62,0xfa,0x28,
+ 0x64,0x31,0x8f,0x32,0xce,0x51,0xe5,0xf6,0xdd,0x54,0xd1,0x50,0x49,0x2,0xc4,0x9a,
+ 0xc2,0x8e,0xd4,0xd8,0xb3,0x86,0x39,0xa1,0xca,0xf3,0x50,0x3c,0xfa,0x32,0xb8,0xff,
+ 0xd9,0xba,0x97,0x6e,0xd1,0x1b,0x3e,0x7c,0xb4,0x1e,0x13,0x37,0xa8,0x18,0xe7,0xe6,
+ 0x99,0xad,0xd0,0xaf,0x2b,0x54,0x80,0xec,0x1,0x1c,0xa9,0x83,0x10,0x64,0xf4,0x8d,
+ 0x63,0xc5,0x39,0x16,0x10,0x9b,0x2b,0x43,0xcd,0xa4,0x81,0x13,0xff,0xe,0x77,0x39,
+ 0x2c,0x84,0xd7,0x5e,0x3,0xe6,0x3a,0x66,0x16,0x14,0xff,0xa1,0x25,0x87,0xaa,0x1,
+ 0x85,0xef,0x7b,0x52,0x88,0x0,0x91,0xb8,0x52,0xe2,0x37,0xbd,0x8e,0xee,0x5f,0xf9,
+ 0x19,0xc8,0xe4,0xda,0xaa,0xe6,0x42,0x2c,0xae,0x6a,0xa6,0x71,0x61,0x5e,0xeb,0xd0,
+ 0xc0,0xe8,0x7f,0x24,0x2f,0x16,0x9d,0x64,0xd5,0xdf,0x81,0xbc,0xc7,0x32,0xf6,0x52,
+ 0xc3,0xf8,0xa9,0x90,0x15,0x57,0x88,0x0,0x79,0x24,0x11,0xf3,0xe9,0x10,0xad,0xb4,
+ 0xaa,0xc4,0x2c,0x22,0x21,0x77,0x7c,0xc9,0x8a,0x73,0x33,0x90,0x3a,0x3b,0xf1,0x2d,
+ 0x6f,0xa,0xe4,0x5e,0x3,0x77,0x4e,0x80,0x93,0xae,0xae,0x7b,0xcf,0x86,0xeb,0xc2,
+ 0x57,0xe2,0xd,0x9f,0x22,0x8b,0x59,0xd4,0xb0,0x83,0x1a,0xc2,0xac,0xdc,0x73,0x13,
+ 0xee,0xd,0x85,0x8,0x10,0x71,0xd2,0x91,0x35,0xea,0x4,0xe0,0xe4,0xc4,0xc7,0xf7,
+ 0x1b,0xc6,0x8a,0xe3,0x4,0x55,0x38,0x4d,0x98,0x5a,0x39,0xd1,0xc0,0xab,0xef,0xc3,
+ 0x48,0xe9,0x45,0x4d,0x3b,0x56,0xc2,0x2b,0x72,0x8d,0x58,0x47,0x8b,0x68,0xc9,0x10,
+ 0x35,0x10,0x9,0x53,0x54,0x70,0x54,0x88,0x0,0x11,0x25,0x89,0xc9,0x7a,0x20,0x73,
+ 0x5,0x2b,0x8e,0x6c,0x9,0x65,0xcf,0x62,0xa8,0x40,0x35,0xf0,0x46,0x35,0x8c,0x38,
+ 0xa1,0x8e,0x39,0xb9,0x48,0xbc,0xeb,0xc2,0x6,0xcc,0x5a,0xc,0x51,0x15,0xbc,0x5f,
+ 0x68,0x22,0x14,0x2a,0x40,0x2,0xe9,0xc9,0x8a,0xf3,0x9a,0xb9,0xfc,0xb,0xa4,0xaa,
+ 0x66,0x2f,0xf4,0xdf,0xc9,0xb0,0xeb,0xe9,0x75,0x6c,0x9c,0x73,0x38,0x5c,0x7f,0x66,
+ 0x3,0xb6,0x5a,0xb0,0xb5,0x1a,0xc4,0xa4,0x66,0x67,0xd6,0xc1,0x40,0xd1,0x2,0xc4,
+ 0x8a,0x23,0x46,0xe,0x72,0x9,0x68,0xa8,0x48,0x34,0x20,0x77,0x24,0x87,0x38,0x66,
+ 0x8e,0xb,0x8f,0x81,0xab,0x1c,0xcb,0x2f,0x5b,0xc,0x8b,0x8d,0x54,0x5,0x33,0xb,
+ 0x45,0xa4,0xe6,0x6,0xc8,0x1,0x3a,0x1e,0xd3,0xd3,0x99,0x28,0x44,0xdf,0x8e,0x3b,
+ 0xac,0x80,0x32,0xa9,0x6d,0xca,0x36,0xa7,0x6,0x1a,0x6e,0xdc,0x65,0x16,0x91,0xd9,
+ 0xa4,0x1e,0xb5,0x64,0x3d,0x35,0x90,0xc0,0x81,0x34,0x72,0x29,0x4f,0x73,0x2,0xc4,
+ 0x39,0x3,0x48,0xa4,0x74,0x89,0x67,0xeb,0x4b,0x56,0x15,0xfb,0xa3,0x70,0x78,0x25,
+ 0x78,0x54,0xe9,0x72,0x0,0xac,0x77,0x2d,0x2c,0x9e,0xa,0x5f,0xed,0xe3,0xdb,0xb6,
+ 0x29,0x90,0x1f,0xd,0x8c,0xb9,0x1f,0xfe,0x4f,0xdf,0xb0,0xb7,0x6c,0x1,0x2f,0xdf,
+ 0x6,0x23,0x62,0xf5,0xd6,0x35,0x73,0xb0,0x18,0xa0,0x62,0x38,0x2c,0xbc,0xf2,0xc3,
+ 0x5b,0xc3,0xb7,0x34,0x17,0x40,0xe4,0x12,0xf0,0x1,0x7,0x33,0x7f,0x2,0x7f,0xd7,
+ 0x4d,0xab,0x8a,0x91,0x28,0x9c,0x57,0x4e,0xee,0x5a,0x2b,0x5b,0xd,0x36,0x9f,0x5,
+ 0x2d,0xb5,0x1f,0xd4,0x8c,0x11,0xb0,0x30,0xd0,0xbe,0xbf,0x79,0x7a,0x22,0xdd,0x5b,
+ 0xdb,0xf,0x84,0xe5,0xdf,0xc3,0x4a,0x87,0x2b,0x5f,0xe1,0x70,0xd7,0x24,0x4e,0x4e,
+ 0x1e,0x3,0x77,0x48,0x4c,0x47,0x39,0xc7,0xdf,0x34,0x79,0xb2,0xb5,0xfa,0x6a,0xf5,
+ 0x9a,0x7c,0x9b,0xa5,0xec,0xa6,0xb6,0x66,0x61,0x93,0x5e,0xd4,0xc4,0xca,0xcd,0x1,
+ 0x10,0x49,0x23,0xf0,0x6e,0xc2,0x80,0x30,0xe5,0xf3,0x7d,0x81,0x36,0x26,0xf4,0x14,
+ 0xc5,0x8a,0x33,0x4,0xc5,0xab,0x58,0x81,0x22,0x9b,0x43,0x9b,0x8d,0x60,0xb3,0x2f,
+ 0x93,0x6d,0xfe,0xf6,0x34,0x7c,0x95,0xb4,0xc1,0x2e,0x78,0x5a,0xe7,0x52,0x68,0x37,
+ 0x8,0x3a,0xe,0x87,0x16,0x3a,0x5e,0x84,0xcc,0x80,0x8b,0xde,0x83,0xdf,0x26,0xc0,
+ 0x82,0x57,0xa,0x5e,0x84,0x20,0xc,0x2e,0x59,0x6,0x3b,0x9f,0xa,0x6f,0x7d,0x90,
+ 0x2c,0x7d,0xe2,0x7e,0x70,0xc7,0xff,0x35,0xa8,0x69,0xf1,0x2c,0x8a,0xfd,0x54,0xac,
+ 0xf9,0xf2,0x9e,0x34,0x7,0x40,0x24,0xd1,0xcb,0xf6,0x5a,0x15,0xb2,0x54,0x92,0x78,
+ 0x53,0x7e,0xe0,0x10,0x9f,0x71,0x89,0x7a,0x28,0xc1,0x9e,0x83,0x53,0xbb,0x2d,0xa0,
+ 0xc3,0xd6,0xb0,0xe0,0x25,0x58,0x56,0xe0,0xbe,0x3b,0x1d,0x77,0x80,0x1e,0x77,0x42,
+ 0x9b,0x8d,0xbd,0xe5,0xfb,0xf1,0x26,0xf8,0x4e,0x3c,0x84,0x8b,0x9f,0xde,0xff,0x14,
+ 0x76,0x39,0xd,0xc4,0x1,0x4b,0x68,0xdc,0x5f,0xe1,0xb8,0x86,0x2b,0x61,0x8b,0x27,
+ 0x55,0x5,0xb2,0x57,0x6d,0x16,0xca,0x37,0x40,0x52,0x97,0x80,0x22,0xac,0x9c,0x54,
+ 0x8c,0xd4,0x3f,0xbd,0x1,0x52,0xcd,0x33,0x25,0xed,0x1,0xb8,0xc6,0xa1,0xd0,0xeb,
+ 0xe1,0xe0,0x3,0x60,0xfe,0x4,0x98,0xb9,0x7f,0xf0,0xf2,0x5,0x5c,0x52,0x42,0xb,
+ 0x89,0x15,0xb0,0xd0,0x1a,0xab,0x27,0x97,0x5a,0x83,0x1b,0x7f,0xd,0x5e,0xac,0x62,
+ 0x5c,0xd9,0x1c,0x62,0xe4,0x13,0x20,0x47,0x0,0xf,0x3a,0x84,0x94,0x99,0xc3,0x77,
+ 0xb3,0x6d,0xc5,0x11,0x63,0x5,0x59,0x86,0x95,0x26,0xb5,0xe8,0x2,0x3,0x43,0x84,
+ 0xc1,0x2d,0xc6,0x3d,0x95,0x4b,0xf,0x9e,0x7d,0x23,0x48,0xe4,0x14,0xa1,0x34,0x37,
+ 0xed,0xc9,0x7,0x16,0xbb,0xab,0xa,0x3b,0x83,0x56,0x5e,0x29,0x5f,0x0,0x91,0xc5,
+ 0xb4,0x4,0xe1,0x4f,0xc5,0xb2,0x15,0x53,0x74,0xdf,0x41,0xaf,0x3,0x2b,0x34,0x30,
+ 0x79,0x4b,0xa3,0x9f,0xb6,0x7d,0x12,0x9,0xd1,0x2e,0x85,0x15,0xdf,0xc3,0x77,0xa3,
+ 0xf3,0xaa,0xc0,0x26,0xbf,0xac,0xc7,0x5d,0xb0,0x96,0x4,0x9b,0xcf,0x90,0x16,0x55,
+ 0xc1,0x17,0x3b,0xc0,0xaa,0x66,0xdd,0xc3,0x66,0xc8,0x74,0xfa,0xe2,0x35,0x35,0xc9,
+ 0xfd,0x88,0x98,0xa5,0x8,0xc9,0xdd,0x88,0xdc,0x91,0x34,0xa0,0x8f,0x69,0xc3,0x48,
+ 0xb5,0xb9,0xff,0x61,0x4e,0x56,0x98,0xd2,0x8d,0xe4,0xb,0x20,0x32,0x3d,0xfe,0x55,
+ 0xbf,0x53,0x80,0x32,0xcc,0x4f,0x8,0x2b,0x6e,0xfb,0x72,0x88,0x55,0xaf,0x7f,0x38,
+ 0x9e,0x3e,0xaf,0x43,0x47,0xb1,0x4e,0x11,0xbb,0xdf,0xcb,0x60,0xce,0xa5,0x7e,0xcd,
+ 0x17,0xc6,0xf3,0x56,0xeb,0xc2,0x16,0xdf,0x85,0xe7,0x65,0xd6,0x21,0x30,0xef,0xb1,
+ 0xf0,0xf5,0xb,0xa8,0xe6,0x7,0xd3,0x61,0xd8,0x31,0x20,0x9b,0xf7,0xd5,0xda,0xc1,
+ 0xc4,0xbb,0xd3,0x2e,0xb5,0x1e,0x50,0x31,0x3b,0xa7,0x4b,0xde,0x28,0x1f,0x0,0x19,
+ 0xa4,0x67,0xf,0xc9,0xe4,0x24,0xb4,0x5f,0x22,0x21,0x66,0x83,0x78,0xe2,0xf5,0xe5,
+ 0xd5,0xf1,0xaa,0x4,0x1c,0x7a,0xd4,0x7b,0xe8,0x63,0xbd,0xeb,0x61,0x6d,0x1d,0x87,
+ 0x61,0xd9,0x4c,0x98,0xbe,0x35,0xac,0x8,0x64,0x1d,0x9f,0x37,0x25,0xbb,0xbe,0x48,
+ 0x40,0x2d,0xe0,0xe,0x4b,0xc5,0xf4,0x65,0x10,0x40,0xc6,0x4b,0xee,0x82,0xcb,0xb5,
+ 0x27,0xcf,0x7e,0xdb,0xc3,0x93,0xd7,0xa6,0xad,0x74,0x86,0x8a,0x31,0x36,0x40,0x73,
+ 0x59,0x29,0x92,0xf,0x80,0xc8,0xee,0xf3,0x50,0xcd,0xad,0xac,0x34,0xf,0xf3,0xe3,
+ 0xdc,0x8a,0xdb,0xd1,0xd7,0x1b,0x1a,0x21,0x34,0xae,0xb6,0xc6,0x21,0xd0,0x4b,0x2f,
+ 0x5e,0xe5,0xe9,0xcc,0x3,0x60,0xbe,0x3e,0x5c,0xf7,0x7b,0x49,0x21,0x3c,0x5f,0xeb,
+ 0x58,0xe8,0xd1,0x4,0xdf,0xae,0x79,0xf,0xc3,0xac,0x86,0xd7,0xd0,0x85,0x20,0x58,
+ 0x38,0x1e,0x16,0x2e,0x86,0xad,0x47,0xc1,0x47,0x3a,0xc1,0x5d,0xda,0x53,0x2d,0x58,
+ 0x82,0xc5,0x48,0x55,0x91,0x1f,0x9b,0xad,0x5c,0x3,0x44,0x2e,0x1f,0xc4,0x6c,0x5d,
+ 0x48,0x12,0xd3,0xc,0x4d,0xa4,0x10,0xd0,0x27,0xdf,0xe9,0x95,0x68,0x55,0x73,0x10,
+ 0x16,0xfe,0xeb,0x6,0xd9,0x77,0xf4,0x99,0x8,0xad,0x74,0xd0,0xf5,0xb9,0x63,0xe0,
+ 0xfb,0x86,0x7,0xe9,0xe1,0x3a,0x2a,0x6f,0xb5,0xba,0x5f,0x4,0xeb,0x5c,0x11,0xfe,
+ 0x75,0xb,0xff,0x7,0x33,0xa,0x2a,0x99,0x55,0x78,0x59,0x74,0x4d,0x89,0xb5,0x75,
+ 0xe4,0xdf,0x92,0x7f,0xf4,0x5c,0x27,0xb9,0xd4,0x5a,0xbf,0x71,0x5c,0xfd,0xd7,0x54,
+ 0x8c,0x1d,0x9a,0xfc,0xb2,0x0,0xd,0xe4,0x1a,0x20,0x62,0x99,0x29,0xa0,0x10,0x12,
+ 0x4f,0xbf,0x8b,0xbc,0x78,0xd2,0x4b,0x2b,0xa9,0xe3,0x9f,0xd3,0x6f,0xe3,0xe7,0xa1,
+ 0xd3,0x6e,0xc9,0xe6,0x16,0xbc,0xc,0x5f,0xec,0x1c,0x40,0xdc,0x2,0x2b,0xd2,0xed,
+ 0x74,0x58,0x5f,0xd2,0x94,0x84,0xa4,0x62,0xba,0x0,0xcd,0x40,0xc4,0xfd,0xce,0x83,
+ 0xa7,0xc4,0x4e,0xdb,0xed,0x2,0x51,0x1e,0x58,0x9c,0xa7,0x2a,0xec,0x4,0x3f,0x39,
+ 0xa5,0x5c,0x2,0xe4,0x24,0x1d,0x61,0x4f,0x4,0x90,0x84,0x98,0x2,0x14,0xcf,0x90,
+ 0xf9,0x56,0xdc,0x6,0x90,0xff,0x57,0xaa,0x7c,0xeb,0xca,0xb7,0xaf,0xd0,0xca,0x5f,
+ 0xe0,0x8b,0x91,0x49,0x7b,0xab,0x62,0xa3,0x35,0x8f,0x82,0x9e,0x12,0x88,0x3e,0x24,
+ 0xfd,0x7a,0x3f,0x7c,0x7d,0x74,0xc8,0xca,0x85,0x5b,0xed,0xdd,0x8f,0x61,0xd8,0x28,
+ 0x90,0xd3,0x2d,0xa1,0x67,0x6f,0x82,0x3d,0xb6,0x69,0xc4,0xaf,0x8c,0xa5,0xe1,0x2a,
+ 0x86,0x64,0x1d,0xce,0x19,0xe5,0xa,0x20,0xb2,0x21,0x97,0x43,0x3b,0xf1,0x2f,0x17,
+ 0x92,0xd0,0x3b,0xf7,0x78,0x49,0x61,0x55,0xb1,0x19,0x8a,0xb7,0x5d,0xd2,0x30,0xd7,
+ 0x55,0xed,0xbc,0x17,0x6c,0xe4,0xf0,0xdb,0xfc,0xe6,0x58,0xf8,0x45,0x72,0x4f,0x16,
+ 0x21,0x75,0xde,0x7,0x36,0xf2,0x3c,0xaf,0xf0,0x16,0xea,0xa7,0xb1,0xf0,0x6d,0x69,
+ 0x7a,0x19,0x9f,0x3f,0x16,0xae,0xd5,0xb7,0x66,0xae,0x1b,0x76,0xc5,0x63,0xaa,0xbc,
+ 0xd6,0x3d,0x3b,0x27,0x3,0x20,0x57,0x0,0x91,0xa0,0xd0,0x37,0x6a,0x8e,0xdf,0xc,
+ 0x72,0x1a,0x65,0xc5,0xed,0x78,0x49,0x7f,0xf1,0x95,0xb2,0xef,0x44,0xe8,0xa0,0xbf,
+ 0x4e,0x7e,0xbe,0x1d,0x66,0x9f,0xe2,0x5b,0xa5,0x60,0xb,0x88,0x79,0x49,0x1f,0xc9,
+ 0xc4,0x1c,0x92,0x7e,0xb8,0x12,0xe6,0x5c,0x1c,0xb2,0x72,0x61,0x57,0xfb,0xee,0x27,
+ 0x18,0x74,0x28,0xfc,0xa2,0xd7,0x1c,0x6f,0x8e,0x83,0xe1,0xe9,0x83,0x38,0x1d,0xa5,
+ 0x62,0xf5,0xc,0x5f,0xb3,0x2a,0x58,0x2e,0x0,0x22,0x97,0x82,0x12,0x6c,0x21,0x65,
+ 0x54,0x24,0x76,0x34,0x9e,0x47,0x4b,0x56,0x9c,0xbd,0x1,0x7f,0x9f,0x90,0x6e,0x67,
+ 0xc2,0xfa,0x37,0x25,0x15,0xb0,0xe4,0x63,0x98,0xbe,0x2d,0xac,0x9a,0x9f,0x55,0x85,
+ 0xe4,0xb5,0xb1,0xd5,0x2a,0xa0,0x5f,0x13,0xbc,0x4c,0xbf,0x3b,0xf,0x7e,0xcc,0xf9,
+ 0x32,0x3c,0xaf,0x2a,0x71,0xbe,0xcc,0x19,0x19,0xe5,0xa8,0x3d,0xe1,0xbe,0x4b,0xd2,
+ 0xb2,0x32,0x83,0x36,0xc,0xcf,0xd5,0x5,0x62,0x2e,0x0,0x22,0x47,0x49,0x92,0x7,
+ 0x50,0x48,0xd6,0x42,0x32,0xf8,0x3d,0x29,0x61,0xc6,0x3e,0x29,0x61,0xc6,0x9e,0xda,
+ 0xcc,0xa7,0x2f,0xdb,0xba,0x7,0xf4,0x9b,0x4,0x72,0xb9,0x26,0x34,0xf3,0x20,0x98,
+ 0xff,0x84,0x5f,0xd3,0x85,0xfd,0xbc,0x6d,0x5f,0xd8,0x74,0x5a,0x78,0x1e,0x67,0x9f,
+ 0x8,0x3f,0x17,0x75,0x6c,0x68,0x4f,0xd9,0x3f,0x9b,0x9,0x83,0xe,0x83,0xe5,0x92,
+ 0x76,0x55,0x8e,0x3f,0x1f,0x81,0x81,0x7d,0xd2,0x56,0x19,0xab,0x62,0xb9,0x89,0x68,
+ 0x93,0x6d,0x80,0x88,0x5f,0x87,0xcc,0x1e,0xeb,0x69,0x31,0xe4,0xc,0x52,0xac,0x77,
+ 0x5d,0xc9,0xaa,0xb2,0x93,0x64,0x7a,0xee,0x4f,0xec,0xca,0xeb,0x8f,0x85,0x6e,0xa7,
+ 0x25,0xdb,0xf9,0xe5,0x1e,0xf8,0xa6,0x4,0x22,0x8a,0xb6,0xea,0xe,0x5b,0xcc,0x9,
+ 0xf,0x90,0x59,0x87,0xc2,0xbc,0xfa,0x61,0xb,0xc3,0x37,0x56,0x98,0x35,0x4f,0xf8,
+ 0x7b,0x5d,0x9a,0xea,0xd3,0xf,0x86,0x7f,0xa4,0x8f,0xc9,0xb8,0x2,0xc5,0x0,0x55,
+ 0x6e,0x1f,0x6,0x65,0x95,0xb2,0xd,0x10,0xb1,0xc3,0xbe,0x41,0x73,0x28,0x7b,0xa,
+ 0xdf,0x23,0x16,0xab,0x9a,0xc9,0x58,0x6c,0xe5,0x29,0x55,0xc7,0x11,0xd0,0x47,0x9f,
+ 0xfb,0x49,0xc1,0x8f,0x7b,0xc2,0xf2,0x6f,0xb2,0xaa,0x88,0x66,0x69,0x4c,0x9c,0xba,
+ 0x6,0xfd,0x11,0xfe,0xd5,0x5f,0xee,0xe,0xbf,0xe7,0xdd,0x7e,0x2f,0x3c,0xbf,0x21,
+ 0x6a,0xbe,0xf3,0x11,0xc,0xd5,0x76,0x59,0xe2,0x50,0x25,0xb3,0x88,0xc4,0xd7,0x4a,
+ 0x43,0x63,0x54,0x8c,0xac,0x5f,0x84,0x65,0x1b,0x20,0xb2,0x21,0x1f,0xae,0x99,0x97,
+ 0x80,0x6f,0x32,0x9b,0xb8,0xcf,0x1e,0xc9,0x2c,0x4f,0xfe,0xc6,0x88,0x1b,0x3f,0x7,
+ 0x9d,0x76,0x4f,0xb6,0x33,0xfb,0x24,0xf8,0xf9,0xce,0x10,0xaa,0x2e,0xd0,0x2a,0x83,
+ 0x57,0x80,0x6a,0x19,0x8e,0xb9,0xe9,0xdb,0xc0,0x1f,0x72,0xf0,0x57,0xda,0x74,0xf0,
+ 0x85,0xf0,0xb8,0xf6,0x23,0xbd,0x68,0x14,0x5c,0x21,0x17,0x8,0x8d,0x49,0x7c,0xd8,
+ 0x7,0x66,0xdb,0x4d,0x37,0x9b,0x0,0x91,0x3d,0x44,0x2a,0x64,0x8b,0x7c,0xad,0xe9,
+ 0x11,0xed,0x1,0x90,0x38,0x62,0x88,0xe4,0x6d,0x6f,0xb5,0xd6,0x28,0xe8,0xa1,0x57,
+ 0x60,0x35,0x7f,0xc0,0x7,0x1d,0x4b,0x6b,0x34,0xc,0xf8,0x15,0x5a,0xae,0x11,0x4e,
+ 0xa6,0xcf,0x6,0xc0,0x92,0x8f,0xc2,0xd5,0x2d,0xa2,0x5a,0xce,0x90,0x41,0x32,0x7b,
+ 0x4c,0x9b,0x0,0xad,0xd2,0x7d,0xa7,0x28,0xce,0x56,0xe5,0xe8,0x53,0x9c,0xec,0x8,
+ 0x98,0x4d,0x80,0x88,0x9,0xfb,0x79,0x9a,0x2d,0x59,0x5a,0x79,0x6,0x9d,0xb6,0xe2,
+ 0xb6,0x97,0x98,0xff,0x2e,0x5b,0x5c,0x50,0xbb,0xeb,0xe3,0x8b,0xe9,0xc3,0xe0,0xf,
+ 0x31,0x6,0x2e,0x21,0x12,0xbf,0xf9,0xd6,0x92,0xb1,0x3a,0x4,0x7d,0xdc,0xb,0x96,
+ 0x7,0x8a,0x75,0x11,0xa2,0xf1,0xc2,0xaa,0x22,0x36,0x5a,0x93,0x3e,0x4c,0xf2,0xf4,
+ 0xaf,0x6b,0x60,0xff,0x74,0x86,0x26,0x16,0x53,0x55,0x5,0x62,0x1c,0x9b,0x35,0xca,
+ 0x16,0x40,0x24,0x75,0xb2,0x6c,0x90,0xe4,0x8c,0x41,0x7a,0x6c,0x33,0xf0,0x8e,0xdc,
+ 0x6d,0xc5,0x6d,0x53,0x76,0x7f,0xfb,0x10,0x19,0x3c,0x72,0xdb,0x3c,0xef,0xa1,0xe2,
+ 0xbd,0x10,0xf4,0xea,0xae,0x4d,0x3e,0x4,0x71,0xd,0xe,0x43,0x1f,0xae,0x9,0x2b,
+ 0x43,0x38,0x5b,0x85,0x79,0x57,0x33,0xd7,0xb9,0xee,0x41,0x38,0x4f,0xdb,0xf0,0x1e,
+ 0xbe,0x1b,0x8c,0x4f,0x25,0xe7,0x69,0xc8,0x57,0xd,0x47,0xa8,0xca,0xec,0x65,0xdb,
+ 0xcd,0x16,0x40,0x9c,0x46,0x89,0x72,0x30,0x9f,0x9a,0x49,0xd2,0xaa,0xd5,0xaa,0x62,
+ 0x2f,0x94,0x7d,0x4,0x6c,0xa8,0xef,0x5b,0x49,0xbf,0xf9,0x30,0x34,0xa5,0x15,0x58,
+ 0x2b,0xc3,0xd4,0x2c,0xba,0x3a,0x33,0x66,0x43,0xff,0xfd,0x93,0xe6,0x27,0x1d,0xdb,
+ 0xc3,0xe7,0x4f,0xc2,0xba,0xdd,0xd2,0x8a,0xf1,0xb2,0x8a,0x5,0xf8,0xe2,0xd,0xa8,
+ 0x81,0x6c,0x1,0x44,0x42,0xf8,0x48,0x28,0x1f,0x21,0xff,0xcd,0xb9,0x9,0x36,0x5d,
+ 0xd7,0x3d,0x4e,0xa3,0xcb,0x80,0x9d,0x66,0x17,0xab,0x59,0x4,0x1f,0x74,0xc8,0xa4,
+ 0x46,0xd1,0x97,0xdd,0x77,0x34,0x3c,0xad,0xdd,0x67,0x6e,0x3b,0x1f,0x4e,0x76,0xb,
+ 0xe5,0x50,0xc3,0x30,0x55,0x69,0x7b,0xb0,0x36,0x99,0xb2,0x1,0x10,0xd9,0x61,0x8a,
+ 0x5,0xbf,0xfc,0x94,0x65,0xd3,0xae,0x5e,0x5c,0x59,0x53,0x58,0x87,0x1a,0xa6,0x43,
+ 0xc0,0xf0,0x3d,0x4d,0x16,0xb1,0xc0,0x1b,0x10,0x7f,0x16,0xf1,0x6b,0xc9,0x94,0xc4,
+ 0x29,0xec,0xa3,0x54,0xa,0x95,0x4c,0x2b,0x17,0x67,0xf9,0x7,0x9e,0x83,0xa3,0xb4,
+ 0xb3,0x68,0xbd,0xf4,0x6e,0xd,0xc5,0x29,0xe3,0x6a,0x35,0x98,0x86,0xe1,0xb1,0x43,
+ 0x9,0x9d,0xd,0x80,0x88,0x3,0xd4,0x43,0xfa,0xed,0xb2,0xb4,0xf2,0xb4,0x7d,0xb0,
+ 0xaa,0x38,0x1,0x45,0x9,0x9d,0xd3,0x86,0xd2,0x7b,0x5d,0xa5,0xd,0xee,0x84,0xae,
+ 0x8e,0xd0,0xe7,0x41,0x9b,0x5b,0x3a,0x1d,0x3e,0xcd,0x2c,0xa,0x52,0xd0,0xa6,0xb,
+ 0xb5,0xdc,0x6f,0xb,0xa1,0xdf,0x7e,0xf0,0xa3,0xde,0x76,0x79,0xdc,0xac,0x7f,0xa2,
+ 0x62,0xb5,0x86,0xb2,0x4d,0x12,0x27,0x1b,0x0,0x11,0x70,0xa4,0xbc,0x4,0xe5,0x4,
+ 0xc1,0xd3,0xee,0xdc,0x8a,0xdb,0xf1,0xad,0x7c,0x8f,0x80,0x9b,0x24,0x55,0x31,0x55,
+ 0x96,0xd0,0xa8,0x6b,0x87,0x8,0x34,0x21,0x41,0x1b,0xa6,0x5,0xca,0x2d,0x54,0x4c,
+ 0xda,0xf0,0xe5,0xd5,0x79,0xb3,0x7e,0x49,0x22,0xd6,0xc5,0xa5,0x6e,0xf1,0x2e,0x6a,
+ 0xd8,0x55,0x55,0xda,0x2b,0x9a,0x26,0x51,0x53,0x1,0xe2,0x5c,0x5e,0xc9,0x21,0xdc,
+ 0x40,0xcf,0xe5,0x55,0xdc,0xe,0xfc,0x96,0x75,0x73,0x80,0x26,0x69,0xa0,0xb9,0x2b,
+ 0x87,0xf5,0x2a,0x2c,0x41,0x6f,0xc2,0x20,0x5d,0xf1,0xc2,0x24,0xd8,0x5d,0x5b,0xf8,
+ 0x6f,0x3b,0x18,0xde,0x18,0xe7,0x52,0x4b,0x71,0x9b,0x2a,0xe7,0xd4,0x20,0x6d,0x7a,
+ 0x95,0x69,0x2a,0x40,0x9c,0xcb,0x2b,0x31,0x31,0xf1,0xcc,0x5e,0x6a,0x55,0x33,0x1a,
+ 0x8b,0xf4,0xae,0xf8,0x4d,0x95,0xa4,0x58,0xeb,0x87,0xf5,0x2a,0x2c,0x51,0x6f,0x42,
+ 0xbf,0x6e,0x14,0xbf,0xf5,0xf5,0x76,0x85,0x5,0x8b,0x92,0x25,0x67,0x3f,0x9f,0xd6,
+ 0x25,0xd7,0x7e,0xc4,0x72,0xfa,0xa9,0xa1,0x2c,0xf1,0x6b,0x33,0x97,0x0,0x71,0x2e,
+ 0xaf,0xe4,0xac,0xd2,0x33,0xf9,0x89,0x15,0x67,0x62,0xc2,0x78,0xb1,0xb1,0x6f,0x58,
+ 0x53,0x24,0x28,0xf6,0xba,0x61,0xbd,0xa,0x4b,0xd4,0x9b,0x30,0x48,0x77,0x4a,0xb8,
+ 0xd2,0x97,0xde,0x49,0x96,0xbc,0xe7,0x62,0x18,0xf5,0x67,0x97,0x5a,0x35,0x1c,0xa4,
+ 0x2a,0x3,0x5c,0x46,0x7b,0xbc,0xb4,0x29,0x33,0x88,0xd8,0x7c,0xc8,0xa5,0xa0,0x2c,
+ 0xb3,0x7e,0x4,0xc4,0x92,0xd7,0x95,0xac,0x2a,0x2a,0x51,0xbc,0x17,0x44,0x1,0x91,
+ 0x2a,0x13,0xd6,0xab,0xb0,0x84,0xbd,0x9,0xfd,0xfa,0xff,0xd2,0x71,0x70,0x99,0x5e,
+ 0x5a,0x79,0x5e,0x1a,0x2a,0xc6,0xab,0xf2,0xda,0xeb,0x7,0xbf,0x66,0xd3,0x3e,0x6f,
+ 0xa,0x40,0x24,0x0,0x75,0xca,0x94,0xfd,0x71,0xe0,0x60,0x4f,0x80,0xc4,0xed,0xe5,
+ 0x57,0xe9,0x7a,0xf7,0x84,0x52,0x7f,0xc2,0xf6,0x39,0xac,0x57,0x61,0x9,0x7b,0x13,
+ 0xfa,0xa9,0xd2,0x99,0xf3,0x50,0x2e,0xb,0xbf,0x73,0x37,0x68,0x9e,0xa3,0x62,0xa4,
+ 0xb7,0xfd,0xf5,0x7b,0x89,0x7e,0xde,0x14,0x80,0x9c,0xf,0x8c,0xd1,0xed,0x88,0x99,
+ 0x71,0xea,0xf7,0xb4,0xaf,0xb6,0xe2,0xfc,0x3b,0xe1,0xf3,0xe2,0x36,0x19,0x6,0x64,
+ 0xb7,0x4,0x8b,0x85,0xf5,0x2a,0x2c,0x71,0x6f,0x42,0xbf,0x9e,0xee,0xb4,0x6d,0xdd,
+ 0x3e,0xa4,0xea,0x41,0x88,0x6d,0xe2,0x52,0xc3,0x62,0x84,0xaa,0x8,0x96,0x10,0x36,
+ 0x5d,0xb,0x4d,0x1,0x88,0x4,0x9e,0x4e,0x85,0x18,0x97,0xf8,0x3b,0x2f,0xfa,0xcc,
+ 0x20,0x92,0x2d,0x68,0x4d,0x3f,0xc1,0x23,0xf7,0x3c,0xac,0x57,0x61,0x89,0x7b,0x13,
+ 0xfa,0x8d,0x3,0x49,0x8,0x2a,0x56,0xbe,0x42,0x2e,0xb1,0x7c,0x53,0x4d,0x34,0x29,
+ 0x32,0x7c,0x53,0x0,0x22,0xfb,0x8f,0x1e,0x9a,0xb,0x99,0xc6,0x5c,0x5d,0xe3,0xac,
+ 0x2a,0xb6,0x43,0xd9,0xa6,0xed,0x86,0x1a,0x6a,0x20,0xac,0x57,0x61,0x4,0xbc,0x9,
+ 0xbd,0x6,0xcb,0xd,0xf,0xc1,0xb9,0x37,0x27,0x4b,0x6c,0x57,0xe,0xaf,0xbb,0x7b,
+ 0x1e,0xbf,0xa4,0x62,0xec,0x12,0x76,0xe0,0x85,0x5,0x88,0xd8,0x67,0xcf,0xd2,0x2f,
+ 0x95,0xfc,0x60,0xe9,0xcd,0xc6,0x74,0x1,0xab,0x8a,0x4b,0x51,0xa4,0x77,0xb9,0xf,
+ 0xcb,0x79,0xa9,0xd4,0xb,0xeb,0x55,0x18,0x1,0x6f,0x42,0xaf,0x2e,0x96,0xe4,0x3b,
+ 0x43,0x74,0xc,0x9c,0xee,0x6b,0xc1,0x1c,0xf7,0x2b,0xc1,0x45,0x2a,0x16,0xde,0xac,
+ 0x29,0x2c,0x40,0xe,0x4a,0x64,0x7b,0x4a,0x85,0x7,0x95,0xb8,0x35,0x92,0x8,0xc7,
+ 0x95,0xac,0x20,0x8e,0x51,0xa5,0x32,0xe0,0xc3,0xc8,0x11,0xc6,0xab,0x30,0x22,0xde,
+ 0x84,0x6e,0xea,0x94,0x7b,0x10,0xd9,0x87,0xa4,0xe8,0xf7,0x37,0x1b,0xe5,0x38,0xac,
+ 0x7b,0xd8,0x84,0x7d,0x48,0x58,0x80,0x48,0xd4,0x92,0x94,0xff,0xef,0xf5,0x9,0xdf,
+ 0xf,0x4f,0x5b,0x9,0x2b,0x6e,0xe7,0x98,0xb,0xe9,0x57,0x1a,0x66,0xc4,0x15,0x59,
+ 0x9d,0x30,0x5e,0x85,0x11,0xf1,0x26,0xf4,0xea,0xc9,0x75,0x77,0x85,0x39,0x3a,0xbf,
+ 0xa9,0xcf,0x46,0xfd,0x32,0x55,0x41,0xa8,0x9c,0x18,0x61,0x1,0x22,0x31,0xef,0x24,
+ 0x63,0x94,0xd0,0xb1,0x89,0x98,0x23,0xae,0xa1,0xd,0xcd,0xfe,0x23,0x0,0x58,0xc3,
+ 0x78,0x15,0x46,0xc8,0x9b,0xd0,0x4d,0x83,0x3b,0x9c,0x4,0xaf,0xe9,0xa8,0x7,0xf,
+ 0x5d,0x1,0x87,0xb9,0xdb,0x91,0xbf,0xa1,0x62,0x8c,0x8,0xd0,0x13,0x8d,0x8a,0x84,
+ 0x5,0x88,0x33,0x11,0xa7,0x4,0x69,0x78,0xcb,0xed,0xe5,0xd6,0xfb,0x1c,0x45,0x19,
+ 0x4d,0x8,0x40,0x1b,0x46,0xac,0x22,0xab,0x13,0xc6,0xab,0x30,0x42,0xde,0x84,0x6e,
+ 0xbd,0x79,0xca,0x35,0x70,0xbb,0x4e,0xe2,0xf7,0xb7,0xe3,0xe0,0x32,0x77,0xa3,0xe8,
+ 0xb9,0x2a,0x46,0xf7,0x30,0xa3,0x22,0x2c,0x40,0x24,0xda,0x59,0x5f,0xfd,0x42,0x79,
+ 0xf1,0x5c,0x57,0x80,0x98,0xd,0xba,0x7f,0xbf,0x84,0xf1,0x2a,0x8c,0x90,0x37,0xa1,
+ 0x9b,0x2,0xc7,0x3e,0x6,0x67,0xc8,0x2,0x3f,0x61,0x1,0x7b,0xd0,0x4e,0xf0,0x58,
+ 0x2a,0x5c,0x61,0xba,0xa,0x2d,0xe8,0xa2,0x6,0x79,0x7,0x4f,0x4f,0x57,0x2d,0x2c,
+ 0x40,0x24,0x98,0x93,0xa4,0x7d,0x97,0x4,0xbe,0x9d,0xbc,0x46,0x80,0x55,0xcd,0x7d,
+ 0x58,0xf9,0x4d,0x9b,0xe5,0x3f,0x22,0xb,0xac,0x44,0xa6,0x5e,0x85,0x11,0xf4,0x26,
+ 0x4c,0xd7,0x63,0x2f,0xbf,0x9b,0xcc,0x6d,0x28,0x24,0x11,0x17,0xc5,0x3f,0xc4,0x95,
+ 0x14,0x5b,0xa9,0x72,0xde,0xcd,0xb4,0xe7,0xc3,0x0,0x44,0x62,0xef,0xa6,0x2,0xe2,
+ 0xc6,0x81,0xa,0x4f,0x80,0x98,0x13,0x2c,0xff,0x3e,0xc9,0xd4,0xab,0x30,0x82,0xde,
+ 0x84,0xe9,0x94,0x38,0x7b,0x2e,0xf4,0xd8,0x23,0xf9,0xa4,0x7d,0x5b,0x58,0xe4,0x15,
+ 0x22,0xac,0x86,0xa3,0x55,0xa5,0x77,0xa4,0x9d,0x6c,0xcd,0x20,0x9b,0x26,0x6e,0xd0,
+ 0x3f,0xd1,0x8d,0xf9,0xa6,0x54,0xb3,0xe2,0xf6,0x7d,0x49,0xc8,0xb8,0x36,0xfe,0x63,
+ 0xab,0x24,0x4a,0x64,0xea,0x55,0x18,0x41,0x6f,0x42,0xb7,0x7e,0x6e,0x35,0x4,0x56,
+ 0xae,0x4a,0x3e,0x5d,0xf6,0xe,0xb4,0x6e,0xe5,0x3a,0x22,0x42,0x45,0x5e,0xc,0x33,
+ 0x83,0x38,0x8d,0x14,0x2f,0x4b,0xb0,0xe3,0x79,0x7c,0x66,0xc5,0xb1,0x4a,0x62,0x10,
+ 0xe7,0x52,0x88,0x4c,0xbd,0xa,0x23,0xea,0x4d,0x98,0xae,0xb,0xba,0xee,0x58,0x97,
+ 0x22,0x61,0xc1,0xc4,0x64,0xc4,0x13,0x17,0xfa,0xb7,0x8a,0xb1,0x4f,0xa6,0xdd,0x18,
+ 0x6,0x20,0xe2,0x2e,0x2b,0x6e,0xb3,0x42,0x62,0xb0,0xe8,0xea,0x0,0x65,0xbd,0x43,
+ 0x4f,0x5a,0xd5,0xde,0xb8,0x67,0xca,0x5b,0x74,0xca,0x67,0xea,0x55,0x18,0x51,0x6f,
+ 0xc2,0x74,0x3,0xa2,0xf7,0x3e,0xf0,0xe5,0xb7,0xc9,0x27,0x3f,0xbd,0x2,0x5d,0xbb,
+ 0xb8,0xe,0x9b,0x69,0x2a,0x46,0xff,0x4c,0x7,0x55,0x18,0x80,0x88,0x81,0xa2,0x3e,
+ 0x5c,0xe3,0xf4,0x84,0x1,0xe2,0x2d,0x6e,0x2f,0x35,0x77,0x20,0x1,0xbb,0x23,0x53,
+ 0xaf,0xc2,0x88,0x7a,0x13,0xa6,0xd3,0x66,0xc5,0x91,0x10,0xff,0x2c,0xf9,0xe4,0xdb,
+ 0x17,0x60,0x3d,0xf,0xa3,0x27,0x15,0x23,0xe3,0xf1,0x9e,0x71,0x5,0x40,0xf2,0xe,
+ 0xa7,0x2,0x4e,0x7b,0xa6,0x56,0xb,0x9c,0x18,0x27,0xe0,0x38,0x2a,0xd9,0x62,0x99,
+ 0x7a,0x15,0x46,0xd8,0x9b,0xb0,0xe1,0x18,0x18,0x79,0x32,0xbc,0xaa,0x73,0x10,0x7d,
+ 0xf1,0x34,0x6c,0xbc,0xbe,0xc7,0x28,0x59,0x48,0x3b,0x35,0xc2,0xce,0xb6,0x1c,0x98,
+ 0xc2,0x0,0x44,0x40,0x91,0x72,0x95,0x17,0xb0,0x48,0x1e,0xf4,0xb4,0x64,0x2e,0x9,
+ 0x3,0xf6,0x43,0xa6,0x5e,0x85,0x11,0xf6,0x26,0x6c,0xa8,0xd1,0x3,0xce,0x87,0x27,
+ 0xb5,0xdb,0xde,0x27,0x4f,0xc0,0xa6,0x1b,0x7a,0xe8,0x3c,0xc4,0x5d,0x48,0x18,0x80,
+ 0xc8,0xb2,0x2a,0x95,0xbb,0x78,0x3f,0xc0,0x35,0xb,0xa5,0x55,0xc5,0x99,0xa8,0xec,
+ 0x46,0xdb,0xe,0x38,0xe4,0x8a,0xab,0x58,0xa6,0x5e,0x85,0x11,0xf6,0x26,0x6c,0xd8,
+ 0xb1,0xc7,0x5d,0x9,0xf7,0x88,0x2b,0x1e,0x10,0x1f,0xf,0xe5,0x5e,0xbb,0x8c,0x1a,
+ 0xba,0xab,0x4a,0xf7,0x4b,0xed,0x74,0x83,0x26,0xc,0x40,0x9c,0x9e,0x84,0x9e,0x8e,
+ 0x52,0xc6,0xcc,0x3d,0x20,0x4e,0x33,0xf5,0x2a,0x8c,0xb8,0x37,0xa1,0x53,0xab,0xce,
+ 0x3c,0x86,0x93,0xfe,0x9,0x43,0xbd,0xe2,0x80,0xaf,0xa0,0x97,0xda,0xca,0x8e,0xa3,
+ 0x10,0x98,0xc2,0x0,0x44,0x8e,0x75,0x53,0xbe,0x1d,0x62,0x0,0xf6,0x86,0xeb,0x12,
+ 0xab,0x9a,0x9b,0xb0,0x38,0x33,0x30,0x37,0x51,0x2d,0x98,0xa9,0x57,0x61,0xc4,0xbd,
+ 0x9,0x9d,0xc3,0xe4,0xa2,0xdb,0xe1,0xaa,0x7f,0x26,0xff,0x33,0xf1,0x6e,0xd8,0xc6,
+ 0x3b,0xf9,0x41,0x7f,0x15,0x23,0xa3,0xa4,0x90,0x61,0x0,0x72,0x1,0x70,0xb5,0x66,
+ 0x52,0xce,0x95,0xf5,0x4,0xd7,0x78,0x74,0x1b,0x33,0x93,0x80,0x88,0xcf,0xd4,0xab,
+ 0x30,0xe2,0xde,0x84,0x4e,0xad,0x9e,0x3c,0x6,0xee,0xd0,0x39,0x94,0xa7,0x3c,0xc,
+ 0x83,0x52,0x16,0x82,0xe9,0x54,0x5f,0xc3,0x20,0x55,0xe9,0x1d,0xf9,0xb3,0x61,0xb5,
+ 0x30,0x0,0x91,0x19,0x21,0x95,0xc5,0xc7,0x33,0x51,0x8e,0x15,0xb7,0x53,0x3b,0xfb,
+ 0x66,0xb9,0xd,0x38,0x8c,0x4a,0xb7,0x58,0xa6,0x5e,0x85,0x11,0xf7,0x26,0x74,0xe,
+ 0x4,0x67,0x7a,0xb6,0x19,0x4f,0x41,0xef,0xd,0x3c,0x86,0x49,0x8,0x7b,0xac,0x30,
+ 0x0,0x91,0xc,0x71,0xb7,0x6b,0x36,0xce,0x2,0xb4,0x67,0x70,0x9a,0x19,0xc4,0xd8,
+ 0x61,0x5,0x7,0x75,0x26,0x5e,0x85,0x11,0xf7,0x26,0x74,0x2a,0xd5,0x79,0xcc,0x2b,
+ 0x6e,0xb7,0xe2,0x7e,0xeb,0x4a,0x21,0x3c,0xb,0xc3,0x0,0x44,0x66,0xd,0xbd,0xea,
+ 0xc3,0xd3,0xd4,0xc4,0xcc,0x20,0xc1,0xf1,0x41,0x26,0x5e,0x85,0xc6,0x9b,0xb0,0x56,
+ 0xb1,0xe5,0x87,0xc3,0x14,0xbd,0xab,0xf0,0x31,0x35,0x81,0x3c,0xcd,0x20,0x87,0x3a,
+ 0xee,0x3e,0x64,0xf6,0x90,0x59,0x24,0x2d,0x99,0x3d,0x48,0x6,0x0,0xc9,0xc4,0xab,
+ 0xd0,0x78,0x13,0xd6,0x2a,0xb6,0xd7,0x5e,0xf0,0xb5,0x8e,0xa7,0x53,0x53,0x5,0xca,
+ 0xeb,0x2b,0x3f,0x4f,0x7b,0x10,0x67,0xba,0x35,0xcf,0x5c,0xe8,0x96,0x39,0xc5,0xa,
+ 0x8e,0x90,0x4c,0xbc,0xa,0x8d,0x37,0x61,0xad,0x5e,0x53,0x1,0xe4,0x7c,0xcd,0xdd,
+ 0x93,0x35,0xf2,0x72,0x8a,0xe5,0x34,0x56,0x94,0x13,0x2c,0x57,0xb,0x49,0x73,0xf,
+ 0x12,0x1c,0x1f,0x64,0xe2,0x55,0x68,0xbc,0x9,0x6d,0xc5,0xae,0x58,0x9,0xad,0xb7,
+ 0x4c,0xea,0xb8,0xdb,0x1a,0xf0,0xa3,0xce,0xa5,0xee,0xaa,0xf5,0x3c,0xdd,0x83,0x48,
+ 0x2,0x5e,0x9,0xf5,0x23,0x24,0x77,0x20,0xae,0xce,0xf0,0xe6,0x26,0x3d,0x3,0x80,
+ 0x4,0xf5,0x2a,0x34,0xde,0x84,0xb5,0x4a,0x95,0x4c,0x53,0x7f,0xda,0x29,0xf9,0xa7,
+ 0xe4,0x4f,0xff,0xca,0x2f,0x2d,0x6c,0x9e,0x6e,0xd2,0x25,0xc5,0xf3,0xc7,0x9a,0x4b,
+ 0xf1,0x45,0x77,0x75,0x86,0x37,0xb6,0x58,0x19,0x0,0x24,0xa8,0x57,0xa1,0xf1,0x26,
+ 0xac,0x55,0xea,0xe7,0xb3,0x60,0x13,0x9d,0xc8,0x73,0x8b,0xde,0xf0,0xe1,0xa3,0x3e,
+ 0xfa,0xce,0x93,0x2d,0x56,0x6b,0x71,0xde,0x72,0xb0,0x22,0x16,0xf8,0xbf,0xa5,0x63,
+ 0xcd,0x58,0xf3,0x66,0x0,0x90,0xa0,0x5e,0x85,0xc6,0x9b,0xb0,0x56,0xa9,0x93,0x3e,
+ 0x84,0xad,0x47,0x25,0xff,0x14,0x13,0x13,0x31,0x35,0xf1,0xa4,0x3c,0x59,0xf3,0xa,
+ 0xf,0x33,0x81,0x5e,0x9a,0x99,0xad,0x20,0xbd,0x33,0xbc,0xf1,0x7,0xc9,0x0,0x20,
+ 0x41,0xbd,0xa,0x8d,0x37,0x61,0xad,0x52,0xc7,0x3d,0x5,0x92,0xb3,0x50,0xe8,0x90,
+ 0x9d,0xe1,0x91,0xab,0xbc,0xf5,0x9d,0x2f,0x7f,0x10,0xe1,0x42,0x22,0xa1,0xee,0xac,
+ 0xd9,0x71,0xbd,0x4d,0x37,0x1e,0x85,0x19,0x0,0x24,0xa8,0x57,0xa1,0xf1,0x26,0xac,
+ 0x55,0xaa,0x33,0xa1,0xe7,0xb5,0xa7,0xc3,0xe8,0x23,0x3d,0xf5,0x9d,0x37,0x8f,0x42,
+ 0xe1,0x42,0xcc,0xdd,0xc5,0xec,0x5d,0x48,0xf2,0x82,0xa4,0xc2,0x90,0x36,0xe2,0xd0,
+ 0xf8,0xa4,0x7,0x4,0x49,0x50,0xaf,0x42,0xe3,0x4d,0x58,0xab,0xd0,0xd8,0x11,0x50,
+ 0xad,0x53,0xc2,0xbe,0x7a,0x3b,0xec,0xe0,0x9d,0xf4,0x37,0x6f,0x3e,0xe9,0xc2,0xe0,
+ 0xc9,0xc0,0x6d,0x9a,0x53,0xef,0xa3,0x5e,0x13,0xd5,0x24,0x18,0x42,0x82,0x7a,0x15,
+ 0x1a,0x6f,0xc2,0x5a,0x7d,0xaa,0x58,0x9d,0x6a,0xe7,0xbe,0xc,0x6b,0x4b,0x32,0x40,
+ 0x77,0xca,0x5b,0x54,0x13,0x61,0x61,0x47,0xe0,0x15,0xcd,0x8b,0x5c,0xf4,0xbb,0xba,
+ 0xa9,0x98,0xc8,0xee,0xc1,0xf0,0x41,0x50,0xaf,0x42,0xe3,0x4d,0x68,0x2b,0x54,0x66,
+ 0xe,0x99,0x41,0x84,0x7a,0xad,0x3,0x33,0xff,0xe3,0xa3,0xe7,0x3c,0xc6,0xc5,0x12,
+ 0x4e,0xc4,0xf3,0x77,0xb6,0x83,0x25,0xd7,0xb,0x7e,0x63,0x6e,0x12,0x10,0x20,0x41,
+ 0xbd,0xa,0x8d,0x37,0xa1,0xad,0x50,0xe7,0x6,0x7d,0xdf,0xed,0x61,0x82,0x5f,0x72,
+ 0xf1,0x10,0x76,0x58,0xf2,0x9e,0x30,0xc6,0x8a,0xa9,0x1e,0x77,0xa6,0x54,0xf3,0x3a,
+ 0xc9,0x32,0xc9,0x73,0x82,0x60,0x24,0xa8,0x57,0xa1,0xf1,0x26,0xb4,0xb5,0xe9,0xdc,
+ 0xa0,0x4b,0xd0,0x6a,0x9,0x5e,0xed,0x49,0x21,0xee,0x40,0x9a,0xa,0x10,0x67,0xa,
+ 0x4,0x57,0xb3,0x77,0x73,0x59,0x18,0x4,0x1d,0x89,0xa3,0x8e,0xa0,0x5e,0x85,0xc6,
+ 0x9b,0xd0,0x56,0xa8,0x73,0x83,0xfe,0xe4,0xb5,0xb0,0x9f,0x84,0x33,0x74,0xa7,0xbc,
+ 0x47,0x77,0x17,0x56,0x24,0xed,0x73,0xea,0xee,0x52,0xb2,0x4d,0x1d,0x92,0x8e,0x3f,
+ 0x73,0x17,0x12,0x10,0x20,0x41,0xbd,0xa,0x8d,0x37,0xa1,0xad,0x50,0xe7,0x6,0x7d,
+ 0xda,0x4,0xe8,0x9b,0xca,0x96,0x99,0x5e,0xdd,0x79,0xcf,0xf,0x22,0x6c,0x88,0x89,
+ 0x49,0x2a,0x71,0xa7,0x38,0xc2,0xa7,0x2e,0xe,0x1b,0xb1,0x68,0x32,0x4c,0x5,0x0,
+ 0x49,0x50,0xaf,0x42,0xe3,0x4d,0x58,0x6f,0x83,0xbe,0x4e,0x57,0xf8,0xde,0x33,0xbf,
+ 0xb2,0xbd,0x91,0xb8,0x48,0x95,0xe3,0x73,0x8d,0x98,0xbe,0x8f,0x9a,0xb2,0x7,0x91,
+ 0x16,0x25,0x71,0xce,0xd6,0xba,0x69,0xf1,0x6,0x9e,0xe1,0x32,0x8b,0xbc,0x88,0xa,
+ 0x9f,0x69,0x34,0xc0,0xf0,0x2a,0x8d,0x22,0x3,0x7e,0x82,0x96,0x5d,0xbd,0x65,0xf9,
+ 0x74,0x53,0x58,0xaa,0x43,0x9,0x96,0x86,0xd4,0x19,0x4b,0x71,0xf5,0x7d,0x70,0xa1,
+ 0xbe,0x64,0xd8,0x75,0x28,0xbc,0x30,0xd6,0xa7,0x89,0x55,0xc,0x55,0x43,0x78,0x27,
+ 0xe3,0x17,0x35,0x71,0x93,0x2e,0xef,0x73,0x46,0x38,0x71,0xd,0x22,0x67,0xc5,0x39,
+ 0x7,0xd0,0xa9,0x4e,0xc2,0xb0,0x19,0x91,0x3a,0x3d,0xee,0x81,0xb5,0xb4,0x71,0x51,
+ 0x3a,0x91,0x97,0x7c,0xa,0x9f,0x89,0xad,0x68,0xb4,0x69,0xe8,0x31,0xf0,0xce,0x47,
+ 0x49,0x1d,0xdc,0x76,0x3e,0x9c,0xac,0xd,0x16,0x5d,0xb4,0xb2,0x50,0xc5,0x58,0x3d,
+ 0xac,0xc6,0x9a,0x3a,0x83,0x38,0x23,0xbd,0xb,0x8e,0xcf,0x48,0x3b,0x83,0xbc,0xc7,
+ 0x56,0xb4,0x40,0xa7,0x7d,0xf,0xcb,0x6a,0x4,0xea,0x75,0xdc,0xe,0xfa,0x78,0xa4,
+ 0x93,0xff,0xfe,0x7c,0x98,0xeb,0x77,0x9e,0x59,0xda,0x7a,0x92,0xa4,0x9d,0x92,0xbc,
+ 0x53,0xa8,0x6d,0x6b,0x98,0xfe,0x14,0x6c,0xf0,0x27,0x4f,0x99,0x9f,0x56,0x31,0xc4,
+ 0xc9,0x2f,0x14,0x35,0x15,0x20,0x92,0x8d,0x41,0xf6,0x1f,0xeb,0x0,0x12,0x21,0x75,
+ 0x88,0x1b,0x17,0x56,0x9c,0x9f,0x12,0x80,0xf7,0x59,0x3f,0x84,0x92,0xa1,0xb4,0x2a,
+ 0xb5,0xdd,0x4,0x36,0x7c,0x2,0xda,0x49,0x1a,0x16,0x7,0xcd,0x3c,0x10,0xe6,0xa7,
+ 0x62,0x86,0x97,0x96,0xc8,0x99,0x48,0x73,0xff,0xb3,0x70,0xb4,0x44,0x42,0x48,0x24,
+ 0xa9,0xd9,0x7f,0x7,0xf8,0xd7,0x35,0x3e,0xb5,0x15,0x67,0xab,0xf2,0xf0,0xd1,0x3d,
+ 0x9b,0xa,0x10,0xe1,0xce,0x79,0xdc,0x2b,0x33,0x4a,0xda,0xaf,0x40,0x2b,0xce,0x13,
+ 0x80,0xf7,0x64,0x98,0x89,0xa6,0x4a,0xb9,0xac,0x6a,0x3,0x5d,0xf6,0x81,0xd6,0x3d,
+ 0x61,0xe5,0x2f,0xb0,0xe8,0x3d,0x58,0x92,0x72,0xc1,0x29,0x65,0xc1,0xfd,0x65,0xdb,
+ 0xff,0x3c,0x98,0xf0,0x5a,0xb2,0xdc,0xfd,0x97,0xc2,0x5f,0x74,0x86,0x29,0xd7,0x9a,
+ 0x4d,0xd8,0x7f,0x48,0x9b,0xd9,0x0,0x88,0xc4,0xe7,0xd5,0xa1,0xbb,0x6c,0x23,0xc6,
+ 0xb4,0x91,0x14,0xad,0x6a,0xce,0xc2,0xe2,0x46,0x7f,0x15,0x98,0x12,0x46,0x3,0xe9,
+ 0x35,0xb0,0x60,0x11,0x48,0xc2,0x9c,0xe5,0x2b,0x60,0xcd,0x4e,0xc9,0xe5,0x95,0xfc,
+ 0x74,0x25,0x8b,0xef,0x54,0x85,0x6d,0xf5,0x11,0x9a,0xb2,0x1,0x90,0x96,0x89,0x24,
+ 0xa3,0x62,0x53,0xb9,0xb1,0x5e,0x6e,0xf5,0x6b,0xe0,0x50,0x65,0x33,0x67,0x55,0x51,
+ 0x89,0xe2,0xbd,0xd0,0x9c,0x9a,0x8a,0x91,0xd7,0x80,0x44,0x71,0x97,0x68,0xee,0x42,
+ 0x32,0x73,0xc8,0xc,0xe2,0x49,0x8a,0xf1,0xaa,0x1c,0x6f,0x23,0x78,0xdf,0x26,0xb2,
+ 0xa3,0x76,0x39,0xa1,0x92,0x93,0x2a,0xa1,0x83,0xc0,0x5e,0x4e,0x35,0x22,0x2b,0xce,
+ 0x44,0x60,0x9b,0xec,0xbc,0xd2,0xb4,0x12,0x35,0xd,0x1c,0x7f,0x15,0xdc,0x2d,0xb1,
+ 0x3a,0x25,0x83,0xd3,0x35,0xc9,0x3d,0x88,0x27,0xd5,0x70,0x90,0xaa,0x4c,0x3f,0x16,
+ 0x83,0xea,0x2e,0x1b,0x33,0x88,0xbc,0x4b,0x6,0xbd,0xc,0x7e,0x21,0xd7,0xc4,0x9e,
+ 0x56,0x35,0xa3,0xb1,0xdc,0x53,0xb6,0x5,0x65,0xda,0x94,0x2b,0x31,0xd,0x74,0x39,
+ 0x20,0x79,0x30,0x21,0xc7,0xd8,0x72,0x18,0x91,0xe6,0x9e,0x67,0x55,0xd,0x6c,0xbc,
+ 0x77,0x32,0x6,0x96,0x9c,0x5a,0xc9,0xf2,0x4a,0x4e,0xb1,0x3c,0x68,0x36,0xcb,0xe9,
+ 0xa7,0x86,0xb2,0xa4,0x29,0xda,0xca,0x16,0x40,0x84,0x7,0x39,0xc6,0x15,0xa3,0xc5,
+ 0x45,0xda,0xfc,0x5d,0x67,0x8e,0xab,0x63,0xcf,0x8a,0x23,0xcb,0x2f,0xed,0xe2,0xd2,
+ 0x14,0xb6,0x4d,0xdd,0x92,0xd1,0x40,0x59,0x7,0xe8,0xf7,0xe,0xb4,0xd3,0xf7,0x3b,
+ 0x1f,0x6f,0x0,0xcb,0x1b,0xd,0x1d,0x9e,0x7b,0xb,0xf6,0xd4,0x21,0xa,0xe5,0xde,
+ 0x43,0xee,0x3f,0x3c,0x49,0x71,0x9b,0x2a,0x47,0x67,0x51,0xf,0xaf,0xad,0x6c,0x2,
+ 0xc4,0x99,0x37,0xe4,0x34,0xe0,0xd6,0x74,0x6c,0x59,0x71,0x3b,0x1,0xa8,0xc4,0xd6,
+ 0x32,0x64,0x34,0x0,0x4e,0x57,0xe3,0x79,0x8f,0x82,0xd8,0x9a,0xa5,0xa1,0xbd,0xcf,
+ 0x81,0x67,0xde,0x4c,0x3e,0x90,0x9b,0x73,0xb9,0x41,0xf7,0xa4,0x1a,0x76,0x55,0x95,
+ 0xb6,0x6b,0x78,0x93,0x28,0x9b,0x0,0x71,0xce,0xe,0xd5,0x62,0x70,0x99,0x16,0x20,
+ 0x55,0x9c,0x80,0xe2,0xce,0x26,0x71,0x6d,0x2a,0x97,0x86,0x6,0xda,0xf4,0x4e,0xce,
+ 0x1e,0x2d,0xd7,0x4c,0xca,0xf3,0xd9,0x40,0x58,0xf2,0x61,0x23,0xd9,0x5e,0x7a,0x7,
+ 0x76,0x91,0xaf,0x5c,0xf1,0xd4,0xab,0x84,0x57,0x52,0xa1,0xd3,0xdd,0xb5,0xf0,0x89,
+ 0x8a,0xb1,0x79,0x36,0x94,0x94,0x4d,0x80,0x8,0x3f,0xf7,0x25,0x4e,0xb2,0x8e,0xd2,
+ 0x8c,0x9d,0xe0,0xc8,0x65,0x58,0xcb,0xab,0x35,0x85,0x75,0xa8,0x61,0x7a,0xc2,0xf4,
+ 0xa4,0x43,0x36,0x4,0x30,0x6d,0x14,0xb1,0x6,0x36,0xb8,0xd,0xba,0x8a,0xf7,0xb6,
+ 0x98,0xbd,0xfe,0xd,0x7e,0xb8,0x22,0xad,0x30,0x7,0x5e,0x0,0xff,0xd2,0xa1,0xa,
+ 0xc7,0x5f,0xe,0x87,0x4b,0x5e,0x33,0x2f,0x2a,0xe3,0x6a,0x35,0x98,0xb,0xb3,0xa1,
+ 0x99,0x6c,0x3,0x64,0x78,0x22,0xd2,0xa2,0x9e,0x8,0x71,0x9f,0x45,0xe2,0xf6,0x46,
+ 0x3e,0xad,0x79,0x7c,0x36,0x84,0x32,0x6d,0x14,0x81,0x6,0x3a,0xc,0x87,0xbe,0x7a,
+ 0xa8,0xac,0xfa,0x1d,0x3e,0xec,0x6,0xd6,0xf2,0x46,0x8c,0xbf,0x1e,0x87,0xed,0x4f,
+ 0x4c,0xfe,0x3b,0xb6,0x9,0x54,0xc9,0xb5,0xb4,0x1f,0xd5,0x30,0x4c,0x55,0x66,0xc7,
+ 0xb4,0x29,0xdb,0x0,0x11,0xd6,0xe5,0xd2,0x50,0x2e,0xf,0x85,0xd2,0xcf,0x22,0x55,
+ 0xec,0x85,0xc2,0x2f,0x50,0xa4,0x9f,0x1a,0x4a,0xf7,0xb9,0x2c,0x39,0xda,0xc7,0x92,
+ 0x1b,0x57,0xd9,0xb0,0x2e,0xae,0x86,0x65,0x5f,0x95,0x96,0xbc,0x1b,0x3d,0x85,0xed,
+ 0x87,0x2f,0x34,0x73,0x7f,0x98,0x3f,0x21,0xad,0x7c,0x87,0x5d,0x4,0x8f,0xe8,0x9d,
+ 0xc4,0x2d,0xe7,0xc1,0xa9,0x7,0xfa,0xaa,0xe1,0x65,0x15,0xab,0xd,0x49,0xe5,0x5b,
+ 0xd8,0xaf,0x40,0x2e,0x0,0x22,0x97,0xff,0xcf,0xea,0x17,0x7b,0xcd,0x22,0xce,0xd8,
+ 0x5a,0x7e,0x7c,0x46,0xe3,0x79,0x59,0x7b,0x58,0xef,0x6,0xe8,0xaa,0xbf,0x32,0x9d,
+ 0x52,0x4b,0xc0,0xb8,0x59,0x7,0xc3,0x32,0x89,0xd9,0x57,0xe4,0xd4,0xe5,0x20,0xd8,
+ 0x50,0x7c,0xec,0x48,0x9a,0xd0,0x7c,0x96,0x3e,0xf3,0xe6,0xdb,0x53,0x61,0x9b,0x63,
+ 0x93,0xc5,0x24,0xff,0xf9,0x7,0xf,0x43,0x87,0xf6,0x3e,0xb2,0xd7,0x70,0x84,0xaa,
+ 0xe4,0xa1,0x6c,0x69,0x28,0x17,0x0,0x11,0xde,0x24,0xce,0xf6,0x48,0xcf,0x59,0x24,
+ 0x6e,0xdb,0x65,0xa5,0xbd,0x50,0xcc,0x96,0x70,0x45,0xd5,0x4e,0xeb,0xf5,0xa1,0xcf,
+ 0x9b,0xd0,0xc6,0xd5,0xef,0xc,0x6a,0x96,0x24,0x41,0xf2,0x9b,0x5f,0x8,0x8f,0x2,
+ 0x97,0x5c,0x36,0xe6,0xab,0xe9,0xb0,0xec,0x1e,0xfe,0x2d,0x62,0x94,0x28,0xc6,0x89,
+ 0x42,0x57,0x9c,0x4,0x17,0x79,0x78,0x2,0xd8,0x85,0x2c,0xa6,0xaa,0xa,0xbc,0xd3,
+ 0x78,0x66,0xa8,0x9a,0x5c,0x1,0xc4,0x99,0x64,0xc7,0x6b,0x16,0x11,0xc3,0xc6,0xed,
+ 0x32,0xe4,0xb9,0x34,0x8b,0x8b,0x99,0xbb,0x98,0xbb,0xfb,0xd1,0xaa,0x5,0xf0,0x69,
+ 0x7f,0x58,0x91,0x72,0xe6,0xf4,0xab,0x50,0x60,0xcf,0xdb,0x6d,0x1,0x92,0xb,0x45,
+ 0xe8,0xf7,0xe7,0xe1,0xcb,0xf4,0xd6,0x86,0xef,0x7f,0xa,0x43,0xfe,0x92,0x2c,0xb6,
+ 0x56,0x67,0xf8,0xe0,0x11,0x58,0xaf,0x9b,0x8f,0x2c,0x4d,0xb4,0xdc,0x4d,0xd7,0x7a,
+ 0xae,0x0,0x22,0xef,0x7a,0xd7,0x61,0xfe,0x7e,0x1e,0x70,0x5d,0x43,0x6,0xac,0x6a,
+ 0xe,0xc7,0x62,0x7c,0x81,0x75,0x61,0xfe,0xd9,0xe9,0x76,0x6,0xac,0xef,0x9a,0xea,
+ 0xb1,0x31,0x3f,0xb,0x5f,0x83,0x19,0x7e,0x76,0x16,0xf9,0x17,0x23,0xf0,0x1b,0xfb,
+ 0xc7,0x61,0xd5,0x42,0x98,0xe1,0x9a,0x39,0x3,0xa7,0x59,0xc9,0xb9,0x47,0xc0,0x75,
+ 0x69,0x3d,0x8d,0xea,0xbd,0xf1,0xfb,0x44,0xc6,0xe5,0x81,0x2a,0x86,0x44,0xdb,0xc9,
+ 0x1a,0xe5,0x12,0x20,0xce,0x5c,0x86,0xe2,0xb,0x32,0xc,0xf8,0x32,0xd,0x48,0x26,
+ 0x63,0xd9,0x37,0xf0,0xd1,0xa5,0x4d,0x3e,0x69,0xec,0xff,0xe1,0xa7,0xd,0x97,0x1b,
+ 0x67,0xbf,0x6a,0xc5,0xf2,0x7c,0xcd,0xed,0x61,0xde,0x2,0x68,0xd9,0x22,0x39,0x7b,
+ 0x6c,0xb6,0x91,0x2f,0xe7,0xa1,0x22,0x27,0xfa,0xb5,0x9a,0x4b,0x80,0xc8,0xbb,0x1f,
+ 0x4f,0x5c,0xff,0xa4,0xce,0x1d,0xc6,0xe9,0x53,0xad,0x7a,0x3c,0x59,0x55,0x8c,0x42,
+ 0x71,0x8f,0x1f,0xa3,0x25,0xfd,0x7c,0xe0,0x7c,0x68,0xd1,0x39,0x33,0x11,0xa7,0xf,
+ 0x83,0x3f,0x4a,0xd7,0x49,0xf3,0x96,0xc7,0xe1,0xf4,0xeb,0x60,0xec,0x68,0x38,0x4d,
+ 0xcc,0x5f,0xbd,0x69,0x5,0x8a,0x1,0xaa,0x3c,0xfb,0x66,0x4c,0xb9,0x6,0xc8,0x0,
+ 0x6d,0xc4,0x98,0xf2,0x9,0x96,0x2b,0x9e,0x46,0x31,0x28,0xac,0x2a,0x26,0xa1,0xf0,
+ 0x33,0x1e,0xf0,0x53,0x52,0xf1,0x3e,0x1f,0xf4,0x7,0x48,0x54,0x93,0x4c,0x68,0xc6,
+ 0x76,0xb0,0x30,0x75,0xe5,0x94,0x49,0xc5,0x92,0x2c,0x3b,0x56,0xc5,0xd2,0xbb,0x7b,
+ 0x37,0x55,0xda,0x5c,0x3,0x44,0xf8,0x73,0xda,0x68,0x89,0x2f,0x58,0xa3,0xc5,0x73,
+ 0xe4,0x13,0xed,0xf4,0x9d,0x4,0x1d,0x32,0xfc,0x7e,0x98,0xda,0x19,0xe4,0x82,0xcd,
+ 0xd0,0xc,0xda,0x30,0x5c,0x6d,0xce,0x8f,0xb9,0x50,0x45,0x3e,0x0,0x22,0x7c,0xb,
+ 0x30,0x52,0x3b,0x32,0x49,0x9b,0x70,0x4b,0x43,0x61,0xac,0x38,0x92,0x31,0x57,0x9f,
+ 0x5b,0xe4,0x42,0xd4,0x2,0x6e,0x73,0x83,0x5b,0xa1,0xeb,0x29,0xc1,0x19,0x5c,0x36,
+ 0xb,0x3e,0xd9,0x30,0x78,0xf9,0xd2,0x2e,0x79,0x94,0x8a,0xf1,0x40,0xae,0x44,0xcc,
+ 0x17,0x40,0x9c,0xd1,0xe0,0xc5,0x96,0x59,0xc0,0x52,0xef,0x6a,0xd8,0xaa,0x62,0x33,
+ 0x14,0x6f,0x3,0x5e,0x4e,0x94,0xb9,0xd2,0x43,0xf3,0xb6,0x2b,0x61,0x47,0xfb,0x4f,
+ 0x85,0xb2,0xb6,0xc1,0xf8,0x98,0x7d,0xa,0xfc,0xec,0x6f,0xb1,0x17,0xac,0xb1,0x22,
+ 0x2e,0xa5,0x78,0x4c,0x95,0xe7,0xd6,0x64,0x29,0x5f,0x0,0x91,0x5e,0x70,0x7a,0x1d,
+ 0x8a,0x99,0xc9,0xde,0x69,0x66,0x91,0x8b,0xe4,0x4e,0xa8,0x88,0xbb,0x2c,0x3c,0xeb,
+ 0x32,0x83,0xc8,0x4c,0xe2,0x47,0xb,0x5e,0x85,0x2f,0x52,0x77,0xb0,0x7e,0x85,0x4b,
+ 0xfa,0xb9,0xe4,0xc5,0x1c,0xae,0x62,0xb5,0x9,0x65,0x73,0x22,0x6c,0x3e,0x1,0xd2,
+ 0x51,0xdf,0xb0,0xeb,0x2b,0x54,0xae,0x4,0x2e,0x76,0x4a,0x65,0x7d,0x41,0x1b,0x7e,
+ 0x67,0x52,0xc2,0x54,0xa5,0x3c,0x27,0xd2,0x16,0x7a,0xa3,0x12,0x34,0x4e,0xee,0x43,
+ 0xc4,0x89,0x28,0x1d,0xfd,0x32,0xe,0xbe,0x3d,0xb,0x6a,0x16,0x17,0xba,0x24,0xb9,
+ 0xe7,0xcf,0xe2,0x3c,0x55,0xd1,0xf8,0x6e,0x2d,0xdb,0x2f,0xce,0x27,0x40,0x84,0xf7,
+ 0x6d,0x75,0xe2,0x1d,0x89,0xa7,0x25,0x24,0x1,0xb0,0xe5,0x28,0xb8,0x96,0xac,0x6a,
+ 0xe,0xc2,0x42,0x1b,0xea,0x64,0x5b,0xdc,0x22,0x68,0xaf,0xcd,0x86,0xb0,0xd6,0x9,
+ 0xd0,0x7a,0x5d,0x68,0xd9,0x2d,0xb9,0x11,0x97,0xd4,0xcf,0xbf,0xbf,0x0,0xb,0x9a,
+ 0xec,0xff,0x53,0x4,0xa,0x8,0xc4,0xe2,0x6b,0x2a,0xd6,0xf8,0xb0,0x27,0x50,0xcd,
+ 0xc,0xb,0xe5,0x1b,0x20,0xc2,0x9e,0x38,0x4e,0xa6,0xc2,0xff,0x7c,0xa7,0x93,0x81,
+ 0xd6,0xb,0x36,0x6b,0xc5,0xed,0xf4,0x6e,0xda,0x51,0x20,0x43,0x89,0x4c,0xf1,0x52,
+ 0xd7,0xc0,0x12,0x2c,0x46,0xaa,0xa,0x7b,0xa5,0x91,0x73,0x6a,0xe,0x80,0x88,0x50,
+ 0x62,0x5e,0x22,0xb1,0x7c,0x85,0xe4,0x6b,0x51,0x7,0x93,0x4c,0xfe,0x43,0x2f,0xb5,
+ 0xe4,0xff,0x1,0x8c,0x93,0x72,0xae,0x23,0xf3,0x82,0x1c,0x68,0xe0,0xcb,0x6f,0x93,
+ 0x1,0xa8,0x3f,0x9b,0x9,0xcf,0xdd,0xc,0x3d,0x25,0x36,0x67,0x30,0x3a,0x43,0xc5,
+ 0xf0,0xb,0x57,0x1d,0xac,0xa5,0x0,0xa5,0x9a,0xb,0x20,0xeb,0xea,0xa5,0x56,0x2a,
+ 0xb7,0xa1,0x6c,0xe0,0x47,0x3b,0xf9,0xb5,0xe2,0xc,0xd6,0xe0,0x31,0xe1,0x4a,0x3,
+ 0x74,0x64,0xb1,0x15,0xd9,0xea,0x68,0x78,0x57,0x7,0x8b,0xc,0x10,0x80,0x3a,0x25,
+ 0xde,0x3,0x2a,0x56,0xeb,0xb1,0x9a,0x17,0x91,0x9b,0xb,0x20,0x22,0xdc,0x9e,0x80,
+ 0xd3,0x6e,0x5b,0x22,0xae,0xd6,0xb,0x5,0x66,0x8c,0x19,0xf3,0x32,0x6,0xf2,0xfe,
+ 0x92,0xbd,0xce,0x86,0x67,0x75,0x90,0x28,0x9,0xe1,0x23,0x33,0xc8,0xe6,0x12,0x76,
+ 0xd0,0x9b,0x3e,0xa6,0xd,0xe8,0x17,0x38,0x4d,0x0,0x0,0x8,0x68,0x49,0x44,0x41,
+ 0x54,0x23,0x73,0x75,0x21,0xe8,0xf6,0xea,0xe6,0x4,0x88,0xf0,0xe4,0x4c,0x9f,0x20,
+ 0x7f,0x37,0x6,0x49,0x9c,0xab,0x81,0xb,0xfc,0xb4,0x67,0x9e,0x17,0x87,0x6,0x8e,
+ 0xb9,0x1c,0xee,0x73,0x7c,0x2d,0x3e,0x7b,0x13,0xec,0x11,0x24,0x94,0xa0,0xc5,0xee,
+ 0xaa,0x82,0x17,0xf2,0x2d,0x65,0x73,0x3,0x44,0xe4,0xbd,0x37,0x91,0x31,0xf7,0x18,
+ 0x87,0xe0,0x2,0x1a,0x1d,0xbf,0x3b,0xf9,0x5f,0xab,0x9a,0x67,0xb0,0xd8,0x2b,0xdf,
+ 0xca,0x31,0xef,0xcb,0xae,0x6,0x2e,0xba,0x1d,0xae,0xfa,0x67,0x5d,0x9b,0xb7,0x9e,
+ 0x7,0xa7,0xf8,0xbb,0xd0,0x4a,0x85,0x8b,0x55,0xcc,0xbe,0x16,0xc8,0x3b,0x15,0x2,
+ 0x40,0x44,0x68,0xc9,0xb9,0x2e,0xb7,0xed,0x29,0x12,0x9f,0xd3,0xbb,0x52,0x7f,0x58,
+ 0x71,0xc4,0xd8,0x59,0xbe,0x3d,0xfa,0xe4,0x5d,0x43,0xe6,0x85,0x59,0xd1,0x80,0x33,
+ 0xae,0xae,0x34,0x38,0xfa,0x48,0xb8,0x56,0x8c,0x8e,0xfc,0xc8,0x62,0x82,0xaa,0x60,
+ 0x7f,0xbf,0x62,0xb9,0x7a,0x5e,0x28,0x0,0x11,0xf9,0x24,0x14,0x90,0x13,0x0,0x72,
+ 0xd3,0x5e,0x1b,0xd8,0xc1,0x9a,0xc2,0xe,0xd4,0xd8,0x41,0xe7,0x2,0xda,0x63,0xe4,
+ 0x4a,0x65,0xa6,0xdd,0x4c,0x35,0x20,0x27,0x56,0xbd,0x75,0x7c,0x6,0xa9,0x7b,0xe0,
+ 0x48,0x78,0x5c,0x16,0xce,0xfe,0xf4,0x16,0x6b,0xb2,0x93,0xea,0xc5,0x52,0xff,0xa2,
+ 0xb9,0x29,0x51,0x48,0x0,0xe9,0xa2,0x93,0x82,0x3a,0x1,0x20,0x36,0x5b,0x6f,0xd4,
+ 0xce,0x24,0xd5,0x1c,0x8d,0x85,0x63,0x92,0xce,0x8d,0x52,0x4c,0xab,0xd9,0xd3,0xc0,
+ 0xd2,0xe5,0xd0,0xce,0x61,0xa8,0x5c,0xb9,0x29,0xbc,0x17,0xcc,0xb4,0x70,0x3a,0xab,
+ 0x18,0xa6,0x86,0xf0,0x6b,0xf6,0xb8,0xc9,0xbc,0xa5,0x42,0x2,0x88,0x70,0x2f,0x89,
+ 0x40,0xa7,0x35,0x10,0xa3,0x21,0x48,0x2e,0xc1,0xaa,0x7f,0xda,0x95,0xb9,0xd8,0xa6,
+ 0x46,0x3e,0x34,0x30,0xed,0x6b,0xe8,0xef,0x58,0x1c,0xad,0xbd,0x6,0xcc,0x95,0x70,
+ 0x1e,0x7e,0xa4,0x98,0x8f,0x65,0xbb,0xcf,0xce,0xf6,0x2b,0x9a,0xeb,0xe7,0x85,0x6,
+ 0x10,0x91,0xd7,0x19,0x29,0x3e,0x25,0xbf,0x4c,0xd0,0xff,0xae,0x9d,0x49,0xe2,0x88,
+ 0x29,0xeb,0x49,0xb9,0x56,0x8e,0x69,0x3f,0xbc,0x6,0x5e,0x9c,0xc,0xbb,0x39,0xf6,
+ 0x18,0xed,0xdb,0xc2,0x22,0xb1,0xd5,0xe,0x42,0x8a,0x4d,0x72,0xe1,0x1d,0x18,0xe4,
+ 0xd5,0xd,0xcb,0x14,0x22,0x40,0x84,0x47,0xc9,0xa,0xd4,0xf0,0xdb,0x43,0x7c,0xdc,
+ 0xc5,0x67,0xc4,0xa6,0x84,0x79,0xfc,0x93,0xa8,0xda,0x0,0x75,0x61,0x64,0x37,0x75,
+ 0x72,0xa4,0x81,0x3b,0x9e,0x84,0x93,0xc7,0xd4,0x35,0x3e,0xa8,0x2f,0x4c,0x79,0x38,
+ 0xe0,0xcb,0x56,0x51,0xa1,0x86,0x10,0xf,0x58,0x3a,0xe7,0xc5,0xa,0x15,0x20,0x22,
+ 0xb8,0xf8,0x85,0xc8,0x75,0x92,0x33,0xaa,0x98,0xd8,0x71,0xd5,0x86,0xff,0xb0,0xaa,
+ 0x79,0x5,0xab,0xde,0xe9,0x57,0xce,0x15,0x66,0x5e,0xe0,0xad,0x81,0xf3,0xc7,0xc2,
+ 0xb5,0x8e,0xf0,0xa0,0x7,0xef,0x4,0x8f,0xfe,0x3d,0xa0,0xd6,0xca,0xd8,0x56,0xd,
+ 0xae,0xcd,0x33,0x13,0xb0,0x52,0x6e,0x8b,0x15,0x32,0x40,0x52,0x92,0x3b,0x93,0x84,
+ 0xca,0xff,0xea,0x5d,0x26,0x5a,0x55,0xdc,0x85,0xe2,0xf8,0xdc,0xaa,0xc9,0xb4,0xee,
+ 0xa7,0x81,0x9f,0xe7,0xc3,0xa9,0xd7,0xc2,0x13,0x72,0x60,0xaf,0xe9,0xd2,0xe3,0xe1,
+ 0x92,0xa0,0x3d,0xa3,0xe8,0xad,0xca,0x1b,0x47,0xbd,0xf1,0x7b,0x6f,0xae,0x9f,0x17,
+ 0x3,0x40,0x44,0x7,0x62,0x9c,0xa6,0x3,0xe0,0xdb,0x2a,0x91,0x40,0xae,0x92,0xf2,
+ 0xed,0x1b,0x7b,0xb9,0x15,0xaf,0xe7,0xf7,0x9e,0x6b,0x9d,0x99,0xf6,0x1b,0x68,0x40,
+ 0x42,0x84,0x9e,0x7d,0x23,0x54,0x39,0x6c,0xb2,0xaf,0x3f,0x13,0xce,0x49,0x99,0xa3,
+ 0x7a,0x6b,0x6c,0x3e,0x35,0xc,0x50,0x95,0x34,0xce,0x9a,0x53,0x0,0x9a,0x2e,0x16,
+ 0x80,0x88,0xaa,0xc4,0xd3,0x50,0x3c,0xe,0x53,0x24,0xf7,0x26,0xe7,0x26,0x82,0x7e,
+ 0xcb,0xdd,0x88,0x80,0x44,0x2e,0x17,0xef,0x28,0x0,0x9d,0x46,0x8a,0x85,0x7f,0x3c,
+ 0xa,0x17,0xdc,0x2,0x72,0x9c,0x9b,0xa2,0x3b,0x2f,0x84,0x13,0xf6,0xd,0xa4,0x86,
+ 0x6a,0x96,0xb1,0x9b,0x1a,0x86,0xc4,0x4d,0x2b,0x48,0x2a,0x26,0x80,0x88,0x2,0x25,
+ 0xa4,0xa9,0x6c,0xff,0x9c,0xa9,0x7d,0xff,0x4f,0xff,0x4f,0x4c,0x52,0xcc,0x3d,0x49,
+ 0x9e,0x86,0xd9,0xf7,0x3f,0xc1,0x5,0xb7,0xc2,0x43,0xe,0xeb,0xa8,0x4e,0x1d,0xe0,
+ 0xf6,0xb,0xe0,0xd0,0x5d,0x2,0x31,0xf1,0x3c,0x2b,0x39,0x54,0x6d,0xc9,0x82,0x40,
+ 0xa5,0x9b,0xa9,0x50,0xb1,0x1,0x44,0xd4,0x24,0x99,0xac,0x4,0x24,0x7f,0x76,0xe8,
+ 0x4c,0xce,0x48,0x64,0x36,0x99,0x6b,0xc5,0x6d,0x10,0x5,0x3d,0x33,0x69,0x26,0xb5,
+ 0x17,0xf7,0x6b,0x25,0x15,0x9a,0xcc,0x1a,0x72,0xcf,0x91,0xa2,0x3d,0x87,0xc3,0x65,
+ 0x27,0x80,0x9c,0x58,0xf9,0x92,0x62,0x2,0xab,0x73,0x98,0xea,0xcd,0x32,0xdf,0xb2,
+ 0xcd,0x5c,0xa0,0x18,0x1,0x92,0x52,0xd9,0xdf,0x1a,0x18,0x35,0x7e,0xa4,0x81,0xf3,
+ 0xa8,0x35,0x85,0x1d,0xa9,0xe1,0x9a,0x84,0x39,0xbd,0xf8,0x94,0x18,0xca,0xa2,0x6,
+ 0x2e,0xbe,0x3,0xae,0x14,0xf3,0x52,0x4d,0xed,0xda,0x24,0x81,0x21,0xb6,0x55,0x1,
+ 0xe9,0x6,0x15,0xb3,0xbf,0xcc,0x8a,0x82,0x8a,0x19,0x20,0xa2,0x60,0x49,0x6,0x2a,
+ 0x40,0xd8,0xd4,0xa1,0x6d,0x49,0xa9,0x70,0xbd,0x35,0x99,0xaf,0x68,0xc3,0x18,0x2c,
+ 0x8e,0x2b,0x8a,0x9e,0x28,0x70,0x26,0xa7,0x4c,0x3,0xb1,0xc6,0x95,0xb,0xc0,0x14,
+ 0xed,0xbc,0x55,0x12,0x1c,0x43,0x74,0x82,0x5a,0x4f,0x11,0x2c,0xe6,0x51,0xc6,0x39,
+ 0xaa,0xbc,0xee,0x2e,0xab,0xc0,0x45,0xb6,0xd9,0x2b,0x76,0x80,0x88,0xc,0xdd,0x81,
+ 0xab,0x12,0x27,0x5a,0x72,0x91,0x98,0xa2,0x15,0x3a,0x9a,0xfc,0x75,0x56,0xdc,0xe,
+ 0xc,0x21,0x20,0x4a,0x85,0x3f,0x2d,0x86,0x7e,0x29,0x18,0x1e,0xbf,0xf9,0x1,0x24,
+ 0x4e,0xee,0xd8,0xc7,0x60,0xc5,0xca,0x24,0x5b,0x2d,0xca,0xe0,0xb2,0x13,0xe1,0xaf,
+ 0x4e,0x27,0x5,0x2f,0x8e,0x15,0x6f,0xb2,0x92,0x73,0xb,0xe9,0x2,0x30,0xa8,0x82,
+ 0x4b,0x1,0x20,0x29,0x59,0xc5,0xb3,0x40,0x12,0x37,0x4a,0x3c,0xe0,0x14,0xc9,0xc1,
+ 0xe3,0xf5,0x56,0x15,0x9f,0xa2,0xec,0x7d,0x8b,0x7b,0xbc,0xfd,0xa0,0x1a,0x8b,0x48,
+ 0xb9,0x45,0x4b,0x92,0xa0,0x90,0xcf,0x5c,0x87,0xb9,0xe0,0x88,0x58,0x72,0xd6,0xd8,
+ 0x26,0x68,0x9a,0x1a,0x8b,0xdb,0xe8,0xcc,0x39,0xc5,0xb0,0xdf,0x48,0xd7,0xb5,0xa5,
+ 0x4,0x10,0x91,0x4f,0x66,0x9,0x1,0x49,0xc3,0x34,0xf3,0xcf,0xb6,0x6f,0xcd,0xbd,
+ 0x8b,0x26,0xdb,0x76,0x5e,0x72,0x7f,0x62,0xc8,0x43,0x3,0xe3,0x9e,0x4a,0xce,0x1a,
+ 0x9f,0x38,0x62,0x5f,0xf6,0xe8,0xe,0x67,0x1e,0x2,0x67,0xa6,0x4f,0x63,0x9e,0xae,
+ 0xb5,0x5f,0x51,0xfc,0x55,0x95,0xd7,0xf9,0xf5,0x14,0xa3,0xd2,0x4b,0xd,0x20,0xa9,
+ 0x3e,0x90,0x99,0x42,0x80,0xe2,0x74,0xc2,0x92,0x67,0xcf,0x1e,0xbb,0x37,0x55,0x77,
+ 0x5f,0x64,0x47,0x4b,0xd9,0xbe,0x18,0x3b,0x2c,0x97,0x3c,0x3f,0xf5,0x5a,0x72,0xc6,
+ 0x78,0x73,0x4a,0xdd,0x5b,0x5a,0xb7,0xaa,0x3,0x46,0xf7,0xb5,0x2,0xbf,0x5d,0x6c,
+ 0xe6,0xae,0x51,0xb1,0x46,0x96,0xd9,0x81,0x1b,0x28,0x94,0x82,0xa5,0xa,0x90,0x94,
+ 0x7e,0x65,0xb6,0x38,0x13,0x58,0xaf,0x81,0xc2,0x9f,0xbd,0xfc,0x78,0x7e,0xbc,0xf8,
+ 0x38,0xf6,0x40,0xf1,0xa7,0x42,0xe9,0x8c,0xe6,0xe0,0x63,0xf1,0x52,0x78,0xf4,0xa5,
+ 0xe4,0xe7,0x7f,0xef,0xd7,0xe7,0xe0,0x88,0xdd,0x92,0x33,0xc6,0x60,0x39,0x58,0xf,
+ 0x46,0xef,0xa3,0xb8,0x46,0x95,0xf3,0x54,0xb0,0xe2,0x85,0x5f,0xaa,0xd4,0x1,0x22,
+ 0x3d,0x20,0x61,0x83,0x8e,0xd2,0x9b,0xf8,0x54,0x98,0x21,0xbb,0x67,0x3a,0xad,0xc6,
+ 0x6b,0x57,0x9f,0xca,0x8a,0x93,0xe,0xc8,0x5e,0xda,0xe0,0xc2,0xef,0xf2,0x24,0x87,
+ 0x9f,0xcf,0x4a,0xa6,0x57,0x16,0x60,0x7c,0x25,0xe1,0xfb,0x1c,0xb4,0x63,0x65,0x12,
+ 0x18,0xbb,0x6f,0x1d,0x58,0x9a,0x3f,0xf4,0x41,0x88,0xcc,0x1a,0x72,0x40,0x52,0x32,
+ 0x14,0x5,0x80,0xa4,0x3a,0xab,0x8d,0x3,0x28,0x43,0x9c,0x3d,0xd8,0xa1,0x3d,0x3f,
+ 0xec,0xb3,0x1d,0x1c,0xb2,0xb,0xdd,0x77,0xcd,0x30,0x4d,0x47,0xb1,0x8d,0x4,0x39,
+ 0xa6,0xb5,0x81,0xf1,0x5f,0x58,0x55,0x53,0x9f,0xfb,0xad,0x7,0xc2,0x5f,0xf6,0x80,
+ 0x63,0x1b,0x85,0x15,0xf7,0x94,0xf2,0x51,0xca,0xb8,0x46,0xd,0x46,0x67,0xe6,0x2c,
+ 0x36,0x8d,0x78,0xf3,0x1b,0x25,0x80,0x38,0x35,0x21,0x5b,0x4d,0x99,0x55,0x1a,0x85,
+ 0x49,0x5f,0xb7,0x1b,0x8b,0xf7,0x1d,0x41,0xfb,0x5d,0x87,0x41,0xa9,0x80,0x45,0xee,
+ 0x30,0x26,0x4e,0x81,0xa7,0x5e,0x87,0xb7,0x3e,0x68,0x3c,0x20,0xc4,0x34,0x44,0x3e,
+ 0x19,0xcc,0x18,0x72,0x41,0xf0,0x90,0x24,0x60,0x55,0x31,0x3b,0xe5,0x77,0xc9,0x52,
+ 0x54,0x1,0x92,0xea,0x50,0x49,0x9,0x27,0x26,0x2b,0xf2,0x59,0xbb,0x61,0x2f,0x4b,
+ 0xf2,0xfa,0x6d,0x7,0xc3,0x56,0x5b,0x24,0x8f,0x35,0xfb,0x6c,0x50,0x1c,0xe3,0x60,
+ 0xd9,0x72,0x78,0xfe,0x6d,0xf8,0x5f,0x55,0x12,0x18,0xce,0xd3,0xa8,0x94,0x4,0x12,
+ 0xb0,0x2d,0x5,0x8c,0x0,0x41,0xdb,0x52,0xd5,0x7e,0xb1,0xb3,0x12,0xb7,0xe4,0x41,
+ 0x35,0x88,0xa9,0xc5,0xa1,0x8d,0xa6,0x71,0x19,0x75,0x80,0xa4,0xb4,0x27,0x19,0x34,
+ 0x53,0x40,0x91,0x9f,0x65,0xe9,0xd4,0xba,0xe9,0x86,0xb0,0xe5,0xe6,0xb0,0x43,0x25,
+ 0xc8,0x3a,0xbd,0xab,0x84,0x99,0x28,0x10,0xfa,0x62,0x76,0x12,0x14,0xf2,0x99,0xf8,
+ 0x1,0x2c,0x77,0xd9,0x9,0xc8,0x32,0x2a,0x5,0xc,0x31,0x2e,0xc,0x48,0x9f,0x3,
+ 0xf,0xd2,0x92,0xf1,0x6a,0x20,0x92,0x6e,0x39,0x32,0x64,0x0,0xd2,0xb8,0xab,0x25,
+ 0xf4,0x50,0xa,0x2c,0x92,0xba,0xda,0x95,0x6,0xf4,0x81,0x1,0xbd,0xa1,0x6f,0xf,
+ 0xe8,0xd7,0xb3,0xee,0x53,0x96,0x16,0x5e,0xd9,0x19,0x53,0xe2,0x98,0xf4,0xe9,0xcc,
+ 0x64,0xd0,0x67,0xe7,0x4f,0xf9,0xbf,0x1b,0xc5,0x36,0x81,0xed,0x63,0x20,0x97,0x7c,
+ 0xbb,0x4,0xdf,0x63,0xad,0x44,0xf1,0x8c,0xfd,0xa9,0xe1,0xb1,0x52,0xdb,0x7c,0x7,
+ 0xed,0xd,0x3,0x10,0x6f,0x4d,0xd,0xd4,0xb7,0xef,0x72,0xaf,0x22,0x77,0x27,0x92,
+ 0x4,0xc8,0x97,0x64,0x29,0x96,0x2,0x8c,0xcc,0x32,0x9d,0x3b,0x3a,0x3e,0x1d,0xea,
+ 0xff,0x2d,0xdf,0xf4,0xb,0x16,0xe9,0xcf,0x1f,0xb0,0x70,0x71,0xfd,0xbf,0xe5,0xd9,
+ 0x77,0x3f,0xd5,0x1,0xc2,0xb,0x8,0x29,0xc6,0x3a,0xb6,0x4f,0x82,0x41,0x66,0x3a,
+ 0xb1,0x97,0x12,0x0,0x67,0x40,0x6f,0xd9,0xf1,0xc8,0x14,0xcf,0x14,0xa2,0x87,0x5f,
+ 0x6,0x72,0x64,0xa5,0xa8,0x1,0x48,0x70,0x35,0xb6,0xd6,0x9b,0xfa,0x9d,0xf4,0xcf,
+ 0x7a,0x47,0xc6,0xc1,0x9b,0xc9,0x7e,0x49,0x1,0x44,0xff,0x5e,0xb0,0x6d,0x39,0xec,
+ 0xbc,0x65,0x12,0x18,0x19,0x92,0x84,0x5a,0x7a,0x86,0x32,0x9e,0x51,0x83,0x79,0x27,
+ 0xc3,0xba,0x25,0x5d,0xdc,0x0,0x24,0x7c,0xf7,0x8a,0xd3,0x96,0xc,0xc5,0xbe,0xed,
+ 0x5a,0xb3,0x59,0xfb,0x76,0xc,0x5a,0xbc,0x94,0x9e,0x4b,0x96,0xe5,0x2e,0xf2,0xe3,
+ 0xba,0xdd,0xea,0x66,0xa6,0xfe,0x8e,0x25,0x9d,0xfc,0x3f,0x23,0x52,0xfc,0x84,0xc5,
+ 0x64,0xfb,0xd3,0x92,0x49,0x6a,0x10,0xe,0x1b,0xdd,0x8c,0x5a,0x2a,0xf9,0xc2,0x6,
+ 0x20,0xd9,0xef,0xe2,0xae,0x9b,0x6e,0x44,0x79,0xff,0x9e,0xec,0xd1,0xa6,0x35,0xb1,
+ 0xd5,0x57,0xa3,0x57,0xeb,0x56,0x74,0x5b,0xba,0xc,0x96,0xad,0x80,0x86,0x3f,0xdb,
+ 0xb6,0x86,0x8e,0xab,0xc1,0xea,0xab,0x81,0xcc,0x4,0xce,0xdf,0xed,0xff,0xad,0x6,
+ 0x6b,0x75,0x4e,0xce,0x10,0xf2,0x3c,0x24,0xfd,0x8e,0xc5,0x44,0x14,0x13,0xe5,0xa7,
+ 0xaa,0xa0,0xc1,0x9d,0x79,0xc8,0x56,0x23,0x50,0xcd,0x0,0x24,0xf,0x9d,0x6c,0xc5,
+ 0x91,0xa1,0x2d,0x6,0x1b,0xfd,0x28,0xa3,0x6f,0x62,0xd3,0x9b,0xfc,0x3d,0xf9,0x91,
+ 0xa5,0x5b,0xb6,0x68,0x8e,0x1d,0x99,0x52,0x31,0xd,0xcb,0x8e,0x75,0x2c,0x4b,0xa7,
+ 0x69,0x85,0x10,0xa1,0x30,0x5b,0x2,0xe6,0xbb,0x1d,0x3,0x90,0x7c,0x6b,0xbc,0xc1,
+ 0xfb,0xac,0x2a,0x36,0xa4,0x8c,0x9e,0xd4,0xd0,0x16,0x8b,0xb6,0x94,0xe9,0x9f,0xf5,
+ 0x7f,0x6f,0x89,0x62,0xa9,0xfd,0xa9,0xd1,0x3f,0xcb,0x1c,0xbf,0x5b,0xfc,0xc6,0x2a,
+ 0xa6,0x15,0xba,0x7f,0x77,0x33,0xab,0x3a,0xd4,0xeb,0xd,0x40,0x42,0xa9,0xcd,0x54,
+ 0x8a,0x8a,0x6,0xc,0x40,0xa2,0xd2,0xd3,0x46,0xce,0x50,0x1a,0x30,0x0,0x9,0xa5,
+ 0x36,0x53,0x29,0x2a,0x1a,0x30,0x0,0x89,0x4a,0x4f,0x1b,0x39,0x43,0x69,0xc0,0x0,
+ 0x24,0x94,0xda,0x4c,0xa5,0xa8,0x68,0xc0,0x0,0x24,0x2a,0x3d,0x6d,0xe4,0xc,0xa5,
+ 0x1,0x3,0x90,0x50,0x6a,0x33,0x95,0xa2,0xa2,0x1,0x3,0x90,0xa8,0xf4,0xb4,0x91,
+ 0x33,0x94,0x6,0xc,0x40,0x42,0xa9,0xcd,0x54,0x8a,0x8a,0x6,0xc,0x40,0xa2,0xd2,
+ 0xd3,0x46,0xce,0x50,0x1a,0x30,0x0,0x9,0xa5,0x36,0x53,0x29,0x2a,0x1a,0x30,0x0,
+ 0x89,0x4a,0x4f,0x1b,0x39,0x43,0x69,0xc0,0x0,0x24,0x94,0xda,0x4c,0xa5,0xa8,0x68,
+ 0xc0,0x0,0x24,0x2a,0x3d,0x6d,0xe4,0xc,0xa5,0x1,0x3,0x90,0x50,0x6a,0x33,0x95,
+ 0xa2,0xa2,0x81,0xff,0x7,0xce,0xee,0x3,0x5f,0xba,0xc9,0x83,0x50,0x0,0x0,0x0,
+ 0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
+ // /home/hzk/Software_Architecture/src/Client/res/icon/red.png
+ 0x0,0x0,0x2c,0x39,
+ 0x89,
+ 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+ 0x0,0x0,0xc8,0x0,0x0,0x0,0xc8,0x8,0x6,0x0,0x0,0x0,0xad,0x58,0xae,0x9e,
+ 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x20,
+ 0x0,0x49,0x44,0x41,0x54,0x78,0x5e,0xed,0x5d,0x9,0x78,0x54,0xd5,0xf5,0xff,0xdd,
+ 0x37,0x2b,0x61,0x7,0xd9,0x93,0x9,0x20,0x90,0x9,0xa8,0x60,0xab,0x22,0x62,0xad,
+ 0xb6,0xd2,0xd6,0x15,0x5b,0xad,0x28,0x56,0xab,0xd2,0x56,0x6d,0xb5,0xee,0xb6,0x75,
+ 0xa9,0xda,0xba,0x80,0xfb,0x52,0xac,0xf5,0xef,0x56,0xb1,0x6e,0x55,0x11,0x8b,0x62,
+ 0xb5,0x15,0xc5,0xa5,0xd6,0xad,0xb8,0x91,0x9,0xa8,0x90,0x49,0x8,0x7b,0x58,0x43,
+ 0x32,0xdb,0xbb,0xff,0x39,0x33,0xef,0x91,0x97,0x64,0xde,0xbc,0x37,0x2f,0xb3,0xbf,
+ 0x7b,0xbe,0x6f,0xbe,0x99,0x64,0xee,0xbd,0xef,0xdc,0x73,0xef,0x6f,0xee,0x72,0x36,
+ 0x6,0x41,0x42,0x2,0x42,0x2,0xba,0x12,0x60,0x42,0x36,0x42,0x2,0x42,0x2,0xfa,
+ 0x12,0x10,0x0,0x11,0xb3,0x43,0x48,0x20,0x8d,0x4,0x4,0x40,0xc4,0xf4,0x10,0x12,
+ 0x10,0x0,0x11,0x73,0x40,0x48,0xc0,0x9a,0x4,0xc4,0xa,0x62,0x4d,0x6e,0xa2,0x96,
+ 0x4d,0x24,0x20,0x0,0x62,0x93,0x81,0x16,0xdd,0xb4,0x26,0x1,0x1,0x10,0x6b,0x72,
+ 0x13,0xb5,0x6c,0x22,0x1,0x1,0x10,0x9b,0xc,0xb4,0xe8,0xa6,0x35,0x9,0x8,0x80,
+ 0x58,0x93,0x9b,0xa8,0x65,0x13,0x9,0x8,0x80,0xd8,0x64,0xa0,0x45,0x37,0xad,0x49,
+ 0x40,0x0,0xc4,0x9a,0xdc,0x44,0x2d,0x9b,0x48,0x40,0x0,0xc4,0x26,0x3,0x2d,0xba,
+ 0x69,0x4d,0x2,0x2,0x20,0xd6,0xe4,0x26,0x6a,0xd9,0x44,0x2,0x2,0x20,0x36,0x19,
+ 0x68,0xd1,0x4d,0x6b,0x12,0x10,0x0,0xb1,0x26,0x37,0x51,0xcb,0x26,0x12,0x10,0x0,
+ 0xc9,0xee,0x40,0x7b,0x0,0xec,0xb,0x60,0x4,0x80,0x81,0x0,0x6,0x29,0xef,0x7a,
+ 0x9f,0xe9,0x7b,0xe,0xa0,0x1d,0x40,0x48,0x79,0x69,0x3f,0xd3,0xff,0xe8,0xef,0x95,
+ 0x0,0xea,0x95,0x17,0x7d,0x5e,0x95,0x5d,0xb6,0x45,0x6b,0x7a,0x12,0x10,0x0,0xb1,
+ 0x3e,0x37,0xc6,0x0,0xa8,0x5,0x30,0x9,0xc0,0x14,0x0,0x93,0x95,0xcf,0xd6,0x5b,
+ 0x34,0x5f,0x53,0xd6,0x80,0x85,0x80,0xb3,0x14,0xc0,0xbf,0x1,0x44,0xcc,0x37,0x21,
+ 0x4a,0x9a,0x91,0x80,0x0,0x88,0x19,0x29,0x1,0x7,0x1,0xd8,0xf,0xc0,0x44,0x5,
+ 0x14,0x4,0x6,0x5a,0x25,0xac,0x50,0x18,0x40,0x8b,0xf2,0xda,0xa,0x80,0x56,0x9d,
+ 0xfe,0x0,0x6,0x28,0xef,0x6e,0x2b,0x8d,0x2,0x20,0xd0,0xbc,0xc,0xe0,0x15,0x0,
+ 0x6f,0x1,0xf8,0xd4,0x62,0x3b,0xa2,0x9a,0x46,0x2,0x2,0x20,0xfa,0xd3,0xa1,0x6,
+ 0xc0,0x71,0xca,0xeb,0x30,0x13,0xb3,0xa6,0xd,0xc0,0x27,0x0,0x96,0x3,0x58,0xa3,
+ 0x1,0x81,0x16,0xc,0xf4,0x79,0x97,0x41,0x5b,0x15,0x5d,0x0,0x53,0x9,0xc0,0xf,
+ 0x80,0xf8,0xa1,0x77,0x7a,0xf5,0x31,0xc1,0xcf,0x17,0x0,0xde,0x50,0xc0,0xb2,0x4,
+ 0xc0,0xe,0x13,0x75,0x44,0x91,0x2e,0x12,0x10,0x0,0xe9,0x2c,0x90,0x61,0xa,0x20,
+ 0x8e,0x57,0xde,0xf5,0x26,0xcc,0x5a,0xd,0x18,0x3e,0x53,0x7e,0xad,0x57,0x58,0x99,
+ 0x5d,0x2b,0x7d,0xde,0xb1,0x32,0xc3,0x68,0x19,0xdc,0xcb,0xc0,0xbd,0x0,0xbc,0x4c,
+ 0xe6,0x5e,0x99,0xde,0x21,0x79,0x41,0xff,0x63,0x70,0xb2,0xc4,0x59,0x84,0xb5,0x73,
+ 0xc8,0xed,0xef,0x85,0x50,0xf1,0x7e,0x5b,0x6c,0xf0,0x8a,0x30,0x86,0xae,0x8e,0xf2,
+ 0xd1,0x1b,0x62,0x7c,0xdf,0x10,0x4f,0xbb,0xa2,0xad,0x3,0xb0,0x48,0x79,0xd1,0xa,
+ 0x23,0xc8,0xa4,0x4,0x4,0x40,0x0,0x9a,0x94,0xea,0x4a,0x41,0xc0,0xa0,0xed,0x4e,
+ 0x57,0xfa,0x10,0xc0,0x4b,0xa,0x10,0x8,0x10,0x19,0x1d,0x92,0x3f,0x1c,0x89,0x8a,
+ 0xa,0x97,0xcb,0xcf,0xc0,0xfc,0x12,0x47,0xd,0xa7,0x55,0x80,0xc1,0xf,0x9e,0x58,
+ 0xd,0xac,0x6e,0xa9,0x3a,0xf1,0xd8,0x10,0xe5,0xf8,0x4f,0xbb,0xbc,0xed,0xad,0x36,
+ 0xde,0xf6,0x71,0x88,0xf7,0xd9,0x2a,0xf3,0xbe,0x3a,0x73,0x80,0x56,0x39,0x15,0x2c,
+ 0x1f,0x9b,0x9c,0x27,0xb6,0x2d,0x66,0x67,0x80,0x7c,0x33,0xbe,0x15,0x3a,0x53,0x1,
+ 0x47,0x75,0x8a,0x19,0x50,0x7,0x60,0xb1,0xf2,0x5a,0x96,0xc9,0xc,0x59,0x35,0xe,
+ 0xfd,0xa2,0x21,0xcf,0x34,0xc6,0xf8,0x11,0x0,0x8e,0x4,0x40,0xcf,0xca,0x2b,0x7d,
+ 0x1e,0xe6,0xf8,0x28,0x24,0xe3,0x9d,0x76,0x8e,0x65,0x6d,0x74,0x3c,0x49,0x49,0xff,
+ 0x2,0xf0,0x2c,0x80,0x87,0x0,0x44,0xf3,0xca,0x60,0x89,0x3c,0xcc,0x8e,0x0,0xa1,
+ 0xc9,0xfa,0xb,0xe5,0xd5,0x75,0x98,0x82,0x1a,0x50,0xd0,0xbe,0xdd,0x14,0xa9,0x80,
+ 0x0,0xe3,0xd3,0x0,0x3e,0x9d,0x81,0x11,0x28,0x8a,0x86,0x82,0xd1,0x24,0x48,0x96,
+ 0xe9,0x83,0x85,0xe,0xf4,0x4,0x12,0x7a,0xb5,0x16,0xd,0xe3,0x45,0xc0,0x88,0x9d,
+ 0x0,0xa2,0x7,0x8c,0x2d,0x1a,0x50,0xd0,0x8a,0x41,0x7a,0x7,0x53,0x54,0xe7,0xf3,
+ 0x1c,0xc7,0x38,0x66,0x82,0x61,0x26,0xc0,0xf7,0x32,0x55,0xa9,0xc0,0x85,0xd2,0x81,
+ 0xc5,0xcb,0x10,0x6c,0xe7,0xf8,0x93,0x2,0x14,0xba,0x50,0xb0,0x3d,0xd9,0x1,0x20,
+ 0x7a,0xc0,0xd8,0x6,0xe0,0x3e,0xe5,0x45,0x87,0x6e,0x53,0xb4,0x62,0xb4,0xeb,0x60,
+ 0x26,0xb3,0x99,0xc,0x4,0x8a,0x84,0x1e,0xa4,0x64,0xe9,0x8b,0x30,0xc7,0xd3,0xbb,
+ 0x62,0x78,0x66,0x57,0xe7,0x2d,0x58,0x5f,0x9,0x2d,0xfd,0x24,0xe9,0xaf,0x6b,0xa3,
+ 0xf2,0xad,0x0,0xe8,0x80,0x6f,0x5b,0x2a,0x67,0x80,0xe8,0x1,0x83,0x94,0x69,0xf3,
+ 0xe3,0x1a,0xee,0xbb,0x95,0xeb,0x58,0xc3,0xc1,0x5f,0x5e,0xd9,0x6b,0x54,0x2f,0x26,
+ 0x9f,0xcc,0x25,0xcc,0x4,0xe7,0xdf,0x36,0xac,0x50,0x62,0x5,0xf4,0x80,0x32,0x48,
+ 0xc2,0xee,0xa9,0x5e,0xe9,0xd9,0xa9,0xbb,0xe5,0xb3,0xae,0x4b,0xea,0x59,0x6c,0x47,
+ 0xe5,0xa,0x90,0xbf,0xe8,0x9c,0x31,0xfe,0x2f,0x7e,0x6b,0x74,0x93,0x59,0x60,0x7c,
+ 0xea,0xf3,0x8e,0x75,0x31,0x79,0xe,0x38,0x9f,0xc3,0xc0,0xe8,0xa,0xb8,0xac,0x49,
+ 0xf,0x28,0x7,0x78,0xd8,0x8e,0x23,0x7b,0x3b,0x1e,0x3d,0xbe,0x22,0xfa,0xdb,0x43,
+ 0x9a,0x40,0xfa,0x1e,0xdb,0x50,0x39,0x2,0xe4,0x70,0xc5,0xf4,0x42,0x3b,0x88,0x8f,
+ 0x2,0xb8,0xde,0x2c,0x30,0x3e,0xab,0x76,0xd7,0x3a,0x65,0x3e,0x87,0x31,0x36,0x47,
+ 0xd1,0x70,0xdb,0x66,0x42,0x50,0x47,0x9,0x28,0x4f,0xec,0x8a,0xe1,0xb9,0x2e,0x5b,
+ 0xaf,0x59,0x7d,0xa4,0x96,0x53,0xfa,0x39,0xef,0x1d,0xed,0xe,0xdf,0xb5,0xff,0x1a,
+ 0xd0,0x16,0xb5,0xec,0xa9,0x5c,0x1,0xf2,0x8,0x80,0xd1,0xf1,0x57,0x46,0xc0,0xf8,
+ 0x62,0xb4,0x6b,0x8a,0x14,0x83,0xa,0x8c,0x5e,0x65,0x3f,0xfa,0x6,0x1d,0x7c,0xa3,
+ 0x4d,0xc6,0x43,0x3b,0x62,0xf8,0x20,0x44,0xf6,0x94,0x49,0xaa,0x76,0x32,0x9c,0xde,
+ 0x57,0xda,0x74,0x5a,0x1f,0xc7,0x5d,0x51,0xa7,0xeb,0xa1,0x7d,0x57,0xb7,0x6e,0x28,
+ 0x67,0x39,0x95,0x23,0x40,0x32,0x1e,0xaf,0x55,0x55,0x9e,0xbd,0x63,0x90,0x2f,0x1,
+ 0x63,0xe7,0x2,0x90,0x32,0x6e,0xa0,0xcc,0x2b,0x3c,0xba,0x33,0x86,0x87,0x77,0xc8,
+ 0xd8,0x18,0xeb,0x0,0xca,0x8c,0xa,0x9,0x17,0xf6,0x97,0x36,0x8c,0x77,0x49,0x77,
+ 0x49,0xee,0xf0,0x9d,0xe3,0xbf,0x4c,0x58,0x23,0x97,0x1d,0xd9,0x1a,0x20,0xab,0xc6,
+ 0xc1,0x23,0x87,0xdd,0x17,0x73,0xce,0x9,0x1c,0x43,0xca,0x6e,0x74,0xb3,0xd8,0xa1,
+ 0xa6,0x28,0xc7,0xc3,0x3b,0x62,0x78,0x42,0xb3,0xed,0x1a,0xe9,0x64,0xb8,0x74,0x80,
+ 0x3,0xc7,0x54,0x48,0xa4,0x91,0xbf,0xd3,0x1f,0xc,0x3f,0x9e,0xc5,0x47,0x16,0x45,
+ 0x53,0xb6,0x5,0x48,0xc0,0xe7,0xfe,0x9,0x80,0x8b,0x1,0x7c,0xa3,0x28,0x46,0xa2,
+ 0x44,0x98,0x78,0xb7,0x5d,0xc6,0xdd,0xdb,0x62,0xf8,0x24,0xdc,0xb1,0x9a,0xcc,0xe9,
+ 0xe7,0x48,0x0,0x45,0x2,0x5e,0xe4,0xb2,0x7c,0x67,0x6d,0x53,0x94,0x8c,0x24,0xcb,
+ 0x82,0x6c,0x7,0x90,0xba,0x4a,0xe7,0xe1,0x4c,0x92,0x8,0x18,0x64,0x77,0x25,0xc8,
+ 0x82,0x4,0x76,0xc8,0xc0,0x8d,0x5b,0xa3,0x58,0xd4,0xda,0x71,0xf3,0x7b,0xb0,0x57,
+ 0xc2,0x65,0x3,0x1c,0xd8,0xc7,0xcd,0x0,0xce,0xef,0x73,0x40,0xba,0x63,0x7c,0x63,
+ 0xe8,0x2b,0xb,0xcd,0x17,0x55,0x15,0xdb,0x0,0x64,0x29,0xe0,0x1c,0x59,0xe5,0x9a,
+ 0xcb,0x19,0xbb,0xb4,0xa8,0x46,0xa0,0x84,0x99,0xf9,0xf3,0xf6,0x18,0xee,0xde,0x1e,
+ 0xdb,0xd3,0x83,0x7e,0x12,0x70,0xd9,0x0,0x27,0x4e,0xee,0x23,0x11,0x48,0x36,0x49,
+ 0xc,0xd7,0x4c,0x8,0x46,0xe8,0xca,0xbd,0x64,0xc9,0x16,0x0,0xa9,0xaf,0x74,0x1d,
+ 0xc4,0x25,0xcc,0x5,0x18,0x19,0xf,0xa,0xca,0xa2,0x4,0x96,0xec,0x96,0x71,0xd3,
+ 0xd6,0x18,0x36,0x69,0xe,0xf0,0x67,0xf7,0x73,0xe0,0x8a,0x1,0x8e,0xc4,0x53,0x38,
+ 0xe7,0xf3,0x9d,0x9e,0xc8,0xa5,0xa5,0x7a,0x88,0x2f,0x7b,0x80,0x4,0xaa,0x5c,0xe7,
+ 0x82,0xb1,0x79,0x0,0xfa,0x65,0x71,0x5e,0x88,0xa6,0x34,0x12,0xa8,0xb,0x73,0xdc,
+ 0xb4,0x35,0xda,0xe9,0x3a,0x78,0x66,0x6f,0x9,0xf3,0x6,0x3b,0x93,0xa5,0x18,0x7b,
+ 0x13,0xb2,0x7c,0x99,0xbf,0x31,0x42,0x6e,0x3,0x25,0x45,0x65,0xb,0x90,0x2f,0x2a,
+ 0x31,0xc8,0x29,0x79,0xe6,0x72,0xf0,0x9f,0x97,0xd4,0x88,0x94,0x28,0xb3,0xed,0x1c,
+ 0xb8,0x6a,0x4b,0x14,0x2f,0xed,0xee,0x38,0x97,0x4c,0xf7,0x4a,0x78,0x68,0x68,0x12,
+ 0x24,0x9c,0xdc,0x8c,0x39,0xbf,0xb4,0xb6,0x31,0x42,0xba,0xa9,0x92,0xa1,0xb2,0x4,
+ 0xc8,0x4a,0x9f,0xf7,0xc8,0x18,0xe4,0x79,0x4c,0xdc,0x50,0xe5,0x7d,0x22,0xfe,0x6e,
+ 0x4b,0x14,0xb,0x35,0x87,0xf7,0x1a,0x17,0xc3,0xa2,0x11,0xae,0x3d,0x7c,0x30,0xc6,
+ 0x6f,0xaf,0x69,0x88,0x5c,0x96,0x77,0xc6,0x2c,0x3e,0xb0,0x58,0x1,0x72,0x2c,0x80,
+ 0x33,0x94,0x20,0x4,0x19,0xfd,0xe2,0xd4,0x57,0xbb,0x7e,0xc6,0x39,0x23,0x9b,0x2b,
+ 0x41,0x5,0x92,0xc0,0xb5,0x2d,0x51,0x3c,0xad,0xd1,0x97,0xc,0x76,0x30,0xbc,0x33,
+ 0xaa,0x3,0x24,0xf1,0xab,0xf5,0x17,0x43,0xa1,0xf0,0xec,0xc9,0x1b,0x8a,0xdf,0xf7,
+ 0xa4,0x18,0x1,0x42,0x71,0xa5,0xc8,0x6f,0x7a,0xa4,0x32,0xbe,0xf4,0x6e,0xca,0xe4,
+ 0xba,0xae,0xca,0x7d,0x25,0x63,0xb8,0xb1,0x40,0xf3,0x42,0x3c,0x56,0x23,0x81,0x5b,
+ 0xb6,0x91,0xf6,0xbd,0xe3,0x86,0x8b,0xbe,0xa,0xf8,0x3a,0xbc,0x8b,0x39,0xc7,0x7f,
+ 0xc3,0x6e,0xf7,0xf1,0x93,0xbf,0xda,0xb5,0xb1,0x98,0x5,0x57,0x8c,0x0,0x79,0x22,
+ 0x1e,0xf3,0xe9,0x54,0x45,0x68,0x1f,0xc4,0x57,0x11,0xa,0xb9,0x63,0x48,0x1,0x9f,
+ 0xeb,0x2e,0x80,0x5d,0x68,0x58,0x50,0x14,0xc8,0x9b,0x4,0x9e,0x8a,0xaf,0x22,0xd7,
+ 0xb5,0x74,0x78,0xf2,0x56,0x39,0x19,0x5e,0x1b,0xd9,0x69,0x25,0x59,0xd,0x26,0x7d,
+ 0xd7,0xdf,0xd0,0xbe,0x3a,0x6f,0x4c,0x65,0xf8,0xa0,0x62,0x4,0x8,0x39,0xe9,0xd0,
+ 0x1e,0xf5,0x39,0x0,0xbf,0x8c,0xbf,0xc,0x7f,0x61,0xea,0xab,0xdd,0x4f,0x70,0xbe,
+ 0x7,0x54,0x19,0x8a,0x40,0x14,0xcf,0xa5,0x4,0x48,0xf3,0x7e,0xf6,0xc6,0xe,0x90,
+ 0x1c,0xe2,0x95,0xf0,0xb0,0x72,0x70,0x57,0x9e,0xdb,0xea,0x0,0xa6,0x8e,0xf,0x86,
+ 0x29,0x4c,0x51,0xd1,0x51,0x31,0x2,0x84,0x84,0x44,0x26,0xeb,0xa6,0xcc,0x15,0xea,
+ 0x7d,0xee,0x7f,0x70,0x80,0xce,0x2c,0x82,0x8a,0x54,0x2,0xef,0xb7,0xcb,0x38,0x43,
+ 0x3,0x12,0x52,0x24,0xfe,0x61,0x90,0x72,0x5,0xac,0xf0,0xcc,0x64,0x3e,0xb5,0xa6,
+ 0x29,0xf2,0x7e,0xb1,0x75,0xa1,0x58,0x1,0x62,0x4a,0x4e,0x1,0x9f,0xeb,0x75,0xa1,
+ 0xfc,0x33,0x25,0xaa,0x82,0x17,0x7a,0xab,0x5d,0xc6,0xcf,0x35,0x20,0x39,0xab,0x9f,
+ 0x3,0xbf,0x51,0x94,0x89,0x1d,0xcc,0xc9,0x87,0xfa,0x83,0xd1,0x77,0xa,0xce,0xac,
+ 0x86,0x81,0x92,0x5,0x48,0xc0,0xe7,0xf9,0x33,0xc0,0xc9,0x3c,0x5d,0x50,0x89,0x48,
+ 0x80,0x74,0x24,0x97,0x6e,0xee,0xd8,0x6e,0x9d,0xd3,0xcf,0x81,0x8b,0xbb,0x80,0x44,
+ 0x82,0xb4,0xf7,0x84,0x60,0xfb,0xd7,0xc5,0xd2,0xa5,0x42,0x3,0xe4,0xc7,0x4a,0x3c,
+ 0xa6,0x85,0x99,0x8,0x44,0xd1,0x8e,0xff,0x39,0x93,0x3a,0xa2,0x6c,0x71,0x48,0xa0,
+ 0xeb,0xc1,0x9d,0x56,0x11,0x5a,0x4d,0xb4,0xc4,0x64,0x47,0x65,0x4d,0x53,0x9b,0xe9,
+ 0x40,0x1a,0xb9,0xec,0x59,0x21,0x1,0x42,0x13,0x5c,0x5d,0x1,0x28,0x52,0x3a,0xc5,
+ 0xb3,0x35,0xa4,0x80,0xcf,0x7d,0x52,0x3c,0x8a,0xfa,0xdf,0xd,0xb,0x2,0xe8,0x7b,
+ 0xcc,0x89,0x18,0x72,0xe5,0xcd,0x8,0x7d,0xf1,0x9,0xd6,0xfe,0x82,0xb0,0x28,0xa8,
+ 0x18,0x24,0xf0,0xc0,0x8e,0x18,0xee,0xd8,0x96,0xbc,0x2,0x26,0x68,0xd0,0xa1,0x7d,
+ 0xaa,0xb7,0x93,0x9f,0x5a,0x33,0x8b,0x86,0x27,0xd7,0x34,0x63,0x73,0xa1,0xf9,0x2d,
+ 0x14,0x40,0x48,0x9,0xf8,0x57,0x4d,0xe7,0x87,0x3,0x30,0x74,0xdd,0x5c,0xe9,0xf3,
+ 0xcc,0x90,0xc1,0x5f,0x35,0x23,0x34,0xa9,0xa2,0x37,0xc6,0xbe,0x5d,0xf,0xc7,0xe0,
+ 0xa4,0x1f,0x54,0xe3,0xac,0x19,0xd8,0xfd,0x5e,0x46,0x1,0x12,0xcd,0x3c,0x26,0xa7,
+ 0x65,0x3c,0x13,0x27,0x23,0xba,0xa1,0x19,0xb1,0x2d,0x9b,0x72,0xfa,0x9c,0x42,0x34,
+ 0x7e,0x7d,0x4b,0x14,0x4f,0x2a,0xca,0xc4,0xfd,0xdc,0xc,0xf,0xf,0x75,0x81,0x8c,
+ 0x80,0x55,0x8a,0x7,0xdf,0x7b,0x9b,0xef,0xe,0x1d,0xed,0xdf,0x8c,0x9d,0x85,0xe0,
+ 0xaf,0x83,0x8f,0xfc,0x3f,0x9d,0xd2,0x8,0xbc,0x7,0x40,0xf5,0xf9,0xfe,0x6d,0xfc,
+ 0x33,0x19,0x13,0xa6,0xa5,0x2f,0x2a,0x5d,0x53,0x1d,0x12,0xa3,0x50,0x99,0x66,0x22,
+ 0x9b,0xc3,0x55,0x3d,0x16,0x63,0x97,0x51,0xf4,0x50,0x60,0xd7,0x3f,0x17,0x61,0xed,
+ 0x2f,0x4e,0x36,0x7a,0x44,0x51,0x7c,0xbf,0xd7,0xc5,0xd7,0xc0,0x33,0x69,0xa,0x2a,
+ 0xa6,0x1e,0xa,0xa9,0x1f,0x65,0x44,0x0,0x42,0x2b,0x3e,0x41,0xdb,0xff,0xde,0xc7,
+ 0xae,0x25,0xb,0xd1,0xfa,0x16,0xa5,0x1,0x29,0x7d,0x22,0xdb,0xad,0x9f,0x6d,0x8c,
+ 0xe0,0x43,0xc5,0xdf,0xfd,0x94,0x38,0x3a,0xae,0xeb,0x72,0xb3,0x15,0xf,0xd9,0xfa,
+ 0x8f,0x9a,0x21,0xe1,0x13,0xd9,0x47,0x85,0xcb,0x7b,0x52,0x88,0x15,0x84,0x46,0xf8,
+ 0x3b,0xca,0x10,0xd3,0x56,0xc9,0x70,0xe6,0x26,0x7c,0xc6,0x19,0xa7,0xa8,0x87,0x14,
+ 0xec,0xd9,0x34,0x79,0x6a,0xf7,0x45,0xaf,0x3,0xa7,0xa3,0xf5,0xcd,0x57,0x11,0x69,
+ 0x28,0x9a,0x73,0x5f,0x4a,0xfe,0x2b,0xa6,0x1f,0x81,0x61,0x37,0xcd,0x87,0x7b,0xf4,
+ 0xde,0x69,0xfb,0xb7,0xf5,0xc1,0x7b,0xb0,0xf1,0x8f,0x97,0x9b,0x96,0x41,0x31,0x17,
+ 0xfc,0x34,0xcc,0x13,0x20,0x21,0x7,0x2c,0x22,0xba,0xfa,0x4d,0xf8,0x92,0x74,0xa6,
+ 0x67,0xfd,0xc1,0x70,0xc1,0xf6,0xc7,0xf9,0x6,0x88,0xaa,0x4,0x24,0x11,0xd0,0x8c,
+ 0x9d,0xa1,0xbc,0xa7,0x1d,0xc7,0x80,0xcf,0x4d,0xd1,0xc8,0xcb,0xd6,0x3,0xb0,0xdf,
+ 0xcc,0x53,0x30,0xe2,0x1e,0xed,0x8e,0x33,0xfd,0xb4,0xde,0xb9,0x64,0x21,0x9a,0xcf,
+ 0x3d,0xa5,0x98,0xe7,0xbe,0x69,0xde,0x28,0xb4,0xd0,0x55,0x8a,0xb6,0xbd,0xbf,0x4,
+ 0x3c,0x32,0xd4,0x85,0x89,0xe4,0x95,0xa8,0x25,0x86,0x6b,0xfc,0xd,0xe1,0x1b,0x4c,
+ 0x37,0x9a,0xc5,0x82,0xf9,0x4,0xc8,0xe9,0x0,0x1e,0xd3,0xf0,0x4e,0x2b,0x87,0xe1,
+ 0x61,0xbb,0xce,0xe7,0xbe,0x39,0x9e,0x1b,0x83,0xb6,0x61,0x65,0x49,0x8e,0xfe,0x3,
+ 0x31,0xee,0xd3,0xf5,0x19,0xf7,0xad,0x14,0xcf,0x54,0x7a,0x9d,0x9c,0xbb,0x35,0x6,
+ 0x8a,0x9c,0x42,0x94,0x42,0xd3,0x9e,0xf8,0xbf,0xcc,0xd8,0x31,0x13,0x1b,0x42,0x94,
+ 0x41,0x2b,0xaf,0x94,0x2f,0x80,0xd0,0x66,0xfa,0x5d,0x4d,0x2c,0x5b,0x3a,0x73,0x18,
+ 0x4e,0x7a,0x25,0xb0,0xc2,0x2,0x23,0x89,0xb8,0xc7,0x8e,0xc7,0xe0,0x8b,0xae,0x49,
+ 0x1c,0x68,0x37,0xdd,0x68,0xd8,0xac,0x51,0x73,0x79,0xfd,0x7e,0xd8,0xcd,0xf3,0x31,
+ 0x60,0xf6,0xcf,0x32,0x7e,0x66,0xfb,0x27,0x1f,0xa2,0xf1,0xd4,0x1f,0x40,0x6e,0x2d,
+ 0xe8,0x19,0x36,0x63,0xbe,0x53,0x55,0xa0,0x1d,0xd6,0xcf,0x36,0x46,0x41,0x66,0x29,
+ 0x44,0xa4,0x1b,0x21,0x1d,0x49,0x17,0xfa,0xcc,0xed,0x70,0xcd,0x18,0x9b,0xe7,0x38,
+ 0x5c,0xf9,0x2,0x8,0x2d,0x8f,0x57,0x29,0x1d,0x26,0xa0,0x4c,0x37,0x92,0xec,0x8a,
+ 0x6a,0xd7,0x37,0x24,0x19,0xaf,0x98,0x9,0xc7,0x53,0xf5,0xf4,0x6b,0xa8,0x38,0x38,
+ 0x99,0x25,0x6d,0xcb,0x5d,0x37,0x60,0xf3,0x9d,0x7f,0x34,0x6a,0xbe,0x28,0xbe,0x77,
+ 0xe,0x1f,0x89,0xbd,0xff,0x6b,0xdd,0x4e,0xaf,0xf9,0x82,0xd3,0xb1,0xf3,0xc5,0x67,
+ 0x8a,0xa2,0x2f,0x3d,0x65,0x62,0x45,0x98,0x63,0xf6,0x86,0x8,0xe8,0xf0,0xde,0x8b,
+ 0x1,0x7f,0x1b,0xd6,0x7d,0xab,0xc5,0x81,0xbf,0xd6,0x6,0xc3,0x94,0xd3,0x25,0x6f,
+ 0x94,0xf,0x80,0xec,0xaf,0xac,0x1e,0x94,0xc9,0x89,0xe8,0xc4,0x78,0x42,0xcc,0xe7,
+ 0xd3,0xf5,0x90,0xe2,0x55,0xc5,0x42,0x2e,0x2,0x7,0xd9,0x64,0xa5,0xa5,0x21,0x57,
+ 0xcf,0xc3,0xa0,0x9f,0x5f,0x94,0x28,0x13,0x9,0xae,0x46,0xf0,0xc4,0xc3,0x11,0xdd,
+ 0x98,0xf9,0x96,0xc5,0xe8,0x39,0xb9,0xf8,0x9e,0x40,0x4d,0xe0,0xb6,0x4a,0xa5,0xf4,
+ 0x63,0x60,0xa6,0x8f,0xf7,0x6e,0x8f,0x61,0xbe,0x12,0x4,0xe2,0x7b,0x15,0x12,0xee,
+ 0xd9,0xab,0xb3,0xbd,0x56,0xb2,0xd,0x76,0xa1,0x3f,0x18,0xba,0xc7,0x4c,0x7b,0xd9,
+ 0x28,0x93,0xf,0x80,0xfc,0x2d,0x9e,0xe7,0x7b,0xb6,0xc2,0x2c,0x99,0xb2,0x9f,0x66,
+ 0xc4,0x78,0xa0,0xca,0x35,0x1f,0x8c,0x91,0x25,0x6f,0x5a,0xea,0x37,0x73,0x16,0x46,
+ 0xdc,0xd3,0x71,0xac,0x69,0x3e,0xef,0x54,0xec,0x7c,0x39,0x2d,0xf6,0x8c,0x9a,0xcc,
+ 0xeb,0xf7,0xfd,0x4f,0x39,0x1b,0xc3,0xe7,0x59,0x37,0x8,0xd8,0xf1,0xc2,0x93,0x58,
+ 0x77,0x61,0x5e,0x7f,0x50,0x73,0x2a,0x1f,0x72,0x44,0xa4,0x55,0xa4,0x3e,0x92,0x8c,
+ 0xb9,0xa5,0x73,0xab,0xd5,0x6,0xc8,0x33,0xf2,0x65,0xb3,0x95,0x6b,0x80,0xfc,0x48,
+ 0x31,0x5b,0xa7,0xfe,0x52,0x62,0x9a,0x43,0x0,0xfc,0x2f,0x9d,0x94,0xeb,0xab,0xdc,
+ 0xb3,0x38,0xc3,0x53,0x46,0x23,0x41,0xe7,0x8e,0xaa,0xbf,0xbf,0xe,0xe7,0x5e,0x43,
+ 0x13,0x45,0x5b,0xee,0xbb,0x15,0x9b,0xe6,0x5d,0x6d,0x54,0xad,0xa8,0xbe,0x1f,0x7c,
+ 0xc1,0xef,0xb0,0xd7,0x65,0xd7,0x59,0xe6,0x69,0xf7,0x3b,0x4b,0xd1,0x38,0xfb,0x7,
+ 0x96,0xeb,0x17,0x63,0x45,0x8a,0xb5,0xf5,0x9b,0x2d,0x49,0x7b,0xad,0x51,0x4e,0x86,
+ 0xc7,0x87,0x39,0x31,0xc2,0xd1,0x75,0x9a,0xf2,0xd7,0xfd,0xc1,0xc8,0x77,0xf3,0xc1,
+ 0x7f,0xae,0x1,0x42,0x96,0x99,0x4,0xa,0x22,0xf2,0xf4,0x4b,0x3b,0x83,0x13,0x5b,
+ 0xab,0xb0,0x9b,0xea,0x18,0xe6,0xf4,0xab,0x7c,0x74,0x11,0x7a,0x1f,0x91,0x9c,0x1c,
+ 0xad,0xcb,0xfe,0x85,0xa6,0xd3,0x8f,0xc9,0x87,0xbc,0xb2,0xfa,0x8c,0x81,0x67,0xfd,
+ 0xa,0x43,0xaf,0xbb,0xc3,0x72,0x9b,0xa5,0xa4,0x0,0xcd,0xa4,0x93,0x17,0x6c,0x8e,
+ 0xe2,0x35,0x25,0xf8,0x83,0x8e,0x2,0x91,0x22,0xa5,0x5c,0xe1,0x6f,0x8,0x91,0xda,
+ 0x20,0xa7,0x94,0x4b,0x80,0x9c,0xa7,0x64,0x6f,0xa2,0xe,0x90,0x4a,0x9b,0x80,0x92,
+ 0x36,0x64,0x7e,0xa0,0xda,0x7d,0x35,0x38,0xc,0x4f,0xd8,0xf4,0xab,0x4b,0xbf,0xbe,
+ 0x44,0xb1,0x96,0xcd,0x68,0x3c,0xed,0xe8,0x84,0xb6,0xb9,0xd4,0xa8,0xff,0x8f,0xcf,
+ 0xc0,0xf0,0xdb,0xac,0xbb,0xcf,0x6f,0xff,0xfb,0x63,0x58,0x7f,0x59,0xf9,0x5,0x6d,
+ 0xf9,0x24,0xc4,0x71,0xea,0x86,0xc8,0x9e,0x8c,0x3d,0xf7,0xf,0x71,0xe2,0xf0,0x5e,
+ 0xdd,0x14,0x88,0xdb,0xb8,0x8c,0xc3,0x6a,0x9b,0xc2,0x94,0x75,0x38,0x67,0x94,0x2b,
+ 0x80,0xd0,0x81,0x9c,0x9c,0x5f,0xc8,0xbf,0x9c,0x88,0x46,0xf1,0xc1,0x74,0xbd,0x58,
+ 0x51,0xe5,0xde,0xc7,0xc1,0xf0,0x36,0x4f,0x9d,0x86,0x79,0x4f,0xd5,0x3e,0x33,0x8e,
+ 0xc5,0xa8,0x7,0xc9,0xd9,0x30,0x49,0xeb,0xaf,0x38,0x17,0xdb,0x9f,0xa6,0x6c,0x7,
+ 0xa5,0x47,0x7d,0xbe,0x3f,0x13,0xa3,0x1e,0xb0,0x7e,0xb,0xb5,0xf5,0x91,0xf9,0xd8,
+ 0x78,0xdd,0x25,0xa5,0xd7,0x71,0x13,0x1c,0xdf,0xb6,0x2d,0x86,0x7,0x15,0x9f,0x76,
+ 0xbd,0x3,0x3b,0x6d,0xc5,0x6b,0x1b,0xc2,0xaa,0x7b,0xb6,0x89,0x56,0x33,0x2f,0x92,
+ 0x2b,0x80,0x50,0xec,0x5b,0x75,0xef,0xf0,0xa6,0xe2,0x21,0x98,0x96,0xbb,0x7a,0x9f,
+ 0xfb,0x51,0xe,0xfc,0xd4,0xa8,0xb,0xbe,0xbf,0xff,0x1b,0xbd,0xe,0x3a,0x34,0x51,
+ 0x6c,0xdb,0x63,0xf7,0x63,0xc3,0x35,0xa5,0xeb,0x86,0x4e,0xe6,0x25,0x55,0x4f,0x50,
+ 0x7c,0xa,0x6b,0xb4,0xe5,0xde,0x9b,0xb1,0xf9,0x36,0xeb,0x67,0x18,0x6b,0x4f,0xcd,
+ 0x4f,0xad,0xf5,0x31,0x8e,0x1f,0xae,0x8b,0x60,0xab,0x62,0x86,0xb2,0x60,0x98,0xb,
+ 0x7,0x7a,0xba,0x4f,0x57,0x6,0x7e,0x66,0x4d,0x30,0x62,0xde,0xc,0x21,0x43,0xf6,
+ 0x73,0x1,0x10,0x52,0xa,0x52,0xb0,0x85,0x71,0xa,0x2f,0x64,0x47,0x43,0xb9,0xb8,
+ 0x75,0xa9,0xbe,0xca,0x7d,0x2,0x67,0x30,0xf4,0x9,0x19,0x38,0xe7,0x2,0xc,0xfd,
+ 0xfd,0x6d,0x89,0x76,0x42,0x81,0xcf,0xd1,0x78,0xf2,0x91,0x88,0x6d,0xdf,0x9a,0x61,
+ 0x97,0x8b,0xa7,0xb8,0x77,0xf2,0x1,0xa8,0x7e,0xd1,0xba,0x3,0xdd,0xa6,0x9b,0x7e,
+ 0x87,0x96,0xbf,0x58,0x3f,0xc3,0x14,0x8f,0x24,0x52,0x73,0xa2,0x8d,0x8c,0xf2,0xc3,
+ 0xde,0x12,0x6e,0x56,0x23,0x35,0x6a,0x8b,0x33,0xac,0x74,0x4b,0xae,0xc3,0x72,0xa5,
+ 0x40,0xcc,0x5,0x40,0xe8,0x70,0x40,0x79,0x0,0x89,0xc8,0x86,0xea,0x4,0xa3,0x81,
+ 0x8,0xf8,0x12,0x7,0x73,0xf5,0x30,0x9f,0xb2,0xb8,0x6b,0x94,0xf,0xbe,0xe7,0xdf,
+ 0x4,0x29,0xd7,0x88,0x9a,0x7f,0x75,0x1a,0x76,0x2e,0x4e,0x8b,0x3b,0xa3,0xc7,0x16,
+ 0xfc,0x7b,0xf7,0xd8,0x9,0x18,0xb3,0xd4,0xfa,0x16,0x7a,0xc3,0x95,0xe7,0x63,0xdb,
+ 0xdf,0xac,0x9f,0x61,0xa,0x2e,0x0,0x3,0x6,0xbe,0x8c,0x70,0xfc,0x70,0x7d,0x4,
+ 0xca,0xad,0x2f,0x16,0xe,0x77,0xa1,0xb6,0xab,0x9d,0x56,0xa2,0xd,0x7e,0x8f,0x3f,
+ 0x18,0xc9,0xc9,0x56,0x22,0xdb,0x0,0x21,0xbf,0xe,0x5a,0x3d,0x2a,0x95,0xbe,0x1f,
+ 0x9,0x20,0xad,0x7d,0x76,0xa0,0xda,0x35,0x7,0x9c,0xa5,0x3d,0x9f,0x50,0x5b,0x43,
+ 0xaf,0xbf,0x13,0x3,0xcf,0x4c,0xaa,0x46,0xb6,0x3f,0xf5,0x30,0xd6,0xff,0x86,0xee,
+ 0x0,0x4a,0x9b,0x9c,0x43,0x87,0x63,0xef,0xf,0x1a,0x2c,0x77,0x62,0xdd,0xaf,0xcf,
+ 0xc0,0x8e,0x45,0x4f,0x5b,0xae,0x5f,0xa,0x15,0x7f,0xdf,0x12,0xdd,0x93,0xa6,0xfa,
+ 0xf4,0xbe,0xe,0x5c,0x35,0xb0,0x9b,0x9,0xa,0x85,0x35,0x8d,0x38,0x18,0x26,0x4f,
+ 0x68,0x8,0x27,0xfd,0x1b,0xb2,0x48,0xd9,0x6,0x8,0x9d,0x18,0x6f,0x57,0xf8,0xa3,
+ 0x88,0x88,0x67,0x19,0xf1,0x1a,0xf0,0xb9,0xc9,0xf4,0x64,0x5a,0xba,0x72,0x15,0xd3,
+ 0xbe,0x8d,0xaa,0xa7,0x3a,0xfc,0xa4,0xbe,0x3e,0x64,0x3c,0x22,0x6b,0x83,0x46,0x4d,
+ 0x17,0xfd,0xf7,0xe4,0xd4,0x35,0xbe,0xae,0xc5,0x32,0x9f,0x4d,0x67,0xce,0x44,0xeb,
+ 0x52,0xeb,0x67,0x18,0xcb,0xf,0xce,0x63,0xc5,0xe5,0x21,0x8e,0x53,0x36,0x50,0xe6,
+ 0x6e,0x24,0x1c,0xaa,0x68,0x15,0xa1,0xf8,0x5a,0x5d,0x89,0x3,0x73,0x6b,0x83,0xe1,
+ 0xe4,0xd5,0x66,0x16,0x29,0xdb,0x0,0xa1,0x3,0x79,0xd2,0x28,0x2a,0x19,0xf0,0x8d,
+ 0x56,0x13,0x5d,0x32,0x6b,0x8c,0x58,0xf9,0xc8,0xb,0xe8,0xfd,0x9d,0xa3,0x12,0xed,
+ 0x6c,0xb8,0xea,0x2,0x6c,0x7b,0xfc,0x81,0x2c,0x8a,0xa0,0xb0,0x4d,0x4d,0xf8,0xaa,
+ 0x15,0xcc,0x99,0xca,0xa4,0xc2,0x98,0xaf,0xe0,0x49,0xdf,0x41,0xdb,0x7,0xd6,0xcf,
+ 0x30,0xc6,0x4f,0x28,0x8e,0x12,0x97,0x6c,0x8e,0xe2,0x65,0x45,0x2f,0x72,0x5e,0x7f,
+ 0x7,0x2e,0xec,0xdf,0x7d,0x15,0x89,0xdf,0x94,0xae,0x65,0xd1,0xf0,0x94,0x6c,0xbb,
+ 0xe9,0x66,0x13,0x20,0x74,0x86,0x50,0x47,0x8b,0xcc,0x92,0xd,0x35,0x77,0x81,0x2a,
+ 0xd7,0x52,0x23,0x7b,0xab,0xfe,0xb3,0xce,0xc2,0xf0,0x5b,0xee,0x4f,0x8c,0x94,0xdc,
+ 0xba,0xb,0xab,0x26,0xe,0x2e,0x8e,0x51,0xcb,0x12,0x17,0xe3,0x3e,0x59,0x7,0xc7,
+ 0x80,0x41,0x96,0x5a,0x5b,0xf3,0x83,0x3,0x10,0xaa,0xb3,0x7e,0x86,0xb1,0xf4,0xd0,
+ 0x2,0x54,0xd2,0x86,0xc,0xa2,0xd5,0x63,0xc9,0x8,0x17,0x52,0x2c,0x22,0x60,0x9c,
+ 0x5d,0x52,0xd3,0x18,0xba,0x33,0x9b,0x2c,0x66,0x13,0x20,0x64,0xc2,0x7e,0x85,0xc2,
+ 0x1c,0x6d,0xad,0xd2,0x6,0x9d,0xe,0xf8,0xdc,0x74,0xbb,0x65,0xa8,0x4,0x20,0x17,
+ 0xd4,0xc1,0x17,0x25,0x15,0xf0,0xc1,0x1f,0x1d,0x8e,0xb6,0x8f,0xfe,0x93,0xcd,0xfe,
+ 0x17,0xbc,0xad,0xb1,0xef,0xac,0x84,0xab,0xb2,0xda,0x12,0x1f,0x5f,0x4f,0x9f,0x80,
+ 0x48,0x93,0xf5,0x33,0x8c,0xa5,0x87,0x16,0xa8,0x12,0xd9,0x68,0x7d,0xac,0xb8,0xe7,
+ 0xde,0xbd,0x97,0x13,0xdf,0xaf,0x48,0x99,0x8c,0x78,0xb9,0x3f,0x18,0x26,0xe3,0xd8,
+ 0xac,0x51,0xb6,0x0,0x42,0xdc,0xd2,0x1,0x69,0x82,0x12,0x9d,0x64,0x1f,0xb2,0x0,
+ 0x31,0xd8,0x5e,0xd1,0xe6,0xf9,0xfb,0x46,0x3d,0xa1,0xc9,0x33,0xfc,0xf6,0x7,0xb1,
+ 0xe3,0xf9,0x27,0x4a,0x56,0x21,0x98,0xae,0x8f,0xa3,0x5f,0xf9,0x10,0xe4,0x1a,0x6c,
+ 0x85,0xbe,0x9c,0x3c,0x2,0xb1,0x6d,0xd6,0xcf,0x30,0x56,0x9e,0x59,0xa8,0x3a,0x94,
+ 0xaf,0xfd,0x56,0x25,0x12,0xca,0xf1,0xbd,0x25,0xdc,0x92,0xea,0xca,0x37,0xc9,0xdc,
+ 0xe9,0xd9,0xcc,0xb6,0x9b,0x2d,0x80,0x68,0x8d,0x12,0xc9,0x3e,0x46,0x5d,0x49,0x52,
+ 0xca,0x33,0x50,0xe5,0x39,0x1e,0x8c,0xd3,0x15,0xb0,0xed,0xc9,0xf7,0xec,0xeb,0x9,
+ 0xbf,0x79,0x2b,0xb4,0x72,0xef,0xde,0xe0,0xd1,0x8e,0x40,0x6c,0x56,0xda,0x28,0x95,
+ 0x3a,0x6b,0xa2,0x1c,0x47,0x37,0x27,0xcd,0x4f,0x7a,0x4b,0xc0,0xcb,0x23,0x5c,0x18,
+ 0xd6,0xcd,0x88,0x31,0xd1,0x9b,0x57,0xfd,0xc1,0xb0,0xe1,0xf,0xaf,0xd9,0x7e,0x67,
+ 0xb,0x20,0xa4,0xc9,0xa4,0x50,0x3e,0x44,0x86,0x87,0x73,0x11,0x6c,0xba,0x63,0x78,
+ 0xb4,0x46,0x97,0x66,0x7,0x8d,0xca,0xc9,0xbb,0x5b,0xb1,0xaa,0xd6,0xda,0xd9,0x25,
+ 0x93,0xe7,0x14,0x53,0x59,0xad,0x11,0xe3,0xef,0x7,0x39,0x31,0xbb,0x7b,0x80,0x87,
+ 0x4,0xbb,0x9c,0xc9,0xd3,0x6b,0x1b,0xa2,0x74,0x3b,0xda,0x63,0xca,0x6,0x40,0x68,
+ 0x94,0x56,0x1,0xa0,0x77,0xda,0x36,0x25,0xaf,0x9b,0x74,0x28,0x50,0x55,0x31,0x12,
+ 0x2c,0x5a,0x6f,0x36,0x7c,0x4f,0x8f,0x7b,0x58,0xe4,0xd,0x90,0x3f,0xb,0xf9,0xb5,
+ 0x64,0x4a,0xe4,0x14,0xf6,0xd5,0x81,0xd6,0xce,0x2e,0x99,0x3e,0xab,0x58,0xca,0xbf,
+ 0xd0,0x2a,0xe3,0xb7,0x8a,0x29,0xbc,0x36,0xbd,0x5b,0x57,0xfe,0x18,0x70,0x73,0x4d,
+ 0x30,0x7c,0x65,0x36,0xf8,0xce,0x6,0x40,0xc8,0x1,0xea,0x71,0x85,0x19,0xda,0x5a,
+ 0xa5,0x35,0x41,0xae,0xf3,0xb9,0xce,0x61,0x60,0xc9,0x6b,0x29,0x41,0x18,0x76,0xd3,
+ 0x9f,0x30,0xe0,0xb4,0xcc,0x2d,0x72,0xc3,0x5f,0xaf,0xc4,0xea,0x23,0xac,0x9d,0x5d,
+ 0x4a,0x55,0xec,0x14,0x1e,0xe8,0xa8,0x75,0x11,0x6c,0x51,0x32,0xea,0xea,0x6b,0xd6,
+ 0xf1,0xb9,0x3f,0x18,0xce,0x8a,0x70,0xb2,0x1,0x10,0x2,0x87,0xea,0x25,0x48,0x37,
+ 0x8,0xcb,0xd3,0xd,0x40,0x9d,0xcf,0xbd,0x98,0x99,0xb8,0x2,0x2e,0xd5,0x41,0xcc,
+ 0x94,0x6f,0xa,0x8d,0x3a,0xe8,0x9c,0xcc,0x2d,0x72,0x29,0x68,0x43,0xc3,0xf1,0xd6,
+ 0xce,0x2e,0x99,0xf2,0x58,0x4c,0xe5,0xb5,0x9a,0xf5,0xf3,0xfb,0x3b,0x40,0xaf,0x94,
+ 0x24,0xb3,0xa3,0xfc,0x4d,0xa1,0x1e,0x6b,0x51,0x7b,0xa,0x10,0xed,0xf6,0x8a,0x1c,
+ 0x32,0xa6,0xa4,0x13,0x66,0xfd,0x68,0xb7,0x9f,0xcb,0x89,0xdb,0x2e,0x41,0x8a,0x4,
+ 0xac,0x7a,0x15,0x96,0xa3,0x37,0xa1,0x99,0x49,0xf1,0x66,0x9b,0x8c,0x73,0x36,0x25,
+ 0x2f,0x26,0xc8,0xba,0x97,0xac,0x7c,0x53,0x11,0xe3,0x7c,0x7e,0x4d,0x63,0xe4,0x7c,
+ 0x33,0x6d,0xa6,0x2b,0xd3,0x53,0x80,0x68,0xb7,0x57,0x64,0x62,0x92,0x36,0x7b,0x69,
+ 0xa0,0xda,0x73,0x39,0x38,0xbf,0xa5,0xa7,0x4c,0x97,0x53,0x7d,0xab,0x5e,0x85,0xe5,
+ 0xea,0x4d,0x68,0x34,0xb6,0xe4,0xb7,0xfe,0xed,0xe6,0x30,0xd4,0x1c,0xa1,0x4b,0x47,
+ 0xb9,0x52,0xb8,0xe4,0x52,0x6c,0x7,0x4,0x5b,0x62,0x61,0xff,0x21,0x4d,0x68,0x33,
+ 0x6a,0x33,0x97,0x0,0xd1,0x6e,0xaf,0xc8,0x49,0x23,0xad,0xdd,0x43,0xc0,0xe7,0x59,
+ 0x6,0xf0,0x6f,0xf5,0x84,0xe1,0x72,0xab,0x6b,0xd5,0xab,0xb0,0x5c,0xbd,0x9,0xcd,
+ 0x8c,0x2f,0xc5,0xd0,0x7a,0x5b,0x89,0xa1,0x75,0xc3,0x20,0x27,0x4e,0xd2,0xb9,0xcd,
+ 0x8a,0x1,0xb3,0x26,0x5,0xc3,0x86,0xca,0xe8,0x5c,0x1,0xa4,0xaf,0xa2,0x14,0xa4,
+ 0x6d,0x16,0x45,0x66,0x27,0x4b,0x5e,0x5d,0xaa,0xaf,0x74,0x1d,0xc4,0x25,0xf6,0x5f,
+ 0x33,0x2,0xb0,0x53,0x19,0xab,0x5e,0x85,0xe5,0xec,0x4d,0x68,0x34,0xfe,0x7f,0xda,
+ 0x1e,0x3,0xbd,0x88,0xd2,0x29,0xd,0x19,0xb0,0xa0,0x26,0x18,0x56,0xd5,0xf,0x46,
+ 0xcd,0xa6,0xde,0xaa,0x59,0xaa,0x95,0xac,0x44,0x1,0xa8,0x55,0x53,0x76,0xb2,0xb9,
+ 0x4e,0x1b,0x2c,0xb6,0xae,0xda,0x73,0x19,0xe3,0x3c,0xe7,0x4e,0xf6,0x3d,0xe8,0x4f,
+ 0x41,0xaa,0x5a,0xf5,0x2a,0x2c,0x67,0x6f,0x42,0xa3,0x81,0xd0,0xe6,0x3c,0x24,0x65,
+ 0xe1,0x9b,0x9d,0x73,0xb0,0x6b,0xab,0x37,0xfb,0x83,0xe1,0x51,0x46,0xed,0xe5,0x6a,
+ 0x5,0xf9,0xd,0x80,0xb9,0x4a,0xe3,0x64,0x66,0xac,0x7e,0x4e,0xf9,0xbc,0x80,0xcf,
+ 0xfd,0x42,0x3c,0xe4,0xcf,0xcc,0x9e,0x30,0x5b,0x8e,0x75,0xad,0x7a,0x15,0x96,0xbb,
+ 0x37,0xa1,0xd1,0x58,0x1f,0xd0,0xd4,0x71,0xe,0x79,0x76,0xb8,0xb,0xfb,0xa4,0x74,
+ 0xa4,0x2,0xb8,0x2c,0x1f,0x51,0xdb,0x14,0x35,0x95,0x10,0x36,0xd5,0x33,0x7b,0x72,
+ 0x48,0xa7,0xc0,0xd3,0x94,0xed,0x89,0xe8,0x68,0x0,0x4b,0xd2,0x75,0x2a,0xe0,0x73,
+ 0x53,0xb6,0xa0,0xf2,0x32,0xc5,0x35,0x1a,0x45,0x13,0xdf,0x5b,0xf5,0x2a,0x2c,0x77,
+ 0x6f,0x42,0x23,0xd1,0x51,0x42,0x50,0xb2,0xf2,0x25,0xd2,0x89,0xe5,0x9b,0x6c,0xa2,
+ 0x87,0x91,0xe1,0x7b,0x2,0x10,0x4a,0x99,0xa6,0xaa,0x72,0x69,0x19,0x6b,0xd6,0xeb,
+ 0x54,0x5d,0xa5,0xf3,0x70,0x26,0x49,0x4b,0x8d,0x3a,0x6d,0xc7,0xef,0xad,0x7a,0x15,
+ 0xda,0xc1,0x9b,0x30,0xdd,0x7c,0x78,0x64,0x47,0xc,0xf3,0x14,0xe3,0xc5,0x83,0xbc,
+ 0x12,0x1e,0xeb,0x9c,0x7b,0x5d,0x5b,0xf5,0x9f,0xfe,0x60,0xd8,0x72,0x74,0x3d,0xab,
+ 0x0,0x19,0xd,0x40,0x8d,0xba,0x4c,0xf9,0xc1,0x92,0xe1,0xd,0x75,0xa8,0xce,0xe7,
+ 0xbe,0x8e,0x1,0xd7,0xda,0x11,0x0,0x46,0x7d,0xb6,0xea,0x55,0x68,0x7,0x6f,0xc2,
+ 0x74,0xb2,0xa3,0xe4,0x3b,0x27,0xaf,0x4f,0x7a,0x1a,0xe,0x71,0x30,0xbc,0xa5,0x73,
+ 0xe,0xe1,0x40,0x6b,0x6d,0x30,0x6c,0x2a,0x2b,0x59,0x36,0xb7,0x58,0x64,0x3c,0xa4,
+ 0x86,0x7,0xa5,0xb4,0x68,0x94,0x8,0x47,0x97,0xcc,0x38,0x46,0x19,0x4d,0xa4,0x72,
+ 0xfe,0xde,0x8a,0x57,0xa1,0x5d,0xbc,0x9,0xf5,0xc6,0x9d,0xf4,0x20,0x74,0xe,0x51,
+ 0xe9,0xc3,0x4a,0x77,0xa7,0x1c,0x87,0xda,0x7a,0x3d,0x39,0x87,0x58,0x5d,0x41,0x28,
+ 0x6a,0x89,0xea,0xff,0x4b,0x71,0x78,0xd2,0xe6,0x4,0xb,0xf8,0xdc,0x4,0x75,0x6b,
+ 0x7e,0xa5,0xe5,0x8c,0xc,0xa5,0x6f,0x56,0xbc,0xa,0xed,0xe2,0x4d,0x98,0x6e,0xf8,
+ 0xf,0x5b,0x1b,0xc1,0x46,0xc5,0x2e,0x2b,0xed,0x41,0x1d,0xb8,0xbe,0x36,0x18,0xb6,
+ 0x14,0x40,0xcc,0x2a,0x40,0x28,0xa4,0x3a,0x65,0x8c,0x22,0xa2,0xec,0x2f,0xf,0xe9,
+ 0x6e,0xaf,0xc4,0xf9,0xc3,0x10,0xe2,0x56,0xbc,0xa,0xed,0xe4,0x4d,0xa8,0x27,0xc0,
+ 0x33,0x37,0x46,0xf1,0x9e,0x72,0x50,0xbf,0x75,0xb0,0x13,0xc7,0x91,0xa3,0x48,0x2a,
+ 0xe2,0xfc,0xd,0x7f,0x63,0xe4,0x8,0xc3,0x81,0x48,0x51,0xc0,0x2a,0x40,0xb4,0x89,
+ 0x38,0x29,0x48,0xc3,0x5b,0xba,0x0,0xa9,0x72,0x9d,0xc9,0x18,0x2b,0xcd,0xd8,0xa0,
+ 0x56,0x24,0x6a,0xa1,0x8e,0x15,0xaf,0x42,0x3b,0x79,0x13,0xea,0x89,0xf4,0xf,0x2d,
+ 0x51,0x3c,0xa1,0xd8,0x9c,0xfc,0xaa,0xbf,0x3,0x17,0xe8,0x19,0x2e,0x2,0xeb,0xfd,
+ 0xc1,0xf0,0x8,0xb,0x43,0x3,0xab,0x0,0x9,0x0,0xa8,0x51,0x1e,0x48,0xf,0xd6,
+ 0xcd,0x58,0x23,0xe,0xe8,0xc6,0xc3,0x62,0xc5,0xab,0xd0,0x4e,0xde,0x84,0x7a,0x12,
+ 0x5c,0xb0,0x33,0x86,0x1b,0xb7,0x26,0x35,0xea,0x47,0x57,0x48,0xb8,0x23,0x65,0xc2,
+ 0x9d,0x64,0xed,0x36,0x29,0x3c,0x70,0xff,0x35,0xe9,0x83,0xa7,0xa7,0x7a,0x8e,0x55,
+ 0x80,0xec,0x22,0xcf,0x47,0x0,0x3b,0x60,0x10,0x6c,0xba,0xde,0xe7,0x7e,0x84,0x3,
+ 0xe5,0x93,0xe5,0xc5,0x78,0xbe,0x67,0x5c,0x22,0x53,0xaf,0x42,0x3b,0x7a,0x13,0xa6,
+ 0x12,0xea,0x3b,0xed,0x32,0xe6,0x6c,0x4c,0x5a,0xf6,0x52,0xc4,0x45,0xf2,0xf,0xd1,
+ 0x23,0x59,0xe2,0xd3,0x26,0xae,0x89,0xbc,0x97,0xe9,0xe0,0x58,0x1,0x8,0xc5,0xde,
+ 0x55,0x3,0xe2,0x7e,0x48,0x56,0xc7,0xe9,0x1e,0x2a,0x6e,0xb0,0x8c,0x87,0x24,0x53,
+ 0xaf,0x42,0x3b,0x7a,0x13,0xa6,0x92,0xe2,0xba,0x28,0xc7,0x11,0xcd,0xc9,0xab,0x5e,
+ 0x2f,0x3,0x96,0x57,0xb9,0x75,0x85,0xcd,0x39,0x3f,0xab,0xb6,0x31,0x92,0x36,0xd2,
+ 0x4e,0xb6,0x56,0x90,0x49,0x71,0xd,0xfa,0xe7,0x4a,0x63,0x86,0x29,0xd5,0x2,0x3e,
+ 0x37,0xe9,0x4b,0x48,0x6f,0x22,0x48,0x47,0x2,0x99,0x7a,0x15,0xda,0xd1,0x9b,0x50,
+ 0x6f,0xf2,0x4c,0xa,0x86,0x91,0xdc,0x64,0x1,0x9f,0x55,0xb9,0xe1,0xd2,0xf9,0xc9,
+ 0x67,0xc0,0xdc,0x1a,0xb,0x91,0x17,0xad,0xac,0x20,0x5a,0x23,0xc5,0xeb,0xe3,0x8c,
+ 0xa5,0xbd,0x3e,0xb,0xf8,0xdc,0xc9,0x84,0x73,0x82,0x74,0x25,0x90,0xa9,0x57,0xa1,
+ 0x5d,0xbd,0x9,0x53,0x9,0x70,0x5a,0x53,0x78,0x4f,0x8a,0x84,0x8f,0x2a,0xdd,0x89,
+ 0x88,0x27,0x29,0x89,0xe1,0x5,0x7f,0x43,0xf8,0x87,0x99,0x4e,0x43,0x2b,0x0,0xa1,
+ 0x88,0x89,0x8b,0x95,0x7,0x91,0xc1,0xa2,0xae,0x3,0x54,0xdd,0x68,0xef,0x68,0x26,
+ 0xcb,0xd6,0xf3,0x1c,0x67,0xda,0x9b,0x12,0x2d,0x9f,0xa9,0x57,0xa1,0x5d,0xbd,0x9,
+ 0x53,0xd,0xef,0xf7,0x9a,0x23,0x8,0x46,0x93,0xbf,0xc1,0xef,0x56,0xba,0x31,0x48,
+ 0xf,0x20,0x40,0xc0,0x1f,0xc,0xd7,0x66,0x3a,0x45,0xac,0x0,0x84,0xc,0x14,0xc9,
+ 0x50,0x91,0xe8,0xd7,0x71,0x3,0xc4,0x7b,0xf5,0x1e,0x2a,0x6c,0xb0,0xcc,0xd,0x47,
+ 0xa6,0x5e,0x85,0x76,0xf5,0x26,0x4c,0x25,0xcd,0x93,0xd6,0x47,0xf0,0x79,0x38,0x9,
+ 0x90,0x37,0x46,0xb9,0x30,0x3c,0x75,0xac,0xac,0xc4,0xf7,0xfe,0x60,0x38,0xe3,0xf9,
+ 0x9e,0x71,0x5,0x0,0x3f,0x1,0xb0,0x40,0x61,0x36,0x6d,0x6a,0xb5,0x15,0x55,0xee,
+ 0x13,0x24,0x13,0x89,0x71,0xcc,0x4d,0xa3,0xf2,0x2d,0x95,0xa9,0x57,0xa1,0x9d,0xbd,
+ 0x9,0xbb,0xce,0x82,0xb3,0x37,0x46,0xf1,0xae,0xa2,0x2c,0x7c,0x75,0xa4,0xb,0xbe,
+ 0x54,0x41,0x7b,0x95,0x4a,0x1e,0x29,0xdc,0x6b,0xcc,0x9a,0x44,0xb6,0x65,0xd3,0x64,
+ 0x5,0x20,0x4,0xa,0x35,0xbc,0x3a,0x81,0x85,0xf2,0xa0,0xa7,0xa4,0x3a,0xa1,0x24,
+ 0x34,0x35,0x10,0x99,0x7a,0x15,0xda,0xd9,0x9b,0xb0,0xab,0x40,0x2f,0xdc,0x1c,0xc5,
+ 0x3f,0x95,0xc8,0xef,0x8b,0x47,0xb8,0x30,0x4e,0xef,0x94,0x6e,0x51,0x17,0x62,0x5,
+ 0x20,0xb4,0xad,0xba,0x5b,0x61,0xf4,0x44,0x0,0xcf,0xeb,0xcd,0x82,0x15,0x3e,0xcf,
+ 0x45,0x12,0x78,0x56,0xa3,0x6d,0x9b,0x9a,0x71,0x25,0x56,0x28,0x53,0xaf,0x42,0x3b,
+ 0x7b,0x13,0x76,0x1d,0xda,0x6b,0x5a,0xa2,0xf8,0xbb,0xa2,0x4d,0x7f,0x6e,0xb8,0xb,
+ 0x93,0x74,0x1c,0xa7,0xa8,0x5e,0x4c,0x72,0x8d,0x98,0xb4,0xa6,0x55,0x57,0xa9,0x9d,
+ 0x6a,0xda,0x58,0x1,0x88,0xd6,0x93,0x30,0xad,0xa3,0x94,0xd0,0xa2,0x9b,0x43,0x6a,
+ 0xa6,0x5e,0x85,0x76,0xf7,0x26,0xd4,0x4a,0x55,0x9b,0xc7,0xf0,0xc9,0x61,0x2e,0xec,
+ 0x9f,0x22,0xd1,0xa7,0x5a,0x9e,0x4b,0xd2,0x98,0xda,0x35,0xed,0xe4,0xc7,0x64,0x9a,
+ 0xac,0x0,0x84,0xae,0x75,0x55,0xdf,0xe,0x32,0x0,0xd3,0x75,0x67,0xc,0xf8,0x5c,
+ 0x77,0x2,0xec,0x22,0xd3,0xdc,0xd8,0xb4,0x60,0xa6,0x5e,0x85,0x76,0xf7,0x26,0xd4,
+ 0x4e,0x93,0xbb,0xb6,0xc5,0x70,0xbf,0x92,0x2e,0xfa,0xf1,0x61,0x2e,0x1c,0x90,0x6,
+ 0x20,0x4c,0x42,0x6d,0xcd,0x9a,0x30,0x99,0x49,0x99,0x26,0x2b,0x0,0xf9,0x2d,0x80,
+ 0x9b,0x95,0x27,0xd0,0xbd,0x32,0xf9,0x9a,0xa7,0x24,0x61,0x66,0x62,0x6e,0x1c,0x32,
+ 0xf5,0x2a,0xb4,0xbb,0x37,0xa1,0x56,0xaa,0xd7,0xb7,0x44,0xf1,0xa4,0xb2,0xc5,0x7a,
+ 0x7e,0xb8,0xb,0x13,0xd3,0x6e,0xb1,0xf8,0xfe,0x93,0xd6,0x44,0xd2,0x46,0xfe,0xec,
+ 0x3a,0x62,0x56,0x0,0x42,0x2b,0x82,0x7a,0xae,0x48,0x9b,0x28,0x27,0x50,0xed,0x5e,
+ 0x8,0x6e,0x9c,0xe5,0xd6,0xdc,0x34,0x2a,0xdf,0x52,0x99,0x7a,0x15,0xda,0xdd,0x9b,
+ 0x50,0x3b,0x13,0xb4,0xe9,0xd9,0xfe,0x39,0xd2,0x85,0xea,0x34,0xb7,0x58,0x56,0xec,
+ 0xb1,0xac,0x0,0x84,0xd2,0xcb,0xde,0xa7,0x30,0x79,0x31,0x80,0xbb,0xf4,0xa6,0xae,
+ 0xb0,0xc3,0x32,0xf,0xea,0x4c,0xbc,0xa,0xed,0xee,0x4d,0xa8,0x95,0xaa,0xf6,0x9a,
+ 0x97,0xdc,0x6e,0xc9,0xfd,0x56,0x8f,0xac,0x78,0x16,0x5a,0x1,0x8,0xad,0x1a,0xf,
+ 0x2b,0x4c,0xa4,0x35,0x35,0x11,0x2b,0x88,0x79,0x80,0x64,0xe2,0x55,0x28,0xbc,0x9,
+ 0x3b,0xe4,0xfa,0xa3,0xf5,0x11,0xac,0x50,0x14,0x85,0x69,0x4d,0x4d,0x28,0xa7,0x8a,
+ 0x5,0x8b,0x5e,0x2b,0x0,0x99,0xad,0xd1,0x7d,0xd0,0xea,0x41,0xab,0x88,0x38,0x83,
+ 0x98,0xc7,0x42,0xca,0x92,0x99,0x78,0x15,0xa,0x6f,0xc2,0xe,0x11,0x7e,0xb7,0x39,
+ 0x82,0xb5,0x8a,0xa9,0x49,0xfc,0xd6,0x34,0xad,0x83,0x53,0x4c,0xca,0xcf,0x19,0x44,
+ 0x9b,0x6e,0x2d,0x6d,0x2e,0x74,0x71,0x8b,0x65,0x1e,0x35,0x99,0x78,0x15,0xa,0x6f,
+ 0xc2,0xe,0xb9,0xaa,0x1,0xe4,0x8c,0xcc,0xdd,0xa9,0x46,0xbe,0x6e,0xb1,0xb4,0xc6,
+ 0x8a,0x74,0x83,0xa5,0x6b,0x21,0x29,0xf4,0x20,0xe6,0x1,0x92,0x89,0x57,0xa1,0xf0,
+ 0x26,0x4c,0xca,0x95,0x16,0x8e,0x7d,0x1a,0x93,0x91,0x4d,0x6,0x3b,0x18,0xde,0xd1,
+ 0xf,0x41,0x9a,0x28,0x93,0x2f,0x3d,0xc8,0x77,0x1,0x50,0xa8,0x1f,0x22,0xd2,0x81,
+ 0xe8,0x3a,0xc3,0xb,0x4d,0xba,0x79,0x80,0x98,0xf5,0x2a,0x14,0xde,0x84,0x1d,0x32,
+ 0xa5,0x4c,0x53,0xd3,0xd7,0x26,0x1d,0xa6,0x28,0x7f,0xfa,0x6b,0x23,0xf5,0x3d,0xa,
+ 0xa9,0x4c,0xbe,0x34,0xe9,0x94,0xe2,0x59,0xcd,0x5e,0x4f,0x6a,0x7b,0x5d,0x67,0x78,
+ 0x61,0x8b,0x65,0x1e,0x20,0x66,0xbd,0xa,0x85,0x37,0x61,0x87,0x4c,0xbf,0x8a,0x70,
+ 0x1c,0xb3,0x2e,0x9,0x90,0x1a,0x17,0xc3,0xa2,0x11,0xe9,0x1,0x62,0xc5,0x2f,0xdd,
+ 0xca,0x21,0x9d,0xfc,0x1a,0x43,0x9a,0xa1,0x1f,0x8,0xa4,0x76,0x86,0x17,0xd6,0xbc,
+ 0xe6,0x1,0x62,0xd6,0xab,0x50,0x78,0x13,0x76,0xc8,0xf4,0xe3,0x10,0xc7,0xec,0xd,
+ 0x49,0x80,0x90,0x89,0x9,0x99,0x9a,0xa4,0xa3,0x7c,0x59,0xf3,0x12,0xf,0x5f,0x3,
+ 0x18,0xa3,0x30,0x33,0xd,0x40,0x4a,0x67,0x78,0xe1,0xf,0x62,0x1e,0x20,0x66,0xbd,
+ 0xa,0x85,0x37,0x61,0x87,0x4c,0x9f,0xd9,0x25,0x83,0x72,0x16,0x12,0x1d,0x53,0x21,
+ 0xe1,0xf6,0x34,0x51,0x4d,0xa8,0x4c,0xbe,0xfc,0x41,0xe8,0x59,0x94,0x1c,0x51,0x4d,
+ 0xd6,0xae,0xab,0x4d,0x17,0x1e,0x85,0xe6,0x1,0x62,0xd6,0xab,0x50,0x78,0x13,0x76,
+ 0xc8,0x54,0x9b,0xd0,0xf3,0xf2,0x1,0xe,0xcc,0xe9,0xa7,0x93,0xd0,0x33,0x59,0x25,
+ 0x6f,0x1e,0x85,0xf4,0x30,0x32,0x77,0x27,0xb3,0x77,0x22,0xca,0xb,0xa2,0x86,0x21,
+ 0xed,0x36,0x23,0x84,0x4f,0xba,0x39,0x90,0x98,0xf5,0x2a,0x14,0xde,0x84,0x1d,0xf2,
+ 0x3c,0x71,0x7d,0x4,0x5f,0x28,0x4a,0xc2,0x47,0x86,0x3a,0x31,0xcd,0xab,0xef,0x6f,
+ 0x8b,0x3c,0xfa,0xa4,0x13,0x87,0xbf,0x8c,0x7,0xd5,0x9e,0xaf,0xb0,0x9a,0xf6,0xaa,
+ 0x57,0x44,0x35,0x31,0x7,0x10,0xb3,0x5e,0x85,0xc2,0x9b,0xb0,0x43,0x9e,0xfe,0x60,
+ 0x47,0xf0,0x6a,0xba,0xe2,0xa5,0xab,0x5e,0x3d,0xca,0x67,0x54,0x13,0xe2,0xe1,0x48,
+ 0x0,0xaf,0x29,0xcc,0x90,0xf9,0xb0,0xae,0x33,0xbc,0xb0,0xc7,0x32,0x7,0x10,0xb3,
+ 0x5e,0x85,0xc2,0x9b,0x30,0x29,0x4f,0x5a,0x39,0x68,0x5,0x21,0xaa,0x74,0x32,0xfc,
+ 0xcb,0xe0,0x8a,0x37,0x9f,0x71,0xb1,0x88,0xa7,0x2a,0x0,0x41,0xcd,0xd0,0xeb,0x42,
+ 0x57,0x98,0xbc,0x9b,0x3,0x88,0x59,0xaf,0x42,0xe1,0x4d,0x98,0x94,0xa7,0xf6,0x80,
+ 0x3e,0xa3,0x42,0xc2,0xbd,0x6,0x7,0x74,0x2b,0x76,0x58,0xf4,0x1c,0x2b,0xd7,0xbc,
+ 0xea,0x88,0x6b,0x53,0xaa,0xe9,0xdf,0x64,0x89,0xe4,0x39,0xa6,0x10,0x62,0xd6,0xab,
+ 0x50,0x78,0x13,0x26,0xc5,0xa9,0x3d,0xa0,0x53,0xd0,0x6a,0xa,0x5e,0x9d,0x8e,0xac,
+ 0xe8,0x40,0x7a,0xa,0x10,0x6d,0xa,0x4,0x5d,0xb3,0x77,0xa1,0x2c,0x34,0x85,0xf,
+ 0x98,0xf5,0x2a,0x14,0xde,0x84,0x49,0x79,0x6a,0xf,0xe8,0xf7,0xec,0xe5,0xc4,0xf7,
+ 0x2a,0xd2,0x1c,0xd0,0xb,0x10,0xdd,0x9d,0x78,0xa4,0xb4,0xcf,0x4f,0x2a,0xc3,0x4f,
+ 0xd9,0xa6,0x4e,0x4d,0x35,0x15,0x84,0x2e,0xc4,0x1c,0x40,0xcc,0x7a,0x15,0xa,0x6f,
+ 0xc2,0xa4,0x3c,0xb5,0x7,0xf4,0x25,0x23,0x5c,0x18,0x93,0x26,0x9a,0x9,0xa,0x90,
+ 0x1f,0x84,0x78,0x24,0x13,0x13,0x35,0x71,0x27,0x39,0xc2,0xab,0x8a,0xc3,0x6e,0x33,
+ 0xa2,0xae,0xca,0x1d,0x61,0x4c,0x64,0x98,0x4a,0x7,0x15,0xb3,0x5e,0x85,0xc2,0x9b,
+ 0xb0,0xf3,0x1,0x7d,0xa8,0x83,0x61,0x99,0x81,0x91,0x22,0x38,0xae,0xf6,0x37,0x86,
+ 0x6f,0x34,0xf7,0x53,0xd5,0xb9,0x54,0x4f,0xce,0x20,0xd4,0x12,0x25,0xce,0x39,0x54,
+ 0x69,0x92,0xf2,0x85,0xac,0x4c,0xc5,0x44,0xa0,0xca,0xbd,0x4,0xc,0x96,0x33,0x8d,
+ 0x5a,0xe9,0x58,0x29,0xd6,0x19,0xf7,0x71,0x13,0x1c,0x83,0x87,0xa4,0x65,0x7d,0xf5,
+ 0x91,0x53,0x10,0x5e,0x55,0x57,0x8a,0xdd,0xcb,0x1a,0xcf,0xf,0xec,0x88,0xe1,0xe,
+ 0x25,0xc3,0xed,0x61,0xbd,0x24,0x3c,0x30,0x24,0x7d,0x76,0x3f,0xce,0xe4,0x43,0x6a,
+ 0x1b,0xa2,0xff,0xb1,0xc2,0x40,0x4f,0x1,0xa2,0x8d,0x70,0xa2,0x1b,0x44,0xae,0xae,
+ 0xca,0x73,0x29,0x63,0x9c,0x72,0x19,0xa,0x4a,0x23,0x81,0xe1,0xb7,0xdc,0x8f,0xfe,
+ 0xb3,0xc8,0x30,0x21,0x35,0x85,0x56,0xae,0xc0,0x9a,0x19,0xfb,0xdb,0x5e,0x86,0xa7,
+ 0x6c,0x88,0x60,0x79,0x28,0x19,0x6e,0xf4,0xf7,0x83,0x9c,0x98,0xdd,0x27,0xed,0xf9,
+ 0x63,0xa7,0x3f,0x18,0xee,0x67,0x55,0x68,0x3d,0x5,0x88,0x36,0xd2,0xfb,0x3d,0xf1,
+ 0xbc,0x21,0x17,0xa6,0x3c,0x87,0x54,0x3b,0xa7,0x31,0x2e,0xbd,0x6b,0x95,0x49,0xbb,
+ 0xd4,0xab,0x38,0xf8,0x30,0x54,0x3d,0xad,0xaa,0x97,0xba,0xf7,0x7a,0xd3,0xcd,0x57,
+ 0xa2,0xe5,0xfe,0xdb,0xed,0x22,0x8e,0x94,0xfd,0xa4,0xa4,0x9d,0x94,0xbc,0x93,0x88,
+ 0x22,0xfc,0xbc,0x32,0xc2,0x85,0x11,0x69,0x2,0x35,0x30,0x8e,0x85,0x35,0x8d,0x61,
+ 0x72,0xf2,0xb3,0x44,0x3d,0x5,0x8,0x99,0x4f,0xd2,0xf9,0x63,0x64,0x3c,0xb,0xd6,
+ 0xfb,0x0,0xa6,0xea,0x71,0x11,0xa8,0x72,0x6d,0x4,0x63,0xe9,0xf7,0xf,0x96,0xba,
+ 0x50,0x5e,0x95,0xdc,0xe3,0x6b,0x31,0xf2,0xbe,0x27,0xe0,0x99,0x30,0xb1,0x53,0xc7,
+ 0x9a,0x7f,0x39,0x1b,0x3b,0x5f,0x7a,0xae,0xbc,0x3a,0x6b,0xa1,0x37,0xb,0x5b,0x65,
+ 0xfc,0x6e,0x4b,0xd2,0x40,0xf1,0xfb,0x15,0x12,0xee,0x36,0xd0,0x7f,0x30,0xce,0x2e,
+ 0xa9,0x69,0xc,0x59,0x8e,0xee,0xd9,0x53,0x80,0x10,0x9f,0xda,0xeb,0x5e,0x5a,0x51,
+ 0x96,0xa6,0xea,0x77,0xc0,0xe7,0x7e,0x26,0xae,0x0,0xfd,0xb1,0x5,0x99,0xd8,0xae,
+ 0xa,0x73,0x7b,0xd0,0xe7,0x7,0x33,0xe1,0xaa,0xac,0x46,0xac,0x65,0xb,0xda,0x97,
+ 0xbf,0x8f,0x50,0x40,0xcd,0x59,0x64,0x3b,0x71,0x74,0xea,0xf0,0xaf,0x37,0x47,0xf1,
+ 0xaa,0x12,0x8b,0x77,0xee,0x60,0x27,0x4e,0xd0,0x4d,0x8,0x92,0xac,0xd6,0x93,0xf3,
+ 0x7,0xd5,0xcf,0x6,0x40,0x28,0x3e,0xef,0xb3,0x4a,0x2f,0xc8,0x88,0x31,0x65,0x24,
+ 0xc5,0xfa,0x2a,0xcf,0xc5,0x9c,0xf1,0x3b,0xec,0x3d,0xbc,0xa2,0xf7,0x3d,0x91,0x0,
+ 0xc5,0x87,0x9b,0xb6,0x36,0x8c,0x8,0x7,0x6,0x48,0xc0,0x2b,0x23,0xdd,0x89,0xf7,
+ 0x34,0xd4,0xe4,0xf,0x86,0xc9,0xea,0xc3,0x32,0x65,0x3,0x20,0x74,0x85,0x40,0xd7,
+ 0x2a,0xe3,0x94,0xed,0x96,0xbf,0x8b,0x43,0x55,0x82,0xb9,0xfa,0x4a,0xd7,0x41,0x5c,
+ 0x62,0xff,0xb5,0xcc,0xa9,0xa8,0x68,0x7b,0x9,0x50,0x14,0x77,0x8a,0xe6,0x4e,0x44,
+ 0x2b,0x7,0xad,0x20,0xe9,0x88,0x1,0xb,0x6a,0x82,0xe1,0x33,0x7a,0x22,0xb8,0x6c,
+ 0x0,0x84,0x9e,0x4f,0x37,0x54,0x97,0x2a,0x8c,0xcc,0x22,0x53,0x99,0xd4,0xdb,0x2c,
+ 0xcf,0x32,0x80,0x7f,0xab,0x27,0xc,0x8b,0xba,0xf6,0x95,0x80,0xd6,0xbc,0x84,0xce,
+ 0x1e,0x74,0x6,0x49,0x47,0x31,0x60,0xd6,0xa4,0x60,0x38,0xe5,0x5c,0x34,0x2b,0xc5,
+ 0x6c,0x1,0x84,0x26,0xfd,0x32,0xe5,0xa1,0xba,0x89,0x3d,0x3,0xd5,0x9e,0xcb,0xc1,
+ 0xb9,0x6e,0xca,0x36,0xb3,0x4c,0x8b,0x72,0xe5,0x25,0x81,0xbe,0xc7,0x9c,0x98,0xb8,
+ 0x98,0xa0,0x6b,0x6c,0xba,0x8c,0x48,0xa5,0xe7,0xa1,0x44,0x9d,0x94,0x6e,0x8d,0x62,
+ 0x60,0xd1,0xad,0x15,0xdd,0x5e,0xa5,0x89,0x53,0x4d,0x87,0x87,0x60,0x4b,0x2c,0xec,
+ 0x3f,0xa4,0x9,0x6d,0x3d,0x91,0x56,0xb6,0x0,0x42,0x3c,0xd0,0x35,0x2e,0x19,0x2d,
+ 0xb6,0x2a,0xe6,0xef,0x8d,0x5d,0x19,0xab,0x1f,0xed,0xf6,0x73,0x39,0xb1,0x1d,0x13,
+ 0x24,0x24,0x90,0x90,0x80,0xd4,0xbb,0xf,0x7c,0xb,0x97,0xc1,0x53,0x43,0xc9,0x93,
+ 0x81,0xaf,0xa6,0xed,0x8d,0x68,0x73,0x53,0x37,0xe9,0xbc,0xd1,0x26,0xe3,0xdc,0x4d,
+ 0xc9,0xed,0x15,0xe9,0x3d,0x48,0xff,0x91,0x76,0x7b,0xc5,0xf9,0xfc,0x9a,0xc6,0xc8,
+ 0xf9,0x3d,0x15,0x73,0x36,0x1,0xa2,0xcd,0x1b,0x72,0x1,0x80,0x3f,0xa5,0x62,0xae,
+ 0xce,0xe7,0x5e,0xcc,0x0,0x8a,0xad,0x25,0x48,0x48,0x0,0x5a,0x57,0xe3,0x1d,0x8b,
+ 0x9e,0x6,0xd9,0x9a,0xa5,0xa2,0x5f,0x6d,0x8a,0xe2,0xdf,0x6d,0x72,0xe2,0x2b,0xd2,
+ 0x9c,0x93,0x6,0x3d,0x2d,0xc9,0xec,0x28,0x7f,0x53,0x88,0x5c,0xc3,0x7b,0x44,0xd9,
+ 0x4,0x8,0x1d,0xce,0xd5,0xd5,0xe1,0xa3,0x78,0x26,0xdc,0x3,0x52,0x3,0xc4,0x75,
+ 0xe,0x3,0xbb,0xbf,0x47,0x5c,0x8b,0xca,0x65,0x21,0x1,0xf7,0x98,0x71,0x89,0xd5,
+ 0xc3,0x31,0x70,0x70,0xa2,0x3f,0x6b,0x7e,0x70,0x20,0x42,0x75,0x9f,0x76,0xeb,0xdb,
+ 0xdb,0xed,0x32,0x7e,0xb6,0x31,0xb9,0x7a,0x1c,0xe2,0x95,0xf0,0xf0,0xd0,0xf4,0xab,
+ 0x7,0x80,0xcf,0xfd,0xc1,0xf0,0xbe,0xd9,0x10,0x52,0x36,0x1,0x42,0xfc,0x3c,0x12,
+ 0xef,0xe7,0x99,0xa,0x63,0xe7,0x68,0x72,0x19,0xee,0xe1,0x35,0x50,0x55,0x31,0x12,
+ 0x2c,0x5a,0x1f,0x3f,0xd8,0xf7,0xc9,0x46,0x7,0x44,0x1b,0xa5,0x2b,0x81,0x61,0x7f,
+ 0xbc,0x1b,0x3,0xce,0x38,0x37,0xd1,0x81,0xcd,0xb7,0x5f,0x8f,0x2d,0xf7,0xdc,0x94,
+ 0xb2,0x33,0x17,0x6d,0x8e,0xe2,0x15,0x45,0xf7,0x71,0xcb,0x60,0x27,0x8e,0x37,0xd0,
+ 0x7d,0x30,0xe0,0xe6,0x9a,0x60,0xf8,0xca,0x6c,0x48,0x26,0xdb,0x0,0x39,0x2c,0x1e,
+ 0x69,0xf1,0x4d,0x85,0x31,0xdd,0x55,0xa4,0xbe,0xda,0xfd,0x4,0xe7,0xa9,0xcd,0xe3,
+ 0xb3,0xd1,0x29,0xd1,0x46,0xf1,0x4b,0xa0,0xd7,0xd4,0x6f,0xc1,0xf7,0x4c,0x32,0x40,
+ 0xa7,0xbc,0x73,0x3b,0xbe,0xdc,0xbf,0x12,0x3c,0xd2,0xe1,0x63,0xae,0xf6,0xe0,0xbf,
+ 0xed,0x32,0x7e,0xaa,0xac,0x1e,0xfb,0xb8,0x19,0x9e,0x1d,0x9e,0x3e,0xf6,0x15,0xd5,
+ 0xe3,0x4c,0x9e,0x5e,0xdb,0x10,0xcd,0x8a,0x69,0x53,0xb6,0x1,0x42,0xfc,0x91,0xd2,
+ 0x90,0x94,0x87,0x44,0x3a,0xab,0x88,0xe7,0x78,0x30,0xbe,0xa8,0xf8,0x87,0xb1,0x30,
+ 0x1c,0xd2,0x96,0xc3,0xbb,0xdf,0x37,0xe0,0x99,0x30,0x9,0x91,0x75,0x4d,0x68,0xff,
+ 0xec,0x63,0x44,0x1a,0x28,0x14,0x59,0xf9,0xd0,0xa8,0x7,0x9e,0x1,0xf9,0xe1,0x13,
+ 0x35,0x9f,0x7b,0xa,0x76,0x2e,0x59,0x98,0xb2,0x73,0x97,0x6d,0x89,0x62,0x71,0x6b,
+ 0xf2,0xec,0x71,0xcd,0x40,0x7,0x4e,0xeb,0x9b,0xde,0x73,0x30,0xbe,0xb,0x7b,0xd5,
+ 0x1f,0xc,0xab,0x21,0xa9,0x7a,0x2c,0xb0,0x5c,0x0,0xe4,0x58,0x0,0xff,0x30,0x5a,
+ 0x45,0x2,0x3e,0xb7,0x36,0xb6,0x56,0x8f,0x3b,0x52,0xe,0xd,0x48,0xbd,0x2a,0x30,
+ 0xe4,0xea,0x79,0x18,0xf0,0x93,0x5f,0x74,0xeb,0xe,0x5,0x8c,0x6b,0x3e,0xff,0x27,
+ 0x88,0x4,0x57,0x97,0x7c,0x57,0xfb,0x1e,0xf7,0x63,0x8c,0xfc,0xd3,0xe3,0x89,0x7e,
+ 0x90,0x9,0xcd,0x9a,0xef,0x7f,0x33,0x65,0x9f,0x3e,0xa,0x71,0x9c,0xa6,0x44,0x4e,
+ 0xa4,0xfc,0xe7,0x2f,0x8c,0x70,0xa1,0xc2,0x78,0xc6,0x9e,0xee,0xf,0x86,0x93,0x8d,
+ 0x67,0x81,0x8c,0x1f,0x67,0xed,0x21,0xaf,0x2,0x98,0x91,0x76,0x15,0xf1,0xb9,0xc9,
+ 0x2e,0xab,0x47,0x4a,0x1c,0x6b,0xac,0x15,0x67,0x2d,0xe7,0xc8,0x4a,0xf8,0x9e,0xf9,
+ 0x37,0x5c,0x55,0xa3,0x75,0x19,0xe4,0xed,0x6d,0x9,0x90,0xec,0x7a,0x6d,0x71,0x71,
+ 0x76,0xc2,0x24,0x57,0xbe,0x17,0x96,0xa1,0xd7,0xfe,0x49,0xbb,0xd6,0x74,0xfe,0x2d,
+ 0x64,0x94,0x48,0xc6,0x89,0x44,0x17,0xf6,0x77,0xe0,0x3c,0x3,0xbf,0xf3,0xb8,0x82,
+ 0x7d,0xb9,0x3f,0x18,0xce,0xaa,0x3f,0x40,0xae,0x0,0xa2,0x4d,0xb2,0xa3,0x7b,0x16,
+ 0x11,0x21,0x81,0x3a,0x66,0x14,0x99,0xb9,0x93,0xb9,0xbb,0x11,0xc9,0xbb,0x76,0x60,
+ 0xf5,0x77,0xf6,0x43,0x74,0xc3,0x3a,0xa3,0xa2,0x45,0xf9,0xbd,0xa7,0x76,0x5f,0x50,
+ 0x2e,0x14,0xa2,0xd6,0xd7,0x97,0xa0,0xe9,0xac,0x13,0x52,0xf2,0xf9,0x69,0x98,0xe3,
+ 0x64,0x25,0xac,0xcf,0x40,0x9,0x58,0x38,0xc2,0x85,0xe1,0x69,0xe2,0x5e,0x51,0x23,
+ 0x3d,0xb5,0xdc,0x4d,0xc5,0x48,0xae,0x0,0x42,0xcf,0xa2,0x78,0xbd,0xaa,0xf9,0xfb,
+ 0x15,0x0,0x6e,0xed,0xca,0x40,0xc0,0xe7,0x26,0x27,0xab,0x5,0x45,0x39,0x92,0x79,
+ 0x64,0x6a,0xe0,0xd9,0xe7,0x63,0xe8,0xb5,0xe6,0xfd,0x3c,0x76,0xbf,0xfb,0x6,0x1a,
+ 0x4f,0xcd,0xda,0x36,0x3b,0x8f,0x3d,0x4d,0x3e,0xaa,0x7a,0xf1,0x7f,0x20,0xb7,0xee,
+ 0x42,0xe3,0x2c,0x75,0x93,0xd1,0x9d,0x5,0xad,0x59,0xc9,0xd9,0xfd,0x1c,0xb8,0x62,
+ 0x80,0xe1,0xd9,0x63,0x2d,0x8b,0x86,0xa7,0xd4,0x34,0x83,0xa2,0xed,0x64,0x8d,0x72,
+ 0x9,0x10,0x6d,0x2e,0xc3,0x8d,0xf1,0x40,0x73,0xd3,0x1,0x7c,0x99,0x2,0x24,0xaa,
+ 0x6,0x3e,0x6b,0x9d,0x2a,0xb5,0x86,0x46,0xbf,0xf6,0xbf,0x6e,0xfe,0x1f,0x46,0x7d,
+ 0xd0,0xd3,0x38,0x1b,0xd5,0x2b,0x95,0xef,0xa7,0x36,0x85,0xb1,0x5d,0x6,0x8,0x16,
+ 0x74,0xf6,0x18,0x9f,0x2e,0x28,0x3,0xdd,0x5c,0x1,0x73,0x6b,0x83,0x61,0xdd,0x10,
+ 0xb8,0x56,0xfb,0x9d,0x4b,0x80,0x10,0x4f,0x4f,0x3,0x38,0x59,0x61,0xee,0x1,0xe5,
+ 0x56,0xab,0x13,0xaf,0x81,0x51,0x93,0x55,0xf0,0x0,0x0,0xb,0xe7,0x49,0x44,0x41,
+ 0x54,0x6a,0xd7,0x1c,0x70,0xf6,0xa0,0xd5,0xe,0x94,0x43,0xbd,0xf1,0x9f,0x6d,0x80,
+ 0xd4,0x6f,0x40,0x46,0x5d,0x9,0xfe,0xe8,0x70,0xb4,0x7d,0x64,0xc9,0xcd,0x3a,0xa3,
+ 0xe7,0x14,0xaa,0xf0,0xe3,0x3b,0x63,0xb8,0x61,0x6b,0xc,0x57,0xf,0x74,0xe0,0x27,
+ 0x6,0x37,0x57,0x1c,0x88,0x38,0x18,0x26,0x4f,0x68,0x8,0x67,0xdd,0x8c,0x29,0xd7,
+ 0x0,0x99,0xac,0x18,0x31,0xaa,0x3e,0xc1,0x47,0xc7,0xb7,0x5d,0x4b,0x52,0xac,0x22,
+ 0xef,0x90,0x92,0xb4,0x50,0x83,0x51,0xe8,0xe7,0x8e,0xaf,0x6b,0x1,0x45,0x35,0xc9,
+ 0x84,0x68,0x7b,0xb2,0xfb,0x3d,0xd5,0x3e,0x34,0x93,0x9a,0xe5,0x58,0x96,0xdf,0xe3,
+ 0xf,0x46,0x52,0xba,0x7b,0xf7,0xb4,0xb7,0xb9,0x6,0x8,0xf1,0xa7,0xb5,0xd1,0x7a,
+ 0x3d,0x1e,0x9,0x85,0x52,0xb8,0x75,0xa2,0xfa,0x2a,0xf7,0x9,0x9c,0x21,0xf5,0x45,
+ 0x78,0x4f,0x7b,0x58,0x2,0xf5,0x7d,0xcf,0xbf,0x81,0x5e,0xdf,0x24,0x3b,0x4f,0xf3,
+ 0xb4,0x6a,0x9f,0xa1,0x9,0x5,0x9b,0xed,0x89,0x61,0xa5,0x5b,0x72,0x1d,0x36,0x76,
+ 0x75,0xeb,0x86,0x5c,0xc8,0x22,0x1f,0x0,0x21,0xbe,0x9,0x18,0x6a,0x2e,0x43,0x4a,
+ 0x9b,0x70,0x6f,0x37,0x90,0xf8,0xdc,0x8f,0x72,0xe0,0xa7,0xb9,0xe8,0x64,0xb1,0xb7,
+ 0xa9,0x35,0xb9,0x30,0xc3,0x6b,0xa4,0x71,0xd,0xbe,0x3e,0x94,0xa2,0x2c,0x9,0x62,
+ 0xe0,0x67,0xd6,0x4,0x23,0x7f,0xcd,0x95,0x24,0xf2,0x5,0x10,0x6d,0x34,0x78,0x32,
+ 0x83,0x27,0xb0,0x7c,0xa5,0xed,0xd4,0x8a,0x2a,0xf7,0x3e,0xe,0x86,0xb7,0x39,0xd0,
+ 0x3f,0x57,0x9d,0x2d,0xd6,0x76,0x29,0xec,0xe8,0xe8,0x57,0x3e,0x0,0xf3,0x78,0x4d,
+ 0xb1,0xb8,0xe1,0x9a,0xb,0xb1,0xed,0x31,0x61,0xef,0xc9,0x19,0x9e,0xaa,0x6d,0x8,
+ 0xa7,0x8c,0xe8,0x69,0x4a,0x90,0x26,0xa,0xe5,0xb,0x20,0xc4,0x8a,0xd6,0xeb,0x90,
+ 0xcc,0x4c,0xba,0x5d,0x80,0x7,0xaa,0xdd,0x57,0x83,0xe3,0x8f,0x26,0xf8,0x2e,0xbb,
+ 0x22,0x64,0xb4,0x47,0x2b,0x89,0x11,0xed,0x7e,0xfb,0x75,0x34,0x9e,0x76,0x94,0x51,
+ 0x31,0x3b,0x7c,0xbf,0x8d,0xcb,0x38,0xac,0xb6,0x29,0xac,0x26,0x94,0xcd,0x49,0x9f,
+ 0xf3,0x9,0x90,0xbe,0x64,0x27,0x13,0x4f,0xdf,0x76,0xb0,0xd2,0x93,0x1b,0xc8,0xbc,
+ 0x46,0xdb,0xab,0x55,0xe3,0xe0,0x89,0x85,0xdd,0x74,0x60,0x4f,0x6d,0x7b,0x90,0x13,
+ 0x11,0x14,0x4f,0xa3,0x14,0x34,0x6e,0xe8,0xb5,0xb7,0x25,0x9c,0x88,0x52,0xd1,0xb6,
+ 0x27,0x1e,0xc4,0xa6,0x3f,0x5c,0xe,0xb9,0x6d,0x77,0xf1,0x30,0x5d,0x28,0x4e,0x18,
+ 0xbb,0xc2,0xdf,0x10,0xea,0xa6,0x5b,0xcb,0x36,0x3b,0xf9,0x4,0x8,0xf1,0xfe,0x6d,
+ 0x25,0xf1,0x8e,0x6a,0x92,0x49,0x1,0xb0,0xe9,0x2a,0x78,0xf,0xd5,0x57,0xb9,0x67,
+ 0xd1,0xd2,0x99,0xed,0x8e,0x96,0x4a,0x7b,0x2e,0xdf,0x18,0xc,0x38,0xed,0xe7,0x70,
+ 0xe,0x1f,0x9,0xc7,0xe0,0xe4,0x41,0x9c,0x52,0x3f,0xb7,0x2e,0x5d,0x82,0xd6,0x37,
+ 0xe8,0xf7,0x45,0x10,0xc0,0x5f,0xf7,0x7,0x23,0xdd,0x2e,0x7b,0x72,0x21,0x99,0x7c,
+ 0x3,0x84,0xfa,0x40,0xa9,0x12,0xd4,0xf0,0x3f,0xe4,0x5b,0x49,0x2a,0xe1,0x15,0xda,
+ 0xce,0x5,0xaa,0x5c,0xf3,0xc1,0x18,0xa5,0x79,0x13,0x24,0x24,0xd0,0x55,0x2,0x6d,
+ 0x80,0x3c,0xc3,0x1f,0x8c,0xd2,0x4e,0x23,0xe7,0x54,0x8,0x80,0x50,0xa7,0xc8,0xbc,
+ 0x84,0xcc,0x4c,0x88,0xc8,0xaa,0xb7,0xd3,0xa6,0x3a,0xb1,0xd5,0xa,0xb9,0x5e,0x1,
+ 0x63,0x87,0xe7,0x5c,0x2,0xe2,0x1,0x5,0x91,0x40,0x30,0xca,0x13,0x1,0xa8,0xbf,
+ 0x8c,0x70,0xfc,0x65,0x88,0x13,0xa3,0xd2,0x84,0xf,0xed,0xcc,0x20,0xbb,0xd0,0x1f,
+ 0xc,0x51,0x98,0xdb,0xbc,0x50,0xa1,0x0,0x32,0x4a,0xd9,0x6a,0xa9,0xb9,0xd,0xe9,
+ 0x0,0x7f,0xb9,0xb6,0xc7,0x2b,0xaa,0x5d,0xdf,0x90,0x64,0x10,0x48,0x44,0xb8,0xd2,
+ 0xbc,0x4c,0x85,0xfc,0x3e,0x64,0xd6,0x86,0x8,0x3e,0x31,0x1f,0x80,0x3a,0xc1,0x1c,
+ 0x7,0xfe,0x5a,0x1b,0xc,0xab,0x1e,0xab,0x79,0x61,0xb8,0x50,0x0,0xa1,0xce,0x1d,
+ 0x7,0xe0,0x45,0x4d,0x2f,0xaf,0x8f,0x7f,0xa6,0x68,0xf1,0x7b,0x48,0x18,0x33,0xe6,
+ 0x65,0xe,0xe4,0xfd,0x21,0xe7,0x6d,0x8a,0x62,0xa9,0x12,0x80,0x81,0x42,0xf8,0xd0,
+ 0xa,0x32,0xc1,0xc0,0xd6,0x2a,0xee,0x84,0xf7,0x99,0xdb,0xe1,0x9a,0x91,0x2b,0x85,
+ 0xa0,0x9e,0x10,0xa,0x9,0x10,0xe2,0x49,0x9b,0x3e,0x81,0xfe,0xee,0x6,0x92,0x3a,
+ 0x9f,0xfb,0x66,0x6,0xfc,0x36,0xef,0xa3,0x28,0x1e,0x98,0x13,0x9,0x5c,0xb9,0x25,
+ 0x8a,0xe7,0x15,0x1f,0xf,0x7a,0xc0,0xfd,0x43,0x9c,0x38,0xdc,0x28,0x42,0x9,0xb9,
+ 0xe5,0x32,0x76,0xcc,0xc4,0x86,0xd0,0xcb,0x39,0x61,0x2a,0x4d,0xa3,0x85,0x6,0x8,
+ 0xb1,0xf6,0x50,0x3c,0x63,0xee,0xd9,0x1a,0x1e,0x9,0x34,0x4,0x14,0xed,0x4a,0x42,
+ 0x7a,0x93,0xe3,0xf3,0x2d,0x1c,0xf1,0xbc,0xec,0x4a,0xe0,0xae,0x6d,0x31,0xdc,0xbf,
+ 0x83,0x42,0xc0,0x25,0xc9,0xa4,0xb,0x2d,0x5,0x81,0xbb,0xc6,0xdf,0x10,0x26,0xb5,
+ 0x40,0xde,0xa9,0x18,0x0,0x42,0x9d,0xa6,0xa4,0x18,0xa4,0x6d,0x57,0x89,0x42,0x5d,
+ 0xfc,0x45,0xfd,0x63,0x55,0x95,0x67,0xef,0x98,0xc4,0x5f,0x6,0xc7,0x84,0xbc,0x4b,
+ 0x48,0x3c,0x30,0x2b,0x12,0xd0,0xc6,0xd5,0xa5,0x6,0xe7,0xf4,0x73,0xe0,0x72,0x63,
+ 0x1f,0xf,0x2a,0xfa,0x9c,0x3f,0x18,0x3e,0x29,0x2b,0x4c,0x58,0x68,0xa4,0x58,0x0,
+ 0x42,0xac,0x53,0x28,0x20,0x2d,0x0,0x48,0xd3,0xbe,0x27,0xb0,0x43,0xbd,0xcf,0xfb,
+ 0x5d,0x40,0x5e,0x1c,0xb7,0xfb,0x37,0x67,0x8f,0x61,0x41,0x18,0xa2,0x4a,0x6e,0x24,
+ 0x40,0x37,0x56,0x14,0x36,0x54,0xa5,0xa3,0x2a,0x24,0xdc,0x69,0x90,0xd7,0x23,0x59,
+ 0x96,0xbd,0xe5,0x91,0x42,0xdf,0x1b,0xb3,0x6,0xed,0xb9,0xe1,0xcc,0xb8,0xd5,0x62,
+ 0x2,0xc8,0x40,0x25,0x29,0xa8,0x16,0x0,0x64,0xb3,0xf5,0x86,0xda,0x8d,0x95,0x55,
+ 0xae,0xb3,0x64,0xc6,0x1e,0x36,0xee,0x96,0x28,0x51,0x2c,0x12,0xa0,0x8b,0xaa,0xc9,
+ 0x8d,0x1d,0xe1,0x7c,0xf6,0x73,0x33,0x3c,0x63,0x22,0x74,0xf,0xfd,0x60,0xf2,0x58,
+ 0x78,0x7a,0xed,0x5a,0x6c,0x29,0x64,0x5f,0x8a,0x9,0x20,0x24,0x7,0x32,0x51,0xd,
+ 0x74,0x11,0x48,0x27,0x90,0xd4,0xfb,0xdc,0xd7,0xc6,0xb3,0xd3,0x75,0xba,0xed,0x2a,
+ 0xa4,0x0,0xc5,0xb3,0xf5,0x25,0xf0,0x75,0x84,0xe3,0xe8,0x75,0x1d,0x2b,0xc7,0x60,
+ 0x7,0xc3,0x3b,0x46,0x19,0x69,0x93,0xcd,0x6d,0x8d,0x39,0xa5,0x29,0x93,0xbe,0x6e,
+ 0xf,0x16,0x5a,0xbe,0xc5,0x6,0x10,0x92,0x87,0x36,0x52,0xbc,0x2a,0x9f,0x1f,0x92,
+ 0xe7,0xa5,0xfa,0x47,0xa0,0xda,0x73,0x1f,0x38,0x3f,0xaf,0xd0,0xc2,0x13,0xcf,0xd7,
+ 0x97,0xc0,0xb2,0x36,0x19,0xbf,0x50,0x82,0x4d,0x53,0x29,0x2f,0x3,0x96,0x57,0xb9,
+ 0x4d,0x89,0x2c,0xc2,0x30,0x71,0xdf,0x1c,0x78,0x7,0x9a,0x7a,0x78,0x97,0x42,0xc5,
+ 0x8,0x10,0x62,0x91,0xb2,0x2,0x75,0xfd,0xf5,0x20,0x1f,0xf7,0x47,0xf7,0x80,0xc4,
+ 0xe7,0xd6,0x6,0xa8,0xb3,0xd2,0x77,0x51,0x27,0x47,0x12,0x78,0x72,0x97,0x8c,0xeb,
+ 0x5b,0x92,0xb1,0x74,0x89,0x26,0xba,0x19,0x9e,0x37,0xb7,0xad,0x2,0x38,0x3f,0xd0,
+ 0xdf,0x18,0x49,0x86,0x3d,0x29,0x2,0x2a,0x56,0x80,0x90,0x68,0xc8,0x2f,0x84,0x7c,
+ 0x4a,0xf7,0xd3,0xc8,0x89,0xec,0xb8,0xee,0x52,0xff,0xae,0xf3,0xb9,0x5e,0x63,0x60,
+ 0xda,0xdb,0xaf,0x22,0x10,0xa9,0xbd,0x59,0xb8,0x6d,0x5b,0xc,0xf,0x6a,0xae,0x72,
+ 0x8f,0xa9,0x90,0x70,0xbb,0xa9,0x3,0x39,0x20,0x71,0xf9,0xdb,0x13,0x1a,0xa3,0x45,
+ 0xe5,0x47,0x5c,0xcc,0x0,0x51,0x67,0x9a,0x36,0x49,0x28,0xfd,0xaf,0x93,0x32,0xb1,
+ 0xde,0xe7,0xf9,0xb,0x7,0xef,0x1e,0x8a,0xd0,0xde,0xf3,0x34,0xef,0xbd,0x6f,0x89,
+ 0x47,0x20,0xf9,0x63,0x4b,0x14,0x4b,0x94,0x20,0xd3,0xc4,0xc0,0xf9,0xfd,0x1d,0x89,
+ 0x97,0x19,0x8a,0xc9,0x6c,0xfc,0xa4,0xa6,0x50,0xb7,0xa8,0x37,0x66,0xea,0xe6,0xb2,
+ 0x4c,0x29,0x0,0x84,0xfa,0x4f,0xc6,0x69,0x94,0x73,0x44,0x25,0xca,0x87,0x4c,0x29,
+ 0xdf,0x1a,0xe8,0x1f,0x1,0x9f,0x5b,0xeb,0xf7,0x9e,0x4b,0x79,0x89,0xb6,0x53,0x48,
+ 0x80,0x42,0x84,0xce,0xdd,0x1a,0xc5,0x67,0xe1,0xf8,0xf5,0x89,0x42,0xbf,0x19,0xe0,
+ 0xc0,0x59,0xfd,0x4c,0x81,0x63,0x6b,0x24,0xea,0x98,0xbc,0x6f,0x73,0x5b,0xb7,0x84,
+ 0x4b,0xc5,0x20,0xec,0x52,0x1,0x8,0xc9,0x8a,0x3c,0xd,0xaf,0xd6,0x8,0x8d,0xf4,
+ 0x26,0x97,0xc5,0xf3,0x90,0x24,0xe2,0x70,0x6,0xaa,0x5c,0xe7,0x82,0xb1,0x3f,0x17,
+ 0x83,0x50,0xed,0xc4,0xc3,0x63,0x3b,0x63,0xb8,0x7d,0x5b,0xc,0x8a,0xdd,0x61,0xa2,
+ 0xeb,0xd7,0xf,0x72,0x62,0x56,0x1f,0x83,0x4,0x37,0x49,0x21,0x7d,0x14,0x72,0xb9,
+ 0x8f,0x9e,0xfc,0xd5,0x2e,0x8a,0x9b,0x56,0x94,0x54,0x4a,0x0,0x21,0x1,0x52,0x48,
+ 0xd3,0xb9,0xca,0x21,0x5e,0x15,0x28,0x5,0xb,0xa3,0xff,0x11,0x48,0xce,0x82,0xd0,
+ 0x93,0xe4,0x65,0xa2,0x6d,0x88,0xf1,0x4,0x30,0x5e,0xd4,0xd8,0x55,0xf5,0x95,0x80,
+ 0x6b,0x7,0x3a,0x71,0xac,0x41,0xfe,0xe,0x62,0x90,0x3,0x2f,0x39,0xdd,0xe1,0xd9,
+ 0xe3,0xbf,0xc4,0x8e,0xbc,0x30,0x6c,0xf1,0x21,0xa5,0x6,0x10,0xea,0x26,0x65,0xb2,
+ 0x22,0x40,0x24,0x63,0xe7,0x27,0xe9,0x6f,0xca,0x6a,0xb2,0xbe,0xae,0xda,0x3d,0x9b,
+ 0xf1,0xc4,0xdf,0x82,0x72,0x24,0x1,0x4a,0x85,0x46,0xe0,0x20,0x3d,0x87,0x4a,0x47,
+ 0xf4,0x92,0x70,0x41,0x7f,0x47,0xe2,0xc6,0xca,0x4,0x3d,0xe7,0x70,0x87,0x4f,0x1b,
+ 0xff,0x25,0x42,0x26,0xca,0x16,0xb4,0x88,0xa9,0xde,0x14,0x94,0x43,0xfd,0x87,0xff,
+ 0xbe,0x8b,0x51,0x23,0xe5,0xee,0x22,0xe0,0x3c,0xb9,0xd2,0xe7,0x3d,0x32,0x6,0x79,
+ 0x1e,0x3,0xbe,0x51,0xa4,0xbc,0x97,0x2c,0x5b,0x77,0x6f,0x8f,0xe1,0xcf,0xdb,0x3b,
+ 0xc,0xe,0x49,0xbf,0x41,0xc0,0x20,0xdb,0x2a,0x33,0xc4,0x18,0xbf,0xbd,0xa6,0x21,
+ 0x42,0x5b,0xe3,0x92,0xa0,0x52,0x6,0x8,0x9,0x98,0x92,0x81,0xce,0x3,0x90,0x4c,
+ 0x91,0x9a,0x24,0x4a,0xa9,0x70,0xdb,0x17,0x95,0xf8,0xca,0x29,0x79,0xe6,0x72,0xf0,
+ 0x9f,0x97,0xc4,0x48,0x14,0x39,0x93,0x2b,0xc2,0x1c,0x77,0x6d,0x8f,0x81,0x14,0x80,
+ 0x2a,0x1d,0xea,0x95,0x70,0xc1,0x0,0x7,0x26,0x9b,0x58,0x35,0x38,0xd0,0x2,0xce,
+ 0x2f,0xad,0x6d,0x8c,0xec,0xd1,0x65,0x15,0x79,0x97,0x13,0xec,0x95,0x3a,0x40,0xa8,
+ 0xf,0x23,0x0,0xdc,0x18,0xbf,0xd1,0x22,0x45,0xa2,0x4a,0x64,0xdf,0x40,0x11,0x2f,
+ 0x6e,0xd,0x54,0xb9,0x4e,0x1,0x63,0x4,0x22,0x35,0xfc,0x69,0x29,0x8c,0x4b,0xd1,
+ 0xf0,0xd8,0x1c,0xe5,0x58,0xb0,0x4b,0xc6,0x82,0x9d,0x31,0x44,0x95,0x1d,0x15,0xad,
+ 0x15,0x4,0x8c,0x73,0x4d,0xae,0x1a,0x60,0xec,0x4d,0xc8,0xf2,0x65,0xc5,0xa4,0x0,
+ 0x34,0x2b,0xe0,0x72,0x0,0x88,0xda,0x57,0xa,0x92,0x4d,0x89,0x1b,0x29,0x1e,0xb0,
+ 0x4a,0x14,0xc,0xe2,0xb6,0xfa,0x4a,0xd7,0x17,0x5c,0xa2,0xed,0x17,0x53,0xa3,0x3b,
+ 0x9a,0x95,0x8f,0x6d,0xcb,0xb5,0x71,0x24,0x40,0xf1,0xd8,0x4e,0x19,0x9b,0x63,0x1d,
+ 0x67,0x8d,0xa9,0xb4,0x6a,0xf4,0x77,0xe0,0x0,0x8f,0xb9,0xa9,0xc3,0x39,0x9f,0xef,
+ 0xf4,0x44,0x2e,0x2d,0x85,0xf3,0x46,0xaa,0xc1,0x36,0xd7,0xcb,0xd2,0x99,0x26,0xb4,
+ 0x4a,0x10,0x48,0x48,0x2f,0xa2,0xa5,0x7f,0xb8,0x81,0x87,0x3e,0xab,0x72,0x7d,0x8b,
+ 0x33,0x46,0xfa,0x13,0x41,0x69,0x24,0xf0,0x8c,0xb2,0x62,0xac,0xd2,0x1c,0xc2,0x47,
+ 0x3a,0x19,0x7e,0xda,0x57,0xc2,0x4f,0x8d,0x73,0x4,0xaa,0x2d,0x6f,0x91,0xc0,0xaf,
+ 0x9a,0x10,0x8c,0xec,0xf1,0xeb,0x29,0x45,0xa1,0x97,0x1b,0x40,0xd4,0x31,0xa0,0x95,
+ 0x82,0x80,0xd2,0xd5,0xc,0xe5,0x1f,0x27,0xf5,0x91,0x3e,0xb8,0x61,0x90,0xe3,0x70,
+ 0x80,0x7d,0xa7,0x14,0x7,0x2c,0x97,0x3c,0xbf,0xb6,0x5b,0x6,0xe9,0x35,0x3e,0xd0,
+ 0x28,0x35,0xc8,0x55,0x9c,0x40,0x41,0xe0,0x18,0x62,0x90,0xe1,0x49,0xe5,0x8d,0x91,
+ 0xcd,0x9c,0x84,0x79,0x35,0x6b,0xc2,0x5d,0x2d,0xb3,0x73,0xc9,0x7e,0x4e,0xda,0x2e,
+ 0x57,0x80,0xa8,0xc2,0xa2,0xd5,0xe2,0x22,0x0,0x95,0x5d,0x57,0x94,0x5f,0xf7,0x77,
+ 0x6c,0x38,0xaf,0xbf,0xe3,0x58,0x6,0xc,0xcf,0x89,0x64,0x4b,0xa4,0xd1,0x76,0x8e,
+ 0x44,0x16,0xd9,0x97,0x76,0xcb,0xf8,0x4f,0x7b,0xc7,0x1,0x9c,0xd8,0x9f,0xd9,0x3b,
+ 0xb9,0x62,0x98,0xbc,0xba,0xa5,0x2a,0xef,0x4b,0xc,0xf3,0x26,0x34,0x84,0x9f,0x2f,
+ 0x91,0xee,0x1b,0xb2,0x59,0xee,0x0,0x21,0x1,0x50,0xd8,0x20,0xa,0x15,0x43,0x87,
+ 0x78,0x35,0xcc,0x50,0x42,0x30,0x7d,0x18,0x5e,0xbf,0x64,0xa0,0x33,0x32,0xbb,0x8f,
+ 0x54,0xba,0xf9,0xcc,0xc,0x87,0x38,0x75,0x81,0xaf,0x22,0x1c,0x8b,0x77,0xcb,0x78,
+ 0xa9,0x55,0x6,0x79,0xfc,0x69,0xe9,0x10,0xaf,0x84,0x33,0xfa,0x4a,0xa6,0x82,0x29,
+ 0x28,0xf5,0x76,0x81,0x61,0xde,0xae,0xbd,0xc2,0xf3,0xe,0xf8,0x8,0x1d,0xe,0x20,
+ 0x16,0x79,0x2b,0xa6,0x6a,0x76,0x0,0x88,0x2a,0x6f,0x8f,0x6,0x28,0x6a,0xee,0xc4,
+ 0xc4,0x77,0x15,0xc,0xeb,0x66,0x54,0x48,0x38,0xa6,0x42,0x1a,0x71,0x98,0x89,0x8,
+ 0x1b,0xc5,0x34,0x80,0x99,0xf2,0x42,0xd7,0xb4,0x2a,0x30,0x3a,0xb4,0x19,0xc9,0x56,
+ 0xbe,0xe9,0x61,0x38,0xa1,0xb7,0x3,0x3f,0x36,0x67,0x26,0x92,0xa8,0xc3,0x18,0x9e,
+ 0x84,0xc4,0xe7,0xd5,0xac,0x8e,0x7c,0x92,0x29,0x2f,0xa5,0x50,0xde,0x4e,0x0,0xd1,
+ 0x8e,0x7,0x99,0xac,0xd0,0xaa,0xd2,0x2d,0x8b,0xe4,0x30,0x7,0xdb,0x3d,0xa3,0x42,
+ 0xaa,0x38,0xcc,0xcb,0x50,0x2e,0x60,0x21,0x1d,0xc6,0x7,0x21,0x19,0x74,0xc6,0xf8,
+ 0x50,0x6b,0x34,0xa5,0x48,0x84,0x4c,0x43,0x8e,0xad,0xc8,0x68,0xc5,0xa0,0x9a,0x8f,
+ 0x73,0xce,0x16,0xd4,0x36,0x86,0xca,0x3a,0x60,0xb0,0x5d,0x1,0xa2,0x82,0x85,0x52,
+ 0xc2,0x91,0xc9,0xa,0xbd,0x86,0x75,0xfd,0x45,0xa3,0xe4,0xf5,0x7,0x79,0x19,0xa6,
+ 0xb8,0x25,0x1c,0xe0,0x65,0x18,0x6d,0x3a,0x3c,0x66,0x61,0x7f,0x1b,0xc9,0xa8,0xf6,
+ 0xcd,0xb6,0xe4,0x99,0x82,0xe,0xdc,0xda,0xdb,0x28,0x95,0x33,0xa,0xd8,0x76,0x5c,
+ 0x85,0x94,0xb0,0x9b,0x32,0x11,0xb4,0x4d,0xa9,0xc6,0x36,0x73,0x26,0x2f,0x70,0x30,
+ 0x3c,0x36,0x61,0x4d,0x64,0x79,0x61,0x7b,0x99,0x9f,0xa7,0xdb,0x1d,0x20,0xaa,0x94,
+ 0x29,0x83,0xa6,0xa,0x14,0x7a,0x4f,0x69,0x8a,0x3a,0xce,0xc5,0x30,0xc5,0xc3,0x30,
+ 0xcd,0x2b,0x25,0x5e,0x83,0x4c,0x19,0xac,0xe6,0x67,0x20,0x1b,0xa2,0x1c,0x6f,0xb4,
+ 0xc9,0x78,0xb3,0x2d,0xb9,0x5a,0x68,0x6e,0x68,0x3b,0x31,0x40,0xdb,0xa8,0x63,0x7b,
+ 0x3b,0x12,0x2b,0x6,0x19,0x17,0x9a,0xa4,0x3a,0x6,0x3c,0x6,0xd9,0xb1,0xa0,0xa6,
+ 0xa9,0x6d,0xad,0xc9,0x3a,0x65,0x51,0x4c,0x0,0xa4,0xfb,0x30,0x52,0xe8,0x21,0x15,
+ 0x2c,0x94,0xba,0x5a,0x97,0xfc,0x6e,0x6,0xbf,0x8b,0x61,0x8c,0x8b,0x61,0xac,0x53,
+ 0x79,0x77,0xb1,0xd4,0xe8,0xca,0xd2,0x74,0x21,0xc7,0xa4,0x2f,0xc3,0x32,0xbe,0x8c,
+ 0x76,0x7e,0xa7,0xff,0xeb,0xd1,0x3e,0x6e,0x86,0x83,0xbd,0x12,0xa6,0x7a,0x19,0xbe,
+ 0xe5,0x35,0x8d,0xa,0xf2,0x99,0x5d,0xc4,0xc0,0x17,0x4d,0x18,0x12,0x79,0x8a,0x95,
+ 0xd9,0xe1,0xdb,0xec,0x70,0x8,0x80,0xa4,0x97,0xd4,0x14,0x25,0x5d,0x1c,0xe9,0x55,
+ 0x28,0xd2,0x3c,0x25,0x1,0x32,0x24,0xda,0x8a,0x8d,0x25,0xd0,0xb8,0x58,0x62,0x95,
+ 0xe9,0x2b,0x31,0xf4,0x4b,0xbc,0x3,0xfd,0xf6,0x7c,0x4e,0xfe,0x8f,0x7e,0xe9,0x77,
+ 0xc9,0x1c,0xbb,0x12,0xef,0x40,0xab,0xe6,0x33,0xfd,0xbf,0x95,0x3,0xeb,0xa3,0x7c,
+ 0xf,0x20,0xd2,0x1,0x41,0x65,0x8c,0xac,0xcd,0xa7,0x7a,0x68,0x95,0x63,0x20,0x7b,
+ 0x29,0x2,0xb0,0x79,0x62,0x6f,0x71,0x86,0x45,0x72,0xc,0x8b,0x8a,0xd1,0xc3,0xcf,
+ 0x7c,0x3f,0xb2,0x53,0x32,0x13,0xc9,0x65,0xe7,0x89,0xa5,0xdb,0xa,0x85,0xe4,0xa0,
+ 0x43,0xfd,0xf7,0x94,0xf7,0x4e,0x57,0xc6,0x85,0xec,0x16,0x1,0x62,0x6f,0x27,0xc3,
+ 0x81,0x5e,0x9,0x87,0x7a,0x93,0x5b,0xc0,0x4c,0x88,0x1,0x1,0x46,0xab,0x5,0x93,
+ 0x17,0x8d,0x6f,0x88,0x96,0x6f,0xf2,0xf5,0x4c,0x84,0xa2,0x94,0x15,0x0,0xb1,0x20,
+ 0x34,0xa5,0xa,0x45,0x5e,0x39,0x88,0x62,0x79,0x79,0x25,0xec,0xd3,0xb,0xd8,0xbf,
+ 0x8d,0x63,0x74,0x3b,0xcf,0x5d,0xe4,0xc7,0x61,0xf1,0xd3,0xb1,0xba,0x32,0x8d,0x75,
+ 0x62,0xcf,0x67,0xfa,0x7f,0x66,0xc4,0x37,0x82,0xb1,0x77,0x1,0xf6,0x2e,0x47,0xec,
+ 0x9d,0xda,0x86,0xe8,0xbb,0x99,0xd5,0xb7,0x4f,0xe9,0x4c,0x25,0x6b,0x1f,0xc9,0x58,
+ 0xef,0xe9,0x90,0xbd,0x3d,0xf8,0xe6,0x38,0x87,0x74,0xac,0xb,0xfc,0x80,0xbe,0x12,
+ 0x1b,0xe3,0x62,0x6c,0x68,0x88,0x73,0xd0,0xed,0x52,0xe2,0x5,0x24,0x5c,0x54,0xe9,
+ 0x33,0xd9,0xfc,0xf5,0x66,0x0,0xa9,0x1e,0x7a,0x33,0x6,0x5a,0xd,0x12,0x2f,0xc6,
+ 0x94,0xff,0x1,0x3,0x1d,0x2c,0xb1,0x42,0x98,0x70,0xd4,0xd3,0xe3,0x9a,0x12,0xaa,
+ 0x2f,0xe3,0x8c,0x2d,0x93,0x62,0xf2,0xb2,0x9a,0xa6,0xc8,0xfb,0xd6,0xbb,0x67,0xaf,
+ 0x9a,0x2,0x20,0x79,0x18,0xef,0xf,0x47,0xa2,0xa2,0xc2,0xe5,0xf2,0x33,0x30,0xbf,
+ 0xc4,0x51,0xc3,0xc9,0x2b,0x92,0xc1,0xf,0x9e,0xf0,0x8e,0x34,0x17,0x4d,0xcd,0x1c,
+ 0x9f,0xcd,0x0,0xf,0x30,0x26,0x5,0x38,0x47,0x3d,0xe7,0x8,0xc8,0x2e,0x16,0x28,
+ 0x86,0x8,0x85,0xe6,0xd8,0x2f,0xbe,0x52,0x2,0x20,0x5,0x1e,0x93,0x95,0x3e,0xef,
+ 0x58,0x99,0x61,0xb4,0xc,0xee,0x65,0xe0,0x14,0x97,0xd8,0xcb,0x64,0xee,0x95,0x13,
+ 0xc1,0x8,0x25,0x2f,0xe8,0x7f,0xc,0xa4,0x81,0x69,0x7,0x58,0x3b,0x87,0x4c,0xe6,
+ 0x53,0xed,0x12,0x58,0x3b,0x38,0xfd,0x8d,0x76,0x89,0xcb,0xdb,0x24,0x6f,0x24,0x50,
+ 0xec,0xfe,0xdd,0x5,0x16,0xb5,0xa5,0xc7,0xb,0x80,0x58,0x12,0x9b,0xa8,0x64,0x17,
+ 0x9,0x8,0x80,0xd8,0x65,0xa4,0x45,0x3f,0x2d,0x49,0x40,0x0,0xc4,0x92,0xd8,0x44,
+ 0x25,0xbb,0x48,0x40,0x0,0xc4,0x2e,0x23,0x2d,0xfa,0x69,0x49,0x2,0x2,0x20,0x96,
+ 0xc4,0x26,0x2a,0xd9,0x45,0x2,0x2,0x20,0x76,0x19,0x69,0xd1,0x4f,0x4b,0x12,0x10,
+ 0x0,0xb1,0x24,0x36,0x51,0xc9,0x2e,0x12,0x10,0x0,0xb1,0xcb,0x48,0x8b,0x7e,0x5a,
+ 0x92,0x80,0x0,0x88,0x25,0xb1,0x89,0x4a,0x76,0x91,0x80,0x0,0x88,0x5d,0x46,0x5a,
+ 0xf4,0xd3,0x92,0x4,0x4,0x40,0x2c,0x89,0x4d,0x54,0xb2,0x8b,0x4,0x4,0x40,0xec,
+ 0x32,0xd2,0xa2,0x9f,0x96,0x24,0x20,0x0,0x62,0x49,0x6c,0xa2,0x92,0x5d,0x24,0x20,
+ 0x0,0x62,0x97,0x91,0x16,0xfd,0xb4,0x24,0x1,0x1,0x10,0x4b,0x62,0x13,0x95,0xec,
+ 0x22,0x81,0xff,0x7,0xe7,0x28,0xac,0x8c,0x63,0x41,0x70,0x9,0x0,0x0,0x0,0x0,
+ 0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
+ // /home/hzk/Software_Architecture/src/Client/res/html/map.html
+ 0x0,0x0,0x27,0x81,
+ 0x3c,
+ 0x21,0x44,0x4f,0x43,0x54,0x59,0x50,0x45,0x20,0x68,0x74,0x6d,0x6c,0x3e,0xa,0x3c,
+ 0x68,0x74,0x6d,0x6c,0x20,0x6c,0x61,0x6e,0x67,0x3d,0x22,0x7a,0x68,0x2d,0x43,0x4e,
+ 0x22,0x3e,0xa,0x3c,0x68,0x65,0x61,0x64,0x3e,0xa,0x20,0x20,0x3c,0x6d,0x65,0x74,
+ 0x61,0x20,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x22,0x55,0x54,0x46,0x2d,0x38,
+ 0x22,0x3e,0xa,0x20,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65,0x3d,
+ 0x22,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65,
+ 0x6e,0x74,0x3d,0x22,0x77,0x69,0x64,0x74,0x68,0x3d,0x64,0x65,0x76,0x69,0x63,0x65,
+ 0x2d,0x77,0x69,0x64,0x74,0x68,0x2c,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2d,
+ 0x73,0x63,0x61,0x6c,0x65,0x3d,0x31,0x2e,0x30,0x22,0x3e,0xa,0x20,0x20,0x3c,0x74,
+ 0x69,0x74,0x6c,0x65,0x3e,0xe4,0xbc,0xa4,0xe6,0x83,0x85,0xe6,0x80,0x81,0xe5,0x8a,
+ 0xbf,0xe5,0xb1,0x95,0xe7,0xa4,0xba,0xe7,0xb3,0xbb,0xe7,0xbb,0x9f,0x3c,0x2f,0x74,
+ 0x69,0x74,0x6c,0x65,0x3e,0xa,0x20,0x20,0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x72,0x65,
+ 0x6c,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x73,0x68,0x65,0x65,0x74,0x22,0x20,0x68,
+ 0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x61,0x2e,0x61,
+ 0x6d,0x61,0x70,0x2e,0x63,0x6f,0x6d,0x2f,0x6a,0x73,0x61,0x70,0x69,0x5f,0x64,0x65,
+ 0x6d,0x6f,0x73,0x2f,0x73,0x74,0x61,0x74,0x69,0x63,0x2f,0x64,0x65,0x6d,0x6f,0x2d,
+ 0x63,0x65,0x6e,0x74,0x65,0x72,0x2f,0x63,0x73,0x73,0x2f,0x64,0x65,0x6d,0x6f,0x2d,
+ 0x63,0x65,0x6e,0x74,0x65,0x72,0x2e,0x63,0x73,0x73,0x22,0x20,0x2f,0x3e,0xa,0x20,
+ 0x20,0x3c,0x73,0x74,0x79,0x6c,0x65,0x3e,0xa,0x20,0x20,0x20,0x20,0x68,0x74,0x6d,
+ 0x6c,0x2c,0x20,0x62,0x6f,0x64,0x79,0x2c,0x20,0x23,0x63,0x6f,0x6e,0x74,0x61,0x69,
+ 0x6e,0x65,0x72,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x69,0x64,0x74,
+ 0x68,0x3a,0x20,0x31,0x30,0x30,0x25,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x68,
+ 0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x31,0x30,0x30,0x25,0x3b,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x3b,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x3b,0xa,
+ 0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x68,0x31,0x20,0x7b,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,
+ 0x31,0x38,0x70,0x78,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x72,0x67,
+ 0x69,0x6e,0x3a,0x20,0x30,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6c,
+ 0x6f,0x72,0x3a,0x20,0x72,0x67,0x62,0x28,0x31,0x38,0x30,0x2c,0x20,0x31,0x38,0x30,
+ 0x2c,0x20,0x31,0x39,0x30,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,
+ 0x20,0x20,0x68,0x33,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x6e,
+ 0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x32,0x70,0x78,0x3b,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,
+ 0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,
+ 0x61,0x72,0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x20,0x35,0x70,0x78,0x3b,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x72,0x67,0x62,
+ 0x28,0x31,0x35,0x30,0x2c,0x31,0x35,0x30,0x2c,0x31,0x35,0x30,0x29,0x3b,0xa,0x20,
+ 0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x6c,0x61,0x62,0x65,0x6c,0x20,0x7b,
+ 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,
+ 0x62,0x6c,0x6f,0x63,0x6b,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x72,
+ 0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x20,0x35,0x70,0x78,0x3b,
+ 0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x69,0x6e,0x70,0x75,0x74,
+ 0x5b,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x5d,0x20,0x7b,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x32,0x30,0x30,
+ 0x70,0x78,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,
+ 0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0xa,0x20,
+ 0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,
+ 0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,
+ 0x20,0x35,0x70,0x78,0x20,0x31,0x30,0x70,0x78,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,
+ 0x72,0x3a,0x20,0x23,0x30,0x30,0x37,0x62,0x66,0x66,0x3b,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x66,0x66,0x66,0x3b,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x20,0x6e,0x6f,0x6e,
+ 0x65,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x73,0x6f,0x72,0x3a,
+ 0x20,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x3b,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,
+ 0x20,0x20,0x20,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x68,0x6f,0x76,0x65,0x72,
+ 0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,
+ 0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x30,0x30,0x35,0x36,
+ 0x62,0x33,0x3b,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x23,0x6d,
+ 0x61,0x72,0x6b,0x65,0x72,0x46,0x6f,0x72,0x6d,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x61,0x62,0x73,0x6f,
+ 0x6c,0x75,0x74,0x65,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x6f,0x70,0x3a,
+ 0x20,0x31,0x30,0x70,0x78,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x65,0x66,
+ 0x74,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x7a,
+ 0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x20,0x31,0x30,0x30,0x30,0x3b,0x20,0x2f,0x2a,
+ 0x20,0xe7,0xa1,0xae,0xe4,0xbf,0x9d,0xe8,0xa1,0xa8,0xe5,0x8d,0x95,0xe5,0x9c,0xa8,
+ 0xe5,0x9c,0xb0,0xe5,0x9b,0xbe,0xe4,0xb8,0x8a,0xe5,0xb1,0x82,0x20,0x2a,0x2f,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,
+ 0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x77,0x68,0x69,0x74,0x65,0x3b,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x31,0x30,
+ 0x70,0x78,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,
+ 0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x20,0x35,0x70,0x78,0x3b,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,0x64,0x6f,0x77,0x3a,0x20,
+ 0x30,0x20,0x32,0x70,0x78,0x20,0x35,0x70,0x78,0x20,0x72,0x67,0x62,0x61,0x28,0x30,
+ 0x2c,0x30,0x2c,0x30,0x2c,0x30,0x2e,0x32,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x7d,
+ 0xa,0x20,0x20,0x20,0x20,0x23,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x7b,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x20,
+ 0x61,0x62,0x73,0x6f,0x6c,0x75,0x74,0x65,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x74,0x6f,0x70,0x3a,0x20,0x38,0x30,0x70,0x78,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x6c,0x65,0x66,0x74,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x7a,0x2d,0x69,0x6e,0x64,0x65,0x78,0x3a,0x20,0x31,0x30,0x30,0x30,
+ 0x3b,0x20,0x2f,0x2a,0x20,0xe7,0xa1,0xae,0xe4,0xbf,0x9d,0xe6,0xb6,0x88,0xe6,0x81,
+ 0xaf,0xe5,0x9c,0xa8,0xe5,0x9c,0xb0,0xe5,0x9b,0xbe,0xe4,0xb8,0x8a,0xe5,0xb1,0x82,
+ 0x20,0x2a,0x2f,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,
+ 0x20,0x72,0x65,0x64,0x3b,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,
+ 0x2e,0x61,0x6d,0x61,0x70,0x2d,0x6c,0x6f,0x67,0x6f,0x20,0x7b,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,
+ 0x20,0x21,0x69,0x6d,0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0xa,0x20,0x20,0x20,
+ 0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x2e,0x61,0x6d,0x61,0x70,0x2d,0x63,0x6f,0x70,
+ 0x79,0x72,0x69,0x67,0x68,0x74,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x64,
+ 0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x20,0x21,0x69,0x6d,
+ 0x70,0x6f,0x72,0x74,0x61,0x6e,0x74,0x3b,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,
+ 0x20,0x20,0x20,0x2f,0x2a,0x20,0xe6,0xb7,0xbb,0xe5,0x8a,0xa0,0xe8,0x87,0xaa,0xe5,
+ 0xae,0x9a,0xe4,0xb9,0x89,0xe4,0xbf,0xa1,0xe6,0x81,0xaf,0xe7,0xaa,0x97,0xe5,0x8f,
+ 0xa3,0xe6,0xa0,0xb7,0xe5,0xbc,0x8f,0x20,0x2a,0x2f,0xa,0x20,0x20,0x20,0x20,0x2e,
+ 0x63,0x75,0x73,0x74,0x6f,0x6d,0x2d,0x69,0x6e,0x66,0x6f,0x2d,0x77,0x69,0x6e,0x64,
+ 0x6f,0x77,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x61,0x63,0x6b,0x67,
+ 0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x77,0x68,0x69,
+ 0x74,0x65,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,
+ 0x67,0x3a,0x20,0x31,0x30,0x70,0x78,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x62,
+ 0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x20,0x35,0x70,
+ 0x78,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x6f,0x78,0x2d,0x73,0x68,0x61,
+ 0x64,0x6f,0x77,0x3a,0x20,0x30,0x20,0x32,0x70,0x78,0x20,0x35,0x70,0x78,0x20,0x72,
+ 0x67,0x62,0x61,0x28,0x30,0x2c,0x30,0x2c,0x30,0x2c,0x30,0x2e,0x32,0x29,0x3b,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,
+ 0x20,0x32,0x35,0x30,0x70,0x78,0x3b,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,
+ 0x20,0x20,0x2e,0x63,0x75,0x73,0x74,0x6f,0x6d,0x2d,0x69,0x6e,0x66,0x6f,0x2d,0x77,
+ 0x69,0x6e,0x64,0x6f,0x77,0x20,0x68,0x34,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x20,0x30,0x20,0x35,0x70,0x78,
+ 0x20,0x30,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,
+ 0x20,0x23,0x30,0x30,0x35,0x36,0x62,0x33,0x3b,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,
+ 0x20,0x20,0x20,0x20,0x2e,0x63,0x75,0x73,0x74,0x6f,0x6d,0x2d,0x69,0x6e,0x66,0x6f,
+ 0x2d,0x77,0x69,0x6e,0x64,0x6f,0x77,0x20,0x70,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x35,0x70,0x78,0x20,0x30,0x3b,
+ 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x33,
+ 0x33,0x33,0x3b,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x3c,0x2f,0x73,0x74,
+ 0x79,0x6c,0x65,0x3e,0xa,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e,0xa,0x3c,0x62,0x6f,
+ 0x64,0x79,0x3e,0xa,0x20,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,
+ 0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x22,0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,
+ 0xa,0x3c,0x21,0x2d,0x2d,0x20,0x20,0x3c,0x66,0x6f,0x72,0x6d,0x20,0x69,0x64,0x3d,
+ 0x22,0x6d,0x61,0x72,0x6b,0x65,0x72,0x46,0x6f,0x72,0x6d,0x22,0x3e,0xa,0x20,0x20,
+ 0x20,0x20,0x3c,0x64,0x69,0x76,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,
+ 0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x6c,0x61,0x74,0x69,0x74,0x75,
+ 0x64,0x65,0x22,0x3e,0x4c,0x61,0x74,0x69,0x74,0x75,0x64,0x65,0x3a,0x3c,0x2f,0x6c,
+ 0x61,0x62,0x65,0x6c,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,
+ 0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,
+ 0x64,0x3d,0x22,0x6c,0x61,0x74,0x69,0x74,0x75,0x64,0x65,0x22,0x20,0x70,0x6c,0x61,
+ 0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x45,0x6e,0x74,0x65,0x72,0x20,
+ 0x6c,0x61,0x74,0x69,0x74,0x75,0x64,0x65,0x22,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,
+ 0x2f,0x64,0x69,0x76,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x3e,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,
+ 0x3d,0x22,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x22,0x3e,0x4c,0x6f,0x6e,
+ 0x67,0x69,0x74,0x75,0x64,0x65,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,
+ 0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x6c,0x6f,0x6e,
+ 0x67,0x69,0x74,0x75,0x64,0x65,0x22,0x20,0x70,0x6c,0x61,0x63,0x65,0x68,0x6f,0x6c,
+ 0x64,0x65,0x72,0x3d,0x22,0x45,0x6e,0x74,0x65,0x72,0x20,0x6c,0x6f,0x6e,0x67,0x69,
+ 0x74,0x75,0x64,0x65,0x22,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x69,0x76,
+ 0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x64,0x69,0x76,0x3e,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x6c,0x65,
+ 0x76,0x65,0x6c,0x22,0x3e,0x4c,0x65,0x76,0x65,0x6c,0x20,0x28,0x30,0x2d,0x32,0x29,
+ 0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,
+ 0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x6c,0x65,0x76,0x65,0x6c,0x22,0x20,0x70,0x6c,
+ 0x61,0x63,0x65,0x68,0x6f,0x6c,0x64,0x65,0x72,0x3d,0x22,0x45,0x6e,0x74,0x65,0x72,
+ 0x20,0x6c,0x65,0x76,0x65,0x6c,0x22,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,
+ 0x69,0x76,0x3e,0xa,0x20,0x20,0x20,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,
+ 0x74,0x79,0x70,0x65,0x3d,0x22,0x73,0x75,0x62,0x6d,0x69,0x74,0x22,0x3e,0x41,0x64,
+ 0x64,0x20,0x4d,0x61,0x72,0x6b,0x65,0x72,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,
+ 0x3e,0xa,0x20,0x20,0x3c,0x2f,0x66,0x6f,0x72,0x6d,0x3e,0xa,0x20,0x20,0x3c,0x64,
+ 0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x22,0x3e,
+ 0x3c,0x2f,0x64,0x69,0x76,0x3e,0x2d,0x2d,0x3e,0xa,0x20,0x20,0x3c,0x73,0x63,0x72,
+ 0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,
+ 0x2f,0x77,0x65,0x62,0x61,0x70,0x69,0x2e,0x61,0x6d,0x61,0x70,0x2e,0x63,0x6f,0x6d,
+ 0x2f,0x6d,0x61,0x70,0x73,0x3f,0x76,0x3d,0x32,0x2e,0x30,0x26,0x6b,0x65,0x79,0x3d,
+ 0x62,0x37,0x62,0x32,0x64,0x33,0x38,0x30,0x33,0x34,0x38,0x36,0x32,0x64,0x62,0x31,
+ 0x35,0x32,0x32,0x36,0x30,0x63,0x39,0x64,0x64,0x37,0x33,0x36,0x38,0x39,0x62,0x32,
+ 0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0xa,0x20,0x20,0x3c,0x73,
+ 0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,
+ 0x3a,0x2f,0x2f,0x77,0x65,0x62,0x61,0x70,0x69,0x2e,0x61,0x6d,0x61,0x70,0x2e,0x63,
+ 0x6f,0x6d,0x2f,0x6c,0x6f,0x63,0x61,0x3f,0x76,0x3d,0x32,0x2e,0x30,0x2e,0x30,0x26,
+ 0x6b,0x65,0x79,0x3d,0x62,0x37,0x62,0x32,0x64,0x33,0x38,0x30,0x33,0x34,0x38,0x36,
+ 0x32,0x64,0x62,0x31,0x35,0x32,0x32,0x36,0x30,0x63,0x39,0x64,0x64,0x37,0x33,0x36,
+ 0x38,0x39,0x62,0x32,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0xa,
+ 0x20,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0xa,0x20,0x20,0x20,0x20,0x76,
+ 0x61,0x72,0x20,0x6d,0x61,0x70,0x3b,0xa,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,
+ 0x20,0x2f,0x2f,0x20,0xe6,0xb7,0xbb,0xe5,0x8a,0xa0,0xe7,0xbc,0xba,0xe5,0xa4,0xb1,
+ 0xe7,0x9a,0x84,0x69,0x6e,0x69,0x74,0x4d,0x61,0x70,0xe5,0x87,0xbd,0xe6,0x95,0xb0,
+ 0xa,0x20,0x20,0x20,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x69,0x6e,
+ 0x69,0x74,0x4d,0x61,0x70,0x28,0x29,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x6d,0x61,0x70,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x41,0x4d,0x61,0x70,0x2e,0x4d,
+ 0x61,0x70,0x28,0x27,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x72,0x27,0x2c,0x20,
+ 0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x73,0x69,0x7a,0x65,
+ 0x45,0x6e,0x61,0x62,0x6c,0x65,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x7a,0x6f,0x6f,0x6d,0x3a,0x20,0x31,0x36,0x2c,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3a,0x20,
+ 0x5b,0x31,0x31,0x33,0x2e,0x30,0x34,0x35,0x32,0x39,0x32,0x2c,0x20,0x32,0x38,0x2e,
+ 0x32,0x35,0x37,0x37,0x34,0x38,0x5d,0x2c,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x70,0x69,0x74,0x63,0x68,0x3a,0x20,0x30,0x2c,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x4c,0x61,0x62,0x65,0x6c,0x3a,0x20,0x74,0x72,
+ 0x75,0x65,0x2c,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x70,0x53,
+ 0x74,0x79,0x6c,0x65,0x3a,0x20,0x27,0x61,0x6d,0x61,0x70,0x3a,0x2f,0x2f,0x73,0x74,
+ 0x79,0x6c,0x65,0x73,0x2f,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x27,0x2c,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x69,0x65,0x77,0x4d,0x6f,0x64,0x65,0x3a,0x20,
+ 0x27,0x33,0x44,0x27,0x2c,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6c,0x61,
+ 0x79,0x65,0x72,0x73,0x3a,0x20,0x5b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x6e,0x65,0x77,0x20,0x41,0x4d,0x61,0x70,0x2e,0x54,0x69,0x6c,
+ 0x65,0x4c,0x61,0x79,0x65,0x72,0x2e,0x53,0x61,0x74,0x65,0x6c,0x6c,0x69,0x74,0x65,
+ 0x28,0x29,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x5d,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0xe6,0xb7,0xbb,0xe5,0x8a,0xa0,0x20,
+ 0x33,0x44,0x20,0xe7,0xbd,0x97,0xe7,0x9b,0x98,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x41,0x4d,0x61,0x70,0x2e,0x70,0x6c,0x75,0x67,0x69,0x6e,0x28,0x5b,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x41,0x4d,0x61,0x70,0x2e,0x43,0x6f,
+ 0x6e,0x74,0x72,0x6f,0x6c,0x42,0x61,0x72,0x27,0x2c,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x5d,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0xe6,0xb7,0xbb,
+ 0xe5,0x8a,0xa0,0x20,0x33,0x44,0x20,0xe7,0xbd,0x97,0xe7,0x9b,0x98,0xe6,0x8e,0xa7,
+ 0xe5,0x88,0xb6,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,
+ 0x70,0x2e,0x61,0x64,0x64,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x28,0x6e,0x65,0x77,
+ 0x20,0x41,0x4d,0x61,0x70,0x2e,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x42,0x61,0x72,
+ 0x28,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x7b,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,
+ 0x69,0x67,0x68,0x74,0x3a,0x20,0x27,0x32,0x30,0x70,0x78,0x27,0x2c,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x74,0x6f,0x70,0x3a,0x20,0x27,0x32,0x30,0x70,0x78,0x27,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x2c,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x68,0x6f,0x77,0x43,
+ 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x42,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x20,0x74,0x72,
+ 0x75,0x65,0x2c,0x20,0x20,0x2f,0x2f,0x20,0xe6,0x98,0xaf,0xe5,0x90,0xa6,0xe6,0x98,
+ 0xbe,0xe7,0xa4,0xba,0xe5,0x80,0xbe,0xe6,0x96,0x9c,0xe3,0x80,0x81,0xe6,0x97,0x8b,
+ 0xe8,0xbd,0xac,0xe6,0x8c,0x89,0xe9,0x92,0xae,0xe3,0x80,0x82,0xe9,0xbb,0x98,0xe8,
+ 0xae,0xa4,0xe4,0xb8,0xba,0x20,0x74,0x72,0x75,0x65,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x7d,0x29,0x3b,0xa,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0xe6,0xb7,
+ 0xbb,0xe5,0x8a,0xa0,0xe5,0xae,0x9a,0xe4,0xbd,0x8d,0xe6,0x8e,0xa7,0xe4,0xbb,0xb6,
+ 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x72,0x20,0x6f,0x70,0x74,0x69,0x6f,
+ 0x6e,0x73,0x20,0x3d,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x27,0x73,0x68,0x6f,0x77,0x42,0x75,0x74,0x74,0x6f,0x6e,0x27,0x3a,0x20,0x74,
+ 0x72,0x75,0x65,0x2c,0x2f,0x2f,0xe6,0x98,0xaf,0xe5,0x90,0xa6,0xe6,0x98,0xbe,0xe7,
+ 0xa4,0xba,0xe5,0xae,0x9a,0xe4,0xbd,0x8d,0xe6,0x8c,0x89,0xe9,0x92,0xae,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x70,0x6f,0x73,0x69,0x74,0x69,
+ 0x6f,0x6e,0x27,0x3a,0x20,0x27,0x4c,0x42,0x27,0x2c,0x2f,0x2f,0xe5,0xae,0x9a,0xe4,
+ 0xbd,0x8d,0xe6,0x8c,0x89,0xe9,0x92,0xae,0xe7,0x9a,0x84,0xe4,0xbd,0x8d,0xe7,0xbd,
+ 0xae,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2a,0x20,0x4c,
+ 0x54,0x20,0x4c,0x42,0x20,0x52,0x54,0x20,0x52,0x42,0x20,0x2a,0x2f,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x6f,0x66,0x66,0x73,0x65,0x74,0x27,
+ 0x3a,0x20,0x5b,0x31,0x30,0x2c,0x20,0x32,0x30,0x5d,0x2c,0x2f,0x2f,0xe5,0xae,0x9a,
+ 0xe4,0xbd,0x8d,0xe6,0x8c,0x89,0xe9,0x92,0xae,0xe8,0xb7,0x9d,0xe7,0xa6,0xbb,0xe5,
+ 0xaf,0xb9,0xe5,0xba,0x94,0xe8,0xa7,0x92,0xe8,0x90,0xbd,0xe7,0x9a,0x84,0xe8,0xb7,
+ 0x9d,0xe7,0xa6,0xbb,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,
+ 0x73,0x68,0x6f,0x77,0x4d,0x61,0x72,0x6b,0x65,0x72,0x27,0x3a,0x20,0x74,0x72,0x75,
+ 0x65,0x2c,0x2f,0x2f,0xe6,0x98,0xaf,0xe5,0x90,0xa6,0xe6,0x98,0xbe,0xe7,0xa4,0xba,
+ 0xe5,0xae,0x9a,0xe4,0xbd,0x8d,0xe7,0x82,0xb9,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x27,0x6d,0x61,0x72,0x6b,0x65,0x72,0x4f,0x70,0x74,0x69,0x6f,
+ 0x6e,0x73,0x27,0x3a,0x7b,0x2f,0x2f,0xe8,0x87,0xaa,0xe5,0xae,0x9a,0xe4,0xb9,0x89,
+ 0xe5,0xae,0x9a,0xe4,0xbd,0x8d,0xe7,0x82,0xb9,0xe6,0xa0,0xb7,0xe5,0xbc,0x8f,0xef,
+ 0xbc,0x8c,0xe5,0x90,0x8c,0x4d,0x61,0x72,0x6b,0x65,0x72,0xe7,0x9a,0x84,0x4f,0x70,
+ 0x74,0x69,0x6f,0x6e,0x73,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x27,0x6f,0x66,0x66,0x73,0x65,0x74,0x27,0x3a,0x20,0x6e,0x65,0x77,0x20,
+ 0x41,0x4d,0x61,0x70,0x2e,0x50,0x69,0x78,0x65,0x6c,0x28,0x2d,0x31,0x38,0x2c,0x20,
+ 0x2d,0x33,0x36,0x29,0x2c,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x27,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x27,0x3a,0x27,0x3c,0x69,0x6d,
+ 0x67,0x20,0x73,0x72,0x63,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x61,
+ 0x2e,0x61,0x6d,0x61,0x70,0x2e,0x63,0x6f,0x6d,0x2f,0x6a,0x73,0x61,0x70,0x69,0x5f,
+ 0x64,0x65,0x6d,0x6f,0x73,0x2f,0x73,0x74,0x61,0x74,0x69,0x63,0x2f,0x72,0x65,0x73,
+ 0x6f,0x75,0x72,0x63,0x65,0x2f,0x69,0x6d,0x67,0x2f,0x75,0x73,0x65,0x72,0x2e,0x70,
+ 0x6e,0x67,0x22,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x77,0x69,0x64,0x74,0x68,
+ 0x3a,0x33,0x36,0x70,0x78,0x3b,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x33,0x36,0x70,
+ 0x78,0x22,0x2f,0x3e,0x27,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x7d,0x2c,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x73,0x68,
+ 0x6f,0x77,0x43,0x69,0x72,0x63,0x6c,0x65,0x27,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,
+ 0x2f,0x2f,0xe6,0x98,0xaf,0xe5,0x90,0xa6,0xe6,0x98,0xbe,0xe7,0xa4,0xba,0xe5,0xae,
+ 0x9a,0xe4,0xbd,0x8d,0xe7,0xb2,0xbe,0xe5,0xba,0xa6,0xe5,0x9c,0x88,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x63,0x69,0x72,0x63,0x6c,0x65,0x4f,
+ 0x70,0x74,0x69,0x6f,0x6e,0x73,0x27,0x3a,0x20,0x7b,0x2f,0x2f,0xe5,0xae,0x9a,0xe4,
+ 0xbd,0x8d,0xe7,0xb2,0xbe,0xe5,0xba,0xa6,0xe5,0x9c,0x88,0xe7,0x9a,0x84,0xe6,0xa0,
+ 0xb7,0xe5,0xbc,0x8f,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x27,0x73,0x74,0x72,0x6f,0x6b,0x65,0x43,0x6f,0x6c,0x6f,0x72,0x27,
+ 0x3a,0x20,0x27,0x23,0x30,0x30,0x39,0x33,0x46,0x46,0x27,0x2c,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x6e,0x6f,0x53,0x65,
+ 0x6c,0x65,0x63,0x74,0x27,0x3a,0x20,0x74,0x72,0x75,0x65,0x2c,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x73,0x74,0x72,0x6f,
+ 0x6b,0x65,0x4f,0x70,0x61,0x63,0x69,0x74,0x79,0x27,0x3a,0x20,0x30,0x2e,0x35,0x2c,
+ 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,
+ 0x73,0x74,0x72,0x6f,0x6b,0x65,0x57,0x65,0x69,0x67,0x68,0x74,0x27,0x3a,0x20,0x31,
+ 0x2c,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x27,0x66,0x69,0x6c,0x6c,0x43,0x6f,0x6c,0x6f,0x72,0x27,0x3a,0x20,0x27,0x23,0x30,
+ 0x32,0x42,0x30,0x46,0x46,0x27,0x2c,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x66,0x69,0x6c,0x6c,0x4f,0x70,0x61,0x63,0x69,
+ 0x74,0x79,0x27,0x3a,0x20,0x30,0x2e,0x32,0x35,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x41,0x4d,0x61,0x70,0x2e,0x70,0x6c,0x75,0x67,0x69,0x6e,0x28,
+ 0x5b,0x22,0x41,0x4d,0x61,0x70,0x2e,0x47,0x65,0x6f,0x6c,0x6f,0x63,0x61,0x74,0x69,
+ 0x6f,0x6e,0x22,0x5d,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,
+ 0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x72,
+ 0x20,0x67,0x65,0x6f,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x3d,0x20,0x6e,
+ 0x65,0x77,0x20,0x41,0x4d,0x61,0x70,0x2e,0x47,0x65,0x6f,0x6c,0x6f,0x63,0x61,0x74,
+ 0x69,0x6f,0x6e,0x28,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x29,0x3b,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x70,0x2e,0x61,0x64,0x64,0x43,
+ 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x28,0x67,0x65,0x6f,0x6c,0x6f,0x63,0x61,0x74,0x69,
+ 0x6f,0x6e,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x67,
+ 0x65,0x6f,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x67,0x65,0x74,0x43,0x75,
+ 0x72,0x72,0x65,0x6e,0x74,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x28,0x29,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,
+ 0x6f,0x67,0x28,0x22,0xe5,0x9c,0xb0,0xe5,0x9b,0xbe,0xe5,0x88,0x9d,0xe5,0xa7,0x8b,
+ 0xe5,0x8c,0x96,0xe5,0xae,0x8c,0xe6,0x88,0x90,0x22,0x29,0x3b,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x6d,0x61,0x70,0x3b,0xa,0x20,
+ 0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x2f,0x2f,
+ 0x20,0xe8,0xb0,0x83,0xe7,0x94,0xa8,0xe5,0x88,0x9d,0xe5,0xa7,0x8b,0xe5,0x8c,0x96,
+ 0xe5,0x87,0xbd,0xe6,0x95,0xb0,0xa,0x20,0x20,0x20,0x20,0x6d,0x61,0x70,0x20,0x3d,
+ 0x20,0x69,0x6e,0x69,0x74,0x4d,0x61,0x70,0x28,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,
+ 0xa,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0xe5,0xad,0x98,0xe5,0x82,0xa8,0xe6,0x89,
+ 0x80,0xe6,0x9c,0x89,0xe6,0xa0,0x87,0xe8,0xae,0xb0,0xe7,0x82,0xb9,0xe7,0x9a,0x84,
+ 0x4d,0x61,0x70,0xef,0xbc,0x8c,0xe4,0xbd,0xbf,0xe7,0x94,0xa8,0x49,0x44,0xe4,0xbd,
+ 0x9c,0xe4,0xb8,0xba,0xe9,0x94,0xae,0xa,0x20,0x20,0x20,0x20,0x76,0x61,0x72,0x20,
+ 0x6d,0x61,0x72,0x6b,0x65,0x72,0x73,0x4d,0x61,0x70,0x20,0x3d,0x20,0x7b,0x7d,0x3b,
+ 0xa,0xa,0x20,0x20,0x20,0x20,0x2f,0x2f,0xe7,0x94,0xa8,0xe6,0x9d,0xa5,0xe6,0xb7,
+ 0xbb,0xe5,0x8a,0xa0,0xe4,0xbc,0xa4,0xe5,0x91,0x98,0xe4,0xbf,0xa1,0xe6,0x81,0xaf,
+ 0xe7,0x82,0xb9,0xa,0x20,0x20,0x20,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,
+ 0x20,0x61,0x64,0x64,0x4d,0x61,0x72,0x6b,0x65,0x72,0x28,0x6c,0x61,0x74,0x69,0x74,
+ 0x75,0x64,0x65,0x2c,0x20,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x2c,0x20,
+ 0x6c,0x65,0x76,0x65,0x6c,0x29,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x76,
+ 0x61,0x72,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x76,0x61,0x72,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x43,0x6f,0x6c,0x6f,0x72,0x20,
+ 0x3d,0x20,0x27,0x23,0x33,0x33,0x33,0x27,0x3b,0x20,0x2f,0x2f,0x20,0xe8,0xbe,0xb9,
+ 0xe6,0xa1,0x86,0xe9,0xa2,0x9c,0xe8,0x89,0xb2,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x76,0x61,0x72,0x20,0x72,0x61,0x64,0x69,0x75,0x73,0x20,0x3d,0x20,0x31,0x32,0x3b,
+ 0x20,0x2f,0x2f,0x20,0xe5,0x9c,0x86,0xe5,0xbd,0xa2,0xe6,0xa0,0x87,0xe8,0xae,0xb0,
+ 0xe7,0x9a,0x84,0xe5,0x8d,0x8a,0xe5,0xbe,0x84,0xa,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x2f,0x2f,0x20,0xe6,0xa0,0xb9,0xe6,0x8d,0xae,0xe7,0xad,0x89,0xe7,0xba,0xa7,
+ 0xe8,0xae,0xbe,0xe7,0xbd,0xae,0xe9,0xa2,0x9c,0xe8,0x89,0xb2,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x20,0x28,0x6c,0x65,0x76,0x65,0x6c,
+ 0x29,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,
+ 0x20,0x30,0x3a,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,
+ 0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x72,0x67,0x62,0x61,0x28,0x30,0x2c,0x20,0x32,
+ 0x35,0x35,0x2c,0x20,0x30,0x2c,0x20,0x30,0x2e,0x37,0x29,0x27,0x3b,0x20,0x2f,0x2f,
+ 0x20,0xe7,0xbb,0xbf,0xe8,0x89,0xb2,0xef,0xbc,0x8c,0x37,0x30,0x25,0xe4,0xb8,0x8d,
+ 0xe9,0x80,0x8f,0xe6,0x98,0x8e,0xe5,0xba,0xa6,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x63,0x61,0x73,0x65,0x20,0x31,0x3a,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x72,0x67,
+ 0x62,0x61,0x28,0x32,0x35,0x35,0x2c,0x20,0x32,0x35,0x35,0x2c,0x20,0x30,0x2c,0x20,
+ 0x30,0x2e,0x37,0x29,0x27,0x3b,0x20,0x2f,0x2f,0x20,0xe9,0xbb,0x84,0xe8,0x89,0xb2,
+ 0xef,0xbc,0x8c,0x37,0x30,0x25,0xe4,0xb8,0x8d,0xe9,0x80,0x8f,0xe6,0x98,0x8e,0xe5,
+ 0xba,0xa6,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,
+ 0x61,0x6b,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x61,0x73,0x65,
+ 0x20,0x32,0x3a,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,
+ 0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x72,0x67,0x62,0x61,0x28,0x32,0x35,0x35,0x2c,
+ 0x20,0x30,0x2c,0x20,0x30,0x2c,0x20,0x30,0x2e,0x37,0x29,0x27,0x3b,0x20,0x2f,0x2f,
+ 0x20,0xe7,0xba,0xa2,0xe8,0x89,0xb2,0xef,0xbc,0x8c,0x37,0x30,0x25,0xe4,0xb8,0x8d,
+ 0xe9,0x80,0x8f,0xe6,0x98,0x8e,0xe5,0xba,0xa6,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x3a,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x3d,0x20,0x27,0x72,
+ 0x67,0x62,0x61,0x28,0x30,0x2c,0x20,0x32,0x35,0x35,0x2c,0x20,0x30,0x2c,0x20,0x30,
+ 0x2e,0x37,0x29,0x27,0x3b,0x20,0x2f,0x2f,0x20,0xe9,0xbb,0x98,0xe8,0xae,0xa4,0xe4,
+ 0xb8,0xba,0xe7,0xbb,0xbf,0xe8,0x89,0xb2,0xef,0xbc,0x8c,0x37,0x30,0x25,0xe4,0xb8,
+ 0x8d,0xe9,0x80,0x8f,0xe6,0x98,0x8e,0xe5,0xba,0xa6,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x62,0x72,0x65,0x61,0x6b,0x3b,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x7d,0xa,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0xe5,0x88,
+ 0x9b,0xe5,0xbb,0xba,0xe8,0x87,0xaa,0xe5,0xae,0x9a,0xe4,0xb9,0x89,0xe6,0xa0,0x87,
+ 0xe8,0xae,0xb0,0xe5,0x86,0x85,0xe5,0xae,0xb9,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x76,0x61,0x72,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x3d,0x20,0x27,0x3c,
+ 0x64,0x69,0x76,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x22,0x62,0x6f,0x72,0x64,0x65,
+ 0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x20,0x27,0x20,0x2b,0x20,0x72,0x61,
+ 0x64,0x69,0x75,0x73,0x20,0x2b,0x20,0x27,0x70,0x78,0x3b,0x20,0x77,0x69,0x64,0x74,
+ 0x68,0x3a,0x20,0x27,0x20,0x2b,0x20,0x72,0x61,0x64,0x69,0x75,0x73,0x20,0x2a,0x20,
+ 0x32,0x20,0x2b,0x20,0x27,0x70,0x78,0x3b,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,
+ 0x20,0x27,0x20,0x2b,0x20,0x72,0x61,0x64,0x69,0x75,0x73,0x20,0x2a,0x20,0x32,0x20,
+ 0x2b,0x20,0x27,0x70,0x78,0x3b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,
+ 0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x27,0x20,0x2b,0x20,0x63,0x6f,0x6c,
+ 0x6f,0x72,0x20,0x2b,0x20,0x27,0x3b,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x20,
+ 0x32,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x27,0x20,0x2b,0x20,0x62,0x6f,
+ 0x72,0x64,0x65,0x72,0x43,0x6f,0x6c,0x6f,0x72,0x20,0x2b,0x20,0x27,0x3b,0x20,0x63,
+ 0x75,0x72,0x73,0x6f,0x72,0x3a,0x20,0x70,0x6f,0x69,0x6e,0x74,0x65,0x72,0x3b,0x22,
+ 0x3e,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x27,0x3b,0xa,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x76,0x61,0x72,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x20,0x3d,0x20,0x6e,0x65,
+ 0x77,0x20,0x41,0x4d,0x61,0x70,0x2e,0x4d,0x61,0x72,0x6b,0x65,0x72,0x28,0x7b,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,
+ 0x3a,0x20,0x5b,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x2c,0x20,0x6c,0x61,
+ 0x74,0x69,0x74,0x75,0x64,0x65,0x5d,0x2c,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3a,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,
+ 0x74,0x2c,0x20,0x2f,0x2f,0x20,0xe4,0xbd,0xbf,0xe7,0x94,0xa8,0xe8,0x87,0xaa,0xe5,
+ 0xae,0x9a,0xe4,0xb9,0x89,0xe5,0x86,0x85,0xe5,0xae,0xb9,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x20,0x6e,0x65,0x77,0x20,
+ 0x41,0x4d,0x61,0x70,0x2e,0x50,0x69,0x78,0x65,0x6c,0x28,0x2d,0x72,0x61,0x64,0x69,
+ 0x75,0x73,0x2c,0x20,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x29,0x2c,0x20,0x2f,0x2f,
+ 0x20,0xe5,0x81,0x8f,0xe7,0xa7,0xbb,0xe9,0x87,0x8f,0xef,0xbc,0x8c,0xe7,0xa1,0xae,
+ 0xe4,0xbf,0x9d,0xe6,0xa0,0x87,0xe8,0xae,0xb0,0xe4,0xb8,0xad,0xe5,0xbf,0x83,0xe5,
+ 0xaf,0xb9,0xe9,0xbd,0x90,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6c,
+ 0x69,0x63,0x6b,0x61,0x62,0x6c,0x65,0x3a,0x20,0x74,0x72,0x75,0x65,0x20,0x2f,0x2f,
+ 0x20,0xe7,0xa1,0xae,0xe4,0xbf,0x9d,0xe6,0xa0,0x87,0xe8,0xae,0xb0,0xe5,0x8f,0xaf,
+ 0xe7,0x82,0xb9,0xe5,0x87,0xbb,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,
+ 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x2e,0x73,0x65,
+ 0x74,0x4d,0x61,0x70,0x28,0x6d,0x61,0x70,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0xe5,0xb0,0x86,0x6d,0x61,
+ 0x72,0x6b,0x65,0x72,0xe5,0xaf,0xb9,0xe8,0xb1,0xa1,0xe4,0xbf,0x9d,0xe5,0xad,0x98,
+ 0xe5,0x88,0xb0,0x6d,0x61,0x72,0x6b,0x65,0x72,0x73,0x4d,0x61,0x70,0xe4,0xb8,0xad,
+ 0xef,0xbc,0x8c,0xe4,0xbd,0xbf,0xe7,0x94,0xa8,0xe4,0xbc,0xa4,0xe5,0x91,0x98,0x49,
+ 0x44,0xe4,0xbd,0x9c,0xe4,0xb8,0xba,0xe9,0x94,0xae,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x2f,0x2f,0x20,0xe5,0x9c,0xa8,0xe5,0xae,0x9e,0xe9,0x99,0x85,0xe5,0xba,0x94,
+ 0xe7,0x94,0xa8,0xe4,0xb8,0xad,0xef,0xbc,0x8c,0xe9,0x9c,0x80,0xe8,0xa6,0x81,0xe4,
+ 0xbb,0x8e,0xe4,0xbc,0xa4,0xe5,0x91,0x98,0xe6,0x95,0xb0,0xe6,0x8d,0xae,0xe4,0xb8,
+ 0xad,0xe8,0x8e,0xb7,0xe5,0x8f,0x96,0x49,0x44,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x76,0x61,0x72,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x49,0x64,0x20,0x3d,0x20,0x27,
+ 0x6d,0x61,0x72,0x6b,0x65,0x72,0x5f,0x27,0x20,0x2b,0x20,0x6c,0x61,0x74,0x69,0x74,
+ 0x75,0x64,0x65,0x20,0x2b,0x20,0x27,0x5f,0x27,0x20,0x2b,0x20,0x6c,0x6f,0x6e,0x67,
+ 0x69,0x74,0x75,0x64,0x65,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x72,
+ 0x6b,0x65,0x72,0x73,0x4d,0x61,0x70,0x5b,0x6d,0x61,0x72,0x6b,0x65,0x72,0x49,0x64,
+ 0x5d,0x20,0x3d,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x3b,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,
+ 0x6d,0x61,0x72,0x6b,0x65,0x72,0x49,0x64,0x3b,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,
+ 0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0xe6,0xa0,0xb9,0xe6,
+ 0x8d,0xae,0x49,0x44,0xe5,0x88,0xa0,0xe9,0x99,0xa4,0xe6,0xa0,0x87,0xe8,0xae,0xb0,
+ 0xe7,0x82,0xb9,0xa,0x20,0x20,0x20,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,
+ 0x20,0x72,0x65,0x6d,0x6f,0x76,0x65,0x4d,0x61,0x72,0x6b,0x65,0x72,0x42,0x79,0x49,
+ 0x64,0x28,0x69,0x64,0x29,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,
+ 0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe5,0xb0,0x9d,0xe8,0xaf,
+ 0x95,0xe5,0x88,0xa0,0xe9,0x99,0xa4,0xe6,0xa0,0x87,0xe8,0xae,0xb0,0x3a,0x20,0x27,
+ 0x20,0x2b,0x20,0x69,0x64,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0xe6,0x9f,0xa5,0xe6,0x89,0xbe,0xe6,0x89,
+ 0x80,0xe6,0x9c,0x89,0xe6,0xa0,0x87,0xe8,0xae,0xb0,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x66,0x6f,0x72,0x20,0x28,0x76,0x61,0x72,0x20,0x6b,0x65,0x79,0x20,0x69,0x6e,
+ 0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x73,0x4d,0x61,0x70,0x29,0x20,0x7b,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6b,0x65,0x79,0x2e,0x69,
+ 0x6e,0x63,0x6c,0x75,0x64,0x65,0x73,0x28,0x69,0x64,0x29,0x29,0x20,0x7b,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0xe6,0x89,0xbe,0xe5,
+ 0x88,0xb0,0xe5,0x8c,0xb9,0xe9,0x85,0x8d,0x49,0x44,0xe7,0x9a,0x84,0xe6,0xa0,0x87,
+ 0xe8,0xae,0xb0,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,
+ 0x72,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x20,0x3d,0x20,0x6d,0x61,0x72,0x6b,0x65,
+ 0x72,0x73,0x4d,0x61,0x70,0x5b,0x6b,0x65,0x79,0x5d,0x3b,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x61,0x72,0x6b,0x65,0x72,
+ 0x29,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x2f,0x2f,0x20,0xe4,0xbb,0x8e,0xe5,0x9c,0xb0,0xe5,0x9b,0xbe,0xe4,0xb8,0x8a,0xe7,
+ 0xa7,0xbb,0xe9,0x99,0xa4,0xe6,0xa0,0x87,0xe8,0xae,0xb0,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x2e,0x73,
+ 0x65,0x74,0x4d,0x61,0x70,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x3b,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0xe4,0xbb,0x8e,0xe6,
+ 0x98,0xa0,0xe5,0xb0,0x84,0xe4,0xb8,0xad,0xe5,0x88,0xa0,0xe9,0x99,0xa4,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x65,0x6c,0x65,0x74,
+ 0x65,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x73,0x4d,0x61,0x70,0x5b,0x6b,0x65,0x79,
+ 0x5d,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,
+ 0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe6,0x88,0x90,0xe5,
+ 0x8a,0x9f,0xe5,0x88,0xa0,0xe9,0x99,0xa4,0xe6,0xa0,0x87,0xe8,0xae,0xb0,0x3a,0x20,
+ 0x27,0x20,0x2b,0x20,0x6b,0x65,0x79,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x72,0x75,
+ 0x65,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,
+ 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,
+ 0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe6,0x9c,0xaa,0xe6,0x89,
+ 0xbe,0xe5,0x88,0xb0,0xe6,0xa0,0x87,0xe8,0xae,0xb0,0x3a,0x20,0x27,0x20,0x2b,0x20,
+ 0x69,0x64,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,
+ 0x6e,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0xa,
+ 0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0xe6,0xb8,0x85,0xe9,0x99,0xa4,0xe6,0x89,0x80,
+ 0xe6,0x9c,0x89,0xe6,0xa0,0x87,0xe8,0xae,0xb0,0xa,0x20,0x20,0x20,0x20,0x66,0x75,
+ 0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x65,0x61,0x72,0x41,0x6c,0x6c,0x4d,
+ 0x61,0x72,0x6b,0x65,0x72,0x73,0x28,0x29,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe5,0xbc,
+ 0x80,0xe5,0xa7,0x8b,0xe6,0xb8,0x85,0xe9,0x99,0xa4,0xe6,0x89,0x80,0xe6,0x9c,0x89,
+ 0xe6,0xa0,0x87,0xe8,0xae,0xb0,0x2e,0x2e,0x2e,0x27,0x29,0x3b,0xa,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x76,0x61,0x72,0x20,0x63,0x6f,0x75,0x6e,0x74,0x20,0x3d,0x20,0x30,
+ 0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x72,0x20,0x28,0x76,0x61,0x72,
+ 0x20,0x6b,0x65,0x79,0x20,0x69,0x6e,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x73,0x4d,
+ 0x61,0x70,0x29,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,
+ 0x20,0x28,0x6d,0x61,0x72,0x6b,0x65,0x72,0x73,0x4d,0x61,0x70,0x2e,0x68,0x61,0x73,
+ 0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,0x6b,0x65,0x79,0x29,
+ 0x29,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,
+ 0x72,0x6b,0x65,0x72,0x73,0x4d,0x61,0x70,0x5b,0x6b,0x65,0x79,0x5d,0x2e,0x73,0x65,
+ 0x74,0x4d,0x61,0x70,0x28,0x6e,0x75,0x6c,0x6c,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x75,0x6e,0x74,0x2b,0x2b,0x3b,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,
+ 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x73,0x4d,0x61,
+ 0x70,0x20,0x3d,0x20,0x7b,0x7d,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,
+ 0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe5,0xb7,0xb2,0xe6,0xb8,
+ 0x85,0xe9,0x99,0xa4,0xe6,0xa0,0x87,0xe8,0xae,0xb0,0xe6,0x95,0xb0,0xe9,0x87,0x8f,
+ 0x3a,0x20,0x27,0x20,0x2b,0x20,0x63,0x6f,0x75,0x6e,0x74,0x29,0x3b,0xa,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x63,0x6f,0x75,0x6e,0x74,
+ 0x3b,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,
+ 0x20,0x2f,0x2f,0x20,0xe5,0x90,0x91,0xe6,0x8e,0xa7,0xe5,0x88,0xb6,0xe5,0x8f,0xb0,
+ 0xe8,0xbe,0x93,0xe5,0x87,0xba,0xe5,0xbd,0x93,0xe5,0x89,0x8d,0xe6,0x89,0x80,0xe6,
+ 0x9c,0x89,0xe6,0xa0,0x87,0xe8,0xae,0xb0,0xe7,0x9a,0x84,0xe4,0xbf,0xa1,0xe6,0x81,
+ 0xaf,0xa,0x20,0x20,0x20,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x6c,
+ 0x6f,0x67,0x41,0x6c,0x6c,0x4d,0x61,0x72,0x6b,0x65,0x72,0x73,0x28,0x29,0x20,0x7b,
+ 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,
+ 0x6f,0x67,0x28,0x27,0xe5,0xbd,0x93,0xe5,0x89,0x8d,0xe5,0x9c,0xb0,0xe5,0x9b,0xbe,
+ 0xe4,0xb8,0x8a,0xe6,0xa0,0x87,0xe8,0xae,0xb0,0xe6,0x95,0xb0,0xe9,0x87,0x8f,0x3a,
+ 0x20,0x27,0x20,0x2b,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,
+ 0x28,0x6d,0x61,0x72,0x6b,0x65,0x72,0x73,0x4d,0x61,0x70,0x29,0x2e,0x6c,0x65,0x6e,
+ 0x67,0x74,0x68,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x6f,0x72,0x20,
+ 0x28,0x76,0x61,0x72,0x20,0x6b,0x65,0x79,0x20,0x69,0x6e,0x20,0x6d,0x61,0x72,0x6b,
+ 0x65,0x72,0x73,0x4d,0x61,0x70,0x29,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x69,0x66,0x20,0x28,0x6d,0x61,0x72,0x6b,0x65,0x72,0x73,0x4d,0x61,0x70,
+ 0x2e,0x68,0x61,0x73,0x4f,0x77,0x6e,0x50,0x72,0x6f,0x70,0x65,0x72,0x74,0x79,0x28,
+ 0x6b,0x65,0x79,0x29,0x29,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x76,0x61,0x72,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x20,0x3d,
+ 0x20,0x6d,0x61,0x72,0x6b,0x65,0x72,0x73,0x4d,0x61,0x70,0x5b,0x6b,0x65,0x79,0x5d,
+ 0x2e,0x67,0x65,0x74,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x28,0x29,0x3b,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x73,0x6f,0x6c,
+ 0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe6,0xa0,0x87,0xe8,0xae,0xb0,0x49,0x44,0x3a,
+ 0x20,0x27,0x20,0x2b,0x20,0x6b,0x65,0x79,0x20,0x2b,0x20,0x27,0x2c,0x20,0xe4,0xbd,
+ 0x8d,0xe7,0xbd,0xae,0x3a,0x20,0x27,0x20,0x2b,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,
+ 0x6f,0x6e,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,
+ 0x75,0x72,0x6e,0x20,0x4f,0x62,0x6a,0x65,0x63,0x74,0x2e,0x6b,0x65,0x79,0x73,0x28,
+ 0x6d,0x61,0x72,0x6b,0x65,0x72,0x73,0x4d,0x61,0x70,0x29,0x2e,0x6c,0x65,0x6e,0x67,
+ 0x74,0x68,0x3b,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x20,0x20,0xa,0x20,
+ 0x20,0x20,0x20,0x2f,0x2f,0x20,0xe6,0x98,0xbe,0xe7,0xa4,0xba,0xe4,0xbc,0xa4,0xe5,
+ 0x91,0x98,0xe4,0xbf,0xa1,0xe6,0x81,0xaf,0xe7,0xaa,0x97,0xe5,0x8f,0xa3,0xa,0x20,
+ 0x20,0x20,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x68,0x6f,0x77,
+ 0x49,0x6e,0x6a,0x75,0x72,0x79,0x49,0x6e,0x66,0x6f,0x28,0x69,0x6e,0x6a,0x75,0x72,
+ 0x79,0x49,0x64,0x2c,0x20,0x6c,0x65,0x76,0x65,0x6c,0x2c,0x20,0x70,0x6f,0x73,0x69,
+ 0x74,0x69,0x6f,0x6e,0x29,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,
+ 0x6e,0x73,0x6f,0x6c,0x65,0x2e,0x6c,0x6f,0x67,0x28,0x27,0xe6,0x98,0xbe,0xe7,0xa4,
+ 0xba,0xe4,0xbc,0xa4,0xe5,0x91,0x98,0xe4,0xbf,0xa1,0xe6,0x81,0xaf,0x3a,0x20,0x49,
+ 0x44,0x3d,0x27,0x20,0x2b,0x20,0x69,0x6e,0x6a,0x75,0x72,0x79,0x49,0x64,0x20,0x2b,
+ 0x20,0x27,0x2c,0x20,0xe7,0xad,0x89,0xe7,0xba,0xa7,0x3d,0x27,0x20,0x2b,0x20,0x6c,
+ 0x65,0x76,0x65,0x6c,0x20,0x2b,0x20,0x27,0x2c,0x20,0xe4,0xbd,0x8d,0xe7,0xbd,0xae,
+ 0x3d,0x27,0x20,0x2b,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x29,0x3b,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0xe5,0x88,0x9b,0xe5,0xbb,0xba,0xe4,
+ 0xbf,0xa1,0xe6,0x81,0xaf,0xe7,0xaa,0x97,0xe5,0x8f,0xa3,0xe5,0x86,0x85,0xe5,0xae,
+ 0xb9,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x72,0x20,0x63,0x6f,0x6e,0x74,
+ 0x65,0x6e,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x63,
+ 0x72,0x65,0x61,0x74,0x65,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x28,0x27,0x64,0x69,
+ 0x76,0x27,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,
+ 0x6e,0x74,0x2e,0x63,0x6c,0x61,0x73,0x73,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x27,
+ 0x63,0x75,0x73,0x74,0x6f,0x6d,0x2d,0x69,0x6e,0x66,0x6f,0x2d,0x77,0x69,0x6e,0x64,
+ 0x6f,0x77,0x27,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,
+ 0x6e,0x74,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,
+ 0x3c,0x68,0x34,0x3e,0xe4,0xbc,0xa4,0xe5,0x91,0x98,0xe4,0xbf,0xa1,0xe6,0x81,0xaf,
+ 0x3c,0x2f,0x68,0x34,0x3e,0x27,0x20,0x2b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x27,0x3c,0x70,0x3e,0x49,0x44,0x3a,0x20,0x27,0x20,0x2b,0x20,0x69,
+ 0x6e,0x6a,0x75,0x72,0x79,0x49,0x64,0x20,0x2b,0x20,0x27,0x3c,0x2f,0x70,0x3e,0x27,
+ 0x20,0x2b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x3c,0x70,
+ 0x3e,0xe4,0xbc,0xa4,0xe6,0x83,0x85,0xe7,0xad,0x89,0xe7,0xba,0xa7,0x3a,0x20,0x27,
+ 0x20,0x2b,0x20,0x6c,0x65,0x76,0x65,0x6c,0x20,0x2b,0x20,0x27,0x3c,0x2f,0x70,0x3e,
+ 0x27,0x20,0x2b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x27,0x3c,
+ 0x70,0x3e,0xe4,0xbd,0x8d,0xe7,0xbd,0xae,0x3a,0x20,0x5b,0x27,0x20,0x2b,0x20,0x70,
+ 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x5b,0x30,0x5d,0x2e,0x74,0x6f,0x46,0x69,0x78,
+ 0x65,0x64,0x28,0x36,0x29,0x20,0x2b,0x20,0x27,0x2c,0x20,0x27,0x20,0x2b,0x20,0x70,
+ 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x5b,0x31,0x5d,0x2e,0x74,0x6f,0x46,0x69,0x78,
+ 0x65,0x64,0x28,0x36,0x29,0x20,0x2b,0x20,0x27,0x5d,0x3c,0x2f,0x70,0x3e,0x27,0x3b,
+ 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,
+ 0x20,0xe5,0x88,0x9b,0xe5,0xbb,0xba,0xe4,0xbf,0xa1,0xe6,0x81,0xaf,0xe7,0xaa,0x97,
+ 0xe5,0x8f,0xa3,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x72,0x20,0x69,0x6e,
+ 0x66,0x6f,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x41,
+ 0x4d,0x61,0x70,0x2e,0x49,0x6e,0x66,0x6f,0x57,0x69,0x6e,0x64,0x6f,0x77,0x28,0x7b,
+ 0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,
+ 0x3a,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x2c,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x6f,0x66,0x66,0x73,0x65,0x74,0x3a,0x20,0x6e,0x65,0x77,0x20,0x41,
+ 0x4d,0x61,0x70,0x2e,0x50,0x69,0x78,0x65,0x6c,0x28,0x30,0x2c,0x20,0x2d,0x33,0x30,
+ 0x29,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0xe6,0x89,0x93,0xe5,
+ 0xbc,0x80,0xe4,0xbf,0xa1,0xe6,0x81,0xaf,0xe7,0xaa,0x97,0xe5,0x8f,0xa3,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x69,0x6e,0x66,0x6f,0x57,0x69,0x6e,0x64,0x6f,0x77,0x2e,
+ 0x6f,0x70,0x65,0x6e,0x28,0x6d,0x61,0x70,0x2c,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,
+ 0x6f,0x6e,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x69,0x6e,0x66,0x6f,0x57,0x69,0x6e,
+ 0x64,0x6f,0x77,0x3b,0xa,0x20,0x20,0x20,0x20,0x7d,0xa,0x20,0x20,0x3c,0x2f,0x73,
+ 0x63,0x72,0x69,0x70,0x74,0x3e,0xa,0x20,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,
+ 0x3e,0xa,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0xe5,0x88,0xa0,0xe9,0x99,0xa4,0xe6,
+ 0x88,0x96,0xe6,0xb3,0xa8,0xe9,0x87,0x8a,0xe6,0x8e,0x89,0xe4,0xb8,0x8d,0xe5,0xad,
+ 0x98,0xe5,0x9c,0xa8,0xe5,0x85,0x83,0xe7,0xb4,0xa0,0xe7,0x9a,0x84,0xe5,0xbc,0x95,
+ 0xe7,0x94,0xa8,0xe4,0xbb,0xa3,0xe7,0xa0,0x81,0xa,0x20,0x20,0x20,0x20,0x2f,0x2f,
+ 0x20,0xe5,0x8e,0x9f,0xe5,0xa7,0x8b,0xe4,0xbb,0xa3,0xe7,0xa0,0x81,0xe5,0x8f,0xaf,
+ 0xe8,0x83,0xbd,0xe5,0x9c,0xa8,0xe5,0xb0,0x9d,0xe8,0xaf,0x95,0xe8,0xae,0xbf,0xe9,
+ 0x97,0xae,0xe5,0xb7,0xb2,0xe6,0xb3,0xa8,0xe9,0x87,0x8a,0xe6,0x8e,0x89,0xe7,0x9a,
+ 0x84,0xe8,0xa1,0xa8,0xe5,0x8d,0x95,0xe5,0x85,0x83,0xe7,0xb4,0xa0,0xa,0x20,0x20,
+ 0x20,0x20,0x2f,0x2a,0xa,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,
+ 0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,
+ 0x28,0x27,0x6d,0x61,0x72,0x6b,0x65,0x72,0x46,0x6f,0x72,0x6d,0x27,0x29,0x2e,0x61,
+ 0x64,0x64,0x45,0x76,0x65,0x6e,0x74,0x4c,0x69,0x73,0x74,0x65,0x6e,0x65,0x72,0x28,
+ 0x27,0x73,0x75,0x62,0x6d,0x69,0x74,0x27,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,
+ 0x6f,0x6e,0x28,0x65,0x76,0x65,0x6e,0x74,0x29,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x65,0x76,0x65,0x6e,0x74,0x2e,0x70,0x72,0x65,0x76,0x65,0x6e,0x74,0x44,
+ 0x65,0x66,0x61,0x75,0x6c,0x74,0x28,0x29,0x3b,0x20,0x2f,0x2f,0x20,0x50,0x72,0x65,
+ 0x76,0x65,0x6e,0x74,0x20,0x66,0x6f,0x72,0x6d,0x20,0x73,0x75,0x62,0x6d,0x69,0x73,
+ 0x73,0x69,0x6f,0x6e,0xa,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x47,
+ 0x65,0x74,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x76,0x61,0x6c,0x75,0x65,0x73,0xa,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x76,0x61,0x72,0x20,0x6c,0x61,0x74,0x69,0x74,0x75,
+ 0x64,0x65,0x20,0x3d,0x20,0x70,0x61,0x72,0x73,0x65,0x46,0x6c,0x6f,0x61,0x74,0x28,
+ 0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,
+ 0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6c,0x61,0x74,0x69,0x74,0x75,0x64,
+ 0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x76,0x61,0x72,0x20,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x20,
+ 0x3d,0x20,0x70,0x61,0x72,0x73,0x65,0x46,0x6c,0x6f,0x61,0x74,0x28,0x64,0x6f,0x63,
+ 0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,
+ 0x42,0x79,0x49,0x64,0x28,0x27,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x27,
+ 0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x76,0x61,0x72,0x20,0x6c,0x65,0x76,0x65,0x6c,0x20,0x3d,0x20,0x70,0x61,0x72,0x73,
+ 0x65,0x49,0x6e,0x74,0x28,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,
+ 0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6c,0x65,
+ 0x76,0x65,0x6c,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x29,0x3b,0xa,0xa,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x69,0x66,
+ 0x20,0x6c,0x61,0x74,0x69,0x74,0x75,0x64,0x65,0x20,0x61,0x6e,0x64,0x20,0x6c,0x6f,
+ 0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x20,0x61,0x72,0x65,0x20,0x76,0x61,0x6c,0x69,
+ 0x64,0x20,0x6e,0x75,0x6d,0x62,0x65,0x72,0x73,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x69,0x66,0x20,0x28,0x69,0x73,0x4e,0x61,0x4e,0x28,0x6c,0x61,0x74,0x69,0x74,0x75,
+ 0x64,0x65,0x29,0x20,0x7c,0x7c,0x20,0x69,0x73,0x4e,0x61,0x4e,0x28,0x6c,0x6f,0x6e,
+ 0x67,0x69,0x74,0x75,0x64,0x65,0x29,0x29,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,
+ 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6d,0x65,0x73,0x73,
+ 0x61,0x67,0x65,0x27,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,
+ 0x3d,0x20,0x27,0x4c,0x61,0x74,0x69,0x74,0x75,0x64,0x65,0x20,0x61,0x6e,0x64,0x20,
+ 0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,
+ 0x65,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x6e,0x75,0x6d,0x62,0x65,0x72,0x73,0x2e,
+ 0x27,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x72,0x65,0x74,0x75,0x72,
+ 0x6e,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xa,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x2f,0x2f,0x20,0x43,0x68,0x65,0x63,0x6b,0x20,0x69,0x66,0x20,0x6c,0x65,
+ 0x76,0x65,0x6c,0x20,0x69,0x73,0x20,0x77,0x69,0x74,0x68,0x69,0x6e,0x20,0x72,0x61,
+ 0x6e,0x67,0x65,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x6c,0x65,
+ 0x76,0x65,0x6c,0x20,0x3c,0x20,0x30,0x20,0x7c,0x7c,0x20,0x6c,0x65,0x76,0x65,0x6c,
+ 0x20,0x3e,0x20,0x32,0x20,0x7c,0x7c,0x20,0x69,0x73,0x4e,0x61,0x4e,0x28,0x6c,0x65,
+ 0x76,0x65,0x6c,0x29,0x29,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,
+ 0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,
+ 0x27,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x27,
+ 0x4c,0x65,0x76,0x65,0x6c,0x20,0x6d,0x75,0x73,0x74,0x20,0x62,0x65,0x20,0x61,0x20,
+ 0x6e,0x75,0x6d,0x62,0x65,0x72,0x20,0x62,0x65,0x74,0x77,0x65,0x65,0x6e,0x20,0x30,
+ 0x20,0x61,0x6e,0x64,0x20,0x32,0x2e,0x27,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x7d,0xa,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x61,0x6c,0x6c,
+ 0x20,0x61,0x64,0x64,0x4d,0x61,0x72,0x6b,0x65,0x72,0x20,0x66,0x75,0x6e,0x63,0x74,
+ 0x69,0x6f,0x6e,0x20,0x77,0x69,0x74,0x68,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x76,
+ 0x61,0x6c,0x75,0x65,0x73,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x64,0x64,0x4d,
+ 0x61,0x72,0x6b,0x65,0x72,0x28,0x6c,0x61,0x74,0x69,0x74,0x75,0x64,0x65,0x2c,0x20,
+ 0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x2c,0x20,0x6c,0x65,0x76,0x65,0x6c,
+ 0x29,0x3b,0xa,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x43,0x6c,0x65,
+ 0x61,0x72,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x66,0x69,0x65,0x6c,0x64,0x73,0x20,
+ 0x61,0x6e,0x64,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,
+ 0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6c,0x61,0x74,0x69,0x74,
+ 0x75,0x64,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,
+ 0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,
+ 0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,
+ 0x27,0x6c,0x6f,0x6e,0x67,0x69,0x74,0x75,0x64,0x65,0x27,0x29,0x2e,0x76,0x61,0x6c,
+ 0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x64,
+ 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,
+ 0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6c,0x65,0x76,0x65,0x6c,0x27,0x29,0x2e,
+ 0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x27,0x27,0x3b,0xa,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,
+ 0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6d,0x65,0x73,0x73,0x61,
+ 0x67,0x65,0x27,0x29,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,
+ 0x20,0x27,0x27,0x3b,0xa,0x20,0x20,0x20,0x20,0x7d,0x29,0x3b,0xa,0x20,0x20,0x20,
+ 0x20,0x2a,0x2f,0xa,0x20,0x20,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0xa,
+ 0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0xa,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e,0xa,
+
+ // /home/hzk/Software_Architecture/src/Client/res/image/map.svg
+ 0x0,0x0,0x4,0x14,
+ 0x3c,
+ 0x73,0x76,0x67,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x39,0x36,0x22,0x20,0x68,
+ 0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x39,0x36,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,
+ 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
+ 0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,0x20,0x78,0x6d,
+ 0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
+ 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,
+ 0x39,0x2f,0x78,0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,
+ 0x63,0x65,0x3d,0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x20,0x6f,0x76,
+ 0x65,0x72,0x66,0x6c,0x6f,0x77,0x3d,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,
+ 0x3c,0x67,0x20,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3d,0x22,0x74,0x72,
+ 0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x28,0x2d,0x37,0x33,0x31,0x20,0x2d,0x31,0x30,
+ 0x38,0x29,0x22,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x37,0x39,
+ 0x39,0x20,0x31,0x33,0x38,0x2e,0x32,0x43,0x37,0x39,0x36,0x2e,0x36,0x20,0x31,0x33,
+ 0x38,0x2e,0x32,0x20,0x37,0x39,0x34,0x2e,0x36,0x20,0x31,0x33,0x36,0x2e,0x32,0x20,
+ 0x37,0x39,0x34,0x2e,0x37,0x20,0x31,0x33,0x33,0x2e,0x37,0x20,0x37,0x39,0x34,0x2e,
+ 0x37,0x20,0x31,0x33,0x31,0x2e,0x33,0x20,0x37,0x39,0x36,0x2e,0x37,0x20,0x31,0x32,
+ 0x39,0x2e,0x33,0x20,0x37,0x39,0x39,0x2e,0x31,0x20,0x31,0x32,0x39,0x2e,0x33,0x20,
+ 0x38,0x30,0x31,0x2e,0x35,0x20,0x31,0x32,0x39,0x2e,0x33,0x20,0x38,0x30,0x33,0x2e,
+ 0x35,0x20,0x31,0x33,0x31,0x2e,0x33,0x20,0x38,0x30,0x33,0x2e,0x35,0x20,0x31,0x33,
+ 0x33,0x2e,0x37,0x20,0x38,0x30,0x33,0x2e,0x35,0x20,0x31,0x33,0x34,0x2e,0x39,0x20,
+ 0x38,0x30,0x33,0x20,0x31,0x33,0x36,0x20,0x38,0x30,0x32,0x2e,0x32,0x20,0x31,0x33,
+ 0x36,0x2e,0x38,0x20,0x38,0x30,0x31,0x2e,0x33,0x20,0x31,0x33,0x37,0x2e,0x37,0x20,
+ 0x38,0x30,0x30,0x2e,0x32,0x20,0x31,0x33,0x38,0x2e,0x32,0x20,0x37,0x39,0x39,0x20,
+ 0x31,0x33,0x38,0x2e,0x32,0x5a,0x4d,0x37,0x39,0x34,0x2e,0x37,0x20,0x31,0x32,0x34,
+ 0x2e,0x33,0x43,0x37,0x39,0x32,0x2e,0x35,0x20,0x31,0x32,0x35,0x2e,0x31,0x20,0x37,
+ 0x39,0x30,0x2e,0x38,0x20,0x31,0x32,0x36,0x2e,0x38,0x20,0x37,0x38,0x39,0x2e,0x37,
+ 0x20,0x31,0x32,0x38,0x2e,0x38,0x20,0x37,0x38,0x38,0x2e,0x33,0x20,0x31,0x33,0x31,
+ 0x2e,0x35,0x20,0x37,0x38,0x38,0x2e,0x31,0x20,0x31,0x33,0x34,0x2e,0x36,0x20,0x37,
+ 0x38,0x39,0x2e,0x32,0x20,0x31,0x33,0x37,0x2e,0x34,0x4c,0x37,0x39,0x34,0x20,0x31,
+ 0x34,0x37,0x2e,0x38,0x20,0x37,0x39,0x37,0x2e,0x32,0x20,0x31,0x35,0x34,0x2e,0x34,
+ 0x43,0x37,0x39,0x37,0x2e,0x35,0x20,0x31,0x35,0x35,0x2e,0x31,0x20,0x37,0x39,0x38,
+ 0x2e,0x32,0x20,0x31,0x35,0x35,0x2e,0x35,0x20,0x37,0x39,0x39,0x20,0x31,0x35,0x35,
+ 0x2e,0x35,0x20,0x37,0x39,0x39,0x2e,0x38,0x20,0x31,0x35,0x35,0x2e,0x35,0x20,0x38,
+ 0x30,0x30,0x2e,0x35,0x20,0x31,0x35,0x35,0x2e,0x31,0x20,0x38,0x30,0x30,0x2e,0x38,
+ 0x20,0x31,0x35,0x34,0x2e,0x34,0x4c,0x38,0x30,0x34,0x20,0x31,0x34,0x37,0x2e,0x38,
+ 0x20,0x38,0x30,0x38,0x2e,0x38,0x20,0x31,0x33,0x37,0x2e,0x35,0x43,0x38,0x30,0x39,
+ 0x2e,0x33,0x20,0x31,0x33,0x36,0x2e,0x33,0x20,0x38,0x30,0x39,0x2e,0x35,0x20,0x31,
+ 0x33,0x35,0x20,0x38,0x30,0x39,0x2e,0x35,0x20,0x31,0x33,0x33,0x2e,0x37,0x20,0x38,
+ 0x30,0x39,0x2e,0x35,0x20,0x31,0x32,0x36,0x2e,0x37,0x20,0x38,0x30,0x32,0x2e,0x33,
+ 0x20,0x31,0x32,0x31,0x2e,0x34,0x20,0x37,0x39,0x34,0x2e,0x37,0x20,0x31,0x32,0x34,
+ 0x2e,0x33,0x5a,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,
+ 0x46,0x46,0x22,0x2f,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x37,
+ 0x37,0x37,0x20,0x31,0x38,0x30,0x2e,0x38,0x20,0x37,0x36,0x31,0x20,0x31,0x37,0x32,
+ 0x2e,0x38,0x20,0x37,0x36,0x31,0x20,0x31,0x34,0x30,0x2e,0x32,0x20,0x37,0x37,0x37,
+ 0x20,0x31,0x34,0x38,0x2e,0x32,0x20,0x37,0x37,0x37,0x20,0x31,0x38,0x30,0x2e,0x38,
+ 0x5a,0x4d,0x37,0x35,0x37,0x20,0x31,0x37,0x32,0x2e,0x38,0x20,0x37,0x34,0x35,0x20,
+ 0x31,0x37,0x38,0x2e,0x38,0x20,0x37,0x34,0x35,0x20,0x31,0x34,0x36,0x2e,0x32,0x20,
+ 0x37,0x35,0x37,0x20,0x31,0x34,0x30,0x2e,0x32,0x20,0x37,0x35,0x37,0x20,0x31,0x37,
+ 0x32,0x2e,0x38,0x5a,0x4d,0x38,0x31,0x32,0x2e,0x34,0x20,0x31,0x33,0x39,0x2e,0x32,
+ 0x20,0x38,0x31,0x32,0x2e,0x34,0x20,0x31,0x33,0x39,0x2e,0x32,0x20,0x38,0x30,0x39,
+ 0x2e,0x39,0x20,0x31,0x34,0x34,0x2e,0x36,0x20,0x38,0x31,0x33,0x20,0x31,0x34,0x36,
+ 0x2e,0x32,0x20,0x38,0x31,0x33,0x20,0x31,0x37,0x38,0x2e,0x38,0x20,0x38,0x30,0x31,
+ 0x20,0x31,0x37,0x32,0x2e,0x38,0x20,0x38,0x30,0x31,0x20,0x31,0x35,0x39,0x2e,0x35,
+ 0x20,0x37,0x39,0x37,0x20,0x31,0x35,0x39,0x2e,0x35,0x20,0x37,0x39,0x37,0x20,0x31,
+ 0x37,0x32,0x2e,0x38,0x20,0x37,0x38,0x31,0x20,0x31,0x38,0x30,0x2e,0x38,0x20,0x37,
+ 0x38,0x31,0x20,0x31,0x34,0x38,0x2e,0x32,0x20,0x37,0x38,0x38,0x2e,0x31,0x20,0x31,
+ 0x34,0x34,0x2e,0x36,0x20,0x37,0x38,0x35,0x2e,0x36,0x20,0x31,0x33,0x39,0x2e,0x32,
+ 0x20,0x37,0x37,0x39,0x20,0x31,0x34,0x32,0x2e,0x35,0x20,0x37,0x35,0x39,0x20,0x31,
+ 0x33,0x32,0x2e,0x35,0x20,0x37,0x33,0x39,0x20,0x31,0x34,0x32,0x2e,0x35,0x20,0x37,
+ 0x33,0x39,0x20,0x31,0x38,0x38,0x2e,0x35,0x20,0x37,0x35,0x39,0x20,0x31,0x37,0x38,
+ 0x2e,0x35,0x20,0x37,0x37,0x39,0x20,0x31,0x38,0x38,0x2e,0x35,0x20,0x37,0x39,0x39,
+ 0x20,0x31,0x37,0x38,0x2e,0x35,0x20,0x38,0x31,0x39,0x20,0x31,0x38,0x38,0x2e,0x35,
+ 0x20,0x38,0x31,0x39,0x20,0x31,0x34,0x32,0x2e,0x35,0x20,0x38,0x31,0x32,0x2e,0x34,
+ 0x20,0x31,0x33,0x39,0x2e,0x32,0x5a,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,
+ 0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x2f,0x67,0x3e,0x3c,0x2f,0x73,
+ 0x76,0x67,0x3e,
+ // /home/hzk/Software_Architecture/src/Client/res/image/mapbtn.svg
+ 0x0,0x0,0x4,0x14,
+ 0x3c,
+ 0x73,0x76,0x67,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x39,0x36,0x22,0x20,0x68,
+ 0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x39,0x36,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,
+ 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
+ 0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,0x20,0x78,0x6d,
+ 0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
+ 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,
+ 0x39,0x2f,0x78,0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,
+ 0x63,0x65,0x3d,0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x20,0x6f,0x76,
+ 0x65,0x72,0x66,0x6c,0x6f,0x77,0x3d,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,
+ 0x3c,0x67,0x20,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3d,0x22,0x74,0x72,
+ 0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x28,0x2d,0x37,0x33,0x31,0x20,0x2d,0x31,0x30,
+ 0x38,0x29,0x22,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x37,0x39,
+ 0x39,0x20,0x31,0x33,0x38,0x2e,0x32,0x43,0x37,0x39,0x36,0x2e,0x36,0x20,0x31,0x33,
+ 0x38,0x2e,0x32,0x20,0x37,0x39,0x34,0x2e,0x36,0x20,0x31,0x33,0x36,0x2e,0x32,0x20,
+ 0x37,0x39,0x34,0x2e,0x37,0x20,0x31,0x33,0x33,0x2e,0x37,0x20,0x37,0x39,0x34,0x2e,
+ 0x37,0x20,0x31,0x33,0x31,0x2e,0x33,0x20,0x37,0x39,0x36,0x2e,0x37,0x20,0x31,0x32,
+ 0x39,0x2e,0x33,0x20,0x37,0x39,0x39,0x2e,0x31,0x20,0x31,0x32,0x39,0x2e,0x33,0x20,
+ 0x38,0x30,0x31,0x2e,0x35,0x20,0x31,0x32,0x39,0x2e,0x33,0x20,0x38,0x30,0x33,0x2e,
+ 0x35,0x20,0x31,0x33,0x31,0x2e,0x33,0x20,0x38,0x30,0x33,0x2e,0x35,0x20,0x31,0x33,
+ 0x33,0x2e,0x37,0x20,0x38,0x30,0x33,0x2e,0x35,0x20,0x31,0x33,0x34,0x2e,0x39,0x20,
+ 0x38,0x30,0x33,0x20,0x31,0x33,0x36,0x20,0x38,0x30,0x32,0x2e,0x32,0x20,0x31,0x33,
+ 0x36,0x2e,0x38,0x20,0x38,0x30,0x31,0x2e,0x33,0x20,0x31,0x33,0x37,0x2e,0x37,0x20,
+ 0x38,0x30,0x30,0x2e,0x32,0x20,0x31,0x33,0x38,0x2e,0x32,0x20,0x37,0x39,0x39,0x20,
+ 0x31,0x33,0x38,0x2e,0x32,0x5a,0x4d,0x37,0x39,0x34,0x2e,0x37,0x20,0x31,0x32,0x34,
+ 0x2e,0x33,0x43,0x37,0x39,0x32,0x2e,0x35,0x20,0x31,0x32,0x35,0x2e,0x31,0x20,0x37,
+ 0x39,0x30,0x2e,0x38,0x20,0x31,0x32,0x36,0x2e,0x38,0x20,0x37,0x38,0x39,0x2e,0x37,
+ 0x20,0x31,0x32,0x38,0x2e,0x38,0x20,0x37,0x38,0x38,0x2e,0x33,0x20,0x31,0x33,0x31,
+ 0x2e,0x35,0x20,0x37,0x38,0x38,0x2e,0x31,0x20,0x31,0x33,0x34,0x2e,0x36,0x20,0x37,
+ 0x38,0x39,0x2e,0x32,0x20,0x31,0x33,0x37,0x2e,0x34,0x4c,0x37,0x39,0x34,0x20,0x31,
+ 0x34,0x37,0x2e,0x38,0x20,0x37,0x39,0x37,0x2e,0x32,0x20,0x31,0x35,0x34,0x2e,0x34,
+ 0x43,0x37,0x39,0x37,0x2e,0x35,0x20,0x31,0x35,0x35,0x2e,0x31,0x20,0x37,0x39,0x38,
+ 0x2e,0x32,0x20,0x31,0x35,0x35,0x2e,0x35,0x20,0x37,0x39,0x39,0x20,0x31,0x35,0x35,
+ 0x2e,0x35,0x20,0x37,0x39,0x39,0x2e,0x38,0x20,0x31,0x35,0x35,0x2e,0x35,0x20,0x38,
+ 0x30,0x30,0x2e,0x35,0x20,0x31,0x35,0x35,0x2e,0x31,0x20,0x38,0x30,0x30,0x2e,0x38,
+ 0x20,0x31,0x35,0x34,0x2e,0x34,0x4c,0x38,0x30,0x34,0x20,0x31,0x34,0x37,0x2e,0x38,
+ 0x20,0x38,0x30,0x38,0x2e,0x38,0x20,0x31,0x33,0x37,0x2e,0x35,0x43,0x38,0x30,0x39,
+ 0x2e,0x33,0x20,0x31,0x33,0x36,0x2e,0x33,0x20,0x38,0x30,0x39,0x2e,0x35,0x20,0x31,
+ 0x33,0x35,0x20,0x38,0x30,0x39,0x2e,0x35,0x20,0x31,0x33,0x33,0x2e,0x37,0x20,0x38,
+ 0x30,0x39,0x2e,0x35,0x20,0x31,0x32,0x36,0x2e,0x37,0x20,0x38,0x30,0x32,0x2e,0x33,
+ 0x20,0x31,0x32,0x31,0x2e,0x34,0x20,0x37,0x39,0x34,0x2e,0x37,0x20,0x31,0x32,0x34,
+ 0x2e,0x33,0x5a,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,
+ 0x46,0x46,0x22,0x2f,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x37,
+ 0x37,0x37,0x20,0x31,0x38,0x30,0x2e,0x38,0x20,0x37,0x36,0x31,0x20,0x31,0x37,0x32,
+ 0x2e,0x38,0x20,0x37,0x36,0x31,0x20,0x31,0x34,0x30,0x2e,0x32,0x20,0x37,0x37,0x37,
+ 0x20,0x31,0x34,0x38,0x2e,0x32,0x20,0x37,0x37,0x37,0x20,0x31,0x38,0x30,0x2e,0x38,
+ 0x5a,0x4d,0x37,0x35,0x37,0x20,0x31,0x37,0x32,0x2e,0x38,0x20,0x37,0x34,0x35,0x20,
+ 0x31,0x37,0x38,0x2e,0x38,0x20,0x37,0x34,0x35,0x20,0x31,0x34,0x36,0x2e,0x32,0x20,
+ 0x37,0x35,0x37,0x20,0x31,0x34,0x30,0x2e,0x32,0x20,0x37,0x35,0x37,0x20,0x31,0x37,
+ 0x32,0x2e,0x38,0x5a,0x4d,0x38,0x31,0x32,0x2e,0x34,0x20,0x31,0x33,0x39,0x2e,0x32,
+ 0x20,0x38,0x31,0x32,0x2e,0x34,0x20,0x31,0x33,0x39,0x2e,0x32,0x20,0x38,0x30,0x39,
+ 0x2e,0x39,0x20,0x31,0x34,0x34,0x2e,0x36,0x20,0x38,0x31,0x33,0x20,0x31,0x34,0x36,
+ 0x2e,0x32,0x20,0x38,0x31,0x33,0x20,0x31,0x37,0x38,0x2e,0x38,0x20,0x38,0x30,0x31,
+ 0x20,0x31,0x37,0x32,0x2e,0x38,0x20,0x38,0x30,0x31,0x20,0x31,0x35,0x39,0x2e,0x35,
+ 0x20,0x37,0x39,0x37,0x20,0x31,0x35,0x39,0x2e,0x35,0x20,0x37,0x39,0x37,0x20,0x31,
+ 0x37,0x32,0x2e,0x38,0x20,0x37,0x38,0x31,0x20,0x31,0x38,0x30,0x2e,0x38,0x20,0x37,
+ 0x38,0x31,0x20,0x31,0x34,0x38,0x2e,0x32,0x20,0x37,0x38,0x38,0x2e,0x31,0x20,0x31,
+ 0x34,0x34,0x2e,0x36,0x20,0x37,0x38,0x35,0x2e,0x36,0x20,0x31,0x33,0x39,0x2e,0x32,
+ 0x20,0x37,0x37,0x39,0x20,0x31,0x34,0x32,0x2e,0x35,0x20,0x37,0x35,0x39,0x20,0x31,
+ 0x33,0x32,0x2e,0x35,0x20,0x37,0x33,0x39,0x20,0x31,0x34,0x32,0x2e,0x35,0x20,0x37,
+ 0x33,0x39,0x20,0x31,0x38,0x38,0x2e,0x35,0x20,0x37,0x35,0x39,0x20,0x31,0x37,0x38,
+ 0x2e,0x35,0x20,0x37,0x37,0x39,0x20,0x31,0x38,0x38,0x2e,0x35,0x20,0x37,0x39,0x39,
+ 0x20,0x31,0x37,0x38,0x2e,0x35,0x20,0x38,0x31,0x39,0x20,0x31,0x38,0x38,0x2e,0x35,
+ 0x20,0x38,0x31,0x39,0x20,0x31,0x34,0x32,0x2e,0x35,0x20,0x38,0x31,0x32,0x2e,0x34,
+ 0x20,0x31,0x33,0x39,0x2e,0x32,0x5a,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,
+ 0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x2f,0x67,0x3e,0x3c,0x2f,0x73,
+ 0x76,0x67,0x3e,
+ // /home/hzk/Software_Architecture/src/Client/res/image/location.svg
+ 0x0,0x0,0x2,0x61,
+ 0x3c,
+ 0x73,0x76,0x67,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x39,0x36,0x22,0x20,0x68,
+ 0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x39,0x36,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,
+ 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
+ 0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,0x20,0x78,0x6d,
+ 0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
+ 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,
+ 0x39,0x2f,0x78,0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,
+ 0x63,0x65,0x3d,0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x20,0x6f,0x76,
+ 0x65,0x72,0x66,0x6c,0x6f,0x77,0x3d,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,
+ 0x3c,0x67,0x20,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3d,0x22,0x74,0x72,
+ 0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x28,0x2d,0x31,0x30,0x33,0x37,0x20,0x2d,0x31,
+ 0x30,0x38,0x29,0x22,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x31,
+ 0x30,0x38,0x35,0x20,0x31,0x35,0x32,0x43,0x31,0x30,0x38,0x30,0x20,0x31,0x35,0x32,
+ 0x20,0x31,0x30,0x37,0x36,0x20,0x31,0x34,0x38,0x20,0x31,0x30,0x37,0x36,0x20,0x31,
+ 0x34,0x33,0x20,0x31,0x30,0x37,0x36,0x20,0x31,0x33,0x38,0x20,0x31,0x30,0x38,0x30,
+ 0x20,0x31,0x33,0x34,0x20,0x31,0x30,0x38,0x35,0x20,0x31,0x33,0x34,0x20,0x31,0x30,
+ 0x39,0x30,0x20,0x31,0x33,0x34,0x20,0x31,0x30,0x39,0x34,0x20,0x31,0x33,0x38,0x20,
+ 0x31,0x30,0x39,0x34,0x20,0x31,0x34,0x33,0x20,0x31,0x30,0x39,0x34,0x20,0x31,0x34,
+ 0x38,0x20,0x31,0x30,0x39,0x30,0x20,0x31,0x35,0x32,0x20,0x31,0x30,0x38,0x35,0x20,
+ 0x31,0x35,0x32,0x5a,0x4d,0x31,0x30,0x38,0x35,0x20,0x31,0x32,0x32,0x43,0x31,0x30,
+ 0x37,0x38,0x2e,0x31,0x20,0x31,0x32,0x32,0x20,0x31,0x30,0x37,0x31,0x2e,0x36,0x20,
+ 0x31,0x32,0x35,0x2e,0x34,0x20,0x31,0x30,0x36,0x37,0x2e,0x37,0x20,0x31,0x33,0x31,
+ 0x2e,0x32,0x20,0x31,0x30,0x36,0x33,0x2e,0x38,0x20,0x31,0x33,0x36,0x2e,0x39,0x20,
+ 0x31,0x30,0x36,0x33,0x20,0x31,0x34,0x34,0x2e,0x32,0x20,0x31,0x30,0x36,0x35,0x2e,
+ 0x35,0x20,0x31,0x35,0x30,0x2e,0x37,0x4c,0x31,0x30,0x37,0x35,0x20,0x31,0x37,0x31,
+ 0x2e,0x37,0x20,0x31,0x30,0x38,0x33,0x2e,0x32,0x20,0x31,0x38,0x38,0x2e,0x39,0x43,
+ 0x31,0x30,0x38,0x33,0x2e,0x35,0x20,0x31,0x38,0x39,0x2e,0x36,0x20,0x31,0x30,0x38,
+ 0x34,0x2e,0x32,0x20,0x31,0x39,0x30,0x20,0x31,0x30,0x38,0x35,0x20,0x31,0x39,0x30,
+ 0x20,0x31,0x30,0x38,0x35,0x2e,0x38,0x20,0x31,0x39,0x30,0x20,0x31,0x30,0x38,0x36,
+ 0x2e,0x35,0x20,0x31,0x38,0x39,0x2e,0x36,0x20,0x31,0x30,0x38,0x36,0x2e,0x38,0x20,
+ 0x31,0x38,0x38,0x2e,0x39,0x4c,0x31,0x30,0x39,0x35,0x20,0x31,0x37,0x31,0x2e,0x37,
+ 0x20,0x31,0x31,0x30,0x34,0x2e,0x35,0x20,0x31,0x35,0x30,0x2e,0x37,0x43,0x31,0x31,
+ 0x30,0x37,0x20,0x31,0x34,0x34,0x2e,0x32,0x20,0x31,0x31,0x30,0x36,0x2e,0x32,0x20,
+ 0x31,0x33,0x36,0x2e,0x39,0x20,0x31,0x31,0x30,0x32,0x2e,0x33,0x20,0x31,0x33,0x31,
+ 0x2e,0x32,0x20,0x31,0x30,0x39,0x38,0x2e,0x34,0x20,0x31,0x32,0x35,0x2e,0x34,0x20,
+ 0x31,0x30,0x39,0x31,0x2e,0x39,0x20,0x31,0x32,0x32,0x20,0x31,0x30,0x38,0x35,0x20,
+ 0x31,0x32,0x32,0x5a,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,
+ 0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x2f,0x67,0x3e,0x3c,0x2f,0x73,0x76,0x67,0x3e,
+
+ // /home/hzk/Software_Architecture/src/Client/res/image/UAV.svg
+ 0x0,0x0,0x8,0x1a,
+ 0x3c,
+ 0x73,0x76,0x67,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x39,0x36,0x22,0x20,0x68,
+ 0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x39,0x36,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,
+ 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
+ 0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,0x20,0x78,0x6d,
+ 0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
+ 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,
+ 0x39,0x2f,0x78,0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,
+ 0x63,0x65,0x3d,0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x20,0x6f,0x76,
+ 0x65,0x72,0x66,0x6c,0x6f,0x77,0x3d,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,
+ 0x3c,0x67,0x20,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3d,0x22,0x74,0x72,
+ 0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x28,0x2d,0x34,0x35,0x38,0x20,0x2d,0x39,0x34,
+ 0x29,0x22,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x35,0x34,0x38,
+ 0x20,0x31,0x31,0x39,0x20,0x35,0x33,0x35,0x20,0x31,0x31,0x39,0x20,0x35,0x33,0x35,
+ 0x20,0x31,0x31,0x38,0x43,0x35,0x33,0x35,0x20,0x31,0x31,0x36,0x2e,0x38,0x39,0x35,
+ 0x20,0x35,0x33,0x34,0x2e,0x31,0x30,0x35,0x20,0x31,0x31,0x36,0x20,0x35,0x33,0x33,
+ 0x20,0x31,0x31,0x36,0x20,0x35,0x33,0x31,0x2e,0x38,0x39,0x35,0x20,0x31,0x31,0x36,
+ 0x20,0x35,0x33,0x31,0x20,0x31,0x31,0x36,0x2e,0x38,0x39,0x35,0x20,0x35,0x33,0x31,
+ 0x20,0x31,0x31,0x38,0x4c,0x35,0x33,0x31,0x20,0x31,0x31,0x39,0x20,0x35,0x31,0x38,
+ 0x20,0x31,0x31,0x39,0x43,0x35,0x31,0x36,0x2e,0x38,0x39,0x35,0x20,0x31,0x31,0x39,
+ 0x20,0x35,0x31,0x36,0x20,0x31,0x31,0x39,0x2e,0x38,0x39,0x35,0x20,0x35,0x31,0x36,
+ 0x20,0x31,0x32,0x31,0x20,0x35,0x31,0x36,0x20,0x31,0x32,0x32,0x2e,0x31,0x30,0x35,
+ 0x20,0x35,0x31,0x36,0x2e,0x38,0x39,0x35,0x20,0x31,0x32,0x33,0x20,0x35,0x31,0x38,
+ 0x20,0x31,0x32,0x33,0x4c,0x35,0x33,0x31,0x20,0x31,0x32,0x33,0x20,0x35,0x33,0x31,
+ 0x20,0x31,0x32,0x36,0x20,0x35,0x33,0x30,0x20,0x31,0x32,0x36,0x43,0x35,0x32,0x39,
+ 0x2e,0x34,0x34,0x38,0x20,0x31,0x32,0x36,0x20,0x35,0x32,0x39,0x20,0x31,0x32,0x36,
+ 0x2e,0x34,0x34,0x38,0x20,0x35,0x32,0x39,0x20,0x31,0x32,0x37,0x4c,0x35,0x32,0x39,
+ 0x20,0x31,0x32,0x39,0x2e,0x31,0x39,0x33,0x20,0x35,0x32,0x34,0x2e,0x36,0x33,0x31,
+ 0x20,0x31,0x32,0x38,0x2e,0x34,0x39,0x33,0x43,0x35,0x31,0x32,0x2e,0x32,0x38,0x39,
+ 0x20,0x31,0x32,0x36,0x2e,0x35,0x30,0x36,0x20,0x34,0x39,0x39,0x2e,0x37,0x31,0x20,
+ 0x31,0x32,0x36,0x2e,0x35,0x30,0x36,0x20,0x34,0x38,0x37,0x2e,0x33,0x36,0x38,0x20,
+ 0x31,0x32,0x38,0x2e,0x34,0x39,0x33,0x4c,0x34,0x38,0x33,0x20,0x31,0x32,0x39,0x2e,
+ 0x31,0x39,0x33,0x20,0x34,0x38,0x33,0x20,0x31,0x32,0x37,0x43,0x34,0x38,0x33,0x20,
+ 0x31,0x32,0x36,0x2e,0x34,0x34,0x38,0x20,0x34,0x38,0x32,0x2e,0x35,0x35,0x32,0x20,
+ 0x31,0x32,0x36,0x20,0x34,0x38,0x32,0x20,0x31,0x32,0x36,0x4c,0x34,0x38,0x31,0x20,
+ 0x31,0x32,0x36,0x20,0x34,0x38,0x31,0x20,0x31,0x32,0x33,0x20,0x34,0x39,0x34,0x20,
+ 0x31,0x32,0x33,0x43,0x34,0x39,0x35,0x2e,0x31,0x30,0x35,0x20,0x31,0x32,0x33,0x20,
+ 0x34,0x39,0x36,0x20,0x31,0x32,0x32,0x2e,0x31,0x30,0x35,0x20,0x34,0x39,0x36,0x20,
+ 0x31,0x32,0x31,0x20,0x34,0x39,0x36,0x20,0x31,0x31,0x39,0x2e,0x38,0x39,0x35,0x20,
+ 0x34,0x39,0x35,0x2e,0x31,0x30,0x35,0x20,0x31,0x31,0x39,0x20,0x34,0x39,0x34,0x20,
+ 0x31,0x31,0x39,0x4c,0x34,0x38,0x31,0x20,0x31,0x31,0x39,0x20,0x34,0x38,0x31,0x20,
+ 0x31,0x31,0x38,0x43,0x34,0x38,0x31,0x20,0x31,0x31,0x36,0x2e,0x38,0x39,0x35,0x20,
+ 0x34,0x38,0x30,0x2e,0x31,0x30,0x35,0x20,0x31,0x31,0x36,0x20,0x34,0x37,0x39,0x20,
+ 0x31,0x31,0x36,0x20,0x34,0x37,0x37,0x2e,0x38,0x39,0x35,0x20,0x31,0x31,0x36,0x20,
+ 0x34,0x37,0x37,0x20,0x31,0x31,0x36,0x2e,0x38,0x39,0x35,0x20,0x34,0x37,0x37,0x20,
+ 0x31,0x31,0x38,0x4c,0x34,0x37,0x37,0x20,0x31,0x31,0x39,0x20,0x34,0x36,0x34,0x20,
+ 0x31,0x31,0x39,0x43,0x34,0x36,0x32,0x2e,0x38,0x39,0x35,0x20,0x31,0x31,0x39,0x20,
+ 0x34,0x36,0x32,0x20,0x31,0x31,0x39,0x2e,0x38,0x39,0x35,0x20,0x34,0x36,0x32,0x20,
+ 0x31,0x32,0x31,0x20,0x34,0x36,0x32,0x20,0x31,0x32,0x32,0x2e,0x31,0x30,0x35,0x20,
+ 0x34,0x36,0x32,0x2e,0x38,0x39,0x35,0x20,0x31,0x32,0x33,0x20,0x34,0x36,0x34,0x20,
+ 0x31,0x32,0x33,0x4c,0x34,0x37,0x37,0x20,0x31,0x32,0x33,0x20,0x34,0x37,0x37,0x20,
+ 0x31,0x32,0x36,0x20,0x34,0x37,0x36,0x20,0x31,0x32,0x36,0x43,0x34,0x37,0x35,0x2e,
+ 0x34,0x34,0x38,0x20,0x31,0x32,0x36,0x20,0x34,0x37,0x35,0x20,0x31,0x32,0x36,0x2e,
+ 0x34,0x34,0x38,0x20,0x34,0x37,0x35,0x20,0x31,0x32,0x37,0x4c,0x34,0x37,0x35,0x20,
+ 0x31,0x33,0x30,0x2e,0x34,0x38,0x20,0x34,0x37,0x32,0x2e,0x38,0x31,0x32,0x20,0x31,
+ 0x33,0x30,0x2e,0x38,0x33,0x33,0x43,0x34,0x37,0x31,0x2e,0x30,0x30,0x34,0x20,0x31,
+ 0x33,0x31,0x2e,0x31,0x30,0x37,0x20,0x34,0x36,0x39,0x2e,0x37,0x36,0x20,0x31,0x33,
+ 0x32,0x2e,0x37,0x39,0x35,0x20,0x34,0x37,0x30,0x2e,0x30,0x33,0x34,0x20,0x31,0x33,
+ 0x34,0x2e,0x36,0x30,0x33,0x20,0x34,0x37,0x30,0x2e,0x32,0x35,0x37,0x20,0x31,0x33,
+ 0x36,0x2e,0x30,0x37,0x31,0x20,0x34,0x37,0x31,0x2e,0x34,0x33,0x31,0x20,0x31,0x33,
+ 0x37,0x2e,0x32,0x31,0x32,0x20,0x34,0x37,0x32,0x2e,0x39,0x30,0x35,0x20,0x31,0x33,
+ 0x37,0x2e,0x33,0x39,0x33,0x4c,0x34,0x37,0x38,0x2e,0x39,0x36,0x36,0x20,0x31,0x33,
+ 0x38,0x2e,0x31,0x39,0x33,0x43,0x34,0x38,0x31,0x2e,0x39,0x31,0x20,0x31,0x33,0x38,
+ 0x2e,0x35,0x38,0x33,0x20,0x34,0x38,0x34,0x2e,0x38,0x30,0x39,0x20,0x31,0x33,0x39,
+ 0x2e,0x32,0x36,0x33,0x20,0x34,0x38,0x37,0x2e,0x36,0x31,0x39,0x20,0x31,0x34,0x30,
+ 0x2e,0x32,0x32,0x34,0x4c,0x34,0x38,0x38,0x2e,0x38,0x35,0x35,0x20,0x31,0x34,0x30,
+ 0x2e,0x36,0x34,0x37,0x43,0x34,0x39,0x30,0x2e,0x30,0x30,0x37,0x20,0x31,0x34,0x31,
+ 0x2e,0x30,0x34,0x31,0x20,0x34,0x39,0x31,0x2e,0x31,0x34,0x20,0x31,0x34,0x31,0x2e,
+ 0x34,0x38,0x31,0x20,0x34,0x39,0x32,0x2e,0x32,0x35,0x35,0x20,0x31,0x34,0x31,0x2e,
+ 0x39,0x36,0x38,0x4c,0x34,0x38,0x36,0x20,0x31,0x35,0x37,0x2e,0x36,0x31,0x35,0x20,
+ 0x34,0x38,0x36,0x20,0x31,0x36,0x38,0x20,0x34,0x39,0x30,0x20,0x31,0x36,0x38,0x20,
+ 0x34,0x39,0x30,0x20,0x31,0x35,0x38,0x2e,0x33,0x38,0x35,0x20,0x34,0x39,0x35,0x2e,
+ 0x38,0x36,0x31,0x20,0x31,0x34,0x33,0x2e,0x37,0x33,0x32,0x20,0x34,0x39,0x36,0x2e,
+ 0x32,0x36,0x31,0x20,0x31,0x34,0x33,0x2e,0x39,0x34,0x33,0x43,0x34,0x39,0x37,0x2e,
+ 0x35,0x36,0x33,0x20,0x31,0x34,0x34,0x2e,0x36,0x33,0x37,0x20,0x34,0x39,0x39,0x2e,
+ 0x30,0x31,0x36,0x20,0x31,0x34,0x35,0x20,0x35,0x30,0x30,0x2e,0x34,0x39,0x32,0x20,
+ 0x31,0x34,0x35,0x4c,0x35,0x30,0x33,0x20,0x31,0x34,0x35,0x20,0x35,0x30,0x33,0x20,
+ 0x31,0x35,0x30,0x20,0x35,0x30,0x30,0x20,0x31,0x35,0x30,0x43,0x34,0x39,0x38,0x2e,
+ 0x38,0x39,0x35,0x20,0x31,0x35,0x30,0x20,0x34,0x39,0x38,0x20,0x31,0x35,0x30,0x2e,
+ 0x38,0x39,0x35,0x20,0x34,0x39,0x38,0x20,0x31,0x35,0x32,0x4c,0x34,0x39,0x38,0x20,
+ 0x31,0x36,0x30,0x43,0x34,0x39,0x38,0x20,0x31,0x36,0x31,0x2e,0x31,0x30,0x35,0x20,
+ 0x34,0x39,0x38,0x2e,0x38,0x39,0x35,0x20,0x31,0x36,0x32,0x20,0x35,0x30,0x30,0x20,
+ 0x31,0x36,0x32,0x4c,0x35,0x31,0x32,0x20,0x31,0x36,0x32,0x43,0x35,0x31,0x33,0x2e,
+ 0x31,0x30,0x35,0x20,0x31,0x36,0x32,0x20,0x35,0x31,0x34,0x20,0x31,0x36,0x31,0x2e,
+ 0x31,0x30,0x35,0x20,0x35,0x31,0x34,0x20,0x31,0x36,0x30,0x4c,0x35,0x31,0x34,0x20,
+ 0x31,0x35,0x32,0x43,0x35,0x31,0x34,0x20,0x31,0x35,0x30,0x2e,0x38,0x39,0x35,0x20,
+ 0x35,0x31,0x33,0x2e,0x31,0x30,0x35,0x20,0x31,0x35,0x30,0x20,0x35,0x31,0x32,0x20,
+ 0x31,0x35,0x30,0x4c,0x35,0x30,0x39,0x20,0x31,0x35,0x30,0x20,0x35,0x30,0x39,0x20,
+ 0x31,0x34,0x35,0x20,0x35,0x31,0x31,0x2e,0x35,0x30,0x37,0x20,0x31,0x34,0x35,0x43,
+ 0x35,0x31,0x32,0x2e,0x39,0x38,0x34,0x20,0x31,0x34,0x35,0x2e,0x30,0x30,0x31,0x20,
+ 0x35,0x31,0x34,0x2e,0x34,0x33,0x38,0x20,0x31,0x34,0x34,0x2e,0x36,0x33,0x37,0x20,
+ 0x35,0x31,0x35,0x2e,0x37,0x34,0x32,0x20,0x31,0x34,0x33,0x2e,0x39,0x34,0x33,0x4c,
+ 0x35,0x31,0x36,0x2e,0x31,0x34,0x32,0x20,0x31,0x34,0x33,0x2e,0x37,0x33,0x31,0x20,
+ 0x35,0x32,0x32,0x20,0x31,0x35,0x38,0x2e,0x33,0x38,0x35,0x20,0x35,0x32,0x32,0x20,
+ 0x31,0x36,0x38,0x20,0x35,0x32,0x36,0x20,0x31,0x36,0x38,0x20,0x35,0x32,0x36,0x20,
+ 0x31,0x35,0x37,0x2e,0x36,0x31,0x35,0x20,0x35,0x31,0x39,0x2e,0x37,0x34,0x32,0x20,
+ 0x31,0x34,0x31,0x2e,0x39,0x37,0x43,0x35,0x32,0x30,0x2e,0x38,0x35,0x37,0x20,0x31,
+ 0x34,0x31,0x2e,0x34,0x38,0x35,0x20,0x35,0x32,0x31,0x2e,0x39,0x39,0x31,0x20,0x31,
+ 0x34,0x31,0x2e,0x30,0x34,0x35,0x20,0x35,0x32,0x33,0x2e,0x31,0x34,0x32,0x20,0x31,
+ 0x34,0x30,0x2e,0x36,0x35,0x4c,0x35,0x32,0x34,0x2e,0x33,0x37,0x38,0x20,0x31,0x34,
+ 0x30,0x2e,0x32,0x32,0x37,0x43,0x35,0x32,0x37,0x2e,0x31,0x38,0x39,0x20,0x31,0x33,
+ 0x39,0x2e,0x32,0x36,0x38,0x20,0x35,0x33,0x30,0x2e,0x30,0x38,0x39,0x20,0x31,0x33,
+ 0x38,0x2e,0x35,0x38,0x39,0x20,0x35,0x33,0x33,0x2e,0x30,0x33,0x34,0x20,0x31,0x33,
+ 0x38,0x2e,0x32,0x4c,0x35,0x33,0x39,0x2e,0x30,0x39,0x34,0x20,0x31,0x33,0x37,0x2e,
+ 0x34,0x43,0x35,0x34,0x30,0x2e,0x39,0x30,0x39,0x20,0x31,0x33,0x37,0x2e,0x31,0x37,
+ 0x37,0x20,0x35,0x34,0x32,0x2e,0x32,0x20,0x31,0x33,0x35,0x2e,0x35,0x32,0x36,0x20,
+ 0x35,0x34,0x31,0x2e,0x39,0x37,0x37,0x20,0x31,0x33,0x33,0x2e,0x37,0x31,0x31,0x20,
+ 0x35,0x34,0x31,0x2e,0x37,0x39,0x37,0x20,0x31,0x33,0x32,0x2e,0x32,0x33,0x36,0x20,
+ 0x35,0x34,0x30,0x2e,0x36,0x35,0x36,0x20,0x31,0x33,0x31,0x2e,0x30,0x36,0x33,0x20,
+ 0x35,0x33,0x39,0x2e,0x31,0x38,0x37,0x20,0x31,0x33,0x30,0x2e,0x38,0x34,0x4c,0x35,
+ 0x33,0x37,0x20,0x31,0x33,0x30,0x2e,0x34,0x38,0x20,0x35,0x33,0x37,0x20,0x31,0x32,
+ 0x37,0x43,0x35,0x33,0x37,0x20,0x31,0x32,0x36,0x2e,0x34,0x34,0x38,0x20,0x35,0x33,
+ 0x36,0x2e,0x35,0x35,0x32,0x20,0x31,0x32,0x36,0x20,0x35,0x33,0x36,0x20,0x31,0x32,
+ 0x36,0x4c,0x35,0x33,0x35,0x20,0x31,0x32,0x36,0x20,0x35,0x33,0x35,0x20,0x31,0x32,
+ 0x33,0x20,0x35,0x34,0x38,0x20,0x31,0x32,0x33,0x43,0x35,0x34,0x39,0x2e,0x31,0x30,
+ 0x35,0x20,0x31,0x32,0x33,0x20,0x35,0x35,0x30,0x20,0x31,0x32,0x32,0x2e,0x31,0x30,
+ 0x35,0x20,0x35,0x35,0x30,0x20,0x31,0x32,0x31,0x20,0x35,0x35,0x30,0x20,0x31,0x31,
+ 0x39,0x2e,0x38,0x39,0x35,0x20,0x35,0x34,0x39,0x2e,0x31,0x30,0x35,0x20,0x31,0x31,
+ 0x39,0x20,0x35,0x34,0x38,0x20,0x31,0x31,0x39,0x5a,0x4d,0x35,0x30,0x36,0x20,0x31,
+ 0x35,0x38,0x2e,0x35,0x43,0x35,0x30,0x34,0x2e,0x36,0x31,0x39,0x20,0x31,0x35,0x38,
+ 0x2e,0x35,0x20,0x35,0x30,0x33,0x2e,0x35,0x20,0x31,0x35,0x37,0x2e,0x33,0x38,0x31,
+ 0x20,0x35,0x30,0x33,0x2e,0x35,0x20,0x31,0x35,0x36,0x20,0x35,0x30,0x33,0x2e,0x35,
+ 0x20,0x31,0x35,0x34,0x2e,0x36,0x31,0x39,0x20,0x35,0x30,0x34,0x2e,0x36,0x31,0x39,
+ 0x20,0x31,0x35,0x33,0x2e,0x35,0x20,0x35,0x30,0x36,0x20,0x31,0x35,0x33,0x2e,0x35,
+ 0x20,0x35,0x30,0x37,0x2e,0x33,0x38,0x31,0x20,0x31,0x35,0x33,0x2e,0x35,0x20,0x35,
+ 0x30,0x38,0x2e,0x35,0x20,0x31,0x35,0x34,0x2e,0x36,0x31,0x39,0x20,0x35,0x30,0x38,
+ 0x2e,0x35,0x20,0x31,0x35,0x36,0x20,0x35,0x30,0x38,0x2e,0x35,0x20,0x31,0x35,0x37,
+ 0x2e,0x33,0x38,0x31,0x20,0x35,0x30,0x37,0x2e,0x33,0x38,0x31,0x20,0x31,0x35,0x38,
+ 0x2e,0x35,0x20,0x35,0x30,0x36,0x20,0x31,0x35,0x38,0x2e,0x35,0x5a,0x22,0x20,0x66,
+ 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,
+ 0x2f,0x67,0x3e,0x3c,0x2f,0x73,0x76,0x67,0x3e,
+ // /home/hzk/Software_Architecture/src/Client/res/image/health.png
+ 0x0,0x0,0x4,0x27,
+ 0x89,
+ 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+ 0x0,0x0,0x60,0x0,0x0,0x0,0x60,0x8,0x3,0x0,0x0,0x0,0xd5,0x46,0x87,0xa,
+ 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
+ 0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,0x0,0x0,0x0,
+ 0x33,0x50,0x4c,0x54,0x45,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,0xb7,0x95,0xe2,0x82,0x0,0x0,0x0,0x10,
+ 0x74,0x52,0x4e,0x53,0x0,0x10,0x20,0x30,0x40,0x50,0x60,0x70,0x80,0x8f,0x9f,0xaf,
+ 0xbf,0xcf,0xdf,0xef,0x23,0x1a,0x82,0x8a,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,
+ 0x0,0x0,0xe,0xc3,0x0,0x0,0xe,0xc3,0x1,0xc7,0x6f,0xa8,0x64,0x0,0x0,0x3,
+ 0x61,0x49,0x44,0x41,0x54,0x68,0x43,0xed,0x98,0x89,0x8e,0xe3,0x20,0xc,0x86,0x87,
+ 0xa6,0x69,0xd3,0xa6,0x6d,0xf2,0xfe,0x4f,0xbb,0xf8,0x22,0x1,0x6c,0x8e,0x69,0x56,
+ 0xab,0x95,0xf2,0x49,0xa3,0xc9,0x1,0x6,0x7e,0xdb,0xe0,0xf4,0xe7,0xe4,0xe4,0xe4,
+ 0xe4,0xe4,0xff,0xc7,0x5d,0x2e,0x7c,0x65,0xe1,0x5b,0x38,0xbe,0xec,0xc5,0xdd,0x5f,
+ 0xcb,0xea,0xf9,0xcc,0x37,0x7e,0x92,0xe2,0xee,0x4f,0x6c,0xb1,0xce,0xf7,0xfe,0x41,
+ 0xdc,0x83,0xfa,0x12,0xf,0x7e,0xba,0xc7,0x4d,0xb5,0x16,0x25,0x22,0xf3,0x9e,0x25,
+ 0x5b,0xc5,0xf5,0xc3,0xaf,0x98,0xbc,0x45,0x1,0xf7,0xe4,0x5e,0x3b,0x92,0x29,0xa6,
+ 0x33,0xf0,0xbc,0x6b,0xfe,0xa,0xb8,0x99,0xbb,0x44,0xbc,0xf8,0x2d,0x72,0xe7,0x87,
+ 0x11,0x4b,0xe3,0x8,0xee,0xc5,0x1d,0x12,0x66,0x7e,0xef,0x51,0xed,0xfb,0x78,0x68,
+ 0xf2,0xb5,0x65,0x7f,0x5d,0x83,0xca,0x86,0x7d,0xaf,0x12,0x37,0x28,0x62,0xf6,0x5e,
+ 0xd7,0x91,0x5a,0xdc,0x72,0xfd,0x85,0x48,0x47,0x9d,0xc1,0xee,0xbd,0xae,0x3,0xb4,
+ 0xb8,0x94,0x5a,0xf0,0x1c,0x6c,0x6c,0x81,0x80,0xf,0x34,0x51,0x43,0x40,0xa8,0x8a,
+ 0x34,0x72,0x43,0x3,0xef,0x86,0x4a,0x8b,0xda,0x12,0x8a,0xb,0xf0,0x91,0xe8,0xdc,
+ 0x9b,0x2f,0xd,0x2a,0x4b,0x18,0xb8,0x99,0xc9,0x73,0xe2,0xb,0x93,0x72,0x32,0x58,
+ 0x1,0x3e,0xc,0xa2,0x7c,0xc9,0xc3,0xc8,0x9d,0x4d,0xe9,0x28,0x7b,0x4,0xe0,0x85,
+ 0x75,0x7c,0x59,0x65,0x97,0x8f,0xa,0x7a,0x84,0xa0,0xae,0x15,0xed,0x3,0x18,0x69,
+ 0x26,0xba,0x95,0x9,0x5e,0x3d,0xf8,0xa6,0xc6,0x82,0x86,0x2c,0x92,0x3d,0x98,0xb9,
+ 0xc2,0xab,0x4a,0x78,0x6e,0xa0,0x21,0xb,0x75,0x0,0x8a,0xbc,0x6a,0x80,0x9,0xd8,
+ 0xda,0x42,0x4d,0x3,0x54,0xa8,0xd9,0xcb,0x65,0x1f,0xa8,0x42,0xa3,0x42,0xc9,0xea,
+ 0xec,0x68,0x2d,0x67,0x9a,0x96,0x46,0xd2,0x63,0x37,0xf8,0x72,0xb5,0x15,0x2b,0x9f,
+ 0xce,0x57,0x6e,0xb5,0x87,0x14,0x8a,0x6,0x87,0x47,0x46,0xca,0xd4,0x36,0x23,0xc5,
+ 0xcb,0xa0,0x10,0xec,0xd3,0x5b,0x18,0x2d,0x70,0x72,0x59,0x51,0x55,0x39,0x37,0x73,
+ 0x27,0x50,0x96,0xf9,0xbf,0xcd,0xcb,0x98,0xac,0x86,0xd3,0xcb,0x2e,0xd0,0xe6,0x5,
+ 0x72,0x8c,0x2b,0xcc,0x39,0xac,0x8e,0x54,0xd0,0xb3,0x5e,0x4,0xb5,0xc8,0xe7,0x5,
+ 0xa,0x4d,0x78,0x96,0x49,0xc,0x73,0x20,0xde,0xf8,0x36,0x2,0xd5,0x2b,0x92,0xfa,
+ 0xe,0x97,0xfc,0xc1,0x3d,0x52,0xe4,0xe3,0x49,0xaa,0x1a,0x95,0xb7,0x3a,0xe0,0xc2,
+ 0x2d,0x5,0x52,0x68,0x7d,0xd2,0x3f,0x44,0xdc,0xa8,0xa5,0x3d,0xe7,0x4c,0x89,0x64,
+ 0x9,0xa4,0x10,0x2e,0x84,0xa7,0xc,0x93,0x74,0x20,0x99,0x92,0x95,0x35,0x17,0x3,
+ 0xb8,0x84,0xd1,0x9,0xf0,0xc8,0x4f,0x15,0xf7,0x48,0x4a,0x5f,0x28,0x8f,0x46,0x5e,
+ 0x98,0x67,0xf1,0xa5,0x35,0x34,0xc4,0xbb,0x86,0x5,0x50,0x74,0x44,0x1b,0xa,0x76,
+ 0x5,0x5d,0xd0,0xcb,0xe8,0xc6,0x39,0xc,0x28,0x45,0x2f,0x9e,0xd5,0x75,0xf,0x0,
+ 0xb8,0x84,0xfd,0xc1,0x87,0xf1,0x18,0xbc,0xc,0x46,0x7c,0x13,0x18,0x10,0xd4,0x94,
+ 0x72,0xf,0xf3,0xbc,0x69,0x1,0xd4,0x6f,0x2b,0x64,0x1d,0x85,0x63,0xd0,0x84,0x9d,
+ 0x2,0x3,0xfa,0x37,0x12,0xf6,0x58,0x8d,0xb5,0x7e,0x24,0x38,0xc,0x8f,0x45,0x80,
+ 0x9b,0x30,0x71,0x9,0x5b,0x72,0x35,0x99,0x1c,0xb8,0x55,0x6b,0x75,0xbd,0xc5,0xe3,
+ 0x1e,0x10,0x1d,0xc2,0x48,0x56,0x82,0x4e,0x40,0x21,0x43,0xa5,0x54,0x2d,0x1b,0x37,
+ 0xb4,0x5d,0x80,0x37,0xb,0xd1,0x3e,0x98,0xb,0x5f,0x13,0x3d,0x5f,0x51,0x5a,0x92,
+ 0x82,0xf6,0xf,0x52,0x6,0x55,0x83,0xd4,0x83,0x1b,0xb1,0xff,0xae,0x6e,0x12,0x7b,
+ 0x14,0x91,0x40,0x8e,0x9,0xe7,0x4d,0x5e,0xe7,0xea,0x41,0xf2,0x72,0xc1,0xca,0xbb,
+ 0x9d,0x24,0x9f,0x3d,0x30,0xf7,0x11,0x93,0x80,0x37,0x3d,0x74,0x69,0xc8,0xe6,0x7d,
+ 0x5c,0x37,0x91,0x55,0x48,0xe8,0x65,0xd0,0x59,0xe,0x4b,0x30,0x19,0x4a,0x4d,0x16,
+ 0xac,0x83,0x74,0xd3,0x23,0x2f,0x83,0xe,0xe1,0xe8,0x9c,0xc6,0x30,0xff,0xb6,0xaf,
+ 0xb3,0x98,0xec,0x78,0x16,0x91,0x95,0x4d,0xd4,0x17,0x1,0xbf,0x20,0xad,0xb4,0x59,
+ 0x65,0x2d,0x49,0x24,0x9f,0x3b,0x49,0x1c,0xcd,0x71,0xae,0xe4,0x48,0xbf,0x3,0x98,
+ 0x78,0x4,0xfa,0x82,0xa4,0x24,0x88,0x98,0x7f,0xe1,0x0,0x26,0xaa,0x24,0x29,0xf0,
+ 0xf3,0x4f,0x94,0xbe,0xc,0x4b,0x88,0x82,0x15,0x3,0x3f,0xab,0x5e,0xbf,0xb2,0xbf,
+ 0x6d,0x64,0x0,0x6c,0xfd,0x59,0xc5,0xd8,0xfe,0x13,0x88,0xce,0x5e,0x72,0xf0,0x72,
+ 0x7a,0xe,0x7f,0xbe,0xb4,0x1f,0x4f,0xf9,0x46,0x7,0xef,0x8e,0xde,0x1d,0x48,0x43,
+ 0xab,0x87,0x85,0xa5,0xe3,0x8,0xb0,0xb1,0x3f,0x6d,0x8e,0xb1,0xef,0x47,0xc8,0x43,
+ 0x1f,0x39,0xca,0xbe,0x35,0xc2,0xf7,0xfe,0xdd,0xd0,0x7e,0xc1,0xf9,0x36,0x3e,0x63,
+ 0xf2,0x9f,0x40,0x5e,0x5f,0xe5,0x57,0x4e,0x3a,0xc2,0xe3,0x60,0xfb,0x7e,0x84,0x68,
+ 0x8f,0xe8,0xa9,0x20,0x9a,0xd9,0x92,0x78,0xe9,0x3e,0x80,0xdb,0x90,0xb3,0xb2,0xeb,
+ 0x47,0xde,0x2e,0x28,0xa9,0x8f,0xb,0xff,0x9c,0xc1,0x9f,0xc7,0xc7,0x86,0x67,0x8a,
+ 0x7b,0xff,0x5d,0xfb,0x9e,0xc3,0xc3,0xf3,0xe4,0xe4,0xe4,0xe4,0xe4,0xdf,0xf3,0xf3,
+ 0xf3,0x7,0xd1,0x68,0x99,0x36,0xa2,0x78,0x13,0x77,0x0,0x0,0x0,0x0,0x49,0x45,
+ 0x4e,0x44,0xae,0x42,0x60,0x82,
+ // /home/hzk/Software_Architecture/src/Client/res/image/uav.png
+ 0x0,0x0,0x2,0xc4,
+ 0x89,
+ 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+ 0x0,0x0,0x60,0x0,0x0,0x0,0x60,0x8,0x3,0x0,0x0,0x0,0xd5,0x46,0x87,0xa,
+ 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
+ 0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,0x0,0x0,0x0,
+ 0x33,0x50,0x4c,0x54,0x45,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,0xb7,0x95,0xe2,0x82,0x0,0x0,0x0,0x10,
+ 0x74,0x52,0x4e,0x53,0x0,0x10,0x20,0x30,0x40,0x50,0x60,0x70,0x80,0x8f,0x9f,0xaf,
+ 0xbf,0xcf,0xdf,0xef,0x23,0x1a,0x82,0x8a,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,
+ 0x0,0x0,0xe,0xc3,0x0,0x0,0xe,0xc3,0x1,0xc7,0x6f,0xa8,0x64,0x0,0x0,0x1,
+ 0xfe,0x49,0x44,0x41,0x54,0x68,0x43,0xed,0x97,0xdb,0xb6,0xab,0x20,0xc,0x45,0xbd,
+ 0x2b,0x2,0xe2,0xff,0x7f,0xed,0x26,0x10,0x15,0xaa,0x28,0x11,0xcf,0xc3,0x19,0x23,
+ 0xf3,0xa5,0x91,0x92,0x15,0x65,0x49,0x4a,0x2b,0x86,0x61,0x18,0x86,0x61,0x98,0x7f,
+ 0x46,0xab,0x55,0x87,0x21,0x1,0x42,0x96,0x5a,0xd7,0x5,0x43,0x2,0x84,0xac,0xd5,
+ 0x82,0x21,0x81,0xbb,0xac,0x56,0xc3,0xb7,0x69,0xae,0x9f,0x9d,0x90,0x65,0x9f,0xee,
+ 0x9e,0xcb,0x67,0x27,0x64,0x2d,0x38,0x92,0x44,0xe3,0xc4,0x8,0x42,0x56,0xf7,0x30,
+ 0x57,0xd,0x38,0x31,0xe2,0x5d,0x16,0x0,0xdf,0x62,0x48,0x80,0x90,0xf5,0xbf,0x17,
+ 0x90,0x30,0xd3,0xae,0x20,0x5e,0x66,0x42,0xc8,0xf2,0x33,0x83,0xbb,0xa9,0xdb,0x7e,
+ 0x14,0xb3,0x54,0x4a,0xeb,0xc5,0x58,0x16,0xad,0x94,0x94,0xf3,0x3c,0xd,0x5d,0x83,
+ 0x53,0x2e,0xb2,0xd2,0xe0,0xcc,0xd5,0xb,0x2b,0x6d,0xf0,0xfa,0x9a,0x45,0xda,0x42,
+ 0xed,0xab,0x2,0xf,0xca,0x31,0xfb,0x1b,0x8b,0x22,0x49,0xea,0x6e,0xc4,0x99,0x2f,
+ 0x19,0x6f,0x3b,0x6a,0x2d,0x28,0x77,0x9d,0x42,0xa0,0xda,0x5,0x13,0x4e,0x29,0x24,
+ 0xb9,0x83,0x9f,0xbb,0x4b,0x1e,0x6,0xe5,0xce,0x7c,0xb1,0x40,0x0,0xca,0x9d,0xf9,
+ 0x68,0x89,0x24,0xca,0x9d,0xa9,0x71,0x3f,0x96,0xa1,0x8f,0xed,0x77,0xa6,0x9d,0x66,
+ 0x55,0xe0,0x84,0xd1,0x52,0x74,0x35,0x6a,0xdd,0xd0,0xf4,0x93,0x24,0x96,0x59,0xe4,
+ 0xd4,0xb5,0x19,0xd2,0x21,0xfd,0x9c,0x69,0xba,0x91,0x3,0x51,0x7a,0xa7,0x9b,0x1e,
+ 0x1f,0xc4,0x8,0xea,0x8d,0xff,0xd0,0xcf,0xa8,0x74,0x85,0x51,0x7d,0x99,0x3a,0x50,
+ 0xdf,0x3c,0x44,0x7a,0x4b,0x11,0xe8,0x41,0xc8,0xeb,0x45,0x18,0x18,0x4c,0x77,0x85,
+ 0x7c,0x60,0x6f,0x88,0x6a,0x8c,0xdf,0x5e,0xa3,0xc6,0x46,0xd8,0xcf,0xcb,0xf3,0xc,
+ 0x8d,0x6,0xf4,0xb6,0x1e,0xc,0xf1,0xde,0x9,0x6a,0x88,0xef,0x36,0x55,0x1e,0xd0,
+ 0x3e,0xf6,0xfb,0x4,0xc9,0xa3,0xd5,0xc0,0xd1,0x6e,0xc6,0xf8,0x35,0xce,0xe2,0x7d,
+ 0xa5,0x9d,0xfe,0x5e,0x60,0xb0,0x71,0xb1,0xcd,0xce,0xe2,0xfd,0x55,0x74,0xfa,0x47,
+ 0xb3,0x8c,0x8a,0xbf,0xc4,0x5b,0xbc,0xe1,0xf4,0x8f,0x2,0x1f,0xd8,0x7c,0x58,0x1c,
+ 0x1f,0xd6,0xfd,0xd1,0xfc,0x3,0x9b,0xf,0x8b,0x7f,0xe,0xeb,0xfe,0x68,0x5e,0x6c,
+ 0x73,0x60,0xb1,0x93,0xd,0x70,0x83,0xc5,0x36,0x7,0x16,0x3b,0x55,0xdb,0x38,0xb7,
+ 0xd6,0xe4,0x6,0x8b,0x6d,0xe,0x2c,0x76,0xaa,0xc6,0x9e,0xe1,0xdc,0xc2,0x6f,0x5,
+ 0xa,0x6d,0xe,0x77,0x31,0x84,0x7e,0xbd,0x41,0x74,0x2b,0x50,0x68,0x73,0xb8,0x8b,
+ 0x41,0xc9,0xff,0x9c,0xfb,0x45,0x72,0x83,0xa5,0x36,0x87,0x2b,0xec,0x54,0xdd,0x12,
+ 0xf9,0xd6,0x8a,0xc3,0x65,0x36,0x83,0xd0,0xb6,0x8b,0x21,0xb6,0x88,0xed,0x74,0x89,
+ 0xc3,0x6e,0x1c,0x43,0x3a,0xbf,0x42,0x21,0x38,0xfc,0x5d,0x1,0x58,0xae,0x80,0xa8,
+ 0xc1,0x62,0x48,0x27,0x4c,0x8e,0xff,0xb4,0x1e,0x7f,0x51,0xe1,0xa,0x43,0x3a,0x39,
+ 0xc9,0x5c,0x80,0xb,0x30,0xc,0xc3,0x30,0xc,0xc3,0x7c,0x42,0x55,0xfd,0x1,0xff,
+ 0x3e,0x67,0x3a,0x87,0xa5,0x19,0x8f,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,
+ 0x42,0x60,0x82,
+ // /home/hzk/Software_Architecture/src/Client/res/image/logo_backgroundless.png
+ 0x0,0x0,0x61,0xcc,
+ 0x89,
+ 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+ 0x0,0x3,0x4b,0x0,0x0,0x2,0xbc,0x8,0x6,0x0,0x0,0x0,0x3e,0xa4,0x24,0x63,
+ 0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,
+ 0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x5b,0x1,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,
+ 0xdd,0x79,0x74,0x14,0x55,0xc2,0xfe,0xf1,0x5b,0x9d,0x26,0x84,0x10,0x42,0x8,0x21,
+ 0x4,0x88,0x88,0x88,0x8c,0x32,0xc,0x3f,0xc7,0x61,0x14,0x15,0x14,0x11,0x15,0x11,
+ 0x90,0x35,0xec,0x8,0x88,0xe2,0x82,0xb8,0x81,0x1a,0x5b,0x5c,0x29,0x23,0xa0,0xb8,
+ 0x80,0xa8,0x10,0x20,0x20,0x4,0x8,0x21,0xec,0x9b,0x22,0xa2,0x2,0x2a,0x32,0xb8,
+ 0x31,0x88,0x88,0x88,0x10,0x42,0x8,0x21,0x64,0x5f,0xbb,0xab,0x7e,0x7f,0x38,0xcb,
+ 0x3b,0x33,0x25,0x4b,0x48,0xd7,0xed,0xea,0xfb,0xfd,0x9c,0x33,0xe7,0x3d,0xaf,0x33,
+ 0x26,0xcf,0x8c,0x26,0xf6,0xd3,0xf7,0xf6,0x53,0x9a,0x69,0x9a,0x2,0x0,0x0,0x0,
+ 0x0,0xf0,0x9f,0x5c,0xb2,0x3,0x0,0x0,0x0,0x0,0x40,0x20,0xa2,0x2c,0x1,0x0,
+ 0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,
+ 0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,
+ 0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,
+ 0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,
+ 0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,
+ 0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,
+ 0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,
+ 0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,
+ 0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,
+ 0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,
+ 0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,
+ 0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,
+ 0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,
+ 0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,
+ 0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,
+ 0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,
+ 0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,
+ 0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,
+ 0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,
+ 0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,
+ 0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,
+ 0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,
+ 0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,
+ 0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,
+ 0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,
+ 0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,
+ 0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,
+ 0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,
+ 0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,
+ 0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,
+ 0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,
+ 0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,
+ 0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,
+ 0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,
+ 0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,
+ 0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,
+ 0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,
+ 0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,
+ 0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,
+ 0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,
+ 0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,
+ 0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,
+ 0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,
+ 0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,
+ 0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,
+ 0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,
+ 0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,
+ 0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,
+ 0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,
+ 0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,
+ 0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,
+ 0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,
+ 0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,
+ 0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,
+ 0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,
+ 0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,
+ 0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,
+ 0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,
+ 0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,
+ 0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,
+ 0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,
+ 0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,
+ 0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,
+ 0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,
+ 0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,
+ 0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xb7,0xec,
+ 0x0,0x0,0x60,0x97,0x77,0x37,0xa4,0xc4,0xad,0xdd,0xf3,0x61,0xaf,0x93,0xf9,0xb9,
+ 0x31,0x9a,0xd0,0x64,0xc7,0x1,0x1c,0x29,0xba,0x7e,0x83,0xbc,0x8d,0x93,0x96,0xbc,
+ 0x2b,0x3b,0x7,0x0,0xd8,0x41,0x33,0x4d,0x53,0x76,0x6,0x0,0xb0,0x45,0xaf,0x97,
+ 0x87,0x8f,0xce,0xce,0xcb,0x99,0x4b,0x51,0x2,0x2e,0x88,0xa7,0x41,0x64,0x54,0xde,
+ 0xa6,0x67,0x97,0x52,0x98,0x0,0x4,0x3d,0xae,0xe1,0x1,0x50,0xc2,0xd8,0xb7,0x27,
+ 0x74,0x3f,0x71,0xfa,0x64,0x1c,0x45,0x9,0xb8,0x60,0xfa,0xe9,0xa2,0xfc,0xe8,0x49,
+ 0x4b,0xa6,0xb4,0x97,0x1d,0x4,0x0,0xfc,0x8d,0xb2,0x4,0x40,0x9,0x7f,0xcf,0xfc,
+ 0xb1,0x8d,0x30,0x85,0x2e,0x3b,0x7,0x10,0x14,0x4c,0xa1,0x7f,0xf2,0xfd,0xce,0x1b,
+ 0x64,0xc7,0x0,0x0,0x7f,0xa3,0x2c,0x1,0x8,0x7a,0x7d,0xa7,0x8c,0x1e,0x51,0x55,
+ 0x55,0x15,0x2a,0x3b,0x7,0x10,0x4c,0x2a,0x2a,0x2b,0xc2,0x1e,0x9e,0xeb,0xe9,0x22,
+ 0x3b,0x7,0x0,0xf8,0x13,0x65,0x9,0x40,0x50,0x5b,0xf1,0xf9,0x3a,0x77,0xd6,0xa9,
+ 0xe3,0x4d,0x85,0xe0,0x54,0x9,0xa8,0x61,0xfa,0xee,0x9f,0xbe,0x6d,0x9f,0xb2,0x75,
+ 0x69,0x94,0xec,0x20,0x0,0xe0,0x2f,0x94,0x25,0x0,0x41,0x2d,0xf9,0xc3,0xc5,0x63,
+ 0x4c,0xc3,0x4c,0x92,0x9d,0x3,0x8,0x46,0x5e,0xaf,0x77,0x4a,0xfa,0xce,0x75,0xfd,
+ 0x65,0xe7,0x0,0x0,0x7f,0xa1,0x2c,0x1,0x8,0x5a,0xf,0xcd,0xf6,0x74,0xcd,0x2b,
+ 0x3a,0x1d,0x2d,0x3b,0x7,0x10,0xcc,0x4e,0x15,0xe6,0xc5,0xbc,0xbd,0x71,0x5e,0xbc,
+ 0xec,0x1c,0x0,0xe0,0xf,0x94,0x25,0x0,0x41,0x6b,0xef,0x91,0x7d,0x6d,0x19,0x75,
+ 0x0,0xfc,0xcb,0x30,0x8c,0xa4,0xd5,0x5f,0x6e,0xee,0x25,0x3b,0x7,0x0,0xf8,0x3,
+ 0x65,0x9,0x40,0x50,0x1a,0xf9,0xe6,0xf8,0xde,0xa5,0xe5,0x65,0xe1,0xb2,0x73,0x0,
+ 0x2a,0x28,0x28,0x29,0x8c,0x7a,0x6d,0xf5,0x3b,0xad,0x64,0xe7,0x0,0x80,0x9a,0x46,
+ 0x59,0x2,0x10,0x94,0xe,0x1c,0x3f,0xd4,0x5a,0x30,0xea,0x0,0xd8,0xc3,0x34,0xf5,
+ 0xb5,0x5f,0x7d,0xd0,0x43,0x76,0xc,0x0,0xa8,0x69,0x94,0x25,0x0,0x41,0xa7,0xcf,
+ 0x2b,0xa3,0x46,0xfa,0xbc,0x5e,0xb7,0xec,0x1c,0x80,0x4a,0xca,0xca,0xcb,0xc2,0x7,
+ 0x4c,0x1d,0x33,0x4c,0x76,0xe,0x0,0xa8,0x49,0x94,0x25,0x0,0x41,0xe7,0x78,0x5e,
+ 0x76,0x9c,0xe0,0x54,0x9,0xb0,0x9b,0x7e,0xec,0xd4,0xf1,0xa6,0xef,0x6c,0x4a,0x69,
+ 0x2a,0x3b,0x8,0x0,0xd4,0x14,0xca,0x12,0x80,0xa0,0xd2,0x6f,0xca,0xe8,0x11,0xa6,
+ 0x61,0xf2,0xbb,0xd,0x90,0xc0,0xe7,0xf3,0x4d,0x59,0xf5,0xe5,0xc6,0xde,0xb2,0x73,
+ 0x0,0x40,0x4d,0xe1,0x5,0x5,0x80,0xa0,0xa1,0x2f,0x9d,0xde,0xf6,0xd8,0xa9,0x6c,
+ 0x1e,0x40,0xb,0x48,0x94,0x5f,0x5c,0x10,0xf5,0xfc,0xb2,0x69,0x57,0xca,0xce,0x1,
+ 0x0,0x35,0x81,0xb2,0x4,0x20,0x68,0x6c,0xfb,0xe1,0xf3,0xce,0xa6,0x61,0xf0,0x0,
+ 0x5a,0x40,0x26,0x53,0xe8,0x5b,0xbf,0xdb,0xde,0x45,0x76,0xc,0x0,0xa8,0x9,0x94,
+ 0x25,0x0,0x41,0x61,0xe4,0x5b,0xe3,0x7b,0x17,0x96,0x14,0x45,0xca,0xce,0x1,0x40,
+ 0x88,0x8a,0x8a,0x8a,0xb0,0x87,0xe7,0x3e,0x43,0x61,0x2,0xe0,0x78,0x94,0x25,0x0,
+ 0x41,0xe1,0x40,0xd6,0xcf,0x4c,0x85,0x3,0x81,0x43,0xdf,0xfd,0xd3,0x37,0xed,0x53,
+ 0xb6,0x2e,0x8b,0x92,0x1d,0x4,0x0,0x2e,0x4,0x65,0x9,0x80,0xe3,0xf5,0x79,0x65,
+ 0xe4,0x48,0x9f,0xd7,0xc7,0x54,0x38,0x10,0x40,0xbc,0x5e,0xef,0x94,0x15,0x9f,0xaf,
+ 0xeb,0x2f,0x3b,0x7,0x0,0x5c,0x8,0xca,0x12,0x0,0x47,0x5b,0xf1,0xf9,0x3a,0xf7,
+ 0xf1,0xbc,0x13,0x4c,0x85,0x3,0x1,0x28,0xb7,0xe0,0x54,0xcc,0x3b,0x1b,0xe7,0x33,
+ 0x25,0xe,0xc0,0xb1,0x28,0x4b,0x0,0x1c,0x2d,0xf9,0xc3,0xc5,0x63,0x4c,0xc3,0x64,
+ 0xd4,0x1,0x8,0x40,0x86,0x61,0x24,0xad,0xfe,0x6a,0x73,0x2f,0xd9,0x39,0x0,0xa0,
+ 0xba,0x28,0x4b,0x0,0x1c,0xeb,0xbe,0x77,0x26,0x76,0xcb,0x2b,0x3a,0x1d,0x2d,0x3b,
+ 0x7,0x80,0xdf,0x97,0x5f,0x54,0x10,0x35,0x63,0x7d,0x72,0x73,0xd9,0x39,0x0,0xa0,
+ 0x3a,0x28,0x4b,0x0,0x1c,0xeb,0xef,0x47,0x7f,0x6c,0x2b,0x4c,0xae,0xdf,0x1,0x81,
+ 0xcc,0x34,0xcd,0xa4,0xd5,0xbb,0x38,0x5d,0x2,0xe0,0x4c,0x94,0x25,0x0,0x8e,0x34,
+ 0x74,0xfa,0xfd,0x9,0x95,0x95,0x95,0xa1,0xb2,0x73,0x0,0x38,0xbb,0xa2,0xd2,0xa2,
+ 0x48,0x3d,0xfd,0x8d,0xb6,0xb2,0x73,0x0,0xc0,0xf9,0xa2,0x2c,0x1,0x70,0xa4,0x43,
+ 0x27,0x8e,0xb4,0x14,0x8c,0x3a,0x0,0xce,0x60,0xa,0xfd,0x83,0xaf,0x3f,0xbe,0x55,
+ 0x76,0xc,0x0,0x38,0x5f,0x94,0x25,0x0,0x8e,0xd3,0x53,0x1f,0x36,0xc6,0xf0,0xf9,
+ 0xf8,0xfd,0x5,0x38,0x48,0x79,0x45,0x45,0xd8,0x9d,0xfa,0x88,0xd1,0xb2,0x73,0x0,
+ 0xc0,0xf9,0xe0,0xc5,0x6,0x0,0x47,0x79,0x6a,0xc1,0xe4,0xe,0x27,0xf3,0x4f,0xc5,
+ 0x8,0x4e,0x95,0x0,0xa7,0xd1,0x4f,0xe4,0x9f,0x8c,0xd5,0xd3,0x5f,0xe7,0x3a,0x1e,
+ 0x0,0xc7,0xa0,0x2c,0x1,0x70,0x94,0x6f,0xf,0xef,0xbd,0xd2,0x34,0x99,0xa,0x7,
+ 0x9c,0xc8,0x34,0xcd,0xa4,0x2d,0xdf,0x7e,0xd6,0x55,0x76,0xe,0x0,0x38,0x57,0x94,
+ 0x25,0x0,0x8e,0x91,0x98,0xf2,0x52,0x87,0xd3,0xc5,0x5,0x51,0xb2,0x73,0x0,0xa8,
+ 0xbe,0xd2,0xf2,0xd2,0xf0,0xa4,0x15,0x6f,0xb5,0x91,0x9d,0x3,0x0,0xce,0x5,0x65,
+ 0x9,0x80,0x63,0x6c,0x3f,0xf0,0x55,0x47,0x4e,0x95,0x0,0x87,0x33,0x85,0xfe,0xc1,
+ 0x37,0xdb,0x18,0x7b,0x0,0xe0,0x8,0x94,0x25,0x0,0x8e,0x30,0xf8,0xb5,0xfb,0x6,
+ 0x31,0x15,0xe,0x4,0x87,0xd2,0xb2,0xd2,0xf0,0x89,0xb,0x5e,0xe8,0x28,0x3b,0x7,
+ 0x0,0x9c,0xd,0x65,0x9,0x80,0x23,0x1c,0xce,0x39,0xd2,0x42,0x30,0xea,0x0,0x4,
+ 0xb,0xfd,0xf3,0x1f,0x76,0x77,0x58,0xf0,0xf1,0xb2,0x28,0xd9,0x41,0x0,0xe0,0x4c,
+ 0x28,0x4b,0x0,0x2,0x5e,0x8f,0xc9,0xc3,0xc6,0x18,0x3e,0x83,0xdf,0x57,0x40,0x10,
+ 0xa9,0xf2,0x56,0x4d,0x5b,0xbe,0x63,0x6d,0x7f,0xd9,0x39,0x0,0xe0,0x4c,0x78,0xf1,
+ 0x1,0x20,0xa0,0x8d,0x9f,0xed,0xe9,0x72,0xb2,0xe0,0x54,0xac,0xe0,0x54,0x9,0x8,
+ 0x3a,0xb9,0x85,0x79,0x31,0x6f,0x6f,0x9c,0x17,0x2f,0x3b,0x7,0x0,0xfc,0x1e,0xca,
+ 0x12,0x80,0x80,0xf6,0xfd,0x91,0x7d,0xed,0x84,0x69,0x52,0x94,0x80,0x20,0x64,0x1a,
+ 0x46,0xd2,0xea,0x2f,0x37,0xf7,0x92,0x9d,0x3,0x0,0x7e,0xf,0x65,0x9,0x40,0xc0,
+ 0x1a,0xf9,0xd6,0xf8,0xde,0xa5,0xe5,0x65,0xe1,0xb2,0x73,0x0,0xf0,0x9f,0x82,0x92,
+ 0xc2,0xa8,0xd7,0x56,0xbf,0xd3,0x4a,0x76,0xe,0x0,0xb0,0x42,0x59,0x2,0x10,0xb0,
+ 0x7e,0xca,0x3a,0xd4,0x5a,0x70,0xfd,0xe,0x8,0x6e,0xa6,0xa9,0xaf,0xfd,0xea,0x83,
+ 0x1e,0xb2,0x63,0x0,0x80,0x15,0xca,0x12,0x80,0x80,0x34,0xe8,0xb5,0xb1,0x83,0xbc,
+ 0x5e,0xaf,0x5b,0x76,0xe,0x0,0xfe,0x57,0x56,0x5e,0x16,0x9e,0x30,0xed,0x9e,0x21,
+ 0xb2,0x73,0x0,0xc0,0x7f,0xa3,0x2c,0x1,0x8,0x48,0xbf,0xe6,0x64,0xb6,0x10,0x9c,
+ 0x2a,0x1,0xaa,0xd0,0x33,0x73,0xb3,0xe2,0xdf,0xdb,0xbc,0x20,0x4e,0x76,0x10,0x0,
+ 0xf8,0xbf,0x28,0x4b,0x0,0x2,0x4e,0xbf,0x57,0x46,0x8f,0x30,0x7c,0x3e,0x7e,0x3f,
+ 0x1,0xa,0xf1,0xf9,0x7c,0x53,0x18,0x7b,0x0,0x10,0x68,0x78,0x31,0x2,0x20,0xa0,
+ 0x4c,0x7a,0x3f,0xa9,0xfd,0xb1,0xbc,0xe3,0x4d,0x5,0xa7,0x4a,0x80,0x72,0xf2,0x8a,
+ 0x4e,0x47,0xcf,0xdc,0x30,0x97,0x29,0x71,0x0,0x1,0x83,0xb2,0x4,0x20,0xa0,0x6c,
+ 0xff,0x71,0x57,0x47,0xd3,0x30,0x93,0x64,0xe7,0x0,0x60,0x3f,0xd3,0x34,0x93,0x56,
+ 0x7d,0xb9,0xa9,0xb7,0xec,0x1c,0x0,0xf0,0x4f,0x94,0x25,0x0,0x1,0x63,0xd8,0x1b,
+ 0xf,0xf6,0x67,0x2a,0x1c,0x50,0x5b,0x51,0x69,0x51,0xa4,0x9e,0xfe,0x46,0x5b,0xd9,
+ 0x39,0x0,0x40,0x8,0xca,0x12,0x80,0x0,0x72,0xe8,0xf8,0xe1,0x96,0x82,0xeb,0x77,
+ 0x80,0xda,0x4c,0xa1,0x6f,0xfe,0xfa,0xe3,0x5b,0x65,0xc7,0x0,0x0,0x21,0x28,0x4b,
+ 0x0,0x2,0xc4,0xc0,0x69,0xf7,0xe,0xf1,0xf9,0x7c,0x4c,0x85,0x3,0x10,0x15,0x15,
+ 0x15,0x61,0x3d,0xf5,0xe1,0x63,0x64,0xe7,0x0,0x0,0xca,0x12,0x80,0x80,0x70,0xe4,
+ 0x64,0x66,0x73,0xc1,0xa9,0x12,0x80,0xdf,0xe8,0x27,0xf3,0x73,0x63,0x26,0xa5,0x4e,
+ 0x69,0x2f,0x3b,0x8,0x0,0xb5,0xf1,0x2e,0x2e,0x0,0xe9,0xee,0x98,0x3c,0xf4,0x5e,
+ 0xc3,0x30,0x78,0xf3,0x6,0xc0,0xbf,0x98,0xa6,0x99,0xf4,0xc9,0xde,0x9d,0x95,0x42,
+ 0x88,0xdd,0xb2,0xb3,0x0,0x50,0x17,0x2f,0x4e,0x0,0x48,0x35,0x76,0xd6,0x84,0xee,
+ 0xb9,0x5,0xa7,0x62,0x4,0xa7,0x4a,0x0,0xfe,0x4b,0x45,0x65,0x45,0xd8,0x43,0x73,
+ 0x9e,0xee,0x2a,0x3b,0x7,0x0,0x75,0x51,0x96,0x0,0x48,0xf5,0xf7,0xa3,0x3f,0xb6,
+ 0x11,0x26,0x45,0x9,0x80,0x25,0xfd,0xeb,0x43,0xdf,0x5f,0xb9,0xe8,0x93,0xf4,0x8,
+ 0xd9,0x41,0x0,0xa8,0x89,0xb2,0x4,0x40,0x9a,0x21,0xaf,0xdd,0x97,0x50,0x55,0x55,
+ 0x15,0x2a,0x3b,0x7,0x80,0xc0,0x55,0x55,0x55,0x35,0x6d,0xd5,0x97,0x1b,0x7b,0xcb,
+ 0xce,0x1,0x40,0x4d,0x94,0x25,0x0,0xd2,0xfc,0x92,0x73,0x94,0xa9,0x70,0x0,0x67,
+ 0x75,0xe2,0xf4,0xc9,0x38,0xd9,0x19,0x0,0xa8,0x89,0x81,0x7,0x0,0x52,0x24,0x4c,
+ 0xbb,0x67,0x88,0xe1,0xf3,0xa9,0xf8,0x86,0x8d,0x47,0x76,0x0,0xc0,0x31,0x4c,0x21,
+ 0x4c,0x61,0x8a,0xf0,0xda,0x75,0x4a,0x65,0x47,0x1,0xa0,0x26,0xca,0x12,0x0,0x29,
+ 0x8e,0x9e,0x3c,0xa6,0xd6,0x54,0xb8,0xa6,0x79,0x2e,0x6b,0xd6,0xf2,0x40,0x9f,0xe,
+ 0xb7,0xaf,0xea,0xd7,0xa1,0x87,0x57,0x76,0x1c,0x0,0x0,0x70,0x76,0x94,0x25,0x0,
+ 0xb6,0xbb,0xed,0x85,0x81,0xf,0xa8,0x34,0x15,0xae,0x69,0x5a,0x62,0xc7,0x2b,0xae,
+ 0xde,0xfe,0xea,0xe8,0x17,0xb6,0xcb,0xce,0x2,0x0,0x0,0xce,0x9d,0x32,0x2f,0x56,
+ 0x0,0x4,0x86,0x51,0x33,0x1e,0xee,0x9d,0x5f,0x54,0x10,0x25,0xd4,0x39,0x55,0xf2,
+ 0x34,0x8b,0x69,0x92,0x45,0x51,0x2,0x0,0xc0,0x79,0x28,0x4b,0x0,0x6c,0xf5,0xe3,
+ 0xb1,0x83,0xad,0x85,0x3a,0x45,0x49,0xb8,0x42,0x5c,0xc6,0x8a,0x27,0xe7,0x2d,0x94,
+ 0x9d,0x3,0x0,0x0,0x9c,0x3f,0xca,0x12,0x0,0xdb,0xf4,0x79,0x65,0xe4,0x48,0x9f,
+ 0xd7,0xa7,0xd2,0xf5,0x5f,0xcf,0x25,0x8d,0x9b,0x1f,0x92,0x1d,0x2,0x0,0x0,0x54,
+ 0xf,0x65,0x9,0x80,0x2d,0x56,0x7c,0xbe,0xce,0x7d,0x3c,0xef,0x44,0x9c,0x50,0xe8,
+ 0x54,0x29,0xac,0x76,0x58,0x79,0xea,0x63,0xef,0xa6,0xc9,0xce,0x1,0x0,0x0,0xaa,
+ 0x87,0xb2,0x4,0xc0,0x16,0xc9,0x1f,0x2e,0x1e,0x63,0x1a,0x66,0x92,0xec,0x1c,0x76,
+ 0xd1,0x34,0x2d,0xf1,0xe6,0x3f,0x76,0xdc,0x22,0x3b,0x7,0x0,0x0,0xa8,0x3e,0xca,
+ 0x12,0x0,0xbf,0x1b,0x3b,0x6b,0x42,0xf7,0xbc,0xa2,0xd3,0xd1,0xb2,0x73,0xd8,0xa9,
+ 0x51,0x54,0xc3,0xdc,0x67,0x87,0x4c,0xf8,0x4e,0x76,0xe,0x0,0x0,0x50,0x7d,0x94,
+ 0x25,0x0,0x7e,0xb7,0x2f,0xf3,0x40,0x1b,0x61,0xaa,0x73,0xfd,0x4e,0x73,0x69,0x89,
+ 0xed,0x5b,0x5e,0xb9,0x5b,0x76,0xe,0x0,0x0,0x70,0x61,0x28,0x4b,0x0,0xfc,0x6a,
+ 0xc8,0xf4,0xfb,0x13,0x2a,0x2b,0x2b,0x43,0x65,0xe7,0xb0,0x91,0xa7,0x71,0x54,0xa3,
+ 0x9c,0xe7,0x6,0x4f,0xf8,0x46,0x76,0x10,0x0,0x0,0x70,0x61,0x28,0x4b,0x0,0xfc,
+ 0xea,0xf0,0x89,0x23,0x2d,0x84,0x42,0xa3,0xe,0x21,0x21,0x21,0xde,0xd5,0x4f,0x2f,
+ 0x9c,0x27,0x3b,0x7,0x0,0x0,0xb8,0x70,0x94,0x25,0x0,0x7e,0x33,0xe8,0xb5,0xb1,
+ 0x83,0x7c,0x3e,0xc5,0xa6,0xc2,0xe3,0x2e,0x3e,0x2c,0x3b,0x4,0x0,0x0,0xa8,0x19,
+ 0x94,0x25,0x0,0x7e,0xf3,0x6b,0xce,0xd1,0x16,0x42,0xa1,0x53,0xa5,0xda,0xa1,0xb5,
+ 0xcb,0x17,0x3f,0x3a,0x8b,0xa9,0x70,0x0,0x0,0x82,0x4,0x65,0x9,0x80,0x5f,0xc,
+ 0x98,0x3a,0x66,0x98,0xe1,0x33,0xd4,0xf9,0x1d,0xa3,0x9,0xcf,0x1f,0x2f,0xfa,0xc3,
+ 0x3e,0xd9,0x31,0x0,0x0,0x40,0xcd,0x51,0xe7,0x85,0xc,0x0,0xdb,0x4c,0x5e,0x3a,
+ 0xbd,0xed,0xd1,0xdc,0xac,0x78,0xa1,0xce,0xa9,0x92,0x27,0xa6,0x7e,0xc3,0xdc,0x77,
+ 0xee,0x9f,0xba,0x49,0x76,0x10,0x0,0x0,0x50,0x73,0x28,0x4b,0x0,0x6a,0xdc,0xd6,
+ 0x7d,0x3b,0xba,0x98,0x86,0xa1,0xcc,0x3,0x68,0x5d,0x2e,0x97,0xb1,0xfe,0x99,0xc5,
+ 0xb3,0x65,0xe7,0x0,0x0,0x0,0x35,0x8b,0xb2,0x4,0xa0,0x46,0xd,0x7f,0x63,0x5c,
+ 0xff,0x92,0xd2,0x92,0x8,0xd9,0x39,0x6c,0xe4,0x69,0xde,0x28,0xfe,0x88,0xec,0x10,
+ 0x0,0x0,0xa0,0xe6,0x51,0x96,0x0,0xd4,0xa8,0x9f,0x8f,0xff,0xd2,0x52,0xa8,0x73,
+ 0xfd,0x4e,0x84,0x84,0x84,0x78,0x97,0x4d,0x9c,0x9d,0x2a,0x3b,0x7,0x0,0x0,0xa8,
+ 0x79,0x94,0x25,0x0,0x35,0xa6,0xa7,0x3e,0x6c,0x8c,0x6a,0x53,0xe1,0x2d,0x1a,0x37,
+ 0x3f,0x2c,0x3b,0x4,0x0,0x0,0xf0,0xf,0xca,0x12,0x80,0x1a,0xf1,0xe8,0xdc,0x49,
+ 0x9d,0x73,0xf2,0x4f,0xc5,0xa,0x85,0x4e,0x95,0x42,0x43,0x43,0x2b,0x53,0x1f,0x7b,
+ 0x87,0xa9,0x70,0x0,0x0,0x82,0x14,0x65,0x9,0x40,0x8d,0xf8,0xee,0xd7,0x7d,0xed,
+ 0x84,0x69,0x2a,0x53,0x94,0x84,0x26,0x3c,0x6d,0xe2,0x5b,0x33,0x15,0xe,0x0,0x40,
+ 0x10,0xa3,0x2c,0x1,0xb8,0x60,0xf7,0xcc,0x7c,0xac,0x47,0xb1,0x5a,0xa3,0xe,0x22,
+ 0xba,0x5e,0x83,0xbc,0xf7,0x1e,0x78,0x75,0x83,0xec,0x1c,0x0,0x0,0xc0,0x7f,0x28,
+ 0x4b,0x0,0x2e,0xd8,0xf,0xc7,0x7e,0xba,0x5c,0x28,0x74,0xfd,0x4e,0x73,0x69,0x89,
+ 0x63,0x6e,0x19,0x9a,0x2c,0x3b,0x7,0x0,0x0,0xf0,0x2f,0xca,0x12,0x80,0xb,0x32,
+ 0xf8,0xb5,0xfb,0x6,0x55,0x55,0x55,0x85,0xca,0xce,0x61,0x23,0x4f,0x93,0xe8,0xc6,
+ 0xd9,0xfd,0xae,0xed,0xe1,0x95,0x1d,0x4,0x0,0x0,0xf8,0x17,0x65,0x9,0xc0,0x5,
+ 0x39,0x9c,0x73,0xa4,0x85,0x50,0xe8,0x54,0x29,0xc4,0xed,0xf6,0xae,0x7c,0x2a,0x25,
+ 0x45,0x76,0xe,0x0,0x0,0xe0,0x7f,0x94,0x25,0x0,0xd5,0xd6,0x63,0xf2,0xb0,0x31,
+ 0x86,0xcf,0x50,0xe9,0xf7,0x88,0xe7,0xb2,0x26,0x97,0x1c,0x94,0x1d,0x2,0x0,0x0,
+ 0xd8,0x43,0xa5,0x17,0x39,0x0,0x6a,0xd0,0xb8,0xd9,0x89,0x5d,0x4f,0x16,0xa8,0x35,
+ 0x15,0x1e,0x1e,0x56,0xa7,0x74,0xc1,0xc3,0x33,0x32,0x64,0xe7,0x0,0x0,0x0,0xf6,
+ 0xa0,0x2c,0x1,0xa8,0x96,0xef,0x7f,0xfd,0x41,0xb1,0xa9,0x70,0xcd,0xf3,0xa7,0xe6,
+ 0x6d,0xbe,0x93,0x1d,0x3,0x0,0x0,0xd8,0x87,0xb2,0x4,0xe0,0xbc,0xd,0x7c,0xf5,
+ 0xde,0x21,0xe5,0x15,0xe5,0x61,0xb2,0x73,0xd8,0xc8,0xd3,0xa8,0x7e,0xc3,0x9c,0xb7,
+ 0xee,0xd5,0xb7,0xca,0xe,0x2,0x0,0x0,0xec,0x43,0x59,0x2,0x70,0xde,0x8e,0xe4,
+ 0x64,0x36,0x17,0xa,0x5d,0xbf,0x73,0x85,0xb8,0x8c,0x75,0xcf,0x2c,0x62,0x2a,0x1c,
+ 0x0,0x0,0xc5,0x50,0x96,0x0,0x9c,0x97,0x5e,0x2f,0xf,0x1f,0x6d,0x18,0x6a,0x8d,
+ 0x3a,0xb4,0x88,0x6d,0x7e,0x58,0x76,0x8,0x0,0x0,0x60,0x3f,0x95,0x5e,0xf0,0x0,
+ 0xb8,0x40,0x69,0x3b,0x56,0x87,0xe6,0x9c,0xce,0x55,0x6a,0xd4,0xa1,0x56,0xad,0x5a,
+ 0x95,0x4b,0x1e,0x7f,0x77,0xa9,0xec,0x1c,0x0,0x0,0xc0,0x7e,0x94,0x25,0x0,0xe7,
+ 0x6c,0xfe,0x47,0x4b,0x47,0x9b,0xa6,0x99,0x24,0x3b,0x87,0x8d,0x3c,0x57,0x34,0xbb,
+ 0x6c,0xbf,0xec,0x10,0x0,0x0,0x40,0xe,0xca,0x12,0x80,0x73,0x32,0x76,0xd6,0x84,
+ 0xee,0x79,0x45,0xa7,0xa3,0x65,0xe7,0xb0,0x53,0x44,0x78,0xdd,0xe2,0x39,0xe3,0xa6,
+ 0xaf,0x93,0x9d,0x3,0x0,0x0,0xc8,0x41,0x59,0x2,0x70,0x4e,0xf6,0x65,0x1e,0x68,
+ 0x23,0x4c,0x75,0xae,0xdf,0x9,0x4d,0xf3,0xb4,0xbb,0x98,0xa9,0x70,0x0,0x0,0x54,
+ 0x46,0x59,0x2,0x70,0x56,0x43,0xa6,0xdf,0x9f,0x50,0x59,0x59,0x19,0x2a,0x3b,0x87,
+ 0x9d,0x1a,0x46,0x36,0xc8,0x7d,0xfd,0xee,0x97,0xb6,0xc9,0xce,0x1,0x0,0x0,0xe4,
+ 0xa1,0x2c,0x1,0x38,0xab,0xc3,0x27,0x8e,0xb4,0x10,0xa,0x8d,0x3a,0x68,0x2e,0x57,
+ 0xe2,0x98,0xae,0x43,0x99,0xa,0x7,0x0,0x40,0x71,0x94,0x25,0x0,0x67,0x34,0x70,
+ 0xda,0xbd,0x43,0x7c,0x3e,0x9f,0x5b,0x76,0xe,0x1b,0x79,0xe2,0x63,0x9a,0x64,0xf6,
+ 0xbd,0xf6,0xe,0x43,0x76,0x10,0x0,0x0,0x20,0x17,0x65,0x9,0xc0,0x19,0x1d,0x39,
+ 0xa9,0xd6,0x3,0x68,0x43,0x6b,0x85,0x56,0xa6,0x3f,0x31,0x77,0x91,0xec,0x1c,0x0,
+ 0x0,0x40,0x3e,0x95,0xde,0x2d,0x6,0x70,0x9e,0xee,0x98,0x3c,0xf4,0x5e,0xa5,0x1e,
+ 0x40,0xab,0x9,0x4f,0x9b,0x8b,0x5a,0xef,0x93,0x1d,0xe3,0x5c,0x5d,0x33,0xa1,0xdb,
+ 0xd3,0xb2,0x33,0xf8,0x9b,0x61,0x1a,0x2e,0x77,0xad,0x5a,0xde,0xcf,0x5f,0x59,0xff,
+ 0x8a,0xec,0x2c,0x0,0x0,0xf5,0x50,0x96,0x0,0x58,0xba,0xff,0x9d,0x27,0xba,0xe5,
+ 0x16,0x9c,0x8a,0x11,0xa,0x9d,0x2a,0x45,0xd7,0x6b,0x90,0xf7,0xde,0x3,0xaf,0x6e,
+ 0x90,0x9d,0xe3,0x5c,0x19,0xc2,0x74,0xb9,0x84,0xf6,0x92,0xec,0x1c,0xfe,0xe4,0xd2,
+ 0x5c,0xc2,0xe7,0xf5,0x7a,0xfa,0x4d,0xbb,0x7b,0xc4,0x8a,0x89,0x73,0x17,0xca,0xce,
+ 0x3,0x0,0x50,0x8b,0x3a,0xef,0x18,0x3,0x38,0x2f,0x7b,0x8f,0xec,0x6f,0xab,0xd2,
+ 0x54,0xb8,0xe6,0xd2,0x12,0xc7,0xdc,0xe2,0xac,0x51,0x87,0xfa,0x11,0x91,0xf9,0xb2,
+ 0x33,0xd8,0x41,0x13,0x9a,0x7e,0xe4,0x44,0x66,0x73,0xcf,0xe2,0xa4,0xab,0x65,0x67,
+ 0x1,0x0,0xa8,0x85,0xb2,0x4,0xe0,0x7f,0xf4,0x9f,0x7a,0xf7,0xb0,0xca,0x2a,0xa5,
+ 0xa6,0xc2,0x3d,0x4d,0x1a,0x34,0xce,0xee,0x77,0x6d,0xf,0xaf,0xec,0x20,0xe7,0xe3,
+ 0xf6,0x3f,0x77,0xd9,0x64,0xa,0xd3,0x23,0x3b,0x87,0x1d,0x5c,0x42,0x7b,0x69,0xdb,
+ 0xde,0x9d,0x9d,0x65,0xe7,0x0,0x0,0xa8,0x85,0xb2,0x4,0xe0,0x3f,0x64,0x7c,0xbe,
+ 0xde,0x95,0x99,0x7b,0x3c,0x5e,0x28,0x74,0xfd,0xce,0x15,0x12,0x62,0xac,0x4c,0x4c,
+ 0x49,0x91,0x9d,0xe3,0x7c,0x3d,0x7e,0xe7,0xfd,0x7,0x9b,0x34,0x8c,0xcb,0x16,0x42,
+ 0x28,0x51,0x98,0xaa,0xaa,0xaa,0xdc,0xfd,0xa6,0x8e,0x1e,0x21,0x3b,0x7,0x0,0x40,
+ 0x1d,0x94,0x25,0x0,0xff,0x21,0x79,0xcb,0xe2,0x31,0xa6,0x61,0x24,0xc9,0xce,0x61,
+ 0x23,0xcf,0x25,0x8d,0x9b,0x1f,0x92,0x1d,0xa2,0xba,0x56,0x27,0x2e,0x98,0x17,0x1a,
+ 0x1a,0x5a,0x29,0x3b,0x87,0x1d,0x34,0x21,0xf4,0xa3,0x39,0xc7,0xe2,0xa7,0xac,0x9a,
+ 0x79,0xb9,0xec,0x2c,0x0,0x0,0x35,0x50,0x96,0x0,0xfc,0xcb,0x23,0xc9,0xcf,0x74,
+ 0x3e,0x55,0x78,0x3a,0x46,0x76,0xe,0x3b,0x85,0x86,0x86,0x56,0xa6,0x3e,0xf6,0x4e,
+ 0x9a,0xec,0x1c,0x17,0xa2,0x53,0x9b,0x6b,0x3e,0x35,0x15,0x39,0x5d,0xd2,0x84,0xa6,
+ 0x6f,0xfe,0xfa,0xe3,0x5b,0x65,0xe7,0x0,0x0,0xa8,0x81,0xb2,0x4,0xe0,0x5f,0xbe,
+ 0xfb,0x75,0x5f,0x3b,0x61,0x9a,0xca,0x5c,0xbf,0x13,0x9a,0xf0,0xb4,0x89,0x77,0xce,
+ 0x54,0xf8,0xef,0x79,0x79,0x98,0x67,0x57,0x58,0xed,0xda,0xe5,0xb2,0x73,0xd8,0xa5,
+ 0xb8,0xa4,0x24,0xe2,0xc9,0x85,0x2f,0x5d,0x27,0x3b,0x7,0x0,0x20,0xf8,0x51,0x96,
+ 0x0,0x8,0x21,0x84,0x18,0xf1,0xc6,0xb8,0xbe,0x25,0x65,0xa5,0x11,0xb2,0x73,0xd8,
+ 0xc8,0x13,0x15,0x51,0x3f,0xdf,0x49,0x53,0xe1,0x67,0xf2,0x97,0x4b,0xff,0xdf,0x1e,
+ 0x55,0xc6,0x1e,0x34,0x21,0xf4,0x9d,0xfb,0xbf,0xa2,0x2c,0x1,0x0,0xfc,0x8e,0xb2,
+ 0x4,0x40,0x8,0x21,0xc4,0xa1,0x13,0xbf,0xb6,0x14,0xa,0x8d,0x3a,0x68,0x2e,0x97,
+ 0xb1,0xf9,0xb9,0x65,0xb3,0x64,0xe7,0xa8,0x29,0xaf,0x8f,0x7e,0x71,0x5b,0x64,0xdd,
+ 0x7a,0x85,0xb2,0x73,0xd8,0xa5,0xb2,0xb2,0x32,0x34,0xe1,0xd5,0x7b,0x86,0xc8,0xce,
+ 0x1,0x0,0x8,0x6e,0x94,0x25,0x0,0x62,0xd0,0xab,0xf7,0xe,0xaa,0xaa,0xaa,0x52,
+ 0x6a,0x2a,0x3c,0xbe,0x61,0x93,0x4c,0xd9,0x21,0x6a,0xda,0x3d,0x5d,0x87,0x27,0xb,
+ 0x4d,0x8d,0xcf,0x2e,0x9,0x21,0xf4,0x5f,0x4f,0x1c,0x6d,0xf1,0xe6,0xba,0xd9,0x2d,
+ 0x64,0x7,0x1,0x0,0x4,0x2f,0xca,0x12,0x0,0xf1,0xeb,0xc9,0xcc,0x16,0x42,0xa1,
+ 0x53,0xa5,0x90,0x90,0x10,0x6f,0xfa,0x93,0x73,0x17,0xc9,0xce,0x51,0xd3,0x6,0x76,
+ 0xba,0xb3,0xfc,0xb2,0x66,0x97,0x1e,0x10,0x8a,0x8c,0x3d,0x8,0x53,0xe8,0x6b,0xbf,
+ 0xfa,0xb0,0x87,0xec,0x18,0x0,0x80,0xe0,0x45,0x59,0x2,0x14,0xd7,0x3b,0x69,0xe4,
+ 0x48,0xc3,0x67,0xa8,0xf4,0xbb,0xc0,0xd3,0x32,0xae,0x85,0x63,0xa7,0xc2,0xcf,0x66,
+ 0xd1,0x23,0x6f,0xa7,0xd7,0xaa,0x55,0x4b,0x89,0x29,0x71,0x21,0x84,0x28,0x2c,0x29,
+ 0x8c,0x9c,0xb4,0x64,0x4a,0x7b,0xd9,0x39,0x0,0x0,0xc1,0x49,0xa5,0x17,0x48,0x0,
+ 0xfe,0xcb,0xb,0xa9,0xd3,0xae,0xcc,0x3e,0x7d,0x22,0x4e,0xa8,0x73,0xaa,0xe4,0x89,
+ 0x8c,0xa8,0x57,0xb8,0xe8,0xd1,0xb7,0xd3,0x65,0x7,0xf1,0xa7,0x2b,0x5b,0xb6,0xfd,
+ 0x46,0x9d,0xb1,0x7,0x4d,0xff,0x64,0xef,0xce,0x1b,0x64,0xe7,0x0,0x0,0x4,0x27,
+ 0xca,0x12,0xa0,0xb0,0xcf,0x7e,0xfc,0xb2,0xa3,0x69,0x98,0xca,0x3c,0x80,0x56,0x73,
+ 0x69,0xc6,0x87,0xcf,0x2f,0x9f,0x29,0x3b,0x87,0xbf,0xcd,0xbc,0x27,0x69,0x4b,0x78,
+ 0x9d,0xf0,0x52,0xd9,0x39,0xec,0x52,0x51,0x51,0x11,0x36,0xe2,0xad,0x71,0x7d,0x65,
+ 0xe7,0x0,0x0,0x4,0x1f,0xca,0x12,0xa0,0xa8,0xe1,0x6f,0x3c,0xd8,0xbf,0xa8,0xa4,
+ 0x38,0x52,0x76,0xe,0x1b,0x79,0x9a,0x46,0xc7,0x65,0xc9,0xe,0x61,0x97,0xae,0xed,
+ 0x6e,0xd8,0xa2,0xca,0xe9,0x92,0x10,0x42,0xff,0xf1,0xe8,0xcf,0x97,0xcf,0xfd,0x68,
+ 0x89,0x52,0xf,0x54,0x6,0x0,0xf8,0x1f,0x65,0x9,0x50,0xd4,0xcf,0xc7,0xf,0x2b,
+ 0x35,0x15,0xee,0xa,0x71,0x19,0x19,0x4f,0xcd,0x5f,0x28,0x3b,0x87,0x5d,0x9e,0x19,
+ 0xf0,0xe8,0xde,0x98,0xa8,0x86,0xb9,0x42,0x99,0xb1,0x7,0x53,0x5f,0xf1,0xf9,0x5a,
+ 0x4e,0x97,0x0,0x0,0x35,0x8a,0xb2,0x4,0x28,0xa8,0xc7,0xe4,0xa1,0x63,0x7c,0x3e,
+ 0x9f,0x5b,0x76,0xe,0x1b,0x79,0x2e,0x6e,0x14,0x7f,0x58,0x76,0x8,0xbb,0x6d,0x78,
+ 0x26,0x75,0xb6,0xe6,0x72,0x19,0xb2,0x73,0xd8,0x25,0x37,0xff,0x54,0xcc,0x1b,0x4c,
+ 0x89,0x3,0x0,0x6a,0x10,0x65,0x9,0x50,0x4c,0xf2,0x96,0xc5,0x31,0x27,0xb,0xf2,
+ 0x62,0x85,0x42,0xa7,0x4a,0x6e,0xb7,0xdb,0xbb,0x74,0xc2,0xec,0xa5,0xb2,0x73,0xc8,
+ 0xd0,0xf6,0xe2,0xcb,0xf7,0xa,0x45,0x4e,0x97,0x34,0xa1,0xe9,0xeb,0x77,0x6f,0x61,
+ 0x4a,0x1c,0x0,0x50,0x63,0x28,0x4b,0x80,0x62,0x96,0x7e,0xb6,0x72,0x90,0x30,0x4d,
+ 0x65,0x8a,0x92,0x10,0xc2,0xd3,0xaa,0xc9,0x25,0x7,0x65,0x87,0x90,0x25,0xf9,0xc1,
+ 0xe9,0xeb,0x54,0x9a,0x12,0x2f,0x28,0x2e,0x88,0x7c,0x73,0xdd,0x9c,0x16,0xb2,0x73,
+ 0x0,0x0,0x82,0x3,0x65,0x9,0x50,0xc8,0xe8,0x19,0x8f,0xf4,0x52,0x6c,0xd4,0x41,
+ 0x44,0x84,0x47,0x14,0x2f,0x78,0x78,0x46,0x86,0xec,0x1c,0x32,0x5d,0x7d,0xd9,0x9f,
+ 0x77,0xa9,0x32,0xf6,0xa0,0x9,0x4d,0x5f,0xb7,0xfb,0x3,0x4e,0x97,0x0,0x0,0x35,
+ 0x82,0xb2,0x4,0x28,0xe4,0xa7,0xac,0x43,0xad,0x85,0x42,0xd7,0xef,0x84,0x26,0x3c,
+ 0x9,0xd7,0xf7,0x4a,0x93,0x1d,0x43,0xb6,0xe9,0xa3,0x5f,0xfc,0x34,0xac,0x76,0x58,
+ 0xb9,0xec,0x1c,0x76,0x29,0x28,0x2e,0x8c,0x4c,0x5c,0xa4,0x77,0x90,0x9d,0x3,0x0,
+ 0xe0,0x7c,0x94,0x25,0x40,0x11,0x83,0x5f,0x1d,0x3b,0xa8,0xb2,0xaa,0x32,0x54,0x76,
+ 0xe,0x3b,0x35,0x88,0x88,0xca,0x1b,0x7b,0xdb,0x88,0x6c,0xd9,0x39,0x2,0x41,0x97,
+ 0x76,0x1d,0xb7,0xaa,0x74,0xba,0xc4,0x83,0x6a,0x1,0x0,0x35,0x81,0xb2,0x4,0x28,
+ 0xe2,0xf0,0xc9,0xa3,0x2d,0x84,0x52,0xa7,0x4a,0x9a,0x67,0xd0,0xd,0xbd,0x95,0x1c,
+ 0x75,0xb0,0xf2,0xfc,0xc0,0x89,0xdf,0x34,0xac,0x1f,0x9d,0x27,0x14,0x19,0x7b,0xf0,
+ 0x79,0x7d,0xee,0x9e,0x2f,0xf,0x1f,0x23,0x3b,0x7,0x0,0xc0,0xd9,0x28,0x4b,0x80,
+ 0x2,0xee,0x98,0x3c,0xf4,0x5e,0xc3,0x67,0x28,0xf5,0xf3,0xde,0xa0,0x5e,0xfd,0xbc,
+ 0x91,0x37,0xd,0xca,0x97,0x9d,0x23,0x90,0x6c,0x9c,0xb4,0xe4,0x5d,0x85,0xa6,0xc4,
+ 0xf5,0x13,0x79,0x39,0xb1,0x53,0x56,0xce,0xb8,0x5c,0x76,0x10,0x0,0x80,0x73,0x29,
+ 0xf5,0xe2,0x9,0x50,0xd1,0xac,0x8d,0x29,0x4d,0x73,0xb,0xf2,0x62,0x84,0x42,0xa7,
+ 0x4a,0x2e,0x97,0x2b,0x71,0x50,0x47,0x4e,0x95,0xac,0xb4,0xbf,0xec,0xff,0xed,0x56,
+ 0xe9,0x3a,0xde,0xa6,0x3d,0x1f,0x77,0x93,0x9d,0x3,0x0,0xe0,0x5c,0x94,0x25,0x20,
+ 0xc8,0xa5,0xed,0x5c,0x9d,0xa0,0xda,0x54,0x78,0x7c,0x4c,0xd3,0xcc,0x91,0x5d,0x38,
+ 0x55,0xb2,0x32,0xf3,0x9e,0xa4,0x2d,0x75,0xc2,0xea,0x28,0x33,0xf6,0x50,0x52,0x56,
+ 0x12,0xfe,0xdc,0xd2,0xa9,0x57,0xc9,0xce,0x1,0x0,0x70,0x26,0xca,0x12,0x10,0xc4,
+ 0x6,0x4c,0x1d,0x33,0xac,0xac,0xac,0x2c,0x5c,0x76,0xe,0x3b,0xd5,0xa9,0x53,0xa7,
+ 0x74,0xf9,0x13,0xc9,0x8b,0x64,0xe7,0x8,0x64,0x37,0xb5,0xbd,0x5e,0xa9,0xb1,0x87,
+ 0x8f,0xbf,0xdf,0xd1,0x59,0x76,0xe,0x0,0x80,0x33,0x51,0x96,0x80,0x20,0x35,0x7f,
+ 0xeb,0xd2,0xe8,0xcc,0xdc,0xac,0x78,0xa1,0xd0,0xf5,0x3b,0xa1,0x9,0x4f,0xbf,0x6b,
+ 0x7b,0x28,0xfd,0x4c,0xa5,0x73,0xf1,0xfc,0xa0,0x89,0xdf,0x84,0xd7,0x9,0x2f,0x95,
+ 0x9d,0xc3,0x2e,0xe5,0x15,0xe5,0x61,0xf,0xcc,0x7e,0xf2,0x56,0xd9,0x39,0x0,0x0,
+ 0xce,0x43,0x59,0x2,0x82,0xd4,0xd2,0xcf,0x56,0xd,0x32,0xc,0x23,0x49,0x76,0xe,
+ 0x3b,0x45,0x45,0xd4,0xcf,0x7f,0xa8,0xfb,0xdd,0x47,0x64,0xe7,0x70,0x82,0x5b,0xaf,
+ 0xec,0xfc,0x81,0x4a,0xa7,0x4b,0x7b,0xe,0x7e,0xcf,0x55,0x3c,0x0,0xc0,0x79,0xa3,
+ 0x2c,0x1,0x41,0x68,0xf6,0x87,0xb,0x63,0xf3,0x8b,0xb,0xa2,0x64,0xe7,0xb0,0x93,
+ 0xe6,0xd2,0x12,0x87,0xde,0xd8,0x9f,0xeb,0x77,0xe7,0xe8,0xe9,0x7e,0xf,0xef,0x6b,
+ 0xd4,0x20,0x26,0x57,0x28,0x32,0x25,0x6e,0x1a,0x86,0xeb,0xf6,0xc9,0x83,0xef,0x93,
+ 0x9d,0x3,0x0,0xe0,0x2c,0x94,0x25,0x20,0x8,0xa5,0xef,0x58,0xd7,0x5f,0xb5,0x51,
+ 0x87,0xc6,0xd,0x1a,0xe5,0x8c,0xe8,0x3c,0xa0,0x50,0x76,0x10,0x27,0x59,0xef,0x59,
+ 0x3c,0x3b,0xc4,0xed,0xf6,0xca,0xce,0x61,0x13,0xfd,0x54,0x7e,0x5e,0xb4,0x9e,0xfe,
+ 0x46,0x5b,0xd9,0x41,0x0,0x0,0xce,0x41,0x59,0x2,0x82,0xcc,0xeb,0x6b,0xdf,0x6b,
+ 0x59,0x50,0x52,0x18,0x25,0x3b,0x87,0x9d,0xdc,0x6e,0xb7,0x77,0x75,0xe2,0xc2,0x79,
+ 0xb2,0x73,0x38,0xd1,0x35,0x7f,0xb8,0x6a,0x97,0x4a,0xd7,0xf1,0x3e,0xfc,0xf6,0x93,
+ 0xae,0xb2,0x73,0x0,0x0,0x9c,0x83,0xb2,0x4,0x4,0x99,0x55,0x5f,0x6e,0xec,0x2d,
+ 0x4c,0x85,0x46,0x1d,0x84,0xf0,0x5c,0xd6,0xe4,0x92,0x3,0xb2,0x43,0x38,0xd5,0xeb,
+ 0xa3,0x5e,0xdc,0x16,0x16,0x16,0xa6,0xcc,0x94,0x78,0x69,0x59,0x69,0x78,0xe2,0xe2,
+ 0x97,0x3b,0xc8,0xce,0x1,0x0,0x70,0x6,0xca,0x12,0x10,0x44,0x46,0xbc,0x31,0xae,
+ 0x6f,0x79,0x79,0x79,0x98,0xec,0x1c,0x76,0xaa,0x57,0x37,0xa2,0x30,0xe5,0xe1,0x19,
+ 0xab,0x64,0xe7,0x70,0xb2,0x9b,0xda,0x5e,0xbf,0x4d,0xa5,0xd3,0xa5,0xcf,0xf6,0x7e,
+ 0xde,0x51,0x76,0xe,0x0,0x80,0x33,0x50,0x96,0x80,0x20,0x72,0x30,0xfb,0x97,0x56,
+ 0x42,0xa9,0xa9,0x70,0xcd,0x33,0xb0,0x53,0xef,0x34,0xd9,0x31,0x9c,0xee,0x85,0x41,
+ 0x4f,0xec,0x89,0x8,0x8f,0x28,0x96,0x9d,0xc3,0x2e,0x55,0x55,0x55,0xa1,0x7d,0xa6,
+ 0x8c,0x1a,0x29,0x3b,0x7,0x0,0x20,0xf0,0x51,0x96,0x80,0x20,0x91,0x30,0xed,0x9e,
+ 0x21,0x3e,0xaf,0xcf,0x2d,0x3b,0x87,0x9d,0x1a,0xd4,0xab,0x9f,0x77,0x4f,0xd7,0x61,
+ 0x39,0xb2,0x73,0x4,0x83,0x1e,0xed,0x6f,0x59,0x27,0x34,0x35,0x96,0xf1,0x84,0x10,
+ 0xfa,0xb1,0x93,0x59,0x4d,0xa7,0xae,0x7a,0xbb,0xb5,0xec,0x20,0x0,0x80,0xc0,0x46,
+ 0x59,0x2,0x82,0xc4,0xd1,0x93,0xc7,0x9a,0xb,0x85,0x4e,0x95,0x34,0x97,0x96,0x38,
+ 0xa8,0x53,0xdf,0xa5,0xb2,0x73,0x4,0x8b,0xc7,0x7a,0xdd,0x77,0xe8,0xa2,0xd8,0xf8,
+ 0x23,0x42,0x91,0x29,0x71,0x4d,0x68,0xfa,0x86,0xbf,0x6d,0xe9,0x2e,0x3b,0x7,0x0,
+ 0x20,0xb0,0x29,0xf5,0x2e,0x34,0x10,0xac,0x6,0x4c,0x1d,0x33,0xcc,0x30,0xc,0x95,
+ 0xde,0xfc,0xf0,0xc4,0x35,0x68,0x9c,0x3d,0xf2,0xa6,0x84,0x7c,0xd9,0x41,0x82,0x49,
+ 0xfa,0xc4,0xe4,0x45,0x1d,0x9f,0xee,0x35,0xa1,0xaa,0xb2,0x52,0x76,0x14,0x5b,0x94,
+ 0x96,0x95,0x86,0x3f,0xb1,0xf0,0xc5,0xeb,0xa6,0x8e,0x78,0x76,0xa7,0xec,0x2c,0x35,
+ 0xe1,0xd5,0x8c,0x59,0xad,0xbe,0x39,0xbc,0xf7,0xca,0x82,0xb2,0xc2,0x28,0xc3,0x30,
+ 0x5c,0xa6,0x69,0xa,0xaf,0xcf,0xe7,0x36,0xcc,0xe0,0xfa,0xdd,0x60,0x9a,0xa6,0xcb,
+ 0x6b,0xf8,0xdc,0x5e,0xaf,0xd7,0xed,0x33,0x7c,0x2e,0xd3,0x34,0x3,0xea,0xbf,0x9f,
+ 0xa6,0x69,0x46,0x48,0x48,0x88,0x11,0xdf,0xb0,0x49,0xe6,0xb2,0x89,0x73,0x52,0x65,
+ 0xe7,0x1,0x70,0x61,0x28,0x4b,0x40,0x10,0xc8,0xcc,0xcd,0x8a,0x17,0xa,0x9d,0x2a,
+ 0xd5,0xe,0xad,0x5d,0xbe,0x2a,0x31,0x25,0x45,0x76,0x8e,0x60,0x74,0x63,0xdb,0x6b,
+ 0x3f,0xfd,0x70,0xcf,0x36,0x8f,0x26,0xb4,0xa0,0xff,0xfb,0x49,0x13,0x9a,0xbe,0xf3,
+ 0x87,0xaf,0x26,0xa,0x21,0x82,0xa2,0x2c,0x7d,0xf8,0xdd,0x27,0xb7,0xe6,0x17,0x17,
+ 0xbc,0x2d,0x3b,0x87,0xea,0x4c,0xd3,0x14,0x5e,0xaf,0x57,0xfc,0x72,0xe2,0xa8,0xa7,
+ 0xcb,0xb3,0xfd,0xc6,0x6f,0x7d,0x71,0xc5,0x5b,0xb2,0x33,0x1,0xa8,0xbe,0x80,0x7a,
+ 0x37,0x6,0x40,0xf5,0x54,0xf8,0x2a,0x43,0x85,0x69,0x7a,0xc4,0x6f,0x57,0xa8,0x82,
+ 0xed,0x1a,0xd5,0xbf,0xfe,0x7b,0x99,0xc2,0xf4,0x84,0x86,0x86,0x4e,0xbc,0xfa,0xb2,
+ 0xab,0x76,0xc9,0xe,0x15,0xac,0xf4,0x21,0x89,0xbb,0xea,0x84,0xd5,0x51,0x66,0x4a,
+ 0xbc,0xaa,0xaa,0x2a,0x74,0xe0,0x6b,0xf7,0xe,0x91,0x9d,0xa3,0x26,0x14,0x96,0x16,
+ 0x45,0xca,0xce,0x80,0x7f,0xd3,0x84,0xd0,0x4b,0x4a,0x4b,0x22,0x7a,0xea,0xc3,0xc7,
+ 0xc8,0xce,0x2,0xa0,0xfa,0x34,0xd3,0x34,0x65,0x67,0x0,0x50,0x83,0x56,0xec,0xda,
+ 0xe0,0xce,0x2b,0xca,0x8b,0x2e,0xaf,0xaa,0xa,0xf3,0x19,0x55,0xae,0x8a,0xca,0xca,
+ 0xb0,0x92,0xf2,0xd2,0xf0,0xf2,0xca,0x8a,0x30,0x21,0x2,0xfb,0xe7,0x5d,0xd3,0x34,
+ 0x11,0x16,0x1a,0x56,0x5e,0x27,0xb4,0x76,0x69,0x58,0xed,0xf0,0xf2,0xf0,0xda,0xb5,
+ 0x4b,0x1b,0x46,0x44,0xe7,0xf5,0xbb,0xe6,0xe,0xaf,0xec,0x6c,0x2a,0x79,0x29,0xfd,
+ 0xf5,0x76,0x6b,0xbf,0xd8,0xd4,0x43,0x85,0xd3,0x25,0x21,0x84,0x10,0x9a,0xf0,0x8c,
+ 0xea,0x3a,0x78,0xde,0x7d,0xb7,0xdd,0x95,0x2d,0x3b,0xca,0x85,0xe8,0x30,0xf1,0xf6,
+ 0xa7,0x4c,0xd3,0x4c,0x92,0x9d,0x3,0xff,0x45,0xd3,0x3c,0x77,0xdf,0x3a,0x34,0xf9,
+ 0xde,0x5b,0x18,0xa3,0x1,0x9c,0x88,0xb2,0x4,0x0,0xf8,0x1f,0xdd,0x5e,0x1c,0x74,
+ 0xdf,0xe9,0xc2,0xfc,0x68,0xa1,0xc8,0xf5,0xce,0xfa,0xf5,0x22,0x1f,0xfc,0xe0,0xb9,
+ 0xb4,0x59,0xb2,0x73,0x5c,0x8,0xca,0x52,0xe0,0xaa,0x13,0x56,0xe7,0xd1,0x6d,0x93,
+ 0x57,0xbe,0x21,0x3b,0x7,0x80,0xf3,0xc7,0x35,0x3c,0x0,0xc0,0xff,0xd8,0xf4,0xec,
+ 0xd2,0x77,0x35,0x97,0x66,0xc8,0xce,0x61,0x97,0xfc,0xa2,0x82,0xa8,0x57,0x56,0xce,
+ 0xb8,0x5c,0x76,0x8e,0xb,0xa1,0x69,0x9a,0xec,0x8,0xf8,0x1d,0x65,0xe5,0x65,0xe1,
+ 0xfd,0xa7,0xdc,0x3d,0x4c,0x76,0xe,0x0,0xe7,0x8f,0xb2,0x4,0x0,0xb0,0xf4,0xc7,
+ 0x8b,0xaf,0xd8,0x67,0x6,0xdf,0x67,0xe0,0x2c,0x69,0x42,0xd3,0x37,0xed,0xd9,0xda,
+ 0x4d,0x76,0xe,0x4,0x2d,0xfd,0x58,0xde,0xf1,0xf8,0xb4,0x1d,0x6b,0x42,0x65,0x7,
+ 0x1,0x70,0x7e,0x28,0x4b,0x0,0x0,0x4b,0x73,0x1f,0x9c,0xbe,0x26,0xac,0x76,0x6d,
+ 0x65,0xc6,0x1e,0x4a,0xcb,0x4a,0xc3,0x5f,0xce,0x78,0xb3,0x8d,0xec,0x1c,0x8,0x4e,
+ 0x86,0xcf,0x48,0x9a,0xff,0xd1,0x92,0xd1,0xb2,0x73,0x0,0x38,0x3f,0x94,0x25,0x0,
+ 0xc0,0xef,0xba,0xa9,0x5d,0xc7,0x6d,0xa6,0x30,0x95,0x39,0x5d,0xfa,0xe0,0xeb,0x6d,
+ 0xb7,0xca,0xce,0x81,0xe0,0x95,0x57,0x94,0x1f,0xbd,0xe8,0xd3,0xf4,0x8,0xd9,0x39,
+ 0x0,0x9c,0x3b,0xca,0x12,0x0,0xe0,0x77,0xbd,0x30,0x70,0xe2,0x1e,0x95,0xa6,0xc4,
+ 0x4b,0xcb,0x4a,0xc3,0x1f,0x9d,0xff,0x5c,0x67,0xd9,0x39,0x10,0xa4,0x4c,0x53,0x5f,
+ 0xb8,0x35,0x6d,0x84,0xec,0x18,0x0,0xce,0x1d,0x65,0x9,0x0,0x70,0x46,0x5d,0xfe,
+ 0xd4,0x69,0xab,0x4a,0xa7,0x4b,0x5f,0xec,0xff,0xaa,0x83,0xec,0x1c,0x8,0x5e,0x5,
+ 0x25,0x85,0x51,0xef,0x6d,0x5e,0x18,0x27,0x3b,0x7,0x80,0x73,0x43,0x59,0x2,0x0,
+ 0x9c,0xd1,0x73,0x3,0x1f,0xff,0xa6,0x41,0xfd,0x6,0xf9,0x42,0x91,0xb1,0x7,0xc3,
+ 0x67,0xb8,0xba,0xbd,0x34,0xf8,0x3e,0xd9,0x39,0x10,0xa4,0x4c,0xa1,0x2f,0xf9,0x6c,
+ 0xe5,0x20,0xd9,0x31,0x0,0x9c,0x1b,0xca,0x12,0x0,0xe0,0xac,0x36,0x4f,0x5a,0x3a,
+ 0x4b,0xa1,0x29,0x71,0x3d,0xaf,0x20,0x2f,0xfa,0xa5,0xf4,0xd7,0xdb,0xc9,0xe,0x82,
+ 0xe0,0x54,0x56,0x5e,0x16,0xde,0x6f,0xca,0x68,0xae,0xe3,0x1,0xe,0x40,0x59,0x2,
+ 0x0,0x9c,0x93,0x3f,0xb5,0x68,0xb3,0x57,0xa5,0x29,0xf1,0x2d,0xdf,0x7c,0xd2,0x55,
+ 0x76,0xe,0x4,0x2d,0xfd,0xd8,0xa9,0xec,0xa6,0xa9,0xdb,0x33,0xc2,0x65,0x7,0x1,
+ 0x70,0x66,0x94,0x25,0x0,0xc0,0x39,0x99,0xf3,0xc0,0x6b,0xeb,0x54,0x9a,0x12,0x2f,
+ 0x2b,0x2f,0xb,0x9b,0xb4,0x64,0x6a,0x7b,0xd9,0x39,0x10,0x9c,0x4c,0xc3,0x48,0x5a,
+ 0xf0,0x51,0xda,0x48,0xd9,0x39,0x0,0x9c,0x19,0x65,0x9,0x0,0x70,0xce,0xba,0xb4,
+ 0x53,0x6b,0xec,0x61,0xdb,0xf7,0xdb,0x3b,0xcb,0xce,0x81,0xe0,0x95,0x5f,0x9c,0x1f,
+ 0xb5,0x70,0x5b,0x5a,0xa4,0xec,0x1c,0x0,0x7e,0x1f,0x65,0x9,0x0,0x70,0xce,0x9e,
+ 0x1f,0x38,0xe1,0x9b,0xba,0x75,0xea,0x96,0xca,0xce,0x61,0x97,0xca,0xca,0xca,0xd0,
+ 0x1,0xaf,0x8e,0x19,0x26,0x3b,0x7,0x82,0x94,0x29,0xf4,0xf7,0xb7,0xa5,0xf3,0xd9,
+ 0x25,0x20,0x80,0x51,0x96,0x0,0x0,0xe7,0xa5,0xdb,0x55,0x5d,0x36,0xa9,0x72,0xba,
+ 0x24,0x84,0xd0,0x7f,0xcd,0xce,0x6c,0xfe,0xc6,0xda,0xf7,0x5a,0xc8,0xe,0x82,0xe0,
+ 0x54,0x58,0x52,0x18,0x39,0x63,0x7d,0x72,0x73,0xd9,0x39,0x0,0x58,0xa3,0x2c,0x1,
+ 0x0,0xce,0xcb,0x93,0x7d,0xc6,0xed,0x8f,0x6b,0xd8,0x38,0x5b,0x28,0x33,0xf6,0x20,
+ 0xf4,0x35,0x5f,0x7d,0xd0,0x4b,0x76,0xe,0x4,0x29,0x53,0xe8,0x2b,0x76,0xae,0xeb,
+ 0x2b,0x3b,0x6,0x0,0x6b,0x94,0x25,0x0,0xc0,0x79,0x5b,0x93,0xb8,0x70,0x9e,0xbb,
+ 0x96,0xdb,0x2b,0x3b,0x87,0x5d,0x8a,0x4b,0x8b,0x23,0x5e,0x5a,0x3e,0x9d,0x29,0x71,
+ 0xf8,0x45,0x59,0x45,0x39,0x53,0xe2,0x40,0x80,0xa2,0x2c,0x1,0x0,0xaa,0xa5,0xe3,
+ 0x1f,0x3b,0x6c,0x57,0xe5,0x3a,0x9e,0x26,0x34,0x7d,0xcb,0xb7,0x9f,0x32,0x25,0xe,
+ 0x7f,0xd1,0x8f,0x9d,0xca,0x6e,0xba,0xe8,0xd3,0xf4,0x8,0xd9,0x41,0x0,0xfc,0x27,
+ 0xca,0x12,0x0,0xa0,0x5a,0xa6,0xc,0x7b,0x66,0x67,0x78,0x9d,0x70,0x65,0xc6,0x1e,
+ 0xca,0xca,0xcb,0xc2,0xc6,0xcf,0xf5,0x74,0x91,0x9d,0x3,0xc1,0xc9,0x34,0x8c,0xa4,
+ 0x85,0x5b,0x97,0x73,0xba,0x4,0x4,0x18,0xca,0x12,0x0,0xa0,0xda,0x6e,0xb9,0xf2,
+ 0xc6,0x2d,0x2a,0x9d,0x2e,0xed,0xfe,0xe9,0x1b,0x9e,0xbb,0x4,0xbf,0x29,0x28,0x29,
+ 0x88,0x7a,0x73,0xdd,0x9c,0x16,0xb2,0x73,0x0,0xf8,0x37,0xca,0x12,0x0,0xa0,0xda,
+ 0x3c,0xfd,0x1e,0xd9,0x1b,0x5d,0x3f,0x3a,0x4f,0x28,0x32,0xf6,0xe0,0xf3,0xfa,0xdc,
+ 0xdd,0x27,0xf,0xbd,0x57,0x76,0xe,0x4,0x29,0x53,0xe8,0x19,0x9f,0xaf,0x67,0xec,
+ 0x1,0x8,0x20,0x94,0x25,0x0,0xc0,0x5,0xd9,0x34,0x69,0xc9,0xbb,0x5a,0x88,0xcb,
+ 0x90,0x9d,0xc3,0x26,0x7a,0x6e,0x7e,0x6e,0xcc,0xb3,0x4b,0xa6,0x5c,0x25,0x3b,0x8,
+ 0x82,0x53,0x79,0x45,0x79,0x58,0xff,0xa9,0x77,0xf3,0x6c,0x2f,0x20,0x40,0x50,0x96,
+ 0x0,0x0,0x17,0xec,0x9a,0xd6,0x7f,0xde,0xa5,0xd2,0x75,0xbc,0x6d,0x7b,0x77,0x76,
+ 0x96,0x9d,0x3,0x41,0x4b,0xcf,0x3a,0x95,0xdd,0x74,0xe1,0xb6,0xb4,0x48,0xd9,0x41,
+ 0x0,0x50,0x96,0x0,0x0,0x35,0xe0,0xcd,0xbb,0xf5,0xad,0x61,0x61,0x61,0xe5,0xb2,
+ 0x73,0xd8,0xa5,0xbc,0xa2,0x22,0x6c,0xc2,0x82,0x17,0x3a,0xca,0xce,0x81,0xe0,0xe4,
+ 0xf3,0xf9,0xa6,0x2c,0xf9,0x74,0xe5,0x10,0xd9,0x39,0x0,0x50,0x96,0x0,0x0,0x35,
+ 0xe4,0xa6,0x3f,0x5d,0xbf,0x4d,0x9d,0xd3,0x25,0xa1,0x7f,0xb1,0x7f,0x77,0x7,0xd9,
+ 0x39,0x10,0xbc,0x4e,0x17,0xe5,0x47,0xbd,0xb7,0x79,0x41,0x9c,0xec,0x1c,0x80,0xea,
+ 0x28,0x4b,0x0,0x80,0x1a,0xf1,0xc2,0xc0,0x27,0xf6,0xa8,0x34,0x25,0x5e,0x55,0x55,
+ 0x15,0x3a,0x78,0xfa,0xd8,0x41,0xb2,0x73,0x20,0x38,0x99,0xa6,0x99,0xb4,0x74,0xfb,
+ 0x6a,0xfe,0xfe,0x2,0x24,0xa3,0x2c,0x1,0x0,0x6a,0xcc,0x6d,0x57,0xde,0xf4,0x81,
+ 0x2a,0xa7,0x4b,0x42,0x8,0xfd,0xd0,0xf1,0x5f,0x5b,0xce,0xda,0x98,0xd2,0x54,0x76,
+ 0x10,0x4,0xa7,0xd2,0xb2,0xd2,0xf0,0x71,0x73,0x9e,0xe6,0x61,0xc8,0x80,0x44,0x94,
+ 0x25,0x0,0x40,0x8d,0x49,0xec,0x37,0x7e,0x5f,0xc3,0x28,0x75,0xa6,0xc4,0x85,0x29,
+ 0xf4,0x95,0x5f,0x6e,0x60,0xea,0x19,0xfe,0xa2,0xff,0xed,0xa7,0x6f,0xda,0xbf,0xbd,
+ 0x61,0x5e,0xbc,0xec,0x20,0x80,0xaa,0x28,0x4b,0x0,0x80,0x1a,0xb5,0xf1,0x19,0xa5,
+ 0xa6,0xc4,0x45,0x41,0x71,0x41,0xe4,0xd4,0x55,0x6f,0xb7,0x96,0x9d,0x3,0xc1,0xc9,
+ 0x30,0x8c,0xa4,0x95,0x5f,0x6e,0xe8,0x2d,0x3b,0x7,0xa0,0x2a,0xca,0x12,0x0,0xa0,
+ 0xc6,0xa9,0x36,0x25,0xbe,0x69,0xcf,0xd6,0x6e,0xb2,0x73,0x20,0x78,0x15,0x97,0x96,
+ 0x44,0xbc,0xb1,0x76,0x76,0xb,0xd9,0x39,0x0,0x15,0x51,0x96,0x0,0x0,0x35,0x4e,
+ 0xb5,0x29,0xf1,0xe2,0xd2,0xe2,0x88,0x57,0x57,0xcf,0x6a,0x25,0x3b,0x7,0x82,0x93,
+ 0x69,0x9a,0x49,0xeb,0xff,0xb6,0xa5,0x87,0xec,0x1c,0x80,0x8a,0x28,0x4b,0x0,0x0,
+ 0xbf,0xb8,0xe9,0x4f,0x1d,0x15,0x9a,0x12,0xd7,0xf4,0xd,0x7f,0xfb,0xa8,0xbb,0xec,
+ 0x1c,0x8,0x5e,0x85,0x25,0x85,0x91,0xc9,0x5b,0x16,0xc7,0xc8,0xce,0x1,0xa8,0x86,
+ 0xb2,0x4,0x0,0xf0,0x8b,0x17,0x6,0x4e,0x54,0x6a,0x4a,0xbc,0xb8,0xb4,0x38,0xe2,
+ 0xe9,0xd4,0x97,0xaf,0x96,0x9d,0x3,0x41,0xca,0x14,0xfa,0xd2,0xcf,0x56,0x31,0x25,
+ 0xe,0xd8,0x8c,0xb2,0x4,0x0,0xf0,0x9b,0xdb,0xff,0x72,0xf3,0x26,0x95,0x4e,0x97,
+ 0xb6,0x7d,0xb7,0xa3,0xb3,0xec,0x1c,0x8,0x5e,0x45,0xa5,0x45,0x91,0xef,0x6e,0xe2,
+ 0x41,0xb5,0x80,0x9d,0x28,0x4b,0x0,0x0,0xbf,0x79,0xb2,0xf7,0xb8,0xfd,0x8d,0x1b,
+ 0xc6,0xe6,0x8,0x45,0xa6,0xc4,0x7d,0x5e,0x9f,0xbb,0x57,0xd2,0x5d,0xa3,0x65,0xe7,
+ 0x40,0x90,0x32,0x85,0xbe,0x74,0x3b,0xa7,0x4b,0x80,0x9d,0x28,0x4b,0x0,0x0,0xbf,
+ 0x5a,0x9b,0xf8,0x7e,0x72,0x88,0xdb,0xed,0x95,0x9d,0xc3,0x26,0x7a,0xf6,0xa9,0xec,
+ 0xb8,0x99,0x1b,0xe7,0xf2,0x5c,0x1c,0xf8,0x45,0x59,0x79,0x59,0x78,0x9f,0x57,0x46,
+ 0x8e,0x94,0x9d,0x3,0x50,0x5,0x65,0x9,0x0,0xe0,0x77,0x9d,0xfe,0x78,0xcd,0x76,
+ 0x95,0xae,0xe3,0xad,0xfa,0x62,0x63,0x6f,0xd9,0x39,0x10,0xb4,0xf4,0xe3,0x79,0x27,
+ 0xe2,0x66,0x6d,0x4a,0x69,0x2a,0x3b,0x8,0xa0,0x2,0xca,0x12,0x0,0xc0,0xef,0xa6,
+ 0xc,0x9f,0xb4,0xb3,0x4e,0x58,0x1d,0x65,0xa6,0xc4,0xb,0x4b,0x8a,0x22,0x27,0xaf,
+ 0x78,0xa3,0xad,0xec,0x1c,0x8,0x4e,0xa6,0x61,0x26,0xa5,0xef,0x5c,0xdb,0x5f,0x76,
+ 0xe,0x40,0x5,0x94,0x25,0x0,0x80,0x2d,0x6e,0xb9,0xf2,0xc6,0xf,0x54,0x3a,0x5d,
+ 0xfa,0x60,0xcf,0xc7,0xb7,0xca,0xce,0x81,0xe0,0x55,0x52,0x5a,0x12,0xa1,0xa7,0x53,
+ 0xc8,0x1,0x7f,0xa3,0x2c,0x1,0x0,0x6c,0xf1,0x4c,0xff,0x47,0xf7,0x46,0xd4,0x8d,
+ 0x28,0x96,0x9d,0xc3,0x2e,0x15,0x15,0x15,0x61,0xc3,0xde,0x7c,0x90,0x77,0xff,0xe1,
+ 0x2f,0xfa,0xe6,0xaf,0x29,0xe4,0x80,0xbf,0x51,0x96,0x0,0x0,0xb6,0xe9,0xd5,0xfe,
+ 0xd6,0x35,0xaa,0x9c,0x2e,0x9,0x21,0xf4,0x9f,0x32,0x7f,0x6e,0x3d,0x6f,0x6b,0x6a,
+ 0xb4,0xec,0x20,0x8,0x4e,0x15,0x15,0x15,0x61,0x89,0x8b,0xf4,0xe,0xb2,0x73,0x0,
+ 0xc1,0x8c,0xb2,0x4,0x0,0xb0,0xcd,0x23,0x3d,0xc7,0x1e,0xbe,0xa8,0x71,0x7c,0xa6,
+ 0x50,0x64,0x4a,0x5c,0x98,0x42,0x5f,0xb6,0x7d,0xd,0x53,0xcf,0xf0,0x17,0xfd,0xb3,
+ 0xbf,0x7f,0xd1,0x71,0xe5,0x97,0x1b,0x79,0x3d,0x7,0xf8,0x9,0x3f,0x5c,0x0,0x0,
+ 0x5b,0xad,0x98,0x38,0x77,0x61,0x68,0x68,0x68,0xa5,0xec,0x1c,0x76,0x39,0x5d,0x78,
+ 0x3a,0x6a,0xfa,0xda,0xf7,0x5a,0xca,0xce,0x81,0xe0,0x54,0x55,0x55,0x35,0x6d,0xee,
+ 0x96,0xc5,0x3c,0xdb,0xb,0xf0,0x13,0xca,0x12,0x0,0xc0,0x76,0x37,0xb5,0xeb,0xb8,
+ 0x55,0x95,0xeb,0x78,0x9a,0xd0,0xf4,0xf5,0xbb,0x3f,0xe8,0x21,0x3b,0x7,0x82,0x57,
+ 0x6e,0xc1,0xa9,0x98,0x45,0x9f,0x2c,0x8f,0x90,0x9d,0x3,0x8,0x46,0x94,0x25,0x0,
+ 0x80,0xed,0x5e,0x1c,0xf4,0xc4,0x9e,0xf0,0x3a,0xe1,0xa5,0xb2,0x73,0xd8,0xa5,0xa8,
+ 0xa4,0x38,0xe2,0xd9,0xa5,0x53,0xaf,0x92,0x9d,0x3,0xc1,0xc9,0x34,0xcc,0xa4,0xf7,
+ 0xb7,0xad,0x18,0x21,0x3b,0x7,0x10,0x8c,0x28,0x4b,0x0,0x0,0x29,0x6e,0xbb,0xf2,
+ 0x26,0xa5,0xa6,0xc4,0xb7,0x7e,0xfb,0x59,0x17,0xd9,0x39,0x10,0xbc,0xf2,0x8b,0xf3,
+ 0xa3,0x96,0x7c,0x96,0x11,0x2e,0x3b,0x7,0x10,0x6c,0x28,0x4b,0x0,0x0,0x29,0x12,
+ 0xfb,0x8d,0xdf,0x17,0x5d,0x3f,0x3a,0x4f,0x28,0x32,0xf6,0x50,0x55,0x55,0x15,0xda,
+ 0x6f,0xea,0x68,0xbf,0xbd,0xfb,0x6f,0x9a,0xa6,0xbf,0xbe,0x34,0x9c,0xc0,0x14,0xfa,
+ 0xc2,0x6d,0xcb,0x39,0x5d,0x2,0x6a,0x98,0x5b,0x76,0x0,0x20,0xd8,0x4c,0x5f,0xf5,
+ 0x6e,0xcb,0x5d,0x7,0xf7,0x5c,0x5d,0x58,0x5a,0x14,0x69,0xf7,0xf7,0x36,0xc,0xc3,
+ 0x55,0xe9,0xf3,0x86,0x7a,0xbd,0x55,0x7e,0xfc,0xd9,0xd6,0x84,0xcb,0xa5,0x19,0xb5,
+ 0x6b,0xd5,0xae,0x6c,0xd1,0xe8,0xa2,0xc3,0xef,0x3d,0xf8,0xea,0x6,0xff,0x7d,0x2f,
+ 0x4,0xbb,0x4d,0x93,0x96,0xbc,0x7b,0xcd,0xc4,0xdb,0x9f,0x16,0x6a,0xbc,0xd0,0xd7,
+ 0x8f,0xe6,0x1c,0xf3,0xbc,0xbd,0x69,0x5e,0xfc,0x83,0xdd,0x46,0x67,0xd6,0xf4,0x17,
+ 0xd7,0x34,0x8d,0xc2,0xa4,0xb8,0xd3,0x45,0xf9,0x51,0xb2,0x33,0x0,0xc1,0x86,0xb2,
+ 0x4,0xd4,0xb0,0xdd,0x3f,0x7f,0xd3,0xfe,0x97,0xec,0x23,0x4b,0x64,0xe7,0xf0,0xb7,
+ 0xb2,0x8a,0x72,0xf1,0x75,0x71,0xbe,0xe7,0x8e,0xc9,0x43,0xe3,0xd7,0x3f,0xb3,0x78,
+ 0xb6,0xec,0x3c,0x70,0xae,0x8b,0x1b,0xc7,0x1f,0xfe,0x35,0xfb,0xa8,0xec,0x18,0xb6,
+ 0xd0,0x84,0xa6,0xaf,0xfc,0x62,0x63,0xe1,0x83,0xdd,0x46,0xcf,0x94,0x9d,0x5,0xc1,
+ 0xc7,0x34,0x4c,0x6e,0xc,0x1,0x35,0x8c,0xb2,0x4,0xd4,0xb0,0x98,0x7a,0xd1,0xb9,
+ 0x7,0x8f,0x1f,0xf6,0x68,0x42,0xe8,0xb2,0xb3,0xf8,0x9b,0x26,0x34,0x3d,0xb7,0xe0,
+ 0x94,0x67,0xe8,0xf4,0xfb,0x13,0x16,0x3f,0xf6,0x4e,0x9a,0xec,0x3c,0x70,0xa6,0xde,
+ 0x57,0xdf,0xbe,0xea,0xcd,0x35,0xb3,0x3d,0x42,0x81,0x9f,0x19,0x21,0x84,0x28,0x2c,
+ 0x2e,0x8c,0x9c,0xbe,0xf6,0xbd,0x96,0x8f,0xf5,0x1c,0x7b,0xa8,0x26,0xbf,0x6e,0x83,
+ 0x88,0xa8,0xbc,0x53,0x85,0x79,0x4a,0x5c,0x69,0x3c,0x47,0x4a,0xfc,0xfd,0x4,0xc0,
+ 0xbf,0x34,0x8e,0xec,0x81,0x9a,0xd7,0xe1,0x89,0xdb,0x9f,0x32,0xd,0x33,0x49,0x76,
+ 0xe,0xbb,0x84,0x84,0x84,0x3c,0xb9,0x73,0xca,0xfa,0xa9,0xb2,0x73,0xc0,0xb9,0xfe,
+ 0x3a,0xe1,0xb6,0x67,0x5c,0x42,0x7b,0x49,0x76,0xe,0xbb,0x44,0xd4,0x8d,0x78,0xf8,
+ 0xa3,0x17,0xd2,0xdf,0x92,0x9d,0x23,0x58,0xd,0x7d,0xfd,0x81,0x84,0x83,0xc7,0xe,
+ 0xb5,0x12,0x8a,0x15,0xa6,0xb0,0xda,0x61,0x8f,0x7f,0xa2,0xaf,0x9a,0x2e,0x3b,0x7,
+ 0x10,0x4c,0x38,0xae,0x5,0xfc,0x20,0xba,0x5e,0x3,0x65,0x3e,0xb4,0x2e,0x84,0x10,
+ 0x3e,0x9f,0xcf,0x7d,0xcb,0xf3,0x9,0xe3,0x64,0xe7,0x80,0x73,0xfd,0xb1,0xc5,0xe5,
+ 0x7b,0x85,0x42,0x3f,0x33,0x45,0x25,0x45,0x11,0x93,0x96,0x4c,0x69,0x2f,0x3b,0x47,
+ 0xb0,0x5a,0xfc,0xe8,0x2c,0x15,0x4f,0xba,0x3d,0x97,0x36,0xbe,0xf8,0xa0,0xec,0x10,
+ 0x40,0xb0,0xa1,0x2c,0x1,0x7e,0xb0,0x61,0x52,0xea,0x6c,0xcd,0xe5,0x32,0x64,0xe7,
+ 0xb0,0x91,0x5e,0x58,0x5c,0x18,0xe9,0x49,0x4d,0xba,0x5a,0x76,0x10,0x38,0x53,0xca,
+ 0xb8,0x37,0x57,0xb9,0x42,0xd4,0xf9,0x99,0xd1,0x84,0xa6,0x6f,0xfd,0x8e,0x29,0x71,
+ 0x7f,0x79,0x7c,0xee,0x73,0x37,0xc8,0xce,0x60,0xb7,0x88,0xf0,0xba,0xc5,0xf3,0xc6,
+ 0xbf,0xb9,0x46,0x76,0xe,0x20,0xd8,0x50,0x96,0x0,0x3f,0x69,0xd6,0xb0,0x49,0x96,
+ 0x50,0xe8,0x9d,0x72,0x21,0x84,0xfe,0xc9,0xf7,0x3b,0x95,0x7b,0x81,0x82,0x9a,0xd3,
+ 0xfd,0xaf,0x5d,0x37,0xa8,0xf2,0xdc,0x25,0x21,0x84,0xf0,0x56,0x79,0xdd,0xfd,0xa6,
+ 0xdd,0xcd,0xd4,0xb3,0x1f,0x7c,0x71,0x70,0x4f,0x7,0xa1,0xd2,0x15,0x3c,0x4d,0xf3,
+ 0xc,0xef,0x3c,0x60,0xa1,0xec,0x18,0x40,0x30,0xa2,0x2c,0x1,0x7e,0xb2,0xe2,0xc9,
+ 0xb9,0xb,0x43,0x6b,0x85,0x56,0xca,0xce,0x61,0xa7,0xaa,0xaa,0xaa,0xd0,0xfb,0xde,
+ 0x9d,0xd8,0x4d,0x76,0xe,0x38,0xd3,0xa4,0xfe,0x8f,0x7d,0x17,0xdb,0x20,0x26,0x47,
+ 0x76,0xe,0x1b,0xe9,0x47,0x4f,0x64,0xc6,0xbf,0xf7,0xe1,0xc2,0x38,0xd9,0x41,0x82,
+ 0x49,0xbf,0x29,0xa3,0x46,0x78,0xab,0xfc,0xf9,0xf8,0x84,0x80,0xe3,0x69,0x54,0x3f,
+ 0x3a,0x67,0x64,0x97,0x41,0xf9,0xb2,0x83,0x0,0xc1,0x88,0xb2,0x4,0xf8,0xd1,0x1f,
+ 0x9a,0xb6,0xda,0x2f,0x34,0xb5,0x4e,0x97,0xbe,0xfd,0x65,0xdf,0x95,0xcb,0xb6,0xaf,
+ 0xa,0x93,0x1d,0x4,0xce,0x34,0xb8,0x53,0xbf,0xa5,0x86,0x30,0x27,0xc9,0xce,0x61,
+ 0x17,0x4d,0x68,0x7a,0xfa,0xce,0x75,0xfd,0x65,0xe7,0x8,0x26,0xc7,0x4e,0x65,0x37,
+ 0x15,0xa,0x9d,0x2a,0x85,0x84,0x84,0x78,0xd7,0x3d,0xb3,0x38,0x59,0x76,0xe,0x20,
+ 0x58,0x51,0x96,0x0,0x3f,0x4a,0x7e,0x68,0xfa,0xba,0xfa,0x75,0x23,0xf3,0x65,0xe7,
+ 0xb0,0x93,0xe1,0xf3,0x25,0xcd,0xdf,0xba,0x6c,0xa4,0xec,0x1c,0x70,0xa6,0xa1,0x37,
+ 0xf4,0x2d,0xbe,0xb8,0x71,0xfc,0x61,0xd9,0x39,0xec,0x54,0x50,0x54,0x10,0xf9,0xfa,
+ 0xda,0xf7,0x5a,0xca,0xce,0x11,0xc,0x7a,0x4c,0x1e,0x3a,0x46,0xb1,0x67,0xd,0x79,
+ 0x5a,0xc4,0x36,0x3f,0x2c,0x3b,0x4,0x10,0xcc,0x54,0xfa,0x85,0x2,0x48,0x31,0xea,
+ 0xe6,0xc1,0x29,0x9a,0xa6,0x25,0xca,0xce,0x61,0xa7,0xd3,0x45,0xf9,0xd1,0x73,0xb7,
+ 0x2c,0x8e,0x91,0x9d,0x3,0xce,0x34,0xa4,0x53,0x9f,0x54,0x95,0x3e,0xbb,0xa4,0x9,
+ 0x4d,0x5f,0xb7,0xfb,0xc3,0x1e,0xb2,0x73,0x38,0xdd,0xc3,0xb3,0x3d,0x5d,0x4e,0x16,
+ 0xe4,0xc5,0xa,0x85,0x4e,0x95,0xea,0xd6,0xa9,0x5b,0x9c,0xfa,0x38,0xcf,0xb8,0x3,
+ 0xfc,0x89,0xb2,0x4,0xf8,0xd9,0xe0,0x4e,0x7d,0x4a,0x1b,0x45,0xc5,0xe4,0xa,0x95,
+ 0xc6,0x1e,0x4c,0x53,0x5f,0xba,0x7d,0xd5,0x20,0xd9,0x31,0xe0,0x4c,0x7d,0x3b,0xf4,
+ 0x30,0xfe,0x74,0x49,0x9b,0xbd,0xa6,0x42,0x3f,0x33,0x45,0x25,0x45,0x11,0xcf,0xa4,
+ 0x32,0x25,0x7e,0x21,0xf6,0x1c,0xfe,0xfe,0x2a,0x61,0x9a,0xca,0x14,0x25,0xa1,0x9,
+ 0xcf,0xe0,0x1b,0xfa,0x2c,0x95,0x1d,0x3,0x8,0x76,0x94,0x25,0xc0,0x6,0x6b,0x3d,
+ 0xef,0x27,0x87,0x84,0x84,0x78,0x65,0xe7,0xb0,0x53,0x61,0x49,0x51,0xe4,0xcc,0xd,
+ 0x73,0xe3,0x65,0xe7,0x80,0x33,0xcd,0x7d,0xf0,0xf5,0x35,0x75,0xc2,0xc2,0xca,0x65,
+ 0xe7,0xb0,0xcb,0x6f,0x53,0xe2,0x9f,0x32,0x25,0x5e,0x4d,0xfd,0xa7,0x8c,0x1e,0x56,
+ 0x59,0x59,0x19,0x2a,0x3b,0x87,0x9d,0xea,0xd7,0x8d,0xcc,0xbf,0xe7,0x96,0x61,0x2a,
+ 0xd,0xa2,0x0,0x52,0x50,0x96,0x0,0x9b,0x5c,0xf2,0xdb,0xbd,0x72,0x65,0xde,0x29,
+ 0x17,0xa6,0xd0,0x97,0xef,0x58,0x9b,0x20,0x3b,0x6,0x9c,0x6b,0xc0,0xf5,0x3d,0xd3,
+ 0x54,0xba,0x8e,0xe7,0xf3,0xfa,0xdc,0xbd,0x92,0x46,0x8c,0x96,0x9d,0xc3,0x89,0x32,
+ 0x4f,0x65,0xc7,0xb,0x85,0xae,0xdf,0x9,0x4d,0x78,0x46,0xdc,0xc4,0x54,0x38,0x60,
+ 0x7,0xca,0x12,0x60,0x93,0xc5,0x8f,0xbf,0x93,0x16,0x56,0x5b,0x9d,0x77,0xca,0x85,
+ 0x10,0xa2,0xbc,0xa2,0x3c,0xec,0xce,0x97,0xef,0xe2,0xc5,0x1f,0xaa,0x65,0xdc,0xed,
+ 0x77,0x67,0xc6,0x35,0x6c,0x9c,0x2d,0x3b,0x87,0x8d,0xf4,0xec,0x53,0x27,0xe2,0x66,
+ 0x6c,0x9c,0xdb,0x5c,0x76,0x10,0x27,0xb9,0xf5,0xf9,0x84,0x7,0x4c,0xc3,0x50,0xea,
+ 0xf5,0x4c,0x54,0x44,0x54,0xfe,0xb0,0x1b,0x7,0x14,0xcb,0xce,0x1,0xa8,0x40,0xa9,
+ 0x5f,0x2e,0x80,0x6c,0x7f,0x68,0x7a,0xa9,0x72,0x53,0xe2,0x27,0xf2,0x73,0x62,0x93,
+ 0x19,0x7b,0x40,0x35,0xd,0xec,0x78,0x67,0x9a,0x6a,0x53,0xe2,0xab,0xbf,0xdc,0xd8,
+ 0x4b,0x76,0xe,0xa7,0x18,0xfd,0xd6,0x23,0xbd,0xa,0x4a,0xa,0xa3,0x84,0x42,0xa7,
+ 0x4a,0x9a,0xcb,0x95,0x78,0xd7,0xcd,0x9,0x29,0xb2,0x73,0x0,0xaa,0xa0,0x2c,0x1,
+ 0x36,0x9a,0xfd,0xe0,0x6b,0x1b,0x1a,0xd4,0x8b,0xca,0x13,0xa,0x5d,0xc7,0x33,0xd,
+ 0x33,0x69,0xd9,0x67,0x8c,0x3d,0xa0,0x7a,0x86,0x76,0xea,0x57,0xdc,0xbc,0x71,0xfc,
+ 0x11,0xd9,0x39,0xec,0x54,0x58,0x5c,0x14,0xf9,0x72,0xc6,0x9b,0x6d,0x64,0xe7,0x70,
+ 0x82,0x9f,0xb2,0xf,0xb5,0x16,0xa6,0x3a,0x45,0x49,0x8,0xe1,0x69,0xd6,0x30,0x2e,
+ 0x6b,0x48,0xc7,0xbe,0xa5,0xb2,0x83,0x0,0xaa,0xa0,0x2c,0x1,0x36,0xdb,0xf4,0xec,
+ 0xd2,0x77,0x5d,0x2e,0x97,0x21,0x3b,0x87,0x9d,0xa,0x4b,0x8b,0x22,0x67,0x6d,0x4c,
+ 0x69,0x2a,0x3b,0x7,0x9c,0x69,0x68,0xa7,0x3e,0x8b,0x4c,0x4d,0x9d,0xcf,0x2e,0x69,
+ 0x42,0xd3,0x37,0xfd,0xed,0xe3,0x6e,0xb2,0x73,0x4,0xba,0x41,0xaf,0x8e,0x1d,0xa4,
+ 0xda,0xa8,0x43,0x9d,0xb0,0x3a,0xa5,0x2b,0x9e,0x9c,0xc7,0x67,0x95,0x0,0x1b,0x51,
+ 0x96,0x0,0x9,0x2e,0x6a,0x14,0x7f,0x44,0x28,0x74,0xba,0x24,0x4c,0xa1,0xa7,0xef,
+ 0x5c,0xdb,0x5f,0x76,0xc,0x38,0x53,0xdf,0xe,0x3d,0x8c,0x76,0x2d,0xff,0xf8,0x9d,
+ 0x4a,0x63,0xf,0x15,0x15,0xe5,0x61,0xc3,0xde,0x7c,0x90,0x9f,0x99,0x33,0x38,0x72,
+ 0x32,0xb3,0xb9,0x50,0xe8,0xfa,0x9d,0xd0,0x84,0x67,0x70,0x27,0xa6,0xc2,0x1,0xbb,
+ 0x51,0x96,0x0,0x9,0xd2,0x26,0xce,0x4e,0xad,0x55,0xab,0x56,0xa5,0xec,0x1c,0x76,
+ 0x2a,0x29,0x2b,0x89,0x98,0xbc,0xfc,0xf5,0xb6,0xb2,0x73,0xc0,0x99,0x92,0xef,0x9f,
+ 0xbe,0xae,0x5e,0xdd,0x7a,0x2a,0x7d,0xa0,0x5d,0xff,0x29,0xf3,0xe7,0xd6,0x73,0x3e,
+ 0x5c,0x1c,0x2b,0x3b,0x48,0x20,0xea,0xf7,0xca,0xe8,0x11,0x3e,0x9f,0xcf,0x2d,0x3b,
+ 0x87,0x9d,0xea,0xd7,0x8d,0xcc,0x1f,0x7b,0xdb,0x8,0x95,0x6,0x4f,0x80,0x80,0x40,
+ 0x59,0x2,0x24,0xb9,0x2c,0xee,0x92,0x83,0x42,0xa5,0xd3,0x25,0x21,0xf4,0xcd,0x5f,
+ 0x73,0xb5,0x8,0xd5,0x97,0x70,0x9d,0x5a,0x53,0xe2,0xc2,0x14,0x7a,0xfa,0xe7,0x6b,
+ 0x38,0x5d,0xb2,0x70,0x2c,0xef,0x78,0x53,0xa1,0xd4,0xa9,0x92,0xe6,0x19,0xd1,0x25,
+ 0x81,0xeb,0x77,0x80,0x4,0x94,0x25,0x40,0x92,0xf9,0xf,0xbf,0xb5,0x2a,0xb2,0x6e,
+ 0xbd,0x42,0xd9,0x39,0xec,0x54,0x59,0x59,0x19,0xda,0xeb,0x65,0x9e,0x23,0x83,0xea,
+ 0x19,0x7b,0xdb,0x5d,0xd9,0x17,0x35,0x8e,0xcf,0x94,0x9d,0xc3,0x4e,0xa7,0xb,0xf3,
+ 0xa3,0x66,0x6e,0x9c,0xc7,0xc3,0x9d,0xff,0x8f,0xdf,0xa6,0xc2,0x4d,0xa5,0x5e,0xbf,
+ 0x44,0xd7,0x8b,0xca,0x1b,0x76,0x43,0x7f,0x95,0x4e,0x56,0x81,0x80,0xa1,0xd4,0x2f,
+ 0x1b,0x20,0xd0,0x8c,0xe8,0x92,0xb0,0x50,0x68,0x9a,0x3a,0xef,0x94,0xb,0xa1,0xe7,
+ 0xe4,0x9f,0x8c,0x9d,0xb7,0x35,0x35,0x5a,0x76,0x10,0x38,0xd3,0xd0,0x4e,0x7d,0x16,
+ 0xa9,0x36,0x25,0xbe,0xf6,0xab,0xcd,0x4c,0x89,0xff,0xc3,0xc8,0x37,0xc7,0xf7,0x56,
+ 0x6d,0x2a,0xdc,0x15,0xe2,0x4a,0x1c,0x75,0xf3,0xe0,0x79,0xb2,0x73,0x0,0xaa,0xa2,
+ 0x2c,0x1,0x12,0xd,0xbf,0x71,0x40,0x61,0xc3,0xc8,0x6,0xb9,0xb2,0x73,0xd8,0xc9,
+ 0x34,0xcc,0xa4,0xa5,0x9f,0x32,0x25,0x8e,0xea,0xe9,0xdb,0xa1,0x87,0x71,0xc5,0xc5,
+ 0x97,0xed,0x13,0xa,0x5d,0x61,0x3d,0x5d,0x98,0x1f,0x95,0x94,0xf1,0x16,0x53,0xe2,
+ 0x42,0x88,0x83,0xd9,0xbf,0xb4,0x52,0x6f,0x2a,0xbc,0x69,0x66,0xc2,0xf5,0xbd,0x94,
+ 0xfa,0x8c,0x2b,0x10,0x48,0x28,0x4b,0x80,0x64,0xf7,0xdc,0x32,0x2c,0x59,0x73,0x69,
+ 0x89,0xb2,0x73,0xd8,0xa9,0xa0,0xa4,0x28,0x6a,0xd6,0xa6,0xf9,0x4c,0x89,0xa3,0x5a,
+ 0x16,0x3e,0x34,0x33,0x43,0x53,0x68,0x7e,0x5f,0x13,0x9a,0xfe,0xe1,0xb7,0x9f,0x74,
+ 0x95,0x9d,0x43,0xb6,0x84,0x69,0xf7,0xc,0xa9,0xaa,0xaa,0x52,0x69,0x2a,0xdc,0x53,
+ 0xb7,0x4e,0x78,0x71,0xfa,0x13,0xc9,0x8b,0x64,0x7,0x1,0x54,0x46,0x59,0x2,0x24,
+ 0xeb,0xd3,0xa1,0xbb,0xd1,0x34,0x3a,0x2e,0x4b,0x28,0xf4,0x4e,0xb9,0x30,0x4d,0x3d,
+ 0x63,0xe7,0xfa,0xbe,0xb2,0x63,0xc0,0xb9,0xda,0xb5,0x6c,0xf3,0x9d,0xa9,0xd0,0xcf,
+ 0x4c,0x71,0x49,0x71,0xc4,0xb8,0xe4,0x44,0xa5,0xb,0x53,0x66,0x6e,0x56,0xbc,0x50,
+ 0xe8,0xfa,0x9d,0xe6,0xd2,0x8c,0xad,0x2f,0x65,0xbc,0x25,0x3b,0x7,0xa0,0x3a,0xca,
+ 0x12,0x10,0x0,0x32,0x9e,0x9a,0xbf,0x30,0xc4,0x1d,0xe2,0x95,0x9d,0xc3,0x4e,0x45,
+ 0x65,0xc5,0x91,0xa3,0xdf,0x7a,0x98,0xcf,0x62,0xa0,0x5a,0x66,0xdf,0xf7,0xea,0x86,
+ 0x7a,0xe1,0x75,0x95,0xf9,0xc0,0xbb,0x26,0x34,0x7d,0xf7,0x81,0x6f,0xda,0xcb,0xce,
+ 0x21,0x4b,0xbf,0x29,0xca,0x4d,0x85,0x7b,0x9a,0x35,0x6c,0x92,0x25,0x3b,0x4,0x0,
+ 0xca,0x12,0x10,0x30,0x5a,0x36,0x6e,0x71,0x48,0x28,0xf4,0x4e,0xb9,0x30,0x85,0xfe,
+ 0x53,0xf6,0x2f,0xad,0x65,0xc7,0x80,0x73,0xf5,0xbd,0xf6,0x8e,0xc,0x95,0xa6,0xc4,
+ 0x4d,0xc3,0x74,0xd,0x9e,0x7e,0x9f,0x92,0x9f,0xf7,0x3b,0x76,0x2a,0x5b,0xa9,0xa9,
+ 0xf0,0x90,0x90,0x10,0xef,0x8a,0x27,0xe7,0x31,0x15,0xe,0x4,0x0,0xca,0x12,0x10,
+ 0x20,0x16,0x3d,0xfa,0x76,0x7a,0x64,0xdd,0xc8,0x42,0xa1,0x50,0x61,0xaa,0xac,0xac,
+ 0xc,0xed,0x3f,0x65,0xf4,0x30,0xd9,0x39,0xe0,0x4c,0xf,0xde,0x3e,0x3a,0xf3,0xa2,
+ 0xc6,0xcd,0x32,0x85,0x3a,0x3f,0x33,0xfa,0xcf,0xc7,0x7f,0x69,0xb9,0x7c,0xe7,0x5a,
+ 0x95,0x3e,0xb7,0x23,0x7a,0xe9,0xc3,0x47,0x9b,0x86,0xa1,0xd2,0xeb,0x15,0xcf,0x25,
+ 0x8d,0x2f,0x3e,0x2c,0x3b,0x4,0x80,0xdf,0xa8,0xf4,0xcb,0x7,0x8,0x78,0x1f,0xbe,
+ 0x90,0x36,0x53,0x73,0x69,0xca,0x7c,0x70,0x5d,0x8,0xa1,0x1f,0x3b,0x95,0x1d,0x9f,
+ 0xb6,0x63,0x8d,0x52,0x2f,0xfe,0x50,0x73,0x56,0x4c,0x9c,0xb7,0xd0,0x10,0xea,0x3c,
+ 0x73,0x47,0x33,0x35,0xfd,0xfd,0x4f,0x96,0x2b,0xf3,0x6,0xc3,0xa3,0xc9,0xcf,0x76,
+ 0xce,0xc9,0xcf,0x8d,0x15,0xa,0x9d,0x2a,0x85,0xd5,0xe,0x2b,0x5f,0xfc,0xd8,0xac,
+ 0x34,0xd9,0x39,0x0,0xfc,0x46,0x99,0x7f,0xc0,0x0,0x4e,0x11,0xd7,0x20,0x36,0x5b,
+ 0xa8,0xf3,0x4e,0xb9,0x30,0xc,0x23,0x69,0xfe,0xd6,0x25,0x3c,0xa8,0x16,0xd5,0x76,
+ 0xdd,0x1f,0xff,0xba,0xd3,0x34,0xd5,0xb9,0x8e,0x97,0x7d,0xea,0x44,0xdc,0x33,0xa9,
+ 0x49,0x4a,0x7c,0x7e,0xe9,0x6f,0x87,0xbe,0xb9,0xca,0x34,0xcd,0x24,0xd9,0x39,0x6c,
+ 0xa3,0x9,0xcf,0xe5,0x4d,0x5b,0xed,0x97,0x1d,0x3,0xc0,0xbf,0x51,0x96,0x80,0x0,
+ 0xb3,0x2a,0x71,0x41,0x8a,0x2b,0x44,0x9d,0x59,0x64,0x21,0x84,0xc8,0x2b,0xcc,0x8f,
+ 0x9e,0xff,0xd1,0x12,0x1e,0x54,0x8b,0x6a,0x79,0x73,0xd4,0xe4,0xad,0x11,0x75,0x23,
+ 0x94,0x1a,0x7b,0xf8,0xf8,0xfb,0x1d,0x5d,0x64,0xe7,0xf0,0xb7,0x84,0x69,0xf7,0xc,
+ 0xa9,0xa8,0xac,0xc,0x93,0x9d,0xc3,0x46,0x9e,0x6,0xf5,0xa2,0xf2,0xde,0x7b,0xf0,
+ 0xd5,0xd,0xb2,0x83,0x0,0xf8,0x37,0xca,0x12,0x10,0x80,0x2e,0x6e,0x74,0xd1,0x61,
+ 0xa1,0xd0,0xe9,0x92,0x30,0x4d,0x7d,0xe1,0xb6,0xe5,0x23,0x64,0xc7,0x80,0x73,0xd,
+ 0xbc,0xa1,0x77,0x9a,0x21,0xcc,0x49,0xb2,0x73,0xd8,0xc5,0x5b,0xe5,0x75,0xdf,0xf9,
+ 0xca,0x5d,0x41,0x7d,0x22,0x7b,0xf4,0xe4,0xb1,0xe6,0x42,0xa1,0xeb,0x77,0x2e,0x97,
+ 0xcb,0xd8,0xf4,0xec,0xd2,0x77,0x65,0xe7,0x0,0xf0,0x9f,0x28,0x4b,0x40,0x0,0x5a,
+ 0x3a,0xe1,0xbd,0xa5,0xe1,0x75,0xc2,0x4b,0x65,0xe7,0xb0,0x53,0x69,0x59,0x69,0x78,
+ 0xc2,0xb4,0x7b,0x87,0xc8,0xce,0x1,0x67,0x1a,0xdb,0x75,0x78,0x76,0xb3,0x46,0x4d,
+ 0x32,0x65,0xe7,0xb0,0x91,0x7e,0x3c,0x37,0x3b,0xee,0xf5,0xb5,0xef,0xb5,0x94,0x1d,
+ 0xc4,0x1f,0xfa,0xbe,0x32,0x6a,0x84,0xa1,0xd8,0xa8,0xc3,0x45,0x8d,0x9a,0x1d,0x91,
+ 0x1d,0x2,0xc0,0xff,0x52,0xe9,0x17,0x11,0xe0,0x28,0x57,0x5f,0xfa,0xe7,0x5d,0x9a,
+ 0xa6,0x25,0xca,0xce,0x61,0x23,0x3d,0x33,0xf7,0x58,0xfc,0x8a,0x2f,0xd6,0xab,0xf4,
+ 0x2c,0x15,0xd4,0xa0,0x81,0xd7,0xf5,0x52,0xea,0x74,0x49,0x13,0x9a,0xbe,0x7e,0xf7,
+ 0x87,0xdd,0x65,0xe7,0xf0,0x87,0xac,0x3c,0xb5,0xa6,0xc2,0x6b,0x87,0x86,0x96,0xa7,
+ 0x4d,0x9c,0x93,0x2a,0x3b,0x7,0x80,0xff,0x45,0x59,0x2,0x2,0xd4,0x94,0x91,0x93,
+ 0x76,0xc6,0x36,0x68,0x94,0x23,0x14,0xba,0x8e,0xe7,0xf3,0xf9,0xa6,0xcc,0xdf,0x92,
+ 0x3a,0x52,0x76,0xe,0x38,0xd3,0xe0,0x4e,0x7d,0x4b,0x5b,0x35,0x6b,0x79,0x50,0x28,
+ 0xf4,0x33,0x53,0x58,0x52,0x14,0xf9,0xfc,0xb2,0x57,0xaf,0x94,0x9d,0xa3,0x26,0xdd,
+ 0xf6,0xc2,0xc0,0x7,0x4c,0x43,0xa1,0x85,0x43,0x4d,0x4b,0xfc,0x4b,0xcb,0x2b,0xf7,
+ 0xc8,0xce,0x1,0xc0,0x9a,0x32,0xbf,0x8c,0x0,0x27,0x5a,0xf3,0xf4,0xc2,0x79,0x2e,
+ 0x97,0x5a,0x63,0xf,0xb9,0x85,0x79,0x31,0x4b,0xb7,0xaf,0x54,0xe9,0x43,0xdd,0xa8,
+ 0x41,0x4b,0x1e,0x7d,0x67,0xa9,0xa9,0xc9,0x4e,0x61,0x1f,0x4d,0x68,0xfa,0x27,0x7b,
+ 0x77,0x76,0x96,0x9d,0xa3,0xa6,0x8c,0x7a,0xeb,0xe1,0xde,0xf9,0xc5,0x5,0x51,0x42,
+ 0x9d,0x53,0x25,0x4f,0x6c,0x54,0x4c,0xce,0xeb,0x63,0x5e,0xdc,0x26,0x3b,0x8,0x0,
+ 0x6b,0x94,0x25,0x20,0xc0,0x35,0x6d,0xd8,0x24,0x4b,0x28,0xf4,0x4e,0xb9,0x69,0x98,
+ 0x49,0xf3,0x3f,0x5a,0x16,0xd4,0x1f,0x5c,0x87,0x7f,0x75,0xb8,0xa2,0xfd,0x17,0xa6,
+ 0x50,0x67,0x4a,0xbc,0xa4,0xac,0x24,0x7c,0xec,0x3b,0x13,0x82,0xe2,0x3a,0xde,0x4f,
+ 0xc7,0xf,0xb5,0x12,0xa6,0x32,0x45,0x49,0x68,0x2e,0x97,0xb1,0xc6,0xf3,0xfe,0x3c,
+ 0xd9,0x39,0x0,0xfc,0x3e,0xca,0x12,0x10,0xe0,0x56,0x3c,0x39,0x77,0xa1,0xdb,0xed,
+ 0xf6,0xca,0xce,0x61,0xa7,0xfc,0xe2,0xfc,0xa8,0x94,0x8f,0x97,0x45,0xc9,0xce,0x1,
+ 0x67,0x7a,0x6b,0xf4,0xe4,0xad,0xd1,0xf5,0xa3,0xf3,0x64,0xe7,0xb0,0x8b,0x26,0x34,
+ 0xfd,0xbb,0x5f,0xf6,0xb5,0x93,0x9d,0xe3,0x42,0xf5,0x9f,0x7a,0xf7,0xb0,0xaa,0xaa,
+ 0x2a,0x95,0x1e,0x50,0xed,0x69,0x1a,0xdd,0x38,0x4b,0x76,0x8,0x0,0x67,0x46,0x59,
+ 0x2,0x1c,0xe0,0xe2,0x58,0xd5,0xa6,0xc4,0x85,0xfe,0xfe,0xc7,0x4c,0x89,0xa3,0xfa,
+ 0x86,0xdf,0x38,0x60,0x91,0x4a,0xa7,0x4b,0x86,0x61,0xb8,0x7a,0xbe,0x3c,0x7c,0x8c,
+ 0xec,0x1c,0x17,0xe2,0x58,0xee,0xf1,0x78,0xa1,0xce,0xf5,0x3b,0xe1,0x72,0xb9,0x8c,
+ 0x8c,0xa7,0xe6,0x2f,0x94,0x9d,0x3,0xc0,0x99,0x51,0x96,0x0,0x7,0x48,0x7d,0xec,
+ 0x9d,0xb4,0xda,0xa1,0xb5,0xcb,0x65,0xe7,0xb0,0x53,0x71,0x69,0x71,0xc4,0xf0,0x37,
+ 0x1e,0xec,0x2f,0x3b,0x7,0x9c,0x69,0xe8,0xd,0x7d,0x8b,0x2f,0x69,0xd2,0xfc,0xb0,
+ 0x50,0xe7,0x4d,0x6,0xfd,0x44,0x5e,0x4e,0xec,0xdb,0x1b,0xe7,0xc5,0xcb,0xe,0x52,
+ 0x1d,0xdd,0x5e,0x1c,0x74,0x9f,0x6a,0x53,0xe1,0xf1,0x31,0x4d,0x55,0x9a,0xba,0x7,
+ 0x1c,0x4b,0xa5,0x5f,0x4c,0x80,0xa3,0x5d,0xd6,0xe4,0x92,0x83,0x42,0x53,0xe6,0x85,
+ 0x9f,0x10,0x42,0xe8,0x87,0xb2,0x7f,0xd,0xca,0x67,0xc8,0xc0,0x1e,0xcb,0x1e,0x9f,
+ 0x93,0x6a,0x8,0x85,0x56,0xd5,0x84,0xa6,0xaf,0xde,0xb5,0xa9,0x97,0xec,0x1c,0xe7,
+ 0x6b,0xec,0xdb,0x13,0xba,0x9f,0x2e,0xca,0x8f,0x16,0xa,0x9d,0x2a,0xb9,0xdd,0x6e,
+ 0xef,0xf2,0x27,0x92,0x17,0xc9,0xce,0x1,0xe0,0xec,0x94,0xf9,0x87,0x8,0xe0,0x74,
+ 0x73,0x1f,0x7a,0x63,0x4d,0xfd,0xba,0x91,0xf9,0x42,0x9d,0x77,0xca,0x85,0xd7,0xeb,
+ 0x75,0xf7,0x7a,0x79,0x38,0x63,0xf,0xa8,0xb6,0x3f,0xb7,0xfa,0xd3,0x1e,0x95,0xae,
+ 0xe3,0xe5,0x17,0x15,0x44,0xbd,0x98,0xf6,0x9a,0xa3,0x3e,0xbf,0xb4,0x3f,0xeb,0xe0,
+ 0xe5,0x2a,0x8d,0x3a,0x8,0x4d,0x78,0x5a,0xc5,0x5d,0x72,0x50,0x76,0xc,0x0,0xe7,
+ 0x86,0xb2,0x4,0x38,0xc8,0x7,0xcf,0xa7,0xcd,0xd2,0xd4,0x9a,0x12,0xd7,0x73,0x4e,
+ 0xe7,0xc6,0xa6,0xed,0x58,0xad,0xd2,0x87,0xbe,0x51,0x83,0x66,0xdf,0xf7,0xea,0x86,
+ 0x10,0xb7,0x5b,0x99,0x9f,0x19,0x4d,0x68,0xfa,0xce,0xfd,0x5f,0x5d,0x27,0x3b,0xc7,
+ 0xb9,0x1a,0xfe,0xfa,0x83,0xfd,0xcb,0x2b,0xca,0x95,0x7a,0x54,0x40,0xbd,0xf0,0x7a,
+ 0x85,0xb,0x1e,0x99,0x91,0x21,0x3b,0x7,0x80,0x73,0x43,0x59,0x2,0x1c,0xe6,0x1f,
+ 0xf7,0xdc,0x95,0x79,0xa7,0xdc,0x34,0xcd,0xa4,0x79,0x5b,0x96,0x70,0xba,0x84,0x6a,
+ 0xeb,0x7d,0x6d,0xf7,0x55,0x86,0x30,0x27,0xc9,0xce,0x61,0x97,0xbc,0xc2,0xd3,0xd1,
+ 0xb3,0x3f,0x78,0x3f,0x56,0x76,0x8e,0x73,0x71,0xe8,0xc4,0xaf,0x2d,0x85,0x42,0xd7,
+ 0xef,0x84,0xa6,0x79,0x46,0xdf,0x3c,0x98,0xa9,0x70,0xc0,0x41,0x28,0x4b,0x80,0xc3,
+ 0xa4,0x3f,0x91,0xbc,0xa8,0x76,0x6d,0xb5,0xc6,0x1e,0x4e,0x17,0xe7,0x47,0x27,0x6f,
+ 0x49,0x8d,0x91,0x9d,0x3,0xce,0xf4,0xe4,0x9d,0xf,0xee,0x6f,0x58,0x3f,0x3a,0x57,
+ 0x76,0xe,0xbb,0x68,0x42,0xd3,0xd7,0xee,0xde,0x1c,0xf0,0x9f,0x5d,0xea,0x3f,0xf5,
+ 0xee,0x61,0x5e,0xaf,0xd7,0x2d,0x3b,0x87,0x8d,0x3c,0x8d,0xa2,0x1a,0xe6,0xc,0xb9,
+ 0xa1,0x6f,0xa9,0xec,0x20,0x0,0xce,0x1d,0x65,0x9,0x70,0xa0,0x6b,0x5b,0xfd,0xe5,
+ 0xb,0x4d,0xd3,0x12,0x65,0xe7,0xb0,0x8d,0x29,0xf4,0xc5,0x9f,0xa4,0xf,0x93,0x1d,
+ 0x3,0xce,0x35,0xb8,0x53,0x9f,0xa5,0xa6,0xa9,0xce,0x67,0x97,0x72,0x4e,0xe7,0x6,
+ 0xfc,0xc9,0x92,0x6a,0x53,0xe1,0x21,0x21,0x21,0xde,0x75,0x9e,0x45,0xc9,0xb2,0x73,
+ 0x0,0x38,0x3f,0x94,0x25,0xc0,0x81,0xa6,0x8c,0x7a,0x76,0x67,0xa3,0xa8,0x98,0x5c,
+ 0xa1,0xd0,0x75,0xbc,0xd2,0xb2,0xd2,0xf0,0x1,0x53,0xc7,0x50,0x98,0x50,0x2d,0x77,
+ 0x75,0x4e,0xc8,0x8f,0xaa,0x1f,0x95,0x2f,0x3b,0x87,0x6d,0x4c,0x21,0xc6,0xbe,0x33,
+ 0xa1,0xbb,0xec,0x18,0xbf,0xa7,0xdb,0xb,0xea,0x4d,0x85,0xb7,0xf8,0xed,0x79,0x79,
+ 0x0,0x1c,0x46,0xa5,0x5f,0x54,0x40,0x50,0x59,0xeb,0x79,0x3f,0x59,0x73,0x69,0xca,
+ 0x7c,0x70,0x5d,0x8,0xa1,0x67,0xe6,0x66,0xc5,0xa7,0xed,0x58,0xc3,0xd8,0x3,0xaa,
+ 0xa5,0xf7,0xd5,0xdd,0x56,0x29,0xb4,0x8c,0xa7,0x7f,0x77,0x78,0x5f,0x40,0xae,0xe2,
+ 0xdd,0x3d,0xe3,0xd1,0x5e,0xa7,0x8b,0xd5,0x9a,0xa,0xf,0xf,0xab,0x53,0x9a,0xfa,
+ 0xf8,0xbb,0x69,0xb2,0x73,0x0,0x38,0x7f,0x94,0x25,0xc0,0xc1,0xe2,0x1a,0xc4,0x66,
+ 0xb,0x85,0x4e,0x97,0xc,0xc3,0x48,0x9a,0xbf,0x95,0xb1,0x7,0x54,0xcf,0x3,0xdd,
+ 0x46,0x65,0x35,0x8c,0x6a,0x98,0x27,0x3b,0x87,0x5d,0xc,0x9f,0xe1,0xea,0x3f,0x2d,
+ 0xf0,0x4e,0x63,0xf,0x64,0xfd,0xdc,0x5a,0xa5,0xa9,0x70,0x4d,0xd3,0x12,0xaf,0xba,
+ 0xa4,0xdd,0x1e,0xd9,0x39,0x0,0x54,0xf,0x65,0x9,0x70,0xb0,0x55,0x89,0xb,0x52,
+ 0x5c,0x6a,0x4d,0x89,0x8b,0xbc,0xc2,0xfc,0xe8,0x94,0xad,0x4b,0xa2,0x64,0xe7,0x80,
+ 0x33,0xd,0xe9,0xd4,0x27,0xd5,0x54,0xe7,0xe1,0xce,0xfa,0x91,0x13,0x47,0x9b,0x7,
+ 0xd2,0x38,0x4a,0x9f,0x57,0x46,0x8e,0xac,0xac,0xaa,0x54,0xe9,0x74,0xd8,0x13,0x1b,
+ 0x15,0x93,0xf3,0xda,0xdd,0x2f,0x7c,0x2a,0x3b,0x8,0x80,0xea,0xa1,0x2c,0x1,0xe,
+ 0xd7,0x34,0x3a,0x2e,0x4b,0x28,0x74,0xba,0x24,0x4c,0x53,0x5f,0xb8,0x2d,0x7d,0x84,
+ 0xec,0x18,0x70,0xa6,0xe1,0x37,0xe,0x28,0x6c,0xdb,0xe2,0x8a,0xbd,0xaa,0x5c,0xc7,
+ 0xd3,0x84,0xa6,0xa7,0xef,0x5c,0xd3,0x5f,0x76,0xe,0x21,0x84,0x58,0xf1,0xc5,0x3a,
+ 0xf7,0xf1,0xbc,0x13,0x71,0x42,0xa1,0xeb,0x77,0x2e,0x97,0xcb,0x58,0xe3,0x79,0x9f,
+ 0xa9,0x70,0xc0,0xc1,0x28,0x4b,0x80,0xc3,0xad,0x78,0x6a,0xde,0xc2,0x90,0x90,0x10,
+ 0xaf,0xec,0x1c,0x76,0x2a,0x29,0x2d,0x89,0x18,0xfc,0xda,0xd8,0x41,0xb2,0x73,0xc0,
+ 0x99,0xe6,0x3d,0xf8,0xfa,0x9a,0xf0,0x3a,0xe1,0xca,0xcc,0x37,0xe7,0x15,0x9e,0x8e,
+ 0x9e,0xb9,0x71,0x5e,0xbc,0xec,0x1c,0xc9,0x1f,0x2c,0x1e,0x63,0x1a,0x66,0x92,0xec,
+ 0x1c,0x36,0xf2,0xfc,0xe3,0xb9,0x78,0x0,0x1c,0x8c,0xb2,0x4,0x4,0x81,0x4b,0x1a,
+ 0x5f,0x7c,0x58,0xa8,0x74,0xba,0x24,0x84,0x7e,0xe4,0xe4,0xb1,0xe6,0xe9,0x9f,0xaf,
+ 0x53,0xe9,0x19,0x2d,0xa8,0x41,0x7d,0x3a,0xdc,0xb1,0xca,0x30,0xd5,0x78,0x50,0xad,
+ 0x26,0x34,0x7d,0xf5,0xae,0x4d,0xbd,0x65,0x66,0x78,0x7f,0xdb,0xf2,0xc8,0xbc,0xa2,
+ 0xfc,0x68,0x99,0x19,0xec,0xe6,0x76,0xbb,0xbd,0xcb,0x9f,0x48,0x5e,0x24,0x3b,0x7,
+ 0x80,0xb,0x43,0x59,0x2,0x82,0xc0,0xe2,0xc7,0x66,0xa5,0xd5,0xd,0xaf,0x5b,0x2c,
+ 0x3b,0x87,0x9d,0xbc,0x5e,0xef,0x94,0x5,0x5b,0x97,0x8d,0x94,0x9d,0x3,0xce,0xf4,
+ 0xf0,0x1d,0x63,0xe,0xc7,0x34,0x68,0x98,0x2b,0x4c,0xd9,0x49,0xec,0x51,0x50,0x54,
+ 0x10,0xa9,0xaf,0x78,0xa3,0xad,0xac,0xef,0xbf,0xe0,0xe3,0xb4,0x11,0xc2,0x34,0x95,
+ 0xb9,0x7e,0x27,0x84,0xf0,0xb4,0x6c,0x7c,0xf1,0x21,0xd9,0x21,0x0,0x5c,0x38,0xca,
+ 0x12,0x10,0x24,0x46,0xdc,0x34,0x60,0xa1,0x50,0xe7,0x83,0xeb,0x42,0x8,0x21,0x4e,
+ 0x16,0xe4,0xc6,0x2c,0xf9,0x6c,0x65,0xb8,0xec,0x1c,0x70,0xa6,0xc1,0x9d,0xfa,0xa4,
+ 0x1a,0x9a,0x3a,0xa7,0x4b,0x1b,0x77,0x7f,0xd4,0x4d,0xc6,0xf7,0xbe,0xeb,0x8d,0x87,
+ 0xfa,0x16,0x95,0x16,0x45,0xca,0xf8,0xde,0xb2,0x84,0xd5,0xe,0x2b,0x7f,0xff,0xd1,
+ 0xb7,0xd3,0x65,0xe7,0x0,0x70,0xe1,0x28,0x4b,0x40,0x90,0x18,0x79,0xd3,0xa0,0xfc,
+ 0x86,0x91,0xd1,0x4a,0x3d,0xa8,0xd6,0x34,0xcc,0xa4,0x14,0x4e,0x97,0x50,0x4d,0x23,
+ 0x6e,0x1c,0x50,0x78,0x49,0x93,0xe6,0x87,0x84,0x22,0x3f,0x33,0x55,0x55,0x55,0xa1,
+ 0x3,0x5e,0xb5,0x7f,0x4a,0xfc,0x60,0xf6,0x2f,0xad,0x54,0x9a,0xa,0x17,0x9a,0xf0,
+ 0xb4,0x6e,0x7a,0xe9,0x1,0xd9,0x31,0x80,0x60,0xd4,0xf1,0xe1,0xee,0x13,0xec,0xfe,
+ 0x9e,0x94,0x25,0x20,0x88,0x6c,0x98,0x94,0x3a,0x5b,0xb5,0xb1,0x87,0xfc,0xe2,0xfc,
+ 0xa8,0x39,0x1f,0x2e,0x8e,0x95,0x9d,0x3,0xce,0x94,0xf6,0xf8,0x9c,0x54,0xb7,0xdb,
+ 0xad,0xca,0xcf,0x8c,0xfe,0x6b,0xf6,0xd1,0xe6,0x73,0x3e,0x7c,0xdf,0xb6,0x9f,0x97,
+ 0x1,0x53,0xc7,0xc,0xf3,0x7a,0xbd,0x4a,0x7d,0xb6,0x30,0xb2,0x6e,0xbd,0xc2,0x39,
+ 0xf,0xbe,0xb6,0x4e,0x76,0xe,0x20,0x18,0xd,0xef,0x9a,0x60,0xfb,0xe7,0x0,0x29,
+ 0x4b,0x40,0x90,0xb9,0x24,0x4e,0xb1,0xb1,0x7,0x53,0xe8,0xa9,0x9f,0xae,0x18,0x22,
+ 0x3b,0x6,0x9c,0xeb,0xe6,0x2b,0x3b,0x6d,0x51,0x6a,0x4a,0xfc,0xf3,0x75,0xb6,0x4d,
+ 0x89,0x67,0xe6,0x66,0xc5,0xb,0x85,0xa6,0xc2,0x35,0x4d,0x4b,0x1c,0x75,0xf3,0x10,
+ 0xa6,0xc2,0x1,0x3f,0x19,0xdb,0x73,0x64,0xb6,0xdd,0xdf,0x93,0xb2,0x4,0x4,0x99,
+ 0xc5,0x8f,0xce,0x4a,0x8b,0xac,0x5b,0xaf,0x50,0x28,0x54,0x98,0x4a,0xcb,0x4a,0xc3,
+ 0x7,0x4e,0xbb,0x97,0xc2,0x84,0x6a,0x79,0x71,0xd0,0x93,0x7b,0xea,0xd5,0xad,0xa7,
+ 0xcc,0x40,0xca,0xe9,0xc2,0xfc,0xa8,0x29,0x2b,0x67,0x5e,0xee,0xef,0xef,0xd3,0xf7,
+ 0x95,0x51,0x23,0xc,0xc3,0x50,0xe9,0x75,0x86,0xa7,0x71,0x83,0x46,0x39,0x43,0x3a,
+ 0xf5,0x51,0x66,0x96,0x1e,0x50,0x81,0x4a,0xbf,0xc4,0x0,0x65,0x7c,0xf8,0xc2,0xf2,
+ 0x99,0x9a,0x4b,0x33,0x64,0xe7,0xb0,0x91,0x7e,0x34,0xf7,0x58,0xfc,0x8a,0x2f,0xd6,
+ 0x2b,0x75,0xdd,0x7,0x35,0xe7,0xce,0x6b,0xba,0xad,0x52,0xe9,0x74,0x69,0xfd,0xee,
+ 0xf,0xbb,0xfb,0xfb,0xfb,0x64,0xe5,0x65,0x37,0x15,0xa,0x9d,0x2a,0xb9,0xdd,0x6e,
+ 0xef,0xea,0xa7,0x17,0x72,0xaa,0x4,0x4,0x19,0xca,0x12,0x10,0xa4,0x9a,0x46,0xc7,
+ 0x65,0x9,0x85,0x4e,0x97,0x7c,0x3e,0xdf,0x94,0xf9,0x1f,0x2d,0x19,0x29,0x3b,0x7,
+ 0x9c,0x69,0x7c,0xf7,0x31,0x47,0xa2,0xeb,0x37,0xc8,0x93,0x9d,0xc3,0x2e,0x15,0x15,
+ 0x15,0x61,0x9,0xaf,0xf9,0xef,0x34,0xf6,0xb6,0x17,0x6,0x3e,0x60,0x1a,0xa6,0x3a,
+ 0xaf,0x31,0x34,0xe1,0xb9,0xac,0x49,0x4b,0x46,0x1d,0x80,0x20,0xa4,0xce,0x2f,0x32,
+ 0x40,0x31,0x19,0x4f,0xcd,0x5f,0xe8,0xa,0x71,0xa9,0x74,0xba,0x24,0x72,0xb,0x4e,
+ 0xc5,0xa4,0xed,0x58,0x1d,0x2a,0x3b,0x7,0x9c,0x69,0xd0,0xf5,0x7d,0x96,0xaa,0x72,
+ 0xba,0x24,0x84,0xd0,0xf,0x1f,0xff,0xb5,0xc5,0xdb,0x9b,0xe6,0xc7,0xd7,0xf4,0x17,
+ 0xbe,0xeb,0x8d,0x87,0xfa,0xe6,0x17,0x17,0x44,0x9,0x75,0x4e,0x95,0x3c,0x51,0x11,
+ 0xf5,0xf3,0x53,0x1e,0x7e,0x6b,0x95,0xec,0x20,0x0,0x6a,0x1e,0x65,0x9,0x8,0x62,
+ 0xcd,0x1b,0xc5,0x1f,0x11,0xa,0x9d,0x2e,0x99,0x86,0x99,0x34,0x6f,0xcb,0x92,0xd1,
+ 0xb2,0x73,0xc0,0x99,0x46,0x76,0x19,0x98,0xdf,0xa6,0xc5,0x1f,0xf6,0xa9,0x52,0x98,
+ 0x34,0xa1,0xe9,0xe9,0x3b,0xd6,0xd6,0xf8,0xd8,0x83,0x6a,0x53,0xe1,0x9a,0x4b,0x33,
+ 0x36,0x3f,0xb7,0x6c,0x96,0xec,0x1c,0x0,0xfc,0x83,0xb2,0x4,0x4,0xb1,0x65,0x13,
+ 0x66,0xa7,0x86,0x85,0x85,0x95,0xcb,0xce,0x61,0xa7,0xd3,0xc5,0xf9,0xd1,0xc9,0x5b,
+ 0x52,0x63,0x64,0xe7,0x80,0x33,0xa5,0x8c,0x7b,0x6b,0x55,0x78,0x9d,0x70,0x65,0x3e,
+ 0xa0,0x5f,0x52,0x56,0x12,0x3e,0x7e,0xae,0xa7,0x4b,0x4d,0x7d,0xbd,0x5e,0x2f,0x8f,
+ 0x18,0xad,0xd8,0x54,0xb8,0xe7,0x1f,0x57,0x9e,0x1,0x4,0x29,0xca,0x12,0x10,0xe4,
+ 0x3a,0xb4,0xfa,0xcb,0x17,0x9a,0xa6,0x25,0xca,0xce,0x61,0x1b,0x53,0xe8,0x8b,0x3f,
+ 0x49,0xb7,0xfd,0xc1,0x9b,0x8,0x1e,0x3,0xae,0xef,0x95,0x6e,0x98,0xe6,0x24,0xd9,
+ 0x39,0xec,0xa0,0x9,0x4d,0xff,0xea,0xc0,0xd7,0x57,0xd7,0xc4,0xd7,0x4a,0xfd,0x6c,
+ 0x65,0x78,0xce,0xe9,0x93,0xb1,0x42,0x9d,0xeb,0x77,0xc2,0xe5,0x72,0x19,0x19,0x4f,
+ 0xcd,0x5f,0x28,0x3b,0x7,0x0,0xff,0xa1,0x2c,0x1,0x41,0x6e,0xca,0xc8,0x49,0x3b,
+ 0x63,0x1b,0x34,0xca,0x11,0xa,0x5d,0xc7,0x2b,0x2d,0x2b,0xd,0x1f,0x30,0x75,0xc,
+ 0x85,0x9,0xd5,0xf2,0x60,0xb7,0x51,0x99,0x31,0xd,0xa2,0x73,0x65,0xe7,0xb0,0x8b,
+ 0xe1,0x33,0x5c,0xdd,0x27,0xf,0xbd,0xf7,0x42,0xbf,0xce,0xfc,0x8f,0x52,0x47,0x9b,
+ 0xa6,0x99,0x54,0x13,0x99,0x1c,0xc2,0x13,0x1f,0xd3,0x34,0x53,0x76,0x8,0x0,0xfe,
+ 0x45,0x59,0x2,0x14,0xb0,0xe6,0xe9,0x85,0xf3,0x54,0x9b,0x12,0xcf,0xcc,0xcd,0x8a,
+ 0x4f,0xdb,0xb1,0x86,0xb1,0x7,0x54,0x4b,0xc2,0xf5,0x77,0xa6,0xa9,0xf2,0xd9,0x25,
+ 0x21,0x84,0x9e,0x9b,0x9f,0x1b,0x33,0x69,0xc9,0x2b,0xed,0xab,0xfb,0x5,0xee,0x99,
+ 0xf9,0x58,0x8f,0xc2,0x92,0xa2,0xc8,0x9a,0xc,0x15,0xe8,0xdc,0x6e,0xb7,0x77,0xf9,
+ 0x13,0xc9,0x8b,0x64,0xe7,0x0,0xe0,0x5f,0x94,0x25,0x40,0x11,0xaa,0x4d,0x89,0x1b,
+ 0x86,0x91,0x34,0x7f,0x2b,0x63,0xf,0xa8,0x9e,0x51,0x37,0xd,0xca,0x6b,0x1a,0xd3,
+ 0x44,0x99,0x9f,0x19,0x4d,0x68,0xfa,0xb6,0xef,0x77,0x76,0xae,0xee,0x9f,0x7f,0xe0,
+ 0xf8,0xa1,0xd6,0x2a,0x8d,0x3a,0x8,0x4d,0x78,0x5a,0xc5,0x5d,0x72,0x50,0x76,0xc,
+ 0x0,0xfe,0x47,0x59,0x42,0xd0,0x4b,0xdb,0xb1,0x36,0xf4,0xa1,0x77,0x13,0xbb,0xca,
+ 0xce,0x21,0x5b,0xc6,0x53,0xf3,0x17,0xba,0x5c,0x6a,0x4d,0x89,0xe7,0x15,0xe6,0x47,
+ 0xbf,0xbf,0x2d,0x4d,0xa9,0x77,0xbb,0x51,0x73,0x56,0x3d,0x95,0x92,0x22,0x5c,0x9a,
+ 0xec,0x18,0xb6,0xa9,0xac,0xac,0xc,0x7d,0x3c,0xe5,0xb9,0x1b,0xce,0xf7,0xcf,0x1b,
+ 0x3a,0xfd,0x81,0x84,0xf2,0x8a,0xf2,0x30,0x7f,0x64,0xa,0x54,0xf5,0xc2,0xeb,0x15,
+ 0x2e,0x78,0x64,0x46,0x86,0xec,0x1c,0x0,0xfc,0x8f,0xb2,0x84,0xa0,0x96,0xfa,0x59,
+ 0x46,0xf8,0xac,0x8d,0x73,0x1f,0xf8,0xe2,0xa7,0x3d,0x1d,0x6e,0x7d,0x7e,0xc0,0x3,
+ 0xb2,0xf3,0xc8,0xf6,0x8f,0xfb,0xf5,0x4a,0xbc,0x53,0x2e,0x84,0x10,0xc2,0x34,0xf5,
+ 0x5,0x1f,0x2f,0x1f,0x21,0x3b,0x6,0x9c,0xeb,0x86,0xb6,0x1d,0x3e,0x55,0xe9,0x3a,
+ 0xde,0xae,0x6a,0x8c,0x3d,0xfc,0x72,0xe2,0xd7,0x16,0x42,0xa1,0x51,0x7,0xa1,0x69,
+ 0x9e,0xbb,0x6e,0x4a,0x60,0xd4,0x1,0x50,0x4,0x65,0x9,0x41,0x2d,0xf5,0xd3,0x8c,
+ 0x21,0x65,0xe5,0xe5,0xaf,0xbb,0x34,0xed,0xa5,0xfc,0xe2,0xc2,0xa8,0x91,0x33,0x1e,
+ 0xee,0x2d,0x3b,0x93,0x4c,0xcb,0x9f,0x48,0x5e,0xe4,0x76,0xbb,0xbd,0xb2,0x73,0xd8,
+ 0xa9,0xa8,0xb4,0x28,0x52,0x4f,0x7f,0xa3,0xad,0xec,0x1c,0x70,0xa6,0x69,0x23,0x9e,
+ 0xdb,0x5e,0x37,0xbc,0xae,0x32,0x53,0xe2,0x15,0x95,0x95,0xa1,0xcf,0x2e,0x99,0x7a,
+ 0xd5,0xb9,0xfe,0xe7,0xfb,0x4d,0x19,0x3d,0xc2,0xe7,0xf3,0xa9,0x34,0x15,0x2e,0xa2,
+ 0xeb,0x45,0xe5,0xd,0xef,0x3c,0xa0,0x50,0x76,0xe,0x0,0xf6,0xa0,0x2c,0x21,0x68,
+ 0x79,0x16,0xbf,0x7c,0x75,0x6e,0xfe,0xa9,0x7f,0x3d,0x6f,0x47,0x13,0x9a,0xfe,0xc3,
+ 0x91,0x1f,0xdb,0xbc,0xbb,0x79,0x41,0x9c,0xcc,0x5c,0xb2,0x5d,0x1a,0xd7,0xe2,0xa0,
+ 0x50,0xea,0x74,0x49,0xe8,0x9b,0xf6,0x6c,0xed,0x26,0x3b,0x6,0x9c,0xab,0xdf,0xb5,
+ 0x3d,0x14,0x9a,0x12,0x17,0xfa,0xa7,0x7f,0xff,0xfc,0x9c,0xaf,0xe2,0x1d,0x3b,0x75,
+ 0xbc,0xa9,0x50,0xe8,0x54,0x49,0x73,0x69,0x89,0xf7,0xdc,0x3a,0x6c,0xb6,0xec,0x1c,
+ 0x0,0xec,0x43,0x59,0x42,0xd0,0xfa,0x7c,0xff,0xee,0xe,0xff,0x33,0x63,0x6b,0xa,
+ 0x7d,0xc5,0xe7,0xeb,0x6b,0xfc,0x89,0xf5,0x4e,0xb2,0xf0,0x91,0x99,0x19,0x11,0xe1,
+ 0x11,0xc5,0xb2,0x73,0xd8,0xa9,0xb2,0xb2,0x32,0xb4,0x77,0xd2,0x5d,0x23,0x65,0xe7,
+ 0x80,0x33,0x8d,0xbb,0x7d,0x74,0x66,0xc3,0x28,0x75,0xa6,0xc4,0x4b,0xcb,0xcb,0xc2,
+ 0x1f,0x9e,0x37,0xe9,0xac,0xf,0xaa,0xbd,0xed,0x85,0x81,0xf,0x98,0x86,0xa9,0xd2,
+ 0xeb,0x8,0x4f,0x7c,0xc3,0xa6,0x99,0x7d,0x3b,0xdc,0xa1,0xd4,0x67,0x3f,0x1,0xd5,
+ 0xa9,0xf4,0x4b,0xe,0xa,0x19,0xfb,0xce,0x84,0xee,0x25,0x65,0xa5,0x11,0x56,0xff,
+ 0x5e,0x41,0x71,0x61,0xe4,0xe3,0xb,0x5e,0x38,0xef,0xf,0x31,0x7,0x93,0xbb,0xba,
+ 0x24,0xa4,0x8,0x4d,0xa1,0xd3,0x25,0x21,0xf4,0xec,0xd3,0x27,0xe3,0x96,0x7c,0x96,
+ 0x11,0x2e,0x3b,0x8,0x9c,0xa9,0x5f,0x87,0xee,0x19,0xaa,0x7c,0x76,0x49,0x13,0x42,
+ 0xff,0xea,0xc0,0x9e,0x33,0xce,0x88,0x8f,0x7c,0x73,0x7c,0xef,0xfc,0xe2,0x82,0x28,
+ 0xa1,0xd0,0xa9,0x52,0x78,0x58,0x78,0x69,0xfa,0x93,0x73,0x99,0xa,0x7,0x14,0x43,
+ 0x59,0x42,0x50,0xfa,0xf6,0x97,0x7d,0xed,0xc4,0xef,0xfc,0x43,0x5c,0x13,0x42,0xff,
+ 0xfc,0x87,0xaf,0x3a,0xd8,0x1c,0x29,0xa0,0x8c,0xe8,0x9c,0x50,0xd8,0x20,0x22,0x2a,
+ 0x4f,0x76,0xe,0x3b,0x99,0x86,0x91,0x94,0xb2,0x75,0xd9,0x48,0xd9,0x39,0xe0,0x4c,
+ 0xf7,0xdc,0x32,0x3c,0xa7,0x71,0x74,0x6c,0x8e,0xec,0x1c,0x76,0xf1,0x79,0x7d,0xee,
+ 0x7e,0x53,0x47,0xff,0xee,0x38,0xca,0xc1,0xe3,0xbf,0xb4,0x52,0x6b,0x2a,0x5c,0xf3,
+ 0xc,0xbb,0x69,0x0,0x45,0x9,0x50,0x10,0x65,0x9,0x41,0x67,0xe0,0x6b,0xf7,0xe,
+ 0x31,0xd,0xe3,0x8c,0x7f,0x6f,0xfb,0xbc,0x5e,0xf7,0xe8,0xb7,0x1f,0xe9,0x65,0x57,
+ 0xa6,0x40,0x34,0xfa,0x96,0xa1,0xf3,0x34,0x97,0x96,0x28,0x3b,0x87,0x9d,0xf2,0x8b,
+ 0xb,0xa2,0x66,0x6c,0x48,0x6e,0x2e,0x3b,0x7,0x9c,0x69,0x48,0xa7,0xbe,0xa9,0xa6,
+ 0x3a,0x27,0xb2,0xfa,0xd1,0x9c,0x63,0xf1,0xf3,0x3e,0x5a,0x12,0xfd,0xdf,0xff,0xc6,
+ 0x80,0xa9,0x63,0x86,0x55,0x79,0xab,0x54,0x7a,0xe0,0xb3,0x27,0xa6,0x7e,0x74,0xee,
+ 0xdd,0x37,0xf,0x56,0xe6,0x2a,0x26,0x80,0x7f,0xa3,0x2c,0x21,0xa8,0x2c,0xfa,0x24,
+ 0x3d,0xe2,0xd7,0xec,0xa3,0xcd,0xc5,0xd9,0xaf,0x86,0xe8,0x7f,0xff,0xf5,0xc7,0xb6,
+ 0x2b,0xbf,0xdc,0xa0,0xec,0xcf,0x40,0xc2,0x75,0x3d,0x2b,0xe3,0x1a,0xc4,0x66,0xb,
+ 0xc5,0xc6,0x1e,0x56,0x7c,0xbe,0xbe,0xaf,0xec,0x18,0x70,0xa6,0xc1,0x9d,0xfa,0x94,
+ 0xb6,0xb9,0xb8,0xf5,0x3e,0x75,0xae,0xe3,0x69,0xfa,0xb2,0x1d,0xab,0x7,0xfd,0xf7,
+ 0x1f,0xcf,0xcc,0xcd,0x8a,0x17,0xa,0x5d,0xbf,0x73,0xb9,0x5c,0xc6,0xfa,0x67,0x16,
+ 0x33,0xea,0x0,0x28,0x4a,0xd9,0x17,0x8a,0x8,0x4e,0xa9,0x9f,0x65,0xc,0xf9,0x9f,
+ 0x51,0x87,0xdf,0x63,0x98,0x7a,0xea,0xa7,0x19,0x43,0xfc,0x1c,0x29,0xa0,0xad,0x4a,
+ 0x5c,0x90,0x52,0xab,0x56,0xad,0x4a,0xd9,0x39,0xec,0x54,0x56,0x56,0x16,0x3e,0x69,
+ 0xc9,0x94,0x33,0x7e,0x1e,0x3,0xf8,0x3d,0x29,0xe3,0xde,0x5a,0x15,0x19,0x11,0xa9,
+ 0xcc,0x6c,0xf4,0xe9,0xc2,0xd3,0x51,0x2f,0xa6,0xbd,0xd6,0xee,0x9f,0xff,0x7f,0xcf,
+ 0xc9,0xc3,0xc6,0x18,0x67,0x39,0xb9,0xf,0x32,0x9e,0x7f,0x3c,0x9f,0xe,0x80,0xa2,
+ 0x42,0x9e,0x7f,0xfe,0x79,0xd9,0x19,0x80,0x1a,0x31,0x6e,0x4e,0x62,0xd7,0x83,0x59,
+ 0xbf,0x5c,0x26,0x84,0xb8,0xf9,0x5c,0xff,0x9c,0xfc,0x92,0xc2,0xbf,0x95,0x57,0x95,
+ 0xff,0x7a,0x4d,0xeb,0xab,0xa,0xfc,0x18,0x2d,0xa0,0x6d,0xdf,0xf7,0x65,0xcc,0xc9,
+ 0x82,0x53,0x7b,0xc5,0x79,0xfc,0xef,0xe6,0x70,0x37,0x1f,0xc9,0x3d,0xf6,0xd3,0xe8,
+ 0xae,0x43,0x76,0xca,0xe,0x2,0x67,0xaa,0xf0,0x56,0x1d,0xde,0xfd,0xd3,0xb7,0x85,
+ 0x9a,0xa6,0x9d,0x75,0x31,0xce,0xe9,0x34,0xa1,0xdd,0x7c,0xe8,0xc4,0x91,0xc3,0x99,
+ 0xb9,0x59,0x25,0x73,0x36,0xbf,0x7f,0xc3,0xd1,0x53,0x59,0x17,0x9,0x85,0x4e,0x95,
+ 0x6a,0xb9,0x6b,0x6d,0xda,0xf4,0xdc,0xd2,0x77,0x65,0xe7,0x0,0x20,0x8f,0x4a,0xef,
+ 0xe,0x21,0xc8,0x7d,0x73,0x68,0xef,0x95,0xe7,0xfb,0x81,0x63,0x4d,0x8,0x7d,0xd5,
+ 0xae,0x4d,0xbd,0xfd,0x14,0xc9,0x11,0xe6,0x8d,0x7f,0x73,0x4d,0xbd,0xba,0xf5,0x94,
+ 0x79,0xa7,0x5c,0x8,0x21,0xaa,0xaa,0xaa,0x42,0x7b,0xea,0xc3,0xc6,0xc8,0xce,0x1,
+ 0x67,0xba,0xa7,0xeb,0xd0,0x9c,0x46,0xd1,0x31,0xa,0x8d,0x3d,0x78,0xa7,0x6c,0xd8,
+ 0xbd,0xe5,0xeb,0x83,0xc7,0x7f,0x59,0xa6,0xd6,0xa8,0x83,0xf0,0xb4,0x6a,0xd2,0xe2,
+ 0xa0,0xec,0x18,0x0,0xe4,0xa2,0x2c,0x21,0x28,0x3c,0x30,0xfb,0xc9,0x5b,0xab,0xaa,
+ 0xaa,0xf7,0x81,0xe3,0xe2,0x92,0xe2,0x88,0xc7,0x53,0x9e,0x53,0x7a,0x4a,0x7c,0xe4,
+ 0xcd,0x3,0x53,0x84,0xa6,0x29,0xf1,0x39,0x8c,0x7f,0xd0,0x4f,0xe6,0x9f,0x8a,0x49,
+ 0xd9,0xba,0x34,0x4a,0x76,0x10,0x38,0xd3,0xc0,0xeb,0xef,0x4c,0x53,0xe5,0xb3,0x4b,
+ 0xaa,0xaa,0x17,0x5e,0xaf,0x30,0xe5,0xe1,0x19,0xab,0x64,0xe7,0x0,0x20,0x17,0x65,
+ 0x9,0x41,0xe1,0x9b,0x43,0x7b,0xaf,0x14,0xd5,0xbf,0x1a,0xa2,0x7f,0xbe,0x7f,0xb7,
+ 0xd2,0x53,0xe2,0xc3,0x6e,0xe8,0x5f,0xdc,0xa8,0x7e,0x74,0x8e,0x50,0x68,0xec,0xc1,
+ 0x34,0xcd,0xa4,0xc5,0x9f,0x64,0xc,0x93,0x9d,0x3,0xce,0x74,0x57,0xe7,0x84,0xfc,
+ 0xa6,0x8d,0xe2,0xb2,0x64,0xe7,0x80,0x9f,0x68,0x9a,0xe7,0xae,0x9b,0x12,0x16,0xca,
+ 0x8e,0x1,0x40,0x3e,0xca,0x12,0x1c,0x6f,0xc4,0x9b,0xe3,0xfa,0xfa,0xbc,0x3e,0xf7,
+ 0x85,0x7c,0xd,0x9f,0xd7,0xe7,0x1e,0x3d,0x53,0xed,0x29,0xf1,0x75,0xcf,0x2c,0x4e,
+ 0xe,0x9,0x9,0xf1,0xca,0xce,0x61,0xa7,0xc2,0xd2,0xc2,0xc8,0x19,0x1b,0xe6,0x32,
+ 0x25,0x8e,0x6a,0x19,0x76,0xc3,0x80,0x45,0xaa,0xcd,0xef,0xab,0xa2,0x41,0xbd,0xfa,
+ 0x79,0xc3,0x3b,0xf,0x50,0xea,0x7a,0x32,0x0,0x6b,0x94,0x25,0x38,0x5a,0xfa,0xce,
+ 0x35,0xee,0x9f,0x8e,0x1d,0x6a,0x2d,0x2e,0xfc,0x3,0xc7,0xfa,0xdf,0x7f,0xfd,0xb1,
+ 0x6d,0xfa,0xe7,0xeb,0x2e,0xa8,0x74,0x39,0x5d,0x8b,0xd8,0x8b,0xe,0xb,0x85,0x4e,
+ 0x97,0x84,0x29,0xf4,0x15,0x3b,0xd7,0x31,0x25,0x8e,0x6a,0xe9,0x7f,0x6d,0xf,0x6f,
+ 0xbb,0x96,0x6d,0xbe,0xe3,0x3a,0x5e,0x90,0xd1,0x34,0xcf,0xe8,0x9b,0x87,0xcc,0x93,
+ 0x1d,0x3,0x40,0x60,0xa0,0x2c,0xc1,0xd1,0x16,0x7f,0xba,0x72,0x98,0x61,0x18,0xe7,
+ 0x36,0x15,0x7e,0x36,0xa6,0xa9,0x2f,0xfe,0x74,0x85,0xd2,0xd7,0xb2,0x52,0x1f,0x7f,
+ 0x37,0xad,0x76,0xed,0xda,0xe5,0xb2,0x73,0xd8,0xa9,0xac,0xbc,0x2c,0xbc,0xff,0xd4,
+ 0xbb,0x95,0xfe,0xeb,0x8e,0xea,0x9b,0x7d,0xdf,0x6b,0x1b,0xea,0x2b,0x34,0x25,0xae,
+ 0x82,0x98,0xc8,0x6,0xb9,0x9,0xd7,0xf7,0x52,0xea,0x91,0xa,0x0,0x7e,0x1f,0x65,
+ 0x9,0x8e,0xf5,0xdc,0x92,0xa9,0x57,0x1d,0xcf,0xcb,0x8e,0xab,0xc9,0xaf,0x79,0xec,
+ 0x64,0x56,0xd3,0xb7,0xd6,0xcd,0x51,0xfa,0x5a,0x56,0xeb,0x26,0x2d,0xf,0x8,0x4d,
+ 0xa1,0xd3,0x25,0x21,0xf4,0x63,0xb9,0xc7,0xe3,0x97,0x6d,0x5f,0x1d,0x26,0x3b,0x8,
+ 0x9c,0x69,0xc0,0xf5,0x77,0xa6,0x19,0xc2,0x9c,0x24,0x3b,0x7,0x2e,0x9c,0x2b,0xc4,
+ 0x95,0x38,0xaa,0x2b,0xa7,0x4a,0x0,0xfe,0x8d,0xb2,0x4,0xc7,0xfa,0xe4,0xef,0x3b,
+ 0x6f,0x30,0x8d,0x73,0x7c,0x0,0xed,0x39,0xd2,0x84,0xa6,0xaf,0xda,0xb5,0xb1,0x77,
+ 0x4d,0x7e,0x4d,0xa7,0x49,0x1e,0xf7,0xfa,0xba,0x7a,0xe1,0x6a,0x4d,0x89,0x1b,0x86,
+ 0x91,0x34,0x7f,0xeb,0xd2,0x91,0xb2,0x73,0xc0,0x99,0xee,0xbd,0x65,0x58,0x4e,0x5c,
+ 0x74,0x6c,0xb6,0xec,0x1c,0xb8,0x60,0x9e,0x8b,0x62,0x9a,0x1d,0xe9,0x7f,0x6d,0xf,
+ 0xa5,0x3e,0xbb,0x9,0xe0,0xcc,0x28,0x4b,0x70,0xa4,0x11,0x6f,0x8e,0xeb,0x5b,0x56,
+ 0x5e,0x1e,0xee,0x8f,0xaf,0x5d,0x5c,0x5a,0x1a,0xf1,0xe8,0xfc,0x67,0x3b,0xfb,0xe3,
+ 0x6b,0x3b,0xc5,0xc8,0x2e,0x3,0x53,0x34,0x4d,0xad,0xf,0xae,0x9f,0x2e,0xca,0x8f,
+ 0x5e,0xf0,0xf1,0xb2,0x28,0xd9,0x39,0xe0,0x4c,0x83,0x3a,0xf5,0x5e,0xca,0x67,0x97,
+ 0x9c,0x2d,0x22,0xbc,0x6e,0x71,0xda,0xc4,0x39,0xa9,0xb2,0x73,0x0,0x8,0x2c,0x94,
+ 0x25,0x38,0xce,0xe2,0x4f,0xd2,0x23,0xe,0x1c,0xfb,0xb9,0x26,0x46,0x1d,0x2c,0x69,
+ 0x42,0xe8,0x5f,0xa8,0x3e,0x25,0x7e,0x63,0xff,0xe2,0x46,0xd,0x62,0x72,0x85,0x52,
+ 0x63,0xf,0xa6,0xbe,0xf8,0x93,0x15,0x43,0x64,0xc7,0x80,0x33,0xd,0xed,0xd4,0xaf,
+ 0xb8,0x4d,0x8b,0xcb,0xf7,0x51,0x98,0x1c,0x4a,0xd3,0x3c,0x23,0xba,0x30,0x15,0xe,
+ 0xe0,0x7f,0x51,0x96,0xe0,0x38,0x69,0x3b,0xd7,0x26,0xd4,0xf4,0xf5,0xbb,0xff,0x66,
+ 0xf8,0xc,0xd7,0xb0,0x37,0x1f,0xe8,0xef,0xcf,0xef,0x11,0xe8,0xd6,0x3e,0xfd,0x7e,
+ 0xb2,0xdb,0xed,0x56,0xea,0x3a,0x4a,0x41,0x49,0x61,0xd4,0x9c,0x2d,0x8b,0x62,0x65,
+ 0xe7,0x80,0x33,0xa5,0x8c,0x7b,0x73,0x55,0x78,0x9d,0xba,0xa5,0xb2,0x73,0xe0,0xbc,
+ 0x79,0x62,0xea,0x47,0xe7,0xde,0xd5,0x79,0x60,0xbe,0xec,0x20,0x0,0x2,0xf,0x65,
+ 0x9,0x8e,0xf2,0xee,0xe6,0x5,0x71,0x27,0xf2,0x72,0xec,0x78,0x31,0xab,0xff,0x94,
+ 0x79,0xa8,0xf5,0xdc,0x2d,0x8b,0x63,0x6c,0xf8,0x5e,0x1,0xeb,0xd2,0xb8,0x16,0x7,
+ 0x95,0x1a,0x7b,0x30,0x85,0xbe,0xe4,0xd3,0x95,0x83,0x64,0xc7,0x80,0x73,0x25,0x74,
+ 0xec,0x95,0x66,0x98,0x8c,0x3d,0x38,0x89,0xcb,0xe5,0x32,0xd6,0x3f,0xb3,0x78,0xb6,
+ 0xec,0x1c,0x0,0x2,0x13,0x65,0x9,0x8e,0xb2,0xfa,0xcb,0x4d,0xbd,0x4d,0xd3,0xbf,
+ 0xa7,0x4a,0xff,0x62,0xa,0x7d,0xc5,0x17,0xeb,0x95,0x7e,0x6,0xcf,0xc2,0x47,0x66,
+ 0x66,0xd4,0x8f,0xa8,0x9f,0x2f,0x14,0xba,0x8e,0x57,0x52,0x5a,0x12,0x31,0xe2,0x8d,
+ 0x71,0x4a,0xff,0x75,0x47,0xf5,0x3d,0x70,0xdb,0xc8,0xac,0x98,0x6,0xd,0x73,0x65,
+ 0xe7,0xc0,0x39,0xf3,0x34,0x8b,0x69,0x92,0x29,0x3b,0x4,0x80,0xc0,0x45,0x59,0x82,
+ 0x63,0x3c,0xf5,0xfe,0xe4,0xe,0x79,0x45,0xa7,0xa3,0xed,0xfc,0x9e,0xb9,0xf9,0xa7,
+ 0x62,0xa6,0xac,0x9c,0x79,0xb9,0x9d,0xdf,0x33,0xd0,0x7c,0xf0,0xdc,0xb2,0x59,0x9a,
+ 0x4b,0x33,0x64,0xe7,0xb0,0x91,0xfe,0x73,0xf6,0xe1,0x56,0xb2,0x43,0xc0,0xb9,0x6,
+ 0x75,0x64,0xec,0xc1,0x29,0xdc,0x6e,0xb7,0x37,0xfd,0x89,0xb9,0x8b,0x64,0xe7,0x0,
+ 0x10,0xb8,0x28,0x4b,0x70,0x8c,0x9d,0x3f,0x7c,0x75,0x9d,0x30,0xfd,0x33,0xea,0xf0,
+ 0x7b,0x34,0xa1,0xe9,0x1b,0xfe,0xb6,0xa5,0xbb,0x9d,0xdf,0x33,0x10,0x35,0x89,0x6e,
+ 0x9c,0x2d,0x14,0x3a,0x5d,0xf2,0x7a,0xbd,0xee,0x7e,0x53,0xee,0x1e,0x21,0x3b,0x7,
+ 0x9c,0xe9,0xae,0xce,0x9,0xf9,0x8d,0x1b,0xc6,0xe6,0xc8,0xce,0x81,0xb3,0xf2,0xb4,
+ 0x8a,0x6b,0x71,0x50,0x76,0x8,0x0,0x81,0x8d,0xb2,0x4,0x47,0x78,0x74,0xde,0xa4,
+ 0xce,0x15,0x95,0x15,0x52,0x1e,0x1a,0x5a,0x5e,0x5e,0x1e,0xf6,0x50,0xf2,0xd3,0x5d,
+ 0x65,0x7c,0xef,0x40,0xb1,0xf2,0xa9,0x94,0x14,0x97,0xcb,0xa5,0xd4,0xe9,0xd2,0xb1,
+ 0x53,0xc7,0x9b,0xca,0xe,0x1,0xe7,0x1a,0x7c,0x7d,0x9f,0x54,0x53,0xa5,0xcf,0xfb,
+ 0x39,0x50,0x44,0x78,0x44,0xf1,0x82,0x47,0x66,0x66,0xc8,0xce,0x1,0x20,0xb0,0x51,
+ 0x96,0xe0,0x8,0xbb,0xe,0x7c,0x7d,0xb5,0xf0,0xd3,0x54,0xf8,0x39,0xd0,0xbf,0x3a,
+ 0xf0,0x4d,0x7b,0x49,0xdf,0x3b,0x60,0x34,0x6b,0xd8,0x24,0x53,0x28,0x74,0xba,0x64,
+ 0x1a,0x86,0xab,0xeb,0x73,0x3,0xc6,0xc9,0xce,0x1,0x67,0x1a,0x72,0x43,0xdf,0xd2,
+ 0x2b,0x2e,0x6e,0xbd,0xdf,0x54,0xe8,0x67,0xc6,0x51,0x34,0xe1,0x19,0x72,0x43,0x5f,
+ 0x9e,0xa9,0x4,0xe0,0xac,0x28,0x4b,0x8,0x78,0xbd,0x5e,0x1e,0x31,0xda,0xeb,0xf5,
+ 0xba,0x65,0x66,0x30,0xd,0xc3,0x35,0x78,0xfa,0x7d,0x4a,0xaf,0xa4,0xa5,0x3f,0x39,
+ 0x77,0x91,0x62,0x53,0xe2,0x7a,0x51,0x49,0x51,0xe4,0xb0,0xd7,0xd5,0x9e,0x90,0x47,
+ 0xf5,0x2d,0x18,0xf7,0x56,0x46,0x78,0x58,0x1d,0xa6,0xc4,0x3,0x50,0x83,0x7a,0x51,
+ 0x79,0x77,0x77,0x1d,0xc2,0x10,0x7,0x80,0xb3,0xa2,0x2c,0x21,0xa0,0xd,0x99,0x7e,
+ 0x5f,0xc2,0x89,0xbc,0x9c,0x38,0x21,0xef,0x54,0xe9,0x9f,0xf4,0x43,0x59,0x87,0x5b,
+ 0xbe,0xb3,0x29,0x45,0xe9,0xab,0x59,0x97,0x35,0xb9,0xe4,0x80,0x52,0x53,0xe2,0x42,
+ 0xe8,0x87,0x73,0x8e,0xb6,0x90,0x1d,0x2,0xce,0x75,0xe7,0x35,0xdd,0xd6,0x98,0x26,
+ 0x63,0xf,0x81,0x44,0x73,0x69,0x89,0x63,0x6e,0x19,0x9a,0x2c,0x3b,0x7,0x0,0x67,
+ 0xa0,0x2c,0x21,0x60,0x3d,0xbd,0x48,0xbf,0xfa,0xe7,0xe3,0x87,0x5b,0x9,0xf9,0x45,
+ 0xe9,0x9f,0xf4,0xc,0xc5,0xa7,0xc4,0x53,0x1e,0x9e,0xb1,0x2a,0x4a,0xb1,0x29,0xf1,
+ 0xaa,0xaa,0xaa,0xd0,0xfe,0x53,0xc7,0xc,0x93,0x9d,0x3,0xce,0xf4,0x68,0xcf,0xb1,
+ 0x87,0x98,0x12,0xf,0x28,0x9e,0xf8,0x86,0x4d,0x33,0xfb,0x5f,0xdb,0x53,0xa5,0x53,
+ 0x72,0x0,0x17,0x80,0xb2,0x84,0x80,0xb5,0xe3,0x87,0x5d,0x1d,0xed,0x5e,0xbf,0x3b,
+ 0x9b,0x82,0xe2,0xa2,0xc8,0x89,0xb,0x5e,0xe8,0x28,0x3b,0x87,0x4c,0x9b,0x15,0x9c,
+ 0x12,0xcf,0x62,0xec,0x1,0x17,0x60,0xe0,0xf5,0x77,0xa6,0x19,0x82,0x7,0xd5,0x6,
+ 0x82,0xf0,0xb0,0xf0,0xd2,0xf4,0x27,0x99,0xa,0x7,0x70,0xee,0x28,0x4b,0x8,0x48,
+ 0xf,0xcc,0x7e,0xea,0xd6,0xf2,0xa,0x39,0xeb,0x77,0x67,0xa2,0x9,0xa1,0xef,0xf8,
+ 0x61,0xd7,0x75,0xb2,0x73,0xc8,0xd6,0x34,0x3a,0x2e,0x4b,0x28,0x74,0xba,0xe4,0xf3,
+ 0xf9,0xdc,0x3d,0xf5,0xe1,0x63,0x64,0xe7,0x80,0x33,0xdd,0x75,0xd3,0xc0,0xfc,0xd6,
+ 0x17,0x5d,0x7a,0x80,0xb1,0x7,0xc9,0x34,0xe1,0x19,0xda,0xb9,0x3f,0x45,0x9,0xc0,
+ 0x79,0xa1,0x2c,0x21,0xe0,0xac,0xd8,0xb9,0xce,0xfd,0xed,0xa1,0xbd,0x57,0x8a,0xc0,
+ 0xb9,0x7e,0xf7,0x1f,0x7c,0x5e,0x9f,0x7b,0xd4,0xcc,0x87,0x7b,0xcb,0xce,0x21,0x53,
+ 0xc6,0x53,0xf3,0x17,0x86,0x84,0x84,0xa8,0x74,0x8d,0x45,0xcf,0xc9,0xcf,0x8d,0x4d,
+ 0xd9,0xba,0x24,0x4a,0x76,0x10,0x38,0xd3,0xe2,0x87,0x67,0xa5,0x85,0x86,0xd6,0xaa,
+ 0x94,0x9d,0x43,0x65,0x51,0x11,0xf5,0xf3,0xc7,0x30,0xea,0x0,0xe0,0x3c,0x51,0x96,
+ 0x10,0x70,0x36,0x7d,0xbd,0xb5,0x9b,0xd7,0xeb,0x9d,0x22,0x3b,0xc7,0x19,0xe8,0xfb,
+ 0x7e,0x3d,0xd0,0x66,0xe5,0x97,0x1b,0x95,0xfe,0xf9,0xb9,0x28,0xa6,0x99,0x52,0x53,
+ 0xe2,0xc2,0x34,0xf5,0x85,0x1f,0xa7,0xf3,0xa0,0x5a,0x54,0xdb,0x1d,0x7f,0xbd,0x65,
+ 0x3,0x63,0xf,0x72,0x68,0x9a,0x96,0x38,0xb2,0xcb,0xc0,0x14,0xd9,0x39,0x0,0x38,
+ 0x8f,0xd2,0x2f,0xf6,0x10,0x78,0x16,0x6d,0x4b,0x8f,0xf8,0xfb,0xd1,0x3,0x6d,0x64,
+ 0xe7,0x38,0x2b,0xd3,0xd4,0x53,0x3f,0xcb,0x18,0x22,0x3b,0x86,0x4c,0xcb,0x26,0xce,
+ 0x4e,0xd,0xd,0xd,0x55,0xea,0x9d,0xf2,0x92,0xb2,0x92,0x88,0x84,0x69,0xf7,0x2a,
+ 0xfd,0xd7,0x1d,0xd5,0x97,0xd8,0x67,0xfc,0xbe,0x6,0xf5,0xa3,0xf2,0x65,0xe7,0x50,
+ 0x90,0xa7,0x51,0x54,0x4c,0xee,0xe0,0x4e,0x7d,0x99,0x71,0x7,0x70,0xde,0x28,0x4b,
+ 0x8,0x28,0x4b,0xb7,0xaf,0x1c,0xe4,0xb,0xec,0x53,0xa5,0x7f,0xf9,0x35,0xfb,0x68,
+ 0xf3,0x39,0x5b,0x16,0xc5,0xca,0xce,0x21,0x53,0xeb,0x26,0x97,0x2a,0x37,0x25,0x9e,
+ 0x99,0x7b,0x2c,0x7e,0xf9,0xce,0xb5,0xa1,0xb2,0x83,0xc0,0x99,0x7a,0x5f,0x73,0xfb,
+ 0x2a,0x4e,0x97,0xec,0x15,0xe2,0x76,0x7b,0xd7,0x7a,0xde,0x67,0x2a,0x1c,0x40,0xb5,
+ 0x50,0x96,0x10,0x30,0x9e,0x5a,0x38,0xb9,0xc3,0xc9,0xfc,0x53,0x8e,0x29,0x1f,0x9a,
+ 0x10,0xfa,0xb2,0xcf,0x56,0x25,0xc8,0xce,0x21,0xd3,0xdc,0x87,0x5e,0x5f,0xa3,0xda,
+ 0x94,0xb8,0xcf,0xe7,0x9b,0x92,0xb2,0x75,0xe9,0x48,0xd9,0x39,0xe0,0x4c,0xf7,0xdf,
+ 0x36,0x32,0x2b,0x26,0xba,0x61,0xae,0x30,0x65,0x27,0x51,0x86,0xe7,0xb2,0xb8,0x16,
+ 0x7,0x65,0x87,0x0,0xe0,0x5c,0x94,0x25,0x4,0x8c,0xcf,0x7f,0xfc,0xea,0x3a,0x11,
+ 0xa0,0xa3,0xe,0xbf,0xa7,0xb0,0xa4,0x38,0xf2,0xd1,0xf9,0xcf,0x76,0x96,0x9d,0x43,
+ 0xa6,0xdf,0xa6,0xc4,0x5d,0x2a,0x4d,0x89,0x8b,0x53,0x5,0x79,0xd1,0xf3,0xb6,0x2e,
+ 0x89,0x96,0x9d,0x3,0xce,0x34,0xf0,0xba,0x3b,0xd3,0xc,0x8d,0x29,0x71,0x3b,0xd4,
+ 0xab,0x5b,0xaf,0x70,0xc1,0x23,0x33,0x33,0x64,0xe7,0x0,0xe0,0x5c,0x94,0x25,0x4,
+ 0x84,0xf1,0xc9,0x9e,0x2e,0x81,0x38,0x15,0x7e,0x36,0x9a,0x10,0xfa,0x17,0xfb,0xff,
+ 0xd6,0x41,0x76,0xe,0xd9,0x9a,0x35,0x6c,0xa2,0xd4,0x94,0xb8,0x69,0x9a,0x49,0x8b,
+ 0x3f,0x59,0xc1,0x83,0x6a,0x51,0x2d,0x77,0xdd,0x34,0x30,0xff,0x8a,0x8b,0x5b,0xef,
+ 0x33,0x5,0xd7,0xf1,0xfc,0x4a,0xd3,0x3c,0x77,0xdd,0x94,0xb0,0x50,0x76,0xc,0x0,
+ 0xce,0x46,0x59,0x82,0x74,0x8b,0x3f,0xc9,0x88,0xf8,0xdb,0xc1,0x6f,0xdb,0xb,0x87,
+ 0x9d,0x2a,0xfd,0x93,0xe1,0xf3,0xb9,0xee,0x9a,0x31,0xbe,0xaf,0xec,0x1c,0x32,0xad,
+ 0x78,0x72,0xee,0x42,0xb7,0xdb,0xad,0xd2,0x94,0xb8,0x28,0x2e,0x29,0x8e,0x98,0xbc,
+ 0xfc,0xf5,0xb6,0xb2,0x73,0xc0,0x99,0x16,0x3e,0x34,0x23,0x23,0xbc,0x4e,0x38,0x83,
+ 0x3,0x7e,0xd4,0xa0,0x5e,0xfd,0xbc,0xe1,0x9d,0x7,0x14,0xca,0xce,0x1,0xc0,0xd9,
+ 0x28,0x4b,0x90,0x6e,0xd9,0x8e,0x55,0x9,0x1,0x3e,0x15,0x7e,0x36,0xfa,0xfe,0x23,
+ 0x7,0x2e,0xcf,0xf8,0x62,0x83,0xd2,0x3f,0x4f,0x97,0xc4,0x36,0x3f,0x24,0x14,0x3a,
+ 0x5d,0x12,0x42,0xe8,0x9b,0xbf,0xfe,0xb8,0x9b,0xec,0x10,0x70,0xae,0xbe,0xd7,0xde,
+ 0x91,0xc1,0xe9,0x92,0x9f,0x68,0x9a,0x67,0xf4,0xcd,0x43,0xe6,0xc9,0x8e,0x1,0xc0,
+ 0xf9,0x94,0x7e,0x71,0x7,0xf9,0xa6,0x66,0xcc,0x68,0x7d,0xe2,0xf4,0xc9,0x38,0xd9,
+ 0x39,0x2e,0x98,0x29,0xf4,0x45,0x9f,0xa6,0x2b,0x7d,0x2d,0x6b,0xd1,0x63,0xb3,0xd2,
+ 0x6b,0xd7,0xae,0x5d,0x2e,0x3b,0x87,0x9d,0x2a,0x2b,0x2b,0x43,0x7b,0x27,0xdd,0x35,
+ 0x52,0x76,0xe,0x38,0xd3,0xf8,0xee,0x63,0x8e,0x44,0xd7,0x6f,0x90,0x27,0x3b,0x47,
+ 0x30,0x6a,0x18,0xd9,0x20,0x37,0xe1,0xfa,0x5e,0x4a,0x3d,0xda,0x0,0x80,0x7f,0x50,
+ 0x96,0x20,0xd5,0xe6,0x6f,0x3e,0xe9,0x26,0x4c,0xd3,0x91,0xd7,0xef,0xfe,0x5b,0x66,
+ 0xce,0xb1,0xf8,0x77,0x36,0x2f,0x68,0x2a,0x3b,0x87,0x4c,0x7f,0x50,0x70,0x4a,0x3c,
+ 0xfb,0xf4,0xc9,0xb8,0xa5,0x3b,0x56,0x39,0xee,0xf3,0x76,0x8,0xc,0xfd,0xaf,0xed,
+ 0x99,0xce,0xe9,0x52,0xcd,0x72,0xb9,0x5c,0x89,0x63,0x6e,0x1d,0xca,0x54,0x38,0x80,
+ 0x1a,0x41,0x59,0x82,0x34,0x8f,0xcc,0x9b,0xd4,0xb9,0xb8,0xb4,0x38,0x42,0x76,0x8e,
+ 0x9a,0xa2,0x9,0x4d,0x5f,0xbe,0x63,0x4d,0x7f,0xd9,0x39,0x64,0x9a,0x33,0x6e,0xfa,
+ 0x3a,0xd5,0xa6,0xc4,0x4d,0xc3,0x48,0x5a,0xf0,0xd1,0xb2,0x91,0xb2,0x73,0xc0,0x99,
+ 0xc6,0x74,0x1d,0x9a,0xdb,0x24,0x26,0x2e,0x5b,0x76,0x8e,0x20,0xe2,0xb9,0xa8,0x51,
+ 0xb3,0x23,0x7d,0xaf,0xb9,0x43,0xa9,0x85,0x4e,0x0,0xfe,0x43,0x59,0x82,0x34,0x4e,
+ 0x1e,0x75,0xf8,0x3d,0xc5,0xa5,0xc5,0x11,0x4c,0x89,0xab,0x37,0x25,0x9e,0x57,0x94,
+ 0x1f,0xbd,0x6c,0xfb,0x6a,0x4e,0x97,0x50,0x2d,0x23,0x3a,0xf,0x5c,0xa8,0xd8,0x89,
+ 0xac,0xdf,0xd4,0xad,0x53,0xb7,0x38,0x6d,0xe2,0x9c,0x54,0xd9,0x39,0x0,0x4,0xf,
+ 0xca,0x12,0xa4,0x78,0x68,0xce,0xd3,0x5d,0x2b,0x2b,0x2b,0x43,0x65,0xe7,0xa8,0x69,
+ 0x9a,0xd0,0xf4,0x2f,0xf6,0xef,0x66,0x4a,0x5c,0xb1,0x29,0x71,0x61,0x9a,0xfa,0xfc,
+ 0x8f,0x96,0x8c,0x94,0x1d,0x3,0xce,0xd4,0xaf,0x43,0x77,0xef,0x95,0x97,0xfe,0xe9,
+ 0x1b,0xae,0xe3,0x5d,0x20,0x4d,0x78,0x86,0x77,0xee,0xb7,0x48,0x76,0xc,0x0,0xc1,
+ 0x85,0xb2,0x4,0xdb,0x2d,0xda,0x96,0x1e,0xb1,0xe7,0xe7,0xef,0xae,0x12,0x41,0x76,
+ 0xaa,0xf4,0x4f,0x86,0xcf,0x70,0xd,0x7b,0xf3,0x41,0xa5,0xaf,0xe3,0xa9,0x38,0x25,
+ 0x7e,0xba,0x38,0x3f,0x7a,0xe1,0xb6,0xb4,0x48,0xd9,0x39,0xe0,0x4c,0xef,0xdd,0x37,
+ 0x6d,0x43,0xdd,0x3a,0x75,0x99,0x12,0xbf,0x0,0x51,0x11,0x51,0xf9,0xa3,0x6e,0x1e,
+ 0xc2,0x60,0x6,0x80,0x1a,0x45,0x59,0x82,0xed,0x96,0xed,0x58,0x3d,0xc8,0xe1,0x53,
+ 0xe1,0x67,0xa3,0xff,0x94,0xf9,0x73,0xeb,0xf9,0x5b,0x97,0x45,0xcb,0xe,0x22,0xd3,
+ 0xa5,0x71,0x2d,0xe,0xa,0xa5,0x4e,0x97,0x84,0xbe,0x60,0x6b,0xda,0x48,0xd9,0x31,
+ 0xe0,0x5c,0x7d,0xae,0xed,0xce,0x94,0x78,0x35,0x69,0x9a,0x96,0x38,0xaa,0xcb,0x40,
+ 0xa6,0xc2,0x1,0xd4,0x38,0xca,0x12,0x6c,0xf5,0xdc,0x92,0xa9,0x57,0xe5,0xe4,0x9f,
+ 0x8c,0x95,0x9d,0xc3,0xef,0x4c,0xa1,0x2f,0xfd,0x2c,0x63,0x90,0xec,0x18,0x32,0x2d,
+ 0x7c,0x64,0x66,0x46,0xbd,0xba,0x11,0x4a,0x3d,0x10,0xb2,0xb8,0xb4,0x38,0x62,0xc4,
+ 0x1b,0xe3,0x94,0x7e,0x40,0x31,0xaa,0x8f,0x29,0xf1,0xea,0x6b,0x58,0x3f,0x3a,0x6f,
+ 0x50,0xa7,0x3e,0x4a,0x3d,0xba,0x0,0x80,0x3d,0x28,0x4b,0xb0,0xcd,0x9c,0xf,0x16,
+ 0xd5,0xdd,0xfa,0xfd,0xf6,0xce,0xc2,0xc,0xce,0xeb,0x77,0xff,0x2d,0xbf,0xa8,0x20,
+ 0x2a,0x61,0xda,0x3d,0x43,0x64,0xe7,0x90,0x69,0x44,0x97,0x84,0x85,0x42,0xd3,0x54,
+ 0x7a,0xa7,0x5c,0xff,0x39,0xfb,0x70,0x2b,0xd9,0x21,0xe0,0x5c,0x3,0xae,0xbb,0x33,
+ 0xdd,0x10,0xe6,0x24,0xd9,0x39,0x9c,0xc4,0x15,0x12,0x92,0x38,0xe6,0x16,0xa6,0xc2,
+ 0x1,0xf8,0x7,0x65,0x9,0xb6,0x48,0xfd,0x64,0x85,0xb6,0xe9,0xeb,0xad,0xb7,0x56,
+ 0x56,0x56,0xbe,0x26,0x3b,0x8b,0x8d,0xf4,0x13,0xf9,0x39,0xce,0x7f,0xe0,0xee,0x5,
+ 0x18,0x71,0x63,0x42,0x61,0xc3,0xc8,0x6,0xb9,0x42,0xa1,0xeb,0x78,0x5e,0xaf,0xd7,
+ 0xdd,0x6f,0xca,0xdd,0x23,0x64,0xe7,0x80,0x33,0xdd,0x7d,0xf3,0xe0,0xdc,0x8b,0xe3,
+ 0x2e,0x3a,0x2c,0x14,0xfa,0x99,0xb9,0x40,0x9e,0x66,0xd1,0x71,0x99,0x7d,0xae,0xe9,
+ 0xae,0xd4,0x2,0x27,0x0,0xfb,0x50,0x96,0x60,0x8b,0x53,0x45,0xf9,0xf5,0x8e,0xe7,
+ 0x9d,0x58,0x2e,0x3b,0x87,0xdd,0x9a,0xc7,0xc6,0x1f,0x91,0x9d,0x41,0xb6,0xd,0x93,
+ 0x52,0x67,0xbb,0xd4,0x9a,0x12,0xd7,0x8f,0x9d,0x3a,0xae,0xf4,0xc3,0x89,0x71,0x61,
+ 0xd2,0x27,0x24,0x2f,0xd2,0x42,0x94,0xfa,0x99,0xa9,0xb6,0xda,0xb5,0x6b,0x97,0xa7,
+ 0x3f,0x39,0x97,0x5,0x3c,0x0,0x7e,0x43,0x59,0x82,0x2d,0x76,0xfe,0xb8,0xab,0x8b,
+ 0xcf,0xe7,0xb,0x91,0x9d,0xc3,0x4e,0x21,0x21,0x21,0x4f,0x76,0xbf,0xea,0xe6,0xd,
+ 0xb2,0x73,0x4,0x82,0xa6,0x8a,0x4d,0x89,0x9b,0x86,0xe1,0xba,0xed,0x85,0x81,0xf,
+ 0xc8,0xce,0x1,0xe7,0xea,0x7a,0xe5,0xd,0x5b,0x4c,0x93,0xb1,0x87,0xb3,0xf0,0xdc,
+ 0x7e,0xd5,0xcd,0x9b,0x64,0x87,0x0,0x10,0xdc,0x28,0x4b,0xf0,0xbb,0x85,0x5b,0xd3,
+ 0x22,0xf,0xe7,0x1c,0xbd,0x5c,0x76,0xe,0x9b,0x79,0x2e,0x6b,0xd6,0xf2,0xe0,0xe0,
+ 0x4e,0x7d,0x99,0x2,0x16,0x4a,0x4e,0x89,0xeb,0xf9,0xc5,0x5,0x51,0xf7,0xcc,0x7c,
+ 0xac,0x87,0xec,0x20,0x70,0xa6,0xc9,0x83,0x9f,0xda,0x1d,0x59,0x2f,0x52,0xa9,0x81,
+ 0x94,0xf3,0x55,0xb7,0x4e,0xdd,0xe2,0xc4,0x7e,0xe3,0xf7,0xc9,0xce,0x1,0x20,0xb8,
+ 0x51,0x96,0xe0,0x77,0x4b,0x77,0xac,0x1a,0x64,0xf8,0x8c,0x24,0xd9,0x39,0xec,0x54,
+ 0xab,0x56,0xad,0xca,0x5,0xe3,0x67,0x64,0xc8,0xce,0x11,0x48,0x54,0x9c,0x12,0xff,
+ 0xf1,0xf8,0xcf,0xad,0x65,0xc7,0x80,0x73,0xf5,0xbb,0xf6,0x8e,0xc,0xc3,0x64,0xec,
+ 0xc1,0x92,0x26,0x3c,0x7d,0x3a,0x74,0x5f,0x25,0x3b,0x6,0x80,0xe0,0x47,0x59,0x82,
+ 0x5f,0x3d,0xbd,0xe8,0xe5,0xab,0x4f,0x15,0xe6,0xc5,0xc8,0xce,0x61,0x33,0x4f,0xdb,
+ 0x8b,0x2f,0xdf,0x2b,0x3b,0x44,0xa0,0xf9,0x6d,0x4a,0xbc,0x9e,0x52,0xef,0x94,0x57,
+ 0x54,0x54,0x84,0xd,0x9d,0x7e,0x7f,0x82,0xec,0x1c,0x70,0xa6,0xfb,0x6f,0x1b,0x99,
+ 0xd5,0x28,0xba,0x61,0x8e,0xec,0x1c,0x81,0xa8,0x7e,0xdd,0xc8,0xfc,0x87,0xee,0xb8,
+ 0x5b,0xf9,0xcf,0x84,0x2,0xf0,0x3f,0xca,0x12,0xfc,0x6a,0xe7,0xfe,0x5d,0xd7,0xa9,
+ 0x32,0x15,0xfe,0x4f,0x11,0x75,0x23,0x8a,0xdf,0xbd,0x6f,0x1a,0xf7,0xe8,0x2d,0xdc,
+ 0xa5,0xe0,0x94,0xf8,0x2f,0x39,0x47,0x5b,0xc8,0xe,0x1,0xe7,0x1a,0x70,0x3d,0x53,
+ 0xe2,0xff,0x4d,0x73,0x69,0x89,0xbd,0xaf,0xb9,0x7d,0x95,0xec,0x1c,0x0,0xd4,0x40,
+ 0x59,0x82,0xdf,0x8c,0x4f,0xf6,0x74,0x29,0x2b,0x2f,0xf,0x97,0x9d,0xc3,0x56,0x9a,
+ 0xf0,0xf4,0xb9,0xa6,0x3b,0xd7,0xef,0x7e,0xc7,0xf0,0x1b,0x7,0x14,0x36,0xaa,0x1f,
+ 0x9d,0x23,0x14,0xba,0x8e,0xe7,0xf3,0x7a,0xdd,0x3d,0xf5,0xe1,0x63,0x64,0xe7,0x80,
+ 0x33,0x8d,0xea,0x3c,0x30,0xef,0xa2,0xc6,0xcd,0x8e,0x8,0x85,0x7e,0x66,0xce,0x26,
+ 0x2a,0xa2,0x7e,0xfe,0x3,0xb7,0x8f,0xca,0x92,0x9d,0x3,0x80,0x1a,0x28,0x4b,0xf0,
+ 0x9b,0x3d,0x3f,0x7f,0x77,0x95,0x10,0x6a,0x9d,0x2a,0x35,0x6d,0x18,0x97,0x35,0xae,
+ 0xfb,0xe8,0x4c,0xd9,0x39,0x2,0xd9,0xba,0x67,0x16,0x27,0xbb,0xd4,0x9a,0x45,0xd6,
+ 0x73,0xf2,0x73,0x63,0xe7,0x7f,0xb4,0x24,0x5a,0x76,0x10,0x38,0x53,0xc6,0xc4,0x79,
+ 0xb,0x35,0x4d,0x53,0xe9,0x67,0xe6,0x77,0xb9,0x42,0x5c,0x89,0x7d,0x3b,0xf0,0x86,
+ 0x14,0x0,0xfb,0x50,0x96,0xe0,0x17,0xa3,0xde,0x7a,0xb8,0x77,0x55,0x55,0x55,0xa8,
+ 0xec,0x1c,0x76,0xd2,0x5c,0xae,0xc4,0x3e,0x1d,0xee,0xe0,0x1f,0xe2,0xe7,0x20,0xbe,
+ 0x61,0xd3,0x4c,0xa1,0xd2,0x3b,0xe5,0xa6,0xa9,0xcf,0xff,0x68,0xe9,0x48,0xd9,0x31,
+ 0xe0,0x4c,0x8f,0x26,0x4f,0xea,0x2c,0x3b,0x43,0x80,0xf0,0xb4,0x6a,0x72,0xc9,0xc1,
+ 0x7b,0x6f,0x1d,0xc1,0xe7,0xb8,0x0,0xd8,0x46,0x33,0x4d,0x53,0x76,0x6,0x4,0x99,
+ 0xd9,0x9b,0xdf,0x8f,0x9d,0xff,0xd1,0x92,0xd1,0x86,0xa1,0xd4,0x2,0x9e,0xe7,0xaf,
+ 0xad,0xff,0xbc,0x6b,0xe6,0xbd,0x49,0x5b,0x64,0x7,0x71,0x8a,0xce,0x9e,0xde,0x8f,
+ 0x94,0x55,0x94,0xbf,0x2e,0x3b,0x87,0x8d,0x3c,0xe1,0xb5,0xeb,0x94,0xd6,0xd,0xb,
+ 0x2f,0x76,0x87,0xb8,0xbd,0x9a,0xd0,0xfc,0xf6,0x8d,0xdc,0x6e,0xb7,0xb7,0xaa,0xaa,
+ 0xca,0x6d,0x18,0x86,0xcb,0x14,0xa6,0xd2,0x6f,0x8a,0xb9,0x5c,0x2e,0xa3,0x5e,0x58,
+ 0x44,0x61,0x64,0x78,0xbd,0xc2,0x88,0xb0,0xba,0xc5,0xee,0x90,0xc0,0x9c,0xb0,0x77,
+ 0x69,0x9a,0xe1,0x72,0x85,0x18,0x3e,0x5f,0x95,0xfb,0x54,0x71,0x7e,0x74,0x6e,0xe1,
+ 0xa9,0x98,0x82,0xd2,0xa2,0xa8,0xb2,0xca,0xf2,0x30,0x9f,0xcf,0xe7,0x36,0x4c,0xa5,
+ 0x7e,0x9f,0x5a,0xa,0x9,0x9,0x79,0x72,0xe7,0x94,0xf5,0x53,0x65,0xe7,0x0,0xa0,
+ 0x16,0xb7,0xec,0x0,0x8,0x3e,0x6b,0x77,0x7f,0xd0,0x4b,0xb1,0xa2,0x24,0x22,0xeb,
+ 0xd6,0x2b,0xa4,0x28,0x9d,0x9f,0x2b,0x9a,0xb5,0xde,0xbf,0xe7,0x97,0xef,0x3d,0xc2,
+ 0x34,0x55,0xb9,0xaa,0xa9,0x97,0x56,0x94,0x89,0xd2,0x8a,0x32,0xd9,0x39,0x94,0x93,
+ 0x2d,0x38,0x88,0x8,0x6,0xf1,0xd,0x9b,0x70,0xc5,0x19,0x80,0xed,0x94,0x7e,0xc7,
+ 0x11,0x35,0x6f,0xda,0xea,0x59,0xad,0x73,0xf2,0x4f,0xc6,0xca,0xce,0x61,0x2b,0x4d,
+ 0x78,0xfa,0x5f,0xd7,0x33,0x5d,0x76,0xc,0xa7,0x79,0xe7,0x81,0xa9,0x9b,0x1a,0x46,
+ 0x36,0xc8,0x15,0x2a,0x5d,0xc7,0x3,0x50,0x6d,0x65,0x55,0x15,0x6a,0xd,0x6,0x1,
+ 0x8,0x8,0x94,0x25,0xd4,0xa8,0xf,0xbe,0xde,0x76,0xab,0x6a,0x53,0xe1,0x8d,0xa2,
+ 0x62,0x72,0xc6,0xde,0x36,0x22,0x5b,0x76,0xe,0x27,0xda,0x30,0x29,0x75,0xb6,0xcb,
+ 0xa5,0xd4,0xd8,0x3,0x80,0x6a,0x3a,0x55,0x98,0xc7,0x48,0xa,0x0,0xdb,0x51,0x96,
+ 0x50,0x63,0x5e,0x5c,0xf6,0x6a,0xbb,0xc2,0xe2,0xc2,0x48,0xd9,0x39,0x6c,0xa5,0x69,
+ 0x9e,0x41,0x9d,0xfa,0x2c,0x95,0x1d,0xc3,0xc9,0x9a,0xc5,0x28,0x36,0xf6,0x0,0xa0,
+ 0x5a,0x7c,0x3e,0x9f,0xfb,0xf1,0xf9,0xcf,0xdd,0x20,0x3b,0x7,0x0,0xb5,0x50,0x96,
+ 0x50,0x23,0x16,0x7f,0x9c,0x1e,0xf1,0xd1,0x77,0xdb,0xbb,0xa,0xb5,0xa6,0xc2,0x3d,
+ 0x97,0x35,0xbb,0xe4,0xc0,0xb0,0x1b,0xfa,0x15,0xcb,0xe,0xe2,0x64,0xe9,0x4f,0x24,
+ 0x2f,0xaa,0xe5,0x76,0x57,0xca,0xce,0x1,0x20,0xe0,0xe9,0xbb,0xe,0xec,0xb9,0x5a,
+ 0x76,0x8,0x0,0x6a,0xa1,0x2c,0xa1,0x46,0x2c,0xff,0x62,0x6d,0xff,0xf2,0x8a,0xf2,
+ 0xd7,0x64,0xe7,0xb0,0x53,0x68,0x68,0x68,0xe5,0xa2,0x47,0x66,0xf1,0x59,0xa5,0x1a,
+ 0xd0,0xba,0x69,0xab,0x3,0x42,0xd3,0x38,0x5d,0x2,0x70,0x46,0x95,0x55,0x55,0xa1,
+ 0x9,0xaf,0xde,0x33,0x44,0x76,0xe,0x0,0xea,0xa0,0x2c,0xe1,0x82,0x25,0x2d,0x7f,
+ 0xb3,0x4d,0xf6,0xe9,0x9c,0x38,0xd9,0x39,0x6c,0xe6,0xb9,0xfa,0xb2,0x3f,0xef,0x92,
+ 0x1d,0x22,0x58,0xcc,0x1b,0xff,0xc6,0x9a,0x18,0xc6,0x1e,0x0,0x9c,0x9d,0xfe,0xeb,
+ 0x89,0xa3,0x2d,0x66,0xac,0x4f,0x6e,0x2e,0x3b,0x8,0x0,0x35,0x50,0x96,0x70,0xc1,
+ 0xb6,0xee,0xdd,0xd1,0xc5,0x34,0x4c,0xb5,0xa6,0xc2,0x23,0x22,0xb,0x5f,0x1b,0xf5,
+ 0xc2,0xa7,0xb2,0x73,0x4,0x93,0xf5,0x93,0x52,0x67,0xbb,0x42,0x18,0x7b,0x0,0x70,
+ 0x16,0xa6,0xd0,0x57,0xed,0xda,0xd4,0x5b,0x76,0xc,0x0,0x6a,0xa0,0x2c,0xe1,0x82,
+ 0xc,0x7a,0x75,0xec,0xa0,0xc2,0x12,0xd5,0x46,0x1d,0x84,0x67,0xc0,0x75,0x3d,0xd3,
+ 0x64,0xc7,0x8,0x46,0x17,0xc5,0x34,0x3b,0x22,0x38,0x5d,0x2,0x70,0x16,0x45,0x25,
+ 0xc5,0x11,0xcf,0x2d,0x9d,0x76,0x95,0xec,0x1c,0x0,0x82,0x1f,0x65,0x9,0xd5,0x36,
+ 0x7e,0x8e,0xa7,0xcb,0xe1,0x9c,0xa3,0x2d,0x84,0x5a,0xa3,0xe,0xa2,0x71,0x83,0xd8,
+ 0xec,0x7b,0x6f,0x1d,0xce,0x53,0x2e,0xfd,0x20,0x6d,0xe2,0x9c,0xd4,0x90,0x90,0x10,
+ 0xaf,0xec,0x1c,0x0,0x2,0x9b,0x26,0x84,0xbe,0xed,0xfb,0x1d,0x9d,0x65,0xe7,0x0,
+ 0x10,0xfc,0x28,0x4b,0xa8,0x96,0x8c,0x9d,0x1b,0x5c,0xfb,0x8f,0xfd,0x74,0xb9,0x69,
+ 0x18,0x4a,0x5d,0xbf,0xd3,0x5c,0xae,0xc4,0x1e,0x7f,0xb9,0x65,0x9d,0xec,0x1c,0xc1,
+ 0xec,0x92,0xc6,0xcd,0xf,0xb,0x4e,0x97,0x0,0x9c,0x45,0x79,0x45,0x79,0xd8,0x33,
+ 0x8b,0x5f,0x69,0x2f,0x3b,0x7,0x80,0xe0,0x46,0x59,0x42,0xb5,0xac,0xf9,0x6a,0x53,
+ 0xaf,0x82,0x92,0xc2,0xb7,0x65,0xe7,0xb0,0x99,0xa7,0x59,0xc3,0xb8,0xac,0x7b,0x6f,
+ 0xe3,0x54,0xc9,0x9f,0x16,0x3f,0xf6,0x4e,0x5a,0x78,0x9d,0xf0,0x52,0xd9,0x39,0x0,
+ 0x4,0x3c,0xfd,0xd3,0xbf,0x7f,0xce,0x73,0x97,0x0,0xf8,0x15,0x65,0x9,0xe7,0x6d,
+ 0xfe,0x47,0x4b,0xa3,0x7f,0xce,0x3e,0xdc,0x4a,0x98,0xb2,0x93,0xd8,0x2b,0x3c,0x2c,
+ 0xbc,0x74,0xc5,0x93,0xf3,0x16,0xca,0xce,0xa1,0x82,0x6b,0x2e,0xbd,0xea,0xb,0xcd,
+ 0xa5,0x25,0xca,0xce,0x1,0x20,0xb0,0x55,0x54,0x56,0x84,0xd,0x7d,0xfd,0xfe,0x4,
+ 0xd9,0x39,0x0,0x4,0x2f,0xca,0x12,0xce,0xdb,0xe6,0xaf,0xb7,0xde,0x5a,0x59,0x55,
+ 0x39,0x4d,0x76,0xe,0x9b,0x79,0xfe,0xda,0xea,0xff,0x31,0x15,0x6e,0x93,0x57,0x46,
+ 0x3e,0xf3,0x45,0x93,0x6,0x8d,0xb3,0x5,0xd7,0xf1,0x0,0x9c,0x99,0x7e,0x30,0xeb,
+ 0x70,0xab,0x99,0x1b,0xe6,0xc6,0xcb,0xe,0x2,0x20,0x38,0x51,0x96,0x70,0x5e,0xde,
+ 0xdb,0xb8,0x20,0xee,0xc8,0xc9,0x63,0xca,0x3d,0xdf,0xa2,0x6e,0x9d,0xf0,0xe2,0xa9,
+ 0x23,0x9f,0xdb,0x29,0x3b,0x87,0x4a,0x56,0x26,0xa6,0xa4,0xb8,0x5c,0x4c,0x89,0x3,
+ 0x38,0xb,0xd3,0xd4,0x57,0x7d,0xc9,0x94,0x38,0x0,0xff,0xa0,0x2c,0xe1,0xbc,0xac,
+ 0xdc,0xb5,0xb1,0xb7,0xcf,0xe7,0x9b,0x22,0x3b,0x87,0xcd,0x3c,0x57,0xb5,0x6c,0xb7,
+ 0x47,0x76,0x8,0x15,0x35,0x6b,0xd8,0x34,0x53,0x70,0xba,0x4,0xe0,0x2c,0xa,0x4b,
+ 0x8a,0x22,0x27,0xa5,0x4e,0x61,0xec,0x1,0x40,0x8d,0xa3,0x2c,0xe1,0x9c,0x8d,0x7c,
+ 0x73,0x7c,0xef,0xd3,0x45,0xf9,0xd1,0xb2,0x73,0xd8,0xad,0x76,0x68,0xed,0xf2,0x57,
+ 0x47,0x3d,0xbf,0x5d,0x76,0xe,0x15,0xa5,0x3f,0x99,0xbc,0xc8,0x15,0x12,0xc2,0xe9,
+ 0x12,0x80,0x33,0xd2,0x84,0xd0,0x3f,0xdd,0xc7,0xd8,0x3,0x80,0x9a,0x47,0x59,0xc2,
+ 0x39,0x79,0x77,0xd3,0xc2,0xb8,0x9f,0x8e,0x1f,0x6a,0x2d,0x14,0x7b,0xa6,0x92,0xd0,
+ 0x84,0xe7,0xff,0x5d,0xf2,0xc7,0xef,0x64,0xc7,0x50,0x59,0x73,0x1e,0x54,0xb,0xe0,
+ 0x1c,0x94,0x95,0x97,0x87,0x3d,0x3e,0xff,0x39,0xa,0x13,0x80,0x1a,0x45,0x59,0xc2,
+ 0x39,0x59,0xbd,0x6b,0x63,0x6f,0xaf,0xd7,0xab,0xda,0xf5,0x3b,0xd1,0xb0,0x5e,0x83,
+ 0xdc,0x19,0xf7,0xbc,0xbc,0x45,0x76,0xe,0x95,0x2d,0x9b,0x38,0x3b,0x35,0xb4,0x56,
+ 0x68,0xa5,0xec,0x1c,0x0,0x2,0x9b,0x26,0x84,0xfe,0xe5,0x81,0x3d,0x57,0xcb,0xce,
+ 0x1,0x20,0xb8,0x50,0x96,0x70,0x56,0x13,0xe6,0x3f,0xd7,0x31,0xaf,0xe8,0xb4,0x72,
+ 0xd7,0xef,0xdc,0x6e,0xf7,0x93,0x3,0xae,0xed,0x99,0x2e,0x3b,0x7,0x84,0xf8,0x43,
+ 0xd3,0x56,0xfb,0x85,0xc6,0xe9,0x12,0x80,0x33,0xab,0xaa,0xaa,0xa,0xed,0xa1,0xf,
+ 0x1b,0x23,0x3b,0x7,0x80,0xe0,0x41,0x59,0xc2,0x59,0xfd,0xed,0xe7,0xef,0xda,0xb,
+ 0x53,0xb1,0xeb,0x77,0x42,0x78,0xae,0x88,0x6f,0xbd,0x6f,0xd4,0x2d,0x43,0xf2,0x64,
+ 0x7,0x81,0x10,0xc9,0xf,0x4d,0x5f,0xd7,0x20,0x22,0x8a,0xbf,0x16,0x0,0xce,0x46,
+ 0xcf,0x39,0x9d,0x1b,0x3b,0x69,0x9,0x63,0xf,0x0,0x6a,0x6,0x65,0x9,0x67,0xf4,
+ 0x70,0xf2,0x33,0x5d,0x4a,0xcb,0xcb,0xc2,0x65,0xe7,0xb0,0x5b,0xdd,0x3a,0x75,0x8b,
+ 0x93,0xc7,0x4d,0x5f,0x27,0x3b,0x7,0xfe,0x6d,0xcc,0x2d,0x43,0x93,0x35,0x8d,0x7,
+ 0xd5,0x2,0x38,0x33,0x4d,0x8,0xfd,0x93,0xbd,0x3b,0xf9,0xec,0x12,0x80,0x1a,0x41,
+ 0x59,0xc2,0xef,0x5a,0xf9,0xf9,0x46,0xd7,0xb7,0xbf,0xec,0x6d,0x27,0x14,0x1b,0x75,
+ 0xd0,0x34,0x2d,0xf1,0x9a,0xcb,0xfe,0xcc,0x3,0x68,0x3,0x4c,0xff,0xeb,0x7a,0x7a,
+ 0x1b,0x45,0x35,0xcc,0x15,0x8c,0x3d,0x0,0x38,0x8b,0x8a,0x8a,0x8a,0x30,0xcf,0xa2,
+ 0x97,0xf9,0xfc,0x12,0x80,0xb,0x46,0x59,0xc2,0xef,0xda,0xf0,0xb7,0xf,0xbb,0x97,
+ 0x55,0x94,0xbf,0x2e,0x3b,0x87,0xdd,0x62,0xa3,0x62,0x72,0x92,0x46,0x3c,0xf3,0x85,
+ 0xec,0x1c,0xf8,0x5f,0x6b,0x3d,0x8b,0x92,0x79,0x50,0x2d,0x80,0x73,0xa0,0x6f,0xff,
+ 0x61,0x57,0x47,0xd9,0x21,0x0,0x38,0x1f,0x65,0x9,0x96,0x96,0x7f,0xb6,0x26,0x74,
+ 0xff,0xb1,0x83,0x97,0xcb,0xce,0x61,0x37,0xb7,0xdb,0xfd,0x64,0xc2,0x75,0xbd,0xd2,
+ 0x64,0xe7,0xc0,0xef,0xbb,0xa8,0x11,0x53,0xe2,0x0,0xce,0xae,0xbc,0xa2,0x3c,0xec,
+ 0x91,0x79,0x93,0x3a,0xcb,0xce,0x1,0xc0,0xd9,0x28,0x4b,0xb0,0xb4,0xfe,0xeb,0x2d,
+ 0xdd,0x2b,0xab,0x2a,0xa7,0xc9,0xce,0x61,0x2b,0x4d,0xf3,0xb4,0xbb,0xb8,0xcd,0x77,
+ 0xc3,0x6e,0x1a,0x50,0x2c,0x3b,0xa,0x7e,0x5f,0xda,0xc4,0x39,0xa9,0xe1,0x75,0xc2,
+ 0x4b,0x65,0xe7,0x0,0x10,0xf0,0xf4,0xaf,0xe,0x7c,0xcd,0x55,0x3c,0x0,0x17,0x84,
+ 0xb2,0x84,0xff,0x91,0xf6,0xd9,0xea,0xd0,0x3,0x59,0x87,0x5a,0xcb,0xce,0x61,0x33,
+ 0xcf,0xc5,0xb1,0xcd,0xe,0xbf,0x73,0xff,0xd4,0x4d,0xb2,0x83,0xe0,0xec,0x86,0x77,
+ 0x1e,0xb0,0x90,0xb1,0x7,0x0,0x67,0xe3,0xf5,0x7a,0xdd,0xb7,0xbf,0x34,0xf8,0x3e,
+ 0xd9,0x39,0x0,0x38,0x17,0x65,0x9,0xff,0x63,0xfd,0x9e,0x2d,0x3d,0x7c,0x8a,0x3d,
+ 0x80,0x36,0xac,0x76,0x58,0x79,0xda,0xc4,0xe4,0x54,0xd9,0x39,0x70,0x6e,0x46,0xdf,
+ 0x3c,0x38,0xaf,0x61,0xfd,0xe8,0x3c,0xc1,0x75,0x3c,0x0,0x67,0xa6,0x9f,0x2a,0x38,
+ 0x1d,0x9d,0xf8,0xbe,0xde,0x41,0x76,0x10,0x0,0xce,0x44,0x59,0xc2,0x7f,0x48,0xdf,
+ 0xbe,0xd6,0xfd,0x53,0xd6,0xa1,0x56,0xb2,0x73,0xd8,0x49,0xd3,0xb4,0xc4,0x4e,0x6d,
+ 0xae,0xf9,0x54,0x76,0xe,0x9c,0x9f,0xf5,0xcf,0x2c,0x9e,0xad,0xb9,0x34,0xc6,0x1e,
+ 0x0,0x9c,0x91,0x26,0x84,0xbe,0xfd,0x87,0x2f,0x19,0x7b,0x0,0x50,0x2d,0x94,0x25,
+ 0xfc,0x87,0xd5,0x5f,0x6d,0xea,0xed,0xf3,0xf9,0x94,0x3a,0x55,0x6a,0xd2,0x30,0x2e,
+ 0x7b,0xf2,0xd0,0xc4,0xdd,0xb2,0x73,0xe0,0xfc,0xc5,0x35,0x88,0xcd,0x16,0x9c,0x2e,
+ 0x1,0x38,0x8b,0xca,0xca,0xca,0xd0,0x9,0x29,0xcf,0x53,0x98,0x0,0x9c,0x37,0xca,
+ 0x12,0xfe,0x65,0xe6,0xba,0xe4,0xf8,0x83,0xc7,0x7f,0x51,0xea,0x54,0x29,0xac,0x76,
+ 0xd8,0xe3,0xfd,0x3a,0xdc,0x91,0x2e,0x3b,0x7,0xaa,0x67,0x55,0xe2,0x82,0x14,0xb7,
+ 0xdb,0xed,0x95,0x9d,0x3,0x40,0xc0,0xd3,0xbf,0x3c,0xb0,0x87,0xab,0x78,0x0,0xce,
+ 0x1b,0x65,0x9,0xff,0xb2,0xf1,0xeb,0x8f,0xbb,0x1b,0x86,0x91,0x24,0x3b,0x87,0x6d,
+ 0x34,0xe1,0xe9,0x78,0xc5,0x35,0xdb,0x87,0x75,0xee,0xcf,0xfa,0x9d,0x83,0xb5,0x6e,
+ 0x7a,0xe9,0x1,0xa1,0x71,0xba,0x4,0xe0,0xcc,0x2a,0x2b,0x2b,0x43,0xef,0x99,0xf5,
+ 0x78,0xf,0xd9,0x39,0x0,0x38,0xb,0x65,0x9,0x42,0x8,0x21,0x26,0xa5,0xbe,0xd2,
+ 0x3e,0xb7,0xe0,0x54,0x8c,0xec,0x1c,0x76,0x8a,0xaa,0x5b,0x3f,0x5f,0x1f,0x96,0xb8,
+ 0x4b,0x76,0xe,0x5c,0x98,0xf9,0xe3,0xdf,0x5c,0xd5,0xa0,0x5e,0x54,0x9e,0xec,0x1c,
+ 0x0,0x2,0x9e,0xfe,0xfd,0xe1,0x1f,0xda,0xca,0xe,0x1,0xc0,0x59,0x28,0x4b,0x10,
+ 0x42,0x8,0xf1,0xf1,0xf7,0x3b,0x3a,0xb,0x21,0x74,0xd9,0x39,0x6c,0xe4,0xe9,0xf6,
+ 0x97,0x2e,0xcc,0x84,0x7,0x89,0x7b,0x6e,0x19,0x96,0xac,0xb9,0x98,0x12,0x7,0x70,
+ 0x66,0xa6,0x61,0xb8,0xba,0xbd,0x38,0x88,0x29,0x71,0x0,0xe7,0x8c,0xb2,0x4,0x31,
+ 0xf4,0xf5,0xfb,0x13,0xaa,0xaa,0xaa,0x42,0x65,0xe7,0xb0,0x93,0xe6,0xd2,0x8a,0x1f,
+ 0xed,0x39,0xf6,0x90,0xec,0x1c,0xa8,0x19,0xfd,0xae,0xed,0xe1,0x6d,0xd2,0xa0,0x31,
+ 0x63,0xf,0x0,0xce,0x46,0xcf,0x2b,0xcc,0x8f,0x7e,0x21,0xed,0xd5,0x2b,0x65,0x7,
+ 0x1,0xe0,0xc,0x94,0x25,0xc5,0xcd,0xdd,0xb2,0x24,0xe6,0xe7,0xe3,0x87,0x5b,0xa,
+ 0x95,0x4e,0x95,0x34,0xe1,0x33,0x4d,0xb1,0x5f,0x76,0xc,0xd4,0xac,0x95,0x89,0x29,
+ 0x29,0x2e,0x97,0x8b,0x29,0x71,0x0,0x67,0xa4,0x9,0xa1,0x6f,0xfb,0x7e,0x67,0x67,
+ 0xd9,0x39,0x0,0x38,0x3,0x65,0x49,0x71,0x1f,0x7c,0xf3,0xf1,0xad,0xa6,0x61,0xaa,
+ 0x33,0xea,0x20,0x84,0x19,0x11,0x56,0xf7,0xc7,0xd8,0x7a,0x31,0x4c,0x85,0x7,0xa1,
+ 0x66,0x31,0x4d,0x33,0x5,0xa7,0x4b,0x0,0xce,0xa2,0xb4,0xac,0x34,0xfc,0x95,0x8c,
+ 0x19,0x97,0xcb,0xce,0x1,0x20,0xf0,0x51,0x96,0x14,0xb6,0xec,0xb3,0x55,0x61,0x47,
+ 0x72,0x32,0x9b,0xcb,0xce,0x61,0xa7,0xb0,0xb0,0xb0,0x82,0x3f,0x35,0xbf,0x62,0x7a,
+ 0x41,0xfe,0xe9,0x2,0xd9,0x59,0x50,0xf3,0xd2,0x9f,0x48,0x5e,0xc4,0x94,0x38,0x80,
+ 0x73,0xa0,0x6f,0xf9,0xf6,0x93,0xae,0xb2,0x43,0x0,0x8,0x7c,0x94,0x25,0x85,0xcd,
+ 0xdd,0xba,0x64,0xb4,0x4a,0x53,0xe1,0xa6,0x10,0x66,0xbb,0x8b,0xdb,0x2c,0x4f,0x1c,
+ 0xf0,0xf0,0x92,0x4f,0xa7,0xaf,0xf3,0xc9,0xce,0x3,0xff,0xb8,0xac,0x49,0x4b,0xa6,
+ 0xc4,0x1,0x9c,0x55,0x61,0x49,0x71,0xe4,0x13,0xb,0x5e,0xbc,0x4e,0x76,0xe,0x0,
+ 0x81,0x8d,0xb2,0xa4,0xa8,0xf1,0xc9,0x9e,0x2e,0x5,0x45,0x5,0x51,0xb2,0x73,0xd8,
+ 0x29,0x22,0xbc,0xee,0x89,0x1b,0xdb,0x5c,0xbb,0xa0,0xd7,0xe4,0xe1,0xa5,0xd7,0x4c,
+ 0xe8,0x26,0x3b,0xe,0xfc,0x24,0xe5,0xe1,0xb7,0x56,0x35,0x88,0x60,0x4a,0x1c,0xc0,
+ 0x99,0x69,0x42,0xe8,0x3b,0x7e,0xd8,0xd5,0x51,0x76,0xe,0x0,0x81,0x8d,0xb2,0xa4,
+ 0xa8,0xdd,0x3f,0x7d,0xd3,0x5e,0xa8,0x35,0xea,0x60,0xf8,0xc,0x9f,0x7e,0xe5,0x25,
+ 0x6d,0xbf,0x96,0x1d,0x5,0xfe,0x77,0xf7,0x2d,0x43,0xe7,0x69,0x1a,0x53,0xe2,0x0,
+ 0xce,0xcc,0xeb,0xf5,0xba,0xef,0x7c,0xe5,0xae,0xd1,0xb2,0x73,0x0,0x8,0x5c,0x94,
+ 0x25,0x5,0xf5,0x9b,0x32,0x7a,0x84,0xcf,0xe7,0x73,0xcb,0xce,0x61,0x23,0x33,0x2a,
+ 0x22,0xea,0xc7,0x6b,0x2f,0xfb,0xcb,0x7,0x43,0xa7,0xdf,0x5f,0x2a,0x3b,0xc,0xfc,
+ 0x6f,0xc0,0x75,0x3d,0x2b,0x1b,0x45,0xc5,0xe4,0xa,0xc6,0x1e,0x0,0x9c,0x99,0x7e,
+ 0x3c,0xf7,0x44,0xdc,0x6b,0xab,0xdf,0x69,0x25,0x3b,0x8,0x80,0xc0,0x44,0x59,0x52,
+ 0x4c,0xd2,0x8a,0xb7,0xda,0x64,0xe6,0x66,0xc5,0xb,0x85,0x4e,0x95,0x6a,0x85,0xd6,
+ 0x2a,0x6c,0xd7,0xfc,0x8a,0x97,0x7a,0xb6,0xbf,0xed,0x67,0xd9,0x59,0x60,0x9f,0xb5,
+ 0x9e,0xf7,0x93,0x99,0x12,0x7,0x70,0x36,0x9a,0x10,0xfa,0xa6,0xaf,0xb7,0x72,0x37,
+ 0x1b,0x80,0x25,0xca,0x92,0x62,0x3e,0xfe,0x7e,0x7b,0x67,0x61,0xaa,0x53,0x94,0x84,
+ 0x26,0x8c,0x36,0xf1,0x7f,0xc8,0x78,0xac,0xcf,0x3,0x2b,0x1f,0x9b,0xff,0x2c,0xa3,
+ 0xe,0x8a,0x89,0x67,0x4a,0x1c,0xc0,0x39,0x28,0x28,0x2e,0x8a,0x7c,0x7e,0xd9,0xb4,
+ 0x2b,0x65,0xe7,0x0,0x10,0x78,0x28,0x4b,0xa,0x79,0x78,0xde,0xa4,0x2e,0x5,0xc5,
+ 0x85,0x51,0xb2,0x73,0xd8,0x29,0xa2,0x4e,0xdd,0x53,0xd7,0xfe,0xe1,0x2f,0xef,0xf6,
+ 0x9e,0x3c,0xbc,0x5c,0x76,0x16,0xd8,0x6f,0xf9,0x13,0xc9,0x8b,0x6a,0x87,0xd6,0xe6,
+ 0xaf,0x3d,0x80,0x33,0xd2,0x84,0xd0,0x3f,0xfe,0x6e,0x47,0x17,0xd9,0x39,0x0,0x4,
+ 0x1e,0xca,0x92,0x42,0xbe,0x3a,0xf0,0xb5,0x52,0xa3,0xe,0xa6,0x26,0xcc,0x3f,0x5f,
+ 0xda,0x6e,0xf9,0xed,0x57,0xdd,0xfc,0xbd,0xec,0x2c,0x90,0xe7,0xf2,0x66,0xad,0xf6,
+ 0x33,0x25,0xe,0xe0,0x6c,0xca,0x2b,0xca,0xc3,0x86,0xbe,0xf1,0x40,0x82,0xec,0x1c,
+ 0x0,0x2,0xb,0x65,0x49,0x11,0x43,0xdf,0x78,0x20,0xc1,0xe7,0xf5,0xaa,0x34,0xea,
+ 0x20,0xea,0xd7,0x8d,0x3c,0x72,0x6d,0xeb,0xbf,0xbc,0x7f,0xa7,0x3e,0xa2,0x4c,0x76,
+ 0x16,0xc8,0x33,0xfb,0xc1,0xd7,0x36,0x30,0x25,0xe,0xe0,0x1c,0xe8,0x7,0x8f,0x1d,
+ 0x6a,0x35,0x67,0xcb,0xe2,0x58,0xd9,0x41,0x0,0x4,0xe,0xca,0x92,0x22,0x7e,0xce,
+ 0xfa,0xa5,0xa5,0x50,0xe8,0x54,0xc9,0x15,0xe2,0xaa,0x8c,0xaa,0x13,0xf9,0xd4,0x9f,
+ 0x2f,0xf9,0x13,0x53,0xe1,0x10,0x63,0x6e,0x19,0x9a,0xcc,0x94,0x38,0x80,0xb3,0x32,
+ 0x85,0x9e,0xbe,0x73,0x4d,0x7f,0xd9,0x31,0x0,0x4,0xe,0xca,0x92,0x2,0x5e,0x5f,
+ 0xfd,0x6e,0x4b,0xc3,0x30,0xd4,0xf9,0x6b,0xad,0x9,0xa3,0x59,0x74,0xdc,0x97,0xed,
+ 0x5a,0xb4,0xd9,0x31,0xf8,0xd5,0xb1,0x15,0xb2,0xe3,0x40,0xbe,0xfe,0xd7,0xf5,0xf4,
+ 0x32,0x25,0xe,0xe0,0x5c,0x9c,0x2e,0x2c,0x88,0x7a,0x25,0x63,0xc6,0xe5,0xb2,0x73,
+ 0x0,0x8,0xc,0xea,0xbc,0x80,0x56,0xd8,0xcf,0xd9,0x87,0x5b,0x6a,0xa6,0x26,0x3b,
+ 0x86,0x2d,0xc,0xd3,0x10,0x31,0x91,0xd,0x8f,0x5e,0x7f,0xf9,0x35,0xd3,0xda,0x5d,
+ 0xd4,0xe6,0x98,0xec,0x3c,0x8,0x1c,0x6b,0x3d,0xef,0x27,0x87,0xb8,0x43,0xbc,0xb2,
+ 0x73,0x0,0x8,0x6c,0x9a,0x10,0xfa,0xe6,0xaf,0x3f,0x66,0x4a,0x1c,0x80,0x10,0x42,
+ 0x8,0xcd,0x34,0x4d,0xd9,0x19,0x60,0x83,0xb1,0xb3,0x26,0x74,0x2f,0x2c,0x2b,0x8e,
+ 0xf4,0xf9,0x7c,0xae,0xa,0x6f,0x65,0x98,0x69,0x1a,0xc2,0x34,0x85,0x4b,0xd3,0x84,
+ 0xa1,0x69,0x2e,0xe1,0x76,0xb9,0xbc,0x86,0x10,0x2e,0x4d,0x8,0xc3,0x34,0x4d,0x97,
+ 0x10,0x42,0x68,0x9a,0xf6,0xaf,0x67,0xd4,0xb8,0x34,0xcd,0xf0,0x19,0x86,0x5b,0x8,
+ 0x21,0xc,0xd3,0x70,0xfd,0xf3,0xa4,0xca,0xa5,0xb9,0xc,0x97,0xcb,0x65,0xd4,0xa,
+ 0x71,0x57,0x1a,0xff,0xf8,0xf3,0xc,0xd3,0x70,0xfd,0xf3,0xa1,0xb7,0xa6,0x30,0x85,
+ 0x61,0x9a,0xae,0x92,0xf2,0x12,0xb7,0x10,0xda,0xcb,0xa6,0x69,0x9a,0x9a,0xa6,0xfd,
+ 0xf3,0xef,0x3b,0xc3,0x1d,0x12,0xe2,0xfb,0xc7,0x1f,0x13,0xa6,0x29,0xdc,0x86,0x69,
+ 0x8,0x97,0xa6,0x99,0x42,0x8,0xd3,0x14,0xc2,0x74,0x69,0x9a,0x30,0x4c,0xd3,0x25,
+ 0x4c,0x53,0x8,0xa1,0xb9,0x7c,0xa6,0x4f,0x13,0x42,0x68,0x9a,0xd0,0x4c,0x21,0x84,
+ 0x11,0xe2,0x72,0xfd,0xf6,0xef,0x68,0xc2,0x57,0xcb,0x55,0xcb,0x17,0xdf,0xb0,0xc9,
+ 0xe1,0x91,0x5d,0x6,0x2d,0x68,0x1e,0x7b,0xd1,0xe2,0x1,0x53,0x46,0x97,0x9c,0xe9,
+ 0x7f,0x93,0x2f,0x5f,0xdd,0x54,0xe3,0xff,0x3b,0x23,0xb0,0x8d,0x9d,0x35,0xa1,0xfb,
+ 0xf7,0x47,0x7e,0x68,0xeb,0xf3,0xfa,0xa6,0xc8,0xce,0x2,0x20,0xa0,0x79,0xae,0x6c,
+ 0xf5,0xa7,0x6f,0xde,0xbb,0x6f,0xda,0x6,0xd9,0x41,0x0,0xc8,0x45,0x59,0x82,0x2d,
+ 0xa6,0xae,0x78,0x3b,0xa4,0xcd,0x45,0x7f,0xb8,0x62,0xd7,0x4f,0x7b,0x32,0xff,0x74,
+ 0xf1,0x15,0xcd,0x4e,0xe4,0x9f,0xcc,0x6e,0x14,0x19,0xd3,0xe8,0xd8,0xa9,0xac,0x9c,
+ 0x36,0xcd,0xff,0x10,0xbb,0xe7,0xe7,0x6f,0xb3,0xdb,0x5e,0xdc,0x26,0x7e,0xcf,0xcf,
+ 0xdf,0x66,0xfe,0xf1,0xa2,0x3f,0x34,0x2d,0x2e,0x2b,0xc9,0x69,0x1c,0xdd,0x38,0xfa,
+ 0xc8,0x89,0xa3,0x27,0x2f,0x69,0xd2,0x22,0x6e,0xd7,0x8f,0xbb,0xb3,0xda,0xb7,0xba,
+ 0xb2,0xd9,0x2f,0x27,0x7e,0x3d,0x1e,0x1b,0x15,0xdb,0xf8,0x64,0x7e,0x6e,0x6e,0xf3,
+ 0xc6,0x17,0x35,0x3c,0x7c,0xe2,0x70,0x4e,0xeb,0xa6,0xad,0xe3,0xbe,0xfd,0x65,0x6f,
+ 0x56,0xeb,0x8b,0x2e,0x6d,0x1a,0xee,0xae,0x7d,0xf2,0x4f,0x2d,0xda,0xf8,0x7a,0xbd,
+ 0x3c,0xfc,0xf4,0xd9,0x32,0x51,0x96,0xd4,0xf4,0xfc,0xe2,0xa9,0x57,0xfe,0x70,0xec,
+ 0x60,0x9b,0x4a,0x6f,0x65,0xa8,0xec,0x2c,0xfe,0xe2,0x76,0xbb,0xbd,0x55,0x55,0x55,
+ 0x6e,0xc3,0x30,0x5c,0xa6,0x30,0xb9,0x41,0xa0,0xb0,0x5a,0xee,0x5a,0x95,0x95,0xde,
+ 0xca,0x50,0x9f,0xe1,0x73,0xff,0xf3,0xd,0x2d,0x21,0x7e,0x7b,0x3,0x4c,0x8,0x4d,
+ 0x98,0xc2,0x14,0xa6,0x69,0xba,0xc,0xc3,0x70,0xf9,0xc,0x9f,0xcb,0x67,0xf8,0xdc,
+ 0x55,0x5e,0xaf,0xdb,0x30,0xd,0x97,0xf9,0xef,0xff,0xbc,0x32,0x9f,0x77,0xfd,0xbf,
+ 0x5c,0x21,0xae,0xc4,0x7,0xbb,0xdf,0x3d,0x73,0xd8,0x8d,0xfd,0x8a,0x65,0x67,0x1,
+ 0x20,0xf,0x65,0x9,0xb6,0xb8,0x66,0x82,0x3d,0x37,0x1a,0xf4,0x61,0x1e,0xcd,0xb3,
+ 0x48,0x3f,0xa7,0xbf,0xa9,0x29,0x4b,0x0,0x70,0x66,0xf3,0xb7,0x2c,0x89,0x5e,0xb5,
+ 0x6b,0x63,0xef,0xec,0xbc,0x9c,0x38,0xa1,0x60,0x69,0x8a,0x89,0x6a,0x38,0x76,0xfd,
+ 0x33,0x8b,0x67,0xcb,0xce,0x1,0x40,0x1e,0xde,0x71,0x44,0x50,0x39,0xd7,0xa2,0x4,
+ 0x0,0x38,0xbb,0x51,0x5d,0x7,0xe7,0xad,0x7e,0x7a,0xe1,0xbc,0x26,0x31,0x71,0x59,
+ 0x42,0xc1,0x81,0x94,0x93,0xf9,0xa7,0x62,0x5e,0x5d,0x33,0xab,0x95,0xec,0x1c,0x0,
+ 0xe4,0xa1,0x2c,0x1,0x0,0x80,0x33,0x5a,0xf5,0x54,0x4a,0x4a,0x78,0x9d,0xf0,0x52,
+ 0xd9,0x39,0xec,0xa6,0x9,0xa1,0x6f,0xde,0xb3,0x8d,0xb1,0x7,0x40,0x61,0x94,0x25,
+ 0x0,0x0,0x70,0x56,0xdd,0xae,0xba,0x69,0x93,0x29,0x4c,0xe5,0x4e,0x97,0xa,0x8a,
+ 0xb,0x23,0x67,0x6c,0x9c,0xdb,0x5c,0x76,0xe,0x0,0x72,0x50,0x96,0x0,0x0,0xc0,
+ 0x59,0x3d,0xd9,0xe7,0xa1,0xfd,0x4d,0x1a,0xc6,0x65,0xcb,0xce,0x61,0x37,0x4d,0x8,
+ 0x7d,0xfd,0x57,0x1f,0x76,0x97,0x9d,0x3,0x80,0x1c,0x94,0x25,0x0,0x0,0x70,0x4e,
+ 0xfa,0x74,0xe8,0x9e,0xa1,0xe2,0xe9,0x52,0x5e,0x61,0x7e,0xf4,0xb3,0x4b,0xa6,0x5e,
+ 0x25,0x3b,0x7,0x0,0xfb,0x51,0x96,0x0,0x0,0xc0,0x39,0x19,0x79,0xd3,0xc0,0xfc,
+ 0x26,0x31,0x6a,0x9e,0x2e,0x6d,0xfb,0x7e,0x47,0x67,0xd9,0x39,0x0,0xd8,0x8f,0xb2,
+ 0x4,0x0,0x0,0xce,0xd9,0x80,0x6b,0x7b,0xa6,0x9,0x4d,0xbd,0x65,0xbc,0x8a,0xca,
+ 0x8a,0xb0,0x21,0xaf,0xdf,0x9f,0x20,0x3b,0x7,0x0,0x7b,0x51,0x96,0x0,0x0,0xc0,
+ 0x39,0x1b,0x76,0x63,0xff,0xe2,0x2b,0x2e,0x6e,0xbd,0x4f,0xa8,0x37,0x25,0xae,0xff,
+ 0x9c,0xf5,0x4b,0xab,0x45,0x9f,0xa4,0x47,0xc8,0xe,0x2,0xc0,0x3e,0x94,0x25,0x0,
+ 0x0,0x70,0x5e,0x52,0xc6,0xbd,0xb5,0x2a,0xa2,0x6e,0x44,0xb1,0xec,0x1c,0xb6,0x33,
+ 0x85,0x9e,0xb6,0x73,0xd,0xa7,0x4b,0x80,0x42,0x28,0x4b,0x0,0x0,0xe0,0xbc,0xf5,
+ 0xbe,0xa6,0xfb,0x2a,0x15,0xc7,0x1e,0xb2,0x4f,0x9d,0x88,0x7b,0x67,0x53,0x4a,0x53,
+ 0xd9,0x39,0x0,0xd8,0x83,0xb2,0x4,0x0,0x0,0xce,0xdb,0x43,0xdd,0x47,0x1f,0x89,
+ 0x6b,0xd8,0x58,0xc1,0xb1,0x7,0x4d,0x5f,0xf9,0xe5,0xc6,0xde,0xb2,0x73,0x0,0xb0,
+ 0x7,0x65,0x9,0x0,0x0,0x54,0x4b,0xef,0xab,0x6f,0x57,0xf2,0x74,0x29,0xbf,0xa8,
+ 0x20,0xea,0x89,0x85,0x2f,0x5e,0x27,0x3b,0x7,0x0,0xff,0xa3,0x2c,0x1,0x0,0x80,
+ 0x6a,0x19,0x7d,0xf3,0xe0,0xbc,0x66,0x8d,0x9a,0x66,0xc9,0xce,0x61,0x37,0x4d,0x8,
+ 0x7d,0xc7,0xbe,0x5d,0x1d,0x65,0xe7,0x0,0xe0,0x7f,0x94,0x25,0x0,0x0,0x50,0x6d,
+ 0x83,0xae,0xbf,0x73,0xa9,0x2b,0x24,0x24,0x51,0x76,0xe,0xbb,0x79,0xbd,0x5e,0x77,
+ 0xdf,0xa9,0xa3,0x47,0xc8,0xce,0x1,0xc0,0xbf,0x34,0xd3,0x34,0x65,0x67,0x0,0x0,
+ 0x0,0xe,0xf6,0xe0,0x9c,0xa7,0x6e,0xfd,0xea,0xc7,0x6f,0xda,0x6b,0x42,0xe8,0xb2,
+ 0xb3,0xd8,0xc9,0x14,0xa6,0xe7,0x81,0x3b,0x46,0xcf,0x1a,0x79,0xd3,0xc0,0x7c,0xd9,
+ 0x59,0x0,0xf8,0x7,0x27,0x4b,0x0,0x0,0xe0,0x82,0xbc,0x7d,0xcf,0x2b,0x1f,0x44,
+ 0x47,0x46,0xe5,0xc9,0xce,0x61,0x37,0x4d,0x68,0xfa,0x8a,0xcf,0xd7,0xf5,0x97,0x9d,
+ 0x3,0x80,0xff,0x50,0x96,0x0,0x0,0xc0,0x5,0x53,0x75,0x4a,0xfc,0x44,0xde,0xc9,
+ 0xd8,0x29,0x2b,0x67,0x5c,0x2e,0x3b,0x7,0x0,0xff,0xa0,0x2c,0x1,0x0,0x80,0xb,
+ 0x76,0xdf,0x6d,0x23,0xb2,0xd5,0x9c,0x12,0x17,0xfa,0xe6,0x3d,0x1f,0xdf,0x2a,0x3b,
+ 0x7,0x0,0xff,0xa0,0x2c,0x1,0x0,0x80,0x1a,0xd1,0xf7,0x9a,0x3b,0x32,0x4c,0x21,
+ 0x94,0x3b,0x5d,0x2a,0x29,0x2b,0x8d,0x18,0x39,0x63,0x7c,0x6f,0xd9,0x39,0x0,0xd4,
+ 0x3c,0xca,0x12,0x0,0x0,0xa8,0x11,0x23,0xbb,0xc,0xcc,0xbf,0xb4,0x59,0x8b,0x43,
+ 0x42,0xbd,0xc2,0xa4,0xff,0x70,0xe4,0xa7,0x36,0xb,0x3e,0x5e,0x1e,0x25,0x3b,0x8,
+ 0x80,0x9a,0x45,0x59,0x2,0x0,0x0,0x35,0x66,0xc9,0xa3,0xef,0x2e,0xd,0xaf,0x13,
+ 0x5e,0x2a,0x3b,0x87,0xed,0x4c,0x53,0x5f,0xba,0x7d,0xe5,0x20,0xd9,0x31,0x0,0xd4,
+ 0x2c,0xca,0x12,0x0,0x0,0xa8,0x51,0xdd,0xff,0xd2,0x75,0x83,0x8a,0x63,0xf,0xa7,
+ 0xa,0x4e,0x45,0x4f,0x5d,0x39,0xb3,0xb5,0xec,0x1c,0x0,0x6a,0xe,0x65,0x9,0x0,
+ 0x0,0xd4,0xa8,0x89,0xbd,0x1f,0x38,0xd0,0x38,0x3a,0x36,0x47,0x76,0xe,0xbb,0x69,
+ 0x42,0xd3,0x37,0x7f,0xfd,0x71,0x37,0xd9,0x39,0x0,0xd4,0x1c,0xca,0x12,0x0,0x0,
+ 0xa8,0x71,0xbd,0xaf,0xee,0xa6,0xe4,0x94,0x78,0x71,0x69,0x49,0xc4,0xe3,0x29,0xcf,
+ 0xdd,0x20,0x3b,0x7,0x80,0x9a,0x41,0x59,0x2,0x0,0x0,0x35,0xee,0xee,0xae,0x43,
+ 0x73,0xe3,0xa2,0x63,0x95,0x9b,0x12,0x17,0x42,0xe8,0x5f,0xec,0xff,0x5b,0x7,0xd9,
+ 0x21,0x0,0xd4,0xc,0xca,0x12,0x0,0x0,0xf0,0x8b,0xfe,0xd7,0xf5,0x4c,0x17,0x9a,
+ 0x72,0xcb,0x78,0xc2,0xeb,0xf5,0xba,0x7,0xbc,0x7a,0xcf,0x30,0xd9,0x39,0x0,0x5c,
+ 0x38,0xca,0x12,0x0,0x0,0xf0,0x8b,0x11,0x9d,0x13,0xa,0x2f,0xbf,0xe8,0xb2,0xfd,
+ 0x42,0xc1,0x29,0xf1,0x23,0x27,0x8e,0x36,0x9f,0xfb,0x51,0x6a,0x8c,0xec,0x20,0x0,
+ 0x2e,0xc,0x65,0x9,0x0,0x0,0xf8,0xcd,0x82,0xf1,0x33,0x32,0x22,0xc2,0xeb,0x16,
+ 0xcb,0xce,0x61,0x3b,0x53,0xe8,0x2b,0xbf,0xd8,0xd0,0x5b,0x76,0xc,0x0,0x17,0x86,
+ 0xb2,0x4,0x0,0x0,0xfc,0xaa,0xe7,0x5f,0x6f,0x5b,0xa3,0xe2,0xd8,0x43,0xce,0xe9,
+ 0xdc,0xd8,0x77,0x3f,0x58,0x10,0x27,0x3b,0x7,0x80,0xea,0xa3,0x2c,0x1,0x0,0x0,
+ 0xbf,0x7a,0xa4,0xe7,0xbd,0x87,0xd5,0x9c,0x12,0x17,0x7a,0xc6,0xe7,0x1b,0xfa,0xca,
+ 0xce,0x1,0xa0,0xfa,0x28,0x4b,0x0,0x0,0xc0,0xef,0xfa,0x76,0xe8,0x9e,0xa1,0xe2,
+ 0xe9,0x52,0x7e,0x51,0x41,0xd4,0x23,0xf3,0x26,0x75,0x96,0x9d,0x3,0x40,0xf5,0x50,
+ 0x96,0x0,0x0,0x80,0xdf,0x8d,0xea,0x32,0x38,0xaf,0x49,0x4c,0x63,0xe5,0xa6,0xc4,
+ 0x35,0x21,0xf4,0x2f,0x7f,0xdc,0xc3,0x94,0x38,0xe0,0x50,0x94,0x25,0x0,0x0,0x60,
+ 0x8b,0x1,0xd7,0xf6,0x4a,0x53,0x71,0x4a,0xdc,0xf0,0xf9,0x5c,0xb7,0xbf,0x34,0xe4,
+ 0x3e,0xd9,0x39,0x0,0x9c,0x3f,0xca,0x12,0x0,0x0,0xb0,0xc5,0xb0,0x1b,0xfb,0x17,
+ 0xb7,0xb9,0xf8,0xf,0xfb,0x84,0x82,0x53,0xe2,0xa7,0xa,0x4e,0x45,0xbf,0xb8,0x7c,
+ 0x7a,0x3b,0xd9,0x41,0x0,0x9c,0x1f,0xca,0x12,0x0,0x0,0xb0,0xcd,0xfc,0x71,0x6f,
+ 0xae,0x8a,0x8c,0x88,0x2c,0x94,0x9d,0xc3,0x6e,0x9a,0xd0,0xf4,0x8f,0xbe,0xfd,0xb4,
+ 0xab,0xec,0x1c,0x0,0xce,0xf,0x65,0x9,0x0,0x0,0xd8,0xaa,0x67,0xfb,0x5b,0x94,
+ 0x9c,0x12,0x2f,0x2f,0x2f,0xf,0xbb,0xf7,0x9d,0x9,0xdd,0x65,0xe7,0x0,0x70,0xee,
+ 0x28,0x4b,0x0,0x0,0xc0,0x56,0xe3,0x7b,0xdc,0x73,0x44,0xc5,0x29,0x71,0x21,0x84,
+ 0xbe,0xf7,0xf0,0xf,0x6d,0x17,0x6d,0x4b,0x8f,0x90,0x1d,0x4,0xc0,0xb9,0xa1,0x2c,
+ 0x1,0x0,0x0,0xdb,0xf5,0x6a,0x7f,0xab,0x92,0xa7,0x4b,0x3e,0x9f,0x6f,0xca,0xb2,
+ 0x9d,0xab,0x7,0xc9,0xce,0x1,0xe0,0xdc,0x50,0x96,0x0,0x0,0x80,0xed,0xee,0xb9,
+ 0x75,0x78,0x4e,0x6c,0x83,0x18,0x15,0x4f,0x97,0x44,0xce,0xe9,0x93,0xb1,0x93,0x97,
+ 0xbf,0xde,0x56,0x76,0xe,0x0,0x67,0x47,0x59,0x2,0x0,0x0,0x52,0xdc,0x7e,0xd5,
+ 0xcd,0x9b,0x34,0x97,0x96,0x28,0x3b,0x87,0xed,0x4c,0xa1,0x7f,0xf4,0x1d,0x63,0xf,
+ 0x80,0x13,0x50,0x96,0x0,0x0,0x80,0x14,0xf,0xde,0x3e,0x3a,0xf3,0x92,0xb8,0xe6,
+ 0x87,0x85,0x7a,0x53,0xe2,0xa2,0xb4,0xac,0x2c,0xfc,0xe1,0xb9,0xcf,0x74,0x91,0x9d,
+ 0x3,0xc0,0x99,0x51,0x96,0x0,0x0,0x80,0x34,0x4b,0x1e,0x7b,0x6f,0x69,0x68,0x68,
+ 0x68,0xa5,0xec,0x1c,0x12,0xe8,0xbb,0xf,0x7e,0xdb,0x5e,0x76,0x8,0x0,0x67,0x46,
+ 0x59,0x2,0x0,0x0,0x52,0x5d,0x7f,0xc5,0x35,0xdb,0x85,0xa6,0xde,0xe9,0x92,0xb7,
+ 0xaa,0xca,0x3d,0x60,0xda,0xdd,0xc3,0x64,0xe7,0x0,0xf0,0xfb,0x28,0x4b,0x0,0x0,
+ 0x40,0xaa,0x57,0x86,0x7b,0xbe,0x68,0x54,0x3f,0x26,0x47,0xc1,0x75,0x3c,0xfd,0x58,
+ 0x6e,0x76,0x53,0xd9,0x21,0x0,0xfc,0x3e,0xca,0x12,0x0,0x0,0x90,0x6e,0xdd,0x33,
+ 0x8b,0x92,0x63,0xa2,0x62,0x72,0x85,0x26,0x3b,0x89,0xcd,0x54,0xfb,0xef,0xb,0x38,
+ 0x8c,0x66,0x9a,0xa6,0xec,0xc,0x0,0x0,0xc0,0xe1,0xae,0x99,0xd0,0xad,0xda,0x7f,
+ 0xee,0x9e,0xef,0xbe,0xd6,0x84,0x10,0x21,0xf5,0x23,0xeb,0x87,0xd5,0xa9,0x1b,0x7e,
+ 0x99,0x70,0x89,0x88,0x90,0x90,0x90,0xa,0x2d,0x44,0xf3,0xa,0x97,0x66,0x84,0x84,
+ 0x84,0x14,0xba,0x4c,0xad,0xa0,0x41,0x9d,0xfa,0xa7,0x6a,0x2e,0x71,0x70,0xfa,0xf2,
+ 0xd5,0x4d,0xb2,0x23,0x0,0x41,0x85,0xb2,0x4,0x0,0x0,0x6c,0x55,0xeb,0xd6,0xc6,
+ 0x56,0x7f,0x58,0xfb,0x3f,0xff,0xfa,0xe7,0xcd,0x17,0xf3,0x1f,0xff,0x32,0xfe,0xf1,
+ 0x7f,0xff,0x47,0xd5,0x7,0x27,0xfc,0x90,0x10,0x0,0x7e,0xe3,0x96,0x1d,0x0,0x0,
+ 0x0,0x40,0xfc,0xbb,0x18,0x9,0xf1,0x5b,0x39,0x12,0xe2,0x77,0xa,0x12,0x0,0xd8,
+ 0x85,0x93,0x25,0x0,0x0,0x0,0x0,0xb0,0xc0,0xc0,0x3,0x0,0x0,0x0,0x0,0x58,
+ 0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,
+ 0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,
+ 0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,
+ 0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,
+ 0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,
+ 0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,
+ 0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,
+ 0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,
+ 0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,
+ 0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,
+ 0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,
+ 0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,
+ 0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,
+ 0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,
+ 0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,
+ 0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,
+ 0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,
+ 0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,
+ 0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,
+ 0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,
+ 0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,
+ 0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,
+ 0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,
+ 0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,
+ 0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,
+ 0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,
+ 0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,
+ 0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,
+ 0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,
+ 0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,
+ 0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,
+ 0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,
+ 0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,
+ 0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,
+ 0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,
+ 0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,
+ 0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,
+ 0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,
+ 0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,
+ 0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,
+ 0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,
+ 0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,
+ 0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,
+ 0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,
+ 0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,
+ 0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,
+ 0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,
+ 0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,
+ 0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,
+ 0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,
+ 0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,
+ 0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,
+ 0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,
+ 0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,
+ 0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,
+ 0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,
+ 0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,
+ 0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,
+ 0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,
+ 0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,
+ 0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,
+ 0x2c,0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,
+ 0x1,0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,
+ 0x0,0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,
+ 0x0,0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,
+ 0x0,0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,
+ 0x80,0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xa0,0x2c,0x1,0x0,0x0,0x0,0x80,
+ 0x5,0xca,0x12,0x0,0x0,0x0,0x0,0x58,0xf8,0xff,0xbd,0x38,0x5f,0x4b,0x84,0x27,
+ 0x22,0xc8,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,0x41,0xa0,
+ 0x2c,0x1,0x0,0x0,0xdf,0xfa,0xe3,0xd4,0x5b,0x7d,0x35,0x5d,0xca,0x64,0x32,0x9a,
+ 0xbb,0xe0,0x9f,0x5a,0xdf,0xb2,0x51,0xf1,0x64,0xc2,0x74,0x1c,0x20,0xef,0x51,0x96,
+ 0x0,0x0,0x80,0x6f,0x5,0x83,0xfd,0x1f,0x85,0xfc,0xb2,0x4a,0xdc,0x96,0xad,0xae,
+ 0xde,0x6e,0xfd,0xe8,0xaa,0x5f,0xa9,0xad,0xbb,0xdd,0x74,0x24,0x20,0xef,0x51,0x96,
+ 0x0,0x0,0x80,0xaf,0x3d,0x38,0xed,0x76,0xd9,0xb6,0x6d,0x3a,0x86,0x2b,0xb2,0xc7,
+ 0xf1,0x96,0xaf,0x79,0x57,0x2d,0x1d,0xad,0xea,0xe2,0x61,0xb5,0xc0,0x27,0xa2,0x2c,
+ 0x1,0x0,0x0,0x5f,0xb3,0x6d,0x5b,0xd5,0xe5,0xc3,0x74,0xdc,0x11,0x5f,0x34,0x1d,
+ 0xc5,0x35,0x9d,0xbd,0x5d,0x3a,0xfd,0xea,0xb3,0xd4,0xde,0xd3,0x61,0x3a,0xa,0x90,
+ 0xd7,0x28,0x4b,0x0,0x0,0xc0,0xf7,0x7e,0xf7,0xb3,0xdf,0xfa,0x6e,0xba,0xf4,0xee,
+ 0xba,0xf7,0xf5,0xd6,0xbb,0x4b,0xd4,0xdd,0xd7,0x63,0x3a,0x12,0x90,0xb7,0x28,0x4b,
+ 0x0,0x0,0x0,0xb6,0xad,0x5f,0x7d,0xed,0xc,0x7d,0xfe,0x80,0x23,0x4c,0x27,0x71,
+ 0x4d,0x57,0x5f,0xb7,0x2e,0xb8,0xeb,0xb7,0x6a,0xed,0x6a,0x33,0x1d,0x5,0xc8,0x5b,
+ 0x94,0x25,0x0,0x0,0x0,0x49,0xe3,0xf6,0xdc,0x4f,0x96,0x6d,0x6b,0xe7,0xa1,0x23,
+ 0x4d,0x47,0x71,0x85,0x6d,0xdb,0x5a,0xbd,0xe9,0x3,0x5d,0x78,0xfb,0x2c,0xa6,0x4b,
+ 0xc0,0xc7,0xa0,0x2c,0x1,0x0,0x0,0x5f,0xb,0x4,0x2,0xa,0x87,0xc3,0x8a,0x84,
+ 0xa2,0x9a,0xf9,0xc3,0xdf,0xf4,0xff,0x73,0x28,0xac,0x48,0x28,0xac,0x40,0x20,0x60,
+ 0x3a,0x5e,0x4e,0x64,0x8f,0xe2,0xc5,0x93,0x9,0x35,0xbc,0xf5,0x92,0x36,0xb7,0x37,
+ 0xcb,0xb2,0x2d,0xd3,0xb1,0x80,0xbc,0x13,0x9a,0x3e,0x7d,0xfa,0x74,0xd3,0x21,0x0,
+ 0x0,0x0,0x8c,0xb2,0x25,0x5b,0xb6,0x22,0xe1,0x88,0x46,0x8f,0x18,0xa5,0xb7,0x57,
+ 0x2f,0x57,0xc6,0xca,0x28,0x63,0x67,0x64,0xd9,0xb6,0x27,0x4b,0x53,0x20,0x10,0x50,
+ 0x40,0x1,0x65,0xac,0x8c,0x96,0xaf,0x59,0xa1,0xdd,0x46,0x8e,0xd6,0xc8,0xa1,0xd5,
+ 0xa,0x5,0x43,0xa6,0xa3,0x1,0x79,0x83,0xc9,0x12,0x0,0x0,0xf0,0xbd,0x60,0x30,
+ 0xa8,0x68,0x24,0xa2,0xaa,0xb2,0xa,0x8d,0xae,0xde,0x55,0xf1,0x64,0x42,0x95,0x65,
+ 0x15,0xaa,0x2c,0xa9,0x50,0x34,0x12,0x51,0x40,0x1,0xcf,0x15,0xa6,0xec,0x74,0x29,
+ 0xa0,0x80,0xde,0x5d,0xbf,0x4a,0x6f,0xaf,0x5a,0x26,0xcb,0x62,0xba,0x4,0x6c,0x2d,
+ 0x6c,0x3a,0x0,0x0,0x0,0x40,0x3e,0x8,0x7,0xc3,0x2a,0x8e,0x16,0xe9,0x80,0x3d,
+ 0xf6,0xd3,0xc5,0xdf,0x3f,0x5f,0xeb,0x9b,0xd7,0xab,0xad,0xbb,0x43,0x8f,0xcf,0x9f,
+ 0xab,0x55,0x9b,0x3e,0x90,0x6d,0x79,0x77,0x5b,0x5e,0x4f,0x5f,0xf,0xf7,0x2d,0x1,
+ 0xe,0x2,0xb6,0x5f,0xf6,0x64,0x2,0x0,0x0,0x7c,0xa,0xdb,0xb6,0x95,0xca,0xa4,
+ 0x15,0x4f,0xc6,0xd5,0x97,0x88,0x2b,0x99,0x4e,0xa9,0x28,0x1a,0x53,0x24,0x14,0x56,
+ 0x38,0x14,0x56,0x2c,0x12,0x55,0x30,0x18,0xe4,0xa8,0x1a,0xe0,0x13,0x94,0x25,0x0,
+ 0x0,0x80,0xad,0xd8,0xb6,0x2d,0x5b,0x76,0xff,0x31,0xb5,0x2d,0xc7,0xd2,0x2,0x81,
+ 0xfe,0x63,0x78,0xc1,0x40,0xd0,0x73,0xc7,0xf1,0x0,0x7c,0x3c,0xca,0x12,0x0,0x0,
+ 0xc0,0xc7,0xc8,0x7e,0x4c,0xa2,0x20,0x1,0xfe,0xc4,0x3d,0x4b,0x0,0x0,0x0,0x1f,
+ 0x83,0x92,0x4,0xf8,0x1b,0xdb,0xf0,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,
+ 0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,
+ 0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,
+ 0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,
+ 0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,
+ 0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,
+ 0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,
+ 0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,
+ 0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,
+ 0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,
+ 0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,
+ 0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,
+ 0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,
+ 0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,
+ 0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,
+ 0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,
+ 0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,
+ 0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,
+ 0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,
+ 0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,
+ 0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,
+ 0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,
+ 0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,
+ 0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,
+ 0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,
+ 0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,
+ 0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,
+ 0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,
+ 0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,
+ 0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,
+ 0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,
+ 0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,
+ 0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,
+ 0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,
+ 0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,
+ 0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,
+ 0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,
+ 0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,
+ 0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,
+ 0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,
+ 0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,
+ 0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,
+ 0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,
+ 0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,
+ 0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,
+ 0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,
+ 0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,
+ 0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,
+ 0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,
+ 0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,
+ 0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,
+ 0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,
+ 0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,
+ 0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,
+ 0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,
+ 0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,
+ 0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,
+ 0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,
+ 0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,
+ 0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,
+ 0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,
+ 0x0,0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,
+ 0x0,0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,
+ 0x0,0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,
+ 0x1c,0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,
+ 0x50,0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,
+ 0x96,0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,
+ 0x0,0x0,0x0,0x0,0xc0,0x1,0x65,0x9,0x0,0x0,0x0,0x0,0x1c,0x50,0x96,0x0,
+ 0x0,0x0,0x0,0xc0,0xc1,0xff,0x7,0x6b,0xed,0x80,0xea,0x6,0x74,0x28,0xb9,0x0,
+ 0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
+ // /home/hzk/Software_Architecture/src/Client/res/image/info.png
+ 0x0,0x0,0x2,0xbf,
+ 0x89,
+ 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+ 0x0,0x0,0x60,0x0,0x0,0x0,0x60,0x8,0x3,0x0,0x0,0x0,0xd5,0x46,0x87,0xa,
+ 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
+ 0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,0x0,0x0,0x0,
+ 0x2a,0x50,0x4c,0x54,0x45,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,0x86,
+ 0xbb,0xca,0x2f,0x0,0x0,0x0,0xd,0x74,0x52,0x4e,0x53,0x0,0x10,0x20,0x30,0x40,
+ 0x70,0x80,0x8f,0x9f,0xaf,0xbf,0xdf,0xef,0xa4,0x44,0x60,0xb5,0x0,0x0,0x0,0x9,
+ 0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc3,0x0,0x0,0xe,0xc3,0x1,0xc7,0x6f,0xa8,
+ 0x64,0x0,0x0,0x2,0x5,0x49,0x44,0x41,0x54,0x68,0x43,0xed,0xd2,0x4b,0x6e,0x1c,
+ 0x41,0xc,0x3,0xd0,0x89,0x3f,0xe3,0x78,0xd2,0xb9,0xff,0x75,0x93,0x6e,0xca,0xa0,
+ 0x4,0x89,0x90,0xa6,0xec,0x65,0xbd,0x15,0xad,0x26,0x2b,0x88,0xe1,0xdb,0xb6,0x6d,
+ 0xdb,0xf6,0xf3,0xfe,0x2e,0xb3,0x7,0x3a,0xd6,0x5e,0x60,0xf,0x74,0xac,0xbd,0xc0,
+ 0x1e,0xe8,0x58,0x7b,0x81,0x3d,0xd0,0xb1,0xf6,0x2,0x7b,0xa0,0x63,0xed,0x5,0xf6,
+ 0x40,0xe7,0xa9,0xb2,0xc1,0x86,0xec,0x5c,0x1b,0x54,0x12,0x6c,0xc8,0xce,0xb5,0x41,
+ 0x25,0xc1,0x86,0xec,0x5c,0x1b,0x54,0x12,0x6c,0xc8,0xce,0xb5,0x41,0x25,0xc1,0x86,
+ 0xec,0x5c,0x1b,0x54,0x12,0x6c,0xc8,0xce,0x35,0x56,0x90,0x3a,0xd5,0xe6,0x4c,0x12,
+ 0x2b,0x48,0x9d,0x6a,0x73,0x26,0x89,0x15,0xa4,0x4e,0xb5,0x39,0x93,0xc4,0xa,0x52,
+ 0xa7,0xda,0x9c,0x49,0x1a,0x54,0x12,0x6e,0x98,0xa4,0x41,0x25,0xe1,0x86,0x49,0x1a,
+ 0x54,0x12,0x6e,0x98,0xa4,0x41,0x25,0xe1,0x86,0x49,0x62,0x5,0xc9,0x69,0x8e,0x31,
+ 0x49,0xac,0x20,0x39,0xcd,0x31,0x26,0x89,0x15,0x24,0xa7,0x39,0xc6,0x24,0xb1,0x82,
+ 0xe4,0x34,0xc7,0x98,0x24,0x56,0x90,0x9c,0xeb,0x7b,0x85,0x9f,0x99,0x24,0x56,0x90,
+ 0x9c,0xeb,0x7b,0x85,0x9f,0x99,0x24,0x56,0x90,0x9c,0xeb,0x7b,0x85,0x9f,0x99,0x24,
+ 0x56,0x90,0x9c,0xeb,0x7b,0x85,0x9f,0x99,0x24,0x56,0x90,0x9c,0xe6,0x18,0x93,0xc4,
+ 0xa,0x92,0xd3,0x1c,0x63,0x92,0x58,0x41,0x72,0x9a,0x63,0x4c,0x12,0x2b,0x48,0x4e,
+ 0x73,0x8c,0x49,0x1a,0x54,0x12,0x6e,0x98,0xa4,0x41,0x25,0xe1,0x86,0x49,0x1a,0x54,
+ 0x12,0x6e,0x98,0xa4,0x41,0x25,0xe1,0x86,0x49,0x62,0x5,0xa9,0x53,0x6d,0xce,0x24,
+ 0xb1,0x82,0xd4,0xa9,0x36,0x67,0x92,0x58,0x41,0xea,0x54,0x9b,0x33,0x49,0xac,0x20,
+ 0x75,0xaa,0xcd,0x99,0xa4,0x41,0x25,0xe1,0x86,0x49,0x1a,0x54,0x12,0x6e,0x98,0xa4,
+ 0x41,0x25,0xe1,0x86,0x49,0x1a,0x54,0x12,0x6e,0x98,0x24,0x56,0x90,0x9c,0xe6,0x18,
+ 0x93,0xc4,0xa,0x92,0xd3,0x1c,0x63,0x92,0x58,0x41,0x72,0x9a,0x63,0x4c,0x12,0x2b,
+ 0x48,0x4e,0x73,0x8c,0x49,0x6a,0x2a,0xf8,0xec,0xf0,0x18,0x93,0xd4,0x54,0xf0,0xd9,
+ 0xe1,0x31,0x26,0xa9,0xa9,0xe0,0xb3,0xc3,0x63,0x4c,0x52,0x53,0xc1,0x67,0x87,0xc7,
+ 0x98,0x24,0x56,0x90,0x9c,0xe6,0x18,0x93,0xc4,0xa,0x92,0xd3,0x1c,0x63,0x92,0x58,
+ 0x41,0x72,0x9a,0x63,0x4c,0x12,0x2b,0x48,0x4e,0x73,0x8c,0x49,0x1a,0x54,0x12,0x6e,
+ 0x98,0xa4,0x41,0x25,0xe1,0x86,0x49,0x1a,0x54,0x12,0x6e,0x98,0xa4,0x41,0x25,0xe1,
+ 0x86,0x49,0xfa,0x73,0x55,0x5e,0xec,0xa7,0x99,0xe3,0x6b,0xf3,0x7a,0x85,0xc3,0xce,
+ 0xb5,0xdf,0x57,0xe7,0xf1,0xd4,0xbf,0xf0,0xb0,0xcd,0x9b,0x8d,0xed,0x5c,0xbb,0x5f,
+ 0x9d,0x6f,0xf9,0xb0,0xa7,0x6a,0x2f,0xd6,0x5a,0x77,0xbc,0xd9,0x53,0xc2,0xbb,0xf5,
+ 0x96,0xdd,0xed,0x21,0x9,0xbf,0xd1,0x65,0x9f,0xbf,0xec,0x1d,0xed,0x3b,0xff,0x87,
+ 0xe3,0xbd,0x7f,0xff,0xff,0x5f,0xdb,0xfd,0x81,0xbf,0xbc,0x27,0x1d,0x8f,0x8f,0x57,
+ 0x7b,0x62,0xdb,0xb6,0x6d,0xfb,0x51,0xb7,0xdb,0x3f,0xe,0x29,0x8b,0x6d,0x1e,0x81,
+ 0x2f,0x9f,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
+ // /home/hzk/Software_Architecture/src/Client/res/image/tab.svg
+ 0x0,0x0,0x2,0x74,
+ 0x3c,
+ 0x73,0x76,0x67,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x39,0x36,0x22,0x20,0x68,
+ 0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x39,0x36,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,
+ 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
+ 0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,0x20,0x78,0x6d,
+ 0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
+ 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,
+ 0x39,0x2f,0x78,0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,
+ 0x63,0x65,0x3d,0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x20,0x6f,0x76,
+ 0x65,0x72,0x66,0x6c,0x6f,0x77,0x3d,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,
+ 0x3c,0x67,0x20,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3d,0x22,0x74,0x72,
+ 0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x28,0x2d,0x39,0x30,0x32,0x20,0x2d,0x31,0x30,
+ 0x38,0x29,0x22,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x39,0x38,
+ 0x34,0x20,0x31,0x34,0x36,0x20,0x39,0x36,0x34,0x20,0x31,0x34,0x36,0x20,0x39,0x36,
+ 0x34,0x20,0x31,0x33,0x34,0x20,0x39,0x38,0x34,0x20,0x31,0x33,0x34,0x20,0x39,0x38,
+ 0x34,0x20,0x31,0x34,0x36,0x5a,0x4d,0x39,0x38,0x34,0x20,0x31,0x36,0x32,0x20,0x39,
+ 0x36,0x34,0x20,0x31,0x36,0x32,0x20,0x39,0x36,0x34,0x20,0x31,0x35,0x30,0x20,0x39,
+ 0x38,0x34,0x20,0x31,0x35,0x30,0x20,0x39,0x38,0x34,0x20,0x31,0x36,0x32,0x5a,0x4d,
+ 0x39,0x38,0x34,0x20,0x31,0x37,0x38,0x20,0x39,0x36,0x34,0x20,0x31,0x37,0x38,0x20,
+ 0x39,0x36,0x34,0x20,0x31,0x36,0x36,0x20,0x39,0x38,0x34,0x20,0x31,0x36,0x36,0x20,
+ 0x39,0x38,0x34,0x20,0x31,0x37,0x38,0x5a,0x4d,0x39,0x34,0x30,0x20,0x31,0x37,0x38,
+ 0x20,0x39,0x34,0x30,0x20,0x31,0x36,0x36,0x20,0x39,0x36,0x30,0x20,0x31,0x36,0x36,
+ 0x20,0x39,0x36,0x30,0x20,0x31,0x37,0x38,0x20,0x39,0x34,0x30,0x20,0x31,0x37,0x38,
+ 0x5a,0x4d,0x39,0x31,0x36,0x20,0x31,0x37,0x38,0x20,0x39,0x31,0x36,0x20,0x31,0x36,
+ 0x36,0x20,0x39,0x33,0x36,0x20,0x31,0x36,0x36,0x20,0x39,0x33,0x36,0x20,0x31,0x37,
+ 0x38,0x20,0x39,0x31,0x36,0x20,0x31,0x37,0x38,0x5a,0x4d,0x39,0x31,0x36,0x20,0x31,
+ 0x35,0x30,0x20,0x39,0x33,0x36,0x20,0x31,0x35,0x30,0x20,0x39,0x33,0x36,0x20,0x31,
+ 0x36,0x32,0x20,0x39,0x31,0x36,0x20,0x31,0x36,0x32,0x20,0x39,0x31,0x36,0x20,0x31,
+ 0x35,0x30,0x5a,0x4d,0x39,0x31,0x36,0x20,0x31,0x33,0x34,0x20,0x39,0x33,0x36,0x20,
+ 0x31,0x33,0x34,0x20,0x39,0x33,0x36,0x20,0x31,0x34,0x36,0x20,0x39,0x31,0x36,0x20,
+ 0x31,0x34,0x36,0x20,0x39,0x31,0x36,0x20,0x31,0x33,0x34,0x5a,0x4d,0x39,0x36,0x30,
+ 0x20,0x31,0x35,0x30,0x20,0x39,0x36,0x30,0x20,0x31,0x36,0x32,0x20,0x39,0x34,0x30,
+ 0x20,0x31,0x36,0x32,0x20,0x39,0x34,0x30,0x20,0x31,0x35,0x30,0x20,0x39,0x36,0x30,
+ 0x20,0x31,0x35,0x30,0x5a,0x4d,0x39,0x36,0x30,0x20,0x31,0x33,0x34,0x20,0x39,0x36,
+ 0x30,0x20,0x31,0x34,0x36,0x20,0x39,0x34,0x30,0x20,0x31,0x34,0x36,0x20,0x39,0x34,
+ 0x30,0x20,0x31,0x33,0x34,0x20,0x39,0x36,0x30,0x20,0x31,0x33,0x34,0x5a,0x4d,0x39,
+ 0x31,0x30,0x20,0x31,0x32,0x38,0x20,0x39,0x31,0x30,0x20,0x31,0x38,0x34,0x20,0x39,
+ 0x39,0x30,0x20,0x31,0x38,0x34,0x20,0x39,0x39,0x30,0x20,0x31,0x32,0x38,0x20,0x39,
+ 0x31,0x30,0x20,0x31,0x32,0x38,0x5a,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,
+ 0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x2f,0x67,0x3e,0x3c,0x2f,0x73,
+ 0x76,0x67,0x3e,
+ // /home/hzk/Software_Architecture/src/Client/res/image/map.png
+ 0x0,0x0,0x3,0x89,
+ 0x89,
+ 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+ 0x0,0x0,0x60,0x0,0x0,0x0,0x60,0x8,0x3,0x0,0x0,0x0,0xd5,0x46,0x87,0xa,
+ 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
+ 0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,0x0,0x0,0x0,
+ 0x33,0x50,0x4c,0x54,0x45,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,0xb7,0x95,0xe2,0x82,0x0,0x0,0x0,0x10,
+ 0x74,0x52,0x4e,0x53,0x0,0x10,0x20,0x30,0x40,0x50,0x60,0x70,0x80,0x8f,0x9f,0xaf,
+ 0xbf,0xcf,0xdf,0xef,0x23,0x1a,0x82,0x8a,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,
+ 0x0,0x0,0xe,0xc3,0x0,0x0,0xe,0xc3,0x1,0xc7,0x6f,0xa8,0x64,0x0,0x0,0x2,
+ 0xc3,0x49,0x44,0x41,0x54,0x68,0x43,0xed,0x97,0xd1,0x72,0xab,0x30,0xc,0x44,0x21,
+ 0x1,0x92,0xb4,0x69,0xc8,0xff,0x7f,0xed,0x65,0xa5,0x5,0xc9,0xb2,0x9,0x74,0xc6,
+ 0x2f,0x77,0xea,0xf3,0xd0,0x78,0x17,0x59,0x8b,0xc1,0x90,0xb4,0x6b,0x34,0x1a,0x8d,
+ 0xc6,0xdf,0xe0,0x3a,0x4e,0xd3,0xd8,0x53,0x54,0xa7,0x7f,0xfc,0xbc,0x85,0x9f,0x89,
+ 0x4e,0x5d,0x86,0x97,0xb6,0x7,0xaf,0x81,0x66,0x45,0x6e,0xec,0x4d,0xaa,0x2f,0x62,
+ 0x9c,0xd9,0x79,0xa5,0xf2,0x1a,0x2e,0xb1,0xff,0x7b,0xae,0x7b,0xaf,0xef,0x6c,0xfb,
+ 0xbc,0x4f,0xf,0xe,0xef,0x3c,0x54,0x85,0x5e,0x6f,0xf0,0x3c,0x42,0x5c,0x75,0x33,
+ 0xcd,0x72,0xa4,0x12,0x57,0x69,0xf9,0xbe,0xa9,0xba,0xa8,0xfa,0xdd,0x5d,0x18,0x2e,
+ 0x1c,0x14,0x99,0xa4,0xe3,0x76,0xce,0x4f,0x91,0x8c,0x3b,0xc5,0xb0,0x4c,0xf9,0xfe,
+ 0x10,0xa1,0x7b,0xf4,0x87,0xaa,0xd3,0xdb,0x70,0xfe,0x26,0xa0,0x3d,0xd8,0x8f,0x8,
+ 0x2b,0xf8,0x12,0x79,0x36,0x60,0x6d,0xf,0xf6,0x22,0x46,0x3d,0xcc,0xa3,0xbc,0xe5,
+ 0xe7,0x9e,0x35,0xdf,0x1e,0x94,0x23,0x7a,0x1e,0x54,0xc5,0x3d,0xfb,0xe1,0x92,0x6e,
+ 0xc4,0xf6,0xa0,0x18,0xf1,0xcd,0x63,0xcb,0xd3,0xd5,0xeb,0x5,0xb2,0x3b,0xb2,0x4f,
+ 0xa9,0x3d,0x28,0x44,0xc,0x3c,0xf4,0x7e,0xf1,0x8d,0x7a,0xe2,0xa,0xed,0xb5,0x7,
+ 0x3e,0x62,0x78,0xe0,0xaf,0x7b,0x95,0x2a,0x2f,0xbc,0x2a,0xee,0xfb,0x97,0x29,0x69,
+ 0x3f,0xcb,0x36,0x4c,0xde,0x97,0x6b,0x4,0xea,0x30,0xd4,0x7d,0xe4,0xc0,0x1e,0x5a,
+ 0x9e,0xbf,0xf2,0x3d,0x8b,0xed,0xfb,0xe,0x9f,0xe1,0x95,0x8c,0xa9,0x5a,0xf7,0x85,
+ 0x29,0x61,0x9,0xf2,0xae,0x93,0xbb,0x51,0x8a,0x88,0xed,0x3b,0x6,0xc4,0x88,0xb5,
+ 0xae,0xb0,0x4,0x2c,0x60,0x7d,0xc5,0x72,0x73,0x39,0xd4,0x7,0xda,0xde,0x2,0xb2,
+ 0x2f,0x16,0x1,0x4b,0xe0,0xe6,0x27,0x33,0x32,0xd7,0x57,0x2c,0x67,0x3a,0xe8,0x6f,
+ 0xed,0x7d,0x40,0x29,0x42,0x6e,0xe8,0xfa,0x9a,0x16,0xe4,0x29,0xde,0x36,0x14,0x44,
+ 0x82,0xda,0xd6,0x3e,0xd,0x88,0x11,0xac,0xe3,0xc3,0x26,0xc8,0x2,0x96,0x3a,0x5e,
+ 0x23,0x11,0x1e,0xb5,0xad,0x7d,0xc,0xf0,0x11,0x76,0x1a,0x7c,0xc0,0xc0,0x76,0xd5,
+ 0x55,0x52,0x18,0xb9,0x1d,0xf5,0x1a,0xe1,0x57,0xe9,0x96,0xb0,0x7d,0x15,0xa8,0xa4,
+ 0x30,0x72,0x3b,0x6a,0x0,0xcf,0xaf,0xd2,0x96,0x60,0xdb,0x46,0x35,0x85,0x91,0xdb,
+ 0x51,0x83,0xcc,0xe3,0x37,0x99,0xff,0x2e,0x53,0x4d,0x61,0xe4,0x76,0xd4,0x20,0xf7,
+ 0xb8,0x4,0xb7,0xef,0xd5,0xa0,0x30,0x72,0x3b,0x6a,0x90,0x7b,0xf9,0x97,0xb1,0x1a,
+ 0x14,0x46,0x6e,0x47,0xd,0xa,0x9e,0xbc,0xb5,0x9f,0x14,0x0,0xba,0x66,0x80,0xfc,
+ 0xba,0xf0,0xbf,0x26,0xa0,0x6b,0x6,0x60,0x9,0x7e,0x1,0xf5,0x3,0xba,0xc9,0x3d,
+ 0x18,0xb,0xa8,0xa9,0x1b,0x10,0x40,0x4d,0xb,0x48,0xb8,0x2f,0x70,0x28,0xa0,0xa6,
+ 0x6a,0x40,0xf4,0xa0,0x5b,0x40,0x42,0xf4,0xa0,0x5b,0x40,0x42,0xf4,0xa0,0x5b,0x40,
+ 0x42,0xf4,0xa0,0xff,0x46,0x80,0xfc,0xa6,0xe2,0x78,0xa3,0xe0,0x65,0x75,0xd0,0xc7,
+ 0x1,0xfd,0x4d,0x7e,0x39,0xcf,0xe1,0x9f,0xa2,0xa4,0x6,0x14,0xea,0xa0,0x8f,0x2,
+ 0x38,0xd,0xa4,0x11,0x70,0x38,0x4,0xc5,0x3a,0xd5,0x14,0x86,0xb3,0xdd,0x34,0x10,
+ 0xcf,0x8e,0xc3,0xdd,0x3a,0x55,0x3a,0x76,0x6c,0x76,0x98,0x6,0xd2,0xb3,0xe3,0x70,
+ 0xb7,0x4e,0xc7,0x52,0xe3,0xa1,0x5d,0x98,0x6,0xfc,0xd9,0xc9,0xe0,0x43,0x9d,0x8e,
+ 0xa4,0xca,0xa3,0x76,0x32,0xed,0xe9,0x85,0x9d,0xdd,0xf2,0x91,0xb6,0xf,0x75,0xfa,
+ 0x89,0xea,0x4,0xb5,0x1d,0xcf,0xe5,0xd7,0xda,0x18,0x23,0xf0,0x19,0xdb,0xc7,0x3a,
+ 0x85,0x6d,0xd,0xfa,0x2b,0x98,0x6,0x42,0x4,0xfe,0x66,0xed,0xb3,0x3a,0xa0,0xb6,
+ 0x83,0xbe,0xb2,0x4e,0x3,0x85,0xb3,0xdb,0xf8,0x50,0x47,0xd7,0xa0,0xf,0xfc,0x34,
+ 0xb0,0x17,0xf1,0xb1,0x8e,0x9e,0x41,0x3f,0x9f,0x6,0x4a,0x11,0x7,0x75,0x74,0xc,
+ 0xfa,0xa5,0x69,0x20,0x46,0x1c,0xd6,0x51,0x1b,0xe2,0xee,0x4d,0x3,0x3e,0xe2,0x44,
+ 0x1d,0x95,0x71,0x30,0xd,0xac,0x11,0xa7,0xea,0x38,0x36,0xe,0xa7,0x1,0x4c,0x3d,
+ 0x59,0xc7,0x91,0x71,0x62,0x1a,0x18,0xcf,0xd6,0xf1,0xb3,0xd1,0x68,0x34,0x1a,0xff,
+ 0x3,0x5d,0xf7,0xf,0x14,0x87,0x7c,0xd3,0x7b,0xb,0x42,0x7a,0x0,0x0,0x0,0x0,
+ 0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
+ // /home/hzk/Software_Architecture/src/Client/res/image/location.png
+ 0x0,0x0,0x2,0xd6,
+ 0x89,
+ 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+ 0x0,0x0,0x60,0x0,0x0,0x0,0x60,0x8,0x3,0x0,0x0,0x0,0xd5,0x46,0x87,0xa,
+ 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
+ 0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,0x0,0x0,0x0,
+ 0x33,0x50,0x4c,0x54,0x45,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,0xb7,0x95,0xe2,0x82,0x0,0x0,0x0,0x10,
+ 0x74,0x52,0x4e,0x53,0x0,0x10,0x20,0x30,0x40,0x50,0x60,0x70,0x80,0x8f,0x9f,0xaf,
+ 0xbf,0xcf,0xdf,0xef,0x23,0x1a,0x82,0x8a,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,
+ 0x0,0x0,0xe,0xc3,0x0,0x0,0xe,0xc3,0x1,0xc7,0x6f,0xa8,0x64,0x0,0x0,0x2,
+ 0x10,0x49,0x44,0x41,0x54,0x68,0x43,0xed,0x99,0xe1,0x92,0x83,0x20,0xc,0x84,0xc5,
+ 0xda,0xaa,0x55,0xcb,0xbd,0xff,0xd3,0x9e,0xda,0x15,0x13,0x10,0xec,0x85,0xd8,0x99,
+ 0x9b,0xe1,0xfb,0x89,0x5c,0xec,0x12,0xb2,0x4,0xaf,0x2a,0x14,0xa,0x85,0xc2,0x77,
+ 0x69,0xda,0xfe,0x39,0x59,0x3b,0xe,0x5d,0x7b,0xc3,0x90,0x22,0xa6,0x9d,0x7e,0x8,
+ 0x63,0x8b,0x71,0x25,0x4c,0x6f,0x11,0x79,0x67,0xa8,0xf1,0x50,0x81,0x26,0xc,0xbf,
+ 0xf0,0xc0,0xe3,0x5c,0x4c,0x8f,0x80,0x1,0x4f,0xcc,0xc8,0xa3,0x7e,0x21,0xdc,0x1,
+ 0x56,0x21,0xdb,0x86,0x25,0xd7,0xe7,0x65,0x30,0x4d,0x8c,0x19,0x10,0x2a,0xc2,0x84,
+ 0x79,0x62,0x9e,0x8,0x14,0x65,0xc4,0x44,0x21,0x2d,0xc2,0x24,0xc8,0xda,0x4b,0x26,
+ 0x91,0xe0,0xd,0x8b,0xb9,0x22,0x3a,0x4,0x49,0xd2,0x61,0xb2,0x0,0xe3,0x15,0xd8,
+ 0xd8,0x37,0xb7,0xfa,0xde,0x79,0xfb,0xca,0xca,0x4b,0x9a,0xb,0xb0,0xce,0x7f,0xbc,
+ 0xcc,0xc8,0x25,0x8c,0x88,0xb0,0x32,0x91,0x1f,0x6a,0xd8,0x13,0x71,0x16,0xc,0x2,
+ 0xac,0xf0,0xa2,0xe5,0x8b,0x27,0xad,0xb6,0x6,0x7f,0xbf,0xe2,0xf9,0xf3,0x1d,0xc3,
+ 0x2b,0xd2,0x9d,0x4a,0x97,0x3a,0xa8,0x27,0xba,0x48,0xd2,0x24,0x50,0x97,0xe8,0x31,
+ 0xe6,0xa0,0x1b,0x60,0xc0,0xd8,0x5f,0xa1,0x3f,0xf2,0x8e,0x31,0x7,0x5d,0x23,0xa9,
+ 0x21,0xd1,0x17,0x4,0x7b,0x9d,0xee,0x80,0x7f,0xf1,0x82,0x60,0x89,0xe8,0x16,0xd3,
+ 0x78,0x41,0xb0,0x51,0xe8,0x16,0x93,0xbe,0x80,0x9e,0xc5,0x41,0x8c,0xe4,0x16,0xfb,
+ 0x10,0x56,0x4c,0xde,0x1a,0xa5,0x9e,0x7d,0xc,0xb7,0xa,0x96,0x66,0x6e,0x15,0x62,
+ 0x3b,0xe5,0xcd,0x1c,0x71,0x1c,0x7e,0x52,0x4b,0x53,0xc0,0x93,0x30,0x6b,0x70,0x96,
+ 0xd3,0xf0,0x83,0x4e,0x9a,0x2,0x6f,0x8d,0x66,0x86,0xae,0xa9,0x4c,0xc3,0xbb,0xd4,
+ 0x99,0x6,0xd3,0x5,0x9c,0xf6,0x14,0xb,0x52,0x27,0x5a,0xb8,0x21,0x46,0x92,0xc,
+ 0x1,0x5e,0x9a,0x8f,0x91,0xa7,0x78,0xe1,0x81,0x28,0x9,0x32,0x7b,0xec,0xd3,0xc6,
+ 0x28,0xb7,0x3b,0x3d,0x95,0x90,0xd1,0x15,0xad,0x9c,0xf5,0x76,0x36,0xbb,0xbd,0x8e,
+ 0xde,0x3e,0xde,0xe4,0xa,0x8,0x8b,0x8d,0x93,0xd1,0xd5,0x39,0x92,0xc5,0x96,0x53,
+ 0x64,0x1b,0x49,0x9,0x59,0x45,0xb6,0x91,0x90,0xa0,0x21,0x20,0xe9,0x17,0xd2,0x93,
+ 0xc6,0x23,0xba,0x53,0xf3,0x5c,0x62,0x27,0x5a,0x6c,0x6a,0xdf,0x13,0x22,0x12,0xf2,
+ 0x8b,0x6c,0x23,0x22,0x21,0xbf,0xc8,0x36,0xfc,0xab,0xd4,0x1b,0x3d,0x1,0x11,0xbf,
+ 0xd0,0x13,0x10,0x29,0x36,0xd5,0xaf,0x52,0x7,0xc5,0xa6,0x53,0x64,0x1b,0x7,0x12,
+ 0x54,0x5c,0x62,0x27,0x90,0xa0,0x2b,0xa0,0xaa,0x6a,0xc4,0x75,0x28,0xb,0xe0,0xdd,
+ 0xf4,0x8c,0xb6,0x80,0xc0,0xf2,0xd4,0x5,0xf8,0x9d,0x30,0x6,0x35,0x61,0xd7,0x72,
+ 0x25,0x9f,0xe6,0x10,0xcb,0xd3,0xf2,0x69,0xe,0xb9,0xd4,0x68,0x7d,0x31,0xf5,0x70,
+ 0x12,0xf2,0xbf,0x35,0x1e,0xe3,0x5c,0x5b,0xd3,0xe6,0x18,0x90,0x70,0x95,0x0,0x27,
+ 0xe1,0x32,0x1,0x68,0x54,0x35,0xf,0x1a,0x9f,0xf5,0x7a,0x7f,0x9d,0x80,0xb7,0x84,
+ 0x2b,0x5,0x2c,0xff,0x49,0xd8,0x2f,0xb3,0x85,0x42,0xa1,0x50,0xf8,0x16,0x55,0xf5,
+ 0xb,0xa8,0x4a,0x62,0x58,0x15,0x67,0x26,0x51,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,
+ 0x44,0xae,0x42,0x60,0x82,
+ // /home/hzk/Software_Architecture/src/Client/res/image/soldier.svg
+ 0x0,0x0,0x9,0x4f,
+ 0x3c,
+ 0x73,0x76,0x67,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x39,0x36,0x22,0x20,0x68,
+ 0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x39,0x36,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,
+ 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
+ 0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,0x20,0x78,0x6d,
+ 0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
+ 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,
+ 0x39,0x2f,0x78,0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,
+ 0x63,0x65,0x3d,0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x20,0x6f,0x76,
+ 0x65,0x72,0x66,0x6c,0x6f,0x77,0x3d,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,
+ 0x3c,0x67,0x20,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3d,0x22,0x74,0x72,
+ 0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x28,0x2d,0x31,0x30,0x32,0x30,0x20,0x2d,0x32,
+ 0x30,0x34,0x29,0x22,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x31,
+ 0x30,0x34,0x30,0x2e,0x37,0x31,0x20,0x32,0x36,0x31,0x2e,0x34,0x37,0x39,0x43,0x31,
+ 0x30,0x33,0x38,0x2e,0x34,0x35,0x20,0x32,0x36,0x33,0x2e,0x33,0x33,0x38,0x20,0x31,
+ 0x30,0x33,0x37,0x2e,0x31,0x20,0x32,0x36,0x36,0x2e,0x30,0x37,0x37,0x20,0x31,0x30,
+ 0x33,0x37,0x20,0x32,0x36,0x39,0x4c,0x31,0x30,0x33,0x37,0x2e,0x30,0x31,0x20,0x32,
+ 0x38,0x36,0x2e,0x35,0x37,0x20,0x31,0x30,0x33,0x37,0x2e,0x39,0x20,0x32,0x38,0x37,
+ 0x2e,0x31,0x36,0x33,0x43,0x31,0x30,0x34,0x32,0x2e,0x36,0x33,0x20,0x32,0x39,0x30,
+ 0x2e,0x33,0x31,0x37,0x20,0x31,0x30,0x35,0x34,0x2e,0x37,0x33,0x20,0x32,0x39,0x31,
+ 0x2e,0x39,0x33,0x38,0x20,0x31,0x30,0x36,0x37,0x20,0x32,0x39,0x32,0x2e,0x30,0x34,
+ 0x35,0x4c,0x31,0x30,0x36,0x37,0x20,0x32,0x36,0x33,0x2e,0x33,0x30,0x36,0x20,0x31,
+ 0x30,0x35,0x30,0x2e,0x30,0x31,0x20,0x32,0x35,0x35,0x2e,0x39,0x36,0x32,0x43,0x31,
+ 0x30,0x34,0x36,0x2e,0x36,0x36,0x20,0x32,0x35,0x37,0x2e,0x33,0x34,0x31,0x20,0x31,
+ 0x30,0x34,0x33,0x2e,0x35,0x33,0x20,0x32,0x35,0x39,0x2e,0x31,0x39,0x39,0x20,0x31,
+ 0x30,0x34,0x30,0x2e,0x37,0x31,0x20,0x32,0x36,0x31,0x2e,0x34,0x37,0x39,0x5a,0x4d,
+ 0x31,0x30,0x35,0x32,0x2e,0x39,0x32,0x20,0x32,0x36,0x33,0x43,0x31,0x30,0x34,0x39,
+ 0x2e,0x35,0x20,0x32,0x36,0x34,0x2e,0x34,0x36,0x34,0x20,0x31,0x30,0x34,0x36,0x2e,
+ 0x31,0x39,0x20,0x32,0x36,0x36,0x2e,0x31,0x36,0x38,0x20,0x31,0x30,0x34,0x33,0x2e,
+ 0x30,0x32,0x20,0x32,0x36,0x38,0x2e,0x31,0x4c,0x31,0x30,0x34,0x30,0x2e,0x39,0x39,
+ 0x20,0x32,0x36,0x34,0x2e,0x36,0x35,0x43,0x31,0x30,0x34,0x34,0x2e,0x33,0x20,0x32,
+ 0x36,0x32,0x2e,0x36,0x33,0x37,0x20,0x31,0x30,0x34,0x37,0x2e,0x37,0x35,0x20,0x32,
+ 0x36,0x30,0x2e,0x38,0x36,0x20,0x31,0x30,0x35,0x31,0x2e,0x33,0x31,0x20,0x32,0x35,
+ 0x39,0x2e,0x33,0x33,0x33,0x5a,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,
+ 0x46,0x46,0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,
+ 0x22,0x4d,0x31,0x30,0x38,0x34,0x20,0x32,0x33,0x33,0x2e,0x30,0x35,0x43,0x31,0x30,
+ 0x38,0x35,0x2e,0x37,0x38,0x20,0x32,0x33,0x34,0x2e,0x35,0x37,0x32,0x20,0x31,0x30,
+ 0x38,0x38,0x2e,0x33,0x39,0x20,0x32,0x33,0x34,0x2e,0x35,0x37,0x37,0x20,0x31,0x30,
+ 0x39,0x30,0x2e,0x31,0x37,0x20,0x32,0x33,0x33,0x2e,0x30,0x36,0x20,0x31,0x30,0x38,
+ 0x38,0x2e,0x31,0x33,0x20,0x32,0x32,0x39,0x2e,0x34,0x34,0x20,0x31,0x30,0x38,0x37,
+ 0x2e,0x37,0x36,0x20,0x32,0x32,0x38,0x2e,0x33,0x38,0x20,0x31,0x30,0x38,0x37,0x2e,
+ 0x32,0x36,0x20,0x32,0x32,0x33,0x2e,0x39,0x31,0x4c,0x31,0x30,0x38,0x37,0x2e,0x32,
+ 0x36,0x20,0x32,0x32,0x31,0x2e,0x35,0x43,0x31,0x30,0x38,0x37,0x2e,0x32,0x36,0x20,
+ 0x32,0x31,0x35,0x20,0x31,0x30,0x37,0x39,0x2e,0x32,0x36,0x20,0x32,0x30,0x36,0x2e,
+ 0x32,0x35,0x20,0x31,0x30,0x36,0x38,0x2e,0x32,0x36,0x20,0x32,0x30,0x36,0x2e,0x32,
+ 0x35,0x4c,0x31,0x30,0x36,0x37,0x2e,0x37,0x34,0x20,0x32,0x30,0x36,0x2e,0x32,0x35,
+ 0x43,0x31,0x30,0x35,0x36,0x2e,0x37,0x34,0x20,0x32,0x30,0x36,0x2e,0x32,0x35,0x20,
+ 0x31,0x30,0x34,0x38,0x2e,0x37,0x34,0x20,0x32,0x31,0x35,0x20,0x31,0x30,0x34,0x38,
+ 0x2e,0x37,0x34,0x20,0x32,0x32,0x31,0x2e,0x35,0x4c,0x31,0x30,0x34,0x38,0x2e,0x37,
+ 0x34,0x20,0x32,0x32,0x33,0x2e,0x39,0x31,0x43,0x31,0x30,0x34,0x38,0x2e,0x34,0x36,
+ 0x20,0x32,0x33,0x30,0x20,0x31,0x30,0x34,0x35,0x2e,0x38,0x33,0x20,0x32,0x33,0x33,
+ 0x2e,0x30,0x37,0x20,0x31,0x30,0x34,0x35,0x2e,0x38,0x33,0x20,0x32,0x33,0x33,0x2e,
+ 0x30,0x37,0x20,0x31,0x30,0x34,0x37,0x2e,0x36,0x31,0x20,0x32,0x33,0x34,0x2e,0x35,
+ 0x38,0x35,0x20,0x31,0x30,0x35,0x30,0x2e,0x32,0x32,0x20,0x32,0x33,0x34,0x2e,0x35,
+ 0x38,0x35,0x20,0x31,0x30,0x35,0x32,0x20,0x32,0x33,0x33,0x2e,0x30,0x37,0x4c,0x31,
+ 0x30,0x35,0x32,0x20,0x32,0x33,0x33,0x2e,0x35,0x37,0x43,0x31,0x30,0x35,0x31,0x2e,
+ 0x39,0x35,0x20,0x32,0x33,0x34,0x2e,0x35,0x35,0x31,0x20,0x31,0x30,0x35,0x31,0x2e,
+ 0x34,0x36,0x20,0x32,0x33,0x35,0x2e,0x34,0x35,0x37,0x20,0x31,0x30,0x35,0x30,0x2e,
+ 0x36,0x37,0x20,0x32,0x33,0x36,0x2e,0x30,0x33,0x37,0x20,0x31,0x30,0x34,0x38,0x2e,
+ 0x37,0x35,0x20,0x32,0x33,0x37,0x2e,0x35,0x38,0x33,0x20,0x31,0x30,0x34,0x38,0x2e,
+ 0x34,0x35,0x20,0x32,0x34,0x30,0x2e,0x33,0x38,0x39,0x20,0x31,0x30,0x35,0x30,0x20,
+ 0x32,0x34,0x32,0x2e,0x33,0x30,0x35,0x20,0x31,0x30,0x35,0x30,0x2e,0x34,0x20,0x32,
+ 0x34,0x32,0x2e,0x38,0x30,0x36,0x20,0x31,0x30,0x35,0x30,0x2e,0x39,0x31,0x20,0x32,
+ 0x34,0x33,0x2e,0x32,0x31,0x34,0x20,0x31,0x30,0x35,0x31,0x2e,0x34,0x39,0x20,0x32,
+ 0x34,0x33,0x2e,0x35,0x20,0x31,0x30,0x35,0x31,0x2e,0x31,0x37,0x20,0x32,0x34,0x34,
+ 0x2e,0x31,0x32,0x20,0x31,0x30,0x35,0x31,0x2e,0x30,0x31,0x20,0x32,0x34,0x34,0x2e,
+ 0x38,0x30,0x35,0x20,0x31,0x30,0x35,0x31,0x20,0x32,0x34,0x35,0x2e,0x35,0x20,0x31,
+ 0x30,0x35,0x31,0x20,0x32,0x34,0x37,0x2e,0x39,0x38,0x34,0x20,0x31,0x30,0x35,0x33,
+ 0x2e,0x30,0x32,0x20,0x32,0x34,0x39,0x2e,0x39,0x39,0x38,0x20,0x31,0x30,0x35,0x35,
+ 0x2e,0x35,0x20,0x32,0x35,0x30,0x20,0x31,0x30,0x35,0x36,0x2e,0x33,0x32,0x20,0x32,
+ 0x34,0x39,0x2e,0x39,0x39,0x39,0x20,0x31,0x30,0x35,0x37,0x2e,0x31,0x32,0x20,0x32,
+ 0x34,0x39,0x2e,0x37,0x37,0x31,0x20,0x31,0x30,0x35,0x37,0x2e,0x38,0x32,0x20,0x32,
+ 0x34,0x39,0x2e,0x33,0x34,0x32,0x20,0x31,0x30,0x35,0x37,0x2e,0x38,0x38,0x20,0x32,
+ 0x34,0x39,0x2e,0x33,0x38,0x36,0x20,0x31,0x30,0x35,0x37,0x2e,0x39,0x34,0x20,0x32,
+ 0x34,0x39,0x2e,0x34,0x32,0x34,0x20,0x31,0x30,0x35,0x37,0x2e,0x39,0x39,0x20,0x32,
+ 0x34,0x39,0x2e,0x34,0x36,0x38,0x4c,0x31,0x30,0x35,0x37,0x2e,0x39,0x39,0x20,0x32,
+ 0x35,0x31,0x2e,0x37,0x32,0x32,0x20,0x31,0x30,0x35,0x36,0x2e,0x31,0x35,0x20,0x32,
+ 0x35,0x31,0x20,0x31,0x30,0x35,0x32,0x20,0x32,0x35,0x34,0x2e,0x36,0x30,0x36,0x20,
+ 0x31,0x30,0x36,0x37,0x20,0x32,0x36,0x31,0x20,0x31,0x30,0x36,0x37,0x20,0x32,0x35,
+ 0x35,0x2e,0x32,0x36,0x20,0x31,0x30,0x36,0x31,0x2e,0x38,0x35,0x20,0x32,0x35,0x33,
+ 0x2e,0x32,0x33,0x35,0x43,0x31,0x30,0x36,0x31,0x2e,0x39,0x35,0x20,0x32,0x35,0x32,
+ 0x2e,0x38,0x34,0x37,0x20,0x31,0x30,0x36,0x32,0x20,0x32,0x35,0x32,0x2e,0x34,0x34,
+ 0x38,0x20,0x31,0x30,0x36,0x32,0x20,0x32,0x35,0x32,0x2e,0x30,0x34,0x38,0x4c,0x31,
+ 0x30,0x36,0x32,0x20,0x32,0x35,0x31,0x2e,0x38,0x32,0x33,0x43,0x31,0x30,0x36,0x35,
+ 0x2e,0x38,0x35,0x20,0x32,0x35,0x33,0x2e,0x33,0x39,0x34,0x20,0x31,0x30,0x37,0x30,
+ 0x2e,0x31,0x36,0x20,0x32,0x35,0x33,0x2e,0x33,0x39,0x34,0x20,0x31,0x30,0x37,0x34,
+ 0x2e,0x30,0x31,0x20,0x32,0x35,0x31,0x2e,0x38,0x32,0x33,0x4c,0x31,0x30,0x37,0x34,
+ 0x2e,0x30,0x31,0x20,0x32,0x35,0x32,0x2e,0x30,0x34,0x35,0x43,0x31,0x30,0x37,0x34,
+ 0x2e,0x30,0x31,0x20,0x32,0x35,0x32,0x2e,0x34,0x34,0x36,0x20,0x31,0x30,0x37,0x34,
+ 0x2e,0x30,0x35,0x20,0x32,0x35,0x32,0x2e,0x38,0x34,0x36,0x20,0x31,0x30,0x37,0x34,
+ 0x2e,0x31,0x35,0x20,0x32,0x35,0x33,0x2e,0x32,0x33,0x36,0x4c,0x31,0x30,0x36,0x39,
+ 0x20,0x32,0x35,0x35,0x2e,0x32,0x35,0x37,0x20,0x31,0x30,0x36,0x39,0x20,0x32,0x36,
+ 0x31,0x20,0x31,0x30,0x38,0x34,0x20,0x32,0x35,0x34,0x2e,0x36,0x30,0x39,0x20,0x31,
+ 0x30,0x37,0x39,0x2e,0x38,0x35,0x20,0x32,0x35,0x31,0x20,0x31,0x30,0x37,0x38,0x20,
+ 0x32,0x35,0x31,0x2e,0x37,0x32,0x37,0x20,0x31,0x30,0x37,0x38,0x20,0x32,0x34,0x39,
+ 0x2e,0x34,0x37,0x35,0x43,0x31,0x30,0x37,0x38,0x2e,0x30,0x36,0x20,0x32,0x34,0x39,
+ 0x2e,0x34,0x32,0x38,0x20,0x31,0x30,0x37,0x38,0x2e,0x31,0x32,0x20,0x32,0x34,0x39,
+ 0x2e,0x33,0x38,0x38,0x20,0x31,0x30,0x37,0x38,0x2e,0x31,0x38,0x20,0x32,0x34,0x39,
+ 0x2e,0x33,0x34,0x31,0x20,0x31,0x30,0x37,0x38,0x2e,0x38,0x38,0x20,0x32,0x34,0x39,
+ 0x2e,0x37,0x37,0x31,0x20,0x31,0x30,0x37,0x39,0x2e,0x36,0x38,0x20,0x32,0x34,0x39,
+ 0x2e,0x39,0x39,0x39,0x20,0x31,0x30,0x38,0x30,0x2e,0x35,0x20,0x32,0x35,0x30,0x20,
+ 0x31,0x30,0x38,0x32,0x2e,0x39,0x39,0x20,0x32,0x35,0x30,0x20,0x31,0x30,0x38,0x35,
+ 0x20,0x32,0x34,0x37,0x2e,0x39,0x38,0x35,0x20,0x31,0x30,0x38,0x35,0x20,0x32,0x34,
+ 0x35,0x2e,0x35,0x20,0x31,0x30,0x38,0x35,0x20,0x32,0x34,0x34,0x2e,0x38,0x30,0x35,
+ 0x20,0x31,0x30,0x38,0x34,0x2e,0x38,0x33,0x20,0x32,0x34,0x34,0x2e,0x31,0x32,0x20,
+ 0x31,0x30,0x38,0x34,0x2e,0x35,0x31,0x20,0x32,0x34,0x33,0x2e,0x35,0x20,0x31,0x30,
+ 0x38,0x36,0x2e,0x37,0x32,0x20,0x32,0x34,0x32,0x2e,0x34,0x31,0x32,0x20,0x31,0x30,
+ 0x38,0x37,0x2e,0x36,0x33,0x20,0x32,0x33,0x39,0x2e,0x37,0x34,0x20,0x31,0x30,0x38,
+ 0x36,0x2e,0x35,0x34,0x20,0x32,0x33,0x37,0x2e,0x35,0x33,0x32,0x20,0x31,0x30,0x38,
+ 0x36,0x2e,0x32,0x35,0x20,0x32,0x33,0x36,0x2e,0x39,0x34,0x39,0x20,0x31,0x30,0x38,
+ 0x35,0x2e,0x38,0x34,0x20,0x32,0x33,0x36,0x2e,0x34,0x33,0x35,0x20,0x31,0x30,0x38,
+ 0x35,0x2e,0x33,0x33,0x20,0x32,0x33,0x36,0x2e,0x30,0x32,0x38,0x20,0x31,0x30,0x38,
+ 0x34,0x2e,0x35,0x33,0x20,0x32,0x33,0x35,0x2e,0x34,0x34,0x20,0x31,0x30,0x38,0x34,
+ 0x2e,0x30,0x34,0x20,0x32,0x33,0x34,0x2e,0x35,0x31,0x37,0x20,0x31,0x30,0x38,0x34,
+ 0x20,0x32,0x33,0x33,0x2e,0x35,0x32,0x31,0x5a,0x4d,0x31,0x30,0x37,0x36,0x2e,0x39,
+ 0x34,0x20,0x32,0x33,0x30,0x43,0x31,0x30,0x37,0x37,0x2e,0x39,0x38,0x20,0x32,0x33,
+ 0x30,0x2e,0x30,0x30,0x32,0x20,0x31,0x30,0x37,0x39,0x2e,0x30,0x31,0x20,0x32,0x33,
+ 0x30,0x2e,0x31,0x37,0x33,0x20,0x31,0x30,0x38,0x30,0x20,0x32,0x33,0x30,0x2e,0x35,
+ 0x30,0x38,0x4c,0x31,0x30,0x38,0x30,0x20,0x32,0x33,0x37,0x43,0x31,0x30,0x38,0x30,
+ 0x20,0x32,0x34,0x33,0x2e,0x36,0x32,0x37,0x20,0x31,0x30,0x37,0x34,0x2e,0x36,0x33,
+ 0x20,0x32,0x34,0x39,0x20,0x31,0x30,0x36,0x38,0x20,0x32,0x34,0x39,0x20,0x31,0x30,
+ 0x36,0x31,0x2e,0x33,0x37,0x20,0x32,0x34,0x39,0x20,0x31,0x30,0x35,0x36,0x20,0x32,
+ 0x34,0x33,0x2e,0x36,0x32,0x37,0x20,0x31,0x30,0x35,0x36,0x20,0x32,0x33,0x37,0x4c,
+ 0x31,0x30,0x35,0x36,0x20,0x32,0x33,0x30,0x2e,0x35,0x31,0x34,0x43,0x31,0x30,0x35,
+ 0x36,0x2e,0x39,0x39,0x20,0x32,0x33,0x30,0x2e,0x31,0x37,0x36,0x20,0x31,0x30,0x35,
+ 0x38,0x2e,0x30,0x33,0x20,0x32,0x33,0x30,0x2e,0x30,0x30,0x32,0x20,0x31,0x30,0x35,
+ 0x39,0x2e,0x30,0x38,0x20,0x32,0x33,0x30,0x5a,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,
+ 0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x70,0x61,0x74,0x68,
+ 0x20,0x64,0x3d,0x22,0x4d,0x31,0x30,0x39,0x39,0x20,0x32,0x36,0x38,0x2e,0x39,0x36,
+ 0x32,0x43,0x31,0x30,0x39,0x38,0x2e,0x38,0x39,0x20,0x32,0x36,0x36,0x2e,0x30,0x35,
+ 0x33,0x20,0x31,0x30,0x39,0x37,0x2e,0x35,0x34,0x20,0x32,0x36,0x33,0x2e,0x33,0x32,
+ 0x39,0x20,0x31,0x30,0x39,0x35,0x2e,0x32,0x39,0x20,0x32,0x36,0x31,0x2e,0x34,0x37,
+ 0x39,0x20,0x31,0x30,0x39,0x32,0x2e,0x34,0x38,0x20,0x32,0x35,0x39,0x2e,0x31,0x39,
+ 0x39,0x20,0x31,0x30,0x38,0x39,0x2e,0x33,0x35,0x20,0x32,0x35,0x37,0x2e,0x33,0x34,
+ 0x31,0x20,0x31,0x30,0x38,0x35,0x2e,0x39,0x39,0x20,0x32,0x35,0x35,0x2e,0x39,0x36,
+ 0x34,0x4c,0x31,0x30,0x36,0x39,0x20,0x32,0x36,0x33,0x2e,0x33,0x30,0x37,0x20,0x31,
+ 0x30,0x36,0x39,0x20,0x32,0x39,0x32,0x2e,0x30,0x35,0x34,0x43,0x31,0x30,0x38,0x31,
+ 0x2e,0x35,0x36,0x20,0x32,0x39,0x31,0x2e,0x39,0x39,0x34,0x20,0x31,0x30,0x39,0x33,
+ 0x2e,0x38,0x38,0x20,0x32,0x39,0x30,0x2e,0x33,0x34,0x34,0x20,0x31,0x30,0x39,0x38,
+ 0x2e,0x32,0x20,0x32,0x38,0x37,0x2e,0x31,0x30,0x34,0x4c,0x31,0x30,0x39,0x39,0x20,
+ 0x32,0x38,0x36,0x2e,0x35,0x30,0x34,0x5a,0x4d,0x31,0x30,0x39,0x32,0x2e,0x38,0x35,
+ 0x20,0x32,0x36,0x38,0x2e,0x31,0x43,0x31,0x30,0x38,0x39,0x2e,0x36,0x37,0x20,0x32,
+ 0x36,0x36,0x2e,0x31,0x36,0x38,0x20,0x31,0x30,0x38,0x36,0x2e,0x33,0x37,0x20,0x32,
+ 0x36,0x34,0x2e,0x34,0x36,0x34,0x20,0x31,0x30,0x38,0x32,0x2e,0x39,0x35,0x20,0x32,
+ 0x36,0x33,0x4c,0x31,0x30,0x38,0x34,0x2e,0x35,0x36,0x20,0x32,0x35,0x39,0x2e,0x33,
+ 0x33,0x36,0x43,0x31,0x30,0x38,0x38,0x2e,0x31,0x32,0x20,0x32,0x36,0x30,0x2e,0x38,
+ 0x36,0x32,0x20,0x31,0x30,0x39,0x31,0x2e,0x35,0x37,0x20,0x32,0x36,0x32,0x2e,0x36,
+ 0x33,0x38,0x20,0x31,0x30,0x39,0x34,0x2e,0x38,0x38,0x20,0x32,0x36,0x34,0x2e,0x36,
+ 0x35,0x5a,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,
+ 0x46,0x22,0x2f,0x3e,0x3c,0x2f,0x67,0x3e,0x3c,0x2f,0x73,0x76,0x67,0x3e,
+ // /home/hzk/Software_Architecture/src/Client/res/image/robot.png
+ 0x0,0x0,0x4,0x3c,
+ 0x89,
+ 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+ 0x0,0x0,0x60,0x0,0x0,0x0,0x60,0x8,0x3,0x0,0x0,0x0,0xd5,0x46,0x87,0xa,
+ 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
+ 0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,0x0,0x0,0x0,
+ 0x42,0x50,0x4c,0x54,0x45,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,0xff,0x8,0x5f,0xd2,0x86,0x0,0x0,0x0,0x15,0x74,
+ 0x52,0x4e,0x53,0x0,0x10,0x17,0x20,0x28,0x30,0x40,0x50,0x60,0x64,0x70,0x80,0x8f,
+ 0x9e,0x9f,0xaf,0xbf,0xcb,0xcf,0xdf,0xef,0x93,0xa4,0x23,0xcf,0x0,0x0,0x0,0x9,
+ 0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc3,0x0,0x0,0xe,0xc3,0x1,0xc7,0x6f,0xa8,
+ 0x64,0x0,0x0,0x3,0x62,0x49,0x44,0x41,0x54,0x68,0x43,0xed,0x99,0xd1,0x9a,0xa3,
+ 0x20,0xc,0x85,0x61,0xdd,0xda,0xae,0xba,0xda,0x51,0xfa,0xfe,0xaf,0xba,0x9c,0x24,
+ 0x2,0xb6,0xe8,0x34,0x54,0xe7,0xdb,0xb,0xff,0x8b,0x11,0x7,0x72,0x18,0x10,0x42,
+ 0xc2,0x98,0x93,0x93,0x1f,0xa6,0xea,0xdc,0xd4,0x55,0xf2,0x72,0x0,0xd5,0xf4,0xf0,
+ 0xb8,0xe3,0x7a,0xe8,0xa0,0xff,0x78,0xf4,0xf2,0xba,0x3f,0x34,0x0,0x3f,0x4,0x79,
+ 0xdd,0x1f,0xe9,0x60,0x92,0xd7,0xfd,0xe9,0xb9,0x83,0x41,0x5e,0xf7,0xc7,0x8e,0xd0,
+ 0x77,0xb5,0xbc,0x1e,0x80,0x45,0x7,0x7,0x2e,0x53,0x63,0xd0,0x81,0x14,0x8f,0xe1,
+ 0xec,0x60,0x5,0xdb,0x8e,0xe,0xd2,0xb,0x86,0x4e,0x6a,0x3f,0xc7,0xe,0xa2,0xf9,
+ 0xc4,0x28,0xf5,0x1f,0xd3,0x8a,0xe0,0xb,0x7b,0x8d,0x61,0x65,0x0,0xfb,0x39,0xa5,
+ 0xd7,0xf9,0x9f,0x91,0x6,0x9f,0x22,0x6a,0x19,0xa4,0xc1,0xa7,0x88,0x5a,0x6,0x69,
+ 0xf0,0x29,0xa4,0xe5,0x9a,0x4b,0xd5,0x3c,0x95,0x76,0xed,0xa0,0x35,0xbf,0xff,0x58,
+ 0xd2,0x8d,0xa5,0xb2,0xe,0xac,0x3c,0x63,0x81,0xb4,0xaa,0x5f,0x5f,0x8f,0xbf,0xec,
+ 0x4d,0x43,0xa9,0xa8,0x83,0x6a,0x12,0x77,0x6f,0x87,0x96,0xb,0x3b,0x77,0xe0,0x17,
+ 0xfd,0x15,0xcf,0xcb,0x14,0xc2,0x7,0xd2,0x6a,0xc2,0xc4,0xc4,0x52,0x51,0x7,0xb0,
+ 0xbb,0xf8,0x27,0xe,0xaf,0x26,0xfe,0xa,0x2f,0xf6,0xc6,0x3b,0x22,0x96,0xb8,0x5e,
+ 0xc5,0xc5,0x9b,0xd1,0xa1,0x8e,0x10,0x45,0xe6,0x88,0xb4,0xb2,0x70,0xbd,0x8a,0xda,
+ 0x9b,0x91,0x13,0xc3,0x1c,0x48,0x0,0x44,0x5a,0x59,0xb8,0x5e,0x5,0x7d,0x3c,0x3f,
+ 0x45,0xf6,0xee,0x9f,0x8b,0x29,0xca,0xc1,0xf5,0x3a,0x20,0xfc,0xe8,0x3b,0xa,0x81,
+ 0xe4,0x23,0x53,0x2c,0x91,0xa3,0xc8,0x5f,0x57,0x62,0xec,0x99,0xbd,0xf1,0xaa,0xbb,
+ 0x9e,0xd7,0xb1,0x8e,0xab,0x58,0x3f,0xee,0x61,0xa7,0xad,0xc,0x61,0xc,0xd,0x74,
+ 0xf8,0x1d,0xe0,0x71,0x4d,0x62,0xde,0x66,0xba,0x18,0xdb,0x42,0x7d,0xf,0xec,0xcb,
+ 0xad,0xdf,0x0,0x1d,0x48,0xf1,0x18,0x7e,0xb4,0x3,0x94,0xb7,0x90,0x66,0x3a,0x52,
+ 0x43,0x52,0xd9,0x40,0x9a,0xe9,0x48,0xd,0x49,0x65,0x3,0x69,0xa6,0x23,0x35,0x24,
+ 0x15,0x41,0x12,0x90,0x5,0xd2,0x4c,0x47,0x6a,0x48,0x2a,0x8c,0xab,0x32,0x1,0x8c,
+ 0x34,0xd3,0x1,0xc3,0x79,0x1f,0x90,0xa,0x33,0xcc,0x39,0xd4,0x2b,0xe1,0xf4,0x7b,
+ 0x8f,0x15,0xd7,0x50,0x9b,0x9b,0x94,0x32,0xa8,0x1c,0x5f,0xde,0xbb,0xf9,0xdc,0x8f,
+ 0x4f,0x62,0x49,0x97,0x9f,0x10,0xdf,0xfe,0x1e,0xd9,0x21,0x20,0x18,0x80,0x9b,0x72,
+ 0x36,0x3b,0x53,0xba,0x40,0xb5,0x79,0xed,0xe2,0x6e,0xec,0x55,0xe,0x52,0x9c,0xab,
+ 0x33,0xd4,0x9c,0x46,0x46,0x25,0x3d,0xa4,0x2,0xae,0xa6,0xed,0xe0,0xcb,0x9d,0xff,
+ 0xfc,0x92,0x91,0x83,0xd8,0x8a,0x4b,0x6a,0x48,0xc5,0x33,0x1a,0xeb,0x1c,0xfe,0x54,
+ 0xac,0x97,0xe4,0x63,0xc7,0x56,0x5c,0x52,0x13,0x55,0xfc,0xa7,0xaf,0xcc,0xe4,0x7,
+ 0x30,0x18,0x3b,0x8d,0x38,0x2e,0xa2,0x6c,0x2c,0xa9,0x81,0x29,0xd9,0x5a,0x3f,0x2f,
+ 0x37,0xd3,0xb5,0x7e,0x9a,0x6e,0xe6,0x46,0xdb,0x24,0xca,0xc6,0x92,0x1a,0x98,0x6,
+ 0x7a,0x53,0x5b,0x1f,0x16,0x60,0xcd,0x37,0xb2,0xab,0x63,0x2b,0x2e,0xa9,0x21,0x95,
+ 0x19,0x2c,0x45,0x44,0x4e,0x55,0xd0,0xdf,0xb9,0x3,0x4,0x32,0xc8,0xd8,0xfa,0xa0,
+ 0xbf,0x77,0x7,0xd,0xd,0xc0,0xf,0x85,0x7e,0x2,0x6a,0xb4,0xcb,0x3e,0x20,0x86,
+ 0x97,0x94,0x13,0x6d,0x6a,0xda,0x96,0xe3,0x8d,0xc,0xb4,0x90,0x4a,0xc0,0xa5,0x9b,
+ 0x98,0xf0,0x4d,0x82,0xeb,0x2a,0xba,0xa9,0x12,0xdb,0x19,0x8a,0x2c,0x53,0x16,0xbb,
+ 0x8e,0x32,0xb,0x25,0x62,0xba,0x8a,0x38,0xc0,0x81,0x1c,0x60,0x49,0x66,0xe,0xbb,
+ 0x2d,0xc8,0xf3,0x39,0xc4,0xe3,0x78,0x43,0xea,0xa2,0x4,0x66,0x5b,0xc4,0x44,0x2,
+ 0x9e,0x56,0x75,0x28,0x30,0xa4,0xb2,0x1,0x5,0xcb,0xf4,0x75,0xb1,0xbe,0xa,0x16,
+ 0x12,0xa9,0x6c,0xc0,0x53,0x4,0xd7,0x84,0xbd,0x51,0xf0,0x95,0x49,0x65,0x3,0x7c,
+ 0x64,0xc7,0x79,0xa9,0xcf,0xee,0xe6,0x50,0x41,0x81,0xe8,0xac,0xe2,0x13,0xa,0xd6,
+ 0x47,0xdc,0x5f,0xb6,0xd5,0xbe,0xe5,0xd0,0x8b,0xd4,0xff,0x9c,0xba,0xcb,0xdc,0x36,
+ 0x3e,0x33,0x74,0xa5,0x77,0xd9,0xf9,0xf0,0x27,0x47,0xd9,0xe5,0x60,0x2e,0xd2,0x5d,
+ 0xa3,0xe8,0x76,0x70,0xf5,0xae,0x31,0x47,0x81,0xa3,0x9e,0x9d,0xf0,0xbd,0x4b,0x3d,
+ 0xb4,0xeb,0x17,0xf3,0x16,0x2b,0xf5,0x5b,0x58,0x6,0x0,0x43,0xbe,0x1b,0x2,0x48,
+ 0xbd,0xf9,0xbf,0x14,0x44,0x52,0xa9,0x4f,0xfa,0x39,0x3a,0xe4,0xa1,0x7,0x49,0xf2,
+ 0xc6,0xe1,0x2a,0x20,0xad,0xd4,0xcf,0x11,0x99,0xc9,0xfa,0x8,0xd3,0x42,0x6f,0xe1,
+ 0x36,0x23,0xad,0xd4,0xff,0xe3,0x28,0x1d,0x41,0xf8,0xde,0xe4,0x14,0x9e,0x46,0xc0,
+ 0x95,0x77,0x2a,0x6b,0x90,0x2c,0x3,0x93,0x12,0xf,0x5d,0xc8,0xd0,0x4d,0x12,0x93,
+ 0x54,0xea,0xb7,0xc2,0xac,0x3a,0x2c,0x56,0xd1,0xd8,0xf1,0x4d,0x92,0x10,0x2b,0xb,
+ 0x76,0x73,0xaa,0xfb,0x2d,0x25,0x7b,0x99,0xf3,0xb1,0xf7,0x28,0x39,0x68,0x16,0x93,
+ 0xfd,0xd,0xf1,0xea,0x4a,0x49,0xd3,0xbf,0xa6,0x6a,0xcf,0xb8,0xb1,0xd7,0xef,0xe2,
+ 0x93,0x93,0x93,0x3d,0x31,0xe6,0x1f,0xa2,0x74,0xb6,0xe2,0xdf,0x7c,0x9c,0x56,0x0,
+ 0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
+ // /home/hzk/Software_Architecture/src/Client/res/image/health.png.svg
+ 0x0,0x0,0x6,0xa4,
+ 0x3c,
+ 0x73,0x76,0x67,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x39,0x36,0x22,0x20,0x68,
+ 0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x39,0x36,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,
+ 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
+ 0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,0x20,0x78,0x6d,
+ 0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
+ 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,
+ 0x39,0x2f,0x78,0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,
+ 0x63,0x65,0x3d,0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x20,0x6f,0x76,
+ 0x65,0x72,0x66,0x6c,0x6f,0x77,0x3d,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,
+ 0x3c,0x67,0x20,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3d,0x22,0x74,0x72,
+ 0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x28,0x2d,0x35,0x39,0x32,0x20,0x2d,0x33,0x31,
+ 0x32,0x29,0x22,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x36,0x34,
+ 0x30,0x2e,0x32,0x38,0x20,0x33,0x39,0x32,0x43,0x36,0x34,0x34,0x2e,0x36,0x36,0x35,
+ 0x20,0x33,0x38,0x38,0x2e,0x35,0x33,0x38,0x20,0x36,0x34,0x38,0x2e,0x38,0x34,0x38,
+ 0x20,0x33,0x38,0x34,0x2e,0x38,0x32,0x39,0x20,0x36,0x35,0x32,0x2e,0x38,0x31,0x20,
+ 0x33,0x38,0x30,0x2e,0x38,0x39,0x20,0x36,0x35,0x38,0x2e,0x35,0x35,0x33,0x20,0x33,
+ 0x37,0x35,0x2e,0x34,0x31,0x39,0x20,0x36,0x36,0x33,0x2e,0x36,0x33,0x31,0x20,0x33,
+ 0x36,0x39,0x2e,0x32,0x39,0x20,0x36,0x36,0x37,0x2e,0x39,0x34,0x20,0x33,0x36,0x32,
+ 0x2e,0x36,0x33,0x20,0x36,0x37,0x31,0x2e,0x39,0x34,0x20,0x33,0x35,0x36,0x2e,0x31,
+ 0x39,0x20,0x36,0x37,0x35,0x2e,0x37,0x36,0x20,0x33,0x34,0x37,0x2e,0x38,0x33,0x20,
+ 0x36,0x37,0x33,0x2e,0x31,0x33,0x20,0x33,0x34,0x30,0x2e,0x31,0x39,0x20,0x36,0x37,
+ 0x31,0x20,0x33,0x33,0x33,0x2e,0x38,0x37,0x20,0x36,0x36,0x35,0x2e,0x30,0x39,0x20,
+ 0x33,0x32,0x38,0x2e,0x35,0x20,0x36,0x35,0x38,0x2e,0x33,0x20,0x33,0x32,0x37,0x2e,
+ 0x38,0x35,0x20,0x36,0x34,0x39,0x2e,0x37,0x32,0x20,0x33,0x32,0x37,0x20,0x36,0x34,
+ 0x33,0x2e,0x35,0x31,0x20,0x33,0x33,0x34,0x2e,0x32,0x36,0x20,0x36,0x34,0x30,0x20,
+ 0x33,0x34,0x31,0x2e,0x32,0x31,0x20,0x36,0x33,0x36,0x2e,0x37,0x39,0x20,0x33,0x33,
+ 0x34,0x2e,0x38,0x35,0x20,0x36,0x33,0x31,0x2e,0x34,0x38,0x20,0x33,0x32,0x38,0x2e,
+ 0x32,0x39,0x20,0x36,0x32,0x33,0x2e,0x38,0x31,0x20,0x33,0x32,0x37,0x2e,0x38,0x31,
+ 0x20,0x36,0x31,0x37,0x20,0x33,0x32,0x37,0x2e,0x33,0x39,0x20,0x36,0x31,0x30,0x2e,
+ 0x36,0x36,0x20,0x33,0x33,0x32,0x2e,0x31,0x38,0x20,0x36,0x30,0x37,0x2e,0x37,0x33,
+ 0x20,0x33,0x33,0x38,0x2e,0x31,0x33,0x20,0x36,0x30,0x34,0x2e,0x30,0x36,0x20,0x33,
+ 0x34,0x35,0x2e,0x36,0x20,0x36,0x30,0x37,0x2e,0x30,0x35,0x20,0x33,0x35,0x34,0x20,
+ 0x36,0x31,0x30,0x2e,0x39,0x31,0x20,0x33,0x36,0x30,0x2e,0x37,0x31,0x20,0x36,0x31,
+ 0x34,0x2e,0x39,0x31,0x20,0x33,0x36,0x37,0x2e,0x37,0x31,0x20,0x36,0x32,0x30,0x2e,
+ 0x32,0x33,0x20,0x33,0x37,0x33,0x2e,0x38,0x36,0x20,0x36,0x32,0x35,0x2e,0x38,0x35,
+ 0x20,0x33,0x37,0x39,0x2e,0x35,0x35,0x20,0x36,0x33,0x30,0x2e,0x32,0x38,0x20,0x33,
+ 0x38,0x34,0x2e,0x30,0x38,0x33,0x20,0x36,0x33,0x35,0x2e,0x30,0x30,0x37,0x20,0x33,
+ 0x38,0x38,0x2e,0x33,0x31,0x35,0x20,0x36,0x34,0x30,0x20,0x33,0x39,0x32,0x2e,0x32,
+ 0x32,0x5a,0x4d,0x36,0x32,0x34,0x20,0x33,0x35,0x38,0x20,0x36,0x32,0x37,0x20,0x33,
+ 0x34,0x39,0x20,0x36,0x32,0x38,0x2e,0x37,0x38,0x20,0x33,0x34,0x33,0x2e,0x36,0x35,
+ 0x43,0x36,0x32,0x39,0x2e,0x32,0x34,0x20,0x33,0x34,0x32,0x2e,0x32,0x36,0x20,0x36,
+ 0x32,0x39,0x2e,0x39,0x35,0x20,0x33,0x34,0x30,0x2e,0x34,0x20,0x36,0x33,0x31,0x2e,
+ 0x38,0x37,0x20,0x33,0x34,0x31,0x2e,0x32,0x20,0x36,0x33,0x33,0x2e,0x30,0x33,0x20,
+ 0x33,0x34,0x31,0x2e,0x36,0x39,0x20,0x36,0x33,0x33,0x2e,0x31,0x20,0x33,0x34,0x32,
+ 0x2e,0x38,0x39,0x20,0x36,0x33,0x33,0x2e,0x33,0x20,0x33,0x34,0x33,0x2e,0x39,0x34,
+ 0x4c,0x36,0x33,0x34,0x2e,0x31,0x33,0x20,0x33,0x34,0x38,0x2e,0x33,0x37,0x20,0x36,
+ 0x33,0x36,0x2e,0x35,0x33,0x20,0x33,0x36,0x31,0x2e,0x31,0x37,0x20,0x36,0x33,0x38,
+ 0x2e,0x31,0x32,0x20,0x33,0x36,0x39,0x2e,0x36,0x37,0x20,0x36,0x34,0x33,0x2e,0x39,
+ 0x32,0x20,0x33,0x35,0x34,0x2e,0x33,0x33,0x20,0x36,0x34,0x35,0x2e,0x32,0x20,0x33,
+ 0x35,0x30,0x2e,0x39,0x35,0x43,0x36,0x34,0x35,0x2e,0x35,0x37,0x20,0x33,0x34,0x39,
+ 0x2e,0x39,0x35,0x20,0x36,0x34,0x35,0x2e,0x39,0x35,0x20,0x33,0x34,0x38,0x2e,0x39,
+ 0x35,0x20,0x36,0x34,0x37,0x2e,0x32,0x20,0x33,0x34,0x38,0x2e,0x38,0x34,0x20,0x36,
+ 0x34,0x38,0x2e,0x37,0x39,0x20,0x33,0x34,0x38,0x2e,0x36,0x38,0x20,0x36,0x34,0x39,
+ 0x2e,0x32,0x36,0x20,0x33,0x35,0x30,0x2e,0x30,0x34,0x20,0x36,0x34,0x39,0x2e,0x36,
+ 0x31,0x20,0x33,0x35,0x31,0x2e,0x32,0x34,0x4c,0x36,0x35,0x30,0x2e,0x38,0x34,0x20,
+ 0x33,0x35,0x35,0x2e,0x34,0x36,0x20,0x36,0x35,0x33,0x2e,0x32,0x38,0x20,0x33,0x36,
+ 0x33,0x2e,0x38,0x35,0x20,0x36,0x35,0x35,0x2e,0x36,0x39,0x20,0x33,0x36,0x31,0x2e,
+ 0x32,0x43,0x36,0x35,0x36,0x2e,0x34,0x36,0x31,0x20,0x33,0x36,0x30,0x2e,0x31,0x39,
+ 0x31,0x20,0x36,0x35,0x37,0x2e,0x33,0x32,0x38,0x20,0x33,0x35,0x39,0x2e,0x32,0x36,
+ 0x20,0x36,0x35,0x38,0x2e,0x32,0x38,0x20,0x33,0x35,0x38,0x2e,0x34,0x32,0x20,0x36,
+ 0x35,0x39,0x2e,0x32,0x38,0x20,0x33,0x35,0x37,0x2e,0x37,0x32,0x20,0x36,0x36,0x31,
+ 0x2e,0x31,0x33,0x20,0x33,0x35,0x38,0x2e,0x30,0x34,0x20,0x36,0x36,0x32,0x2e,0x32,
+ 0x38,0x20,0x33,0x35,0x38,0x2e,0x30,0x34,0x4c,0x36,0x36,0x36,0x20,0x33,0x35,0x38,
+ 0x2e,0x30,0x34,0x43,0x36,0x36,0x35,0x2e,0x32,0x36,0x20,0x33,0x35,0x39,0x2e,0x33,
+ 0x37,0x20,0x36,0x36,0x34,0x2e,0x34,0x34,0x20,0x33,0x36,0x30,0x2e,0x37,0x31,0x20,
+ 0x36,0x36,0x33,0x2e,0x35,0x35,0x20,0x33,0x36,0x32,0x2e,0x30,0x34,0x4c,0x36,0x36,
+ 0x30,0x2e,0x33,0x20,0x33,0x36,0x32,0x2e,0x30,0x34,0x43,0x36,0x35,0x38,0x2e,0x31,
+ 0x37,0x20,0x33,0x36,0x34,0x2e,0x33,0x39,0x20,0x36,0x35,0x36,0x2e,0x31,0x33,0x20,
+ 0x33,0x36,0x36,0x2e,0x38,0x39,0x20,0x36,0x35,0x33,0x2e,0x38,0x37,0x20,0x33,0x36,
+ 0x39,0x2e,0x31,0x32,0x20,0x36,0x35,0x33,0x2e,0x31,0x36,0x31,0x20,0x33,0x36,0x39,
+ 0x2e,0x39,0x36,0x37,0x20,0x36,0x35,0x31,0x2e,0x39,0x20,0x33,0x37,0x30,0x2e,0x30,
+ 0x37,0x39,0x20,0x36,0x35,0x31,0x2e,0x30,0x35,0x33,0x20,0x33,0x36,0x39,0x2e,0x33,
+ 0x37,0x20,0x36,0x35,0x30,0x2e,0x38,0x38,0x36,0x20,0x33,0x36,0x39,0x2e,0x32,0x33,
+ 0x31,0x20,0x36,0x35,0x30,0x2e,0x37,0x34,0x33,0x20,0x33,0x36,0x39,0x2e,0x30,0x36,
+ 0x35,0x20,0x36,0x35,0x30,0x2e,0x36,0x33,0x20,0x33,0x36,0x38,0x2e,0x38,0x38,0x20,
+ 0x36,0x35,0x30,0x2e,0x34,0x31,0x33,0x20,0x33,0x36,0x38,0x2e,0x34,0x35,0x20,0x36,
+ 0x35,0x30,0x2e,0x32,0x35,0x35,0x20,0x33,0x36,0x37,0x2e,0x39,0x39,0x32,0x20,0x36,
+ 0x35,0x30,0x2e,0x31,0x36,0x20,0x33,0x36,0x37,0x2e,0x35,0x32,0x4c,0x36,0x34,0x38,
+ 0x2e,0x34,0x39,0x20,0x33,0x36,0x31,0x2e,0x38,0x31,0x20,0x36,0x34,0x37,0x2e,0x31,
+ 0x33,0x20,0x33,0x35,0x37,0x2e,0x31,0x33,0x43,0x36,0x34,0x34,0x2e,0x35,0x38,0x20,
+ 0x33,0x36,0x33,0x2e,0x38,0x36,0x20,0x36,0x34,0x32,0x2e,0x31,0x33,0x20,0x33,0x37,
+ 0x30,0x2e,0x36,0x20,0x36,0x33,0x39,0x2e,0x35,0x20,0x33,0x37,0x37,0x2e,0x33,0x20,
+ 0x36,0x33,0x39,0x2e,0x33,0x35,0x33,0x20,0x33,0x37,0x37,0x2e,0x38,0x34,0x36,0x20,
+ 0x36,0x33,0x39,0x2e,0x30,0x33,0x34,0x20,0x33,0x37,0x38,0x2e,0x33,0x33,0x20,0x36,
+ 0x33,0x38,0x2e,0x35,0x39,0x20,0x33,0x37,0x38,0x2e,0x36,0x38,0x20,0x36,0x33,0x37,
+ 0x2e,0x36,0x38,0x20,0x33,0x37,0x39,0x2e,0x33,0x30,0x35,0x20,0x36,0x33,0x36,0x2e,
+ 0x34,0x33,0x35,0x20,0x33,0x37,0x39,0x2e,0x30,0x37,0x34,0x20,0x36,0x33,0x35,0x2e,
+ 0x38,0x30,0x39,0x20,0x33,0x37,0x38,0x2e,0x31,0x36,0x34,0x20,0x36,0x33,0x35,0x2e,
+ 0x36,0x34,0x39,0x20,0x33,0x37,0x37,0x2e,0x39,0x33,0x31,0x20,0x36,0x33,0x35,0x2e,
+ 0x35,0x34,0x31,0x20,0x33,0x37,0x37,0x2e,0x36,0x36,0x38,0x20,0x36,0x33,0x35,0x2e,
+ 0x34,0x39,0x20,0x33,0x37,0x37,0x2e,0x33,0x39,0x20,0x36,0x33,0x35,0x2e,0x32,0x36,
+ 0x20,0x33,0x37,0x36,0x2e,0x34,0x37,0x20,0x36,0x33,0x35,0x2e,0x31,0x34,0x20,0x33,
+ 0x37,0x35,0x2e,0x35,0x31,0x20,0x36,0x33,0x34,0x2e,0x39,0x36,0x20,0x33,0x37,0x34,
+ 0x2e,0x35,0x39,0x4c,0x36,0x33,0x32,0x2e,0x34,0x33,0x20,0x33,0x36,0x31,0x2e,0x30,
+ 0x39,0x20,0x36,0x33,0x30,0x2e,0x35,0x34,0x20,0x33,0x35,0x31,0x20,0x36,0x32,0x37,
+ 0x2e,0x37,0x32,0x20,0x33,0x35,0x39,0x2e,0x34,0x37,0x43,0x36,0x32,0x37,0x2e,0x32,
+ 0x39,0x20,0x33,0x36,0x30,0x2e,0x37,0x33,0x20,0x36,0x32,0x36,0x2e,0x39,0x35,0x20,
+ 0x33,0x36,0x31,0x2e,0x39,0x36,0x20,0x36,0x32,0x35,0x2e,0x33,0x33,0x20,0x33,0x36,
+ 0x32,0x2e,0x30,0x34,0x20,0x36,0x32,0x33,0x2e,0x38,0x36,0x20,0x33,0x36,0x32,0x2e,
+ 0x31,0x31,0x20,0x36,0x32,0x32,0x2e,0x33,0x38,0x20,0x33,0x36,0x32,0x2e,0x30,0x34,
+ 0x20,0x36,0x32,0x30,0x2e,0x39,0x32,0x20,0x33,0x36,0x32,0x2e,0x30,0x34,0x4c,0x36,
+ 0x31,0x36,0x2e,0x34,0x32,0x20,0x33,0x36,0x32,0x2e,0x30,0x34,0x43,0x36,0x31,0x35,
+ 0x2e,0x35,0x34,0x20,0x33,0x36,0x30,0x2e,0x37,0x31,0x20,0x36,0x31,0x34,0x2e,0x37,
+ 0x31,0x20,0x33,0x35,0x39,0x2e,0x33,0x37,0x20,0x36,0x31,0x33,0x2e,0x39,0x37,0x20,
+ 0x33,0x35,0x38,0x2e,0x30,0x34,0x5a,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,
+ 0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x2f,0x67,0x3e,0x3c,0x2f,0x73,
+ 0x76,0x67,0x3e,
+ // /home/hzk/Software_Architecture/src/Client/res/image/tab.png
+ 0x0,0x0,0x1,0x2b,
+ 0x89,
+ 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+ 0x0,0x0,0x60,0x0,0x0,0x0,0x60,0x8,0x3,0x0,0x0,0x0,0xd5,0x46,0x87,0xa,
+ 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
+ 0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,0x0,0x0,0x0,
+ 0x6,0x50,0x4c,0x54,0x45,0x0,0x0,0x0,0xff,0xff,0xff,0xa5,0xd9,0x9f,0xdd,0x0,
+ 0x0,0x0,0x1,0x74,0x52,0x4e,0x53,0x0,0x40,0xe6,0xd8,0x66,0x0,0x0,0x0,0x9,
+ 0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc3,0x0,0x0,0xe,0xc3,0x1,0xc7,0x6f,0xa8,
+ 0x64,0x0,0x0,0x0,0xa1,0x49,0x44,0x41,0x54,0x68,0x43,0xed,0xcd,0x31,0xa,0xc4,
+ 0x50,0x10,0xc3,0xd0,0xec,0xfd,0x2f,0xbd,0x61,0x10,0xb8,0xfa,0x53,0x4,0x17,0x21,
+ 0xe8,0x95,0x2a,0xec,0x4b,0x92,0x24,0xbd,0xcb,0xaf,0x8c,0xd9,0xa0,0xd7,0x30,0x1b,
+ 0xf4,0x1a,0x66,0x83,0x5e,0xc3,0x6c,0xd0,0x6b,0x98,0xd,0x7a,0xd,0xb3,0x71,0xc8,
+ 0xb7,0x27,0xdd,0x83,0xb1,0x75,0xf,0xc6,0xd6,0x3d,0x18,0x5b,0xff,0xf0,0x41,0xf,
+ 0xb3,0x41,0xaf,0x61,0x36,0xe8,0x35,0xcc,0x6,0xbd,0x86,0xd9,0x38,0xe4,0xdb,0x93,
+ 0xee,0xc1,0xd8,0xba,0x7,0x63,0xeb,0x1e,0x8c,0xad,0x7f,0xf8,0xa0,0x87,0xd9,0xa0,
+ 0xd7,0x30,0x1b,0xf4,0x1a,0x66,0x83,0x5e,0xc3,0x6c,0x1c,0xf2,0xed,0x49,0xf7,0x60,
+ 0x6c,0xdd,0x83,0xb1,0x75,0xf,0xc6,0xd6,0x3f,0x7c,0xd0,0xc3,0x6c,0xd0,0x6b,0x98,
+ 0xd,0x7a,0xd,0xb3,0x41,0xaf,0x61,0x36,0xe8,0x35,0xcc,0x6,0xbd,0x86,0x59,0x49,
+ 0x92,0xf4,0xa,0xd7,0xf5,0x7,0x1,0xb,0x9,0x11,0x16,0xbd,0x15,0xf5,0x0,0x0,
+ 0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
+ // /home/hzk/Software_Architecture/src/Client/res/image/infomation.svg
+ 0x0,0x0,0x3,0xe9,
+ 0x3c,
+ 0x73,0x76,0x67,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x39,0x36,0x22,0x20,0x68,
+ 0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x39,0x36,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,
+ 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
+ 0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,0x20,0x78,0x6d,
+ 0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
+ 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,
+ 0x39,0x2f,0x78,0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,
+ 0x63,0x65,0x3d,0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x20,0x6f,0x76,
+ 0x65,0x72,0x66,0x6c,0x6f,0x77,0x3d,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,
+ 0x3c,0x67,0x20,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3d,0x22,0x74,0x72,
+ 0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x28,0x2d,0x38,0x30,0x30,0x20,0x2d,0x33,0x34,
+ 0x35,0x29,0x22,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x38,0x37,
+ 0x36,0x20,0x34,0x31,0x39,0x43,0x38,0x37,0x36,0x20,0x34,0x32,0x30,0x2e,0x31,0x20,
+ 0x38,0x37,0x35,0x2e,0x31,0x20,0x34,0x32,0x31,0x20,0x38,0x37,0x34,0x20,0x34,0x32,
+ 0x31,0x20,0x38,0x37,0x32,0x2e,0x39,0x20,0x34,0x32,0x31,0x20,0x38,0x37,0x32,0x20,
+ 0x34,0x32,0x30,0x2e,0x31,0x20,0x38,0x37,0x32,0x20,0x34,0x31,0x39,0x4c,0x38,0x37,
+ 0x32,0x20,0x33,0x37,0x31,0x20,0x38,0x37,0x36,0x20,0x33,0x37,0x31,0x20,0x38,0x37,
+ 0x36,0x20,0x34,0x31,0x39,0x5a,0x4d,0x38,0x32,0x32,0x20,0x34,0x32,0x31,0x43,0x38,
+ 0x32,0x30,0x2e,0x39,0x20,0x34,0x32,0x31,0x20,0x38,0x32,0x30,0x20,0x34,0x32,0x30,
+ 0x2e,0x31,0x20,0x38,0x32,0x30,0x20,0x34,0x31,0x39,0x4c,0x38,0x32,0x30,0x20,0x33,
+ 0x36,0x35,0x20,0x38,0x36,0x36,0x20,0x33,0x36,0x35,0x20,0x38,0x36,0x36,0x20,0x34,
+ 0x31,0x39,0x43,0x38,0x36,0x36,0x20,0x34,0x31,0x39,0x2e,0x37,0x20,0x38,0x36,0x36,
+ 0x2e,0x31,0x20,0x34,0x32,0x30,0x2e,0x34,0x20,0x38,0x36,0x36,0x2e,0x33,0x20,0x34,
+ 0x32,0x31,0x4c,0x38,0x32,0x32,0x20,0x34,0x32,0x31,0x5a,0x4d,0x38,0x37,0x32,0x20,
+ 0x33,0x36,0x35,0x20,0x38,0x37,0x32,0x20,0x33,0x35,0x39,0x20,0x38,0x31,0x34,0x20,
+ 0x33,0x35,0x39,0x20,0x38,0x31,0x34,0x20,0x34,0x31,0x39,0x43,0x38,0x31,0x34,0x20,
+ 0x34,0x32,0x33,0x2e,0x34,0x20,0x38,0x31,0x37,0x2e,0x36,0x20,0x34,0x32,0x37,0x20,
+ 0x38,0x32,0x32,0x20,0x34,0x32,0x37,0x4c,0x38,0x37,0x34,0x20,0x34,0x32,0x37,0x43,
+ 0x38,0x37,0x38,0x2e,0x34,0x20,0x34,0x32,0x37,0x20,0x38,0x38,0x32,0x20,0x34,0x32,
+ 0x33,0x2e,0x34,0x20,0x38,0x38,0x32,0x20,0x34,0x31,0x39,0x4c,0x38,0x38,0x32,0x20,
+ 0x33,0x36,0x35,0x20,0x38,0x37,0x32,0x20,0x33,0x36,0x35,0x5a,0x22,0x20,0x66,0x69,
+ 0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x70,
+ 0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x38,0x32,0x34,0x20,0x33,0x37,0x31,0x20,
+ 0x38,0x36,0x32,0x20,0x33,0x37,0x31,0x20,0x38,0x36,0x32,0x20,0x33,0x37,0x35,0x20,
+ 0x38,0x32,0x34,0x20,0x33,0x37,0x35,0x5a,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,
+ 0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,
+ 0x64,0x3d,0x22,0x4d,0x38,0x34,0x35,0x20,0x33,0x37,0x39,0x20,0x38,0x36,0x32,0x20,
+ 0x33,0x37,0x39,0x20,0x38,0x36,0x32,0x20,0x33,0x38,0x33,0x20,0x38,0x34,0x35,0x20,
+ 0x33,0x38,0x33,0x5a,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,
+ 0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,
+ 0x38,0x34,0x35,0x20,0x33,0x38,0x37,0x20,0x38,0x36,0x32,0x20,0x33,0x38,0x37,0x20,
+ 0x38,0x36,0x32,0x20,0x33,0x39,0x31,0x20,0x38,0x34,0x35,0x20,0x33,0x39,0x31,0x5a,
+ 0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,
+ 0x2f,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x38,0x32,0x34,0x20,
+ 0x33,0x37,0x39,0x20,0x38,0x34,0x31,0x20,0x33,0x37,0x39,0x20,0x38,0x34,0x31,0x20,
+ 0x33,0x39,0x31,0x20,0x38,0x32,0x34,0x20,0x33,0x39,0x31,0x5a,0x22,0x20,0x66,0x69,
+ 0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x70,
+ 0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x38,0x32,0x34,0x20,0x33,0x39,0x35,0x20,
+ 0x38,0x36,0x32,0x20,0x33,0x39,0x35,0x20,0x38,0x36,0x32,0x20,0x33,0x39,0x39,0x20,
+ 0x38,0x32,0x34,0x20,0x33,0x39,0x39,0x5a,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,
+ 0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,
+ 0x64,0x3d,0x22,0x4d,0x38,0x34,0x35,0x20,0x34,0x30,0x33,0x20,0x38,0x36,0x32,0x20,
+ 0x34,0x30,0x33,0x20,0x38,0x36,0x32,0x20,0x34,0x31,0x35,0x20,0x38,0x34,0x35,0x20,
+ 0x34,0x31,0x35,0x5a,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,
+ 0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,
+ 0x38,0x32,0x34,0x20,0x34,0x30,0x33,0x20,0x38,0x34,0x31,0x20,0x34,0x30,0x33,0x20,
+ 0x38,0x34,0x31,0x20,0x34,0x30,0x37,0x20,0x38,0x32,0x34,0x20,0x34,0x30,0x37,0x5a,
+ 0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,
+ 0x2f,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x38,0x32,0x34,0x20,
+ 0x34,0x31,0x31,0x20,0x38,0x34,0x31,0x20,0x34,0x31,0x31,0x20,0x38,0x34,0x31,0x20,
+ 0x34,0x31,0x35,0x20,0x38,0x32,0x34,0x20,0x34,0x31,0x35,0x5a,0x22,0x20,0x66,0x69,
+ 0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x2f,
+ 0x67,0x3e,0x3c,0x2f,0x73,0x76,0x67,0x3e,
+ // /home/hzk/Software_Architecture/src/Client/res/image/robotbtn.svg
+ 0x0,0x0,0xd,0x82,
+ 0x3c,
+ 0x73,0x76,0x67,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x39,0x36,0x22,0x20,0x68,
+ 0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x39,0x36,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,
+ 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
+ 0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,0x20,0x78,0x6d,
+ 0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
+ 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,
+ 0x39,0x2f,0x78,0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,
+ 0x63,0x65,0x3d,0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x20,0x6f,0x76,
+ 0x65,0x72,0x66,0x6c,0x6f,0x77,0x3d,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,
+ 0x3c,0x67,0x20,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3d,0x22,0x74,0x72,
+ 0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x28,0x2d,0x35,0x39,0x32,0x20,0x2d,0x31,0x30,
+ 0x38,0x29,0x22,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x36,0x35,
+ 0x36,0x2e,0x34,0x32,0x20,0x31,0x38,0x30,0x20,0x36,0x32,0x33,0x2e,0x34,0x32,0x20,
+ 0x31,0x38,0x30,0x43,0x36,0x31,0x39,0x2e,0x32,0x37,0x38,0x20,0x31,0x38,0x30,0x20,
+ 0x36,0x31,0x35,0x2e,0x39,0x32,0x20,0x31,0x38,0x33,0x2e,0x33,0x35,0x38,0x20,0x36,
+ 0x31,0x35,0x2e,0x39,0x32,0x20,0x31,0x38,0x37,0x2e,0x35,0x20,0x36,0x31,0x35,0x2e,
+ 0x39,0x32,0x20,0x31,0x39,0x31,0x2e,0x36,0x34,0x32,0x20,0x36,0x31,0x39,0x2e,0x32,
+ 0x37,0x38,0x20,0x31,0x39,0x35,0x20,0x36,0x32,0x33,0x2e,0x34,0x32,0x20,0x31,0x39,
+ 0x35,0x4c,0x36,0x35,0x36,0x2e,0x34,0x32,0x20,0x31,0x39,0x35,0x43,0x36,0x36,0x30,
+ 0x2e,0x35,0x36,0x32,0x20,0x31,0x39,0x35,0x20,0x36,0x36,0x33,0x2e,0x39,0x32,0x20,
+ 0x31,0x39,0x31,0x2e,0x36,0x34,0x32,0x20,0x36,0x36,0x33,0x2e,0x39,0x32,0x20,0x31,
+ 0x38,0x37,0x2e,0x35,0x20,0x36,0x36,0x33,0x2e,0x39,0x32,0x20,0x31,0x38,0x33,0x2e,
+ 0x33,0x35,0x38,0x20,0x36,0x36,0x30,0x2e,0x35,0x36,0x32,0x20,0x31,0x38,0x30,0x20,
+ 0x36,0x35,0x36,0x2e,0x34,0x32,0x20,0x31,0x38,0x30,0x5a,0x4d,0x36,0x32,0x35,0x2e,
+ 0x34,0x32,0x20,0x31,0x39,0x30,0x2e,0x35,0x43,0x36,0x32,0x33,0x2e,0x37,0x36,0x33,
+ 0x20,0x31,0x39,0x30,0x2e,0x35,0x20,0x36,0x32,0x32,0x2e,0x34,0x32,0x20,0x31,0x38,
+ 0x39,0x2e,0x31,0x35,0x37,0x20,0x36,0x32,0x32,0x2e,0x34,0x32,0x20,0x31,0x38,0x37,
+ 0x2e,0x35,0x20,0x36,0x32,0x32,0x2e,0x34,0x32,0x20,0x31,0x38,0x35,0x2e,0x38,0x34,
+ 0x33,0x20,0x36,0x32,0x33,0x2e,0x37,0x36,0x33,0x20,0x31,0x38,0x34,0x2e,0x35,0x20,
+ 0x36,0x32,0x35,0x2e,0x34,0x32,0x20,0x31,0x38,0x34,0x2e,0x35,0x20,0x36,0x32,0x37,
+ 0x2e,0x30,0x37,0x37,0x20,0x31,0x38,0x34,0x2e,0x35,0x20,0x36,0x32,0x38,0x2e,0x34,
+ 0x32,0x20,0x31,0x38,0x35,0x2e,0x38,0x34,0x33,0x20,0x36,0x32,0x38,0x2e,0x34,0x32,
+ 0x20,0x31,0x38,0x37,0x2e,0x35,0x20,0x36,0x32,0x38,0x2e,0x34,0x32,0x20,0x31,0x38,
+ 0x39,0x2e,0x31,0x35,0x37,0x20,0x36,0x32,0x37,0x2e,0x30,0x37,0x37,0x20,0x31,0x39,
+ 0x30,0x2e,0x35,0x20,0x36,0x32,0x35,0x2e,0x34,0x32,0x20,0x31,0x39,0x30,0x2e,0x35,
+ 0x5a,0x4d,0x36,0x33,0x39,0x2e,0x39,0x32,0x20,0x31,0x39,0x30,0x2e,0x35,0x43,0x36,
+ 0x33,0x38,0x2e,0x32,0x36,0x33,0x20,0x31,0x39,0x30,0x2e,0x35,0x20,0x36,0x33,0x36,
+ 0x2e,0x39,0x32,0x20,0x31,0x38,0x39,0x2e,0x31,0x35,0x37,0x20,0x36,0x33,0x36,0x2e,
+ 0x39,0x32,0x20,0x31,0x38,0x37,0x2e,0x35,0x20,0x36,0x33,0x36,0x2e,0x39,0x32,0x20,
+ 0x31,0x38,0x35,0x2e,0x38,0x34,0x33,0x20,0x36,0x33,0x38,0x2e,0x32,0x36,0x33,0x20,
+ 0x31,0x38,0x34,0x2e,0x35,0x20,0x36,0x33,0x39,0x2e,0x39,0x32,0x20,0x31,0x38,0x34,
+ 0x2e,0x35,0x20,0x36,0x34,0x31,0x2e,0x35,0x37,0x37,0x20,0x31,0x38,0x34,0x2e,0x35,
+ 0x20,0x36,0x34,0x32,0x2e,0x39,0x32,0x20,0x31,0x38,0x35,0x2e,0x38,0x34,0x33,0x20,
+ 0x36,0x34,0x32,0x2e,0x39,0x32,0x20,0x31,0x38,0x37,0x2e,0x35,0x20,0x36,0x34,0x32,
+ 0x2e,0x39,0x32,0x20,0x31,0x38,0x39,0x2e,0x31,0x35,0x37,0x20,0x36,0x34,0x31,0x2e,
+ 0x35,0x37,0x37,0x20,0x31,0x39,0x30,0x2e,0x35,0x20,0x36,0x33,0x39,0x2e,0x39,0x32,
+ 0x20,0x31,0x39,0x30,0x2e,0x35,0x5a,0x4d,0x36,0x35,0x34,0x2e,0x34,0x32,0x20,0x31,
+ 0x39,0x30,0x2e,0x35,0x43,0x36,0x35,0x32,0x2e,0x37,0x36,0x33,0x20,0x31,0x39,0x30,
+ 0x2e,0x35,0x20,0x36,0x35,0x31,0x2e,0x34,0x32,0x20,0x31,0x38,0x39,0x2e,0x31,0x35,
+ 0x37,0x20,0x36,0x35,0x31,0x2e,0x34,0x32,0x20,0x31,0x38,0x37,0x2e,0x35,0x20,0x36,
+ 0x35,0x31,0x2e,0x34,0x32,0x20,0x31,0x38,0x35,0x2e,0x38,0x34,0x33,0x20,0x36,0x35,
+ 0x32,0x2e,0x37,0x36,0x33,0x20,0x31,0x38,0x34,0x2e,0x35,0x20,0x36,0x35,0x34,0x2e,
+ 0x34,0x32,0x20,0x31,0x38,0x34,0x2e,0x35,0x20,0x36,0x35,0x36,0x2e,0x30,0x37,0x37,
+ 0x20,0x31,0x38,0x34,0x2e,0x35,0x20,0x36,0x35,0x37,0x2e,0x34,0x32,0x20,0x31,0x38,
+ 0x35,0x2e,0x38,0x34,0x33,0x20,0x36,0x35,0x37,0x2e,0x34,0x32,0x20,0x31,0x38,0x37,
+ 0x2e,0x35,0x20,0x36,0x35,0x37,0x2e,0x34,0x32,0x20,0x31,0x38,0x39,0x2e,0x31,0x35,
+ 0x37,0x20,0x36,0x35,0x36,0x2e,0x30,0x37,0x37,0x20,0x31,0x39,0x30,0x2e,0x35,0x20,
+ 0x36,0x35,0x34,0x2e,0x34,0x32,0x20,0x31,0x39,0x30,0x2e,0x35,0x5a,0x22,0x20,0x66,
+ 0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,
+ 0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x36,0x34,0x36,0x2e,0x38,0x33,0x20,
+ 0x31,0x33,0x36,0x43,0x36,0x34,0x36,0x2e,0x38,0x33,0x20,0x31,0x33,0x36,0x2e,0x38,
+ 0x32,0x38,0x20,0x36,0x34,0x36,0x2e,0x31,0x35,0x38,0x20,0x31,0x33,0x37,0x2e,0x35,
+ 0x20,0x36,0x34,0x35,0x2e,0x33,0x33,0x20,0x31,0x33,0x37,0x2e,0x35,0x20,0x36,0x34,
+ 0x34,0x2e,0x35,0x30,0x32,0x20,0x31,0x33,0x37,0x2e,0x35,0x20,0x36,0x34,0x33,0x2e,
+ 0x38,0x33,0x20,0x31,0x33,0x36,0x2e,0x38,0x32,0x38,0x20,0x36,0x34,0x33,0x2e,0x38,
+ 0x33,0x20,0x31,0x33,0x36,0x20,0x36,0x34,0x33,0x2e,0x38,0x33,0x20,0x31,0x33,0x35,
+ 0x2e,0x31,0x37,0x32,0x20,0x36,0x34,0x34,0x2e,0x35,0x30,0x32,0x20,0x31,0x33,0x34,
+ 0x2e,0x35,0x20,0x36,0x34,0x35,0x2e,0x33,0x33,0x20,0x31,0x33,0x34,0x2e,0x35,0x20,
+ 0x36,0x34,0x36,0x2e,0x31,0x35,0x38,0x20,0x31,0x33,0x34,0x2e,0x35,0x20,0x36,0x34,
+ 0x36,0x2e,0x38,0x33,0x20,0x31,0x33,0x35,0x2e,0x31,0x37,0x32,0x20,0x36,0x34,0x36,
+ 0x2e,0x38,0x33,0x20,0x31,0x33,0x36,0x5a,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,
+ 0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,
+ 0x64,0x3d,0x22,0x4d,0x36,0x34,0x38,0x2e,0x36,0x31,0x20,0x31,0x32,0x36,0x20,0x36,
+ 0x34,0x32,0x20,0x31,0x32,0x36,0x20,0x36,0x34,0x32,0x20,0x31,0x32,0x31,0x2e,0x34,
+ 0x35,0x43,0x36,0x34,0x33,0x2e,0x39,0x31,0x33,0x20,0x31,0x32,0x30,0x2e,0x33,0x34,
+ 0x35,0x20,0x36,0x34,0x34,0x2e,0x35,0x36,0x39,0x20,0x31,0x31,0x37,0x2e,0x38,0x39,
+ 0x39,0x20,0x36,0x34,0x33,0x2e,0x34,0x36,0x34,0x20,0x31,0x31,0x35,0x2e,0x39,0x38,
+ 0x36,0x20,0x36,0x34,0x32,0x2e,0x33,0x35,0x39,0x20,0x31,0x31,0x34,0x2e,0x30,0x37,
+ 0x33,0x20,0x36,0x33,0x39,0x2e,0x39,0x31,0x33,0x20,0x31,0x31,0x33,0x2e,0x34,0x31,
+ 0x37,0x20,0x36,0x33,0x38,0x20,0x31,0x31,0x34,0x2e,0x35,0x32,0x32,0x20,0x36,0x33,
+ 0x36,0x2e,0x30,0x38,0x37,0x20,0x31,0x31,0x35,0x2e,0x36,0x32,0x36,0x20,0x36,0x33,
+ 0x35,0x2e,0x34,0x33,0x31,0x20,0x31,0x31,0x38,0x2e,0x30,0x37,0x33,0x20,0x36,0x33,
+ 0x36,0x2e,0x35,0x33,0x36,0x20,0x31,0x31,0x39,0x2e,0x39,0x38,0x36,0x20,0x36,0x33,
+ 0x36,0x2e,0x38,0x38,0x37,0x20,0x31,0x32,0x30,0x2e,0x35,0x39,0x34,0x20,0x36,0x33,
+ 0x37,0x2e,0x33,0x39,0x32,0x20,0x31,0x32,0x31,0x2e,0x30,0x39,0x39,0x20,0x36,0x33,
+ 0x38,0x20,0x31,0x32,0x31,0x2e,0x34,0x35,0x4c,0x36,0x33,0x38,0x20,0x31,0x32,0x36,
+ 0x20,0x36,0x33,0x31,0x2e,0x33,0x39,0x20,0x31,0x32,0x36,0x43,0x36,0x32,0x38,0x2e,
+ 0x39,0x36,0x38,0x20,0x31,0x32,0x36,0x2e,0x30,0x30,0x36,0x20,0x36,0x32,0x37,0x2e,
+ 0x30,0x30,0x35,0x20,0x31,0x32,0x37,0x2e,0x39,0x36,0x38,0x20,0x36,0x32,0x37,0x20,
+ 0x31,0x33,0x30,0x2e,0x33,0x39,0x4c,0x36,0x32,0x37,0x20,0x31,0x34,0x31,0x2e,0x36,
+ 0x31,0x43,0x36,0x32,0x37,0x2e,0x30,0x30,0x35,0x20,0x31,0x34,0x34,0x2e,0x30,0x33,
+ 0x32,0x20,0x36,0x32,0x38,0x2e,0x39,0x36,0x38,0x20,0x31,0x34,0x35,0x2e,0x39,0x39,
+ 0x35,0x20,0x36,0x33,0x31,0x2e,0x33,0x39,0x20,0x31,0x34,0x36,0x4c,0x36,0x34,0x38,
+ 0x2e,0x36,0x31,0x20,0x31,0x34,0x36,0x43,0x36,0x35,0x31,0x2e,0x30,0x33,0x32,0x20,
+ 0x31,0x34,0x35,0x2e,0x39,0x39,0x35,0x20,0x36,0x35,0x32,0x2e,0x39,0x39,0x35,0x20,
+ 0x31,0x34,0x34,0x2e,0x30,0x33,0x32,0x20,0x36,0x35,0x33,0x20,0x31,0x34,0x31,0x2e,
+ 0x36,0x31,0x4c,0x36,0x35,0x33,0x20,0x31,0x33,0x30,0x2e,0x33,0x39,0x43,0x36,0x35,
+ 0x32,0x2e,0x39,0x39,0x35,0x20,0x31,0x32,0x37,0x2e,0x39,0x36,0x38,0x20,0x36,0x35,
+ 0x31,0x2e,0x30,0x33,0x32,0x20,0x31,0x32,0x36,0x2e,0x30,0x30,0x36,0x20,0x36,0x34,
+ 0x38,0x2e,0x36,0x31,0x20,0x31,0x32,0x36,0x5a,0x4d,0x36,0x33,0x35,0x20,0x31,0x33,
+ 0x39,0x43,0x36,0x33,0x33,0x2e,0x33,0x34,0x33,0x20,0x31,0x33,0x39,0x20,0x36,0x33,
+ 0x32,0x20,0x31,0x33,0x37,0x2e,0x36,0x35,0x37,0x20,0x36,0x33,0x32,0x20,0x31,0x33,
+ 0x36,0x20,0x36,0x33,0x32,0x20,0x31,0x33,0x34,0x2e,0x33,0x34,0x33,0x20,0x36,0x33,
+ 0x33,0x2e,0x33,0x34,0x33,0x20,0x31,0x33,0x33,0x20,0x36,0x33,0x35,0x20,0x31,0x33,
+ 0x33,0x20,0x36,0x33,0x36,0x2e,0x36,0x35,0x37,0x20,0x31,0x33,0x33,0x20,0x36,0x33,
+ 0x38,0x20,0x31,0x33,0x34,0x2e,0x33,0x34,0x33,0x20,0x36,0x33,0x38,0x20,0x31,0x33,
+ 0x36,0x20,0x36,0x33,0x38,0x20,0x31,0x33,0x37,0x2e,0x36,0x35,0x37,0x20,0x36,0x33,
+ 0x36,0x2e,0x36,0x35,0x37,0x20,0x31,0x33,0x39,0x20,0x36,0x33,0x35,0x20,0x31,0x33,
+ 0x39,0x5a,0x4d,0x36,0x34,0x35,0x20,0x31,0x33,0x39,0x43,0x36,0x34,0x33,0x2e,0x33,
+ 0x34,0x33,0x20,0x31,0x33,0x39,0x20,0x36,0x34,0x32,0x20,0x31,0x33,0x37,0x2e,0x36,
+ 0x35,0x37,0x20,0x36,0x34,0x32,0x20,0x31,0x33,0x36,0x20,0x36,0x34,0x32,0x20,0x31,
+ 0x33,0x34,0x2e,0x33,0x34,0x33,0x20,0x36,0x34,0x33,0x2e,0x33,0x34,0x33,0x20,0x31,
+ 0x33,0x33,0x20,0x36,0x34,0x35,0x20,0x31,0x33,0x33,0x20,0x36,0x34,0x36,0x2e,0x36,
+ 0x35,0x37,0x20,0x31,0x33,0x33,0x20,0x36,0x34,0x38,0x20,0x31,0x33,0x34,0x2e,0x33,
+ 0x34,0x33,0x20,0x36,0x34,0x38,0x20,0x31,0x33,0x36,0x20,0x36,0x34,0x38,0x20,0x31,
+ 0x33,0x37,0x2e,0x36,0x35,0x37,0x20,0x36,0x34,0x36,0x2e,0x36,0x35,0x37,0x20,0x31,
+ 0x33,0x39,0x20,0x36,0x34,0x35,0x20,0x31,0x33,0x39,0x5a,0x22,0x20,0x66,0x69,0x6c,
+ 0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x70,0x61,
+ 0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x36,0x33,0x36,0x2e,0x38,0x33,0x20,0x31,0x33,
+ 0x36,0x43,0x36,0x33,0x36,0x2e,0x38,0x33,0x20,0x31,0x33,0x36,0x2e,0x38,0x32,0x38,
+ 0x20,0x36,0x33,0x36,0x2e,0x31,0x35,0x38,0x20,0x31,0x33,0x37,0x2e,0x35,0x20,0x36,
+ 0x33,0x35,0x2e,0x33,0x33,0x20,0x31,0x33,0x37,0x2e,0x35,0x20,0x36,0x33,0x34,0x2e,
+ 0x35,0x30,0x32,0x20,0x31,0x33,0x37,0x2e,0x35,0x20,0x36,0x33,0x33,0x2e,0x38,0x33,
+ 0x20,0x31,0x33,0x36,0x2e,0x38,0x32,0x38,0x20,0x36,0x33,0x33,0x2e,0x38,0x33,0x20,
+ 0x31,0x33,0x36,0x20,0x36,0x33,0x33,0x2e,0x38,0x33,0x20,0x31,0x33,0x35,0x2e,0x31,
+ 0x37,0x32,0x20,0x36,0x33,0x34,0x2e,0x35,0x30,0x32,0x20,0x31,0x33,0x34,0x2e,0x35,
+ 0x20,0x36,0x33,0x35,0x2e,0x33,0x33,0x20,0x31,0x33,0x34,0x2e,0x35,0x20,0x36,0x33,
+ 0x36,0x2e,0x31,0x35,0x38,0x20,0x31,0x33,0x34,0x2e,0x35,0x20,0x36,0x33,0x36,0x2e,
+ 0x38,0x33,0x20,0x31,0x33,0x35,0x2e,0x31,0x37,0x32,0x20,0x36,0x33,0x36,0x2e,0x38,
+ 0x33,0x20,0x31,0x33,0x36,0x5a,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,
+ 0x46,0x46,0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,
+ 0x22,0x4d,0x36,0x36,0x36,0x20,0x31,0x36,0x36,0x2e,0x38,0x32,0x20,0x36,0x36,0x36,
+ 0x20,0x31,0x35,0x38,0x2e,0x34,0x39,0x43,0x36,0x36,0x36,0x20,0x31,0x35,0x36,0x2e,
+ 0x30,0x31,0x20,0x36,0x36,0x33,0x2e,0x39,0x39,0x20,0x31,0x35,0x34,0x20,0x36,0x36,
+ 0x31,0x2e,0x35,0x31,0x20,0x31,0x35,0x34,0x4c,0x36,0x35,0x36,0x20,0x31,0x35,0x34,
+ 0x20,0x36,0x35,0x36,0x20,0x31,0x34,0x39,0x20,0x36,0x32,0x34,0x20,0x31,0x34,0x39,
+ 0x20,0x36,0x32,0x34,0x20,0x31,0x35,0x35,0x20,0x36,0x31,0x36,0x2e,0x34,0x39,0x20,
+ 0x31,0x35,0x35,0x43,0x36,0x31,0x36,0x2e,0x32,0x31,0x39,0x20,0x31,0x35,0x35,0x20,
+ 0x36,0x31,0x36,0x20,0x31,0x35,0x34,0x2e,0x37,0x38,0x31,0x20,0x36,0x31,0x36,0x20,
+ 0x31,0x35,0x34,0x2e,0x35,0x31,0x4c,0x36,0x31,0x36,0x20,0x31,0x34,0x36,0x2e,0x32,
+ 0x32,0x43,0x36,0x31,0x39,0x2e,0x34,0x33,0x38,0x20,0x31,0x34,0x35,0x2e,0x32,0x30,
+ 0x35,0x20,0x36,0x32,0x31,0x2e,0x34,0x30,0x31,0x20,0x31,0x34,0x31,0x2e,0x35,0x39,
+ 0x35,0x20,0x36,0x32,0x30,0x2e,0x33,0x38,0x36,0x20,0x31,0x33,0x38,0x2e,0x31,0x35,
+ 0x38,0x20,0x36,0x32,0x30,0x2e,0x31,0x31,0x34,0x20,0x31,0x33,0x37,0x2e,0x32,0x33,
+ 0x36,0x20,0x36,0x31,0x39,0x2e,0x36,0x34,0x31,0x20,0x31,0x33,0x36,0x2e,0x33,0x38,
+ 0x36,0x20,0x36,0x31,0x39,0x20,0x31,0x33,0x35,0x2e,0x36,0x37,0x4c,0x36,0x31,0x36,
+ 0x20,0x31,0x33,0x38,0x2e,0x33,0x33,0x43,0x36,0x31,0x36,0x2e,0x34,0x32,0x20,0x31,
+ 0x33,0x38,0x2e,0x37,0x38,0x36,0x20,0x36,0x31,0x36,0x2e,0x36,0x35,0x38,0x20,0x31,
+ 0x33,0x39,0x2e,0x33,0x38,0x20,0x36,0x31,0x36,0x2e,0x36,0x37,0x20,0x31,0x34,0x30,
+ 0x20,0x36,0x31,0x36,0x2e,0x36,0x36,0x32,0x20,0x31,0x34,0x31,0x2e,0x33,0x38,0x31,
+ 0x20,0x36,0x31,0x35,0x2e,0x35,0x33,0x37,0x20,0x31,0x34,0x32,0x2e,0x34,0x39,0x34,
+ 0x20,0x36,0x31,0x34,0x2e,0x31,0x35,0x36,0x20,0x31,0x34,0x32,0x2e,0x34,0x38,0x36,
+ 0x20,0x36,0x31,0x32,0x2e,0x37,0x37,0x36,0x20,0x31,0x34,0x32,0x2e,0x34,0x37,0x39,
+ 0x20,0x36,0x31,0x31,0x2e,0x36,0x36,0x33,0x20,0x31,0x34,0x31,0x2e,0x33,0x35,0x34,
+ 0x20,0x36,0x31,0x31,0x2e,0x36,0x37,0x20,0x31,0x33,0x39,0x2e,0x39,0x37,0x33,0x20,
+ 0x36,0x31,0x31,0x2e,0x36,0x37,0x33,0x20,0x31,0x33,0x39,0x2e,0x33,0x37,0x36,0x20,
+ 0x36,0x31,0x31,0x2e,0x38,0x39,0x20,0x31,0x33,0x38,0x2e,0x38,0x30,0x31,0x20,0x36,
+ 0x31,0x32,0x2e,0x32,0x38,0x20,0x31,0x33,0x38,0x2e,0x33,0x35,0x4c,0x36,0x30,0x39,
+ 0x2e,0x32,0x38,0x20,0x31,0x33,0x35,0x2e,0x37,0x32,0x43,0x36,0x30,0x36,0x2e,0x39,
+ 0x32,0x33,0x20,0x31,0x33,0x38,0x2e,0x34,0x32,0x38,0x20,0x36,0x30,0x37,0x2e,0x32,
+ 0x30,0x38,0x20,0x31,0x34,0x32,0x2e,0x35,0x33,0x34,0x20,0x36,0x30,0x39,0x2e,0x39,
+ 0x31,0x35,0x20,0x31,0x34,0x34,0x2e,0x38,0x39,0x20,0x36,0x31,0x30,0x2e,0x35,0x32,
+ 0x38,0x20,0x31,0x34,0x35,0x2e,0x34,0x32,0x34,0x20,0x36,0x31,0x31,0x2e,0x32,0x33,
+ 0x35,0x20,0x31,0x34,0x35,0x2e,0x38,0x33,0x37,0x20,0x36,0x31,0x32,0x20,0x31,0x34,
+ 0x36,0x2e,0x31,0x31,0x4c,0x36,0x31,0x32,0x20,0x31,0x35,0x34,0x2e,0x35,0x31,0x43,
+ 0x36,0x31,0x32,0x20,0x31,0x35,0x36,0x2e,0x39,0x39,0x20,0x36,0x31,0x34,0x2e,0x30,
+ 0x31,0x20,0x31,0x35,0x39,0x20,0x36,0x31,0x36,0x2e,0x34,0x39,0x20,0x31,0x35,0x39,
+ 0x4c,0x36,0x32,0x34,0x20,0x31,0x35,0x39,0x20,0x36,0x32,0x34,0x20,0x31,0x37,0x37,
+ 0x20,0x36,0x35,0x36,0x20,0x31,0x37,0x37,0x20,0x36,0x35,0x36,0x20,0x31,0x35,0x38,
+ 0x20,0x36,0x36,0x31,0x2e,0x35,0x31,0x20,0x31,0x35,0x38,0x43,0x36,0x36,0x31,0x2e,
+ 0x37,0x38,0x31,0x20,0x31,0x35,0x38,0x20,0x36,0x36,0x32,0x20,0x31,0x35,0x38,0x2e,
+ 0x32,0x31,0x39,0x20,0x36,0x36,0x32,0x20,0x31,0x35,0x38,0x2e,0x34,0x39,0x4c,0x36,
+ 0x36,0x32,0x20,0x31,0x36,0x36,0x2e,0x38,0x32,0x43,0x36,0x35,0x38,0x2e,0x35,0x38,
+ 0x34,0x20,0x31,0x36,0x37,0x2e,0x39,0x32,0x35,0x20,0x36,0x35,0x36,0x2e,0x37,0x31,
+ 0x31,0x20,0x31,0x37,0x31,0x2e,0x35,0x39,0x20,0x36,0x35,0x37,0x2e,0x38,0x31,0x36,
+ 0x20,0x31,0x37,0x35,0x2e,0x30,0x30,0x35,0x20,0x36,0x35,0x38,0x2e,0x30,0x39,0x33,
+ 0x20,0x31,0x37,0x35,0x2e,0x38,0x36,0x20,0x36,0x35,0x38,0x2e,0x35,0x34,0x34,0x20,
+ 0x31,0x37,0x36,0x2e,0x36,0x34,0x38,0x20,0x36,0x35,0x39,0x2e,0x31,0x34,0x20,0x31,
+ 0x37,0x37,0x2e,0x33,0x32,0x4c,0x36,0x36,0x32,0x2e,0x31,0x34,0x20,0x31,0x37,0x34,
+ 0x2e,0x36,0x36,0x43,0x36,0x36,0x31,0x2e,0x37,0x32,0x36,0x20,0x31,0x37,0x34,0x2e,
+ 0x32,0x30,0x36,0x20,0x36,0x36,0x31,0x2e,0x34,0x39,0x38,0x20,0x31,0x37,0x33,0x2e,
+ 0x36,0x31,0x34,0x20,0x36,0x36,0x31,0x2e,0x35,0x20,0x31,0x37,0x33,0x20,0x36,0x36,
+ 0x31,0x2e,0x35,0x30,0x31,0x20,0x31,0x37,0x31,0x2e,0x36,0x31,0x39,0x20,0x36,0x36,
+ 0x32,0x2e,0x36,0x32,0x31,0x20,0x31,0x37,0x30,0x2e,0x35,0x30,0x31,0x20,0x36,0x36,
+ 0x34,0x2e,0x30,0x30,0x32,0x20,0x31,0x37,0x30,0x2e,0x35,0x30,0x32,0x20,0x36,0x36,
+ 0x35,0x2e,0x33,0x38,0x33,0x20,0x31,0x37,0x30,0x2e,0x35,0x30,0x33,0x20,0x36,0x36,
+ 0x36,0x2e,0x35,0x30,0x31,0x20,0x31,0x37,0x31,0x2e,0x36,0x32,0x34,0x20,0x36,0x36,
+ 0x36,0x2e,0x35,0x20,0x31,0x37,0x33,0x2e,0x30,0x30,0x34,0x20,0x36,0x36,0x36,0x2e,
+ 0x35,0x20,0x31,0x37,0x33,0x2e,0x36,0x31,0x20,0x36,0x36,0x36,0x2e,0x32,0x37,0x39,
+ 0x20,0x31,0x37,0x34,0x2e,0x31,0x39,0x35,0x20,0x36,0x36,0x35,0x2e,0x38,0x38,0x20,
+ 0x31,0x37,0x34,0x2e,0x36,0x35,0x4c,0x36,0x36,0x38,0x2e,0x38,0x38,0x20,0x31,0x37,
+ 0x37,0x2e,0x32,0x38,0x43,0x36,0x37,0x31,0x2e,0x32,0x34,0x36,0x20,0x31,0x37,0x34,
+ 0x2e,0x35,0x38,0x38,0x20,0x36,0x37,0x30,0x2e,0x39,0x38,0x32,0x20,0x31,0x37,0x30,
+ 0x2e,0x34,0x38,0x37,0x20,0x36,0x36,0x38,0x2e,0x32,0x38,0x39,0x20,0x31,0x36,0x38,
+ 0x2e,0x31,0x32,0x31,0x20,0x36,0x36,0x37,0x2e,0x36,0x32,0x33,0x20,0x31,0x36,0x37,
+ 0x2e,0x35,0x33,0x35,0x20,0x36,0x36,0x36,0x2e,0x38,0x34,0x34,0x20,0x31,0x36,0x37,
+ 0x2e,0x30,0x39,0x33,0x20,0x36,0x36,0x36,0x20,0x31,0x36,0x36,0x2e,0x38,0x32,0x5a,
+ 0x4d,0x36,0x35,0x32,0x20,0x31,0x36,0x33,0x20,0x36,0x34,0x39,0x2e,0x32,0x32,0x20,
+ 0x31,0x36,0x33,0x43,0x36,0x34,0x39,0x2e,0x31,0x32,0x33,0x20,0x31,0x36,0x33,0x2e,
+ 0x30,0x31,0x37,0x20,0x36,0x34,0x39,0x2e,0x30,0x33,0x31,0x20,0x31,0x36,0x33,0x2e,
+ 0x30,0x35,0x35,0x20,0x36,0x34,0x38,0x2e,0x39,0x35,0x20,0x31,0x36,0x33,0x2e,0x31,
+ 0x31,0x4c,0x36,0x34,0x35,0x2e,0x38,0x39,0x20,0x31,0x36,0x36,0x2e,0x32,0x34,0x20,
+ 0x36,0x34,0x33,0x2e,0x35,0x36,0x20,0x31,0x36,0x30,0x2e,0x37,0x32,0x20,0x36,0x33,
+ 0x39,0x2e,0x32,0x31,0x20,0x31,0x36,0x39,0x2e,0x37,0x32,0x20,0x36,0x33,0x36,0x2e,
+ 0x31,0x36,0x20,0x31,0x35,0x38,0x20,0x36,0x33,0x33,0x2e,0x38,0x31,0x20,0x31,0x36,
+ 0x33,0x20,0x36,0x32,0x39,0x20,0x31,0x36,0x33,0x20,0x36,0x32,0x39,0x20,0x31,0x36,
+ 0x31,0x20,0x36,0x33,0x32,0x2e,0x35,0x34,0x20,0x31,0x36,0x31,0x20,0x36,0x33,0x36,
+ 0x2e,0x37,0x20,0x31,0x35,0x32,0x2e,0x31,0x35,0x20,0x36,0x33,0x39,0x2e,0x37,0x38,
+ 0x20,0x31,0x36,0x33,0x2e,0x39,0x33,0x20,0x36,0x34,0x33,0x2e,0x36,0x39,0x20,0x31,
+ 0x35,0x35,0x2e,0x39,0x33,0x20,0x36,0x34,0x36,0x2e,0x35,0x37,0x20,0x31,0x36,0x32,
+ 0x2e,0x37,0x35,0x20,0x36,0x34,0x37,0x2e,0x35,0x37,0x20,0x31,0x36,0x31,0x2e,0x37,
+ 0x35,0x43,0x36,0x34,0x38,0x2e,0x30,0x30,0x39,0x20,0x31,0x36,0x31,0x2e,0x33,0x30,
+ 0x36,0x20,0x36,0x34,0x38,0x2e,0x35,0x39,0x36,0x20,0x31,0x36,0x31,0x2e,0x30,0x33,
+ 0x39,0x20,0x36,0x34,0x39,0x2e,0x32,0x32,0x20,0x31,0x36,0x31,0x4c,0x36,0x35,0x32,
+ 0x20,0x31,0x36,0x31,0x5a,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,
+ 0x46,0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x2f,0x67,0x3e,0x3c,0x2f,0x73,0x76,0x67,
+ 0x3e,
+ // /home/hzk/Software_Architecture/src/Client/res/image/health.svg
+ 0x0,0x0,0x6,0xa4,
+ 0x3c,
+ 0x73,0x76,0x67,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x39,0x36,0x22,0x20,0x68,
+ 0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x39,0x36,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,
+ 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
+ 0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,0x20,0x78,0x6d,
+ 0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
+ 0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,
+ 0x39,0x2f,0x78,0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,
+ 0x63,0x65,0x3d,0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x20,0x6f,0x76,
+ 0x65,0x72,0x66,0x6c,0x6f,0x77,0x3d,0x22,0x68,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,
+ 0x3c,0x67,0x20,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3d,0x22,0x74,0x72,
+ 0x61,0x6e,0x73,0x6c,0x61,0x74,0x65,0x28,0x2d,0x35,0x39,0x32,0x20,0x2d,0x33,0x31,
+ 0x32,0x29,0x22,0x3e,0x3c,0x70,0x61,0x74,0x68,0x20,0x64,0x3d,0x22,0x4d,0x36,0x34,
+ 0x30,0x2e,0x32,0x38,0x20,0x33,0x39,0x32,0x43,0x36,0x34,0x34,0x2e,0x36,0x36,0x35,
+ 0x20,0x33,0x38,0x38,0x2e,0x35,0x33,0x38,0x20,0x36,0x34,0x38,0x2e,0x38,0x34,0x38,
+ 0x20,0x33,0x38,0x34,0x2e,0x38,0x32,0x39,0x20,0x36,0x35,0x32,0x2e,0x38,0x31,0x20,
+ 0x33,0x38,0x30,0x2e,0x38,0x39,0x20,0x36,0x35,0x38,0x2e,0x35,0x35,0x33,0x20,0x33,
+ 0x37,0x35,0x2e,0x34,0x31,0x39,0x20,0x36,0x36,0x33,0x2e,0x36,0x33,0x31,0x20,0x33,
+ 0x36,0x39,0x2e,0x32,0x39,0x20,0x36,0x36,0x37,0x2e,0x39,0x34,0x20,0x33,0x36,0x32,
+ 0x2e,0x36,0x33,0x20,0x36,0x37,0x31,0x2e,0x39,0x34,0x20,0x33,0x35,0x36,0x2e,0x31,
+ 0x39,0x20,0x36,0x37,0x35,0x2e,0x37,0x36,0x20,0x33,0x34,0x37,0x2e,0x38,0x33,0x20,
+ 0x36,0x37,0x33,0x2e,0x31,0x33,0x20,0x33,0x34,0x30,0x2e,0x31,0x39,0x20,0x36,0x37,
+ 0x31,0x20,0x33,0x33,0x33,0x2e,0x38,0x37,0x20,0x36,0x36,0x35,0x2e,0x30,0x39,0x20,
+ 0x33,0x32,0x38,0x2e,0x35,0x20,0x36,0x35,0x38,0x2e,0x33,0x20,0x33,0x32,0x37,0x2e,
+ 0x38,0x35,0x20,0x36,0x34,0x39,0x2e,0x37,0x32,0x20,0x33,0x32,0x37,0x20,0x36,0x34,
+ 0x33,0x2e,0x35,0x31,0x20,0x33,0x33,0x34,0x2e,0x32,0x36,0x20,0x36,0x34,0x30,0x20,
+ 0x33,0x34,0x31,0x2e,0x32,0x31,0x20,0x36,0x33,0x36,0x2e,0x37,0x39,0x20,0x33,0x33,
+ 0x34,0x2e,0x38,0x35,0x20,0x36,0x33,0x31,0x2e,0x34,0x38,0x20,0x33,0x32,0x38,0x2e,
+ 0x32,0x39,0x20,0x36,0x32,0x33,0x2e,0x38,0x31,0x20,0x33,0x32,0x37,0x2e,0x38,0x31,
+ 0x20,0x36,0x31,0x37,0x20,0x33,0x32,0x37,0x2e,0x33,0x39,0x20,0x36,0x31,0x30,0x2e,
+ 0x36,0x36,0x20,0x33,0x33,0x32,0x2e,0x31,0x38,0x20,0x36,0x30,0x37,0x2e,0x37,0x33,
+ 0x20,0x33,0x33,0x38,0x2e,0x31,0x33,0x20,0x36,0x30,0x34,0x2e,0x30,0x36,0x20,0x33,
+ 0x34,0x35,0x2e,0x36,0x20,0x36,0x30,0x37,0x2e,0x30,0x35,0x20,0x33,0x35,0x34,0x20,
+ 0x36,0x31,0x30,0x2e,0x39,0x31,0x20,0x33,0x36,0x30,0x2e,0x37,0x31,0x20,0x36,0x31,
+ 0x34,0x2e,0x39,0x31,0x20,0x33,0x36,0x37,0x2e,0x37,0x31,0x20,0x36,0x32,0x30,0x2e,
+ 0x32,0x33,0x20,0x33,0x37,0x33,0x2e,0x38,0x36,0x20,0x36,0x32,0x35,0x2e,0x38,0x35,
+ 0x20,0x33,0x37,0x39,0x2e,0x35,0x35,0x20,0x36,0x33,0x30,0x2e,0x32,0x38,0x20,0x33,
+ 0x38,0x34,0x2e,0x30,0x38,0x33,0x20,0x36,0x33,0x35,0x2e,0x30,0x30,0x37,0x20,0x33,
+ 0x38,0x38,0x2e,0x33,0x31,0x35,0x20,0x36,0x34,0x30,0x20,0x33,0x39,0x32,0x2e,0x32,
+ 0x32,0x5a,0x4d,0x36,0x32,0x34,0x20,0x33,0x35,0x38,0x20,0x36,0x32,0x37,0x20,0x33,
+ 0x34,0x39,0x20,0x36,0x32,0x38,0x2e,0x37,0x38,0x20,0x33,0x34,0x33,0x2e,0x36,0x35,
+ 0x43,0x36,0x32,0x39,0x2e,0x32,0x34,0x20,0x33,0x34,0x32,0x2e,0x32,0x36,0x20,0x36,
+ 0x32,0x39,0x2e,0x39,0x35,0x20,0x33,0x34,0x30,0x2e,0x34,0x20,0x36,0x33,0x31,0x2e,
+ 0x38,0x37,0x20,0x33,0x34,0x31,0x2e,0x32,0x20,0x36,0x33,0x33,0x2e,0x30,0x33,0x20,
+ 0x33,0x34,0x31,0x2e,0x36,0x39,0x20,0x36,0x33,0x33,0x2e,0x31,0x20,0x33,0x34,0x32,
+ 0x2e,0x38,0x39,0x20,0x36,0x33,0x33,0x2e,0x33,0x20,0x33,0x34,0x33,0x2e,0x39,0x34,
+ 0x4c,0x36,0x33,0x34,0x2e,0x31,0x33,0x20,0x33,0x34,0x38,0x2e,0x33,0x37,0x20,0x36,
+ 0x33,0x36,0x2e,0x35,0x33,0x20,0x33,0x36,0x31,0x2e,0x31,0x37,0x20,0x36,0x33,0x38,
+ 0x2e,0x31,0x32,0x20,0x33,0x36,0x39,0x2e,0x36,0x37,0x20,0x36,0x34,0x33,0x2e,0x39,
+ 0x32,0x20,0x33,0x35,0x34,0x2e,0x33,0x33,0x20,0x36,0x34,0x35,0x2e,0x32,0x20,0x33,
+ 0x35,0x30,0x2e,0x39,0x35,0x43,0x36,0x34,0x35,0x2e,0x35,0x37,0x20,0x33,0x34,0x39,
+ 0x2e,0x39,0x35,0x20,0x36,0x34,0x35,0x2e,0x39,0x35,0x20,0x33,0x34,0x38,0x2e,0x39,
+ 0x35,0x20,0x36,0x34,0x37,0x2e,0x32,0x20,0x33,0x34,0x38,0x2e,0x38,0x34,0x20,0x36,
+ 0x34,0x38,0x2e,0x37,0x39,0x20,0x33,0x34,0x38,0x2e,0x36,0x38,0x20,0x36,0x34,0x39,
+ 0x2e,0x32,0x36,0x20,0x33,0x35,0x30,0x2e,0x30,0x34,0x20,0x36,0x34,0x39,0x2e,0x36,
+ 0x31,0x20,0x33,0x35,0x31,0x2e,0x32,0x34,0x4c,0x36,0x35,0x30,0x2e,0x38,0x34,0x20,
+ 0x33,0x35,0x35,0x2e,0x34,0x36,0x20,0x36,0x35,0x33,0x2e,0x32,0x38,0x20,0x33,0x36,
+ 0x33,0x2e,0x38,0x35,0x20,0x36,0x35,0x35,0x2e,0x36,0x39,0x20,0x33,0x36,0x31,0x2e,
+ 0x32,0x43,0x36,0x35,0x36,0x2e,0x34,0x36,0x31,0x20,0x33,0x36,0x30,0x2e,0x31,0x39,
+ 0x31,0x20,0x36,0x35,0x37,0x2e,0x33,0x32,0x38,0x20,0x33,0x35,0x39,0x2e,0x32,0x36,
+ 0x20,0x36,0x35,0x38,0x2e,0x32,0x38,0x20,0x33,0x35,0x38,0x2e,0x34,0x32,0x20,0x36,
+ 0x35,0x39,0x2e,0x32,0x38,0x20,0x33,0x35,0x37,0x2e,0x37,0x32,0x20,0x36,0x36,0x31,
+ 0x2e,0x31,0x33,0x20,0x33,0x35,0x38,0x2e,0x30,0x34,0x20,0x36,0x36,0x32,0x2e,0x32,
+ 0x38,0x20,0x33,0x35,0x38,0x2e,0x30,0x34,0x4c,0x36,0x36,0x36,0x20,0x33,0x35,0x38,
+ 0x2e,0x30,0x34,0x43,0x36,0x36,0x35,0x2e,0x32,0x36,0x20,0x33,0x35,0x39,0x2e,0x33,
+ 0x37,0x20,0x36,0x36,0x34,0x2e,0x34,0x34,0x20,0x33,0x36,0x30,0x2e,0x37,0x31,0x20,
+ 0x36,0x36,0x33,0x2e,0x35,0x35,0x20,0x33,0x36,0x32,0x2e,0x30,0x34,0x4c,0x36,0x36,
+ 0x30,0x2e,0x33,0x20,0x33,0x36,0x32,0x2e,0x30,0x34,0x43,0x36,0x35,0x38,0x2e,0x31,
+ 0x37,0x20,0x33,0x36,0x34,0x2e,0x33,0x39,0x20,0x36,0x35,0x36,0x2e,0x31,0x33,0x20,
+ 0x33,0x36,0x36,0x2e,0x38,0x39,0x20,0x36,0x35,0x33,0x2e,0x38,0x37,0x20,0x33,0x36,
+ 0x39,0x2e,0x31,0x32,0x20,0x36,0x35,0x33,0x2e,0x31,0x36,0x31,0x20,0x33,0x36,0x39,
+ 0x2e,0x39,0x36,0x37,0x20,0x36,0x35,0x31,0x2e,0x39,0x20,0x33,0x37,0x30,0x2e,0x30,
+ 0x37,0x39,0x20,0x36,0x35,0x31,0x2e,0x30,0x35,0x33,0x20,0x33,0x36,0x39,0x2e,0x33,
+ 0x37,0x20,0x36,0x35,0x30,0x2e,0x38,0x38,0x36,0x20,0x33,0x36,0x39,0x2e,0x32,0x33,
+ 0x31,0x20,0x36,0x35,0x30,0x2e,0x37,0x34,0x33,0x20,0x33,0x36,0x39,0x2e,0x30,0x36,
+ 0x35,0x20,0x36,0x35,0x30,0x2e,0x36,0x33,0x20,0x33,0x36,0x38,0x2e,0x38,0x38,0x20,
+ 0x36,0x35,0x30,0x2e,0x34,0x31,0x33,0x20,0x33,0x36,0x38,0x2e,0x34,0x35,0x20,0x36,
+ 0x35,0x30,0x2e,0x32,0x35,0x35,0x20,0x33,0x36,0x37,0x2e,0x39,0x39,0x32,0x20,0x36,
+ 0x35,0x30,0x2e,0x31,0x36,0x20,0x33,0x36,0x37,0x2e,0x35,0x32,0x4c,0x36,0x34,0x38,
+ 0x2e,0x34,0x39,0x20,0x33,0x36,0x31,0x2e,0x38,0x31,0x20,0x36,0x34,0x37,0x2e,0x31,
+ 0x33,0x20,0x33,0x35,0x37,0x2e,0x31,0x33,0x43,0x36,0x34,0x34,0x2e,0x35,0x38,0x20,
+ 0x33,0x36,0x33,0x2e,0x38,0x36,0x20,0x36,0x34,0x32,0x2e,0x31,0x33,0x20,0x33,0x37,
+ 0x30,0x2e,0x36,0x20,0x36,0x33,0x39,0x2e,0x35,0x20,0x33,0x37,0x37,0x2e,0x33,0x20,
+ 0x36,0x33,0x39,0x2e,0x33,0x35,0x33,0x20,0x33,0x37,0x37,0x2e,0x38,0x34,0x36,0x20,
+ 0x36,0x33,0x39,0x2e,0x30,0x33,0x34,0x20,0x33,0x37,0x38,0x2e,0x33,0x33,0x20,0x36,
+ 0x33,0x38,0x2e,0x35,0x39,0x20,0x33,0x37,0x38,0x2e,0x36,0x38,0x20,0x36,0x33,0x37,
+ 0x2e,0x36,0x38,0x20,0x33,0x37,0x39,0x2e,0x33,0x30,0x35,0x20,0x36,0x33,0x36,0x2e,
+ 0x34,0x33,0x35,0x20,0x33,0x37,0x39,0x2e,0x30,0x37,0x34,0x20,0x36,0x33,0x35,0x2e,
+ 0x38,0x30,0x39,0x20,0x33,0x37,0x38,0x2e,0x31,0x36,0x34,0x20,0x36,0x33,0x35,0x2e,
+ 0x36,0x34,0x39,0x20,0x33,0x37,0x37,0x2e,0x39,0x33,0x31,0x20,0x36,0x33,0x35,0x2e,
+ 0x35,0x34,0x31,0x20,0x33,0x37,0x37,0x2e,0x36,0x36,0x38,0x20,0x36,0x33,0x35,0x2e,
+ 0x34,0x39,0x20,0x33,0x37,0x37,0x2e,0x33,0x39,0x20,0x36,0x33,0x35,0x2e,0x32,0x36,
+ 0x20,0x33,0x37,0x36,0x2e,0x34,0x37,0x20,0x36,0x33,0x35,0x2e,0x31,0x34,0x20,0x33,
+ 0x37,0x35,0x2e,0x35,0x31,0x20,0x36,0x33,0x34,0x2e,0x39,0x36,0x20,0x33,0x37,0x34,
+ 0x2e,0x35,0x39,0x4c,0x36,0x33,0x32,0x2e,0x34,0x33,0x20,0x33,0x36,0x31,0x2e,0x30,
+ 0x39,0x20,0x36,0x33,0x30,0x2e,0x35,0x34,0x20,0x33,0x35,0x31,0x20,0x36,0x32,0x37,
+ 0x2e,0x37,0x32,0x20,0x33,0x35,0x39,0x2e,0x34,0x37,0x43,0x36,0x32,0x37,0x2e,0x32,
+ 0x39,0x20,0x33,0x36,0x30,0x2e,0x37,0x33,0x20,0x36,0x32,0x36,0x2e,0x39,0x35,0x20,
+ 0x33,0x36,0x31,0x2e,0x39,0x36,0x20,0x36,0x32,0x35,0x2e,0x33,0x33,0x20,0x33,0x36,
+ 0x32,0x2e,0x30,0x34,0x20,0x36,0x32,0x33,0x2e,0x38,0x36,0x20,0x33,0x36,0x32,0x2e,
+ 0x31,0x31,0x20,0x36,0x32,0x32,0x2e,0x33,0x38,0x20,0x33,0x36,0x32,0x2e,0x30,0x34,
+ 0x20,0x36,0x32,0x30,0x2e,0x39,0x32,0x20,0x33,0x36,0x32,0x2e,0x30,0x34,0x4c,0x36,
+ 0x31,0x36,0x2e,0x34,0x32,0x20,0x33,0x36,0x32,0x2e,0x30,0x34,0x43,0x36,0x31,0x35,
+ 0x2e,0x35,0x34,0x20,0x33,0x36,0x30,0x2e,0x37,0x31,0x20,0x36,0x31,0x34,0x2e,0x37,
+ 0x31,0x20,0x33,0x35,0x39,0x2e,0x33,0x37,0x20,0x36,0x31,0x33,0x2e,0x39,0x37,0x20,
+ 0x33,0x35,0x38,0x2e,0x30,0x34,0x5a,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,
+ 0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x2f,0x3e,0x3c,0x2f,0x67,0x3e,0x3c,0x2f,0x73,
+ 0x76,0x67,0x3e,
+ // /home/hzk/Software_Architecture/src/Client/res/image/soldier.png
+ 0x0,0x0,0x4,0x3,
+ 0x89,
+ 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+ 0x0,0x0,0x60,0x0,0x0,0x0,0x60,0x8,0x3,0x0,0x0,0x0,0xd5,0x46,0x87,0xa,
+ 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
+ 0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,0x0,0x0,0x0,
+ 0x33,0x50,0x4c,0x54,0x45,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,0xb7,0x95,0xe2,0x82,0x0,0x0,0x0,0x10,
+ 0x74,0x52,0x4e,0x53,0x0,0x10,0x20,0x30,0x40,0x50,0x60,0x70,0x80,0x8f,0x9f,0xaf,
+ 0xbf,0xcf,0xdf,0xef,0x23,0x1a,0x82,0x8a,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,
+ 0x0,0x0,0xe,0xc3,0x0,0x0,0xe,0xc3,0x1,0xc7,0x6f,0xa8,0x64,0x0,0x0,0x3,
+ 0x3d,0x49,0x44,0x41,0x54,0x68,0x43,0xed,0x98,0xdb,0x12,0xa3,0x20,0xc,0x86,0x45,
+ 0x51,0x50,0x41,0xfa,0xfe,0x4f,0xbb,0x1c,0x7e,0x90,0x16,0x15,0x4,0x77,0x66,0x67,
+ 0xd6,0xef,0xaa,0x8,0x4d,0x24,0x84,0x1c,0xec,0xfe,0x27,0x8,0x9d,0xd8,0x2c,0xd6,
+ 0x85,0x4f,0x14,0x4f,0x9e,0x84,0x8c,0x8b,0xfa,0xec,0xac,0x13,0x9e,0x3f,0x4,0x61,
+ 0x1b,0x24,0x7,0xd4,0x93,0x2a,0x68,0x22,0xde,0xf0,0x98,0xa,0x32,0x43,0x62,0xc2,
+ 0x8c,0x15,0x6d,0x90,0x15,0xe2,0xe,0x90,0x4,0x8b,0x1a,0xb8,0x92,0xff,0x84,0x86,
+ 0x6b,0xf9,0x5a,0x3,0xd6,0x55,0xc3,0x21,0xe8,0x94,0x15,0xb,0x2b,0xa1,0xb1,0xf3,
+ 0x1f,0xd3,0x76,0xeb,0x24,0xa4,0x5c,0xa0,0xb0,0xb4,0x8a,0x11,0x42,0x2e,0x69,0xb9,
+ 0xe,0x99,0x13,0x76,0x8,0x2c,0xae,0xe1,0xf0,0x6,0x27,0x60,0x71,0x5,0x3d,0x24,
+ 0x64,0xe8,0xb1,0xfc,0x3e,0x3,0x24,0x64,0xa8,0xf7,0x23,0xa,0x9,0x19,0x46,0x2c,
+ 0xbf,0xcf,0x5f,0x57,0x50,0xe4,0xa5,0x9f,0xf,0xc3,0xf2,0xfb,0x30,0x48,0xc8,0xc0,
+ 0xb1,0xfc,0x3e,0xb,0x24,0x64,0xa8,0xf,0x47,0x45,0xf7,0xac,0x21,0x58,0x90,0x7c,
+ 0xa4,0x73,0xd4,0x5e,0x84,0xc2,0x33,0xae,0x3f,0xe5,0x60,0x21,0x4e,0x87,0x34,0x73,
+ 0xf5,0x63,0xc8,0x15,0x95,0x36,0xda,0x6f,0x1,0x1e,0x24,0x60,0xba,0x36,0xa0,0xa,
+ 0xfc,0xbb,0x40,0x41,0xdd,0x16,0xcc,0x2d,0x50,0xf6,0x2a,0xe0,0x41,0x82,0x99,0x9b,
+ 0x74,0xc4,0x55,0xac,0x32,0xf7,0xf7,0x3,0xb1,0xf1,0xe,0xc3,0x4,0x33,0x47,0xcd,
+ 0x2a,0x8c,0x2b,0x70,0x45,0x5,0x6,0x9,0x66,0xae,0xb1,0xac,0x70,0x8e,0x84,0x41,
+ 0x82,0x9d,0x6c,0x49,0x68,0xdd,0x64,0x45,0x7c,0xce,0x4c,0xe0,0x66,0x5b,0x72,0x32,
+ 0x1c,0x69,0xc0,0xf0,0x7,0x24,0xbc,0x96,0xb2,0x2,0xb1,0xe2,0x24,0xe0,0xfb,0x8b,
+ 0x82,0x61,0xd,0x28,0x8b,0x16,0xc,0x7f,0xc0,0x4d,0x6e,0x39,0x66,0x9c,0xc1,0x89,
+ 0x11,0x50,0x73,0xd4,0xa7,0x3,0xd,0xc2,0xd1,0xe1,0x39,0x22,0x16,0x8a,0xb6,0x2,
+ 0xdb,0x69,0x38,0xda,0x2,0x71,0xf6,0x5b,0xda,0xe4,0xfb,0x2d,0x1c,0x38,0x3b,0xd2,
+ 0x5d,0x63,0x75,0xed,0xfd,0x28,0xed,0x96,0x42,0xbe,0xc6,0xb8,0x96,0x50,0x5e,0x7f,
+ 0xef,0x81,0x84,0x74,0xdd,0xda,0x81,0xec,0x85,0xc5,0x16,0x9d,0x34,0xdd,0xcb,0xfa,
+ 0x26,0x1f,0x32,0x44,0x1d,0x82,0x9a,0x69,0xdf,0x91,0x9e,0xf2,0xe8,0xd9,0x3,0x6d,
+ 0x20,0x93,0x4a,0x1c,0x36,0x52,0x4c,0x28,0x59,0x9b,0x8,0x12,0x20,0xf3,0xb,0x4c,
+ 0x3d,0x0,0x4b,0x76,0x60,0x7d,0x8b,0xc9,0xfa,0x9a,0xf1,0xb,0x2f,0xbd,0x1b,0x67,
+ 0xb1,0x7d,0xd4,0x26,0x67,0xea,0x2b,0xa6,0xe6,0x13,0xd6,0x4,0x87,0x54,0x73,0xa8,
+ 0xaf,0x8,0xf7,0xd7,0xa3,0x29,0xdb,0x38,0xe2,0xf,0x15,0xf6,0x23,0xe,0xa1,0xab,
+ 0x17,0xaf,0x69,0xbd,0xc8,0x9a,0x31,0x2e,0x81,0x75,0x50,0x8a,0xfb,0x36,0x41,0xdb,
+ 0xbc,0x88,0xa,0x69,0xde,0xb9,0x8f,0xce,0x38,0x72,0x28,0xc5,0x75,0xa6,0x23,0x54,
+ 0x8a,0xda,0x6,0x84,0xba,0x84,0x69,0x4d,0x1f,0x3e,0x48,0x5,0x5,0xc2,0x5c,0x1,
+ 0xc2,0xed,0xf3,0x2a,0x15,0xc3,0x5e,0xd8,0xcd,0x26,0x27,0x53,0x67,0x29,0xa7,0x40,
+ 0x9,0xfb,0x68,0xe,0x87,0x61,0xc7,0xb7,0x60,0xee,0xbf,0xc2,0xa9,0x11,0xc1,0x52,
+ 0x46,0x81,0xb7,0x8d,0x9d,0x5a,0xb0,0xb7,0x7b,0x77,0x2,0x1f,0x71,0xf4,0xd6,0x89,
+ 0xfd,0xa1,0x43,0x9d,0x8d,0xd7,0x6c,0xd3,0x95,0x86,0xb3,0xd,0xe2,0x91,0xea,0xbb,
+ 0xd1,0x2d,0x96,0x37,0xba,0x4,0xf7,0x8d,0xc5,0x5,0x1a,0x64,0x1c,0xcd,0x7e,0xf,
+ 0x22,0xdb,0x58,0x37,0x1d,0x9c,0xf9,0x8a,0xfb,0x65,0x2b,0xdf,0xc7,0xb1,0xb8,0x95,
+ 0xb5,0x96,0xf2,0xb6,0x71,0x40,0xe8,0x60,0x9f,0x15,0x6a,0xe8,0xb5,0xfc,0xcd,0x87,
+ 0x49,0xb8,0x92,0x47,0x9b,0x28,0x16,0xaf,0x77,0xe0,0xb7,0x65,0xaa,0xec,0xc2,0x5e,
+ 0x4a,0x1b,0x25,0x88,0xdf,0xd,0x4,0xd2,0xc0,0xba,0x78,0xa9,0xda,0x7,0x8a,0x22,
+ 0x87,0x29,0xd8,0x5d,0x10,0x4b,0xc5,0x1f,0x29,0x8,0x2a,0x4c,0x50,0x29,0xd9,0x82,
+ 0x71,0x46,0xed,0x1b,0xdd,0xb0,0x9f,0x64,0xc4,0x91,0x2,0x77,0xfe,0xf6,0xe4,0x4e,
+ 0x6a,0xc0,0x2f,0xec,0x6b,0xaf,0xc7,0xe2,0xcf,0x14,0x18,0x15,0xf6,0xb0,0xf4,0x19,
+ 0x65,0x71,0x17,0xe7,0x58,0xfc,0xb9,0x2,0x50,0x52,0x69,0x9f,0x89,0x76,0x64,0x14,
+ 0xe8,0xf9,0x2c,0xaf,0x82,0x2c,0xaf,0x82,0x2c,0xaf,0x82,0x2c,0xaf,0x82,0x2c,0xaf,
+ 0x82,0x2c,0x7f,0x5d,0xc1,0x77,0x59,0xf2,0x4b,0x46,0x41,0x51,0xd7,0x7c,0xf9,0xcd,
+ 0xfd,0x52,0x81,0xe2,0x28,0x77,0x72,0xb0,0xf3,0x5d,0x5c,0x28,0xb0,0x35,0x71,0x29,
+ 0x94,0x7d,0x57,0x74,0x81,0x33,0x5,0xa6,0x33,0xc4,0x7f,0x8b,0x19,0x26,0xae,0xbb,
+ 0xca,0x1f,0x52,0x5,0x4a,0xae,0xbc,0xa5,0x93,0xea,0xe9,0xc8,0xf9,0x22,0x84,0xdc,
+ 0x36,0xe3,0x5f,0x56,0x81,0xd2,0xbd,0xac,0x14,0xeb,0x32,0xb3,0x69,0x28,0xa9,0xe5,
+ 0x6e,0xa0,0xdf,0x94,0x34,0xbc,0xed,0xcb,0xcb,0xbf,0x48,0xd7,0xfd,0x1,0x85,0x8b,
+ 0xbe,0xee,0x1a,0x4f,0xb,0x98,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,
+ 0x60,0x82,
+ // /home/hzk/Software_Architecture/src/Client/res/image/MapBackGround.png
+ 0x0,0x0,0x34,0xf5,
+ 0x89,
+ 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+ 0x0,0x5,0x12,0x0,0x0,0x5,0x13,0x8,0x2,0x0,0x0,0x0,0x31,0x9f,0x49,0x40,
+ 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
+ 0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,0x0,0x0,0x0,
+ 0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x1d,0x87,0x0,0x0,0x1d,0x87,0x1,0x8f,0xe5,
+ 0xf1,0x65,0x0,0x0,0x34,0x8a,0x49,0x44,0x41,0x54,0x78,0x5e,0xed,0xdd,0xbf,0x8e,
+ 0xdc,0xea,0xb5,0xe6,0xe1,0x3,0x47,0xe,0x7,0x50,0xe4,0x44,0x81,0x82,0x6,0x4,
+ 0x8,0x82,0x1b,0x1b,0x8d,0x86,0xa0,0x60,0x52,0x5f,0x8a,0xef,0xda,0x97,0xe0,0xd0,
+ 0xa1,0x87,0x66,0x2d,0xd7,0xe8,0xec,0xad,0xb7,0x6b,0x7d,0x55,0x24,0xab,0xbe,0xd6,
+ 0xf3,0x44,0xe3,0xa3,0x5e,0x24,0xab,0xa5,0x3d,0xe0,0xaf,0xf8,0xe7,0xfb,0x9f,0x7f,
+ 0x3,0x0,0x0,0x0,0xc1,0x7f,0xb2,0xf9,0xef,0x7f,0xff,0xfb,0xff,0x0,0x0,0x0,
+ 0x0,0x3f,0xf8,0xdb,0xdf,0xfe,0xf6,0xaf,0x7f,0xfd,0xeb,0x3f,0xd9,0x5c,0xff,0x7,
+ 0x0,0x0,0x0,0xe0,0x7,0xff,0xf8,0xc7,0x3f,0x2a,0x9b,0xff,0xfc,0xe7,0x3f,0xff,
+ 0x5f,0x0,0x0,0x0,0x60,0xb5,0x64,0xb2,0x6c,0x6,0x0,0x0,0x80,0x9f,0x93,0xcd,
+ 0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,
+ 0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,
+ 0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,
+ 0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,
+ 0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,
+ 0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,
+ 0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,
+ 0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,
+ 0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,
+ 0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,
+ 0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,
+ 0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,
+ 0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,
+ 0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,
+ 0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,
+ 0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,
+ 0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,
+ 0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,
+ 0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,
+ 0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,
+ 0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,
+ 0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,
+ 0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,
+ 0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,
+ 0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,
+ 0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,
+ 0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,
+ 0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,
+ 0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,
+ 0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,
+ 0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,
+ 0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,
+ 0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,
+ 0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,
+ 0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,
+ 0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,
+ 0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,
+ 0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,
+ 0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,
+ 0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,
+ 0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,
+ 0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,
+ 0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,
+ 0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,
+ 0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,
+ 0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,
+ 0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,
+ 0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,
+ 0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,
+ 0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,
+ 0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,
+ 0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,
+ 0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,
+ 0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,
+ 0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,
+ 0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,
+ 0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,
+ 0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,
+ 0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,
+ 0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,
+ 0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,
+ 0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,
+ 0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,
+ 0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,
+ 0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,
+ 0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,
+ 0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,
+ 0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,
+ 0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,
+ 0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,
+ 0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,
+ 0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,
+ 0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,
+ 0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,
+ 0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,
+ 0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,
+ 0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,
+ 0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,
+ 0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,
+ 0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,
+ 0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,
+ 0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,
+ 0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,
+ 0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,
+ 0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,
+ 0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,
+ 0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,
+ 0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,
+ 0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,
+ 0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,
+ 0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,
+ 0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,
+ 0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,
+ 0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,
+ 0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,
+ 0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,
+ 0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,
+ 0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,
+ 0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,
+ 0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,
+ 0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,
+ 0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,
+ 0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,
+ 0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,
+ 0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,
+ 0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,
+ 0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,
+ 0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,
+ 0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,
+ 0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,
+ 0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,
+ 0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,
+ 0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,
+ 0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,
+ 0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,
+ 0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,
+ 0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,
+ 0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,
+ 0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,
+ 0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,
+ 0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,
+ 0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,
+ 0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,
+ 0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,
+ 0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,
+ 0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,
+ 0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,
+ 0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,
+ 0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,
+ 0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,
+ 0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,
+ 0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,
+ 0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,
+ 0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,
+ 0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,
+ 0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,
+ 0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,
+ 0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,
+ 0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,
+ 0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,
+ 0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,
+ 0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,
+ 0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,
+ 0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,
+ 0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,
+ 0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,
+ 0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,
+ 0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,
+ 0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,
+ 0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,
+ 0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,
+ 0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,
+ 0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,
+ 0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,
+ 0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,
+ 0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,
+ 0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,
+ 0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,
+ 0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,
+ 0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,
+ 0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,
+ 0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,
+ 0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,
+ 0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,
+ 0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,
+ 0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,
+ 0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,
+ 0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,
+ 0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,
+ 0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,
+ 0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,
+ 0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,
+ 0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,
+ 0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,
+ 0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,
+ 0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,
+ 0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,
+ 0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,
+ 0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,
+ 0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,
+ 0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,
+ 0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,
+ 0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,
+ 0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,
+ 0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,
+ 0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,
+ 0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,
+ 0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,
+ 0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,
+ 0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,
+ 0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,
+ 0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,
+ 0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,
+ 0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,
+ 0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,
+ 0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,
+ 0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,
+ 0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,
+ 0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,
+ 0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,
+ 0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,
+ 0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,
+ 0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,
+ 0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,
+ 0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,
+ 0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,
+ 0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,
+ 0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,
+ 0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,
+ 0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x60,0xe,0xcb,0xff,0x17,
+ 0x7d,0xa3,0x6f,0xdf,0xbe,0xd5,0xb6,0x7e,0x19,0xcb,0x47,0xae,0xf,0x7f,0x95,0xda,
+ 0xca,0x9c,0xae,0xf8,0xec,0xb3,0xff,0xb,0xa9,0x8f,0x71,0xa0,0xbf,0xfc,0xe5,0x2f,
+ 0x9f,0x56,0x9f,0x3f,0x7f,0xfe,0xfa,0xf5,0xeb,0x6f,0xbf,0xfd,0xf6,0xfa,0xfa,0x5a,
+ 0x47,0x3,0xc0,0x3b,0x22,0x9b,0x1,0xe6,0xb0,0x9e,0xa5,0xdf,0x64,0x39,0xb3,0xaf,
+ 0x6d,0xfd,0x32,0x96,0x8f,0x5c,0x1f,0xfe,0x2a,0xb5,0x95,0x39,0x7d,0xf9,0xf2,0xa5,
+ 0x3e,0x46,0xdb,0xec,0xff,0x42,0xea,0x63,0x3c,0x80,0x25,0xa7,0x9f,0x9e,0x9e,0x9e,
+ 0x9f,0x9f,0x7f,0xc1,0xef,0xaa,0x0,0xde,0x25,0xd9,0xc,0x30,0x87,0xf5,0x6c,0xfc,
+ 0x56,0xb5,0xad,0x5f,0x46,0x7d,0xec,0x6b,0xd5,0x56,0xe6,0xf4,0xe1,0xc3,0x87,0xfa,
+ 0x18,0x6d,0xcb,0x48,0xd,0xcf,0xa9,0x3e,0xc6,0x83,0x59,0x12,0xfa,0xf3,0xe7,0xcf,
+ 0x2f,0x2f,0x2f,0x75,0x94,0x0,0x4c,0x48,0x36,0x3,0xcc,0x61,0x3d,0x3,0xbf,0xd5,
+ 0xd7,0xaf,0x5f,0x6b,0x73,0xbf,0x80,0xe5,0xc3,0xd6,0xc7,0xbe,0x56,0x6d,0x68,0x42,
+ 0xbf,0xfd,0xf6,0x5b,0x7d,0x86,0x41,0xcb,0x60,0x6d,0x62,0x42,0xf5,0x19,0x1e,0xd5,
+ 0xd2,0xcf,0xcb,0xbf,0xc9,0xef,0xdf,0xbf,0xd7,0xe1,0x2,0x30,0xf,0xd9,0xc,0x30,
+ 0x87,0xf5,0xc4,0xfb,0x56,0xcb,0x89,0x7b,0x6d,0xee,0x17,0xb0,0x7c,0xd8,0xfa,0xd8,
+ 0xd7,0xaa,0xd,0x4d,0xe8,0xe9,0xe9,0xa9,0x3e,0xc3,0xa0,0x4f,0x9f,0x3e,0xd5,0x26,
+ 0x26,0x54,0x9f,0xe1,0xe1,0x7d,0xfe,0xfc,0x59,0x3c,0x3,0xcc,0x45,0x36,0x3,0xcc,
+ 0x61,0x3d,0xdf,0xde,0xc0,0xd4,0x97,0x13,0xfb,0xae,0xbe,0xdc,0xfa,0xa3,0xda,0xd6,
+ 0x6c,0x96,0x24,0xab,0xf,0x70,0x95,0x79,0x8b,0xae,0x3e,0xc0,0x24,0x7e,0xc1,0x77,
+ 0xd,0x0,0xcc,0x4b,0x36,0x3,0xcc,0x61,0x3d,0xd3,0xde,0xc0,0xd4,0x97,0x13,0xfb,
+ 0x96,0x8f,0x59,0x1f,0xf8,0x6,0xb5,0xad,0xd9,0x3c,0x3f,0x3f,0xd7,0x7,0xb8,0xca,
+ 0x97,0x2f,0x5f,0x6a,0x43,0xb3,0xa9,0xf,0x30,0x8f,0xf,0x1f,0x3e,0x2c,0x7f,0x59,
+ 0x75,0xf4,0x0,0x3c,0x30,0xd9,0xc,0x30,0x87,0xf5,0x34,0x7b,0x1b,0xef,0xfe,0x6,
+ 0xd1,0x1b,0xd7,0x9d,0x3a,0xab,0xcd,0xcd,0xe6,0xc6,0xbb,0xd3,0xe7,0xbd,0x93,0xbf,
+ 0x3e,0xc0,0x6c,0x7e,0x91,0x6f,0xb2,0x0,0xa6,0x26,0x9b,0x1,0xe6,0xb0,0x9e,0x60,
+ 0x6f,0xe3,0xdd,0xdf,0x1d,0xba,0x7c,0xc0,0xfa,0xa8,0xb7,0xa9,0xcd,0x4d,0x65,0x93,
+ 0xaf,0xc,0x26,0x7d,0xed,0x73,0x1d,0xfd,0x84,0x3e,0x7c,0xf8,0x60,0xa9,0x2a,0x80,
+ 0x47,0x26,0x9b,0x1,0xe6,0xb0,0x9e,0x5d,0x6f,0x63,0xf6,0x75,0x86,0x2e,0xaa,0xcf,
+ 0x79,0xb3,0xda,0xdc,0x54,0x36,0xf9,0xca,0xe0,0xe9,0xe9,0xa9,0x36,0x37,0x95,0x3a,
+ 0xfa,0x69,0xfd,0x22,0xef,0x1d,0x0,0x98,0x91,0x6c,0x6,0x98,0xc3,0x7a,0x5e,0xbd,
+ 0x99,0x77,0xfc,0x44,0xe5,0xed,0xeb,0x4e,0x9d,0xd5,0x16,0xa7,0x72,0xc5,0x72,0xcd,
+ 0x3f,0x35,0xe3,0x9d,0xfc,0x75,0xe8,0x33,0x53,0xce,0x0,0x8f,0x49,0x36,0x3,0xcc,
+ 0x61,0x3d,0xa9,0xde,0xcc,0x3b,0x5e,0x89,0xea,0xf6,0x75,0xa7,0xce,0x6a,0x8b,0xf3,
+ 0xd8,0xe4,0xfd,0xe1,0x27,0x33,0x7e,0xb1,0x52,0x87,0x3e,0x39,0xe5,0xc,0xf0,0x80,
+ 0x64,0x33,0xc0,0x1c,0xd6,0x33,0xea,0x2d,0xbd,0xbe,0xbe,0xd6,0xa6,0xdf,0x91,0xd,
+ 0xbb,0x71,0x51,0x1b,0x9d,0xc7,0x26,0xef,0xf,0x3f,0x99,0xf1,0x8b,0x95,0x3a,0xf4,
+ 0xf9,0xbd,0xcb,0xff,0x36,0x1,0xa6,0x26,0x9b,0x1,0xe6,0xb0,0x9e,0x4e,0x6f,0x69,
+ 0xd2,0xe7,0x57,0xdf,0xb6,0x61,0x37,0x2e,0x6a,0xa3,0x93,0xb8,0x71,0xb9,0xe6,0x3f,
+ 0x9a,0x2e,0xde,0xea,0xb8,0xdb,0x96,0x7f,0x2d,0xd7,0xd9,0xf0,0x8e,0x86,0x9f,0xfa,
+ 0xf0,0xe1,0xc3,0xbb,0x7f,0xdd,0x3d,0xc0,0x5c,0x64,0x33,0xc0,0x1c,0xd6,0xd3,0xe9,
+ 0x8d,0xbd,0xb3,0x53,0xf3,0xad,0xd6,0x9d,0x3a,0xab,0xed,0x4e,0x62,0xc3,0x87,0xba,
+ 0x4f,0xa6,0x7b,0xe3,0x7a,0x1d,0x77,0x5b,0x8d,0xdd,0x60,0xf9,0x27,0xf7,0xfa,0xfa,
+ 0xba,0xfc,0xe6,0x9f,0x9e,0x9e,0xb6,0x7a,0xaa,0xfc,0xe4,0xe3,0xc7,0x8f,0xb5,0xf,
+ 0x0,0x1e,0x80,0x6c,0x6,0x98,0xc3,0x7a,0x2e,0xbd,0xb1,0x2f,0x5f,0xbe,0xd4,0xd6,
+ 0xdf,0x85,0xad,0xd6,0x9d,0x3a,0xab,0xed,0x4e,0xa2,0x79,0x9,0xf4,0xf9,0xf9,0xb9,
+ 0xfe,0x5f,0xd,0xb5,0xe9,0x49,0xd4,0x41,0xb7,0xd5,0xd8,0x76,0x96,0x8a,0x5e,0x7e,
+ 0xbd,0x4b,0xf1,0xd6,0xe,0x6e,0xb3,0xd4,0x78,0x6d,0x17,0x80,0x7b,0x93,0xcd,0x0,
+ 0x73,0x58,0x4f,0xa4,0x37,0xf6,0xce,0x56,0xa2,0xaa,0x4f,0xb5,0x9d,0xda,0xee,0xc,
+ 0x5e,0x5e,0x5e,0xea,0xa0,0x2f,0x79,0x7d,0x7d,0xed,0xdf,0x63,0x3c,0xd7,0xeb,0xa9,
+ 0xea,0xa0,0xdb,0x6a,0x6c,0x7,0x4b,0x3f,0x6f,0xf2,0x25,0x8e,0x5b,0xb5,0x1,0x1e,
+ 0x84,0x6c,0x6,0x98,0xc3,0x7a,0x16,0xdd,0xf2,0xf5,0xeb,0xd7,0xf7,0xda,0x45,0x6f,
+ 0x68,0xde,0xa2,0xfc,0xf4,0xf4,0xd4,0xff,0xe5,0xd4,0xa6,0x67,0xd0,0x8f,0xb4,0xe5,
+ 0x87,0x97,0x5f,0x42,0xfd,0x8f,0x4b,0xe6,0xba,0x55,0xb8,0xe,0xba,0xad,0xc6,0x76,
+ 0xb3,0x44,0x6f,0xff,0x57,0xfd,0x53,0x9f,0x3e,0x7d,0xaa,0x6d,0x1,0x70,0x57,0xb2,
+ 0x19,0x60,0xe,0xeb,0x59,0x74,0xcb,0xe9,0x49,0xcb,0xfa,0x1f,0x97,0xbc,0x9b,0x47,
+ 0x28,0x7f,0xf1,0x5b,0x94,0xeb,0x88,0x2f,0x59,0x7e,0x4b,0xcb,0xf,0x37,0xbf,0x62,
+ 0x38,0xf9,0xf6,0xed,0xdb,0x69,0x17,0x8f,0xaf,0x8e,0xb8,0xad,0xc6,0x76,0xf6,0xf2,
+ 0xf2,0x72,0xcb,0x63,0xcf,0xde,0xaa,0xd,0xf0,0x8,0x64,0x33,0xc0,0x1c,0xd6,0x53,
+ 0xe8,0x96,0x4f,0x9f,0x3e,0xd,0xc5,0xe1,0x3b,0x38,0x2f,0xef,0xaf,0x3b,0x35,0xf4,
+ 0xda,0xb0,0xda,0xfa,0xc3,0xeb,0x7f,0xfc,0xd3,0x5b,0xbe,0x96,0xbf,0xf1,0xfa,0xdf,
+ 0xd,0x13,0x3d,0x0,0x5f,0x47,0xdc,0x56,0x63,0xfb,0xfb,0xfe,0xfd,0xfb,0xd5,0xf,
+ 0x3c,0x3f,0xbd,0xc7,0x37,0xde,0x3,0x4c,0x47,0x36,0x3,0xcc,0x61,0x3d,0x85,0x6e,
+ 0x59,0xb2,0x79,0x28,0xe,0xa7,0x7b,0x61,0xf2,0x1f,0x2d,0x1f,0xb9,0x3e,0xcc,0x9b,
+ 0x4e,0xcf,0x72,0xd7,0xff,0x68,0x38,0x6d,0xfc,0xf1,0xf5,0x93,0xec,0xf9,0xf9,0xf9,
+ 0x34,0x52,0xff,0xbb,0x61,0xa2,0x7,0xe0,0xeb,0x88,0xdb,0x6a,0xec,0x28,0x57,0x97,
+ 0xb3,0x27,0x9c,0x1,0xee,0x4e,0x36,0x3,0xcc,0x61,0x3d,0x7f,0x6e,0x39,0x3d,0xf,
+ 0x39,0x74,0x5f,0xe8,0xd4,0xe7,0xe5,0xfd,0xef,0x8,0x9e,0x9e,0x9e,0x86,0x2e,0xb4,
+ 0xd6,0xe,0x1e,0xdb,0xd0,0x57,0x24,0xe7,0xbf,0xe8,0xa1,0x84,0x9b,0xe5,0x1,0xf8,
+ 0x3a,0xdc,0xb6,0x1a,0x3b,0xd0,0x75,0xe5,0xfc,0xce,0xde,0x78,0xf,0x30,0x23,0xd9,
+ 0xc,0x30,0x87,0xf5,0xfc,0xb9,0xe5,0x94,0xcd,0x43,0xef,0x22,0x9a,0x7a,0xa9,0x9b,
+ 0xfe,0xdb,0xb0,0x9e,0x9f,0x9f,0xdf,0x5f,0x36,0x2f,0x4d,0x55,0x87,0x7b,0xc9,0xe9,
+ 0xc1,0xe6,0x93,0xfe,0xd4,0xe2,0xf4,0x2f,0xea,0xf1,0xd5,0xe1,0xb6,0xd5,0xd8,0x81,
+ 0xbe,0x7d,0xfb,0x76,0xc5,0x73,0xce,0x3f,0xfe,0xc5,0x1,0x70,0x17,0xb2,0x19,0x60,
+ 0xe,0xeb,0xf9,0x73,0xcb,0x29,0x72,0x86,0x1e,0x6f,0x9e,0xfa,0xbc,0xbc,0x3e,0x43,
+ 0xc3,0xf7,0xef,0xdf,0xdf,0x5f,0x36,0xf7,0x33,0xec,0xc7,0x8b,0x96,0x43,0xd7,0xa8,
+ 0x17,0x53,0xdc,0x8f,0x50,0xc7,0xda,0x56,0x63,0xc7,0x1a,0xfa,0xf,0xf3,0x6c,0xf9,
+ 0xfb,0xaa,0x79,0x0,0xee,0x41,0x36,0x3,0xcc,0x61,0x3d,0x79,0x6e,0x39,0x65,0xf3,
+ 0x68,0x17,0x4d,0xba,0x12,0x55,0xff,0xa5,0xd0,0xa7,0xaf,0x6,0x86,0xa2,0xe5,0xb4,
+ 0x8b,0x47,0xd6,0x5f,0xae,0x79,0xf1,0xbb,0xf4,0x5d,0x7e,0x21,0xf5,0x7,0xd,0x53,
+ 0xdc,0x8f,0x50,0xc7,0xda,0x56,0x63,0x87,0xbb,0xe2,0x56,0xed,0xa9,0xef,0x7,0x1,
+ 0x78,0x7,0x64,0x33,0xc0,0x1c,0xd6,0x93,0xe7,0x96,0xf3,0x2d,0xb5,0x43,0xb7,0x83,
+ 0xce,0x72,0x23,0xee,0xef,0xf4,0xdb,0xef,0x74,0xad,0x75,0x68,0xed,0xa5,0xd3,0x2e,
+ 0x1e,0xd9,0x2d,0x2b,0x8d,0xd,0xdd,0xa7,0x3d,0xc5,0xfd,0x8,0x75,0xac,0x6d,0x35,
+ 0x76,0xb8,0xa1,0x2f,0x3b,0x4e,0x26,0xfd,0xcf,0x13,0xe0,0xdd,0x90,0xcd,0x0,0x73,
+ 0x58,0x4f,0x9e,0x5b,0xce,0x67,0xd8,0xfd,0x87,0x7e,0x4f,0xa6,0xbb,0x11,0xb4,0xbf,
+ 0xf0,0xd2,0x62,0x69,0x95,0x65,0xe4,0x9d,0x65,0x73,0x1d,0x68,0xc3,0xf9,0x1d,0xda,
+ 0x67,0xdf,0xbf,0x7f,0xaf,0x3f,0xeb,0x39,0xfd,0x2,0x1f,0x59,0x1d,0x68,0x5b,0x8d,
+ 0xdd,0xc3,0xd0,0xa5,0xfe,0x93,0x9a,0x4,0xe0,0x1e,0x64,0x33,0xc0,0x1c,0xd6,0x33,
+ 0xe7,0xae,0xd3,0xc8,0xe8,0x45,0xad,0xe9,0x56,0xa2,0xfa,0xd4,0x5b,0x77,0x6a,0x71,
+ 0xbe,0x58,0xfa,0x9e,0xb2,0x79,0xe8,0x86,0xf3,0x9f,0x3e,0x9c,0x3c,0x74,0xb7,0xf0,
+ 0xe3,0x2f,0x20,0x5c,0x7,0xda,0x56,0x63,0xf7,0x70,0xc5,0x13,0xce,0xef,0x60,0x7d,
+ 0x75,0x80,0x79,0xc9,0x66,0x80,0x39,0xac,0x67,0xce,0x5d,0x35,0x33,0x78,0x9f,0xf6,
+ 0xa2,0xc6,0x66,0x30,0xf4,0xf0,0xf6,0xf9,0x6d,0x58,0x43,0x2f,0x18,0x3f,0x8d,0x3c,
+ 0xac,0xfe,0x15,0xcb,0x54,0xbc,0xa3,0xf1,0x56,0x63,0x8f,0xaa,0x8e,0xb2,0xad,0xc6,
+ 0xee,0x61,0xf4,0x52,0xff,0x62,0xd2,0xb7,0xf,0x0,0xbc,0xf,0xb2,0x19,0x60,0xe,
+ 0xeb,0x99,0x73,0x57,0xcd,0x8c,0xdf,0xa7,0xfd,0xc7,0x5b,0x79,0x1f,0xd6,0xd0,0x47,
+ 0x3b,0x5f,0x6b,0xed,0x5f,0xa0,0x5e,0x9c,0x46,0x1e,0xd3,0xd0,0xb7,0x6,0x6f,0x14,
+ 0x57,0xfd,0x44,0xcf,0x83,0xff,0xf3,0xa8,0xa3,0x6c,0xab,0xb1,0x3b,0x19,0xbd,0x4f,
+ 0xdb,0x5b,0xc1,0x0,0xee,0x48,0x36,0x3,0xcc,0x61,0x3d,0x73,0xee,0xaa,0x99,0xf1,
+ 0xf7,0x69,0x4f,0xf1,0xe6,0xa7,0x93,0x3a,0xe2,0x86,0x1f,0xaf,0xb5,0xbe,0x9b,0x6c,
+ 0xee,0x7f,0x6b,0xf0,0xe1,0xc3,0x87,0x9a,0xf9,0x99,0xa1,0xcb,0xef,0xf,0xfe,0xcf,
+ 0xa3,0x8e,0xb2,0xad,0xc6,0xee,0x64,0xf4,0x2b,0xad,0xc7,0xbf,0x49,0x1e,0xe0,0x1d,
+ 0x93,0xcd,0x0,0x73,0x58,0xcf,0x9c,0xbb,0x6a,0x66,0x35,0x14,0x8a,0x8b,0xc7,0x7f,
+ 0xf3,0xd3,0x62,0xe8,0x11,0xe5,0x1f,0x1f,0xa,0x7d,0x37,0xd9,0xdc,0xbf,0xfd,0xfe,
+ 0xed,0x47,0xd6,0x87,0x5e,0xab,0xb6,0x78,0xe4,0x27,0x6c,0xeb,0x10,0xdb,0x6a,0xec,
+ 0x4e,0x86,0xfe,0xd,0x2f,0x96,0x7f,0xba,0x35,0x9,0xc0,0xe1,0x64,0x33,0xc0,0x1c,
+ 0xd6,0x33,0xe7,0xae,0x9a,0x59,0x8d,0x76,0xd1,0x14,0x67,0xe7,0xfd,0x1b,0x5c,0x7f,
+ 0x77,0x81,0xf4,0x7d,0x64,0xf3,0x15,0xaf,0x10,0x7f,0xc3,0xd0,0x3,0xf0,0x6f,0x47,
+ 0xf8,0x7d,0xd5,0x21,0xb6,0xd5,0xd8,0x9d,0xbc,0xbe,0xbe,0xd6,0x71,0xf4,0xfc,0x71,
+ 0x9,0x31,0x0,0xe,0x23,0x9b,0x1,0xe6,0xb0,0x9e,0x39,0x77,0xd5,0xcc,0x7f,0x8d,
+ 0x3e,0x45,0xf9,0xd3,0xb7,0x2e,0x3f,0x8e,0xa1,0x68,0xfc,0xdd,0x63,0xbd,0xef,0x23,
+ 0x9b,0xfb,0x9f,0xe2,0xed,0x3b,0xb4,0x4f,0x86,0xee,0x16,0xee,0x6c,0xf0,0x5e,0xea,
+ 0x10,0xdb,0x6a,0xec,0x4e,0x46,0xb3,0x79,0x51,0x93,0x0,0x1c,0x4e,0x36,0x3,0xcc,
+ 0x61,0x3d,0x6d,0xee,0xaa,0x99,0xff,0x1a,0x7d,0x61,0xf2,0xf9,0xbd,0xd3,0x8f,0xe9,
+ 0x96,0x68,0xac,0x3f,0xe8,0xa9,0x99,0x7,0x33,0xf4,0x12,0xe6,0xce,0x5f,0xe5,0x68,
+ 0xbf,0xfd,0xee,0x9b,0x88,0xc7,0x51,0xc7,0xd7,0x56,0x63,0xf7,0x53,0xc7,0xd1,0x56,
+ 0x63,0x0,0x1c,0x4e,0x36,0x3,0xcc,0x61,0x3d,0x6d,0xee,0xaa,0x99,0x1f,0xc,0xdd,
+ 0x88,0xfb,0xc8,0x57,0x14,0xaf,0x5b,0x77,0xea,0xac,0xfe,0xa0,0xa7,0x66,0x1e,0xcc,
+ 0xd0,0x33,0xb1,0xcb,0xaf,0xab,0xc6,0xde,0x34,0x74,0x3f,0xc2,0xc3,0xde,0x2d,0x5c,
+ 0xc7,0xd7,0x56,0x63,0xf7,0x53,0xc7,0xd1,0x56,0x63,0x0,0x1c,0x4e,0x36,0x3,0xcc,
+ 0x61,0x3d,0x6d,0xee,0xaa,0x99,0x1f,0x8c,0xbe,0xb6,0xf7,0x61,0xaf,0x28,0xe,0x7d,
+ 0x90,0x3f,0xde,0x6d,0x5e,0x7f,0xd0,0x53,0x33,0xf,0xe6,0xea,0xe7,0xba,0xdf,0xf0,
+ 0xe5,0xcb,0x97,0x9a,0xe9,0x69,0xd6,0xf8,0xc1,0xea,0xe0,0xda,0x6a,0xec,0x7e,0xea,
+ 0x38,0xda,0x6a,0xc,0x80,0xc3,0xc9,0x66,0x80,0x39,0xac,0xa7,0xcd,0x5d,0x35,0xf3,
+ 0x83,0xa1,0x3b,0x7b,0x17,0xfd,0xe2,0x3a,0x58,0x1d,0x5f,0xc3,0x4f,0x17,0xec,0xa9,
+ 0x3f,0xeb,0xa9,0x99,0x47,0x32,0x74,0x43,0x75,0x7f,0xa5,0xdf,0xd1,0x85,0xca,0x1e,
+ 0xf3,0x36,0xfe,0x3a,0xb8,0xb6,0x1a,0xbb,0x9f,0x3a,0x8e,0xb6,0x1a,0x3,0xe0,0x70,
+ 0xb2,0x19,0x60,0xe,0xeb,0x69,0x73,0x57,0xcd,0xfc,0x6f,0x43,0x6f,0xc3,0x5a,0x3c,
+ 0xe0,0x52,0x43,0x57,0xaf,0x3b,0x75,0x56,0x7f,0xd6,0x53,0x33,0x8f,0xe4,0xc6,0x8b,
+ 0xed,0x6f,0xf8,0xf8,0xf1,0x63,0x8d,0x35,0x3c,0xe6,0x6d,0xfc,0x75,0x70,0x6d,0x35,
+ 0x76,0x3f,0x75,0x1c,0x6d,0x35,0x6,0xc0,0xe1,0x64,0x33,0xc0,0x1c,0xd6,0xd3,0xe6,
+ 0xae,0x9a,0xf9,0xdf,0x5e,0x5e,0x5e,0xea,0x8f,0x7b,0x7e,0x7a,0xb5,0xf6,0xbe,0x6e,
+ 0xbf,0x3f,0xb9,0xfe,0xb8,0xa7,0x66,0x1e,0x49,0xff,0x19,0xf5,0xd1,0x27,0x90,0x47,
+ 0xdf,0x1b,0xf7,0x80,0xb7,0xf1,0xd7,0x91,0xb5,0xd5,0xd8,0xfd,0xd4,0x71,0xb4,0xd5,
+ 0x18,0x0,0x87,0x93,0xcd,0x0,0x73,0x58,0x4f,0x9b,0xbb,0x6a,0xe6,0xf,0xfa,0xd9,
+ 0x79,0xf2,0x50,0x2b,0x51,0xdd,0xb2,0xee,0xd4,0x59,0xfd,0x71,0x4f,0xcd,0x3c,0x8c,
+ 0xa1,0xdf,0xc0,0x92,0xc1,0x35,0xd6,0x33,0x7a,0x1b,0xff,0xa7,0xc7,0x5b,0xdf,0xbb,
+ 0x8e,0xac,0xad,0xc6,0xee,0x64,0xf4,0xc6,0xf8,0x7,0xfc,0x85,0x3,0xfc,0x3a,0x64,
+ 0x33,0xc0,0x1c,0xd6,0x33,0xe7,0xae,0x9a,0xf9,0x83,0xa1,0xee,0x5a,0xf4,0x1f,0x8e,
+ 0x3d,0xc0,0x26,0x8b,0x15,0xd7,0x4f,0xf4,0xd4,0xcc,0xc3,0x18,0xba,0x8f,0xba,0x66,
+ 0x46,0x3c,0x3d,0x3d,0xd5,0x70,0xcf,0x43,0x7d,0xab,0xb2,0xa8,0xc3,0x6a,0xab,0xb1,
+ 0x3b,0x19,0x5d,0xf7,0x4b,0x36,0x3,0xdc,0x91,0x6c,0x6,0x98,0xc3,0x7a,0xe6,0xdc,
+ 0x55,0x33,0x3f,0x33,0xe9,0x4a,0x54,0x37,0xae,0x3b,0x75,0x56,0x3f,0xd1,0x53,0x33,
+ 0x8f,0x61,0xe8,0x6a,0xf0,0x75,0x37,0xd8,0x4f,0xfd,0xad,0xca,0xa2,0xe,0xab,0xad,
+ 0xc6,0xee,0x64,0xf4,0xae,0xf8,0xcf,0x9f,0x3f,0xd7,0x24,0x0,0x87,0x93,0xcd,0x0,
+ 0x73,0x58,0xcf,0x9c,0xbb,0x6a,0xe6,0x67,0x46,0x97,0x1a,0x4a,0x77,0x3b,0x1f,0x6c,
+ 0xab,0x57,0x61,0xd5,0x4f,0xf4,0xd4,0xcc,0x63,0x18,0xfa,0x8b,0xbb,0xfa,0x6f,0x6d,
+ 0xe8,0x5b,0x95,0x47,0x7b,0xdd,0x7a,0x1d,0x56,0x5b,0x8d,0xdd,0xc9,0xe8,0x7f,0x89,
+ 0x8f,0xf6,0x25,0x5,0xc0,0x2f,0x45,0x36,0x3,0xcc,0x61,0x3d,0x73,0xee,0xaa,0x99,
+ 0x9f,0x19,0x7d,0x84,0x75,0xf4,0xcd,0x52,0x3b,0xa9,0xa3,0x69,0x78,0xfb,0x42,0x6b,
+ 0xfd,0x50,0x4f,0xcd,0x3c,0x86,0xfe,0x73,0xe9,0xb7,0xdc,0x23,0x30,0xba,0xbe,0xf7,
+ 0xcb,0xcb,0x4b,0x4d,0x3e,0x80,0x3a,0xa6,0xb6,0x1a,0xbb,0x93,0xa1,0x5b,0xee,0x17,
+ 0xf,0xf8,0x66,0x7b,0x80,0x5f,0x87,0x6c,0x6,0x98,0xc3,0x7a,0xe6,0xdc,0x55,0x33,
+ 0xc1,0xe8,0x23,0xac,0x77,0x3f,0x5f,0xbf,0x7d,0xdd,0xa9,0xb3,0xfa,0xa1,0x9e,0x9a,
+ 0x79,0x0,0x43,0x6f,0x41,0xbf,0xe5,0x6e,0xde,0xa9,0x5f,0xb7,0x5e,0xc7,0xd4,0x56,
+ 0x63,0x77,0x52,0x7,0xd1,0xf6,0x68,0x4f,0x92,0x3,0xfc,0x52,0x64,0x33,0xc0,0x1c,
+ 0xd6,0x33,0xe7,0xae,0x9a,0x9,0x46,0xdf,0x45,0x74,0xf7,0x87,0x2a,0x6f,0x5f,0x77,
+ 0xea,0xac,0x7e,0xae,0xa7,0x66,0x1e,0xc0,0xd0,0x37,0x1d,0x37,0x5e,0x1,0x1e,0x7d,
+ 0xdd,0x7a,0x8d,0x3d,0x80,0x3a,0xa0,0xb6,0x1a,0xbb,0x87,0xd1,0xc7,0xc8,0x1f,0xed,
+ 0x7e,0x78,0x80,0x5f,0x8d,0x6c,0x6,0x98,0xc3,0x7a,0xf2,0xdc,0x55,0x33,0xd9,0x44,
+ 0x69,0x34,0x14,0x18,0x17,0x9f,0xe9,0xad,0x9f,0xeb,0xa9,0x99,0x7,0x50,0x7,0xd4,
+ 0x70,0x7b,0x5f,0x8d,0x3e,0x73,0x3b,0xba,0xd2,0xd5,0x7e,0xea,0x80,0xda,0x6a,0xec,
+ 0x1e,0xfa,0xaf,0x85,0x3f,0xf1,0x3e,0x30,0x80,0xfb,0x92,0xcd,0x0,0x73,0x58,0x4f,
+ 0x9e,0xbb,0x6a,0x26,0x1b,0xbd,0xd8,0x75,0xc7,0xd7,0x11,0x6d,0xb2,0xee,0xd4,0x59,
+ 0xfd,0x68,0x4f,0xcd,0xdc,0xdb,0xd0,0x2b,0x97,0xdf,0x78,0x8b,0x78,0xd3,0xe8,0x7a,
+ 0xc2,0x8f,0x73,0x21,0xb4,0xe,0xa8,0xad,0xc6,0xe,0x37,0xfa,0x7e,0x81,0xc5,0xd5,
+ 0xef,0x78,0x3,0x60,0x13,0xb2,0x19,0x60,0xe,0xeb,0xc9,0x73,0x57,0xcd,0xbc,0x69,
+ 0x8a,0x77,0x26,0x6f,0xb5,0xee,0xd4,0x59,0xfd,0x68,0x4f,0xcd,0xdc,0xdb,0xd0,0xbb,
+ 0xa3,0x96,0xdf,0x58,0x8d,0xdd,0x60,0xf4,0x66,0x84,0x4d,0x76,0x7a,0xbb,0x3a,0x9a,
+ 0xb6,0x1a,0x3b,0xdc,0xe8,0x7b,0xd7,0x16,0x35,0x9,0xc0,0x9d,0xc8,0x66,0x80,0x39,
+ 0xac,0x27,0xcf,0x5d,0x35,0xf3,0xa6,0xa1,0xf7,0x6c,0x2d,0xee,0x72,0xbd,0x6b,0x28,
+ 0x30,0x3a,0xef,0x4c,0xaa,0x1f,0xed,0xa9,0x99,0xbb,0x1a,0xfa,0xe2,0x60,0xab,0x6f,
+ 0x37,0x26,0x5d,0x52,0xb8,0x8e,0xa6,0xad,0xc6,0x8e,0x35,0x7a,0x31,0x7f,0xf1,0x50,
+ 0xef,0x5d,0x3,0xf8,0x35,0xc9,0x66,0x80,0x39,0xac,0xe7,0xcf,0x5d,0x35,0xf3,0xa6,
+ 0xd1,0x3b,0x45,0x3f,0x7d,0xfa,0x54,0x93,0x7,0xaa,0x7d,0x37,0x34,0xd3,0xa2,0x7e,
+ 0xba,0xa7,0x66,0xee,0x6a,0xe8,0x8b,0x83,0xad,0x1e,0x33,0x1e,0xfd,0xb7,0x71,0xcb,
+ 0x92,0x57,0x1b,0xaa,0xa3,0x69,0xab,0xb1,0x63,0x8d,0x3e,0xd5,0xbc,0x70,0x87,0x36,
+ 0xc0,0xdd,0xc9,0x66,0x80,0x39,0xac,0xe7,0xcf,0x5d,0x35,0x73,0xc9,0xe8,0xcd,0xa2,
+ 0x7,0x2f,0x81,0xb3,0xe1,0xba,0x53,0x67,0xf5,0xd3,0x3d,0x35,0x73,0x57,0x43,0xf7,
+ 0xd2,0x6f,0xf8,0x17,0x34,0x5a,0x77,0x8f,0x90,0x76,0x75,0x28,0x6d,0x35,0x76,0xa0,
+ 0xd1,0x5b,0x3c,0x16,0x8f,0xf3,0xe8,0x38,0xc0,0xaf,0x4c,0x36,0x3,0xcc,0x61,0x3d,
+ 0x85,0xee,0xaa,0x99,0x4b,0x1e,0x7c,0x25,0xaa,0xfe,0x13,0xb6,0xfd,0xb4,0xa8,0x81,
+ 0x9e,0x9a,0xb9,0x9f,0xa1,0x37,0xb7,0x6d,0x7b,0x3b,0xc0,0xd0,0xae,0x17,0x1f,0x3f,
+ 0x7e,0xac,0xc9,0xfb,0xa9,0x43,0x69,0xab,0xb1,0xa3,0x8c,0xae,0x89,0x7d,0x72,0xc7,
+ 0xb7,0xf1,0x1,0x70,0x26,0x9b,0x1,0xe6,0xb0,0x9e,0x42,0x77,0xd5,0x4c,0xc3,0xd0,
+ 0xeb,0xa6,0x8e,0xbc,0x17,0x77,0x28,0xdb,0xfa,0x97,0x3a,0x6b,0xa0,0xa7,0x66,0xee,
+ 0x67,0x68,0xb9,0xe6,0xcd,0xaf,0xf7,0xd6,0x76,0xdb,0xe,0xbe,0x19,0xe1,0x8f,0xea,
+ 0x38,0xda,0x6a,0xec,0x10,0xdf,0xbe,0x7d,0x1b,0xba,0x71,0xe0,0xe4,0x41,0xee,0x7e,
+ 0x7,0x40,0x36,0x3,0xcc,0x61,0x3d,0x8b,0xee,0xaa,0x99,0x86,0xd1,0x8b,0x8a,0x87,
+ 0x2d,0xd2,0xbb,0xed,0xba,0x53,0x67,0x35,0xd3,0x53,0x33,0x77,0x32,0xfa,0x80,0x71,
+ 0x8d,0x6d,0x67,0xf4,0x1e,0xfe,0xdb,0xd7,0xbe,0xba,0x51,0x1d,0x47,0x5b,0x8d,0xed,
+ 0xef,0xe5,0xe5,0xe5,0x8a,0x66,0x5e,0xb8,0xd4,0xc,0xf0,0x20,0x64,0x33,0xc0,0x1c,
+ 0xd6,0xb3,0xe8,0xae,0x9a,0xe9,0x19,0x5a,0x6d,0xe8,0x98,0x27,0x2d,0x87,0xde,0x36,
+ 0x3c,0x74,0xeb,0x78,0xcd,0xf4,0xd4,0xcc,0x9d,0xc,0xbd,0xce,0x7a,0x8f,0x97,0x2d,
+ 0x8f,0xde,0x54,0x7c,0xf7,0x4b,0xa3,0x75,0x1c,0x6d,0x35,0xb6,0xb3,0x2b,0x9e,0x67,
+ 0x3e,0xf1,0x54,0x33,0xc0,0xe3,0x90,0xcd,0x0,0x73,0x58,0x4f,0xa4,0xbb,0x6a,0xa6,
+ 0x67,0xf4,0xb4,0x7e,0xa9,0xa9,0x9a,0xdc,0xcd,0xd0,0x75,0xce,0xa1,0x7b,0x83,0x6b,
+ 0xa6,0xa7,0x66,0xee,0x64,0xe8,0xeb,0x8c,0x9d,0xfe,0x52,0x46,0xaf,0x91,0x6e,0x7e,
+ 0xa3,0xf8,0x90,0x3a,0x88,0xb6,0x1a,0xdb,0xcd,0xf2,0x2f,0xf3,0x8a,0xf7,0x66,0x9f,
+ 0x35,0xdf,0x72,0x7,0xc0,0x1,0x64,0x33,0xc0,0x1c,0xd6,0x13,0xe9,0xae,0x9a,0x69,
+ 0xab,0xb1,0x9e,0x3,0x56,0x91,0xad,0x3d,0x35,0x8c,0xbe,0x7,0xab,0xc6,0x7a,0x6a,
+ 0xe6,0x1e,0x86,0xde,0xd6,0xb6,0xdf,0x65,0xde,0x2f,0x5f,0xbe,0xd4,0x3e,0x7a,0xee,
+ 0xbb,0xc2,0x70,0x1d,0x44,0x5b,0x8d,0xed,0x60,0x9,0xe6,0xd1,0x5b,0xdc,0x7f,0xe7,
+ 0xe0,0xd7,0xef,0x1,0xf0,0x36,0xd9,0xc,0x30,0x87,0xf5,0x5c,0xba,0xab,0x66,0xda,
+ 0x46,0x4f,0xf1,0x77,0x7d,0xf9,0xd3,0xd0,0xd5,0xef,0xd1,0xab,0xac,0x35,0xd6,0x53,
+ 0x33,0xf7,0x30,0xf4,0x37,0xb2,0x5f,0x62,0xd,0xdd,0x2d,0x7f,0xb2,0xeb,0xbf,0x8d,
+ 0xb7,0xd5,0x11,0xb4,0xd5,0xd8,0xa6,0x96,0xdf,0xd8,0x8d,0xc1,0xbc,0x70,0x7b,0x36,
+ 0xc0,0xa3,0x91,0xcd,0x0,0x73,0x58,0x4f,0xa7,0xbb,0x6a,0xa6,0x6d,0xb4,0x8e,0x76,
+ 0x7d,0xf9,0x53,0xff,0xe6,0xe4,0x2b,0xea,0xa2,0x26,0x7b,0x6a,0xe6,0x1e,0x86,0xee,
+ 0x8e,0xde,0xf5,0x6e,0xde,0xa1,0x7b,0xc5,0x17,0x77,0x7c,0x8b,0x55,0x1d,0x41,0x5b,
+ 0x8d,0x6d,0xe1,0xe5,0xe5,0x65,0xf9,0x8f,0x62,0xf4,0x77,0xf5,0x53,0xcb,0x5f,0xfd,
+ 0xf2,0xdf,0x63,0x6d,0x17,0x80,0xc7,0x20,0x9b,0x1,0xe6,0xb0,0x9e,0x51,0x77,0xd5,
+ 0xcc,0x88,0xa1,0x87,0x30,0xf7,0xbb,0x2b,0x78,0xe8,0xcd,0xde,0x57,0xbc,0xd6,0xbb,
+ 0x26,0x7b,0x6a,0xe6,0x70,0x43,0xbf,0x84,0xbd,0xaf,0x4c,0x8e,0x3e,0xfa,0xbe,0xf7,
+ 0xf1,0xbc,0xa1,0x8e,0xa0,0xad,0xc6,0x6,0xbd,0xae,0x96,0x4e,0x5e,0x7e,0x33,0x9f,
+ 0x3f,0x7f,0x1e,0x5a,0xc2,0xad,0xe3,0xbe,0xcf,0x87,0x3,0xf0,0x53,0xb2,0x19,0x60,
+ 0xe,0xeb,0x19,0x75,0x57,0xcd,0x8c,0x18,0x5d,0x89,0x6a,0xa7,0x93,0xfb,0x9d,0xd6,
+ 0x9d,0x3a,0xab,0xe1,0x9e,0x9a,0x39,0xdc,0xd0,0x57,0x18,0x7b,0x2f,0xfb,0xf4,0x7d,
+ 0x70,0x1d,0xac,0xc5,0x1,0x2f,0x8d,0xfb,0xa9,0xda,0xfd,0xcc,0x34,0x33,0xc0,0x63,
+ 0x92,0xcd,0x0,0x73,0x58,0x4f,0xaa,0xbb,0x6a,0x66,0xd0,0xd0,0x2d,0xa6,0x1f,0x3f,
+ 0x7e,0xac,0xb1,0xed,0xec,0xb7,0xee,0xd4,0x59,0xd,0xf7,0xd4,0xcc,0xb1,0x46,0x33,
+ 0xf5,0x80,0x1b,0x7a,0x47,0x2f,0xa8,0xee,0xf7,0xac,0xf5,0xdb,0x6a,0xf7,0xd3,0xd2,
+ 0xcc,0x0,0xf,0x4b,0x36,0x3,0xcc,0x61,0x3d,0xaf,0xee,0xaa,0x99,0x41,0xa3,0xb7,
+ 0xe3,0x6e,0xfe,0x48,0xed,0xd0,0xbb,0x94,0xae,0x7b,0xf5,0x54,0xd,0xf7,0xd4,0xcc,
+ 0xb1,0x86,0x5e,0x5e,0xbd,0xc7,0x97,0x17,0x7f,0x34,0x7a,0x27,0xc2,0xa2,0x26,0x8f,
+ 0x55,0xfb,0x9e,0x93,0x66,0x6,0x78,0x64,0xb2,0x19,0x60,0xe,0xeb,0xa9,0x75,0x57,
+ 0xcd,0x8c,0x1b,0x7a,0x13,0xd5,0xe6,0x17,0x15,0x6b,0xbb,0xd,0xa3,0xeb,0x4e,0x9d,
+ 0xd5,0x7c,0x4f,0xcd,0x1c,0x6b,0xe8,0x9a,0xff,0x15,0x4f,0x77,0x5f,0xa7,0xf6,0xd7,
+ 0x76,0xd8,0x81,0xfd,0xa8,0xf6,0x3d,0x21,0xcd,0xc,0xf0,0xe0,0x64,0x33,0xc0,0x1c,
+ 0xd6,0xb3,0xeb,0xae,0x9a,0x19,0x37,0x74,0xbd,0x77,0xb1,0xe1,0x6a,0x43,0xbb,0xae,
+ 0x3b,0x75,0x56,0xf3,0x3d,0x35,0x73,0xa0,0xe5,0x73,0xd5,0xbe,0x7b,0xe,0x5b,0xed,
+ 0xe9,0xe9,0xe9,0xa9,0x76,0xd9,0x73,0x97,0x17,0x83,0xd5,0xbe,0xa7,0xf2,0xe1,0xc3,
+ 0x87,0xcd,0xef,0xda,0x0,0x60,0x73,0xb2,0x19,0x60,0xe,0xeb,0x39,0x76,0x57,0xcd,
+ 0x8c,0x1b,0x7d,0xb0,0x76,0xc3,0xd5,0x86,0xfa,0x57,0x59,0x6f,0x49,0xb2,0xda,0x44,
+ 0x4f,0xcd,0x1c,0x68,0xe8,0x6b,0x8b,0x25,0x65,0x6b,0x6c,0x7f,0xa3,0x3d,0xbf,0x38,
+ 0x7e,0x15,0xa5,0xda,0xf1,0x3c,0x3e,0x7e,0xfc,0x78,0xd8,0x17,0x1f,0x0,0xdc,0x42,
+ 0x36,0x3,0xcc,0x61,0x3d,0xcd,0xee,0xaa,0x99,0xab,0xdc,0x65,0x25,0xaa,0xa1,0xa7,
+ 0x67,0x6f,0xb9,0x1,0xb8,0x36,0xd1,0x53,0x33,0x7,0xaa,0x1d,0xf7,0x1c,0x7c,0x67,
+ 0xef,0xd0,0xd,0xfc,0x8b,0xe3,0x5f,0xc,0x56,0x3b,0x9e,0xc4,0x86,0x5f,0x39,0x1,
+ 0xb0,0x37,0xd9,0xc,0x30,0x87,0xf5,0x4c,0xbb,0xab,0x66,0xae,0x32,0x7a,0x5d,0x71,
+ 0x93,0x78,0xdb,0x7b,0xdd,0xa9,0xb3,0xda,0x4a,0x4f,0xcd,0x1c,0x65,0xe8,0xbb,0x83,
+ 0x45,0x8d,0x1d,0x65,0xf4,0x6,0xfe,0xad,0xbe,0x52,0xe9,0xab,0x1d,0x3f,0xbc,0xe5,
+ 0x5f,0xfb,0xf1,0x97,0xe2,0x1,0xb8,0x85,0x6c,0x6,0x98,0xc3,0x7a,0xbe,0xdd,0x55,
+ 0x33,0xd7,0x1a,0x7a,0x2b,0xd5,0xd5,0x6f,0xe7,0x3a,0x3b,0x60,0xdd,0xa9,0xb3,0xda,
+ 0x4a,0x4f,0xcd,0x1c,0x65,0x68,0x9d,0xa7,0xe3,0xaf,0xe5,0xe,0xfd,0x35,0x9d,0x1c,
+ 0x7c,0x3d,0xbc,0xf6,0xfa,0xc0,0x96,0xff,0xb2,0xe,0xfe,0x9d,0x0,0xb0,0x9,0xd9,
+ 0xc,0x30,0x87,0xf5,0xac,0xbb,0xab,0x66,0xae,0xf5,0xfc,0xfc,0x5c,0x1b,0xea,0xb9,
+ 0xf1,0xd2,0xd9,0xd0,0x65,0xcc,0x1b,0x9f,0x5,0xad,0xad,0xf4,0xd4,0xcc,0x21,0x46,
+ 0xa3,0xf4,0xea,0x97,0xa2,0xdd,0x62,0xe8,0xfb,0x94,0xc5,0x31,0xeb,0x63,0x9d,0xd5,
+ 0x5e,0x1f,0x92,0x60,0x6,0x98,0x9a,0x6c,0x6,0x98,0xc3,0x7a,0xee,0xdd,0x55,0x33,
+ 0x37,0x18,0x7a,0x90,0xf5,0xb0,0x2b,0xc0,0xb7,0x5f,0xd9,0xae,0xd,0xf5,0xd4,0xcc,
+ 0x21,0x86,0x96,0x6b,0x3e,0xfe,0xfe,0xe7,0x93,0xa1,0x83,0x3c,0x39,0xf2,0x95,0x57,
+ 0xb5,0xcb,0x7,0xb3,0xfc,0xa3,0x15,0xcc,0x0,0xb3,0x93,0xcd,0x0,0x73,0x58,0xcf,
+ 0xc0,0xbb,0x6a,0xe6,0x6,0xa3,0x81,0x54,0x63,0xe3,0x8e,0x59,0x77,0xea,0xac,0x36,
+ 0xd4,0x53,0x33,0x87,0x38,0xf2,0x7b,0x8a,0xab,0x8d,0xbe,0x68,0x7d,0xb1,0xfc,0x43,
+ 0xaa,0xe1,0xfd,0xd5,0x2e,0x1f,0xc3,0xc7,0x8f,0x1f,0x9f,0x9f,0x9f,0xbd,0x28,0x1b,
+ 0xe0,0x7d,0x90,0xcd,0x0,0x73,0x58,0x4f,0xc5,0xbb,0x6a,0xe6,0x6,0xa3,0x81,0x74,
+ 0xf5,0xdb,0xad,0xfb,0xf7,0xfd,0x2e,0x3f,0x59,0x33,0x37,0xa8,0x6d,0xf5,0xd4,0xcc,
+ 0xfe,0xae,0x58,0xde,0x69,0x16,0x47,0x5e,0x18,0xaf,0x5d,0xde,0xcf,0x92,0xca,0x9f,
+ 0x3f,0x7f,0xfe,0xed,0xb7,0xdf,0xd4,0x32,0xc0,0x3b,0x23,0x9b,0x1,0xe6,0xb0,0x9e,
+ 0x96,0x77,0xd5,0xcc,0x6d,0x9e,0x9e,0x9e,0x6a,0x73,0xd,0xd7,0x35,0xed,0x12,0x18,
+ 0x35,0xdf,0x70,0xcb,0xba,0x53,0x67,0xb5,0xad,0x9e,0x9a,0xd9,0xdf,0xd0,0xaf,0x7a,
+ 0x3a,0x87,0xdd,0xa2,0x5c,0xfb,0x6b,0xfb,0x74,0x9b,0xe5,0x6f,0xed,0xeb,0xea,0xf5,
+ 0xf5,0xd5,0x9b,0xb1,0x1,0xde,0x37,0xd9,0xc,0x30,0x87,0xf5,0x3c,0xbf,0xab,0x66,
+ 0x6e,0xb3,0xc4,0x40,0x6d,0xae,0xe7,0x8a,0x3b,0xa8,0x97,0xf6,0xa8,0xe1,0x4b,0xb6,
+ 0xba,0x68,0x59,0x9b,0xeb,0xa9,0x99,0x9d,0x5d,0x71,0xe7,0xf3,0x5c,0x96,0xbc,0xac,
+ 0x8f,0xba,0xb3,0xda,0x5f,0x5b,0x8d,0x1,0xc0,0x25,0xb2,0x19,0x60,0xe,0xeb,0x79,
+ 0x7e,0x57,0xcd,0xdc,0x6c,0xe8,0xcd,0xc9,0x4b,0x3,0xd7,0x58,0xcf,0x91,0xeb,0x4e,
+ 0x9d,0xd5,0xe6,0x7a,0x6a,0x66,0x67,0xa3,0xef,0x2d,0x9f,0xd1,0x31,0x37,0x2d,0xd7,
+ 0xce,0xda,0x6a,0xc,0x0,0x2e,0x91,0xcd,0x0,0x73,0x58,0xcf,0xf3,0xbb,0x6a,0xe6,
+ 0x66,0x43,0x37,0x51,0x2f,0x86,0xea,0xe8,0xc8,0x75,0xa7,0xce,0x6a,0x73,0x3d,0x35,
+ 0xb3,0xb3,0xa1,0xef,0x26,0x26,0xf5,0xf5,0xeb,0xd7,0xfa,0xb4,0x7b,0xaa,0x9d,0xb5,
+ 0xd5,0x18,0x0,0x5c,0x22,0x9b,0x1,0xe6,0xb0,0x9e,0xe7,0x77,0xd5,0xcc,0x16,0xf6,
+ 0x7b,0xc3,0x73,0xcd,0x34,0x8c,0x5e,0xc7,0x7e,0x43,0x6d,0xb1,0xa7,0x66,0xf6,0x34,
+ 0xba,0x5c,0xf3,0xa4,0x36,0x79,0x9d,0xdb,0x45,0xb5,0xb3,0xb6,0x1a,0x3,0x80,0x4b,
+ 0x64,0x33,0xc0,0x1c,0xd6,0xf3,0xfc,0xae,0x9a,0xd9,0xc2,0xd7,0x91,0x5,0xa2,0xfa,
+ 0x4f,0x20,0xf,0x6d,0xf6,0xf6,0x75,0xa7,0xce,0x6a,0x8b,0x3d,0x35,0xb3,0xa7,0xa1,
+ 0x4b,0xee,0x53,0x7b,0x7d,0x7d,0xad,0xcf,0xbc,0x9b,0xda,0x53,0x5b,0x8d,0x1,0xc0,
+ 0x25,0xb2,0x19,0x60,0xe,0xeb,0x79,0x7e,0x57,0xcd,0x6c,0x61,0xf4,0x85,0x55,0xcd,
+ 0xd7,0x26,0xf7,0xef,0x4c,0xde,0xf6,0x42,0x65,0x6d,0xb4,0xa7,0x66,0xf6,0x34,0x74,
+ 0x31,0x7f,0x6a,0x5b,0x3d,0x9d,0xfe,0x86,0xda,0x53,0x5b,0x8d,0x1,0xc0,0x25,0xb2,
+ 0x19,0x60,0xe,0xeb,0x79,0x7e,0x57,0xcd,0x6c,0x64,0xe8,0x8a,0x68,0xa7,0x72,0x8f,
+ 0x5f,0x77,0xea,0xac,0x36,0xda,0x53,0x33,0xbb,0x19,0x7d,0x74,0x7c,0x76,0xf5,0xb1,
+ 0x77,0x53,0xbb,0x69,0xab,0x31,0x0,0xb8,0x44,0x36,0x3,0xcc,0x61,0x3d,0xcf,0xef,
+ 0xaa,0x99,0x8d,0x8c,0xae,0x44,0x75,0xf1,0x76,0xdc,0xe3,0xd7,0x9d,0x3a,0xab,0xed,
+ 0xf6,0xd4,0xcc,0x6e,0xfa,0xbf,0x87,0xf7,0x61,0xdb,0x6f,0x40,0xfe,0xa8,0x76,0xd3,
+ 0x56,0x63,0x0,0x70,0x89,0x6c,0x6,0x98,0xc3,0x7a,0x9e,0xdf,0x55,0x33,0xdb,0xf9,
+ 0xf8,0xf1,0x63,0x6d,0xba,0xe1,0xed,0x75,0x7a,0x87,0xee,0xfa,0xde,0xfc,0xce,0xde,
+ 0xda,0x6e,0x4f,0xcd,0xec,0x63,0xf4,0xee,0xf7,0x77,0x60,0xf9,0x57,0x54,0x1f,0x7e,
+ 0x1f,0xb5,0x9b,0xb6,0x1a,0x3,0x80,0x4b,0x64,0x33,0xc0,0x1c,0xd6,0xf3,0xfc,0xae,
+ 0x9a,0xd9,0xce,0x86,0x2b,0x51,0x7d,0xf9,0xf2,0xa5,0x7e,0xa8,0x61,0xab,0x75,0xa7,
+ 0xce,0x6a,0xbb,0x3d,0x35,0xb3,0x8f,0xa1,0x97,0xa2,0xbd,0x1b,0xdf,0xbe,0x7d,0xab,
+ 0xcf,0xbf,0x83,0xda,0x47,0x5b,0x8d,0x1,0xc0,0x25,0xb2,0x19,0x60,0xe,0xeb,0x79,
+ 0x7e,0x57,0xcd,0x6c,0x6a,0xe8,0xe5,0x55,0x6f,0xac,0xd3,0xdb,0x7f,0x19,0xd8,0x86,
+ 0xeb,0x4e,0x9d,0xd5,0xa6,0x7b,0x6a,0x66,0x1f,0xfd,0xdf,0xc3,0x7b,0xb2,0xeb,0x8b,
+ 0xc1,0x6a,0x1f,0x6d,0x35,0x6,0x0,0x97,0xc8,0x66,0x80,0x39,0xac,0xe7,0xf9,0x5d,
+ 0x35,0xb3,0xa9,0xa1,0xab,0xa3,0xe9,0xc5,0x60,0x2f,0x2f,0x2f,0xf5,0x13,0xd,0x1b,
+ 0xae,0x3b,0x75,0x56,0x9b,0xee,0xa9,0x99,0x1d,0x8c,0x3e,0x2e,0xfe,0xe1,0xc3,0x87,
+ 0x4f,0xf,0x69,0x34,0xfe,0x37,0x7f,0x58,0xfd,0x47,0xb5,0x8f,0xb6,0x1a,0x3,0x80,
+ 0x4b,0x64,0x33,0xc0,0x1c,0xd6,0xf3,0xfc,0xae,0x9a,0xd9,0xd4,0xe8,0xb3,0xb8,0x3f,
+ 0x8d,0xde,0xfe,0x4b,0xb9,0x3b,0x6f,0xe4,0xbe,0x42,0x6d,0xbd,0xa7,0x66,0x76,0x30,
+ 0xf4,0x72,0xf2,0xc5,0xde,0x2f,0xd3,0xba,0xda,0x15,0x4f,0x68,0x37,0x97,0x28,0xbb,
+ 0x42,0xed,0xa0,0xad,0xc6,0x0,0xe0,0x12,0xd9,0xc,0x30,0x87,0xf5,0x3c,0xbf,0xab,
+ 0x66,0xb6,0x36,0x14,0x7b,0x3f,0xbd,0x1d,0xb7,0x7f,0xa7,0xf7,0x1b,0xb7,0x79,0xdf,
+ 0xa2,0xb6,0xde,0x53,0x33,0x3b,0xa8,0x1d,0xb4,0x6d,0xfe,0x8c,0xf7,0x86,0x86,0x5e,
+ 0x17,0xb7,0xf8,0xb4,0xc3,0xbd,0xf7,0x27,0xb5,0x83,0xb6,0x1a,0x3,0x80,0x4b,0x64,
+ 0x33,0xc0,0x1c,0xd6,0xf3,0xfc,0xae,0x9a,0xd9,0xda,0xb7,0x6f,0xdf,0x6a,0x7,0x3d,
+ 0x35,0xf6,0x5f,0x43,0xef,0x15,0xab,0x99,0xad,0xd5,0xd6,0x7b,0x6a,0x66,0x6b,0xa3,
+ 0xef,0x57,0x7b,0xfb,0xcd,0xe4,0x77,0x77,0xc5,0xea,0xd3,0x3b,0x7d,0xb,0x50,0x5b,
+ 0x6f,0xab,0x31,0x0,0xb8,0x44,0x36,0x3,0xcc,0x61,0x3d,0xcf,0xef,0xaa,0x99,0x1d,
+ 0x7c,0x1a,0x59,0x6a,0xf8,0x77,0xb7,0xe3,0x2e,0xf9,0x57,0x7f,0x70,0xc9,0x7e,0x2f,
+ 0x8e,0xaa,0x1d,0xf4,0xd4,0xcc,0xd6,0x46,0x2f,0xcf,0xee,0x77,0x57,0xf3,0x56,0xea,
+ 0x40,0xdb,0xbe,0x7c,0xf9,0x52,0x93,0x9b,0xaa,0xad,0xb7,0xd5,0x18,0x0,0x5c,0x22,
+ 0x9b,0x1,0xe6,0xb0,0x9e,0xe7,0x77,0xd5,0xcc,0xe,0x86,0x2e,0x2d,0xfe,0x78,0x3b,
+ 0xee,0xd0,0x43,0xb0,0xfb,0x2d,0x53,0x54,0x3b,0xe8,0xa9,0x99,0x4d,0x5d,0xf1,0x30,
+ 0x70,0x4d,0x3e,0xb0,0xd1,0x47,0xb5,0x77,0x7a,0x31,0x58,0x6d,0xbd,0xad,0xc6,0x0,
+ 0xe0,0x12,0xd9,0xc,0x30,0x87,0xf5,0x3c,0xbf,0xab,0x66,0xf6,0x31,0xf4,0xf2,0xe4,
+ 0xf3,0xed,0xb8,0xcf,0xcf,0xcf,0xf5,0x7f,0xba,0x64,0xbf,0x67,0x5f,0x17,0xb5,0x8f,
+ 0x9e,0x9a,0xd9,0xd4,0xd0,0xb2,0xd5,0x8b,0x7,0xbf,0x43,0xfb,0x64,0xe8,0x5,0xe9,
+ 0x27,0x77,0x7f,0x4d,0xfa,0xa2,0xc6,0x0,0xe0,0x12,0xd9,0xc,0x30,0x87,0xf5,0x3c,
+ 0xbf,0xab,0x66,0xf6,0x31,0xb4,0x12,0xd5,0xf9,0x15,0xd0,0xfd,0x3b,0x93,0x77,0xbd,
+ 0x27,0xb9,0xf6,0xd1,0x53,0x33,0x9b,0x1a,0x5a,0xfe,0x7a,0xb1,0x47,0x5e,0xee,0x61,
+ 0x74,0x25,0xaa,0x3d,0xbe,0xe,0xa8,0x4d,0xb7,0xd5,0x18,0x0,0x5c,0x22,0x9b,0x1,
+ 0xe6,0xb0,0x9e,0xe7,0x77,0xd5,0xcc,0x6e,0x6a,0x37,0xd,0xa7,0x3a,0xea,0xdf,0x99,
+ 0xbc,0xd3,0xba,0x53,0x67,0xb5,0x9b,0x9e,0x9a,0xd9,0xce,0xe8,0x55,0xd9,0x5d,0x57,
+ 0x39,0xde,0xd6,0xe8,0x55,0xf4,0xc5,0xe6,0x2f,0x6,0xab,0xed,0xb6,0xd5,0x18,0x0,
+ 0x5c,0x22,0x9b,0x1,0xe6,0xb0,0x9e,0xe7,0x77,0xd5,0xcc,0x6e,0x86,0x9e,0x65,0x5d,
+ 0x7e,0xbe,0xdf,0x54,0x3b,0xad,0x3b,0x75,0x56,0xbb,0xe9,0xa9,0x99,0xed,0xf4,0x5f,
+ 0x8a,0x76,0xb2,0xdf,0xab,0xd1,0x36,0x77,0xc5,0x33,0xdb,0x9b,0xff,0x5d,0xd7,0x76,
+ 0xdb,0x6a,0xc,0x0,0x2e,0x91,0xcd,0x0,0x73,0x58,0xcf,0xf3,0xbb,0x6a,0x66,0x37,
+ 0x43,0x8d,0xf4,0xf2,0xf2,0xd2,0xbf,0x83,0xb7,0x76,0xb0,0x9b,0xda,0x4d,0x4f,0xcd,
+ 0x6c,0xa7,0xb6,0xdb,0x36,0xcb,0x1d,0xda,0x27,0xa3,0x6f,0x8,0xdf,0xfc,0xce,0x82,
+ 0xda,0x6e,0x5b,0x8d,0x1,0xc0,0x25,0xb2,0x19,0x60,0xe,0xeb,0x79,0x7e,0x57,0xcd,
+ 0xec,0x69,0x68,0x25,0xaa,0xa6,0x3,0x2e,0xae,0xd6,0x9e,0x7a,0x6a,0x66,0x23,0xfd,
+ 0x97,0xa2,0x9d,0x4c,0x74,0x87,0xf6,0xc9,0x15,0xb,0x38,0xbf,0xbe,0xbe,0xd6,0xf0,
+ 0x16,0x6a,0xa3,0x6d,0x35,0x6,0x0,0x97,0xc8,0x66,0x80,0x39,0xac,0xe7,0xf9,0x5d,
+ 0x35,0xb3,0xa7,0xd1,0xc7,0x74,0x3b,0xf6,0x5b,0x77,0xea,0xac,0xf6,0xd4,0x53,0x33,
+ 0x1b,0x19,0xbd,0x18,0xbb,0xd3,0xe2,0xc6,0xbb,0xaa,0x43,0x6f,0xdb,0xf6,0x8b,0x92,
+ 0xda,0x68,0x5b,0x8d,0x1,0xc0,0x25,0xb2,0x19,0x60,0xe,0xeb,0x79,0x7e,0x57,0xcd,
+ 0xec,0x6c,0xf4,0xe5,0xc9,0x6f,0xdb,0x75,0xdd,0xa9,0xb3,0xda,0x59,0x4f,0xcd,0x6c,
+ 0xe1,0xdb,0xb7,0x6f,0xb5,0xd1,0xb6,0x3,0xbe,0x44,0xd8,0xdc,0xe8,0x2,0xce,0x8b,
+ 0x9a,0xdc,0x42,0x6d,0xb1,0xad,0xc6,0x0,0xe0,0x12,0xd9,0xc,0x30,0x87,0xf5,0x3c,
+ 0xbf,0xab,0x66,0x76,0x36,0x7a,0xd7,0xf1,0xdb,0x76,0x5d,0x77,0xea,0xac,0x76,0xd6,
+ 0x53,0x33,0x5b,0x18,0xed,0xc9,0xbd,0xdf,0x28,0xbe,0x93,0x2b,0xee,0x41,0x38,0x2f,
+ 0x51,0x76,0xbb,0xda,0x62,0x5b,0x8d,0x1,0xc0,0x25,0xb2,0x19,0x60,0xe,0xeb,0x79,
+ 0x7e,0x57,0xcd,0xec,0x6f,0x74,0x15,0xe2,0xe4,0xb0,0x4a,0xac,0xfd,0xf5,0xd4,0xcc,
+ 0x16,0x46,0x7f,0x51,0x33,0xde,0xa1,0x7d,0x32,0x7a,0xf,0xc2,0xc7,0x8f,0x1f,0x6b,
+ 0xf2,0x66,0xb5,0xc5,0xb6,0x1a,0x3,0x80,0x4b,0x64,0x33,0xc0,0x1c,0xd6,0xf3,0xfc,
+ 0xae,0x9a,0xd9,0xdf,0x15,0x37,0xe5,0xfe,0xd4,0xde,0xeb,0x4e,0x9d,0xd5,0xfe,0x7a,
+ 0x6a,0xe6,0x66,0x57,0xbc,0x2b,0x6b,0xf3,0x35,0x8d,0xf,0x73,0xc5,0x2,0xce,0x5b,
+ 0xdd,0x8e,0x5e,0x9b,0x6b,0xab,0x31,0x0,0xb8,0x44,0x36,0x3,0xcc,0x61,0x3d,0xcf,
+ 0xef,0xaa,0x99,0xfd,0x5d,0xb1,0x5a,0xef,0x4f,0xd5,0xe6,0xf6,0x57,0xfb,0xeb,0xa9,
+ 0x99,0x9b,0x8d,0x2e,0xd7,0xbc,0xe1,0x5,0xd8,0xe3,0x5d,0xf1,0x4f,0x62,0xab,0x17,
+ 0x83,0xd5,0xe6,0xda,0x6a,0xc,0x0,0x2e,0x91,0xcd,0x0,0x73,0x58,0xcf,0xf3,0xbb,
+ 0x6a,0xe6,0x10,0xa3,0x4d,0xf8,0x47,0xdb,0xbe,0x4e,0xf9,0x6d,0xb5,0xcb,0x9e,0x9a,
+ 0xb9,0xcd,0x15,0x19,0xb9,0xe1,0xe3,0xbe,0x77,0x31,0xfa,0xce,0xf0,0xad,0x96,0xda,
+ 0xaa,0xcd,0xb5,0xd5,0x18,0x0,0x5c,0x22,0x9b,0x1,0xe6,0xb0,0x9e,0xe7,0x77,0xd5,
+ 0xcc,0x21,0x5e,0x5f,0x5f,0x6b,0xaf,0xd7,0x3a,0xf2,0x95,0xd1,0xb5,0xcb,0x9e,0x9a,
+ 0xb9,0xcd,0xd7,0xaf,0x5f,0x6b,0x73,0x6d,0xf3,0xde,0xa1,0x7d,0x72,0xc5,0x4d,0xe9,
+ 0x9b,0xbc,0x10,0xae,0xb6,0xd5,0x56,0x63,0x0,0x70,0x89,0x6c,0x6,0x98,0xc3,0x7a,
+ 0x9e,0xdf,0x55,0x33,0x47,0xb9,0x65,0x25,0xaa,0x63,0xd6,0x9d,0x3a,0xab,0xbd,0xf6,
+ 0xd4,0xcc,0x6d,0x46,0x7f,0x39,0x7,0xff,0x42,0x76,0x52,0x1f,0xa6,0x6d,0x93,0x4f,
+ 0x5d,0xdb,0x6a,0xab,0x31,0x0,0xb8,0x44,0x36,0x3,0xcc,0x61,0x3d,0xcf,0xef,0xaa,
+ 0x99,0xa3,0x5c,0x71,0x75,0xf1,0xec,0x98,0x75,0xa7,0xce,0x6a,0xaf,0x3d,0x35,0x73,
+ 0x83,0x2b,0x2e,0xc5,0x1f,0xfc,0xb,0xd9,0xc9,0x15,0xef,0x8a,0xbb,0xfd,0x1a,0x7b,
+ 0x6d,0xa8,0xad,0xc6,0x0,0xe0,0x12,0xd9,0xc,0x30,0x87,0xf5,0x3c,0xbf,0xab,0x66,
+ 0xe,0x74,0xdd,0x4a,0x54,0xc7,0xaf,0x4e,0x5c,0x3b,0xee,0xa9,0x99,0x1b,0x5c,0x51,
+ 0x8f,0x35,0x39,0xb9,0x2b,0x16,0x70,0xbe,0x7d,0xcd,0xad,0xda,0x50,0x5b,0x8d,0x1,
+ 0xc0,0x25,0xb2,0x19,0x60,0xe,0xeb,0x79,0x7e,0x57,0xcd,0x1c,0xe8,0x8a,0x65,0x87,
+ 0x16,0x87,0xad,0x3b,0x75,0x56,0x3b,0xee,0xa9,0x99,0x1b,0x8c,0x7e,0x9b,0xf0,0xf4,
+ 0xf4,0x54,0x93,0xf3,0x1b,0xfd,0xec,0xb7,0x7f,0x87,0x52,0x1b,0x6a,0xab,0x31,0x0,
+ 0xb8,0x44,0x36,0x3,0xcc,0x61,0x3d,0xcf,0xef,0xaa,0x99,0x3,0x5d,0xb7,0x12,0x55,
+ 0xd,0x1f,0xa8,0x76,0xdc,0x53,0x33,0xd7,0xba,0xd7,0x9b,0xb1,0x1e,0xc4,0x15,0xdf,
+ 0xa4,0xbc,0xbc,0xbc,0xd4,0xf0,0x55,0x6a,0x2b,0x6d,0x35,0x6,0x0,0x97,0xc8,0x66,
+ 0x80,0x39,0xac,0xe7,0xf9,0x5d,0x35,0x73,0xac,0xd1,0x95,0xa8,0x8e,0x5c,0x77,0xea,
+ 0xac,0xf6,0xdd,0x53,0x33,0xd7,0xba,0xd7,0x3a,0x4c,0xf,0xe2,0xdb,0xb7,0x6f,0xf5,
+ 0xc1,0xda,0x6e,0xbc,0xd8,0x5e,0x5b,0x69,0xab,0x31,0x0,0xb8,0x44,0x36,0x3,0xcc,
+ 0x61,0x3d,0xcf,0xef,0xaa,0x99,0x63,0x8d,0xbe,0xfe,0xea,0xc8,0x75,0xa7,0xce,0x6a,
+ 0xdf,0x3d,0x35,0x73,0x95,0x2b,0x2e,0xbf,0xdf,0xe5,0x7b,0x84,0x5d,0x8d,0x7e,0x71,
+ 0xb0,0xb8,0xe5,0xc5,0x60,0xb5,0x89,0xb6,0x1a,0x3,0x80,0x4b,0x64,0x33,0xc0,0x1c,
+ 0xd6,0xf3,0xfc,0xae,0x9a,0x39,0x5c,0x3f,0x93,0xee,0xb5,0xcc,0x52,0xed,0xbe,0xa7,
+ 0x66,0xae,0x72,0xfc,0x2d,0xca,0xf,0xe8,0xf9,0xf9,0xb9,0x3e,0x5b,0xdb,0x32,0x52,
+ 0xc3,0xe3,0x6a,0x13,0x6d,0x35,0x6,0x0,0x97,0xc8,0x66,0x80,0x39,0xac,0xe7,0xf9,
+ 0x5d,0x35,0x73,0xb8,0xfe,0xd3,0xbc,0xf7,0x7a,0x88,0xb7,0x76,0xdf,0x53,0x33,0x57,
+ 0x19,0x5d,0xae,0xf9,0x9d,0xdd,0xa1,0x7d,0x56,0x1f,0xaf,0xed,0x96,0x17,0x83,0xd5,
+ 0x26,0xda,0x6a,0xc,0x0,0x2e,0x91,0xcd,0x0,0x73,0x58,0xcf,0xf3,0xbb,0x6a,0xe6,
+ 0x1e,0x3a,0xef,0x4f,0x3e,0x7e,0xdd,0xa9,0xb3,0x3a,0x82,0x9e,0x9a,0x19,0x77,0xc5,
+ 0xf2,0x4b,0xef,0xef,0xe,0xed,0x93,0xd1,0x27,0xde,0x17,0xaf,0xaf,0xaf,0x35,0x3c,
+ 0xa8,0xe6,0xdb,0x6a,0xc,0x0,0x2e,0x91,0xcd,0x0,0x73,0x58,0xcf,0xf3,0xbb,0x6a,
+ 0xe6,0x1e,0xbe,0x7e,0xfd,0x5a,0x7,0x91,0x1d,0xbf,0xee,0xd4,0x59,0x1d,0x41,0x4f,
+ 0xcd,0x8c,0xbb,0x62,0xb9,0xe6,0xbb,0x3c,0xe9,0x7d,0x80,0x23,0xbf,0x41,0xa8,0xf9,
+ 0xb6,0x1a,0x3,0x80,0x4b,0x64,0x33,0xc0,0x1c,0xd6,0xf3,0xfc,0xae,0x9a,0xb9,0x87,
+ 0xce,0xab,0xb0,0xea,0x47,0xef,0xa1,0x8e,0xa0,0xa7,0x66,0xc6,0xd5,0x7c,0xdb,0x1d,
+ 0x2f,0xbf,0x1f,0x60,0x74,0x1,0xe7,0x45,0x4d,0xe,0xaa,0xe1,0xb6,0x1a,0x3,0x80,
+ 0x4b,0x64,0x33,0xc0,0x1c,0xd6,0xf3,0xfc,0xae,0x9a,0xb9,0x93,0xb7,0xaf,0xb5,0xde,
+ 0xf7,0x6e,0xe4,0x3a,0x88,0x9e,0x9a,0x19,0x74,0xc5,0x7b,0xb0,0xbe,0x7c,0xf9,0x52,
+ 0xc3,0xef,0xd1,0x15,0x6f,0x47,0xbb,0xee,0xd1,0xf7,0x1a,0x6e,0xab,0x31,0x0,0xb8,
+ 0x44,0x36,0x3,0xcc,0x61,0x3d,0xcf,0xef,0xaa,0x99,0x3b,0x79,0x7b,0x25,0xaa,0xfb,
+ 0xde,0x8d,0x5c,0x7,0xd1,0x53,0x33,0x83,0xae,0x58,0x75,0xe9,0xbd,0xde,0xa1,0x7d,
+ 0x72,0xc5,0x2,0xce,0xcb,0xef,0xb0,0x86,0x47,0xd4,0x70,0x5b,0x8d,0x1,0xc0,0x25,
+ 0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,
+ 0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,
+ 0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,
+ 0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,
+ 0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,
+ 0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,
+ 0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,
+ 0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,
+ 0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,
+ 0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,
+ 0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,
+ 0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,
+ 0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,
+ 0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,
+ 0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,
+ 0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,
+ 0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,
+ 0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,
+ 0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,
+ 0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,
+ 0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,
+ 0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,
+ 0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,
+ 0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,
+ 0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,
+ 0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,
+ 0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,
+ 0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,
+ 0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,
+ 0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,
+ 0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,
+ 0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,
+ 0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,
+ 0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,
+ 0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,
+ 0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,
+ 0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,
+ 0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,
+ 0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,
+ 0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,
+ 0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,
+ 0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,
+ 0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,
+ 0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,
+ 0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,
+ 0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,
+ 0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,
+ 0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,
+ 0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,
+ 0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,
+ 0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,
+ 0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,
+ 0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,
+ 0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,
+ 0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,
+ 0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,
+ 0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,
+ 0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,
+ 0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,
+ 0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,
+ 0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,
+ 0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,
+ 0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,
+ 0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,
+ 0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,
+ 0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,
+ 0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,
+ 0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,
+ 0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,
+ 0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,
+ 0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,
+ 0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,
+ 0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,
+ 0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,
+ 0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,
+ 0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,
+ 0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,
+ 0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,
+ 0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,
+ 0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,
+ 0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,
+ 0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,
+ 0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,
+ 0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,
+ 0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,
+ 0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,
+ 0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,
+ 0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,
+ 0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,
+ 0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,
+ 0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,
+ 0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,
+ 0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,
+ 0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,
+ 0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,
+ 0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,
+ 0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,
+ 0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,
+ 0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,
+ 0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,
+ 0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,
+ 0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,
+ 0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,
+ 0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,
+ 0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,
+ 0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,
+ 0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,
+ 0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,
+ 0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,
+ 0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,
+ 0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,
+ 0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,
+ 0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,
+ 0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,
+ 0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,
+ 0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,
+ 0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,
+ 0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,
+ 0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,
+ 0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,
+ 0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,
+ 0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,
+ 0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,
+ 0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,
+ 0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,
+ 0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,
+ 0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,
+ 0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,
+ 0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,
+ 0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,
+ 0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,
+ 0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,
+ 0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,
+ 0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,
+ 0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,
+ 0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,
+ 0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,
+ 0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,
+ 0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,
+ 0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,
+ 0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,
+ 0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,
+ 0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,
+ 0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,
+ 0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,
+ 0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,
+ 0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,
+ 0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,
+ 0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,
+ 0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,
+ 0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,
+ 0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,
+ 0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,
+ 0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,
+ 0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,
+ 0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,
+ 0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,
+ 0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,
+ 0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,
+ 0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,
+ 0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,
+ 0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,
+ 0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,
+ 0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,
+ 0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,
+ 0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,
+ 0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,
+ 0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,
+ 0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,
+ 0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,
+ 0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,
+ 0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,
+ 0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,
+ 0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,
+ 0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,
+ 0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,
+ 0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,
+ 0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,
+ 0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,
+ 0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,
+ 0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,
+ 0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,
+ 0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,
+ 0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,
+ 0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,
+ 0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,
+ 0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,
+ 0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,
+ 0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,
+ 0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,
+ 0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,
+ 0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,
+ 0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,
+ 0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,
+ 0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,
+ 0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,
+ 0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,
+ 0x0,0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,
+ 0x3,0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,
+ 0xc9,0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,
+ 0x0,0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,
+ 0x0,0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,
+ 0x66,0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,
+ 0x22,0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,
+ 0x0,0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,
+ 0x0,0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,
+ 0xd9,0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,
+ 0x40,0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,
+ 0x0,0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,
+ 0xc,0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,
+ 0x24,0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,
+ 0x0,0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,
+ 0x0,0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,
+ 0x9b,0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,
+ 0x88,0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,
+ 0x0,0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,
+ 0x1,0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,
+ 0x64,0x33,0x0,0x0,0x0,0x44,0xb2,0x19,0x0,0x0,0x0,0x22,0xd9,0xc,0x0,0x0,
+ 0x0,0x91,0x6c,0x6,0x0,0x0,0x80,0x48,0x36,0x3,0x0,0x0,0x40,0x24,0x9b,0x1,
+ 0x0,0x0,0x20,0x92,0xcd,0x0,0x0,0x0,0x10,0xc9,0x66,0x0,0x0,0x0,0x88,0x7e,
+ 0x9f,0xcd,0x7f,0xfa,0xd3,0x9f,0xfe,0xf,0x0,0x0,0x0,0xb0,0x5a,0x32,0xf9,0xff,
+ 0x67,0xf3,0x5f,0xff,0xfa,0xd7,0xe5,0x7f,0x0,0x0,0x0,0x0,0x67,0x4b,0x3c,0xff,
+ 0xf3,0x9f,0xff,0xfc,0x4f,0x36,0x3,0x0,0x0,0x0,0x3f,0xf1,0xef,0x7f,0xff,0x3f,
+ 0x91,0x94,0x88,0x4b,0x69,0x49,0xc,0x8,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,
+ 0xae,0x42,0x60,0x82,
+ // /home/hzk/Software_Architecture/src/Client/res/image/logo.png
+ 0x0,0x0,0x57,0x64,
+ 0x89,
+ 0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+ 0x0,0x3,0x53,0x0,0x0,0x2,0xc0,0x8,0x6,0x0,0x0,0x0,0x76,0x3d,0x28,0xc5,
+ 0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
+ 0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,0x0,0x0,0x0,
+ 0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x16,0x25,0x0,0x0,0x16,0x25,0x1,0x49,0x52,
+ 0x24,0xf0,0x0,0x0,0x56,0xf9,0x49,0x44,0x41,0x54,0x78,0x5e,0xed,0xfd,0xf7,0xbb,
+ 0x15,0xe5,0x1d,0x36,0x6e,0xbf,0xff,0xcb,0x53,0x7f,0xfd,0x1e,0x47,0xc,0x10,0x7b,
+ 0x83,0x4d,0x47,0xba,0x58,0xb0,0xc7,0x9e,0x44,0x37,0xbd,0x17,0x69,0xf6,0xde,0xc5,
+ 0x8a,0xdd,0x24,0x1a,0x4b,0x6c,0x28,0xa,0x88,0xa,0x88,0xf4,0xa2,0xf4,0xde,0x36,
+ 0xbd,0x73,0xbf,0xfb,0x5e,0xe,0x3e,0xc4,0x8c,0xba,0xf7,0xb0,0xcb,0x5a,0x33,0xe7,
+ 0x99,0xe3,0x3a,0x8c,0xd,0xf7,0xdc,0x6b,0xb1,0x66,0xae,0x35,0x33,0x9f,0xf9,0xff,
+ 0xfd,0xdf,0xff,0xfb,0x7f,0x43,0x5a,0xfe,0xcf,0xff,0xf9,0x3f,0xa5,0xfc,0xef,0xff,
+ 0xfd,0xbf,0x45,0x44,0x44,0x44,0x44,0x44,0xa,0x9f,0x13,0x1d,0xe9,0x44,0x67,0xfa,
+ 0xaf,0x32,0x95,0x56,0xa2,0xfe,0xd7,0xff,0xfa,0x5f,0x22,0x22,0x22,0x22,0x22,0x22,
+ 0x85,0xcd,0xc9,0xfd,0xe8,0x44,0x67,0xfa,0x8f,0x32,0xf5,0xcb,0x22,0x75,0xf2,0xbf,
+ 0xfc,0x3f,0xff,0xe7,0xff,0x14,0x11,0x11,0x11,0x11,0x11,0x29,0x5c,0x4e,0xee,0x45,
+ 0x27,0x17,0xaa,0xff,0x2a,0x53,0xbf,0x2c,0x52,0x27,0xff,0x22,0xff,0xe3,0x7f,0xfc,
+ 0xf,0x11,0x11,0x11,0x11,0x11,0x91,0xc2,0xe4,0xe4,0x3e,0xf4,0xcb,0x42,0xf5,0x73,
+ 0x99,0xfa,0x65,0x91,0x2,0x0,0x0,0xe0,0xbf,0x9d,0x28,0x54,0xff,0x55,0xa6,0x4e,
+ 0xb4,0x2d,0x0,0x0,0x0,0xfe,0xdb,0x89,0xce,0x54,0x2a,0x53,0xbf,0x3c,0x2b,0x15,
+ 0x4f,0x61,0x1,0x0,0x0,0xf0,0xdf,0x4e,0x5c,0xf2,0xf7,0x1f,0x65,0xea,0x44,0xc3,
+ 0x52,0xa6,0x0,0x0,0x0,0xd2,0xfd,0x6a,0x99,0x8a,0x7f,0x43,0x99,0x2,0x0,0x0,
+ 0x48,0x77,0xa2,0x33,0xa5,0x96,0xa9,0x38,0xb5,0x2,0x0,0x0,0x80,0xff,0x76,0x62,
+ 0xca,0x9f,0x32,0x5,0x0,0x0,0x50,0xf,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,
+ 0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,
+ 0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,
+ 0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,
+ 0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,
+ 0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,
+ 0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,
+ 0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,
+ 0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,
+ 0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,
+ 0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,
+ 0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,
+ 0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,
+ 0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,
+ 0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,
+ 0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,
+ 0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,
+ 0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,
+ 0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,
+ 0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,
+ 0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,
+ 0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,
+ 0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,
+ 0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,
+ 0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,
+ 0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,
+ 0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,
+ 0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,
+ 0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,
+ 0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,
+ 0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,
+ 0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,
+ 0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,
+ 0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,
+ 0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,
+ 0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,
+ 0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,
+ 0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,
+ 0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,
+ 0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,
+ 0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,
+ 0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,
+ 0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,
+ 0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,
+ 0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,
+ 0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,
+ 0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,
+ 0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,
+ 0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,
+ 0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,
+ 0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0x0,0x40,0x6,0xca,0x14,0x0,0xd0,
+ 0xe0,0x8e,0x1f,0x3f,0x1e,0x8e,0xd5,0x23,0xfb,0xf,0x1d,0x68,0x90,0x1c,0x3c,0x7c,
+ 0x28,0x1c,0x3a,0x72,0xb8,0xf4,0x6b,0x2,0x34,0x36,0x65,0xa,0xa0,0x8c,0xc5,0x3,
+ 0xd2,0xbc,0xe7,0xc8,0xd1,0x23,0xe1,0xe8,0xb1,0xa3,0x92,0x93,0x1c,0xae,0x7d,0x3d,
+ 0xf,0x1c,0x3e,0x18,0xf6,0x1d,0xdc,0x5f,0xfa,0x63,0xfc,0xf3,0xb4,0x7f,0xee,0xe4,
+ 0xac,0xd9,0xba,0x2e,0xcc,0x5c,0x3a,0x3b,0x4c,0x5b,0x38,0xeb,0x94,0xf2,0xf9,0xc2,
+ 0xaf,0x4a,0xf9,0x72,0xf1,0xd7,0x61,0xf1,0xba,0x15,0x61,0xd7,0xbe,0xdd,0xa5,0x52,
+ 0x15,0xdf,0x67,0x0,0x8d,0x41,0x99,0x2,0x28,0x43,0x8f,0xbe,0x3b,0x39,0xb4,0x1b,
+ 0xd3,0x27,0x9c,0x76,0x7b,0xeb,0xf0,0xc7,0xdb,0xdb,0x88,0x48,0x86,0x54,0x8d,0xee,
+ 0x1d,0xfe,0x3d,0x77,0x6a,0xa9,0xd4,0x1,0x34,0x6,0x65,0xa,0xa0,0xcc,0x2c,0x5b,
+ 0xff,0x43,0xe8,0x78,0xc7,0xa5,0x8a,0x94,0x48,0x3,0xa4,0xcd,0xa8,0x5e,0x61,0xce,
+ 0x8f,0xdf,0xbb,0xec,0xf,0x68,0x14,0xca,0x14,0x40,0x19,0xd9,0x7b,0x60,0x5f,0xb8,
+ 0xee,0xa1,0xdb,0xc3,0x1f,0xab,0xd3,0xf,0xc,0x45,0xa4,0x9e,0xa9,0xfd,0xbd,0x34,
+ 0x74,0xca,0x84,0xb0,0x73,0x6f,0x4d,0xf2,0xbb,0xc,0xa0,0xe1,0x28,0x53,0x0,0x65,
+ 0xe4,0xab,0xa5,0xdf,0x86,0xd3,0x7,0x76,0x48,0x3f,0x28,0x14,0x91,0x4c,0x39,0x73,
+ 0x50,0xa7,0x30,0x75,0xfe,0xc,0x67,0xa7,0x80,0x6,0xa7,0x4c,0x1,0x94,0x89,0x1d,
+ 0x7b,0x6a,0xc2,0x45,0x13,0xae,0x4c,0x3d,0x18,0x14,0x91,0x53,0xcb,0xad,0x4f,0xd,
+ 0xe,0x6b,0xb6,0xae,0x37,0x8c,0x2,0x68,0x50,0xca,0x14,0x40,0x99,0x78,0x63,0xc6,
+ 0x3b,0xa1,0x45,0xbf,0xaa,0xd4,0x3,0x41,0x11,0x39,0xb5,0xfc,0x69,0x40,0xfb,0x30,
+ 0xf9,0x93,0x97,0x4b,0xa3,0xd3,0x1,0x1a,0x8a,0x32,0x5,0x50,0x6,0x96,0x6f,0xf8,
+ 0x31,0x54,0x8d,0xea,0x9d,0x7a,0x10,0x28,0x22,0xd,0x93,0xf6,0x63,0x2e,0x9,0x4b,
+ 0xd7,0xaf,0x70,0xb9,0x1f,0xd0,0x60,0x94,0x29,0x80,0x66,0xb6,0xff,0xe0,0xfe,0x70,
+ 0xf3,0xe3,0x83,0xd,0x9d,0x10,0x69,0xe4,0xb4,0xec,0xd7,0x36,0x3c,0xf4,0xde,0xd3,
+ 0x46,0xa5,0x3,0xd,0x46,0x99,0x2,0x68,0x66,0x73,0x7f,0x9c,0x1f,0xce,0x19,0xd2,
+ 0x25,0xf5,0xe0,0x4f,0x44,0x1a,0x36,0x17,0x8e,0xe8,0x19,0x16,0xad,0x59,0xea,0xec,
+ 0x14,0xd0,0x20,0x94,0x29,0x80,0x66,0xb4,0x7b,0xff,0x9e,0xd0,0xf7,0xbe,0x5b,0x52,
+ 0xf,0xfa,0x44,0xa4,0x11,0x52,0x5d,0x15,0xee,0xfa,0xc7,0x23,0xa5,0xdf,0x7b,0x0,
+ 0xa7,0x4a,0x99,0x2,0x68,0x46,0x33,0x97,0x7c,0x1b,0x5a,0xd,0x68,0x9f,0x7e,0xd0,
+ 0x27,0x22,0x8d,0x92,0xb3,0x87,0x74,0x9,0x5f,0x2c,0xfc,0xca,0xd9,0x29,0xe0,0x94,
+ 0x29,0x53,0x0,0xcd,0xa4,0x66,0xdf,0xae,0xd0,0x65,0xfc,0x15,0xa9,0x7,0x7b,0x22,
+ 0xd2,0xb8,0xe9,0x3e,0xf1,0xea,0xf0,0xe3,0xa6,0xd5,0x46,0xa5,0x3,0xa7,0x44,0x99,
+ 0x2,0x68,0x26,0xef,0xcf,0xf9,0xd4,0x28,0x74,0x91,0x66,0x4a,0xab,0xfe,0xed,0xc2,
+ 0x23,0xef,0x4f,0xe,0xfb,0xf,0x1d,0x48,0x7e,0x47,0x2,0xd4,0x9f,0x32,0x5,0xd0,
+ 0xc,0x36,0xd7,0x6c,0xd,0x5d,0x3d,0xa0,0x57,0xa4,0x59,0xd3,0x7a,0x64,0xcf,0x30,
+ 0x7f,0xd5,0x22,0x97,0xfb,0x1,0x99,0x29,0x53,0x0,0xcd,0x60,0xec,0xcb,0x77,0x87,
+ 0x16,0xfd,0xda,0xa6,0x1e,0xe0,0x89,0x48,0x13,0xa5,0xba,0x4d,0x18,0xf1,0xca,0xa4,
+ 0xb0,0x73,0x6f,0x4d,0xf2,0x3b,0x13,0xa0,0x7e,0x94,0x29,0x80,0x26,0xb6,0x60,0xf5,
+ 0x92,0x70,0xc1,0xf0,0xee,0xe9,0x7,0x77,0x22,0xd2,0xa4,0x39,0x73,0x70,0xa7,0x30,
+ 0x75,0xfe,0xc,0x67,0xa7,0x80,0x4c,0x94,0x29,0x80,0x26,0xb4,0xe7,0xc0,0xde,0xd0,
+ 0xf7,0x7e,0xa3,0xd0,0x45,0xca,0x29,0xb7,0x3e,0x35,0x24,0xac,0xd9,0xba,0xde,0x30,
+ 0xa,0xa0,0xde,0x94,0x29,0x80,0x26,0x34,0x63,0xf1,0x37,0xa1,0xd5,0x80,0x76,0xa9,
+ 0x7,0x74,0x22,0xd2,0x3c,0xf9,0xd3,0x80,0xf6,0x61,0xf2,0x27,0xaf,0x84,0x83,0x87,
+ 0xf,0x25,0xbf,0x53,0x1,0xea,0x46,0x99,0x2,0x68,0x22,0x3b,0xf6,0xd4,0x84,0x2e,
+ 0xe3,0xfb,0xa6,0x1e,0xcc,0x89,0x48,0xf3,0xa6,0xc3,0xd8,0x4b,0xc3,0xb2,0xf5,0x3f,
+ 0xb8,0xdc,0xf,0xa8,0x17,0x65,0xa,0xa0,0x89,0xbc,0x31,0xe3,0x1d,0xa3,0xd0,0x45,
+ 0xca,0x34,0x2d,0xfb,0xb5,0xd,0x8f,0xbc,0xf7,0x4c,0x38,0x70,0xf8,0x60,0xf2,0x3b,
+ 0x16,0xe0,0xf7,0x29,0x53,0x0,0x4d,0x60,0xe9,0xfa,0x15,0xa1,0x6a,0x54,0xef,0xd4,
+ 0x83,0x38,0x11,0x29,0x8f,0xb4,0x19,0xd5,0x2b,0x2c,0x59,0xb7,0xdc,0xd9,0x29,0xa0,
+ 0xce,0x94,0x29,0x80,0x46,0xb6,0xef,0xe0,0xfe,0xf0,0xe7,0x47,0xaa,0x4b,0x63,0x98,
+ 0xd3,0xe,0xe0,0x44,0xa4,0x3c,0xd2,0xa2,0xba,0x2a,0x3c,0xf0,0xaf,0x27,0xc3,0xfe,
+ 0xda,0xdf,0xb3,0x0,0x75,0xa1,0x4c,0x1,0x34,0xb2,0x6f,0x97,0x7f,0x17,0xce,0x18,
+ 0xd4,0x31,0xf5,0xe0,0x4d,0x44,0xca,0x2b,0xe7,0xf,0xef,0x1e,0xe6,0xad,0x5c,0xe8,
+ 0xec,0x14,0x50,0x27,0xca,0x14,0x40,0x23,0xda,0xbd,0x7f,0x4f,0xe8,0x73,0xf7,0xf5,
+ 0xa9,0x7,0x6d,0x22,0x52,0x86,0xa9,0x6e,0x13,0xc6,0xbe,0x7e,0x6f,0xd8,0xba,0x6b,
+ 0xbb,0x51,0xe9,0xc0,0xef,0x52,0xa6,0x0,0x1a,0xd1,0xe7,0xb,0x66,0x84,0x96,0xfd,
+ 0x8d,0x42,0x17,0xa9,0xa4,0x9c,0x35,0xb8,0x53,0xf8,0xf7,0x9c,0xa9,0xe1,0xd0,0x91,
+ 0xc3,0xc9,0xef,0x64,0x80,0x74,0xca,0x14,0x40,0x23,0x59,0xb9,0x69,0x75,0xe8,0x30,
+ 0xf6,0x92,0xd4,0x83,0x35,0x11,0x29,0xef,0x74,0x1a,0x7b,0x99,0x61,0x14,0xc0,0xef,
+ 0x52,0xa6,0x0,0x1a,0xc1,0xa1,0x23,0x87,0xc2,0x80,0x67,0xc7,0x94,0x6e,0x68,0x4f,
+ 0x3b,0x50,0x13,0x91,0xf2,0x4e,0xfc,0xbd,0x3b,0xf6,0xf5,0x7b,0x4a,0x97,0xea,0x2,
+ 0xfc,0x1a,0x65,0xa,0xa0,0x11,0x2c,0x59,0xb7,0x22,0x54,0x8d,0xec,0x95,0x7a,0x90,
+ 0x26,0x22,0x95,0x91,0x73,0x86,0x5e,0x14,0xbe,0xfd,0xe1,0x3b,0x67,0xa7,0x80,0x5f,
+ 0xa5,0x4c,0x1,0x34,0xb0,0x38,0x56,0x79,0xe0,0xe4,0xd1,0xce,0x4a,0x89,0x54,0x7a,
+ 0xaa,0xdb,0x84,0x71,0x6f,0xdc,0x1f,0xf6,0x1c,0xd8,0x9b,0xfc,0xee,0x6,0xf8,0x4f,
+ 0xca,0x14,0x40,0x3,0x9b,0xbd,0x62,0x9e,0x51,0xe8,0x22,0x39,0x49,0x3c,0x3b,0xf5,
+ 0xcd,0xf2,0xb9,0xce,0x4e,0x1,0xa9,0x94,0x29,0x80,0x6,0x14,0xef,0xaf,0xe8,0x7d,
+ 0xd7,0x9f,0x53,0xf,0xca,0x44,0xa4,0x32,0x53,0xfd,0xec,0xc8,0xb0,0x76,0xdb,0x7a,
+ 0xa3,0xd2,0x81,0xff,0xa2,0x4c,0x1,0x34,0xa0,0xcf,0xe6,0x4f,0xf,0x2d,0xfb,0xb7,
+ 0x4d,0x3d,0x20,0x13,0x91,0xca,0xcc,0xe9,0x3,0x3a,0x84,0x67,0x3f,0x7d,0xa5,0x34,
+ 0x58,0x6,0xe0,0x64,0xca,0x14,0x40,0x3,0x59,0xb1,0x61,0x65,0x68,0x3f,0xc6,0x28,
+ 0x74,0x91,0x3c,0x26,0xfe,0xde,0x5e,0xba,0x7e,0x85,0xcb,0xfd,0x80,0xff,0xa0,0x4c,
+ 0x1,0x34,0x80,0x38,0x74,0xe2,0x96,0xc7,0x7,0x87,0x3f,0x1a,0x3a,0x21,0x92,0xcb,
+ 0xb4,0xe8,0xd7,0x36,0x3c,0xf4,0xde,0xd3,0xe1,0xc0,0xe1,0x83,0xc9,0xef,0x7a,0x0,
+ 0x65,0xa,0xa0,0x41,0xcc,0xfd,0x71,0x7e,0x38,0x67,0x48,0x97,0xd4,0x83,0x30,0x11,
+ 0xc9,0x47,0x2e,0x1c,0xd1,0x33,0x2c,0x5a,0xb3,0xd4,0xd9,0x29,0xe0,0x67,0xca,0x14,
+ 0xc0,0x29,0x8a,0x63,0x93,0xfb,0xde,0x7f,0x4b,0xea,0xc1,0x97,0x88,0xe4,0x28,0xd5,
+ 0x55,0xe1,0xae,0x7f,0x3c,0xe2,0x41,0xbe,0xc0,0xcf,0x94,0x29,0x80,0x53,0x34,0x6b,
+ 0xd9,0x9c,0xf0,0xa7,0x1,0xed,0xd3,0xf,0xbe,0x44,0x24,0x57,0x39,0x7b,0x48,0x97,
+ 0xf0,0xe5,0xa2,0x59,0xce,0x4e,0x1,0x25,0xca,0x14,0xc0,0x29,0x88,0xdf,0x50,0xf7,
+ 0xba,0xeb,0xba,0xd4,0x83,0x2e,0x11,0xc9,0x67,0x7a,0x4c,0xba,0x26,0xac,0xdc,0xbc,
+ 0xc6,0xa8,0x74,0x40,0x99,0x2,0x38,0x15,0x5f,0x2c,0xfc,0x2a,0xb4,0xec,0xdf,0x2e,
+ 0xf5,0x80,0x4b,0x44,0xf2,0x99,0x56,0xb5,0xbf,0xe7,0x1f,0xfb,0xe0,0xd9,0x70,0xf0,
+ 0xb0,0x51,0xe9,0x50,0x74,0xca,0x14,0x40,0x46,0xab,0xb6,0xac,0xd,0x5d,0xc7,0x5f,
+ 0x99,0x7a,0xb0,0x25,0x22,0xf9,0x4e,0xdb,0x51,0x17,0x87,0x25,0xeb,0x96,0xbb,0xdc,
+ 0xf,0xa,0x4e,0x99,0x2,0xc8,0x60,0xff,0xa1,0x3,0x61,0xe8,0xf3,0xe3,0x42,0x8b,
+ 0x7e,0x46,0xa1,0x8b,0x14,0x31,0x2d,0xaa,0xab,0xc2,0x83,0xef,0x3e,0x55,0x7a,0x2c,
+ 0x2,0x50,0x5c,0xca,0x14,0x40,0x6,0x46,0xa1,0x8b,0xc8,0xf9,0xc3,0xbb,0x87,0x79,
+ 0x2b,0x17,0x3a,0x3b,0x5,0x5,0xa6,0x4c,0x1,0xd4,0x53,0x1c,0x85,0x7e,0xc9,0xbd,
+ 0x37,0xa6,0x1e,0x5c,0x89,0x48,0x81,0x52,0xdd,0x26,0x8c,0x7d,0xfd,0xde,0xb0,0x75,
+ 0xd7,0x76,0xc3,0x28,0xa0,0xa0,0x94,0x29,0x80,0x7a,0xfa,0x6a,0xe9,0xb7,0xa5,0x1b,
+ 0xd0,0x53,0xf,0xae,0x44,0xa4,0x50,0x39,0x73,0x70,0xa7,0xf0,0xc1,0xec,0x4f,0xc3,
+ 0xa1,0x23,0x86,0x51,0x40,0x11,0x29,0x53,0x0,0xf5,0xb0,0x6b,0xdf,0xee,0xd0,0x73,
+ 0xd2,0xb5,0xa9,0x7,0x55,0x22,0x52,0xcc,0x74,0x18,0x7b,0x69,0x98,0xbf,0x6a,0x91,
+ 0xcb,0xfd,0xa0,0x80,0x94,0x29,0x80,0x7a,0x98,0x3a,0x7f,0x7a,0x68,0xd9,0xaf,0x6d,
+ 0xea,0x1,0x95,0x88,0x14,0x33,0x71,0x18,0xc5,0xd0,0x97,0x26,0x84,0xcd,0x35,0x5b,
+ 0x5d,0xee,0x7,0x5,0xa3,0x4c,0x1,0xd4,0xd1,0xb2,0xf5,0x3f,0x84,0x76,0x63,0xfa,
+ 0xa4,0x1e,0x4c,0x89,0x48,0xb1,0x73,0xe6,0xa0,0x4e,0xe1,0xbd,0xd9,0x9f,0x84,0xc3,
+ 0x47,0x8f,0x24,0x9f,0x18,0x40,0x11,0x28,0x53,0x0,0x75,0xb0,0xef,0xe0,0xfe,0x70,
+ 0xdd,0xc3,0xb7,0x97,0x6e,0x38,0x4f,0x3b,0x90,0x12,0x11,0xb9,0xf9,0x89,0x41,0x61,
+ 0xd5,0x96,0x35,0x2e,0xf7,0x83,0x2,0x51,0xa6,0x0,0xea,0xe0,0x9b,0xe5,0x73,0xc3,
+ 0xe9,0x3,0x3b,0xa4,0x1e,0x40,0x89,0x88,0xc4,0xc4,0xcf,0x88,0x17,0x3e,0x7b,0x3d,
+ 0x1c,0x3d,0x76,0x34,0xf9,0xe4,0x0,0xf2,0x4e,0x99,0x2,0xf8,0x1d,0x71,0x14,0xfa,
+ 0xc5,0x77,0xfd,0x39,0xf5,0xe0,0x49,0x44,0xe4,0xe4,0x74,0x9b,0x78,0x55,0xd8,0x7b,
+ 0x70,0x5f,0xf2,0xe9,0x1,0xe4,0x9d,0x32,0x5,0xf0,0x3b,0xe2,0x28,0xf4,0x96,0x46,
+ 0xa1,0x8b,0x48,0x1d,0x72,0xc6,0xc0,0x8e,0x61,0xeb,0xee,0xed,0xc9,0xa7,0x7,0x90,
+ 0x77,0xca,0x14,0xc0,0x6f,0xa8,0xd9,0xb7,0x2b,0xf4,0x98,0x74,0x4d,0xea,0x41,0x93,
+ 0x88,0xc8,0xcf,0xb9,0xad,0x4d,0x38,0xed,0xb6,0xd6,0xa1,0xf5,0x88,0x9e,0xce,0x4c,
+ 0x41,0x81,0x28,0x53,0x0,0xbf,0xe1,0x93,0x79,0xd3,0x8a,0x37,0xa,0xbd,0xba,0x2a,
+ 0x5c,0x72,0xef,0x8d,0xe1,0x8d,0x99,0xef,0x84,0x2d,0xbb,0xb6,0x95,0x46,0x3d,0x37,
+ 0x66,0x8e,0x1c,0x3d,0x52,0xba,0xc7,0x44,0x8a,0x97,0xf8,0xda,0x1f,0x3c,0x7c,0x30,
+ 0xd4,0xec,0xdd,0x15,0x96,0x6f,0x5c,0x15,0x96,0x6e,0xf8,0x31,0x2c,0x59,0xff,0x43,
+ 0xc5,0x25,0xfe,0xdc,0xcb,0x36,0xac,0xc,0xeb,0xb6,0x6f,0x2a,0x15,0xa9,0xf8,0xbe,
+ 0x6,0x8a,0x41,0x99,0x2,0xf8,0x15,0x4b,0xd6,0x2d,0xf,0xad,0x47,0xf6,0x4c,0x2f,
+ 0x1c,0x39,0x4d,0x7c,0x5e,0xce,0xed,0x4f,0xf,0xf,0xab,0xb7,0xac,0x4b,0x56,0x1,
+ 0x0,0xf8,0x35,0xca,0x14,0x40,0x8a,0x38,0x74,0xe2,0x8a,0x7,0x6e,0x4d,0x2d,0x1c,
+ 0x79,0x4e,0xd7,0x9,0x57,0x86,0x35,0x5b,0x15,0x29,0x0,0xa8,0xb,0x65,0xa,0x20,
+ 0xc5,0x8c,0xc5,0xdf,0x84,0x56,0x3,0x8a,0x35,0x74,0xa2,0x65,0xff,0xb6,0x61,0xfa,
+ 0xa2,0xaf,0x93,0x15,0x0,0x0,0x7e,0x8f,0x32,0x5,0xf0,0xb,0x3b,0xf6,0xd4,0x84,
+ 0x2e,0xe3,0xfb,0xa6,0x16,0x8e,0x3c,0xe7,0xe2,0xbb,0xff,0x1c,0x76,0xef,0xdf,0x93,
+ 0xac,0x2,0x0,0xf0,0x7b,0x94,0x29,0x80,0x5f,0x78,0x63,0xc6,0x3b,0xa1,0x45,0xbf,
+ 0xaa,0xd4,0xc2,0x91,0xd7,0x9c,0x35,0xb8,0x73,0x98,0xb7,0x72,0x61,0xb2,0x2,0x0,
+ 0x40,0x5d,0x28,0x53,0x0,0x27,0x59,0xba,0x7e,0x45,0xa8,0x1a,0xd5,0x3b,0xb5,0x70,
+ 0xe4,0x35,0x71,0xe8,0xc4,0xa8,0x97,0xee,0x4c,0x56,0x0,0x0,0xa8,0x2b,0x65,0xa,
+ 0x20,0xb1,0xef,0xe0,0xfe,0x70,0xdd,0xc3,0xb7,0x87,0x3f,0x56,0xa7,0x97,0x8e,0xbc,
+ 0xa6,0xc3,0xd8,0x4b,0xc2,0xfa,0xed,0x1b,0x93,0x55,0x0,0x0,0xea,0x4a,0x99,0x2,
+ 0x48,0x7c,0xbb,0xfc,0xbb,0x70,0xc6,0xa0,0x8e,0xa9,0x85,0x23,0xaf,0x89,0x97,0x33,
+ 0x8e,0x9c,0xe2,0xac,0x14,0x0,0x64,0xa1,0x4c,0x1,0xd4,0x8a,0xa3,0xd0,0x2f,0xbe,
+ 0xfb,0xfa,0xd4,0xc2,0x91,0xe7,0x74,0xba,0xe3,0xb2,0xb0,0xb9,0x66,0x6b,0xb2,0xa,
+ 0x0,0x40,0x7d,0x28,0x53,0x0,0xb5,0x66,0x2d,0x9d,0x1d,0x5a,0xf5,0x2f,0xd6,0x28,
+ 0xf4,0xb8,0xbd,0x5f,0x2e,0x9a,0x95,0xac,0x0,0x0,0x50,0x5f,0xca,0x14,0x50,0x78,
+ 0x71,0x1c,0x78,0xaf,0xbb,0xae,0x4b,0x2d,0x1c,0x79,0x4e,0x9f,0x7b,0x6e,0x30,0xa,
+ 0x1d,0x0,0x4e,0x81,0x32,0x5,0x14,0x5e,0x7c,0x40,0x6f,0x7c,0x60,0x6d,0x5a,0xe1,
+ 0xc8,0x6b,0xce,0x1c,0xd4,0xa9,0x74,0x8f,0x18,0x0,0x90,0x9d,0x32,0x5,0x14,0x5a,
+ 0xbc,0x5f,0xa8,0xfb,0xc4,0xab,0x53,0xb,0x47,0x6e,0x53,0xdd,0x26,0x5c,0xff,0x48,
+ 0xbf,0xd2,0xf4,0x42,0x0,0x20,0x3b,0x65,0xa,0x28,0xb4,0x31,0x2f,0xdf,0x1d,0x5a,
+ 0xf4,0x2b,0xd6,0x59,0xa9,0x76,0x63,0xfa,0x84,0xe5,0x1b,0x7e,0x4c,0x56,0x0,0x0,
+ 0xc8,0x4a,0x99,0x2,0xa,0x6b,0xfe,0xaa,0xc5,0xe1,0xdc,0x61,0x5d,0x53,0xb,0x47,
+ 0x5e,0xd3,0xb2,0xb6,0x38,0x4e,0x9d,0x3f,0x3d,0x59,0x1,0x0,0xe0,0x54,0x28,0x53,
+ 0x40,0x21,0xc5,0xc1,0xb,0x97,0xde,0x7b,0x53,0x6a,0xe1,0xc8,0x73,0x7a,0x4e,0xba,
+ 0x36,0xec,0xda,0xb7,0x3b,0x59,0x5,0x0,0xe0,0x54,0x28,0x53,0x40,0x21,0x7d,0xbe,
+ 0x60,0x46,0x21,0x47,0xa1,0x7f,0xb5,0xf4,0xdb,0x64,0x5,0x0,0x80,0x53,0xa5,0x4c,
+ 0x1,0x85,0xf3,0xc3,0xc6,0x55,0xa1,0xc3,0xd8,0x4b,0x52,0xb,0x47,0x9e,0x13,0x1f,
+ 0x4a,0x1c,0x1f,0x4e,0xc,0x0,0x34,0xc,0x65,0xa,0x28,0x94,0xfd,0x87,0xe,0x84,
+ 0xbf,0x3e,0x35,0x34,0xfc,0xb1,0xba,0x2a,0xb5,0x70,0xe4,0x35,0x67,0xc,0xea,0x68,
+ 0x14,0x3a,0x0,0x34,0x30,0x65,0xa,0x28,0x94,0x79,0x2b,0x17,0x86,0xf3,0xa,0x36,
+ 0x74,0x22,0x8e,0x42,0xbf,0xee,0xe1,0xdb,0x8d,0x42,0x7,0x80,0x6,0xa6,0x4c,0x1,
+ 0x85,0xb1,0xf7,0xc0,0xbe,0x70,0xcd,0x83,0x7f,0x4b,0x2f,0x1c,0x39,0x4e,0xd5,0xa8,
+ 0xde,0x61,0xe9,0xfa,0x15,0xc9,0x2a,0x0,0x0,0xd,0x45,0x99,0x2,0xa,0xe3,0x9b,
+ 0xe5,0x73,0xc3,0xe9,0x3,0x3b,0xa4,0x16,0x8e,0xbc,0xa6,0x45,0xbf,0xaa,0xf0,0xc6,
+ 0x8c,0x77,0x92,0x15,0x0,0x0,0x1a,0x92,0x32,0x5,0x14,0x42,0x1c,0x85,0xde,0xfb,
+ 0xae,0x3f,0xa7,0x16,0x8e,0x3c,0xa7,0xcb,0xf8,0xbe,0x61,0xc7,0x9e,0x9a,0x64,0x15,
+ 0x0,0x80,0x86,0xa4,0x4c,0x1,0x85,0xf0,0xd9,0xfc,0xe9,0xa1,0x65,0xff,0xb6,0xa9,
+ 0x85,0x23,0xaf,0x69,0x35,0xa0,0x7d,0x98,0xb1,0xf8,0x9b,0x64,0x5,0x0,0x80,0x86,
+ 0xa6,0x4c,0x1,0xb9,0xb7,0x62,0xc3,0xca,0xd0,0x7e,0x4c,0xf1,0x46,0xa1,0x5f,0x7e,
+ 0xdf,0xcd,0xa5,0x33,0x72,0x0,0x40,0xe3,0x50,0xa6,0x80,0x5c,0x8b,0x13,0xec,0x6e,
+ 0x7a,0x7c,0x60,0xe1,0x46,0xa1,0x9f,0x33,0xa4,0x4b,0x98,0xf3,0xc3,0xf7,0xc9,0x2a,
+ 0x0,0x0,0x8d,0x41,0x99,0x2,0x72,0x2d,0xe,0x9d,0x38,0x6b,0x70,0xe7,0xd4,0xc2,
+ 0x91,0xdb,0xd4,0x16,0xc7,0x5b,0x1e,0x1f,0x1c,0xf6,0x1b,0x85,0xe,0x0,0x8d,0x4a,
+ 0x99,0x2,0x72,0xab,0x66,0xdf,0xae,0xd0,0xf3,0xce,0x6b,0xd3,0xb,0x47,0x8e,0x13,
+ 0x2f,0x69,0x8c,0x97,0x36,0x2,0x0,0x8d,0x4b,0x99,0x2,0x72,0xeb,0xed,0xaf,0x3f,
+ 0xc,0x2d,0xfb,0x15,0x6b,0xe8,0x44,0x1c,0xb2,0x11,0x87,0x6d,0x0,0x0,0x8d,0x4f,
+ 0x99,0x2,0x72,0x69,0xfb,0xee,0x1d,0xa1,0xe3,0x1d,0x97,0xa6,0x16,0x8e,0x3c,0x27,
+ 0x8e,0x7f,0x37,0x74,0x2,0x0,0x9a,0x86,0x32,0x5,0xe4,0xd2,0xab,0x5f,0xfe,0x23,
+ 0xb4,0x28,0xd8,0xd0,0x89,0xf8,0x40,0xe2,0x78,0x8f,0x18,0x0,0xd0,0x34,0x94,0x29,
+ 0x20,0x77,0x96,0xae,0x5f,0x11,0xaa,0x46,0xf5,0x4e,0x2d,0x1c,0x79,0xce,0x35,0xf,
+ 0xfe,0x2d,0xec,0x3d,0xb0,0x2f,0x59,0x5,0x0,0xa0,0xb1,0x29,0x53,0x40,0xae,0xc4,
+ 0x51,0xe8,0xd7,0x3d,0x7c,0x7b,0xf8,0x63,0x75,0x7a,0xe1,0xc8,0x6b,0xce,0x1b,0xd6,
+ 0x35,0xcc,0x5b,0xb9,0x30,0x59,0x5,0x0,0xa0,0x29,0x28,0x53,0x40,0xae,0x7c,0xbb,
+ 0xfc,0xbb,0x70,0xc6,0xa0,0x8e,0xa9,0x85,0x23,0xb7,0xa9,0xae,0xa,0x7f,0x7d,0x6a,
+ 0x68,0xd8,0x7f,0xe8,0x40,0xb2,0xa,0x0,0x40,0x53,0x50,0xa6,0x80,0xdc,0xd8,0x73,
+ 0x60,0x6f,0xb8,0xf8,0xee,0xeb,0xd3,0xb,0x47,0x8e,0xd3,0x76,0xf4,0xc5,0x46,0xa1,
+ 0x3,0x40,0x33,0x50,0xa6,0x80,0xdc,0xf8,0x6a,0xe9,0xb7,0xa1,0x55,0xff,0x76,0xa9,
+ 0x85,0x23,0xaf,0x69,0xd1,0xaf,0x6d,0x78,0x73,0xc6,0xbf,0x92,0x15,0x0,0x0,0x9a,
+ 0x92,0x32,0x5,0xe4,0xc2,0xae,0x7d,0xbb,0x43,0xcf,0x49,0xc5,0x7b,0x40,0x6f,0xb7,
+ 0x89,0x57,0x85,0x1d,0x7b,0x6a,0x92,0x55,0x0,0x0,0x9a,0x92,0x32,0x5,0xe4,0xc2,
+ 0xd4,0xf9,0xd3,0xb,0xf7,0x80,0xde,0x33,0x6,0x76,0xc,0xb3,0x96,0xce,0x4e,0x56,
+ 0xa0,0x7c,0x2d,0x5b,0xbf,0x22,0xcc,0xfd,0x61,0x7e,0xe9,0xcc,0xe1,0x2f,0x33,0x73,
+ 0xc9,0xb7,0x61,0xc6,0xd2,0x6f,0xc2,0xf4,0x25,0x31,0x5f,0x57,0x4c,0xbe,0x5c,0x32,
+ 0x2b,0x7c,0xb1,0xf8,0xab,0xf0,0xf9,0x82,0x99,0xe1,0xe3,0x79,0x9f,0x87,0xf7,0x66,
+ 0x7f,0x1c,0x3e,0x9c,0xfb,0x69,0xd8,0xb0,0x7d,0x53,0xb2,0xd5,0x0,0x14,0x81,0x32,
+ 0x5,0x54,0xbc,0xe5,0x1b,0x7e,0xc,0xed,0xc6,0xf4,0x49,0x2d,0x1c,0xb9,0x4d,0x75,
+ 0x9b,0xd2,0xd4,0xc2,0x4a,0x18,0x85,0xfe,0xe9,0xfc,0x2f,0xd2,0xb7,0x21,0x67,0xf9,
+ 0xc3,0x6d,0x17,0x86,0x96,0x3,0xda,0x85,0xcf,0x6b,0x8b,0x3d,0x0,0xc5,0xa0,0x4c,
+ 0x1,0x15,0x2d,0x96,0x89,0xeb,0x1f,0xe9,0x57,0xb8,0x51,0xe8,0xf1,0x39,0x5a,0xf1,
+ 0x79,0x5a,0x95,0x60,0xfe,0xaa,0x85,0xe1,0xf,0xb7,0xb7,0x4e,0xdd,0x8e,0xbc,0xe5,
+ 0xb4,0xda,0xed,0xec,0x3a,0xe9,0xaa,0xb0,0x7c,0xfd,0x8f,0xc9,0xd6,0x3,0x90,0x67,
+ 0xca,0x14,0x50,0xd1,0xe2,0x65,0x6e,0xf1,0x72,0xb7,0xb4,0x3,0xdb,0xbc,0xa6,0x45,
+ 0xbf,0xaa,0xf0,0xc6,0x8c,0x77,0x92,0x15,0x28,0x7f,0x47,0x8e,0x1e,0x9,0xe7,0x8f,
+ 0xe8,0x9e,0xba,0x2d,0x79,0x4c,0x2c,0x8e,0x83,0x5f,0x1c,0x67,0x54,0x3d,0x40,0x1,
+ 0x28,0x53,0x40,0xc5,0x8a,0x83,0x17,0xe2,0x0,0x86,0xb4,0x3,0xda,0x3c,0xa7,0xcb,
+ 0xb8,0xbe,0x15,0x37,0x74,0xe2,0xae,0x7f,0x3c,0x52,0x3a,0x6b,0x93,0xb6,0x3d,0x79,
+ 0xcc,0x9f,0x6,0x76,0x8,0x5f,0x2d,0x29,0xff,0xfb,0xd9,0x0,0x38,0x35,0xca,0x14,
+ 0x50,0xb1,0xe2,0x48,0xf0,0x38,0x1a,0x3c,0xed,0x60,0x36,0xaf,0x69,0xd9,0xbf,0x5d,
+ 0x98,0xb1,0xf8,0x9b,0x64,0x5,0x2a,0xc7,0x96,0x9a,0x6d,0xa1,0xd3,0xb8,0xcb,0x53,
+ 0xb7,0x29,0x8f,0x39,0xad,0x36,0x5d,0x27,0x5e,0x59,0x5b,0x7a,0x77,0x26,0x2b,0x0,
+ 0x40,0x1e,0x29,0x53,0x40,0x45,0x8a,0xf,0xa9,0x8d,0xf,0xab,0x4d,0x3b,0x90,0xcd,
+ 0x73,0xe2,0x43,0x89,0x77,0xef,0xdf,0x93,0xac,0x42,0x65,0xf9,0x68,0xee,0xe7,0xe1,
+ 0x8c,0x41,0xc5,0xb9,0x24,0x33,0x9e,0x89,0x9b,0xf0,0xf7,0x7,0x93,0xad,0x7,0x20,
+ 0x8f,0x94,0x29,0xa0,0xe2,0xec,0x3f,0xb8,0x3f,0xfc,0xe5,0xc9,0x21,0xe1,0x8f,0xd5,
+ 0x55,0xa9,0x7,0xb1,0x79,0x4d,0x2c,0x22,0xdf,0x2e,0xff,0x2e,0x59,0x85,0xca,0x34,
+ 0xe8,0x85,0xb1,0xa5,0xb3,0x36,0x69,0xdb,0x97,0xc7,0x9c,0x3b,0xbc,0x6b,0xa9,0xf8,
+ 0x3,0x90,0x4f,0xca,0x14,0x50,0x71,0xe6,0xfc,0xf0,0x7d,0x38,0x77,0xe8,0x45,0xa9,
+ 0x7,0xaf,0xb9,0x4d,0x32,0xa,0x7d,0x5f,0x6d,0x91,0xac,0x64,0x5f,0x2f,0x9b,0x1b,
+ 0xce,0x1c,0xdc,0x29,0x7d,0x1b,0x73,0x98,0x58,0x1c,0xfb,0x3f,0x37,0xba,0xf4,0x5,
+ 0x0,0x0,0xf9,0xa3,0x4c,0x1,0x15,0x25,0x8e,0x42,0xbf,0xec,0xde,0x9b,0x52,0xf,
+ 0x5c,0xf3,0x9c,0xd6,0x23,0x7b,0x86,0x45,0x6b,0x96,0x26,0xab,0x50,0xb9,0xe2,0x84,
+ 0xbb,0xbf,0x3e,0x3d,0xac,0x50,0xc3,0x28,0xe2,0x19,0xc5,0x19,0x8b,0xbf,0x4e,0x56,
+ 0x0,0x80,0x3c,0x51,0xa6,0x80,0x8a,0x32,0x73,0xe9,0xb7,0xe1,0xf4,0x81,0x1d,0x52,
+ 0xf,0x5a,0xf3,0x9a,0x38,0x64,0xe3,0xfd,0xd9,0x9f,0x24,0x2b,0x50,0xf9,0x16,0xd6,
+ 0x96,0xc2,0xf3,0x87,0x77,0x4b,0xdd,0xd6,0xbc,0xa6,0xc7,0x9d,0xd7,0x84,0x6d,0xbb,
+ 0x77,0x24,0x2b,0x0,0x40,0x5e,0x28,0x53,0x40,0xc5,0x88,0x83,0x17,0x7a,0xdd,0x79,
+ 0x6d,0xea,0xc1,0x6a,0x9e,0xd3,0x6d,0xc2,0x55,0x61,0xe7,0xde,0x5d,0xc9,0x2a,0xe4,
+ 0xc3,0x2b,0xd3,0xfe,0x51,0xac,0x7,0x2d,0xd7,0x6e,0xeb,0x7d,0xef,0x3c,0x9e,0x6c,
+ 0x3d,0x0,0x79,0xa1,0x4c,0x1,0x15,0xe3,0xb3,0xf9,0xd3,0x43,0xcb,0xfe,0xc5,0x1a,
+ 0x85,0xde,0xaa,0x7f,0xbb,0xf0,0xf9,0x82,0x19,0xc9,0xa,0xe4,0xc7,0xd6,0x5d,0xdb,
+ 0xc3,0x25,0xf7,0xde,0x98,0xba,0xcd,0x79,0xcd,0xf9,0xc3,0xbb,0x87,0x1f,0x37,0xad,
+ 0x4e,0x56,0x0,0x80,0x3c,0x50,0xa6,0x80,0x8a,0xb0,0x69,0xe7,0x96,0xd0,0x79,0x5c,
+ 0xdf,0xd4,0x83,0xd4,0x3c,0xe7,0x92,0x7b,0x6e,0xac,0xd8,0x51,0xe8,0xbf,0x27,0x5e,
+ 0xba,0x58,0xa4,0x4b,0x36,0xe3,0x7d,0x62,0x43,0xa7,0x4c,0x28,0xdd,0x37,0x6,0x40,
+ 0x3e,0x28,0x53,0x40,0x45,0x18,0xf9,0xd2,0xa4,0xd0,0xa2,0x5f,0xb1,0x46,0xa1,0x5f,
+ 0x30,0xa2,0x7b,0x98,0xb7,0x72,0x61,0xb2,0x2,0xf9,0x13,0x4b,0xe2,0x4d,0x4f,0xc,
+ 0x2c,0xd4,0x30,0x8a,0x38,0xc9,0x70,0x66,0x5,0x3e,0x74,0x19,0x80,0x74,0xca,0x14,
+ 0x50,0xf6,0x62,0xa1,0x28,0xda,0xc0,0x82,0x58,0x1c,0xff,0x3d,0xe7,0xd3,0x64,0x5,
+ 0xf2,0x6b,0xe6,0x92,0x6f,0xc3,0xd9,0x43,0xbb,0xa4,0xae,0x41,0x5e,0x73,0xd9,0xfd,
+ 0x37,0x85,0x1d,0x7b,0x6a,0x92,0x15,0x0,0xa0,0x92,0x29,0x53,0x40,0x59,0x8b,0x67,
+ 0x2f,0x2e,0x2d,0xd8,0xbd,0x35,0x31,0x17,0x8d,0xbf,0x22,0xd4,0xec,0xcb,0xd7,0xd0,
+ 0x89,0x5f,0x33,0xe6,0xb5,0x7b,0xa,0x75,0x76,0x2a,0x3e,0x6c,0xfa,0xa9,0x8f,0xa7,
+ 0x24,0x5b,0xf,0x40,0x25,0x53,0xa6,0x80,0xb2,0x16,0x87,0x4e,0xc4,0x21,0xc,0xa9,
+ 0x7,0xa5,0x39,0x4d,0x1c,0xb2,0x91,0xc7,0xa1,0x13,0xbf,0x26,0xde,0xf,0xd7,0x76,
+ 0xcc,0xc5,0xa9,0x6b,0x91,0xd7,0xc4,0xed,0xdd,0x5c,0xb3,0x35,0x59,0x1,0x0,0x2a,
+ 0x95,0x32,0x5,0x94,0xad,0x78,0xb0,0xd9,0x7e,0x4c,0x9f,0xd4,0x83,0xd1,0x3c,0x27,
+ 0x8e,0x7f,0xcf,0xeb,0xd0,0x89,0x5f,0xf3,0xde,0x37,0x1f,0x97,0x9e,0xa7,0x95,0xb6,
+ 0x1e,0x79,0x4c,0x3c,0x13,0x77,0xaf,0x51,0xe9,0x0,0x15,0x4f,0x99,0x2,0xca,0xd6,
+ 0x93,0x1f,0xbd,0x58,0xba,0x24,0x2a,0xed,0x60,0x34,0xaf,0xf9,0xd3,0x80,0xf6,0x61,
+ 0xe6,0x92,0xe2,0xd,0x28,0x88,0xe5,0xf1,0xea,0x87,0xfe,0x96,0xba,0x26,0x79,0xcd,
+ 0x5,0x23,0x7a,0x38,0x3b,0x5,0x50,0xe1,0x94,0x29,0xa0,0x2c,0x7d,0xbf,0xaa,0x78,
+ 0x43,0x27,0x62,0x2e,0xbf,0xef,0xe6,0xb0,0xf7,0xc0,0xbe,0x64,0x15,0x8a,0xe5,0x8b,
+ 0x5,0x5f,0x15,0x6e,0x54,0xfa,0x7d,0xef,0x3c,0x91,0x6c,0x3d,0x0,0x95,0x48,0x99,
+ 0x2,0xca,0x4e,0x2c,0x13,0x57,0x3e,0xf0,0x97,0xd4,0x3,0xd0,0x3c,0xe7,0xbc,0x61,
+ 0xdd,0xc2,0xdc,0x1f,0xe7,0x27,0xab,0x50,0x3c,0xf1,0xf9,0x4b,0x7f,0x7b,0x7a,0x58,
+ 0xa1,0x86,0x51,0xc4,0xf1,0xf7,0x6b,0xb6,0xae,0x4f,0x56,0x0,0x80,0x4a,0xa3,0x4c,
+ 0x1,0x65,0x27,0x5e,0xe6,0x76,0xc6,0xc0,0x8e,0xa9,0x7,0x9f,0xb9,0x4d,0x75,0x9b,
+ 0xf0,0xd8,0x7,0xcf,0x25,0x2b,0x50,0x5c,0x4b,0xd7,0xaf,0x28,0x3d,0x8b,0x29,0x75,
+ 0x8d,0x72,0x98,0x58,0x1c,0x7,0xbe,0x30,0x36,0xd9,0x7a,0x0,0x2a,0x8d,0x32,0x5,
+ 0x94,0x95,0x5d,0xfb,0x76,0x87,0xde,0x77,0x5e,0x97,0x7a,0xe0,0x99,0xe7,0xb4,0x19,
+ 0xd9,0x2b,0xac,0xdf,0xbe,0x31,0x59,0x85,0x62,0x1b,0xf1,0xca,0xa4,0x42,0x9d,0x9d,
+ 0x6a,0x35,0xa0,0x5d,0xf8,0x7c,0x7e,0x71,0xa6,0x37,0x2,0xe4,0x89,0x32,0x5,0x94,
+ 0x95,0xa9,0xf3,0xbf,0x2c,0x8d,0x6,0x4f,0x3b,0xe8,0xcc,0x6d,0xaa,0xab,0xc2,0xe4,
+ 0x4f,0x5f,0x4e,0x56,0x80,0x8d,0x3b,0x37,0x87,0xaa,0xd1,0xbd,0xd3,0xd7,0x2a,0xa7,
+ 0xe9,0x70,0xc7,0xa5,0x61,0xeb,0xae,0x6d,0xc9,0xa,0x0,0x50,0x29,0x94,0x29,0xa0,
+ 0x6c,0x6c,0xdc,0xb1,0x39,0xb4,0x2b,0xe0,0x28,0xf4,0x36,0xa3,0x7a,0xd5,0x16,0x88,
+ 0x4d,0xc9,0x2a,0x10,0x7d,0x34,0xf7,0xb3,0xc2,0x8d,0x4a,0x9f,0xf0,0xd6,0x3,0xc9,
+ 0xd6,0x3,0x50,0x29,0x94,0x29,0xa0,0x6c,0x3c,0xfc,0xde,0xe4,0xc2,0x8d,0x42,0x6f,
+ 0x59,0x5b,0x18,0x26,0x7f,0xe2,0xac,0x54,0x9a,0x9b,0x9e,0x18,0x58,0xa8,0xcb,0xfd,
+ 0xce,0x19,0x7a,0x51,0x58,0xb5,0x79,0x6d,0xb2,0xf5,0x0,0x54,0x2,0x65,0xa,0x28,
+ 0xb,0xdf,0x2c,0x9f,0x1b,0xce,0x1e,0xda,0x25,0xf5,0x20,0x33,0xcf,0xe9,0x3e,0xf1,
+ 0x6a,0xcf,0x1a,0xfa,0x15,0x8b,0xd7,0x2e,0xb,0x67,0xd,0xe9,0x9c,0xba,0x6e,0x79,
+ 0x4c,0x2c,0x8e,0xc3,0x5f,0x9e,0x98,0x6c,0x3d,0x0,0x95,0x40,0x99,0x2,0x9a,0x5d,
+ 0x2c,0x13,0xb1,0x54,0xa4,0x1d,0x60,0xe6,0x39,0xb1,0x3c,0x7e,0xbd,0x7c,0x4e,0xb2,
+ 0xa,0xa4,0x19,0xf1,0x72,0xb1,0x86,0x51,0xc4,0x49,0x86,0xf3,0x56,0x2e,0x4c,0xb6,
+ 0x1e,0x80,0x72,0xa7,0x4c,0x1,0xcd,0xee,0x99,0x4f,0x5e,0x2e,0x5d,0xee,0x96,0x76,
+ 0x70,0x99,0xdb,0x54,0xb7,0x9,0xf,0xbc,0xfb,0x54,0xb2,0x2,0xfc,0x9a,0x38,0xe1,
+ 0xb0,0x48,0x67,0x2c,0x63,0x71,0xbc,0xe1,0xf1,0xfe,0x61,0xf7,0xfe,0x3d,0xc9,0xa,
+ 0x0,0x50,0xce,0x94,0x29,0xa0,0x59,0xad,0xde,0xb2,0x36,0xb4,0x1e,0xd9,0x2b,0xf5,
+ 0xc0,0x32,0xcf,0x69,0x3d,0xb2,0x67,0x58,0xbb,0xcd,0xc3,0x5a,0xeb,0xe2,0x8e,0x37,
+ 0xee,0x2b,0xd4,0xd9,0xa9,0x38,0x78,0xe3,0xdf,0x73,0xa6,0x26,0x5b,0xf,0x40,0x39,
+ 0x53,0xa6,0x80,0x66,0x73,0xec,0xd8,0xb1,0xf0,0xf8,0x87,0xcf,0x15,0x6e,0xe8,0x44,
+ 0x8b,0x7e,0x55,0xe1,0xb9,0xa9,0xaf,0x25,0xab,0xc0,0xef,0x89,0x97,0x81,0xb6,0x1b,
+ 0x5b,0xac,0x29,0x8f,0x55,0x63,0x7a,0xbb,0x97,0xe,0xa0,0x2,0x28,0x53,0x40,0xb3,
+ 0x59,0xb5,0x65,0x4d,0xb8,0x70,0x44,0x8f,0xd4,0x83,0xc9,0x3c,0xa7,0xd3,0xb8,0xcb,
+ 0xc2,0x16,0xcf,0x14,0xaa,0x97,0x8f,0xbf,0xfb,0x3c,0xb4,0x1a,0xd0,0x3e,0x75,0x3d,
+ 0xf3,0x98,0x78,0x26,0x6e,0xec,0xeb,0xf7,0x26,0x5b,0xf,0x40,0xb9,0x52,0xa6,0x80,
+ 0x66,0xb1,0xff,0xe0,0xfe,0x70,0xcf,0xdb,0x8f,0x95,0xee,0x1d,0x4a,0x3b,0x98,0xcc,
+ 0x6b,0xfe,0x54,0x5b,0x8,0xbe,0x58,0x38,0x33,0x59,0x5,0xea,0xe3,0xaf,0xcf,0xc,
+ 0x2b,0xd4,0xe5,0x7e,0xf1,0x5e,0xb1,0x65,0xeb,0x7f,0x48,0xb6,0x1e,0x80,0x72,0xa4,
+ 0x4c,0x1,0xcd,0x62,0xf6,0x8a,0x79,0x85,0x1a,0x7b,0x7d,0x22,0x7d,0xef,0xbb,0x39,
+ 0xec,0x39,0xb0,0x37,0x59,0x5,0xea,0x63,0xfe,0xaa,0x45,0xe1,0xcc,0x21,0x9d,0x52,
+ 0xd7,0x35,0x8f,0x89,0xc5,0x71,0xe0,0x8b,0x77,0x24,0x5b,0xf,0x40,0x39,0x52,0xa6,
+ 0x80,0x26,0x17,0x27,0x95,0x5d,0x76,0xef,0x4d,0xa9,0x7,0x90,0x79,0xce,0xf9,0xc3,
+ 0xbb,0x85,0xef,0x57,0x19,0x7b,0x7d,0x2a,0xe2,0x73,0x98,0x8a,0x74,0x76,0xea,0xf4,
+ 0x81,0x1d,0xc2,0xcc,0x25,0xdf,0x24,0x5b,0xf,0x40,0xb9,0x51,0xa6,0x80,0x26,0x37,
+ 0x7d,0xf1,0xd7,0xa1,0xd5,0x80,0x76,0xa9,0x7,0x8f,0xb9,0x4d,0x75,0x55,0x78,0xe2,
+ 0xa3,0x17,0x92,0x15,0x20,0xab,0x38,0x2a,0xfd,0xdc,0x61,0x5d,0xd3,0xd7,0x38,0xa7,
+ 0xe9,0x32,0xe1,0x8a,0xb0,0xd5,0x3d,0x76,0x0,0x65,0x49,0x99,0x2,0x9a,0xd4,0xae,
+ 0x7d,0xbb,0x43,0x8f,0x49,0xd7,0xa4,0x1e,0x34,0xe6,0x39,0x6d,0x46,0xf5,0x2a,0x15,
+ 0x1,0x4e,0xdd,0xdd,0xff,0x7c,0xb4,0x50,0xf7,0xda,0xc5,0x33,0x71,0x13,0xff,0xfe,
+ 0x50,0xb2,0xf5,0x0,0x94,0x13,0x65,0xa,0x68,0x52,0x5f,0x2e,0x9a,0x55,0xb8,0x7,
+ 0xf4,0xc6,0x51,0xe8,0x93,0x3f,0x7d,0x35,0x59,0x1,0x4e,0xd5,0xd6,0x5d,0xdb,0x43,
+ 0xb7,0x49,0x57,0xa7,0xae,0x75,0x5e,0x13,0x87,0x51,0x2c,0xdf,0xf0,0x63,0xb2,0x2,
+ 0xf9,0x74,0xfc,0xf8,0xf1,0x5c,0xe7,0xe0,0x91,0x43,0x61,0xd7,0x81,0xdd,0xa1,0x66,
+ 0x7f,0xcc,0xae,0xb2,0xc9,0xee,0x3,0x7b,0x4b,0x3f,0x1f,0x90,0x8d,0x32,0x5,0x34,
+ 0x99,0xb8,0xc3,0xee,0x3e,0xb1,0x58,0x7,0xc1,0x31,0x9d,0xc7,0xf5,0xd,0x1b,0x77,
+ 0x6c,0x4e,0x56,0x81,0x86,0xf0,0xc5,0xc2,0xaf,0xc2,0xe9,0x83,0x3a,0xa6,0xae,0x77,
+ 0x1e,0x13,0xcf,0x4e,0xf5,0x7b,0x6e,0x54,0xd8,0x77,0x70,0x7f,0xb2,0x2,0x95,0xed,
+ 0xce,0x37,0x1f,0xe,0x97,0xdc,0x7d,0x43,0xe8,0x30,0xf6,0x92,0xd0,0x6e,0xf4,0xc5,
+ 0xa1,0xed,0xa8,0xde,0xe1,0xc2,0xe1,0x3d,0xc2,0xf9,0xc3,0xba,0xe5,0x2a,0xe7,0xd,
+ 0xed,0x1a,0xce,0x1a,0xdc,0x39,0xfc,0xa9,0x7f,0xfb,0xd0,0xa2,0xc,0x9f,0xa7,0x17,
+ 0x7f,0xa6,0x38,0x61,0xb4,0xe7,0xa4,0x6b,0xc2,0xa2,0x35,0x4b,0x93,0x57,0x7,0xa8,
+ 0xf,0x65,0xa,0x68,0x32,0xc7,0x6a,0xcb,0x54,0xd1,0xce,0x4a,0x9d,0x39,0xa8,0x53,
+ 0xf8,0x7c,0xc1,0x8c,0x64,0x5,0x68,0x48,0x83,0x5f,0x1a,0x57,0xb8,0x61,0x14,0xb1,
+ 0x44,0xe6,0x41,0xeb,0x11,0x3d,0x53,0xb7,0x51,0x9a,0x27,0xa7,0xd5,0x26,0xde,0x8b,
+ 0xf8,0xfd,0xaa,0x45,0xc9,0x2b,0x4,0xd4,0x95,0x32,0x5,0x34,0x99,0x58,0xa6,0xfe,
+ 0xbf,0xdb,0xce,0xf,0x7f,0xbc,0x2d,0xff,0x7,0xc0,0xf1,0x20,0xff,0x8c,0x41,0x1d,
+ 0xc3,0xed,0xcf,0x8c,0x2c,0x3d,0x53,0x8b,0x86,0x17,0x9f,0xc1,0x54,0xb4,0xf1,0xfa,
+ 0x3d,0xef,0xba,0x36,0x6c,0xdf,0xbd,0x23,0x59,0x81,0xca,0x55,0xb4,0x2f,0x55,0x2a,
+ 0x25,0x1d,0xc6,0x5e,0x6a,0xd8,0x9,0xd4,0x93,0x32,0x5,0x34,0xa9,0x78,0xa9,0xdf,
+ 0x81,0xc3,0x7,0xc3,0x9a,0xad,0xeb,0xc2,0x1b,0xb3,0xde,0xd,0x4f,0x7c,0xfc,0x42,
+ 0x78,0xe0,0xfd,0x67,0xc2,0xbd,0xef,0x3e,0x1e,0x26,0xfc,0xfd,0xc1,0x30,0xec,0xe5,
+ 0x89,0xa1,0xdf,0x73,0xa3,0x4b,0x97,0x34,0x95,0x73,0xfa,0x3f,0x3f,0x3a,0xc,0x7f,
+ 0x65,0x52,0x18,0xff,0xd6,0xfd,0xb5,0x3f,0xfb,0x93,0xe1,0xf1,0x8f,0x9f,0xf,0x6f,
+ 0x7c,0xf5,0xaf,0x30,0x75,0xc1,0xf4,0xf0,0xf5,0x8a,0xef,0xc2,0xbc,0x55,0x8b,0xc3,
+ 0xd6,0xdd,0xdb,0xc3,0xe1,0xa3,0x47,0x92,0x2d,0xa7,0x31,0x8c,0x7e,0xfd,0x9e,0x42,
+ 0x9d,0x9d,0x8a,0x83,0x37,0x1e,0xfd,0xe0,0xd9,0x64,0xeb,0x2b,0x57,0x39,0x5e,0xf2,
+ 0x26,0xb5,0xa9,0x7d,0x5d,0x1e,0xff,0xd0,0xd4,0x51,0xa8,0xf,0x65,0xa,0x68,0x36,
+ 0x87,0x8f,0x1e,0xe,0x5b,0xf7,0xec,0x8,0xeb,0x77,0x6e,0xc,0x2b,0xb7,0xae,0x9,
+ 0x3f,0x6e,0x59,0x1d,0x96,0xac,0x5f,0x11,0xe6,0xaf,0x59,0x1c,0xbe,0x5f,0xbd,0x28,
+ 0xcc,0x2b,0xd3,0xc4,0x9f,0x2d,0xfe,0x8c,0xf1,0x67,0x8d,0x3f,0x73,0xfc,0xf9,0xe3,
+ 0x76,0xc4,0xed,0xa1,0x69,0x6d,0xda,0xb9,0xa5,0x34,0x29,0x31,0xf5,0xc0,0x30,0xa7,
+ 0xb9,0x70,0x64,0x8f,0xb0,0x71,0x67,0x65,0xdf,0x83,0xa7,0x4c,0x95,0x6f,0xce,0x1e,
+ 0xd2,0x25,0xcc,0xf9,0xe1,0xfb,0xe4,0x95,0x2,0x7e,0x8f,0x32,0x5,0x40,0x45,0xfb,
+ 0xf7,0x9c,0xa9,0xa5,0x89,0x89,0x69,0x7,0x86,0x79,0x4c,0x3c,0x13,0x37,0xfe,0xad,
+ 0x7,0x92,0xad,0xaf,0x4c,0x2e,0xf3,0x2b,0xef,0x74,0x9b,0x70,0x55,0x2e,0x2e,0x27,
+ 0x85,0xa6,0xa0,0x4c,0x1,0x50,0xd1,0x76,0xef,0xdf,0x13,0xae,0x7a,0xe8,0x6f,0xa5,
+ 0x9b,0xe8,0xd3,0xe,0xc,0xf3,0x98,0x38,0x2a,0x7d,0xc3,0xf6,0x4d,0xc9,0xa,0x54,
+ 0x1e,0x65,0xaa,0xbc,0xd3,0xb2,0x7f,0xdb,0xf0,0xea,0x97,0xff,0x4c,0x5e,0x2d,0xe0,
+ 0xb7,0x28,0x53,0x0,0x54,0xbc,0x6f,0x96,0xcf,0xd,0x67,0xe,0xee,0x94,0x7a,0x60,
+ 0x98,0xc7,0xc4,0xb3,0x53,0x77,0xbc,0x79,0x5f,0xb2,0xf5,0x95,0x47,0x99,0x2a,0xff,
+ 0x54,0x8d,0xea,0x5d,0x7a,0xa6,0x1b,0xf0,0xdb,0x94,0x29,0x0,0x72,0x21,0xe,0x4,
+ 0x29,0xd2,0x30,0x8a,0x78,0x76,0x6a,0xe5,0xe6,0x35,0xc9,0xd6,0x57,0x16,0x65,0xaa,
+ 0x2,0x52,0x5d,0x15,0x5e,0xf8,0xfc,0xf5,0xe4,0x15,0x3,0x7e,0x8d,0x32,0x5,0x40,
+ 0x2e,0xac,0xdd,0xb6,0xa1,0x50,0xa3,0xd2,0x63,0x71,0xfc,0xeb,0x33,0xc3,0x93,0xad,
+ 0xaf,0x2c,0xca,0x54,0x65,0xe4,0xc2,0x11,0x3d,0x4a,0x43,0x5e,0x80,0x5f,0xa7,0x4c,
+ 0x1,0x90,0x1b,0x23,0x5f,0xb9,0xab,0x50,0x67,0xa7,0xe2,0xbd,0x2d,0x9f,0x7e,0xff,
+ 0x65,0xb2,0xf5,0x95,0x43,0x99,0xaa,0x90,0x54,0xb7,0x9,0x8f,0x7d,0xf0,0x5c,0xf2,
+ 0xaa,0x1,0x69,0x94,0x29,0x0,0x72,0x63,0xe3,0x8e,0xcd,0xa1,0xf5,0xe8,0x62,0x8d,
+ 0x4a,0x6f,0x33,0xba,0x77,0xc5,0x9d,0x3d,0x50,0xa6,0x2a,0x27,0x71,0x54,0xfa,0x77,
+ 0x2b,0x17,0x24,0xaf,0x1c,0xf0,0x4b,0xca,0x14,0x0,0xb9,0xf2,0xef,0x39,0x9f,0x16,
+ 0x6e,0x54,0x7a,0x7c,0x78,0x71,0x25,0x51,0xa6,0x2a,0x2b,0x5d,0x27,0x5c,0x19,0x76,
+ 0xec,0xd9,0x99,0xbc,0x7a,0xc0,0xc9,0x94,0x29,0x0,0x72,0x25,0x8e,0x4a,0xbf,0xe6,
+ 0xe1,0xdb,0x6a,0x4b,0x46,0xfa,0x81,0x61,0x1e,0x13,0xef,0x15,0xfb,0x61,0xe3,0xaa,
+ 0x64,0x5,0xca,0x9f,0x32,0x55,0x59,0x69,0x51,0xfb,0x7a,0xbd,0xf4,0xc5,0x9b,0xc9,
+ 0xab,0x7,0x9c,0x4c,0x99,0x2,0x20,0x77,0xbe,0x5d,0xfe,0x5d,0xe1,0x46,0xa5,0xf,
+ 0x9d,0x32,0x31,0xd9,0xfa,0xf2,0xa7,0x4c,0x55,0x5e,0x5a,0x8f,0xec,0x65,0x54,0x3a,
+ 0xa4,0x50,0xa6,0x0,0xc8,0xa5,0x11,0xaf,0xdc,0x59,0xa8,0x61,0x14,0x67,0xc,0xea,
+ 0x18,0x66,0x2d,0x9d,0x9d,0x6c,0x7d,0x79,0x53,0xa6,0x2a,0x30,0xd5,0x6d,0xc2,0x73,
+ 0x53,0x5f,0x4d,0x5e,0x41,0xe0,0x4,0x65,0xa,0x80,0x5c,0x5a,0xb7,0x6d,0x43,0x38,
+ 0x67,0xe8,0x45,0xe9,0x7,0x86,0x39,0x4d,0xf7,0x3b,0xaf,0xe,0xdb,0x76,0xef,0x48,
+ 0x56,0xa0,0x7c,0x29,0x53,0x95,0x99,0xb,0x46,0xf4,0x8,0x6b,0xb6,0xae,0x4b,0x5e,
+ 0x45,0x20,0x52,0xa6,0x0,0xc8,0xad,0x9,0x6f,0x3d,0x58,0xa8,0xb3,0x53,0xf1,0x3e,
+ 0xb1,0x7b,0xdf,0x7e,0x2c,0xd9,0xfa,0xf2,0xa5,0x4c,0x55,0x68,0xaa,0xdb,0x84,0x7,
+ 0xfe,0xf5,0x64,0x38,0x70,0xf8,0x60,0xf2,0x4a,0x2,0xca,0x14,0x0,0xb9,0xb5,0xa5,
+ 0x66,0x5b,0xe8,0x38,0xee,0xb2,0xf4,0x3,0xc3,0x9c,0xe6,0xdc,0x61,0x5d,0xc3,0x86,
+ 0xed,0x9b,0x92,0x15,0x28,0x4f,0xca,0x54,0xe5,0xe6,0xec,0xc1,0x9d,0xc3,0xec,0x15,
+ 0xdf,0x27,0xaf,0x24,0xa0,0x4c,0x1,0x90,0x6b,0x9f,0xcd,0x9f,0x1e,0xfe,0x34,0xb0,
+ 0x7d,0xea,0x81,0x61,0x1e,0x53,0x1a,0x95,0xfe,0xda,0xdd,0xc9,0xd6,0x97,0x27,0x65,
+ 0xaa,0xb2,0x63,0x54,0x3a,0xfc,0x3f,0xca,0x14,0x0,0xb9,0xd7,0xff,0x85,0x31,0x85,
+ 0xba,0xdc,0x2f,0x8e,0x4a,0x9f,0xbf,0x6a,0x51,0xb2,0xf5,0xe5,0x47,0x99,0xaa,0xec,
+ 0xc4,0x51,0xe9,0x2f,0x7c,0xfe,0x7a,0xf2,0x6a,0x42,0xb1,0x29,0x53,0x0,0xe4,0xde,
+ 0xda,0xad,0xeb,0xc3,0xd9,0x43,0xbb,0xa4,0x1e,0x18,0xe6,0x31,0xb1,0x38,0xde,0xf2,
+ 0xd4,0xe0,0xb0,0xe7,0xc0,0xde,0x64,0x5,0xca,0x8b,0x32,0x55,0xf9,0xb9,0x70,0x44,
+ 0x4f,0xc3,0x28,0xa0,0x96,0x32,0x5,0x40,0x21,0x8c,0x7d,0xe3,0xde,0x42,0x9d,0x9d,
+ 0x6a,0x35,0xa0,0x5d,0xf8,0x68,0xee,0x67,0xc9,0xd6,0x97,0x17,0x65,0x2a,0x7,0xa9,
+ 0x6e,0x13,0xee,0x7b,0xe7,0x89,0xb0,0xff,0xd0,0x81,0xe4,0x55,0x85,0x62,0x52,0xa6,
+ 0x0,0x28,0x84,0xcd,0x35,0x5b,0x43,0x9b,0xd1,0xbd,0xd3,0xf,0xc,0x73,0x9a,0xb6,
+ 0x63,0xfa,0x84,0x55,0x5b,0xd6,0x26,0x2b,0x50,0x3e,0x94,0xa9,0x7c,0xe4,0xac,0xc1,
+ 0x9d,0xc3,0x37,0xcb,0xe7,0x26,0xaf,0x2a,0x14,0x93,0x32,0x5,0x40,0x61,0x4c,0xfd,
+ 0xfe,0xcb,0xd0,0xa2,0x7f,0x71,0xe,0xe4,0xe3,0x99,0xb8,0x61,0x53,0x26,0x84,0x43,
+ 0x47,0xe,0x25,0x2b,0x50,0x1e,0x94,0xa9,0xfc,0xa4,0xdb,0xc4,0xab,0x4a,0x5f,0x54,
+ 0x40,0x51,0x29,0x53,0x0,0x14,0xca,0xad,0x4f,0xd,0x2e,0xd4,0xe5,0x7e,0x67,0xe,
+ 0xee,0x14,0x16,0xaf,0x5d,0x96,0x6c,0x7d,0x79,0x50,0xa6,0xf2,0x93,0x56,0xfd,0xdb,
+ 0x85,0xe7,0xa6,0xbe,0x1a,0x8e,0x1d,0x3f,0x9e,0xbc,0xba,0x50,0x2c,0xca,0x14,0x0,
+ 0x85,0xb2,0x64,0xed,0xf2,0x70,0xe6,0x90,0x4e,0xa9,0x7,0x86,0x79,0x4c,0x7c,0x90,
+ 0xef,0xed,0xcf,0x8e,0xc,0xfb,0xf,0xee,0x4f,0x56,0xa0,0xf9,0x29,0x53,0xf9,0x4a,
+ 0xd5,0xa8,0xde,0x61,0xdd,0xb6,0xd,0xc9,0xab,0xb,0xc5,0xa2,0x4c,0x1,0x50,0x38,
+ 0xc3,0x5f,0x99,0x58,0xa8,0xb3,0x53,0xa7,0xf,0xec,0x10,0x66,0x2e,0xf9,0x36,0xd9,
+ 0xfa,0xe6,0xa7,0x4c,0xe5,0x2b,0x2d,0xaa,0xab,0xc2,0x63,0x1f,0x3c,0x5b,0x76,0x97,
+ 0x93,0x42,0x53,0x50,0xa6,0x0,0x28,0x9c,0xf8,0x2d,0x7a,0x91,0x46,0xa5,0xc7,0xf4,
+ 0xbe,0xfb,0xba,0xb0,0x7d,0xf7,0x8e,0x64,0x5,0x9a,0x97,0x32,0x95,0xbf,0x9c,0x33,
+ 0xf4,0xa2,0xf0,0xdd,0xca,0x5,0xc9,0x2b,0xc,0xc5,0xa1,0x4c,0x1,0x50,0x48,0xe3,
+ 0xde,0xb8,0xbf,0x50,0x67,0xa7,0xe2,0x28,0xeb,0x87,0xdf,0x9b,0x9c,0x6c,0x7d,0xf3,
+ 0x52,0xa6,0xf2,0x99,0x9b,0x9e,0x18,0x14,0x36,0xed,0xdc,0x92,0xbc,0xca,0x50,0xc,
+ 0xca,0x14,0x0,0x85,0x14,0x27,0x90,0x55,0x8d,0x29,0xd6,0xa8,0xf4,0xb,0x46,0xf4,
+ 0x8,0x1b,0x77,0x6e,0x4e,0x56,0xa0,0xf9,0x28,0x53,0xf9,0x4c,0x7c,0x5d,0x1f,0x7a,
+ 0xf7,0xe9,0x70,0xe4,0xe8,0x91,0xe4,0x95,0x86,0xfc,0x53,0xa6,0x0,0x28,0xac,0x4f,
+ 0xb,0x38,0x2a,0x7d,0xe2,0xdf,0x1f,0x4a,0xb6,0xbe,0xf9,0x28,0x53,0xf9,0xcd,0xf9,
+ 0xc3,0xbb,0x85,0x85,0x6b,0x97,0x24,0xaf,0x34,0xe4,0x9f,0x32,0x5,0x40,0xa1,0x15,
+ 0x6d,0x54,0xfa,0xb9,0xc3,0xba,0x36,0xfb,0xd9,0x29,0x65,0x2a,0xbf,0x89,0xc3,0x28,
+ 0xee,0x7d,0xfb,0xf1,0x70,0xf4,0xd8,0xd1,0xe4,0xd5,0x86,0x7c,0x53,0xa6,0x0,0x28,
+ 0xb4,0xe2,0x8d,0x4a,0x6f,0x1d,0xee,0xfc,0xc7,0xc3,0xc9,0xd6,0x37,0xf,0x65,0x2a,
+ 0xdf,0x89,0x97,0x93,0xae,0xdd,0xba,0x3e,0x79,0xb5,0x21,0xdf,0x94,0x29,0x0,0xa,
+ 0x6f,0xf8,0x2b,0x93,0xa,0x77,0x76,0x6a,0xf5,0x96,0xb5,0xc9,0xd6,0x37,0x3d,0x65,
+ 0x2a,0xe7,0xa9,0x6e,0x13,0x9e,0xfc,0xe8,0x45,0xf,0xf2,0xa5,0x10,0x94,0x29,0x0,
+ 0xa,0x6f,0xfd,0xf6,0x8d,0x85,0x1a,0x95,0x1e,0x8b,0xe3,0xa0,0x97,0xee,0x48,0xb6,
+ 0xbe,0xe9,0x29,0x53,0xf9,0xcf,0xf9,0xc3,0xbb,0x87,0x8d,0x3b,0x9a,0x7f,0xd8,0x9,
+ 0x34,0x36,0x65,0xa,0x0,0x6a,0x4d,0xf8,0xfb,0x83,0x85,0x3a,0x3b,0xd5,0x6a,0x40,
+ 0xbb,0xf0,0xf5,0xb2,0x39,0xc9,0xd6,0x37,0x2d,0x65,0xaa,0x0,0xa9,0x6e,0x13,0x1e,
+ 0x7d,0xff,0xd9,0xe4,0x15,0x87,0xfc,0x52,0xa6,0x0,0xa0,0xd6,0xd6,0x5d,0xdb,0x42,
+ 0x87,0x71,0x97,0xa6,0x1f,0x18,0xe6,0x34,0x1d,0xc7,0x5d,0x5e,0xbb,0xdd,0xdb,0x93,
+ 0x15,0x68,0x3a,0xca,0x54,0x31,0x72,0xf6,0x90,0x2e,0x61,0xf6,0x8a,0xef,0x93,0x57,
+ 0x1d,0xf2,0x49,0x99,0x2,0x80,0xc4,0x8c,0xc5,0x5f,0x87,0x56,0x3,0xda,0xa7,0x1e,
+ 0x18,0xe6,0x31,0xf1,0x4c,0xdc,0x83,0xef,0x3d,0x95,0x6c,0x7d,0xd3,0x51,0xa6,0x8a,
+ 0x93,0x2e,0xe3,0xfb,0x86,0x75,0xdb,0x36,0x24,0xaf,0x3c,0xe4,0x8f,0x32,0x5,0x0,
+ 0x27,0xe9,0xff,0xfc,0xe8,0x42,0x5d,0xee,0x17,0x9f,0xb,0x14,0xef,0x19,0x6b,0x4a,
+ 0xca,0x54,0x71,0xd2,0xa2,0x5f,0x55,0x78,0xf8,0xfd,0xc9,0xe1,0xb0,0x7,0xf9,0x92,
+ 0x53,0xca,0x14,0x0,0x9c,0x64,0xe9,0xfa,0x1f,0xc2,0x59,0x43,0x3a,0xa7,0x1e,0x18,
+ 0xe6,0x31,0xb1,0x38,0x8e,0x79,0xe3,0xde,0x64,0xeb,0x9b,0x86,0x32,0x55,0xac,0xc4,
+ 0xe9,0x91,0x2b,0x36,0xac,0x4c,0x5e,0x7d,0xc8,0x17,0x65,0xa,0x0,0x7e,0x61,0xcc,
+ 0xeb,0xf7,0x14,0xea,0xec,0xd4,0x99,0x83,0x3b,0x85,0xef,0x7e,0x5c,0x90,0x6c,0x7d,
+ 0xe3,0x53,0xa6,0x8a,0x97,0xb1,0xaf,0xdf,0x1b,0xe,0x1d,0x39,0x94,0xbc,0x3,0x20,
+ 0x3f,0x94,0x29,0x0,0xf8,0x85,0x38,0xd2,0xf9,0xdc,0xe1,0x5d,0x53,0xf,0xa,0xf3,
+ 0x9a,0x4b,0xee,0xbb,0x31,0xec,0xdc,0xbb,0x2b,0x59,0x81,0xc6,0xa5,0x4c,0x15,0x2f,
+ 0x4d,0x5d,0xd8,0xa1,0xa9,0x28,0x53,0x0,0x90,0xe2,0xde,0xb7,0x1f,0x2b,0xd4,0xd9,
+ 0xa9,0x38,0xca,0xfa,0xe9,0x4f,0x5e,0x4a,0xb6,0xbe,0x71,0x29,0x53,0xc5,0xcc,0xc0,
+ 0x17,0xc6,0x86,0x5d,0xfb,0x76,0x27,0xef,0x2,0xc8,0x7,0x65,0xa,0x0,0x52,0x6c,
+ 0xdb,0xbd,0x23,0x74,0x9d,0x74,0x55,0xea,0x41,0x61,0x5e,0xd3,0x7a,0x54,0xaf,0xb0,
+ 0x69,0xe7,0x96,0x64,0x5,0x1a,0x8f,0x32,0x55,0xcc,0x9c,0x3e,0xb0,0x43,0x78,0xeb,
+ 0xab,0xf7,0x92,0x77,0x1,0xe4,0x83,0x32,0x5,0x0,0xbf,0x62,0xd6,0xd2,0xd9,0xe1,
+ 0x8c,0x41,0x1d,0x53,0xf,0xc,0xf3,0x98,0x78,0x26,0xee,0xee,0xb7,0x1f,0x4b,0xb6,
+ 0xbe,0xf1,0x28,0x53,0xc5,0x4d,0xfb,0xb1,0x97,0x94,0xbe,0xa8,0x80,0xbc,0x50,0xa6,
+ 0x0,0xe0,0x37,0xc,0x7b,0x79,0x62,0xa1,0x2e,0xf7,0x3b,0x6f,0x78,0xd7,0xb0,0x66,
+ 0xeb,0xfa,0x64,0xeb,0x1b,0x87,0x32,0x55,0xdc,0xc4,0x51,0xe9,0x2f,0x7c,0xf6,0x5a,
+ 0xf2,0x4e,0x80,0xca,0xa7,0x4c,0x1,0xc0,0x6f,0xf8,0x71,0xd3,0xea,0x70,0xf6,0xd0,
+ 0x2e,0xa9,0x7,0x86,0x79,0x4c,0x2c,0x8e,0xb1,0x40,0x36,0x26,0x65,0xaa,0xd8,0x69,
+ 0x3d,0xb2,0x57,0xd8,0xee,0xec,0x14,0x39,0xa1,0x4c,0x1,0xc0,0xef,0x18,0xf7,0xc6,
+ 0xfd,0x85,0x3a,0x3b,0x15,0xef,0x6d,0x99,0xb5,0x74,0x4e,0xb2,0xf5,0xd,0x4f,0x99,
+ 0x2a,0x78,0xaa,0xdb,0x84,0x29,0xd3,0xde,0x4c,0xde,0xd,0x50,0xd9,0x94,0x29,0x28,
+ 0xb8,0xe3,0xc7,0x8f,0x87,0x63,0x5,0x48,0xdc,0x4e,0xc8,0x6a,0x73,0xcd,0xd6,0xd0,
+ 0x66,0x74,0xef,0xf4,0x3,0xc3,0x9c,0xa6,0xeb,0xc4,0x2b,0x1b,0xed,0xde,0x96,0x16,
+ 0xd5,0x55,0xa9,0xff,0x4d,0x29,0x4e,0xaa,0x6a,0x7f,0x3f,0xf9,0x5c,0x26,0xf,0x94,
+ 0x29,0x28,0xb0,0xbb,0xff,0xfe,0x68,0xe8,0x75,0xe7,0xb5,0xa1,0xed,0xa8,0xde,0x4d,
+ 0x9e,0x36,0x23,0x7a,0x86,0x73,0x87,0x76,0xd,0x67,0xe,0xec,0xd8,0x88,0xe9,0x14,
+ 0xce,0x1e,0xdc,0x39,0xb4,0xae,0xfd,0x6f,0x5d,0xf7,0xd0,0xed,0x61,0xf1,0xda,0x65,
+ 0xc9,0x96,0x43,0xfd,0x7d,0x30,0xfb,0xd3,0xf0,0xc7,0x2,0x95,0x80,0x78,0x26,0xee,
+ 0xa1,0xf7,0x9f,0x4e,0xb6,0xbe,0x61,0x39,0x33,0x25,0xf1,0xde,0xa9,0xc3,0x47,0x8f,
+ 0x24,0xef,0x8,0xa8,0x5c,0xca,0x14,0x14,0x54,0xfc,0x46,0xf0,0xe2,0xbb,0xfe,0x9c,
+ 0xba,0x93,0xcb,0x63,0xe2,0x81,0x61,0xbb,0x31,0x7d,0xc2,0xa2,0x35,0x4b,0x93,0x15,
+ 0x80,0xfa,0xa9,0xd9,0xb7,0x2b,0xf4,0xb8,0xf3,0x9a,0xd4,0xf7,0x57,0x5e,0x73,0xfe,
+ 0x88,0xee,0x61,0xe3,0xce,0xcd,0xc9,0xa,0x34,0x1c,0x65,0x4a,0x62,0x76,0x1d,0xf0,
+ 0xcc,0x29,0x2a,0x9f,0x32,0x5,0x5,0x15,0xcb,0xd4,0x2d,0x8f,0xf,0xaa,0x2d,0x19,
+ 0xe9,0x3b,0xb9,0x5c,0xa6,0xba,0x4d,0xe8,0x73,0xf7,0xf5,0x1e,0x1a,0x49,0x66,0x2f,
+ 0x7d,0xfe,0x66,0xfa,0x7b,0x2b,0xa7,0x89,0x5f,0x42,0x34,0xc6,0xa8,0xf4,0xb6,0xa3,
+ 0x2e,0x4e,0xfd,0xef,0x49,0xb1,0xe2,0xcc,0x14,0x79,0xa0,0x4c,0x41,0x81,0xcd,0x58,
+ 0xf2,0x4d,0xe9,0x52,0x8b,0xb4,0x9d,0x5c,0x5e,0xd3,0xaa,0x7f,0xbb,0xf0,0xc1,0x9c,
+ 0x4f,0x93,0x15,0x80,0xfa,0xd9,0xb0,0x63,0x53,0xf8,0x43,0x81,0x6,0x51,0xc4,0x9c,
+ 0x37,0xbc,0x5b,0x58,0xb3,0x75,0x43,0xb2,0x2,0x8d,0x23,0x7e,0xb9,0x13,0xcf,0x52,
+ 0xd4,0xec,0xdf,0x55,0x88,0x6c,0xdf,0xbb,0x23,0xac,0xdd,0xb6,0x31,0xbc,0x3b,0xe7,
+ 0xe3,0xd0,0xe7,0x9e,0x1b,0x52,0xd7,0x3d,0xef,0x39,0x6b,0x70,0x67,0xf7,0x4c,0x91,
+ 0xb,0xca,0x14,0x14,0x58,0x3c,0x43,0xd3,0x76,0x74,0xf1,0xbe,0x21,0xbe,0x60,0x44,
+ 0x8f,0xb0,0x64,0xdd,0xf2,0x64,0x15,0xa0,0xee,0x8e,0x1d,0x3b,0x16,0xfa,0x3e,0x78,
+ 0x6b,0xea,0xfb,0x2a,0xaf,0x89,0x67,0xa7,0x86,0x4e,0x99,0x90,0xac,0x0,0x8d,0x21,
+ 0x6d,0xdd,0xf3,0x9e,0x2b,0xef,0xbf,0x35,0xd9,0x7a,0xa8,0x6c,0xca,0x14,0x14,0xdc,
+ 0xdf,0xbf,0x7a,0x3f,0xb4,0x28,0xe0,0xfd,0xb,0x83,0x5f,0x1a,0x17,0x76,0xee,0xad,
+ 0x49,0x56,0x1,0xea,0x6e,0xc1,0xea,0xc5,0xa1,0x65,0xff,0x62,0xfd,0x9e,0xf9,0xd3,
+ 0xc0,0xf6,0x61,0xf6,0x8a,0x79,0xc9,0xa,0xd0,0x90,0x6e,0x7b,0x6a,0x78,0xea,0x9a,
+ 0xe7,0x39,0xe7,0xd,0xeb,0xea,0xfe,0x55,0x72,0x43,0x99,0x82,0x82,0xdb,0xb1,0xa7,
+ 0x26,0x74,0x9d,0x70,0x55,0xea,0xe,0x2f,0xcf,0x89,0xcf,0xd1,0x79,0x7f,0xce,0xd4,
+ 0x64,0x15,0xa0,0x7e,0x46,0xbf,0x7e,0x77,0xe9,0x8c,0x4d,0xda,0x7b,0x2b,0xaf,0xe9,
+ 0x3a,0xe9,0xaa,0xda,0xcf,0x8b,0x9d,0xc9,0xa,0xd0,0x10,0x66,0xaf,0xf8,0xbe,0xb6,
+ 0xa8,0x76,0x48,0x5d,0xef,0xdc,0xa6,0xba,0x2a,0x4c,0xfe,0xe4,0xe5,0x64,0x5,0xa0,
+ 0xf2,0x29,0x53,0x40,0x98,0xb1,0xf8,0x9b,0x70,0xc6,0xc0,0x8e,0xe9,0x3b,0xbe,0x1c,
+ 0xe7,0xcf,0x8f,0x56,0x87,0xad,0xbb,0xb6,0x25,0xab,0x0,0x75,0x17,0x27,0xdc,0xb5,
+ 0x1f,0xdb,0x27,0xf5,0x7d,0x95,0xd7,0xc4,0xf2,0xf8,0xd8,0x87,0xcf,0x25,0x2b,0xc0,
+ 0xa9,0x8a,0x97,0x59,0x77,0x9d,0x70,0x45,0xea,0x5a,0xe7,0x39,0xed,0xc7,0xf4,0x69,
+ 0xb4,0xe7,0x97,0x41,0x73,0x50,0xa6,0x80,0xb0,0xe7,0xc0,0xde,0x70,0xf5,0x3,0x7f,
+ 0x2b,0x4d,0xbb,0x4b,0xdb,0xf9,0xe5,0x35,0x2d,0xfb,0xb7,0xb,0xaf,0x7c,0xf1,0xf7,
+ 0x64,0x15,0xa0,0x7e,0x5e,0xfc,0xfc,0xcd,0xc2,0xd,0xa3,0xb8,0x60,0x64,0x8f,0xb0,
+ 0x71,0x47,0xc3,0x8f,0x4a,0x2f,0xa2,0xa9,0xf3,0xa7,0x17,0x72,0x0,0xd0,0xb4,0x85,
+ 0x33,0x93,0x15,0x80,0x7c,0x50,0xa6,0x80,0x92,0x78,0xfd,0xfa,0x85,0x23,0x7a,0xa4,
+ 0xee,0x0,0xf3,0x9c,0x36,0xa3,0x7a,0x97,0x26,0xb4,0x41,0x7d,0xc5,0x4b,0x64,0xbb,
+ 0x4d,0x2a,0xd6,0x25,0xb2,0xf1,0xec,0xd4,0x3d,0x8d,0x30,0x2a,0xbd,0x68,0x56,0x6c,
+ 0x58,0x59,0x3a,0x43,0x93,0xb6,0xc6,0x79,0xce,0xc5,0x77,0x5d,0x1f,0x76,0xef,0xdf,
+ 0x93,0xac,0x2,0xe4,0x83,0x32,0x5,0xfc,0x6c,0xca,0xb4,0xb7,0x42,0x8b,0xea,0x62,
+ 0x7d,0x53,0x1a,0xaf,0xdf,0x7f,0xea,0xa3,0x17,0x93,0x15,0x80,0xfa,0x79,0x73,0xe6,
+ 0x3b,0x85,0xbb,0x77,0xaa,0x34,0x2a,0x7d,0xcb,0xba,0x64,0x5,0xa8,0xaf,0x7d,0x7,
+ 0xf7,0x87,0x5b,0x1f,0x1f,0x5c,0xfa,0xec,0x49,0x5b,0xdf,0xbc,0xe6,0xdc,0xa1,0x5d,
+ 0xc3,0xbc,0x95,0xb,0x93,0x55,0x80,0xfc,0x50,0xa6,0x80,0x9f,0x6d,0xdd,0xb5,0x3d,
+ 0x74,0x18,0x7b,0x69,0xea,0x8e,0x30,0xcf,0xb9,0x60,0x44,0xf7,0xb0,0x6e,0x7b,0xe3,
+ 0x3e,0x47,0x87,0x7c,0x8a,0xdf,0xb2,0x5f,0xf5,0xd0,0x5f,0x6b,0xb,0x55,0xfa,0x7b,
+ 0x2b,0x8f,0x89,0xe5,0x71,0xc8,0x4b,0x46,0xa5,0x67,0x35,0x6b,0xd9,0x9c,0x70,0xc6,
+ 0xa0,0x82,0xdd,0xa3,0x5a,0xdd,0x26,0x3c,0xf1,0xe1,0xb,0xc9,0xa,0x40,0xbe,0x28,
+ 0x53,0xc0,0x7f,0x98,0xb6,0x60,0x66,0xe9,0xba,0xf6,0xd4,0x1d,0x62,0x5e,0x53,0xbb,
+ 0xa3,0x7f,0xf0,0xdd,0xa7,0x92,0x15,0x80,0xfa,0x89,0x97,0xc8,0x9e,0x35,0xa4,0x73,
+ 0xfa,0x7b,0x2b,0xa7,0x69,0x35,0xa0,0x5d,0xf8,0xba,0xb6,0x14,0x50,0x3f,0x35,0xfb,
+ 0x76,0x85,0x6e,0x13,0xae,0x4c,0x5d,0xd3,0x3c,0x27,0x5e,0x42,0xbe,0x69,0xe7,0x96,
+ 0x64,0x15,0x20,0x5f,0x94,0x29,0xe0,0x3f,0xc4,0x9,0x53,0x7d,0xee,0xba,0x3e,0x75,
+ 0x87,0x98,0xe7,0xc4,0xa7,0xf1,0xcf,0x5a,0x36,0x3b,0x59,0x5,0xa8,0x9f,0x7,0xdf,
+ 0x7b,0xaa,0x70,0x97,0xfb,0x75,0x1c,0x77,0x59,0xe9,0x6c,0x36,0x75,0xf7,0xc9,0xbc,
+ 0x69,0xc5,0x7b,0xae,0x5f,0x75,0x9b,0xf0,0xc2,0x67,0xaf,0x25,0x2b,0x0,0xf9,0xa3,
+ 0x4c,0x1,0xff,0x65,0xd6,0xd2,0xd9,0xa5,0x72,0x91,0xba,0x63,0xcc,0x71,0x3a,0xdd,
+ 0x71,0x79,0xd8,0xec,0xdb,0x53,0x32,0x88,0x23,0xf6,0x63,0xb9,0x48,0x7b,0x5f,0xe5,
+ 0x35,0xb1,0x3c,0x3e,0x50,0x5b,0x22,0xa9,0x9b,0x25,0xeb,0x96,0x17,0x72,0xc8,0x4f,
+ 0xeb,0x91,0xbd,0x8c,0x42,0x27,0xd7,0x94,0x29,0xe0,0xbf,0xc4,0x51,0xe9,0xd7,0x3e,
+ 0x74,0x5b,0xe9,0x1b,0xc5,0xb4,0x9d,0x63,0x5e,0x13,0xc7,0x14,0x3f,0x69,0x18,0x5,
+ 0x19,0xbd,0x38,0xed,0x8d,0xc2,0x8d,0x4a,0x3f,0x7f,0x44,0xb7,0xb0,0x7e,0xfb,0xc6,
+ 0x64,0x5,0xf8,0x35,0xf1,0x33,0xf5,0xca,0xfb,0xff,0x52,0xc0,0xcf,0xd4,0xb6,0xe1,
+ 0xa5,0x2f,0xde,0x4c,0x56,0x1,0xf2,0x49,0x99,0x2,0x52,0x2d,0x5e,0xbb,0x2c,0xb4,
+ 0x19,0xd5,0x2b,0x75,0x7,0x99,0xe7,0x5c,0x30,0xbc,0x7b,0x58,0xbb,0x6d,0x7d,0xb2,
+ 0xa,0x50,0x77,0x71,0x54,0x7a,0xd7,0x2,0x8e,0x4a,0xbf,0xe3,0xcd,0xfb,0x92,0x15,
+ 0xe0,0xd7,0x7c,0xb5,0xf4,0xdb,0xe2,0xd,0x9d,0xa8,0x4d,0xd7,0x9,0x57,0xd6,0xfe,
+ 0xbe,0xd8,0x99,0xac,0x2,0xe4,0x93,0x32,0x5,0xfc,0xaa,0xf,0xe7,0x7e,0x16,0x5a,
+ 0x16,0xf0,0xfa,0xfe,0x87,0xdf,0x9b,0x9c,0xac,0x0,0xd4,0x4f,0x69,0x54,0x7a,0x75,
+ 0xb1,0xce,0x4e,0x9d,0x39,0xb8,0x73,0x98,0xb7,0x72,0x41,0xb2,0x2,0xfc,0x52,0x9c,
+ 0xf8,0xd8,0xeb,0xce,0xeb,0x52,0xd7,0x2e,0xcf,0x39,0x7b,0x48,0x97,0xf0,0x9d,0xf7,
+ 0x5,0x5,0xa0,0x4c,0x1,0xbf,0x6a,0xe7,0xde,0x5d,0xa1,0xc7,0xa4,0x6b,0x53,0x77,
+ 0x94,0x79,0x4e,0x7c,0x1e,0xca,0xa2,0xb5,0x4b,0x93,0x55,0x80,0xba,0x8b,0x7,0xce,
+ 0x57,0x3f,0xf2,0xb7,0xc2,0xd,0xa3,0xb8,0xe4,0xbe,0x1b,0x9d,0x81,0xf8,0x15,0xd3,
+ 0x17,0x7f,0x5d,0xc8,0x9,0xa9,0x8f,0x7d,0xf0,0x5c,0xb2,0x2,0x90,0x6f,0xca,0x14,
+ 0xf0,0x9b,0x66,0x2e,0xf9,0x36,0x9c,0x3e,0xb0,0x43,0xfa,0xe,0x33,0xc7,0x19,0xf3,
+ 0xda,0x3d,0xa5,0xfb,0x1c,0xa0,0xbe,0xe2,0x25,0xb2,0xf1,0xc1,0xb6,0x69,0xef,0xab,
+ 0xdc,0xa6,0xf6,0xe0,0xf9,0x89,0xf,0xdd,0x6f,0xf8,0x4b,0x71,0x14,0x7a,0xd7,0xf1,
+ 0x46,0xa1,0x43,0x9e,0x29,0x53,0xc0,0x6f,0x8a,0x85,0xe2,0x8a,0xfb,0x6e,0x49,0xdd,
+ 0x61,0xe6,0x39,0xf1,0xfe,0x86,0x69,0xb,0x67,0x26,0xab,0x0,0xf5,0xf3,0xd8,0x7,
+ 0xcf,0x16,0xee,0xec,0x54,0xeb,0x51,0x3d,0xc3,0x96,0x9a,0x6d,0xc9,0xa,0x10,0xfd,
+ 0x34,0xa,0xbd,0x2a,0x75,0xbd,0x72,0x9b,0xea,0xaa,0xf0,0xc2,0xe7,0xaf,0x27,0x2b,
+ 0x0,0xf9,0xa7,0x4c,0x1,0xbf,0x6b,0xfe,0xaa,0xc5,0xa5,0xc1,0xc,0xa9,0x3b,0xce,
+ 0x1c,0xa7,0xe3,0x1d,0x97,0x19,0x95,0x4e,0x26,0x71,0x14,0x74,0x11,0x87,0x51,0x3c,
+ 0xf8,0xde,0xd3,0xc9,0xa,0x50,0xd4,0x51,0xe8,0x55,0xa3,0x7a,0x7b,0xfe,0x18,0x85,
+ 0xa2,0x4c,0x1,0x75,0xf2,0xfc,0x67,0xaf,0x95,0xbe,0x71,0x4c,0xdb,0x79,0xe6,0x35,
+ 0xf1,0x1b,0xe5,0xa7,0x3f,0x79,0x29,0x59,0x1,0xa8,0x9f,0x38,0x8c,0xa2,0x68,0xa3,
+ 0xd2,0xe3,0xd9,0xa9,0xf5,0xdb,0x8c,0x4a,0x8f,0x67,0xf4,0xfb,0xc6,0x33,0xfa,0x5,
+ 0x1b,0x85,0xde,0xb2,0x7f,0xdb,0xf0,0xea,0x97,0xff,0x4c,0x56,0x1,0x8a,0x41,0x99,
+ 0x2,0xea,0x64,0x73,0xcd,0xd6,0xd0,0x76,0xf4,0xc5,0xa9,0x3b,0xd0,0x3c,0x27,0x7e,
+ 0xb3,0xec,0x39,0x3a,0x64,0x11,0x87,0x51,0x5c,0xf6,0xc0,0x4d,0xa9,0xef,0xab,0xbc,
+ 0x26,0x9e,0x9d,0x1a,0xf7,0xe6,0xfd,0xc9,0xa,0x14,0x57,0x1c,0x3a,0x51,0xc4,0x7b,
+ 0x4d,0xbb,0x4d,0xbc,0xda,0x20,0x12,0xa,0x47,0x99,0x2,0xea,0xec,0xad,0x99,0xef,
+ 0x16,0xf2,0xfa,0xff,0x87,0xdf,0x7f,0x26,0x59,0x1,0xa8,0x9f,0x78,0x50,0x1d,0x1f,
+ 0x5c,0x9a,0xfa,0xde,0xca,0x69,0xce,0x1d,0xde,0x35,0x2c,0x5b,0xb7,0x22,0x59,0x81,
+ 0xe2,0x89,0x25,0xba,0xc7,0xa4,0x6b,0x52,0xd7,0x26,0xcf,0x39,0x77,0xe8,0x45,0x61,
+ 0xc1,0xea,0xc5,0xc9,0x2a,0x40,0x71,0x28,0x53,0x40,0x9d,0xc5,0x6f,0x1c,0x2f,0x1a,
+ 0x7f,0x45,0xea,0x8e,0x34,0xcf,0x39,0x7f,0x58,0xb7,0xb0,0x68,0x8d,0x51,0xe9,0xd4,
+ 0x5f,0x3c,0xb0,0xbe,0xf6,0xd1,0xdb,0xc3,0x69,0x29,0xef,0xab,0xbc,0x26,0x9e,0x9d,
+ 0xba,0xe9,0xc9,0x81,0x85,0x9d,0x86,0x39,0x63,0xf1,0x37,0x85,0x1b,0x85,0x1e,0xbf,
+ 0x64,0x8b,0xcf,0x25,0x84,0x22,0x52,0xa6,0x80,0x7a,0x99,0xbe,0xe8,0xeb,0xd0,0x6a,
+ 0x40,0xf1,0x9e,0x99,0x72,0xe5,0xfd,0xb7,0x86,0xbd,0x7,0xf6,0x25,0xab,0x0,0x75,
+ 0xb7,0xb0,0xb6,0x88,0x9f,0x37,0xac,0x6b,0xfa,0x7b,0x2b,0xa7,0x89,0x7,0xd7,0xff,
+ 0xfa,0xe6,0xc3,0x64,0x5,0x8a,0x63,0xd7,0xbe,0xdd,0xa1,0xeb,0x84,0xe2,0x8d,0x42,
+ 0x8f,0xdb,0x1c,0x9f,0x4b,0x8,0x45,0xa4,0x4c,0x1,0xf5,0x12,0xbf,0x69,0xbf,0xe4,
+ 0x9e,0x1b,0x53,0x77,0xa8,0x79,0x4e,0x1c,0x95,0x3e,0x6b,0xe9,0xec,0x64,0x15,0xa0,
+ 0x7e,0x1e,0x7a,0xef,0xe9,0xc2,0x8d,0x4a,0xef,0x7d,0xf7,0x9f,0xb,0xf7,0x5,0xc4,
+ 0x67,0xf3,0xa7,0x17,0xee,0xb2,0xce,0x78,0x16,0x2e,0x3e,0x8f,0x10,0x8a,0x4a,0x99,
+ 0x2,0xea,0x2d,0x7e,0xd3,0x7e,0xc1,0xf0,0xe2,0x8d,0xfc,0xed,0x36,0xe1,0xca,0xb0,
+ 0x63,0x4f,0x4d,0xb2,0xa,0x50,0x77,0xf1,0x1,0xa6,0x5d,0x27,0x15,0xeb,0x8c,0xc5,
+ 0x69,0xd5,0xad,0xc3,0x6b,0xd3,0xdf,0x4e,0x56,0x20,0xff,0x7e,0xd8,0xb8,0x2a,0x74,
+ 0x1c,0x7b,0x69,0xea,0x5a,0xe4,0x39,0x7d,0xee,0xbe,0xa1,0xf4,0x25,0x1b,0x14,0x95,
+ 0x32,0x5,0x64,0x12,0xaf,0x8f,0x2f,0xda,0x30,0x8a,0x96,0xfd,0x8c,0xfd,0x25,0xbb,
+ 0xbf,0xcf,0x7a,0xaf,0x70,0xa3,0xd2,0x3b,0x8e,0xbb,0x2c,0xac,0xdc,0xb4,0x3a,0x59,
+ 0x81,0xfc,0xda,0x7f,0x70,0x7f,0xf8,0xeb,0x93,0xc3,0x42,0x8b,0x82,0x3d,0x3e,0xe2,
+ 0xac,0xc1,0x9d,0xc3,0xec,0x15,0xf3,0x92,0x55,0x80,0x62,0x52,0xa6,0x80,0x4c,0xe2,
+ 0x19,0x9a,0xce,0xe3,0x2e,0x4f,0xdd,0xc1,0xe6,0x39,0x55,0xa3,0x3d,0x90,0x92,0xec,
+ 0x6e,0x7d,0x66,0x48,0x38,0xed,0xb6,0xe2,0x14,0xaa,0x78,0x69,0xe3,0x90,0x97,0xc6,
+ 0xe5,0xfe,0x72,0xbf,0x6f,0x97,0x7f,0x17,0xce,0x1c,0xd4,0x31,0x75,0xd,0x72,0x9b,
+ 0xea,0x36,0xe1,0xba,0x87,0x6e,0xf,0xfb,0x6a,0x8b,0x24,0x14,0x99,0x32,0x5,0x64,
+ 0xf6,0xe5,0xa2,0x59,0xa5,0x87,0x34,0xa6,0xee,0x68,0xf3,0x9a,0xea,0xaa,0xf0,0xcc,
+ 0xc7,0x53,0x92,0x15,0x80,0xfa,0x59,0xbb,0x75,0x7d,0x38,0xb7,0x60,0xc3,0x28,0xfe,
+ 0x34,0xb0,0x7d,0xf8,0x72,0xe1,0x57,0xc9,0xa,0xe4,0x4f,0x51,0x47,0xa1,0xb7,0x19,
+ 0xd5,0x2b,0x2c,0x5b,0xff,0x43,0xb2,0xa,0x50,0x5c,0xca,0x14,0x90,0x59,0x3c,0x88,
+ 0xe8,0x75,0xe7,0x75,0xa9,0x3b,0xda,0x3c,0xe7,0x9c,0xa1,0x17,0x85,0x79,0x2b,0x17,
+ 0x26,0xab,0x0,0xf5,0xf3,0xd8,0x47,0xcf,0x17,0xee,0x72,0xbf,0x4e,0xe3,0x2f,0x2f,
+ 0xdd,0x37,0x96,0x47,0x71,0x14,0x7a,0xbc,0x4,0x38,0x6d,0xbb,0xf3,0x9a,0xb8,0xbd,
+ 0x9f,0x7e,0xff,0x65,0xb2,0x2,0x50,0x6c,0xca,0x14,0x70,0x4a,0xbe,0xfb,0x71,0x41,
+ 0xa9,0x5c,0xa4,0xed,0x70,0xf3,0x9c,0x1e,0x93,0xae,0x35,0xa,0x98,0x4c,0xe2,0xfb,
+ 0xa6,0xf3,0x84,0xbe,0xa9,0xef,0xab,0xbc,0x26,0x5e,0xee,0x77,0xcf,0xdb,0x8f,0x25,
+ 0x2b,0x90,0x1f,0x35,0xfb,0x76,0x15,0xf2,0xd9,0x7b,0xf1,0x4c,0x5c,0x1c,0x3,0xf,
+ 0x28,0x53,0x40,0x3,0xe8,0x3f,0x79,0x74,0xe1,0x6e,0xbc,0x8e,0xe3,0x80,0xdf,0x98,
+ 0xf9,0xaf,0x64,0x5,0xa0,0x7e,0xa6,0x4c,0x7b,0xb3,0x70,0x67,0xa7,0xce,0x1f,0xde,
+ 0x2d,0x2c,0x5e,0xbb,0x3c,0x59,0x81,0x7c,0xf8,0x64,0xde,0xb4,0xc2,0xd,0xe2,0x89,
+ 0xf7,0x86,0xc5,0x7b,0xc4,0x80,0x9f,0x28,0x53,0xc0,0x29,0x5b,0xbf,0x7d,0x63,0xe8,
+ 0x78,0xc7,0x65,0xa9,0x3b,0xde,0x3c,0xa7,0xfd,0x98,0x3e,0x61,0xdb,0xee,0x1d,0xc9,
+ 0x2a,0x40,0xdd,0xc5,0xf7,0x4d,0xef,0x7b,0xae,0x4f,0x7d,0x5f,0xe5,0x35,0xf1,0xec,
+ 0xd4,0x88,0x57,0xee,0xc,0x7,0xe,0x1f,0x4c,0x56,0xa1,0xb2,0x2d,0x59,0xb7,0x22,
+ 0xb4,0x1e,0xd9,0x33,0x75,0x5b,0xf3,0x9a,0xf8,0xa5,0x59,0x9c,0x5a,0x18,0xa7,0x17,
+ 0x2,0x3f,0x51,0xa6,0x80,0x6,0xf1,0xf9,0x82,0x19,0x85,0xbb,0x6f,0x20,0x7e,0x23,
+ 0xfd,0xf2,0x17,0x6f,0x25,0x2b,0x0,0xf5,0xf3,0xfe,0x9c,0x4f,0xc2,0x69,0xd5,0xe9,
+ 0xef,0xad,0xbc,0x26,0x5e,0x12,0xfc,0xd5,0x92,0xca,0x7f,0xf8,0x75,0x9c,0x4e,0x78,
+ 0xc5,0xfd,0xb7,0x96,0x26,0xda,0xa5,0x6d,0x67,0x5e,0x13,0x9f,0xa3,0x15,0x9f,0xa7,
+ 0x5,0xfc,0x3f,0xca,0x14,0xd0,0x20,0xe2,0xbd,0x3,0x5d,0x27,0x5c,0x95,0xba,0x3,
+ 0xce,0x73,0x5a,0x8f,0xec,0x15,0xb6,0xee,0xda,0x96,0xac,0x2,0xd4,0xdd,0xfe,0x43,
+ 0x7,0xc2,0x2d,0x4f,0xf,0x29,0x9d,0xb1,0x49,0x7b,0x6f,0xe5,0x31,0x71,0x5b,0xaf,
+ 0x7b,0xe4,0xf6,0x8a,0x7f,0xc8,0xeb,0xac,0xa5,0xb3,0xc3,0xe9,0x3,0x3b,0xa4,0x6e,
+ 0x63,0x5e,0xd3,0xa2,0x5f,0xdb,0xf0,0xd9,0xfc,0xe9,0xc9,0xa,0x0,0x27,0x28,0x53,
+ 0x40,0x83,0x99,0xbe,0xf8,0xeb,0xf0,0xa7,0x1,0xed,0x53,0x77,0xc4,0xb9,0x4d,0x75,
+ 0x9b,0x30,0xf9,0xd3,0x57,0x92,0x15,0x80,0xfa,0x59,0xbd,0x65,0x5d,0x68,0x33,0xba,
+ 0x77,0xfa,0x7b,0x2b,0xa7,0x89,0x67,0xb0,0x3f,0xf9,0x6e,0x5a,0xb2,0x2,0x95,0x27,
+ 0x7e,0x71,0xd4,0x6d,0x62,0xf1,0xbe,0x38,0x8a,0x83,0x36,0xc,0x9d,0x80,0xff,0xa6,
+ 0x4c,0x1,0xd,0x26,0x7e,0xdb,0x7c,0xf1,0xdd,0xc5,0xba,0xf,0x24,0xe6,0xbc,0x61,
+ 0xdd,0xc2,0xc2,0x35,0x4b,0x93,0x55,0x80,0xfa,0x79,0xf1,0xf3,0x37,0xb,0x75,0x76,
+ 0x2a,0xa6,0xc3,0x1d,0x97,0x86,0xed,0x15,0x7a,0xbf,0xe1,0xa7,0xf3,0xbe,0x28,0xe4,
+ 0x28,0xf4,0xf8,0x65,0x19,0xf0,0xdf,0x94,0x29,0xa0,0x41,0xcd,0x5a,0x36,0x27,0x9c,
+ 0x39,0xa8,0x53,0xea,0xe,0x39,0xcf,0xb9,0xf4,0xde,0x1b,0xc3,0x9e,0x3,0x7b,0x93,
+ 0x55,0x80,0xba,0x8b,0xa3,0xd2,0x7b,0xde,0x55,0xac,0x87,0xbe,0xc6,0xf2,0xf8,0xd0,
+ 0x7b,0x4f,0x27,0x2b,0x50,0x39,0xe2,0x43,0x6a,0xe3,0xc3,0x6a,0xd3,0xb6,0x29,0xcf,
+ 0xe9,0x3e,0xf1,0xea,0x8a,0xbf,0x34,0x13,0x1a,0x8b,0x32,0x5,0x34,0xa8,0x58,0x28,
+ 0xae,0x7a,0xe0,0x2f,0x85,0xbb,0x31,0x3b,0x5e,0xde,0x18,0x1f,0xde,0x9,0x59,0xfc,
+ 0xf3,0xeb,0xf,0xa,0x37,0x2a,0xfd,0xc2,0x91,0x3d,0x4a,0x93,0x40,0x2b,0x45,0x9c,
+ 0x60,0x77,0xdd,0x43,0xb7,0x17,0xf2,0xb3,0x2d,0xde,0x23,0x6,0xa4,0x53,0xa6,0x80,
+ 0x6,0xb7,0x78,0xed,0xb2,0x70,0xe1,0x88,0x1e,0xa9,0x3b,0xe6,0x3c,0xa7,0xe3,0x1d,
+ 0x97,0x86,0x1d,0x7b,0x76,0x26,0xab,0x0,0x75,0x17,0xbf,0x84,0xb8,0xf6,0xd1,0xdb,
+ 0xb,0x37,0x8c,0x62,0xd4,0xab,0x77,0x85,0x43,0x47,0xe,0x27,0xab,0x50,0xde,0x66,
+ 0xaf,0xf8,0x3e,0x9c,0x35,0xb8,0x73,0xea,0xb6,0xe4,0x36,0xb5,0xc5,0xf1,0xf2,0x7b,
+ 0x6f,0x2e,0x4d,0x2f,0x4,0xd2,0x29,0x53,0x40,0xa3,0xf8,0xe8,0xbb,0xcf,0x4b,0xd3,
+ 0x9f,0x52,0x77,0xd0,0x39,0x4d,0x7c,0x6,0xcb,0xab,0x5f,0xfe,0x23,0x59,0x1,0xa8,
+ 0x9f,0xe5,0x1b,0x7e,0xc,0x2d,0x7,0xb4,0x4b,0x7d,0x6f,0xe5,0x35,0xf1,0x92,0xb9,
+ 0xb5,0x5b,0xd6,0x27,0x2b,0x50,0xbe,0x62,0xd9,0xbd,0xf4,0x9e,0x1b,0x53,0xb7,0x21,
+ 0xcf,0x39,0x7f,0x78,0xf7,0xb0,0xc8,0xfd,0xa0,0xf0,0x9b,0x94,0x29,0xa0,0x51,0xc4,
+ 0xfb,0x40,0xba,0x4d,0xbc,0x3a,0x75,0x7,0x9d,0xe7,0xb4,0x19,0xd9,0x2b,0x6c,0xa9,
+ 0x31,0x2a,0x9d,0x6c,0x26,0xfc,0xe3,0xa1,0x42,0x5d,0xee,0x17,0xcf,0x4e,0x3d,0xfe,
+ 0xef,0xe7,0x93,0xad,0x2f,0x5f,0x5f,0x2d,0xfd,0xb6,0x80,0x93,0x4a,0xab,0xc2,0x4b,
+ 0x9f,0xbf,0x99,0xac,0x0,0xf0,0x6b,0x94,0x29,0xa0,0xd1,0xcc,0xf9,0xe1,0xfb,0x70,
+ 0xe6,0xe0,0x82,0xd,0xa3,0xa8,0x6e,0x13,0x9e,0xfc,0xe8,0xa5,0x64,0x5,0xa0,0x7e,
+ 0xe2,0xd8,0xed,0xa2,0x8d,0x4a,0xef,0x70,0xc7,0x25,0x61,0xd7,0xbe,0xf2,0x1d,0x6e,
+ 0x50,0xd4,0x51,0xe8,0xed,0xc7,0x5e,0x12,0xb6,0x55,0xe8,0xc4,0x45,0x68,0x4a,0xca,
+ 0x14,0xd0,0xa8,0xfa,0x3f,0x33,0xaa,0x74,0xf9,0x5b,0xda,0xce,0x3a,0xaf,0x39,0x67,
+ 0xe8,0x45,0x61,0xde,0xca,0x85,0xc9,0xa,0x40,0xfd,0x3c,0x3b,0xf5,0xd5,0x70,0xda,
+ 0x6d,0x5,0x1a,0x46,0x51,0xdd,0x26,0x7c,0x3c,0xef,0x8b,0x64,0xeb,0xcb,0x4f,0x11,
+ 0x47,0xa1,0xb7,0xea,0xdf,0x2e,0x7c,0xb9,0x68,0x56,0xb2,0x2,0xc0,0x6f,0x51,0xa6,
+ 0x80,0x46,0x15,0xa7,0x75,0x75,0x18,0x7b,0x69,0xea,0xe,0x3b,0xcf,0x89,0xa3,0x84,
+ 0xe3,0xa5,0x8e,0x50,0x5f,0xf1,0x4c,0xc8,0x85,0xa3,0x7a,0xa6,0xbe,0xaf,0xf2,0x9a,
+ 0xeb,0x1e,0xb9,0xbd,0x2c,0x47,0x6f,0x2f,0x5d,0xbf,0xa2,0x74,0xe9,0x6e,0xda,0xcf,
+ 0x9c,0xe7,0x5c,0x7c,0xd7,0x9f,0x8d,0x42,0x87,0x3a,0x52,0xa6,0x80,0x46,0xf7,0xd9,
+ 0xfc,0xe9,0xa1,0x45,0xbf,0x62,0x9d,0x9d,0x8a,0xdf,0x64,0xbf,0xfa,0xe5,0x3f,0x93,
+ 0x15,0x80,0xfa,0x79,0xf8,0xfd,0x67,0xa,0x35,0xd9,0xaf,0x65,0xff,0xb6,0x65,0xf7,
+ 0x68,0x81,0x38,0xc1,0xee,0xaa,0x7,0xfe,0x5a,0xb8,0x51,0xe8,0xe7,0xc,0xe9,0x52,
+ 0x9a,0x5c,0x8,0xd4,0x8d,0x32,0x5,0x34,0xba,0xf8,0x4d,0x7b,0xe7,0x71,0x97,0xa7,
+ 0xee,0xb8,0xf3,0x9c,0xaa,0xd1,0xbd,0xc3,0xd6,0x5d,0xdb,0x93,0x55,0x80,0xba,0xdb,
+ 0xb4,0x73,0x4b,0xa8,0x1a,0x73,0x71,0xea,0xfb,0x2a,0xaf,0xe9,0x36,0xe9,0xea,0xb2,
+ 0xba,0x47,0x27,0xe,0x9d,0x38,0x63,0x60,0xc7,0xd4,0x9f,0x35,0xaf,0x89,0x97,0x64,
+ 0xdf,0xf6,0xd4,0xf0,0xd2,0x33,0xb5,0x80,0xba,0x51,0xa6,0x80,0x26,0xf1,0xc5,0xc2,
+ 0xaf,0xa,0x77,0xdf,0x41,0x9c,0x86,0x35,0xf9,0x93,0x29,0xc9,0xa,0x40,0xfd,0x3c,
+ 0xff,0xd9,0x6b,0xe1,0xb4,0x2,0x9d,0x15,0x89,0x67,0xe2,0xca,0x65,0x78,0xcb,0x8e,
+ 0x3d,0x35,0xa1,0xcb,0xf8,0xbe,0xa9,0x3f,0x67,0x9e,0xd3,0x71,0xec,0xa5,0xe1,0xc7,
+ 0x4d,0xab,0x93,0x55,0x0,0xea,0x42,0x99,0x2,0x9a,0xc4,0xae,0x7d,0xbb,0x43,0xd7,
+ 0xf1,0x57,0xa6,0xee,0xc0,0xf3,0x9c,0x73,0x87,0x75,0xd,0xb,0x56,0x2f,0x4e,0x56,
+ 0x1,0xea,0x2e,0xde,0xb3,0x72,0xe5,0x43,0x7f,0x2d,0xd4,0xe5,0x7e,0xf1,0xb9,0x53,
+ 0xf1,0xac,0x5c,0x73,0x7b,0x63,0xe6,0x3b,0x85,0xbc,0x34,0xf9,0xf3,0x5,0x33,0x92,
+ 0x15,0x0,0xea,0x4a,0x99,0x2,0x9a,0xcc,0xf4,0xc5,0x5f,0x97,0xa6,0x44,0xa5,0xed,
+ 0xc8,0xf3,0x9c,0xde,0x77,0x5d,0x57,0xba,0xd4,0x11,0xea,0xeb,0x87,0x8d,0xab,0xc2,
+ 0xd9,0x43,0xbb,0xa4,0xbe,0xaf,0xf2,0x98,0x58,0x1c,0x1f,0x7c,0xef,0xe9,0x64,0xeb,
+ 0x9b,0x47,0xbc,0x34,0xb7,0x6a,0x54,0xb1,0xc6,0xd3,0xc7,0xc4,0xa1,0x39,0xf1,0x4b,
+ 0x2f,0xa0,0x7e,0x94,0x29,0xa0,0xc9,0xc4,0x6f,0xda,0xfb,0xdc,0x7d,0x43,0xea,0x8e,
+ 0x3c,0xcf,0x89,0xf,0xfb,0x7c,0x7d,0xc6,0x3b,0xc9,0x2a,0x40,0xfd,0xdc,0xf7,0xaf,
+ 0x27,0xc3,0x1f,0xa,0x34,0x2a,0xfd,0x82,0x91,0x3d,0xc2,0xba,0x6d,0x1b,0x92,0xad,
+ 0x6f,0x7a,0xcf,0x4f,0x7d,0xad,0x74,0x89,0x6e,0xda,0xcf,0x96,0xd7,0xc4,0xcf,0xa8,
+ 0x59,0x4b,0x67,0x27,0x2b,0x0,0xd4,0x87,0x32,0x5,0x34,0xa9,0xf9,0xab,0x16,0x97,
+ 0x2e,0x7d,0x4b,0xdb,0xa1,0xe7,0x39,0x71,0x3c,0xbc,0x7,0x60,0x92,0xc5,0xf6,0xda,
+ 0xf7,0x4d,0x69,0x18,0xc5,0x6d,0xe9,0xef,0xad,0xbc,0x25,0x9e,0x9d,0x1a,0xfb,0xc6,
+ 0xbd,0xc9,0xd6,0x37,0xad,0x45,0x6b,0x96,0x86,0xf3,0x87,0x77,0x4f,0xfd,0xb9,0xf2,
+ 0x9c,0x4b,0xef,0xb9,0x31,0xec,0x39,0xb0,0x37,0x59,0x5,0xa0,0x3e,0x94,0x29,0xa0,
+ 0xc9,0x4d,0xfe,0xf4,0xe5,0xc2,0x8d,0x1b,0x8e,0xf7,0x5f,0x4c,0x99,0xf6,0x56,0xb2,
+ 0x2,0x50,0x3f,0xcf,0x7d,0xf6,0x5a,0xf8,0x43,0x81,0xee,0x9d,0x3a,0x7d,0x60,0x87,
+ 0x30,0xe7,0x87,0xa6,0x1d,0xcf,0x1d,0x47,0xa1,0x5f,0x7e,0xef,0xcd,0x85,0xfb,0x6c,
+ 0x3a,0x6b,0x70,0x67,0xa3,0xd0,0xe1,0x14,0x28,0x53,0x40,0x93,0xdb,0xba,0x6b,0x5b,
+ 0x68,0x3b,0xba,0x58,0x63,0x9f,0x63,0x5a,0x8f,0xec,0x15,0x36,0xd7,0x6c,0x4d,0x56,
+ 0x1,0xea,0x2e,0x5e,0x22,0xdb,0xe3,0xae,0x6b,0x52,0xdf,0x57,0x79,0x4d,0xf7,0x3b,
+ 0x9b,0x76,0x54,0x7a,0xbc,0xcc,0x2d,0x5e,0xee,0x96,0xf6,0xb3,0xe4,0x36,0xb5,0xc5,
+ 0xf1,0x9a,0x87,0x6e,0xb,0xfb,0x8c,0x42,0x87,0xcc,0x94,0x29,0xa0,0x59,0x4c,0x5b,
+ 0x30,0xb3,0x78,0xc3,0x28,0x6a,0xf,0x5c,0x9e,0xf8,0xf0,0xc5,0x64,0x5,0xa0,0x7e,
+ 0xbe,0x5f,0xb5,0xa8,0x50,0x7,0xfb,0xf1,0x72,0xbf,0x27,0x3e,0x7c,0x3e,0xd9,0xfa,
+ 0xc6,0x15,0xcb,0x6a,0x1c,0xc0,0x90,0xf6,0x73,0xe4,0x39,0x17,0x8c,0xe8,0x1e,0x96,
+ 0xac,0x5b,0x91,0xac,0x2,0x90,0x85,0x32,0x5,0x34,0x8b,0x38,0x35,0xaa,0xcf,0x3d,
+ 0xc5,0x1b,0x46,0x71,0xce,0xd0,0x8b,0x4a,0x7,0xc5,0x90,0xc5,0xb0,0x97,0x27,0x14,
+ 0x6a,0x54,0x7a,0xeb,0x51,0x3d,0xc3,0x86,0xed,0x9b,0x92,0xad,0x6f,0x3c,0x71,0xd2,
+ 0x68,0xd1,0x9e,0x83,0x17,0x1f,0xd0,0xfb,0x92,0x4b,0x8f,0xe1,0x94,0x29,0x53,0x40,
+ 0xb3,0x59,0xbc,0x76,0x59,0xb8,0xa0,0x80,0x37,0x7b,0xf7,0x9c,0x74,0x6d,0xd8,0xb9,
+ 0xd7,0xa8,0x74,0xea,0x6f,0xd5,0x96,0xb5,0xe1,0xbc,0xe1,0xdd,0x52,0xdf,0x57,0x79,
+ 0x4c,0x2c,0x8e,0x13,0xde,0x7a,0x30,0xd9,0xfa,0xc6,0x11,0x1f,0x5b,0x70,0xd1,0xf8,
+ 0x2b,0x52,0xff,0xfb,0x79,0x4e,0xa7,0x3b,0x2e,0x2b,0xd,0x37,0x1,0x4e,0x8d,0x32,
+ 0x5,0x34,0xab,0x8f,0xbf,0x9b,0x56,0xb8,0x87,0x63,0xc6,0xcb,0x1b,0xdf,0x98,0xf9,
+ 0xaf,0x64,0x5,0xa0,0x7e,0xee,0x7f,0xf7,0xc9,0x42,0x9d,0x9d,0x3a,0x73,0x70,0xa7,
+ 0x30,0xf7,0xc7,0xf9,0xc9,0xd6,0x37,0xbc,0x4f,0xe6,0x15,0xef,0x33,0x28,0x5e,0x2e,
+ 0x3a,0x63,0xf1,0x37,0xc9,0xa,0x0,0xa7,0x42,0x99,0x2,0x9a,0x55,0x51,0xbf,0x15,
+ 0x6e,0x3f,0xf6,0x12,0xdf,0xa,0x93,0xc9,0xc6,0x1d,0x9b,0x43,0x9b,0xd1,0xbd,0x52,
+ 0xdf,0x57,0x79,0x4d,0x8f,0xbb,0xae,0x2d,0x3d,0x4c,0xb7,0xa1,0x2d,0x59,0xb7,0x3c,
+ 0xb4,0x1e,0xd9,0x33,0xf5,0xbf,0x99,0xdb,0x54,0xb7,0x9,0x7d,0xef,0xbb,0xc5,0x28,
+ 0x74,0x68,0x20,0xca,0x14,0xd0,0xec,0x66,0x2e,0xf9,0x36,0xb4,0xec,0x5f,0xb0,0xfb,
+ 0x15,0xfa,0x55,0x85,0x57,0xbf,0xfc,0x47,0xb2,0x2,0x50,0x3f,0x93,0x3f,0x79,0xa5,
+ 0x50,0x67,0xa7,0xe2,0xb6,0x3e,0xf4,0xfe,0x33,0xc9,0xd6,0x37,0x8c,0x58,0x26,0x8a,
+ 0x38,0xa,0x3d,0x96,0xc7,0x58,0x22,0x81,0x86,0xa1,0x4c,0x1,0xcd,0x2e,0x1e,0xd4,
+ 0xf4,0xbc,0xf3,0xda,0xd4,0x1d,0x7f,0x9e,0xd3,0x66,0x64,0xaf,0xb0,0xa5,0x66,0x5b,
+ 0xb2,0xa,0x50,0x77,0xf1,0x9e,0xbb,0xbe,0xf,0xde,0x52,0xa8,0x42,0x15,0x87,0xb7,
+ 0x34,0x64,0x9,0x88,0x43,0x27,0x8a,0x36,0xa,0x3d,0x7e,0x89,0x13,0x2f,0x6b,0x4,
+ 0x1a,0x8e,0x32,0x5,0x94,0x85,0xef,0x56,0x2e,0x8,0x67,0xd,0xe9,0x9c,0x7a,0x0,
+ 0x90,0xdb,0x54,0xb7,0x9,0x4f,0x7e,0xf4,0x52,0xb2,0x2,0x50,0x3f,0x71,0xa4,0xf5,
+ 0xd9,0x43,0xbb,0xa4,0xbf,0xb7,0x72,0x98,0x58,0x1c,0x6f,0x79,0x6a,0x70,0x69,0x8c,
+ 0xf9,0xa9,0x8a,0x97,0xd8,0x76,0xbc,0xe3,0xb2,0xd4,0xff,0x4e,0x9e,0x13,0x2f,0xa9,
+ 0x8e,0x97,0x56,0x3,0xd,0x47,0x99,0x2,0xca,0x46,0xff,0xc9,0xa3,0x4b,0xe3,0x7a,
+ 0xd3,0xe,0x2,0xf2,0x9a,0xf8,0x6d,0xfb,0xbc,0x95,0xb,0x93,0x15,0x80,0xfa,0x89,
+ 0x97,0xbe,0xfd,0xe1,0xb6,0xe2,0x9c,0x9d,0x8a,0x97,0x3,0x7f,0x34,0xf7,0xb3,0x64,
+ 0xeb,0xb3,0x8b,0x23,0xc1,0x8b,0xf6,0x59,0x13,0x47,0xbf,0xc7,0xb3,0x71,0x40,0xc3,
+ 0x52,0xa6,0x80,0xb2,0xb1,0x7e,0xfb,0xc6,0x42,0x7e,0x5b,0x1c,0x1f,0x16,0x6a,0x54,
+ 0x3a,0x59,0xec,0xd8,0x53,0x13,0xaa,0xc6,0xf4,0x4e,0x7d,0x5f,0xe5,0x35,0x6d,0xc7,
+ 0xf4,0x9,0x2b,0x37,0xad,0x4e,0x56,0xa0,0xfe,0xe2,0xa5,0x82,0xf1,0x61,0xb5,0x69,
+ 0xbf,0x76,0x9e,0x13,0x3f,0x67,0x1a,0xe2,0xac,0x1e,0xf0,0x9f,0x94,0x29,0xa0,0xac,
+ 0x4c,0x5b,0x30,0xb3,0x70,0x63,0x8a,0xe3,0x37,0xc6,0xaf,0x7e,0xf9,0xcf,0x64,0x5,
+ 0xa0,0x7e,0x9e,0xf9,0xf4,0xe5,0xc2,0xd,0xa3,0x18,0x3a,0x65,0x7c,0x38,0x78,0xf8,
+ 0x50,0xb2,0x2,0x75,0xb7,0xef,0xe0,0xfe,0x70,0xcd,0x83,0x7f,0x2b,0xdc,0xd0,0x89,
+ 0x78,0x6f,0xd8,0xac,0xa5,0xb3,0x93,0x55,0x0,0x1a,0x92,0x32,0x5,0x65,0xe4,0xc8,
+ 0xd1,0xa3,0x61,0xcf,0xfe,0x62,0x8f,0xab,0xdd,0xb5,0x6f,0x77,0x21,0x47,0xa5,0x57,
+ 0x8d,0xee,0x1d,0xb6,0x19,0x95,0x4e,0x6,0xf1,0x1e,0x98,0xce,0xe3,0xfb,0xa6,0xbe,
+ 0xaf,0xf2,0x9a,0x33,0x6,0x75,0xc,0x73,0x7e,0xa8,0xff,0xb3,0xa7,0x66,0xaf,0x98,
+ 0x17,0xce,0x1a,0x5c,0xbc,0x7b,0x33,0xe3,0xd4,0xc2,0xbd,0x7,0xf6,0x25,0xab,0x0,
+ 0x34,0x24,0x65,0xa,0xca,0x44,0xdc,0xd1,0xbd,0xfa,0xe5,0xdb,0xe1,0xe6,0x47,0x7,
+ 0x86,0xc5,0xeb,0x97,0x25,0x7f,0xb5,0x98,0x4a,0xa3,0xd2,0xfb,0x15,0x6b,0x54,0xfa,
+ 0x1f,0xab,0xab,0xc2,0xf3,0x53,0x5f,0x4d,0x56,0x0,0xea,0x27,0x9e,0x75,0xf8,0x63,
+ 0xc1,0xce,0xe8,0xde,0x36,0x79,0x78,0xbd,0xce,0x4e,0xc5,0x4b,0xdc,0xfa,0xdc,0x7d,
+ 0x43,0xea,0xaf,0x95,0xe7,0x9c,0x3f,0xbc,0x7b,0x58,0xb4,0x66,0x69,0xb2,0xa,0x40,
+ 0x43,0x53,0xa6,0xa0,0xc,0x1c,0xaa,0x3d,0x20,0x78,0x69,0xda,0x9b,0xe1,0xec,0x21,
+ 0x9d,0x4b,0x37,0x93,0x5f,0x38,0xa2,0x7b,0x98,0xb5,0x6c,0x6e,0xf2,0x77,0x8b,0x27,
+ 0x1e,0xf4,0xc4,0xeb,0xfb,0xd3,0xe,0xc,0xf2,0x9c,0x78,0xd0,0xb3,0x72,0xf3,0x9a,
+ 0x64,0x15,0xa0,0x7e,0xaa,0x9f,0x1b,0x59,0xa8,0xcb,0xfd,0xe2,0xd9,0xa9,0xfa,0x8c,
+ 0x4a,0x8f,0x5f,0xd2,0xb4,0xea,0xdf,0x2e,0xf5,0xd7,0xca,0x6d,0x4a,0x5f,0xd2,0xbc,
+ 0x96,0xac,0x0,0xd0,0x18,0x94,0x29,0x28,0x3,0xdf,0x2c,0xfb,0x2e,0xb4,0x1f,0x7b,
+ 0xc9,0xcf,0x3b,0xc0,0x78,0x40,0xd4,0xf7,0x81,0x5b,0xc3,0xc6,0x1d,0x9b,0x93,0x7f,
+ 0xa2,0x78,0xe2,0x37,0xed,0x45,0x7b,0x6,0x4c,0xbc,0x1c,0x67,0xec,0xeb,0xf7,0x96,
+ 0xee,0xeb,0x80,0xfa,0x8a,0x45,0xfc,0x9c,0x61,0x17,0xa5,0xbf,0xb7,0x72,0x98,0xd3,
+ 0x6a,0x33,0x6c,0xca,0xc4,0x3a,0x9d,0x9d,0x8a,0x97,0x42,0x76,0x9d,0x70,0x65,0xea,
+ 0xaf,0x93,0xe7,0x54,0x8d,0xea,0x1d,0xb6,0xee,0xda,0x9e,0xac,0x2,0xd0,0x18,0x94,
+ 0x29,0x68,0x66,0x35,0x7b,0x77,0x85,0xc1,0x2f,0xde,0xf1,0xdf,0x63,0x7a,0x6b,0xf,
+ 0xac,0x1f,0xfd,0xe0,0xd9,0x70,0xe8,0x48,0xfd,0x6f,0xb2,0xce,0x83,0xf8,0x20,0xdf,
+ 0xcb,0xee,0xbd,0xe9,0x3f,0xd7,0xa4,0x0,0x89,0xdf,0xb6,0xbf,0x37,0xe7,0xe3,0x64,
+ 0x15,0xa0,0x7e,0x1e,0x7c,0xef,0xe9,0x42,0x8d,0x4a,0x3f,0x7b,0x48,0x97,0xb0,0x60,
+ 0xf5,0xe2,0x64,0xeb,0x7f,0x5d,0x7c,0x50,0x6d,0xd1,0x6,0xdb,0xc4,0xed,0x7d,0x73,
+ 0xe6,0xbf,0x92,0x15,0x0,0x1a,0x8b,0x32,0x5,0xcd,0xec,0x9b,0x65,0x73,0xc3,0xb9,
+ 0x43,0xd3,0xbf,0x4d,0xbe,0x60,0x44,0x8f,0x42,0x5f,0xeb,0xbe,0x60,0xf5,0x92,0x70,
+ 0xde,0xb0,0x6e,0xa9,0x6b,0x93,0xe7,0x74,0x1e,0x77,0x79,0xd8,0xb1,0x67,0x67,0xb2,
+ 0xa,0x50,0x77,0x5b,0x77,0x6d,0xb,0x6d,0x46,0x17,0x67,0x54,0x7a,0x3c,0x3b,0x75,
+ 0xeb,0xd3,0x43,0x7f,0x73,0xe4,0x77,0xbc,0x14,0xb0,0xf5,0xc8,0x9e,0xa9,0xff,0x7e,
+ 0x9e,0xd3,0x6d,0xc2,0x55,0x1e,0xb9,0x0,0x4d,0x40,0x99,0x82,0x66,0x14,0x27,0xd7,
+ 0x5d,0xf7,0xc8,0xed,0xa9,0x3b,0xc2,0x98,0x78,0xa0,0x70,0xdb,0xb3,0x23,0xb,0x3d,
+ 0x85,0xe9,0xb9,0xa9,0xaf,0x96,0xce,0xd2,0xa5,0xad,0x4f,0x5e,0xd3,0xa2,0x5f,0xdb,
+ 0x30,0x65,0xda,0x9b,0xc9,0xa,0x40,0xfd,0x3c,0xf1,0xe1,0xf3,0x85,0xba,0x77,0xaa,
+ 0xd5,0x80,0x76,0xe1,0x9d,0x6f,0xff,0x9d,0x6c,0xfd,0x7f,0x8a,0x9f,0x9d,0x7d,0xef,
+ 0xbb,0xa5,0x70,0x9f,0x21,0xe7,0xc,0xf1,0x30,0x70,0x68,0x2a,0xca,0x14,0x34,0xa3,
+ 0x77,0xbf,0xfd,0xa4,0x74,0xe0,0x9c,0xb6,0x33,0x3c,0x91,0x56,0x3,0xda,0x87,0x8f,
+ 0xbf,0xff,0x22,0xf9,0x37,0x8a,0x27,0x5e,0xef,0xdf,0x66,0x64,0xaf,0xd4,0xb5,0xc9,
+ 0x73,0xe2,0x37,0xe9,0x9b,0x6b,0xb6,0x26,0xab,0x0,0x75,0xb7,0xa5,0x66,0x5b,0xe8,
+ 0x70,0xc7,0xa5,0xa9,0xef,0xab,0xbc,0xa6,0xeb,0xc4,0x2b,0x53,0x1f,0x2d,0x10,0xef,
+ 0xbd,0x3c,0x7d,0x40,0x87,0xd4,0x7f,0x27,0xb7,0xa9,0xae,0xa,0x4f,0x7d,0x3c,0x25,
+ 0x59,0x1,0xa0,0xb1,0x29,0x53,0xd0,0x4c,0x62,0x49,0xe8,0x79,0xd7,0xb5,0xe9,0x3b,
+ 0xc3,0x5f,0xe4,0xca,0x87,0xfe,0x52,0xe8,0xcb,0x35,0x5e,0x9d,0xfe,0x76,0xe1,0xee,
+ 0x77,0x88,0xdf,0xa4,0x3f,0xf0,0xee,0x93,0xc9,0xa,0x40,0xfd,0x4c,0x99,0xf6,0x56,
+ 0x38,0xad,0x40,0x67,0x63,0xe2,0x99,0xb8,0xa7,0x7f,0x51,0x20,0xe2,0x99,0xff,0x22,
+ 0x4e,0x5,0x6d,0x37,0xa6,0x4f,0xe9,0x72,0x4f,0xa0,0x69,0x28,0x53,0xd0,0xc,0xe2,
+ 0x28,0xf4,0x17,0x3e,0x7b,0xfd,0xbf,0x87,0x4e,0xfc,0x5a,0x6a,0x8b,0xc4,0x5b,0x5f,
+ 0xbd,0x9b,0xfc,0xdb,0xc5,0x13,0xef,0x1f,0x8a,0xf7,0x11,0xa5,0xae,0x4d,0x8e,0x73,
+ 0xf6,0xd0,0x2e,0x61,0xe9,0xfa,0x15,0xc9,0x2a,0x40,0xdd,0xc5,0x22,0xd1,0xf7,0xc1,
+ 0x5b,0xa,0x75,0xb9,0x5f,0xeb,0x51,0xbd,0xc2,0xfa,0xed,0x1b,0x93,0x15,0x8,0xe1,
+ 0xb3,0xf9,0xd3,0xb,0xf7,0xbc,0xba,0xb8,0xbd,0xd3,0x16,0xce,0x4c,0x56,0x0,0x68,
+ 0xa,0xca,0x14,0x34,0x83,0xf8,0x14,0xfe,0xb6,0x63,0x2e,0x4e,0xdd,0x19,0xfe,0x5a,
+ 0xba,0x4f,0xba,0x3a,0xac,0xdd,0xba,0x3e,0xf9,0x15,0x8a,0x27,0x3e,0x23,0xe6,0xf4,
+ 0x81,0x5,0xbb,0x5c,0xa7,0x36,0x43,0xa7,0x4c,0x28,0x4d,0x36,0x84,0xfa,0x5a,0xb2,
+ 0x6e,0x45,0x38,0x7f,0x44,0xf7,0xd4,0xf7,0x55,0x1e,0x13,0x8b,0xe3,0xa8,0x57,0xef,
+ 0x2a,0x6d,0xfb,0xdc,0x1f,0xe7,0x87,0xe,0x63,0xfe,0xdf,0xe3,0x26,0x8a,0x92,0x78,
+ 0x26,0x2e,0x16,0x69,0xa0,0xe9,0x28,0x53,0xd0,0xc4,0x76,0xec,0xde,0x19,0x6e,0x7a,
+ 0x62,0x60,0xbd,0x6f,0x88,0x8e,0xc3,0x28,0x1e,0xf8,0xd7,0x93,0xf5,0x7a,0xe2,0x7f,
+ 0x9e,0xc4,0x42,0x71,0xe5,0xfd,0xb7,0xa6,0xae,0x4d,0x9e,0x13,0xb,0xe4,0x7b,0xb3,
+ 0x8d,0x4a,0x27,0x9b,0x27,0x3e,0x7a,0xb1,0x50,0xa3,0xd2,0xe3,0x3d,0xa6,0x23,0x5f,
+ 0xbe,0x33,0xf4,0xb9,0xeb,0xfa,0xc2,0xd,0x9d,0x88,0xf7,0x86,0xc5,0x7b,0xc4,0x80,
+ 0xa6,0xa5,0x4c,0x41,0x13,0xfb,0xf4,0xfb,0xe9,0x99,0xcf,0xb0,0x9c,0x37,0xbc,0x5b,
+ 0x98,0xbf,0xea,0xf7,0x9f,0xa9,0x92,0x57,0x8b,0xd7,0x2e,0xb,0xe7,0xf,0x2f,0xce,
+ 0x37,0xed,0x27,0xd2,0x61,0xec,0x25,0x61,0xe3,0xce,0xe2,0x3e,0xc0,0x99,0xec,0xe2,
+ 0xbd,0x96,0x6d,0xc7,0xf6,0x49,0x7d,0x5f,0x49,0x8e,0x52,0x5b,0x1c,0xfb,0xde,0x77,
+ 0x73,0xa1,0x27,0xbf,0x42,0x73,0x51,0xa6,0xa0,0x9,0xc5,0xb3,0x2b,0x37,0x3c,0xde,
+ 0x3f,0x7d,0x67,0x58,0xc7,0xdc,0x36,0x79,0x78,0xa1,0x87,0x51,0xbc,0xf0,0xf9,0xeb,
+ 0xa5,0x69,0x55,0x69,0x6b,0x93,0xd7,0xc4,0x7b,0xeb,0x26,0x7f,0xf2,0x72,0x38,0x7a,
+ 0xec,0x68,0xb2,0xa,0x50,0x77,0xcf,0x4e,0x7d,0xb5,0x50,0xf7,0x4e,0x15,0x31,0xf1,
+ 0x4b,0xa6,0x22,0x3f,0x93,0x10,0x9a,0x93,0x32,0x5,0x4d,0x68,0xd6,0xb2,0x39,0xa5,
+ 0x67,0xa2,0xa4,0xed,0xc,0xeb,0x9a,0xf8,0xef,0xff,0x7b,0xee,0x67,0xe1,0xf8,0xf1,
+ 0xe3,0xc9,0xaf,0x5a,0x2c,0xdb,0x77,0xef,0x8,0xed,0xc7,0x14,0xef,0x9b,0xf6,0xb,
+ 0x86,0xf7,0x8,0x2b,0x37,0xaf,0x49,0x56,0x1,0xea,0x2e,0xde,0x43,0xd3,0x79,0x42,
+ 0xf1,0x6,0xb8,0x14,0x26,0xd5,0x55,0xe1,0xf9,0xa9,0xaf,0x25,0xaf,0x36,0xd0,0xd4,
+ 0x94,0x29,0x68,0x22,0x71,0x22,0xdd,0x65,0xf7,0xdd,0x94,0xbe,0x33,0xac,0x67,0xae,
+ 0x7c,0xf0,0x2f,0xa5,0x5f,0xaf,0xa8,0xa6,0x2f,0xfe,0x3a,0xb4,0xea,0x7f,0x6a,0xa5,
+ 0xb4,0xe2,0x52,0x1a,0x95,0xfe,0x54,0x38,0x70,0xf8,0x60,0xb2,0xa,0x50,0x77,0xaf,
+ 0xcf,0x78,0xa7,0x78,0x8f,0x17,0x28,0x48,0xda,0x8c,0xea,0x55,0x7a,0xd4,0x6,0xd0,
+ 0x3c,0x94,0x29,0x68,0x2,0x87,0x8f,0x1c,0xe,0xaf,0x4f,0xff,0x67,0xc3,0x8d,0xe9,
+ 0xad,0xae,0x2a,0x1d,0x1c,0x15,0xd5,0xee,0xfd,0x7b,0xc2,0xc5,0x77,0xfd,0x39,0x7d,
+ 0x6d,0x72,0x9c,0xb3,0x87,0x74,0x9,0x73,0x7e,0xf8,0x3e,0x59,0x5,0xa8,0xbb,0x78,
+ 0x89,0xf1,0xb5,0x8f,0xde,0xe6,0x72,0xbf,0xbc,0xa5,0x76,0x5f,0xf0,0xea,0x97,0xff,
+ 0x4c,0x5e,0x65,0xa0,0x39,0x28,0x53,0xd0,0x4,0xe6,0xaf,0x5e,0x1c,0xba,0x8c,0xbf,
+ 0x22,0x7d,0x67,0x98,0x31,0x5d,0x26,0x5c,0x11,0xd6,0x6c,0x5d,0x97,0xfc,0x17,0x8a,
+ 0xe7,0xdb,0xe5,0xdf,0x85,0x33,0x7,0x77,0x4a,0x5d,0x9b,0x3c,0xa7,0xdb,0xc4,0xab,
+ 0xc2,0x8e,0x3d,0x35,0xc9,0x2a,0x40,0xdd,0xc5,0x1,0x2e,0x17,0x14,0x68,0x54,0x7a,
+ 0x11,0xd2,0x6e,0xf4,0xc5,0x61,0xdb,0xee,0x1d,0xc9,0x2b,0xc,0x34,0x7,0x65,0xa,
+ 0x1a,0x59,0xcd,0xde,0x5d,0x61,0xf8,0x94,0x89,0xd,0x7e,0x89,0x4d,0xfc,0x86,0xf9,
+ 0xfe,0x77,0x9e,0x28,0xec,0xa8,0xf4,0x7d,0x7,0xf7,0x87,0xab,0x1f,0xfc,0x6b,0xe9,
+ 0xf2,0xb7,0xb4,0xf5,0xc9,0x6b,0xe2,0xd9,0xcd,0x57,0xbe,0xf8,0x47,0xb2,0xa,0x50,
+ 0x3f,0x8f,0x7f,0xf8,0x42,0xf8,0x83,0xb3,0x53,0xb9,0x48,0xcb,0xfe,0x6d,0xb,0x7d,
+ 0x85,0x2,0x94,0xb,0x65,0xa,0x1a,0xd9,0x8c,0xc5,0xdf,0x84,0xb3,0x87,0x74,0x4e,
+ 0xdd,0x19,0x9e,0x6a,0xce,0x1d,0x76,0x51,0x58,0xb0,0x7a,0x49,0xf2,0x5f,0x2a,0x9e,
+ 0x25,0xeb,0x96,0x17,0x72,0x54,0x7a,0x9b,0x51,0xbd,0xc3,0xc6,0x1d,0x46,0xa5,0x53,
+ 0x7f,0xf1,0xac,0x66,0x87,0x3b,0x2e,0x4d,0x7d,0x5f,0x49,0x65,0xa5,0xc7,0xa4,0x6b,
+ 0xa,0x3d,0xd9,0x15,0xca,0x85,0x32,0x5,0x8d,0x68,0x73,0xcd,0xd6,0x6,0x1b,0x3a,
+ 0x91,0x96,0xf8,0x20,0xdf,0xbf,0x3e,0x33,0xac,0x74,0xf,0x51,0x51,0xbd,0xf0,0xd9,
+ 0xeb,0xa5,0xd1,0xe1,0x69,0xeb,0x93,0xdb,0xd4,0x6e,0xef,0xb3,0x9f,0xbe,0x12,0x8e,
+ 0x1d,0x3b,0x96,0xac,0x2,0xd4,0xdd,0x8b,0xd3,0xde,0x70,0xef,0x54,0x85,0xe7,0xbc,
+ 0x61,0x5d,0xc3,0xf7,0xab,0x16,0x25,0xaf,0x28,0xd0,0x9c,0x94,0x29,0x68,0x24,0xf1,
+ 0x99,0x40,0x2f,0xc6,0x3,0xfd,0x46,0x9e,0xa0,0x15,0x2f,0xf5,0x78,0x6f,0xf6,0x27,
+ 0xc9,0x7f,0xb5,0x78,0xe2,0xa8,0xf4,0x22,0x7e,0xd3,0x7e,0xe1,0x88,0x1e,0x61,0xdd,
+ 0xb6,0xd,0xc9,0x2a,0x40,0xdd,0xd5,0xec,0xdb,0x15,0xfa,0x3e,0x78,0xab,0x42,0x55,
+ 0xa9,0x89,0x5f,0xa6,0x4c,0x7d,0x25,0x79,0x35,0x81,0xe6,0xa6,0x4c,0x41,0x23,0x89,
+ 0xc3,0x21,0x3a,0x8d,0x6b,0x9a,0x67,0xbb,0x5c,0x72,0xdf,0xd,0x61,0xc3,0xf6,0x4d,
+ 0xc9,0x7f,0xb9,0x78,0xe2,0xa5,0x94,0x7f,0x1a,0xd0,0x3e,0x75,0x6d,0x72,0x9b,0xea,
+ 0x36,0xe1,0x89,0x8f,0x5e,0x8,0x87,0x8e,0x14,0xf3,0x9e,0x39,0x4e,0xcd,0xd2,0xf5,
+ 0x2b,0xc2,0xd9,0x43,0x2f,0x4a,0x7f,0x6f,0x49,0x59,0xa7,0xdd,0x98,0x3e,0x46,0xa1,
+ 0x43,0x19,0x51,0xa6,0xa0,0x11,0x1c,0x3c,0x72,0x30,0x3c,0xfa,0xc1,0xb3,0x4d,0x77,
+ 0xf9,0x59,0xed,0x81,0xf5,0x53,0x1f,0xbd,0x18,0xe,0x1f,0x3d,0x92,0xfc,0x4,0xc5,
+ 0x12,0xc7,0x3e,0x5f,0x76,0xef,0x4d,0x85,0x1b,0x46,0x71,0xae,0x4b,0x7d,0x38,0x5,
+ 0xf,0x7f,0x30,0x39,0xfc,0xe1,0x36,0x67,0xa7,0x2a,0x29,0x71,0x0,0xcd,0xb4,0x85,
+ 0x33,0x93,0x57,0x10,0x28,0x7,0xca,0x14,0x34,0xb0,0xe3,0xb5,0x59,0xb0,0x6a,0x71,
+ 0xa8,0x1a,0xd5,0x3b,0x75,0x67,0xd8,0x58,0x69,0x3b,0xe6,0xe2,0xb0,0x62,0xe3,0xca,
+ 0x9f,0x7e,0x88,0x2,0x8a,0x63,0x9f,0x2f,0x1c,0xd9,0x33,0x75,0x6d,0xf2,0x9c,0x58,
+ 0x22,0x63,0x99,0x84,0xfa,0x8a,0xc3,0xb,0xaa,0x6a,0x3f,0x37,0xd2,0xde,0x57,0x52,
+ 0x9e,0x89,0x8f,0x46,0xd8,0xb5,0x6f,0x77,0xf2,0xa,0x2,0xe5,0x40,0x99,0x82,0x6,
+ 0xb6,0x67,0xff,0x9e,0x30,0xe0,0xf9,0x31,0x4d,0x7e,0x96,0x24,0xde,0xff,0x30,0xe1,
+ 0xad,0x7,0xc3,0x81,0xc3,0x7,0x93,0x9f,0xa4,0x78,0x3e,0x99,0x37,0xad,0xd1,0xef,
+ 0x51,0x2b,0xb7,0xc4,0xcb,0x1b,0x67,0x2e,0xf9,0x36,0x59,0x1,0xa8,0x9f,0x67,0xa7,
+ 0xbe,0xea,0xde,0xa9,0xa,0x49,0xfc,0xbd,0x3e,0x6b,0xe9,0xec,0xe4,0x95,0x3,0xca,
+ 0x85,0x32,0x5,0xd,0xe8,0x78,0xed,0xff,0xbe,0xfb,0x71,0x41,0x38,0x73,0x50,0xf3,
+ 0x3c,0x4c,0xf6,0xac,0x21,0x9d,0xb,0x7d,0xd9,0x57,0xbc,0xb1,0xbe,0xcb,0xf8,0xbe,
+ 0xa9,0x6b,0x93,0xe7,0x74,0x9d,0x70,0x95,0x11,0xc9,0x64,0x12,0xcf,0x72,0x74,0x18,
+ 0x67,0x54,0x7a,0x25,0xe4,0x72,0x67,0xa1,0xa1,0x2c,0x29,0x53,0xd0,0x80,0xe2,0x88,
+ 0xf2,0xbf,0x3e,0x3d,0x34,0x75,0x47,0xd8,0x54,0xb9,0xf9,0xc9,0x41,0x85,0x1e,0x95,
+ 0x1e,0x87,0x51,0xc4,0xfb,0xa,0xd2,0xd6,0x26,0xaf,0x69,0x51,0xbb,0xbd,0x1f,0x7d,
+ 0xf7,0x79,0xb2,0x2,0x50,0x3f,0x2f,0x7d,0xfe,0x66,0x38,0xad,0x60,0xf7,0x1b,0x56,
+ 0x5a,0xce,0x1b,0xd6,0x2d,0xcc,0x5f,0xb5,0x38,0x79,0xc5,0x80,0x72,0xa2,0x4c,0x41,
+ 0x3,0x39,0x7e,0xfc,0x78,0xf8,0x64,0xde,0x17,0xcd,0x3e,0x55,0x2e,0x1e,0x58,0xff,
+ 0xeb,0x9b,0xf,0x93,0x9f,0xaa,0x78,0x62,0x91,0xec,0x36,0xe1,0xaa,0xd4,0xb5,0xc9,
+ 0x73,0xe2,0xc3,0x8b,0x17,0xad,0x59,0x9a,0xac,0x2,0xd4,0x5d,0x3c,0xa3,0x7b,0xf9,
+ 0x83,0xb7,0x94,0x9e,0x5b,0x97,0xf6,0xde,0x92,0x66,0x4e,0x69,0xc0,0xd0,0x4b,0x26,
+ 0x77,0x42,0x99,0x52,0xa6,0xa0,0x81,0x7c,0xbd,0x6c,0x6e,0xe8,0x78,0xc7,0x65,0xe9,
+ 0x3b,0xc3,0x26,0x4e,0xef,0xbb,0xff,0x5c,0xe8,0x67,0x10,0x7d,0xb5,0xf4,0xdb,0xe2,
+ 0x8d,0x4a,0xaf,0xcd,0x25,0xf7,0xdc,0x50,0x3a,0x30,0x86,0xfa,0x5a,0xb0,0x7a,0x71,
+ 0x38,0x7b,0x48,0x97,0xd4,0xf7,0x95,0x34,0x6f,0xda,0x8c,0xea,0x55,0xe8,0x47,0x5f,
+ 0x40,0xb9,0x53,0xa6,0xa0,0x1,0x7c,0xbf,0x72,0x51,0xb8,0xb8,0xb6,0xc0,0xa4,0xed,
+ 0x8,0x9b,0x2b,0x8f,0xbc,0x3f,0xb9,0xb0,0xdf,0x64,0xee,0x3d,0xb0,0x2f,0xf4,0xbd,
+ 0xef,0xe6,0xc2,0x8d,0x4a,0x3f,0x7d,0x60,0x87,0xf0,0xaf,0x6f,0x3f,0x4e,0x56,0x1,
+ 0xea,0xe7,0x9e,0xb7,0x1f,0xb,0xa7,0x19,0x95,0x5e,0x56,0x89,0x3,0x75,0x5e,0x9f,
+ 0xf1,0x76,0xf2,0xa,0x1,0xe5,0x48,0x99,0x82,0x53,0xb4,0xff,0xd0,0x81,0x30,0xe8,
+ 0x85,0xb1,0x65,0x77,0xe0,0x7e,0xc1,0x88,0x62,0x5f,0xf6,0xb5,0x64,0xdd,0x8a,0xd0,
+ 0xba,0x80,0xa3,0xd2,0xbb,0x4d,0xbc,0xda,0xe8,0x64,0x32,0xd9,0xb8,0x63,0x73,0xe9,
+ 0x11,0xb,0x69,0xef,0x2b,0x69,0x9e,0xc4,0x4b,0x96,0x77,0xec,0xa9,0x49,0x5e,0x21,
+ 0xa0,0x1c,0x29,0x53,0x70,0x8a,0xe6,0xfe,0x38,0x3f,0x9c,0x35,0xb8,0x79,0xa6,0xf7,
+ 0xfd,0x56,0xe2,0xfd,0xf,0xd5,0xcf,0x8e,0x2c,0xf4,0xf4,0xa7,0x22,0x8e,0x4a,0x6f,
+ 0xd5,0xbf,0x5d,0xf8,0x62,0xe1,0x57,0xc9,0xa,0x40,0xfd,0x3c,0xfb,0xe9,0x2b,0xe1,
+ 0xf,0x46,0xa5,0x97,0x45,0xce,0x19,0x72,0x51,0x98,0xb7,0x72,0x61,0xf2,0xca,0x0,
+ 0xe5,0x4a,0x99,0x82,0x53,0xb0,0xa9,0x66,0x6b,0xb8,0xe1,0xf1,0x1,0xa9,0x3b,0xc2,
+ 0x72,0x48,0xab,0x1,0xed,0xc2,0x47,0xdf,0x4f,0x4b,0x7e,0xda,0xe2,0x89,0xf7,0xf,
+ 0x5d,0x34,0xfe,0x8a,0xd4,0xb5,0xc9,0x73,0x3a,0x8c,0xbd,0x34,0x6c,0xdb,0xbd,0x23,
+ 0x59,0x5,0xa8,0xbb,0xf8,0x7b,0xa6,0xcf,0x7d,0x37,0x18,0x46,0xd1,0xdc,0xa9,0x6e,
+ 0x13,0x9e,0xfc,0xe8,0xa5,0xe4,0x55,0x1,0xca,0x99,0x32,0x5,0x19,0x1d,0x3d,0x76,
+ 0x34,0xbc,0x31,0xfd,0x9d,0xb2,0x1f,0x74,0x70,0xc5,0x83,0xb7,0x16,0xfa,0x19,0x44,
+ 0x71,0x54,0x7a,0x3c,0x5b,0x93,0xb6,0x36,0xb9,0x4d,0x75,0x55,0x98,0xfc,0xc9,0x94,
+ 0x64,0x5,0xa0,0x7e,0x16,0xaf,0x5d,0x16,0x4e,0x1f,0xd4,0x21,0xfd,0xbd,0x25,0x4d,
+ 0x92,0x78,0x89,0xf2,0xa6,0x9d,0x5b,0x92,0x57,0x4,0x28,0x67,0xca,0x14,0x64,0xb4,
+ 0x72,0xd3,0xea,0x70,0xcd,0x43,0x7f,0x4b,0xdd,0x11,0x96,0x55,0x6a,0xf,0xac,0xdf,
+ 0xfa,0xea,0xbd,0xe4,0xa7,0x2e,0x9e,0x38,0x2a,0xbd,0xe7,0xa4,0x6b,0xd3,0xd7,0x26,
+ 0xc7,0x39,0x77,0x68,0x57,0x97,0x8,0x91,0xd9,0xb8,0xb7,0xee,0x37,0x8c,0xa2,0x99,
+ 0xd2,0xa2,0xf6,0x33,0x7b,0xca,0xb4,0x37,0xc3,0xb1,0xe3,0xc7,0x93,0x57,0x3,0x28,
+ 0x67,0xca,0x14,0x64,0x70,0xe8,0xc8,0xe1,0xf0,0xc2,0xd4,0xd7,0x43,0xab,0xa,0x19,
+ 0xbf,0xdd,0xfd,0xce,0x6b,0xc2,0x96,0x9a,0x6d,0xc9,0x4f,0x5f,0x3c,0xb3,0x96,0xce,
+ 0xe,0x67,0xc,0xea,0x98,0xba,0x36,0x79,0x4e,0x8f,0xda,0x12,0xe9,0xe6,0x75,0xb2,
+ 0x88,0xa3,0xb8,0x5b,0x8f,0x2a,0xde,0x0,0x97,0x72,0x48,0xbc,0x4c,0x77,0x73,0xcd,
+ 0xd6,0xe4,0x95,0x0,0xca,0x9d,0x32,0x5,0x19,0x2c,0x5c,0xbd,0x24,0xb4,0x1f,0xd3,
+ 0x27,0x75,0x47,0x58,0x8e,0x89,0xf7,0x3f,0x3c,0xf1,0xd1,0xb,0xc9,0x4f,0x5f,0x3c,
+ 0x71,0x54,0xfa,0x55,0xf,0xfc,0xb5,0x70,0xa3,0xd2,0xe3,0xe5,0x8d,0xaf,0x4d,0x37,
+ 0x56,0x99,0x6c,0x1e,0xf9,0x60,0xb2,0xb3,0x53,0x4d,0x9c,0xf8,0x5,0xdd,0x97,0x8b,
+ 0x66,0x25,0xaf,0x0,0x50,0x9,0x94,0x29,0xa8,0xa7,0x7d,0x87,0xf6,0x87,0x1,0xcf,
+ 0x8d,0x49,0xdd,0x11,0x96,0x73,0xce,0x1f,0xde,0x2d,0x2c,0x59,0xb7,0x3c,0xd9,0x8a,
+ 0xe2,0x29,0xea,0xa8,0xf4,0x76,0xb5,0xa5,0x3f,0x8e,0xbc,0x86,0xfa,0x8a,0x67,0x47,
+ 0xda,0x8e,0xbd,0x38,0xfc,0xf1,0xb6,0xf4,0xf7,0x96,0x34,0x7c,0x2e,0xbf,0xf7,0xa6,
+ 0xd2,0xa5,0xc9,0x40,0xe5,0x50,0xa6,0xa0,0x9e,0xbe,0xfb,0x71,0x41,0x59,0x8e,0x42,
+ 0xff,0xbd,0xc4,0xb3,0x53,0x7f,0x7d,0x66,0x98,0x51,0xe9,0xfd,0xda,0xa6,0xae,0x4f,
+ 0x5e,0x13,0xef,0xbf,0x78,0xfa,0x93,0x29,0xe1,0xc8,0xd1,0x23,0xc9,0x2a,0x40,0xdd,
+ 0x19,0x95,0xde,0x74,0x39,0x7f,0x78,0xf7,0xb0,0xb0,0xc0,0xcf,0x6,0x84,0x4a,0xa5,
+ 0x4c,0x41,0x3d,0xc4,0xe9,0x4a,0xb7,0x3c,0x39,0x38,0x75,0x47,0x58,0x9,0x69,0xd9,
+ 0xbf,0x5d,0xf8,0xf7,0xdc,0xcf,0x92,0xad,0x29,0x9e,0x38,0xf6,0xb9,0xeb,0x84,0xab,
+ 0x52,0xd7,0x26,0xcf,0x39,0x6f,0x78,0xb7,0xf0,0xc3,0xc6,0x55,0xc9,0x2a,0x40,0xdd,
+ 0xc5,0xdf,0x33,0x97,0x3d,0x70,0x73,0x38,0x4d,0xa1,0x6a,0xdc,0x54,0x57,0x85,0xe7,
+ 0xa7,0xbe,0x96,0xac,0x3a,0x50,0x49,0x94,0x29,0xa8,0xa3,0xe3,0xc7,0x8f,0x87,0x17,
+ 0x3f,0x7b,0xb3,0xec,0x47,0xa1,0xff,0x5e,0x2e,0x7f,0xe0,0x96,0x42,0xf,0x25,0x98,
+ 0xb9,0xe4,0xdb,0x8a,0x7f,0xd,0xb3,0x64,0xcc,0x6b,0xf7,0x84,0x7d,0x7,0xf7,0x27,
+ 0xab,0x0,0x75,0xb7,0x74,0xfd,0x8a,0x70,0xf6,0xd0,0x2e,0xa9,0xef,0x2b,0x69,0x98,
+ 0xb4,0x19,0xd5,0x2b,0x6c,0xdd,0xb5,0x3d,0x59,0x71,0xa0,0x92,0x28,0x53,0x50,0x47,
+ 0xcb,0xd6,0xff,0x10,0x3a,0xde,0x71,0x59,0xea,0x8e,0xb0,0xa2,0x52,0xdd,0x26,0xbc,
+ 0x39,0xf3,0xdd,0x64,0xab,0x8a,0x27,0xde,0x8f,0x70,0xc9,0xdd,0x37,0xa4,0xaf,0x4d,
+ 0x8e,0x13,0xa7,0x19,0xbe,0x37,0xe7,0xe3,0x64,0x15,0xa0,0x7e,0xee,0x7f,0xf7,0x49,
+ 0x67,0xa7,0x1a,0x2b,0xd5,0x55,0xe1,0xd5,0x2f,0xff,0x99,0xac,0x34,0x50,0x69,0x94,
+ 0x29,0xa8,0x83,0xf8,0xb4,0x8f,0x89,0x6f,0x3e,0x50,0xda,0xe9,0xa5,0xee,0xc,0x2b,
+ 0x2c,0x17,0x4d,0xbc,0xb2,0xd0,0xa3,0x77,0xbf,0x5d,0xfe,0x5d,0x38,0xb3,0x2,0xef,
+ 0x7b,0x3b,0xd5,0x74,0x1e,0x77,0x79,0xd8,0xb1,0x67,0x67,0xb2,0xa,0x50,0x77,0xdb,
+ 0x76,0xef,0x8,0x6d,0x46,0xf7,0x4a,0x7d,0x5f,0xc9,0xa9,0xa5,0xed,0xe8,0x8b,0x4b,
+ 0xeb,0xb,0x54,0x26,0x65,0xa,0xea,0x60,0xc1,0xea,0xc5,0xe1,0xbc,0x61,0xdd,0x52,
+ 0x77,0x84,0x95,0x98,0xf8,0xd,0xf3,0x23,0x1f,0x3c,0x9b,0x6c,0x5d,0xf1,0xc4,0xcb,
+ 0xdd,0xae,0x79,0xf0,0x6f,0x85,0x1b,0x95,0x1e,0x87,0x6f,0xbc,0xfc,0xe5,0xdf,0x93,
+ 0x55,0x80,0xfa,0x79,0xf2,0xa3,0x17,0x9d,0x9d,0x6a,0xe0,0xb4,0xac,0xfd,0x3d,0xf9,
+ 0xe6,0x57,0xff,0x4a,0x56,0x18,0xa8,0x44,0xca,0x14,0xfc,0x8e,0xfd,0xb5,0x7,0xde,
+ 0x7f,0x79,0x7a,0x68,0xea,0x8e,0xb0,0x92,0x73,0xee,0xb0,0xae,0x85,0x1e,0x95,0x1e,
+ 0x2f,0xdb,0x2c,0xe2,0xa8,0xf4,0xaa,0x51,0xbd,0xc3,0x76,0xdf,0x82,0x93,0x41,0xbc,
+ 0xd7,0xb2,0xd3,0xf8,0xcb,0x53,0xdf,0x57,0x92,0x2d,0x3d,0x26,0x5d,0x13,0x76,0xee,
+ 0xdd,0x95,0xac,0x30,0x50,0x89,0x94,0x29,0xf8,0x1d,0x73,0x7f,0x98,0x5f,0xba,0xdf,
+ 0x24,0x6d,0x47,0x58,0xc9,0x89,0xdf,0x30,0x1b,0x95,0x5e,0xbc,0x51,0xe9,0xf1,0x52,
+ 0xd5,0x57,0xbe,0xf8,0x47,0xb2,0x2,0x50,0x3f,0x6f,0xcc,0x7c,0xb7,0x70,0x67,0x74,
+ 0x1b,0x2b,0xe7,0xe,0xed,0x1a,0xbe,0x5f,0xb5,0x28,0x59,0x59,0xa0,0x52,0x29,0x53,
+ 0xf0,0x1b,0xe2,0xc3,0x4e,0x6f,0x7e,0x62,0x50,0xea,0x8e,0x30,0xf,0x69,0xd9,0xbf,
+ 0x6d,0xf8,0x60,0xce,0xd4,0x64,0x6b,0x8b,0xa7,0xa8,0xa3,0xd2,0xdb,0x8c,0x34,0x39,
+ 0x8c,0x6c,0xf6,0x1e,0xd8,0x17,0xae,0x7b,0xb4,0xda,0xe5,0x7e,0xa7,0x9a,0xda,0x42,
+ 0xfa,0xcc,0xc7,0x2f,0x25,0xab,0xa,0x54,0x32,0x65,0xa,0x7e,0xc5,0xf1,0xda,0xff,
+ 0xbd,0x30,0xf5,0xf5,0xdc,0x8f,0xd1,0xbe,0xe4,0xbe,0x1b,0xb,0x7d,0xf3,0x73,0x21,
+ 0x47,0xa5,0xd7,0x1e,0xc8,0x3d,0x37,0xf5,0xd5,0x64,0x5,0xa0,0x7e,0xe2,0x25,0xb2,
+ 0xe7,0xc,0xbd,0x28,0xfd,0xbd,0x25,0x75,0x4a,0xeb,0x91,0xbd,0xc2,0x96,0x9a,0x6d,
+ 0xc9,0x8a,0x2,0x95,0x4c,0x99,0x82,0x5f,0x31,0x6f,0xe5,0x82,0xd0,0x61,0xec,0xa5,
+ 0xa9,0x3b,0xc2,0x5c,0x25,0x7e,0x43,0xfa,0xc9,0x2b,0xc9,0x56,0xff,0xe4,0xd8,0xf1,
+ 0x63,0xc9,0xff,0xcb,0xbf,0x78,0x99,0xe3,0x65,0xf7,0xde,0x94,0xbe,0x36,0x39,0x4e,
+ 0x1c,0xa8,0xb2,0x60,0xf5,0x92,0x64,0x15,0xa0,0x7e,0x8c,0x4a,0xcf,0x9e,0x16,0xd5,
+ 0x55,0xe1,0xe5,0x69,0x6f,0x25,0x2b,0x9,0x54,0x3a,0x65,0xa,0x52,0xec,0x3f,0x74,
+ 0x20,0xc,0x9f,0x32,0xb1,0x30,0xf7,0x6,0xc4,0x41,0xc,0xdf,0xd5,0x96,0xc7,0x78,
+ 0x9,0x4f,0xbc,0xfc,0xeb,0xd0,0x91,0xc3,0xc9,0x4a,0x14,0xc3,0xc2,0x35,0x4b,0xc3,
+ 0xf9,0xc3,0xf3,0x33,0xad,0xb1,0xae,0x89,0x25,0xb2,0xc8,0xf7,0xcc,0x91,0x9d,0x51,
+ 0xe9,0xd9,0xd3,0x6e,0x4c,0x1f,0x97,0xd9,0x42,0x8e,0x28,0x53,0x90,0x62,0xee,0x8f,
+ 0xf3,0xc3,0x39,0x5,0x7b,0xe2,0x7f,0x9c,0x2a,0xf5,0xce,0xac,0xf,0x43,0xcd,0xde,
+ 0x5d,0xe1,0xf8,0xf1,0xf8,0x64,0xad,0x62,0x79,0xee,0xb3,0x57,0x6b,0xcb,0x73,0x3e,
+ 0x9e,0x23,0x56,0xd7,0xc4,0xcb,0x1b,0xe3,0x65,0x8e,0x90,0xc5,0x53,0x1f,0x4f,0x9,
+ 0x7f,0x70,0x76,0xaa,0x5e,0x69,0xd9,0xbf,0x5d,0x78,0xeb,0xab,0x77,0xb,0xf9,0x19,
+ 0xb,0x79,0xa5,0x4c,0xc1,0x2f,0xc4,0x67,0x10,0xdd,0xf8,0xd8,0x80,0xd4,0x1d,0x61,
+ 0x9e,0x73,0xd6,0xe0,0x4e,0x61,0x73,0xcd,0x96,0xc2,0xee,0xe4,0xe3,0x37,0xed,0xf1,
+ 0xe1,0x99,0x69,0x6b,0x93,0xe7,0xc4,0x1,0x1c,0x71,0x10,0x7,0xd4,0x57,0x7c,0xdf,
+ 0x74,0xbb,0xf3,0xea,0xd4,0xf7,0x95,0xa4,0xa7,0x5b,0xed,0xef,0xb7,0x6d,0xbb,0xb7,
+ 0x2b,0x53,0x90,0x23,0xca,0x14,0xfc,0xc2,0xb7,0x2b,0xe6,0x85,0xd3,0x7,0x76,0x48,
+ 0xdd,0x11,0xe6,0x39,0x97,0xde,0x77,0x63,0x38,0x72,0xf4,0x48,0xb2,0xa,0xc5,0x34,
+ 0x6d,0xc1,0xcc,0xd2,0x43,0x34,0xd3,0xd6,0x27,0xaf,0x89,0xa3,0xe1,0xe3,0x88,0x78,
+ 0xc8,0x62,0xde,0xca,0x85,0xa1,0x45,0xff,0x82,0x3d,0x5e,0x20,0x63,0xce,0x1c,0xdc,
+ 0xa9,0x74,0x26,0xb8,0x48,0xf7,0xa4,0x42,0x11,0x28,0x53,0x70,0x92,0xf5,0xdb,0x37,
+ 0x85,0xeb,0x1f,0xad,0x4e,0xdd,0x11,0xe6,0x39,0xad,0xfa,0xb7,0xb,0x53,0xa6,0xbd,
+ 0x99,0xac,0x42,0x71,0xed,0xda,0xb7,0xbb,0x90,0xa3,0xd2,0xe3,0x3d,0x73,0x71,0x42,
+ 0x1b,0x64,0x31,0x64,0xca,0xf8,0x70,0xda,0x6d,0x2e,0xf7,0xfb,0xbd,0x8c,0x7b,0xe3,
+ 0xfe,0xd2,0x67,0x8c,0x32,0x5,0xf9,0xa2,0x4c,0x41,0x22,0x5e,0x76,0xf1,0xdc,0x27,
+ 0xaf,0x86,0x56,0x3,0xda,0xa5,0xee,0x8,0xf3,0x9c,0xcb,0xef,0xbf,0x39,0x6c,0xda,
+ 0xb9,0x25,0x59,0x89,0x62,0x2b,0xea,0xa8,0xf4,0x6b,0x1e,0xfc,0x5b,0xe9,0x12,0x57,
+ 0xa8,0xaf,0xd,0xdb,0x37,0x85,0xf3,0x47,0x74,0x4f,0x7f,0x6f,0x49,0x29,0xf1,0x1,
+ 0xbd,0x8b,0xd6,0x2c,0x2b,0x9d,0xfd,0x57,0xa6,0x20,0x5f,0x94,0x29,0x48,0x7c,0xbb,
+ 0xfc,0xbb,0x42,0xde,0x33,0x13,0x2f,0x69,0x7c,0xfb,0xeb,0xf,0x83,0x2b,0xf8,0x7f,
+ 0x52,0xd4,0x51,0xe9,0xf1,0x12,0xa4,0xf8,0x7b,0x0,0xb2,0x78,0xe4,0x83,0xc9,0xe1,
+ 0xf,0xce,0x4e,0xa5,0xa7,0xba,0x4d,0x78,0xe0,0x5f,0x4f,0x85,0xfd,0x7,0xf,0x94,
+ 0xca,0x94,0xfb,0xa5,0x20,0x5f,0x94,0x29,0xa8,0x15,0x47,0xa1,0xf,0x7a,0xe1,0x8e,
+ 0xc2,0x8c,0x42,0x3f,0x39,0x7f,0x7e,0xb4,0x3a,0x6c,0x2f,0xf0,0x43,0x7b,0xd3,0xfc,
+ 0x34,0x2a,0xbd,0x78,0xdf,0xb4,0xf7,0xb9,0xfb,0xfa,0xb0,0x7b,0xff,0x9e,0x64,0x15,
+ 0xa0,0xee,0xe2,0x3,0x68,0xdb,0x8e,0x2d,0xde,0x97,0x51,0x75,0xc9,0x85,0x23,0x7a,
+ 0x84,0xe5,0x1b,0x7e,0x2c,0x3d,0x72,0x42,0x99,0x82,0xfc,0x51,0xa6,0xa0,0x56,0x7c,
+ 0xc6,0xd2,0xd9,0x43,0x3a,0xa7,0xee,0x8,0xf3,0x9c,0xf3,0x86,0x77,0xb,0x5f,0x2f,
+ 0x9b,0x6b,0xe7,0x9e,0xe2,0xf9,0xcf,0x5e,0x2b,0xdc,0xa8,0xf4,0x56,0x3,0xda,0x87,
+ 0xe9,0x8b,0xbe,0x4e,0x56,0x0,0xea,0xe7,0x99,0xa9,0xaf,0x18,0x95,0xfe,0x8b,0xb4,
+ 0xe8,0x57,0x15,0x1e,0x7e,0xef,0x99,0xb0,0x67,0xff,0xde,0x70,0xb8,0xb6,0x4c,0x1d,
+ 0x3d,0x76,0xd4,0xe7,0x2d,0xe4,0x8c,0x32,0x45,0xe1,0x6d,0xa9,0xd9,0x1a,0x6e,0x79,
+ 0x72,0x70,0xea,0x8e,0x30,0xd7,0xa9,0x6e,0x13,0x1e,0x7c,0xf7,0x69,0x3b,0xf6,0x5f,
+ 0x11,0xcf,0xd6,0xb5,0x1f,0xd3,0x27,0x7d,0xed,0x72,0x9c,0xe,0x63,0x2f,0x2d,0x8d,
+ 0x89,0x87,0xfa,0x88,0x9f,0x23,0xdb,0xf7,0xec,0x8,0x17,0x4d,0xba,0x32,0xf5,0x7d,
+ 0x55,0xd4,0xb4,0x19,0xd5,0x2b,0x2c,0x5e,0xbb,0xac,0x74,0x89,0x5f,0x2c,0x53,0x3e,
+ 0x6f,0x21,0x7f,0x94,0x29,0xa,0x2d,0xee,0xd8,0xde,0x9e,0xf5,0x7e,0x21,0x47,0xa1,
+ 0x77,0x19,0xdf,0xd7,0xd0,0x89,0xdf,0xf1,0xe5,0xa2,0x59,0xa1,0x65,0xd1,0xc6,0x3e,
+ 0x57,0x57,0x85,0x67,0x3e,0x9e,0x92,0xac,0x0,0xfc,0xbe,0xf8,0x39,0x1a,0x73,0xf0,
+ 0xf0,0xa1,0xf0,0xf1,0x77,0xd3,0x42,0x8b,0x82,0x9d,0xd1,0xfd,0xb5,0xc4,0xcf,0x8e,
+ 0xc7,0xff,0xfd,0x5c,0xd8,0xbd,0x6f,0x4f,0x69,0x6d,0xe2,0xe0,0x9,0x65,0xa,0xf2,
+ 0x47,0x99,0xa2,0xd0,0xd6,0x6d,0xdb,0x10,0xae,0xb8,0xff,0xd6,0xd4,0x1d,0x61,0x9e,
+ 0x13,0x9f,0x2d,0xf4,0xdc,0xd4,0xd7,0x92,0x55,0xe0,0xd7,0xec,0xd8,0x53,0x13,0xba,
+ 0x4f,0x2c,0xde,0x43,0x49,0xcf,0x1c,0xd4,0x29,0xbc,0xfb,0xcd,0x47,0xa5,0x4b,0x92,
+ 0x9a,0x22,0x54,0xb6,0xa3,0x47,0x8f,0xd6,0xfe,0x5e,0xd9,0x19,0x3e,0x9b,0x3f,0x23,
+ 0xfc,0xf5,0xc9,0xa1,0xca,0x54,0x92,0x4b,0xef,0xbd,0x31,0x7c,0xbf,0x72,0xe1,0xcf,
+ 0x67,0xa5,0x94,0x29,0xc8,0x27,0x65,0x8a,0x42,0x7b,0xfc,0x83,0xe7,0xb,0xf7,0x90,
+ 0xd6,0x98,0x9b,0x1e,0x1f,0x18,0x36,0xed,0xdc,0x9a,0xac,0x2,0xbf,0x65,0xfa,0xe2,
+ 0xaf,0xc3,0xd9,0x83,0x8b,0x77,0x3f,0xdd,0x39,0x83,0xbb,0x84,0xf6,0xa3,0xfb,0x84,
+ 0xce,0x77,0x5c,0x1e,0xba,0xdc,0xd1,0xb7,0xd1,0x12,0xcb,0x6a,0xe7,0xb1,0x97,0x87,
+ 0x8e,0xa3,0x2f,0xd,0x1d,0x46,0x5f,0x52,0xe8,0x74,0x1a,0x7b,0x59,0xb8,0xe4,0xae,
+ 0x1b,0xc2,0xd,0x8f,0xf4,0xf,0xfd,0x9e,0x19,0x15,0x6,0x3d,0x77,0x47,0x59,0x66,
+ 0xc8,0xf3,0xe3,0xc2,0xb0,0x17,0x27,0x86,0xc1,0xcf,0x8d,0xd,0x7f,0x7e,0xb8,0x3a,
+ 0x74,0x1b,0x7f,0x65,0xb8,0x60,0x58,0xf7,0x70,0xfa,0x80,0xe,0xa1,0x65,0xb5,0x7,
+ 0xf8,0xc6,0xc4,0x67,0xf7,0xfd,0x63,0xe6,0xfb,0x3f,0x9f,0x95,0x8a,0x5f,0x1a,0x28,
+ 0x52,0x90,0x4f,0xca,0x14,0x85,0xb5,0x66,0xeb,0xfa,0xd2,0xfd,0x21,0x69,0x3b,0xc2,
+ 0x3c,0xe7,0x82,0xe1,0xdd,0xc3,0xec,0x1f,0xbe,0xb7,0x63,0xaf,0xa3,0x38,0xdd,0xee,
+ 0xfa,0x87,0xfb,0x15,0x6e,0x18,0x85,0x88,0x64,0x4f,0x8f,0x89,0x57,0x87,0xd5,0x9b,
+ 0xd7,0x96,0x9e,0xdd,0x16,0x27,0xf8,0x29,0x53,0x90,0x5f,0xca,0x14,0x85,0x35,0xe9,
+ 0x1f,0xf,0x17,0x6f,0x14,0x7a,0xed,0xf6,0x3e,0xf6,0xc1,0x73,0xe1,0xb8,0xa7,0x4a,
+ 0xd5,0x4b,0xbc,0x81,0xbc,0x88,0xcf,0x20,0x13,0x91,0x6c,0x89,0x5f,0xd4,0xad,0xaa,
+ 0x2d,0x53,0xf1,0xac,0x94,0x71,0xe8,0x90,0x6f,0xca,0x14,0x85,0xb4,0x66,0xcb,0xba,
+ 0x70,0xc1,0x88,0x1e,0xa9,0x3b,0xc1,0x3c,0xa7,0xfd,0xd8,0x4b,0xc2,0xe6,0x1a,0x97,
+ 0xf7,0x65,0xf1,0xe1,0xdc,0xcf,0xa,0x79,0x49,0xa8,0x88,0xd4,0x3f,0xf1,0x32,0xbf,
+ 0x19,0x8b,0xbf,0x71,0xaf,0x14,0x14,0x80,0x32,0x45,0xe1,0x1c,0x3a,0x72,0x28,0x8c,
+ 0x7a,0xe5,0xce,0xd4,0x1d,0x60,0xae,0x53,0x5d,0x15,0x5e,0xf8,0xfc,0x8d,0x64,0x15,
+ 0xa8,0xaf,0x78,0x83,0x7d,0xb7,0x2,0xe,0xa3,0x10,0x91,0x6c,0xb9,0xed,0x99,0xe1,
+ 0x61,0xe7,0xde,0x9a,0x52,0x99,0x2,0xf2,0x4b,0x99,0xa2,0x50,0xe2,0x75,0xeb,0x2f,
+ 0x7e,0xfa,0x7a,0x38,0xab,0x80,0x3,0x5,0x2e,0xb9,0xf7,0x86,0x52,0x21,0x20,0xbb,
+ 0x38,0x2a,0xfd,0xf4,0x1,0xed,0x53,0xd7,0x57,0x44,0xe4,0xe4,0x9c,0x31,0xb0,0x43,
+ 0xf8,0x74,0xde,0x17,0xc9,0xa7,0x7,0x90,0x57,0xca,0x14,0x85,0x32,0x7f,0xd5,0xe2,
+ 0xd0,0x79,0xdc,0xe5,0xa9,0x3b,0xbe,0x3c,0xe7,0x8c,0x41,0x1d,0xc3,0x17,0xb,0xbf,
+ 0x4a,0x56,0x81,0xac,0xe2,0x30,0x8a,0x2b,0xef,0xff,0x8b,0x61,0x14,0x22,0x52,0xa7,
+ 0xf4,0xb8,0xf3,0x9a,0xb0,0xa5,0x66,0x5b,0xf2,0x9,0x2,0xe4,0x91,0x32,0x45,0x61,
+ 0xc4,0x4b,0x2d,0xc6,0xbd,0x76,0x5f,0x68,0xd1,0xaf,0x78,0x7,0xc2,0xf1,0x72,0x93,
+ 0x5d,0xfb,0x76,0x27,0x2b,0xc1,0xa9,0x58,0xb8,0x66,0x69,0x68,0x67,0x18,0x85,0x88,
+ 0xd4,0x25,0xd5,0x6d,0xc2,0x3,0xff,0x7a,0x32,0xf9,0xf4,0x0,0xf2,0x48,0x99,0xa2,
+ 0x10,0xe2,0xcd,0xbf,0x1f,0xcc,0xfe,0x34,0x5c,0x30,0xbc,0x78,0x43,0x27,0xe2,0xa0,
+ 0x8d,0x79,0x3f,0x2e,0x70,0x3,0x74,0x3,0x2a,0xd,0xa3,0xe8,0x6f,0x18,0x85,0x88,
+ 0xfc,0x7e,0xce,0x1b,0xde,0x2d,0xac,0xd8,0xb0,0x32,0xf9,0xf4,0x0,0xf2,0x46,0x99,
+ 0x22,0xb7,0x62,0x79,0x88,0xff,0x8b,0x67,0xa4,0x3e,0xf9,0xee,0x8b,0xd0,0xeb,0xce,
+ 0xeb,0x52,0x77,0x74,0xb9,0x4e,0x75,0x9b,0xf0,0xf8,0xbf,0x9f,0x57,0xa4,0x1a,0xd8,
+ 0x8e,0x3d,0x35,0xa1,0xc7,0xa4,0x6b,0xd2,0xd7,0x5c,0x44,0xe4,0xa4,0x9c,0x56,0x9b,
+ 0xe1,0x2f,0x4f,0x2a,0xd,0x3f,0x2,0xf2,0x47,0x99,0x22,0x97,0x4a,0x45,0x2a,0x29,
+ 0x10,0xf1,0x7a,0xf5,0x5b,0x9e,0x18,0x1c,0x5a,0x14,0x70,0xac,0x75,0xc7,0x3b,0x2e,
+ 0xb,0x1b,0x76,0x6c,0x2e,0xad,0x3,0xd,0x2b,0xe,0xa3,0x88,0xe3,0x8f,0xd3,0xd6,
+ 0x5d,0x44,0xe4,0xe4,0xc4,0xa1,0x47,0xf1,0x79,0x75,0x40,0xfe,0x28,0x53,0xe4,0x52,
+ 0x2c,0x52,0x27,0xc6,0xd1,0xbe,0x39,0xfd,0xdd,0x70,0x61,0x1,0x9f,0x29,0x15,0xcb,
+ 0xe3,0xe3,0x1f,0x3c,0x6f,0x2c,0x6f,0x23,0x89,0xf7,0xa0,0xf5,0xb9,0xfb,0xfa,0xd4,
+ 0xb5,0x17,0x11,0xf9,0x65,0x86,0xbc,0x38,0x3e,0xec,0x3b,0xb8,0x3f,0xf9,0x4,0x1,
+ 0xf2,0x42,0x99,0x22,0x77,0x4a,0x45,0xea,0xd8,0xb1,0xd2,0x25,0x7e,0x6b,0xb6,0xae,
+ 0xf,0x7d,0xef,0xbb,0xa5,0x74,0xb9,0x5b,0xda,0xce,0x2d,0xcf,0xe9,0x3a,0xe1,0xca,
+ 0xb0,0x74,0xed,0xf2,0x64,0x55,0x68,0xc,0xb3,0x57,0x7c,0x1f,0xce,0x19,0x7a,0x51,
+ 0xea,0xfa,0x8b,0x88,0x9c,0x9c,0x33,0x7,0x75,0xa,0xb3,0x96,0xce,0x4e,0x3e,0x3d,
+ 0x80,0xbc,0x50,0xa6,0xc8,0x9d,0x58,0xa6,0x8e,0x1e,0x3d,0x5a,0x3a,0x23,0xf3,0xcc,
+ 0xc7,0x2f,0x87,0x33,0x6,0x76,0x4c,0xdd,0xb1,0xe5,0x39,0xe7,0xc,0xb9,0x28,0xfc,
+ 0x7d,0xc6,0xbb,0xa5,0x35,0x38,0xf9,0x92,0x47,0x1a,0xde,0x80,0xc9,0x63,0xa,0x39,
+ 0x21,0x52,0x44,0xea,0x9f,0x3e,0xf7,0x5c,0x1f,0xb6,0xee,0x32,0x2a,0x1d,0xf2,0x44,
+ 0x99,0x22,0x77,0x62,0x81,0x38,0x72,0xe4,0x48,0x58,0xb8,0x6a,0x49,0xe8,0x75,0xe7,
+ 0xb5,0xa9,0x3b,0xb4,0xbc,0xa7,0xdf,0xe4,0x91,0x61,0xe7,0x9e,0x9a,0xd2,0x7a,0x28,
+ 0x52,0x8d,0x6b,0xed,0xb6,0xd,0xa1,0xcb,0xb8,0xbe,0xa9,0xaf,0x83,0x88,0xc8,0x7f,
+ 0xa4,0xba,0x2a,0x3c,0xf8,0xee,0x53,0xc9,0xa7,0x7,0x90,0x7,0xca,0x14,0xb9,0x12,
+ 0x6b,0x43,0xbc,0xc4,0x6f,0xcf,0xfe,0xbd,0xe1,0xb1,0xf7,0x9e,0x2d,0xe4,0x80,0x80,
+ 0x73,0x87,0x5e,0x14,0x66,0x2c,0xfe,0x3a,0x1c,0x3e,0x72,0x38,0x1c,0x39,0x7a,0xe4,
+ 0xe7,0xb3,0x53,0x34,0x9e,0x4f,0xbf,0xff,0x32,0xb4,0x2c,0xe0,0x80,0x13,0x11,0xa9,
+ 0x7f,0xce,0x1f,0xde,0xdd,0xa8,0x74,0xc8,0x11,0x65,0x8a,0x5c,0x89,0xa5,0xe1,0xe0,
+ 0xa1,0x43,0xe1,0xbd,0x6f,0x3e,0xa,0x6d,0x46,0xf6,0x4a,0xdd,0x91,0xe5,0x3d,0xb7,
+ 0x3f,0x33,0x22,0xd4,0xec,0xa9,0x29,0xad,0xc5,0xa1,0xda,0x42,0x75,0xf4,0xd8,0x51,
+ 0x65,0xaa,0x91,0xed,0xdc,0xbb,0x2b,0x74,0x9b,0x70,0x75,0xea,0xeb,0x21,0x22,0x72,
+ 0x72,0xe2,0xa8,0xf4,0xa1,0x2f,0x4d,0x8,0xfb,0xf,0x1d,0x48,0x3e,0x41,0x80,0x4a,
+ 0xa6,0x4c,0x91,0x1b,0x71,0xe0,0x44,0xbc,0x57,0x6a,0xf9,0xfa,0x1f,0x7e,0x1a,0x3a,
+ 0xf1,0x8b,0x1d,0x58,0x11,0x12,0x6f,0x70,0x7e,0xfb,0xab,0xf7,0xc3,0x81,0x43,0x7,
+ 0x4b,0x45,0x2a,0x9e,0x9d,0x72,0x66,0xaa,0x69,0x4c,0x5b,0x30,0x33,0xb4,0x34,0x2a,
+ 0x5d,0x44,0xea,0x90,0xb3,0x86,0x74,0x36,0x8c,0x2,0x72,0x42,0x99,0x22,0x37,0x8e,
+ 0x1e,0x3b,0x16,0xf6,0x1f,0xdc,0x1f,0x1e,0x7d,0xff,0xb9,0xf0,0xa7,0x1,0xed,0x53,
+ 0x77,0x60,0xb9,0x4e,0x75,0x9b,0x70,0xf3,0x13,0x83,0xc2,0xf6,0x3d,0x3b,0x4a,0x25,
+ 0x2a,0x3e,0x20,0xb2,0x74,0x99,0x5f,0x9c,0x6c,0xa8,0x4c,0x35,0xba,0x9a,0x7d,0xbb,
+ 0x42,0xcf,0x49,0xc5,0xbc,0x47,0x4f,0x44,0xea,0x97,0x78,0x76,0xea,0xb6,0x67,0x86,
+ 0x97,0x1e,0xb1,0x0,0x54,0x36,0x65,0x8a,0x5c,0x38,0x71,0x49,0xdb,0xcc,0xc5,0xdf,
+ 0x84,0xaa,0x51,0xbd,0x53,0x77,0x5e,0x79,0x4f,0xdb,0xda,0xed,0xfe,0x68,0xee,0x67,
+ 0xa5,0x22,0x15,0xcf,0x4c,0xfd,0x5c,0xa4,0x4a,0x77,0x92,0xd1,0x14,0xa6,0x2f,0xfe,
+ 0xba,0x90,0xd3,0x23,0x45,0xa4,0xfe,0x39,0x7d,0x60,0x87,0xf0,0xef,0x39,0x9f,0x26,
+ 0x9f,0x1e,0x40,0xa5,0x52,0xa6,0xa8,0x78,0xb1,0x48,0xc5,0xd2,0xb0,0x6d,0xd7,0xf6,
+ 0x70,0xfb,0x33,0xc3,0xb,0xf9,0x4c,0xa9,0x78,0x26,0xee,0x99,0xf,0x5f,0xa,0x7b,
+ 0xf6,0xef,0x9,0x87,0xe,0xff,0x74,0x9f,0x94,0xb1,0xe8,0x4d,0x6f,0x77,0xed,0xfa,
+ 0x5f,0xfd,0xc0,0xdf,0xa,0xf9,0x1e,0x14,0x91,0xfa,0xa7,0xfd,0xd8,0x4b,0xc2,0xf,
+ 0x1b,0x57,0x25,0x9f,0x20,0x40,0x25,0x52,0xa6,0xa8,0x78,0xb1,0x2c,0xc4,0xb3,0x30,
+ 0x1f,0xce,0x99,0x1a,0xce,0x19,0xd2,0x25,0x75,0x87,0x95,0xf7,0x5c,0xfd,0xe0,0xdf,
+ 0xc2,0xca,0x4d,0x6b,0xc,0x9b,0x28,0x3,0xb,0x56,0x2f,0x29,0xec,0xf0,0x13,0x11,
+ 0xa9,0x5f,0x4a,0xc3,0x28,0xa6,0x4c,0x8,0x7,0xf,0x1f,0x4a,0x3e,0x41,0x80,0x4a,
+ 0xa3,0x4c,0x51,0xf1,0xe2,0x19,0x98,0xf5,0xdb,0x36,0x86,0x5b,0x9f,0x1c,0x92,0xba,
+ 0xb3,0xca,0x7b,0xce,0x1d,0xda,0x35,0xfc,0x7b,0xf6,0xa7,0xa5,0x9d,0xb1,0x22,0x55,
+ 0x1e,0x5e,0x9f,0xfe,0x76,0x68,0x51,0xed,0x41,0xbe,0x22,0xf2,0xfb,0x39,0x73,0x70,
+ 0xa7,0xb0,0x70,0xcd,0xd2,0xe4,0xd3,0x3,0xa8,0x34,0xca,0x14,0x15,0x2d,0x96,0x87,
+ 0x38,0x68,0xe1,0xad,0x19,0xef,0x85,0xb3,0x7,0x77,0x4e,0xdd,0x51,0xe5,0x39,0xf1,
+ 0x80,0x7d,0xe0,0x73,0x63,0xc2,0xb6,0x9a,0x1d,0xa5,0x52,0x49,0x79,0xd8,0xba,0x6b,
+ 0x5b,0xe8,0x30,0xf6,0x92,0xd4,0xd7,0x4c,0x44,0xe4,0x97,0x19,0xfc,0xc2,0x1d,0x46,
+ 0xa5,0x43,0x85,0x52,0xa6,0xa8,0x58,0xf1,0x3e,0xa9,0x78,0x59,0xdb,0x9a,0x2d,0xeb,
+ 0xc2,0x35,0xf,0xfe,0x2d,0x75,0x7,0x95,0xf7,0x74,0x1c,0x7b,0x69,0x69,0xe8,0x46,
+ 0x1c,0x3a,0xe1,0xac,0x54,0x79,0x79,0xe7,0x9b,0x8f,0x3c,0xc8,0x57,0x44,0xea,0x94,
+ 0xb3,0x6,0x77,0xe,0xdf,0x2e,0xff,0x2e,0xf9,0xf4,0x0,0x2a,0x89,0x32,0x45,0x45,
+ 0x3a,0x31,0x5c,0x21,0x3e,0x57,0xea,0xb5,0x69,0xff,0x2c,0xe4,0x4,0xb5,0x38,0x74,
+ 0xe2,0x85,0x4f,0x5f,0xb,0x7b,0xf,0xec,0x2d,0x95,0x4a,0xca,0xcb,0x8e,0x3d,0x3b,
+ 0x43,0x8f,0x49,0xd7,0xa4,0xbe,0x76,0x22,0x22,0xbf,0xcc,0x5f,0x9e,0x1e,0x6a,0x54,
+ 0x3a,0x54,0x20,0x65,0x8a,0x8a,0x12,0xb,0xd4,0x89,0xc4,0x42,0xb5,0x6e,0xdb,0x86,
+ 0xd0,0xf7,0xfe,0x2,0x3e,0xa0,0xb7,0xba,0x2a,0x5c,0xff,0x48,0xbf,0xb0,0x72,0xe3,
+ 0xaa,0x9f,0x46,0xa0,0xbb,0xc4,0xaf,0x2c,0xcd,0xf9,0xe1,0xfb,0x70,0xce,0xd0,0x8b,
+ 0xd2,0x5f,0x43,0x11,0x91,0x93,0x12,0xbf,0x20,0x7b,0x7f,0xf6,0x27,0xc9,0xa7,0x7,
+ 0x50,0x29,0x94,0x29,0x2a,0xca,0x89,0x12,0x15,0xc5,0x12,0xf1,0xea,0xb4,0x7f,0x84,
+ 0x56,0x5,0x7c,0x40,0x6f,0x8f,0x49,0x57,0x87,0xaf,0x97,0xcd,0x9,0xfb,0xe,0xee,
+ 0xf7,0x50,0xde,0x32,0xf7,0xf4,0xc7,0x53,0xc,0xa3,0x10,0x91,0x3a,0xa5,0x6a,0x74,
+ 0xef,0xb0,0x62,0xe3,0xca,0xe4,0xd3,0x3,0xa8,0x4,0xca,0x14,0x15,0x6b,0xf3,0x8e,
+ 0x2d,0xe1,0xf2,0xfb,0x6e,0x4e,0xdd,0x21,0xe5,0x39,0xf1,0xda,0xfa,0x77,0x66,0x7d,
+ 0x10,0xe,0x1d,0x3e,0x54,0x5b,0x28,0x8d,0x42,0x2f,0x77,0x9b,0x76,0x6e,0x9,0xed,
+ 0xc6,0xf4,0x49,0x7d,0x2d,0x45,0x44,0x4e,0x4e,0x1c,0x95,0x3e,0xf0,0xf9,0xb1,0xe1,
+ 0xc0,0xe1,0x83,0xc9,0x27,0x8,0x50,0xee,0x94,0x29,0x2a,0x52,0x7c,0x30,0xed,0xeb,
+ 0x5f,0xbc,0x1d,0x5a,0xf5,0x6f,0x97,0xba,0x43,0xca,0x6b,0xe2,0x19,0x8e,0x21,0x2f,
+ 0x8e,0xb,0xdb,0x76,0x6f,0xff,0xa9,0x48,0xd5,0xfe,0x8f,0xf2,0xf7,0x8f,0x59,0xef,
+ 0x87,0x16,0xfd,0x9c,0x9d,0x12,0x91,0xdf,0xcf,0x19,0x83,0x3a,0x86,0xef,0x57,0x2d,
+ 0x4a,0x3e,0x3d,0x80,0x72,0xa7,0x4c,0x51,0x71,0xe2,0xb0,0x85,0xef,0x7e,0x58,0x10,
+ 0x2e,0xbd,0xe7,0xc6,0xd4,0x1d,0x51,0x9e,0xd3,0x65,0xfc,0x15,0x61,0xee,0xf,0xf3,
+ 0x7f,0x1e,0xc0,0x41,0x65,0xd8,0xb6,0x7b,0x47,0xe8,0x3c,0xee,0xf2,0xd4,0xd7,0x54,
+ 0x44,0xe4,0x97,0xb9,0x7d,0xf2,0x88,0xd2,0x65,0xdc,0x40,0xf9,0x53,0xa6,0xa8,0x38,
+ 0xb1,0x4c,0x3d,0xf8,0xce,0x93,0x85,0x1b,0x3b,0x1d,0x2f,0xef,0x7b,0x61,0xea,0xeb,
+ 0xc9,0xf4,0x3e,0x65,0xaa,0xd2,0x4c,0x5b,0x30,0xb3,0x74,0x83,0x79,0xda,0x6b,0x2b,
+ 0x22,0x72,0x72,0xe2,0xd9,0xa9,0x99,0x4b,0xbe,0x4d,0x3e,0x3d,0x80,0x72,0xa6,0x4c,
+ 0x51,0x71,0xe2,0xe5,0xf,0xed,0x46,0x17,0xec,0x1e,0x94,0xea,0xf8,0x50,0xc7,0x71,
+ 0x61,0xd3,0x8e,0x2d,0xa5,0x32,0x19,0xa3,0x4c,0x55,0x96,0x38,0xf2,0xf8,0x8a,0xfb,
+ 0x6f,0x2d,0xbd,0x96,0xa9,0xaf,0xb1,0x88,0xc8,0x49,0xb9,0xe6,0xe1,0xdb,0x42,0xcd,
+ 0xbe,0x5d,0xc9,0x27,0x8,0x50,0xae,0x94,0x29,0x2a,0xca,0xde,0x3,0xfb,0xc2,0xd0,
+ 0x97,0xc6,0xa7,0xee,0x78,0xf2,0x9c,0xd6,0x23,0x7a,0x86,0xcf,0xbe,0xff,0xb2,0xb4,
+ 0x6,0x71,0x7a,0x5f,0x69,0x82,0x9f,0xfb,0xa5,0x2a,0xce,0x82,0xd5,0x8b,0x43,0x9b,
+ 0x51,0xbd,0x52,0x5f,0x63,0x11,0x91,0x93,0xd3,0xa2,0x5f,0xdb,0xf0,0xee,0x37,0x1f,
+ 0x25,0x9f,0x1e,0x40,0xb9,0x52,0xa6,0xa8,0x18,0xc7,0x8e,0x1f,0x2f,0x5d,0xf6,0x70,
+ 0xfa,0xc0,0xe,0xa9,0x3b,0x9e,0xbc,0x26,0xe,0x9d,0xb8,0xe7,0xed,0xc7,0xc2,0xce,
+ 0x3d,0x35,0xa5,0x7b,0xa5,0xe2,0xe0,0x89,0x13,0xf7,0x4c,0x39,0x3b,0x55,0x79,0xde,
+ 0x98,0xf1,0x8e,0x61,0x14,0x22,0x52,0xa7,0xc4,0x2f,0x5f,0x7e,0xd8,0xb8,0x2a,0xf9,
+ 0xf4,0x0,0xca,0x91,0x32,0x45,0x45,0x88,0x67,0x61,0xd6,0x6e,0xdb,0x10,0xfa,0xdc,
+ 0x73,0x7d,0xea,0xe,0x27,0xcf,0x69,0x33,0xb2,0x57,0xf8,0x7c,0xfe,0xcc,0x64,0x25,
+ 0x62,0xa9,0x74,0xbf,0x54,0x25,0xdb,0xba,0x6b,0x7b,0xe8,0x32,0xae,0x6f,0xea,0x6b,
+ 0x2d,0x22,0x72,0x72,0xe2,0xa8,0xf4,0x91,0xaf,0xde,0x19,0xe,0x1d,0x39,0x9c,0x7c,
+ 0x82,0x0,0xe5,0x46,0x99,0xa2,0x22,0x1c,0xae,0xdd,0x91,0x3c,0xf5,0xd1,0x94,0xc2,
+ 0x7d,0xa3,0xdf,0xb2,0x7f,0xdb,0x70,0xe7,0xdf,0x1f,0x29,0x4d,0x75,0x3a,0x51,0xa0,
+ 0x14,0xa9,0xca,0xf7,0xd9,0xfc,0xe9,0x85,0x1b,0xa0,0x22,0x22,0xd9,0x72,0xce,0xd0,
+ 0x8b,0xc2,0xf2,0xd,0x3f,0x26,0x9f,0x1e,0x40,0xb9,0x51,0xa6,0xa8,0x8,0x6b,0xb6,
+ 0xac,0xb,0x3d,0xef,0xbc,0x36,0x75,0x47,0x93,0xd7,0xc4,0xcb,0xfb,0xae,0x7c,0xe0,
+ 0xd6,0xf0,0xe3,0xa6,0xd5,0xc9,0x2a,0x90,0x17,0x3b,0xf7,0xee,0xa,0xdd,0x26,0x5e,
+ 0x9d,0xfa,0xba,0x8b,0x88,0xfc,0x32,0xe3,0xdf,0x7c,0x20,0x1c,0x3c,0x7c,0x28,0xf9,
+ 0x4,0x1,0xca,0x89,0x32,0x45,0xd9,0x8b,0x97,0xf8,0xbd,0x32,0xed,0xef,0x85,0xfb,
+ 0x26,0xbf,0xdd,0x98,0x3e,0xa5,0x7b,0xc4,0xe2,0x59,0x39,0xf2,0xe7,0xcb,0x45,0xb3,
+ 0x8c,0x4a,0x17,0x91,0x3a,0xe5,0xfc,0xe1,0xdd,0xc2,0x7c,0xf,0xf2,0x85,0xb2,0xa4,
+ 0x4c,0x51,0xf6,0xbe,0x5e,0x36,0x27,0x5c,0x38,0xb2,0x67,0xea,0xe,0x26,0xb7,0xa9,
+ 0xae,0xa,0x53,0xa6,0xbd,0xf5,0xd3,0x90,0x89,0xda,0xff,0x91,0x3f,0xbb,0xf7,0xef,
+ 0x9,0x7d,0xef,0xbb,0xc5,0xa8,0x74,0x11,0xf9,0xdd,0xc4,0x7b,0xa7,0xfa,0x3d,0x3b,
+ 0xaa,0xf4,0xb9,0x1,0x94,0x17,0x65,0x8a,0xb2,0x16,0x77,0x1c,0xb7,0x3c,0x39,0x38,
+ 0x75,0xe7,0x92,0xe7,0x74,0x9b,0x78,0x55,0xd8,0xb6,0x6b,0x7b,0xb2,0xa,0xe4,0x55,
+ 0x69,0x54,0xfa,0x48,0xa3,0xd2,0x45,0xe4,0xf7,0x13,0xcf,0x64,0xc7,0xfb,0x2d,0x81,
+ 0xf2,0xa2,0x4c,0x51,0xb6,0xe2,0x59,0x99,0x4f,0xbf,0xff,0x32,0xb4,0xea,0xdf,0x2e,
+ 0x75,0xc7,0x92,0xd7,0xb4,0xec,0x57,0x15,0xde,0x9c,0xf9,0x2f,0x83,0x26,0xa,0xe2,
+ 0xb5,0xe9,0x6f,0x97,0xee,0x8f,0x4b,0x7b,0x2f,0x88,0x88,0x9c,0x9c,0x4e,0xe3,0x2f,
+ 0xf,0x6b,0xb6,0xae,0x4b,0x3e,0x3d,0x80,0x72,0xa0,0x4c,0x51,0x96,0x62,0x91,0x58,
+ 0xba,0x6e,0x45,0xe8,0x3a,0xe1,0xca,0xd4,0x1d,0x4a,0x5e,0x13,0xf,0xaa,0xaf,0x79,
+ 0xe8,0xb6,0xb0,0x75,0xd7,0xb6,0x64,0x25,0xc8,0xbb,0xf8,0x5a,0x77,0x18,0x7b,0x69,
+ 0xea,0xfb,0x41,0x44,0xe4,0xe4,0xc4,0xcb,0xfd,0xee,0xfa,0xc7,0x23,0x46,0xa5,0x43,
+ 0x19,0x51,0xa6,0x28,0x4b,0x7b,0xe,0xec,0xd,0xe3,0xde,0xb8,0xbf,0x70,0xf7,0x93,
+ 0xc4,0x7,0x34,0xce,0xf9,0x61,0xbe,0xb3,0x52,0x5,0xf3,0xce,0xd7,0x1f,0x1a,0x95,
+ 0x2e,0x22,0x75,0xca,0x5,0x23,0xba,0x87,0xa5,0xeb,0x57,0x24,0x9f,0x1e,0x40,0x73,
+ 0x53,0xa6,0x28,0x4b,0x5f,0x2f,0x9b,0x1b,0x2e,0x1c,0xd1,0x23,0x75,0x47,0x92,0xd7,
+ 0xc4,0xcb,0xfb,0x9e,0xfd,0xe4,0x15,0x45,0xaa,0x80,0xb6,0xef,0xde,0x11,0xba,0x1b,
+ 0x95,0x2e,0x22,0x75,0x48,0x3c,0x3b,0x35,0xe2,0x95,0x49,0xa5,0xe7,0xf,0x2,0xcd,
+ 0x4f,0x99,0xa2,0xec,0xc4,0xa1,0x13,0xb7,0x3e,0x3d,0x34,0x75,0x27,0x92,0xe7,0x74,
+ 0x9d,0x70,0x45,0xd8,0xe2,0xf2,0xbe,0xc2,0x9a,0xbe,0xe8,0xeb,0x70,0xe6,0xa0,0x4e,
+ 0xa9,0xef,0xd,0x11,0x91,0x93,0x73,0xd6,0xe0,0xce,0xa5,0x49,0xb7,0x40,0xf3,0x53,
+ 0xa6,0x28,0x3b,0x1f,0xcc,0xfd,0x34,0xb4,0x2a,0xda,0xf3,0x77,0x4a,0x43,0x27,0xde,
+ 0x75,0x56,0xaa,0xc0,0xe2,0x97,0x8,0xd7,0x3e,0x74,0x9b,0x51,0xe9,0x22,0x52,0xa7,
+ 0xf4,0xb9,0xf7,0x86,0xb0,0x6d,0xf7,0x8e,0xe4,0x13,0x4,0x68,0x2e,0xca,0x14,0x65,
+ 0x65,0xdf,0x81,0x7d,0xa5,0x1d,0x44,0xda,0x8e,0x23,0xcf,0xb9,0xe4,0xde,0x1b,0x4b,
+ 0x97,0x7a,0x51,0x6c,0xb,0x56,0x2f,0x31,0x2a,0x5d,0x44,0xea,0x96,0xea,0x36,0xe1,
+ 0x89,0x8f,0x5e,0x4c,0x3e,0x3d,0x80,0xe6,0xa2,0x4c,0x51,0x36,0x8e,0x1d,0x3f,0x16,
+ 0x66,0xff,0xf0,0x7d,0x68,0xd1,0xaf,0x58,0x63,0xa2,0xcf,0x1c,0xd4,0x31,0x7c,0xb9,
+ 0x68,0x96,0xb3,0x52,0x94,0xbc,0x6e,0x54,0xba,0x88,0xd4,0x31,0xad,0x47,0xf5,0xc,
+ 0x2b,0x37,0xad,0x4e,0x3e,0x3d,0x80,0xe6,0xa0,0x4c,0x51,0x36,0x8e,0x1c,0x3d,0x12,
+ 0xee,0xf9,0xc7,0xa3,0xe1,0xb4,0xdb,0x5b,0xa7,0xee,0x34,0xf2,0x98,0x38,0x74,0x62,
+ 0xe8,0x8b,0xe3,0xc3,0xae,0x7d,0xbb,0x93,0x55,0xa0,0xe8,0xb6,0xee,0xda,0x6e,0x54,
+ 0xba,0x88,0xd4,0x29,0x71,0x18,0xc5,0xf8,0x37,0x1f,0x8,0x7,0xe,0x1f,0x4c,0x3e,
+ 0x41,0x80,0xa6,0xa6,0x4c,0x51,0x36,0xe,0x1f,0x39,0x1c,0x6e,0x7a,0x6c,0x40,0xf8,
+ 0xe3,0x6d,0xe9,0x3b,0x8d,0xbc,0xe5,0xf,0xb7,0x5d,0x18,0xae,0xb8,0xff,0xd6,0xf0,
+ 0xc3,0xc6,0x55,0xe1,0x78,0xed,0xff,0xe0,0x84,0x9f,0xee,0x1b,0x2c,0xd6,0xc3,0xaa,
+ 0x45,0x24,0x5b,0xce,0x19,0x7a,0x51,0x98,0xbd,0x62,0x5e,0xf2,0xe9,0x1,0x34,0x35,
+ 0x65,0x8a,0xb2,0x11,0xcf,0x4c,0x7d,0x34,0xe7,0xf3,0x70,0xdd,0xc3,0xb7,0x87,0xde,
+ 0x77,0xfd,0x39,0xf4,0x98,0x78,0x4d,0xe8,0x74,0xc7,0xe5,0xa1,0xe3,0xd8,0x4b,0x43,
+ 0x87,0x31,0x97,0x96,0xfe,0x18,0xff,0xbc,0xeb,0xf8,0x2b,0x42,0x97,0xda,0x5c,0x14,
+ 0xff,0x38,0xae,0x6f,0x29,0xf1,0xff,0x9f,0x48,0xb7,0x9,0x57,0xfe,0xfc,0xd7,0x3b,
+ 0xdd,0x71,0x59,0xed,0xbf,0x7b,0x49,0x29,0x9d,0xc6,0x5e,0x56,0xfa,0x6b,0x3d,0x26,
+ 0x5e,0x5d,0xfb,0xcf,0x5c,0x55,0x4a,0xfc,0xe7,0xe3,0x5f,0x8f,0x89,0xbf,0x7e,0xfb,
+ 0xda,0x7f,0x2e,0xfe,0xb1,0x63,0xfc,0xf3,0xd2,0x7f,0x33,0xfe,0xfb,0x3f,0xfd,0xf1,
+ 0xc4,0xbf,0x13,0x47,0x58,0x77,0x19,0x57,0xfb,0xef,0xd5,0xfe,0x2c,0x17,0xd5,0xfe,
+ 0x31,0xfe,0x3c,0x17,0x8d,0xbf,0xb2,0xf4,0xf7,0xe2,0x5f,0xef,0x72,0x47,0xed,0x7f,
+ 0x77,0xec,0xe5,0xa5,0x5f,0xab,0xdd,0xe8,0x3e,0x3f,0xff,0xfb,0xf1,0x9f,0x8d,0x7f,
+ 0xbf,0xdb,0xc4,0xab,0x42,0x9f,0xbb,0xae,0xf,0xe3,0x5e,0xbf,0x3f,0x6c,0xdc,0xb1,
+ 0xd9,0xe5,0x7d,0xfc,0x97,0x38,0x8c,0x22,0xfe,0x3e,0x50,0xa8,0x44,0xa4,0x2e,0xb9,
+ 0xee,0xd1,0xea,0xb0,0x63,0x4f,0x4d,0xf2,0x9,0x2,0x34,0x25,0x65,0x8a,0xb2,0xb2,
+ 0x67,0xff,0xde,0x70,0xe0,0xd0,0x81,0xda,0x83,0xc9,0xbd,0xe1,0xe0,0xe1,0x83,0x61,
+ 0xcf,0x81,0x7d,0xa5,0x3f,0xee,0xde,0x97,0xfc,0xf9,0xfe,0x9f,0xfe,0x7c,0xef,0x81,
+ 0xfd,0xa5,0xcb,0x1a,0x76,0xef,0xdb,0x53,0xfb,0xcf,0x1f,0x2c,0x5d,0x26,0x17,0xff,
+ 0x3c,0xfe,0xf5,0x5f,0xfe,0xfd,0xf8,0x2c,0x8e,0x9a,0x7d,0xbb,0x4a,0xff,0xdc,0x89,
+ 0x5f,0x2f,0xfe,0xfd,0x43,0x87,0xf,0x95,0xfe,0x3b,0xf1,0x9f,0x2b,0xfd,0xfb,0xc9,
+ 0xdf,0x8f,0x7f,0x8c,0x7,0xb3,0x3f,0xff,0xba,0xa5,0x3f,0xfe,0xf4,0xe7,0x7b,0xe3,
+ 0xdf,0x8f,0xbf,0xee,0xc9,0x7f,0xbf,0xf4,0xeb,0xc5,0x5f,0xf7,0x50,0xf2,0xc7,0xf8,
+ 0x73,0xfe,0xf4,0xf3,0xfe,0xf4,0xcf,0x1d,0xf8,0xf9,0xaf,0x9f,0xf8,0xe7,0xe2,0x7f,
+ 0x37,0x9e,0x89,0x3b,0xa6,0x48,0xf1,0x2b,0x36,0xee,0xdc,0x1c,0x46,0xbc,0x38,0x31,
+ 0xf4,0x9c,0x78,0x6d,0xa9,0xa0,0xe7,0x35,0xf1,0xcb,0x89,0xce,0x63,0x2f,0xf,0x1d,
+ 0x47,0x5f,0x1a,0x3a,0x8c,0xbe,0x44,0xa,0x9c,0xf8,0x85,0x53,0xfb,0xd1,0x7d,0x42,
+ 0xd5,0xc8,0x5e,0xa1,0xf5,0x88,0x9e,0x3f,0x27,0xfe,0x79,0xd5,0xc8,0xde,0xa5,0xe1,
+ 0x2c,0xf1,0xcf,0x2f,0x18,0xd6,0x3d,0x9c,0x3b,0xe4,0xa2,0x70,0xd6,0xa0,0x4e,0xa1,
+ 0x55,0xbf,0x76,0xee,0x31,0xac,0x4d,0xcb,0xfe,0x6d,0xc3,0xb,0x9f,0xbd,0x91,0x7c,
+ 0x7a,0x0,0x4d,0x49,0x99,0x2,0x28,0x53,0xf1,0xac,0xe5,0xd1,0x63,0x47,0x73,0x1f,
+ 0x88,0xe2,0x97,0x4b,0x3f,0xe7,0xd8,0xb1,0x70,0xf4,0xe8,0xd1,0x70,0xf8,0xe8,0xe1,
+ 0xd2,0x17,0x51,0xfb,0xf,0x1d,0x28,0x7d,0x31,0x16,0xbf,0xf0,0x8a,0x5f,0x62,0xc5,
+ 0xb3,0x30,0x5b,0x77,0x6d,0xb,0x9b,0x77,0x6e,0xd,0x6b,0xb7,0x6d,0x8,0xdf,0xae,
+ 0x98,0x17,0x9e,0xf9,0x68,0x4a,0xe9,0x6a,0x84,0xb4,0xb2,0x51,0x84,0xb4,0x1b,0xd3,
+ 0x27,0xac,0xdc,0xbc,0x26,0x59,0x4d,0xa0,0xa9,0x28,0x53,0x0,0x40,0x59,0x8a,0x5f,
+ 0x28,0xc4,0xc4,0x69,0xaf,0xb1,0x78,0xc7,0xcb,0xc1,0xe3,0x59,0xfd,0x78,0x86,0x3f,
+ 0x16,0xac,0x13,0x29,0x15,0xad,0xfd,0x7b,0x4b,0x93,0x51,0x3b,0x8f,0xef,0x9b,0x5a,
+ 0x36,0xf2,0x9e,0x38,0x8c,0xe2,0xce,0x7f,0x3e,0xec,0xb,0xa,0x68,0x62,0xca,0x14,
+ 0x0,0x50,0xb6,0x4e,0x2e,0x54,0x27,0x12,0xb,0x43,0x2c,0x55,0x27,0xe7,0xd0,0x91,
+ 0x43,0xa5,0x7c,0xb6,0x60,0x7a,0x69,0x28,0x43,0x5a,0xe1,0xc8,0x7b,0x2e,0x18,0xd1,
+ 0x23,0xac,0xdf,0xbe,0x31,0x59,0x39,0xa0,0x29,0x28,0x53,0x0,0x40,0x45,0x38,0x51,
+ 0xac,0x4e,0x2e,0x57,0xb1,0x58,0x9d,0xf8,0x63,0x4c,0xbc,0xc,0x70,0xc2,0x5b,0xf,
+ 0x14,0xea,0x31,0x1b,0x27,0x12,0xcf,0x4e,0x3d,0xf0,0xde,0x53,0xc9,0x6a,0x1,0x4d,
+ 0x41,0x99,0x2,0x0,0x2a,0xce,0xc9,0xc5,0xea,0x44,0x4e,0x88,0xf,0xb2,0xed,0x34,
+ 0xee,0xf2,0xd4,0xc2,0x91,0xf7,0xb4,0x19,0xd5,0x2b,0x2c,0x5b,0xff,0x63,0xb2,0x12,
+ 0x40,0x63,0x53,0xa6,0x0,0x80,0xdc,0x99,0xfc,0xe9,0x2b,0x85,0x3d,0x3b,0x35,0x6c,
+ 0xca,0xc4,0xd2,0x7d,0x64,0x40,0xe3,0x53,0xa6,0x0,0x80,0xdc,0xd9,0xba,0x6b,0x7b,
+ 0xe8,0x34,0xbe,0x98,0x67,0xa7,0xce,0x1c,0xd4,0x29,0xcc,0x5a,0x3a,0x3b,0x59,0x9,
+ 0xa0,0x31,0x29,0x53,0x0,0x40,0x2e,0xbd,0xf0,0xd9,0xeb,0xe1,0x8f,0xd5,0xe9,0x85,
+ 0x23,0xef,0xb9,0xf8,0x9e,0xeb,0xc3,0x8e,0x3d,0x3b,0x93,0x95,0x0,0x1a,0x8b,0x32,
+ 0x5,0x0,0xe4,0x52,0x7c,0x1e,0x55,0xdf,0x7,0x6f,0x49,0x2d,0x1b,0xb9,0x4f,0x6d,
+ 0x89,0x8c,0x65,0x12,0x68,0x5c,0xca,0x14,0x0,0x90,0x5b,0xf3,0x57,0x2d,0xe,0xe7,
+ 0xd,0xef,0x96,0x5e,0x38,0x72,0x9e,0x8e,0xe3,0x2e,0xb,0x9b,0x76,0x6e,0x49,0x56,
+ 0x2,0x68,0xc,0xca,0x14,0x0,0x90,0x6b,0xf,0xbc,0xfb,0x74,0x41,0x87,0x51,0xb4,
+ 0xe,0x8f,0xbc,0x3f,0x39,0x59,0x5,0xa0,0x31,0x28,0x53,0x0,0x40,0xae,0xc5,0xb3,
+ 0x33,0xf1,0x2c,0x4d,0x5a,0xe1,0xc8,0x7b,0x2e,0x1c,0xd9,0x33,0x2c,0x5c,0xbd,0x24,
+ 0x59,0x9,0xa0,0xa1,0x29,0x53,0x0,0x40,0xee,0x3d,0xfd,0xf1,0x94,0xc2,0x8e,0x4a,
+ 0xef,0xf7,0xdc,0xa8,0xb0,0xe7,0xc0,0xde,0x64,0x25,0x80,0x86,0xa4,0x4c,0x1,0x0,
+ 0xb9,0x17,0x47,0xa5,0x77,0x99,0x70,0x45,0x6a,0xe1,0xc8,0x7b,0xfe,0x34,0xa0,0x7d,
+ 0xf8,0x62,0xe1,0x57,0xc9,0x4a,0x0,0xd,0x49,0x99,0x2,0x0,0xa,0xe1,0x95,0x2f,
+ 0xfe,0x1e,0x5a,0xf6,0x6f,0x97,0x5a,0x38,0xf2,0x9e,0x8b,0x26,0x5e,0x19,0xb6,0xed,
+ 0xde,0x91,0xac,0x4,0xd0,0x50,0x94,0x29,0x0,0xa0,0x10,0x76,0xee,0xdd,0x15,0x6e,
+ 0x7c,0x62,0x40,0xe9,0xd2,0xb7,0xb4,0xc2,0x91,0xe7,0xc4,0x4b,0x1c,0x27,0x7f,0xfa,
+ 0x4a,0xb2,0x12,0x40,0x43,0x51,0xa6,0x0,0x80,0xc2,0x58,0xb4,0x66,0x69,0x68,0x33,
+ 0xaa,0x57,0x6a,0xe1,0xc8,0x7b,0x3a,0xdc,0x71,0x69,0x58,0xb9,0x69,0x75,0xb2,0x12,
+ 0x40,0x43,0x50,0xa6,0x0,0x80,0x42,0x79,0xf4,0x83,0xe7,0xa,0x3b,0x8c,0x62,0xc2,
+ 0x5b,0xf,0x84,0xfd,0x87,0xe,0x24,0x2b,0x1,0x9c,0x2a,0x65,0xa,0x0,0x28,0x94,
+ 0x2d,0x35,0xdb,0xa,0x3b,0x2a,0xfd,0xdc,0xa1,0x17,0x85,0xd9,0x3f,0xcc,0x4b,0x56,
+ 0x2,0x38,0x55,0xca,0x14,0x0,0x50,0x38,0x93,0x3f,0x79,0xa5,0x90,0xf7,0x4e,0xc5,
+ 0xf4,0x7d,0xe0,0x96,0xb0,0x63,0x4f,0x4d,0xb2,0x12,0xc0,0xa9,0x50,0xa6,0x0,0x80,
+ 0xc2,0xd9,0xbe,0x7b,0x47,0xe8,0x7d,0xcf,0x9f,0x53,0xcb,0x46,0xee,0x53,0x5d,0x15,
+ 0x9e,0xfd,0xf4,0xb5,0x64,0x25,0x80,0x53,0xa1,0x4c,0x1,0x0,0x85,0x34,0x7b,0xc5,
+ 0xf7,0xe1,0x9c,0xa1,0x17,0xa5,0x17,0x8e,0x9c,0xa7,0x6a,0xf4,0xc5,0x61,0xe5,0xe6,
+ 0x35,0xc9,0x4a,0x0,0x59,0x29,0x53,0x0,0x40,0x21,0xc5,0x41,0xc,0x93,0xfe,0xfe,
+ 0x70,0x41,0x87,0x51,0xb4,0xe,0x13,0xdf,0x7a,0x30,0x1c,0x3c,0x7c,0x28,0x59,0xd,
+ 0x20,0xb,0x65,0xa,0x0,0x28,0xac,0x55,0x5b,0xd6,0x96,0x46,0x86,0xa7,0x15,0x8e,
+ 0xbc,0xe7,0xbc,0x61,0x5d,0xc3,0x77,0x3f,0x2e,0x48,0x56,0x2,0xc8,0x42,0x99,0x2,
+ 0x0,0xa,0xed,0xa9,0x8f,0x5e,0x2c,0xe4,0xd9,0xa9,0x98,0xdb,0x26,0xf,0xf,0x7b,
+ 0xe,0xec,0x4d,0x56,0x2,0xa8,0x2f,0x65,0xa,0x0,0x28,0xb4,0xd2,0xa8,0xf4,0x82,
+ 0x9e,0x9d,0xfa,0xd3,0x80,0xf6,0xe1,0xf3,0x5,0x33,0x92,0x95,0x0,0xea,0x4b,0x99,
+ 0x2,0x0,0xa,0xef,0xb9,0xa9,0xaf,0x86,0x3f,0x56,0xa7,0x17,0x8e,0xbc,0xa7,0xfb,
+ 0x9d,0xd7,0x84,0x6d,0xbb,0x77,0x24,0x2b,0x1,0xd4,0x87,0x32,0x5,0x0,0x14,0xde,
+ 0x8e,0x3d,0x3b,0xc3,0xe5,0xf7,0xdf,0x9c,0x5a,0x36,0x72,0x9f,0xda,0x12,0xf9,0xd4,
+ 0xc7,0x2f,0x25,0x2b,0x1,0xd4,0x87,0x32,0x5,0x0,0x50,0x6b,0xee,0x8f,0xf3,0x4b,
+ 0x43,0x19,0x52,0xb,0x47,0xce,0xd3,0x7e,0xec,0x25,0x61,0xd3,0xce,0x2d,0xc9,0x4a,
+ 0x0,0x75,0xa5,0x4c,0x1,0x0,0xd4,0x3a,0x70,0xf8,0x60,0xb8,0xf7,0xed,0xc7,0xb,
+ 0x3a,0x2a,0xbd,0x4d,0x78,0xf4,0xdf,0xcf,0x26,0x2b,0x1,0xd4,0x95,0x32,0x5,0x0,
+ 0x90,0x58,0xbd,0x65,0x5d,0x61,0x47,0xa5,0x5f,0x38,0xb2,0x67,0x58,0xb0,0x6a,0x71,
+ 0xb2,0x12,0x40,0x5d,0x28,0x53,0x0,0x0,0x27,0x79,0xe6,0x93,0x29,0x85,0x3d,0x3b,
+ 0xf5,0x97,0xa7,0x87,0x86,0xdd,0xfb,0xf7,0x24,0x2b,0x1,0xfc,0x1e,0x65,0xa,0x0,
+ 0xe0,0x24,0x5b,0x77,0x6d,0xb,0x9d,0xc6,0x5f,0x96,0x5a,0x38,0xf2,0x9e,0x96,0xfd,
+ 0xdb,0x85,0xf,0xe6,0x7c,0x9a,0xac,0x4,0xf0,0x7b,0x94,0x29,0x0,0x80,0x5f,0x78,
+ 0xe1,0xb3,0xd7,0xb,0x3b,0x2a,0xbd,0x6a,0xf4,0xc5,0x61,0xe5,0xa6,0xd5,0xc9,0x4a,
+ 0x0,0xbf,0x45,0x99,0x2,0x0,0xf8,0x85,0x1d,0x7b,0x6a,0xc2,0x15,0xf,0xde,0x9a,
+ 0x5a,0x36,0xf2,0x9e,0x78,0x89,0xe3,0xa8,0xd7,0xee,0x2e,0xd,0xe4,0x0,0x7e,0x9b,
+ 0x32,0x5,0x0,0x90,0xe2,0xbb,0x95,0xb,0xc2,0x5,0x23,0x7a,0xa4,0x16,0x8e,0xbc,
+ 0xe7,0xac,0x21,0x9d,0xc3,0xd7,0x4b,0xe7,0x24,0x2b,0x1,0xfc,0x1a,0x65,0xa,0x0,
+ 0x20,0x45,0x3c,0x33,0x73,0xff,0x3b,0x4f,0x14,0x72,0x18,0x45,0xcc,0xb5,0x8f,0xdc,
+ 0x5e,0x3a,0x43,0x7,0xfc,0x3a,0x65,0xa,0x0,0xe0,0x57,0x14,0x79,0x54,0x7a,0xab,
+ 0xfe,0xed,0xc2,0xb,0x53,0x5f,0x4f,0x56,0x2,0x48,0xa3,0x4c,0x1,0x0,0xfc,0x86,
+ 0x27,0xfe,0xfd,0x7c,0x61,0xcf,0x4e,0xc5,0x22,0x69,0x18,0x5,0xfc,0x3a,0x65,0xa,
+ 0x0,0xe0,0x37,0x6c,0xd8,0xb1,0x29,0xb4,0x1f,0xdb,0x27,0xb5,0x6c,0xe4,0x3e,0xd5,
+ 0x6d,0xc2,0x98,0xd7,0xee,0x9,0x7,0xf,0x1f,0x4a,0x56,0x3,0x38,0x99,0x32,0x5,
+ 0x0,0xf0,0x1b,0x8e,0x1e,0x3d,0x1a,0x1e,0x7a,0xef,0xe9,0xd0,0xa2,0x5f,0x55,0x7a,
+ 0xe1,0xc8,0x79,0xce,0x19,0xda,0x25,0xcc,0x5f,0xb5,0x38,0x59,0xd,0xe0,0x64,0xca,
+ 0x14,0x0,0xc0,0x6f,0x38,0x7e,0xfc,0x78,0x58,0xb6,0x7e,0x45,0xe8,0x7d,0xf7,0x75,
+ 0xa9,0x65,0xa3,0x8,0xb9,0xf5,0xa9,0x21,0x61,0xd7,0xbe,0xdd,0xc9,0x8a,0x0,0x27,
+ 0x28,0x53,0x0,0x0,0xbf,0xe3,0xf0,0xd1,0xc3,0xe1,0xbd,0x6f,0x3f,0x9,0x67,0xc,
+ 0xea,0x98,0x5a,0x36,0xf2,0x9e,0x3f,0xd,0xec,0x10,0xde,0xfe,0xe6,0xdf,0xc9,0x6a,
+ 0x0,0x27,0x28,0x53,0x0,0x0,0xbf,0xe3,0xd8,0xb1,0x63,0x61,0xd3,0xce,0x2d,0x61,
+ 0xc0,0xf3,0x63,0x4b,0xf7,0x11,0xa5,0x15,0x8e,0xbc,0xa7,0xfb,0xa4,0xab,0xc2,0x81,
+ 0x43,0x1e,0xe4,0xb,0x27,0x53,0xa6,0x0,0x0,0xea,0xe0,0xd0,0x91,0x43,0x61,0xde,
+ 0xca,0x5,0xa1,0xfd,0x98,0x4b,0xa,0x39,0xdd,0x2f,0x8e,0x4a,0xdf,0xb6,0x7b,0x47,
+ 0xb2,0x1a,0x40,0xa4,0x4c,0x1,0x0,0xd4,0x41,0xbc,0x77,0xea,0xd0,0xe1,0x43,0xe1,
+ 0xe3,0xef,0xa6,0x85,0xb6,0x63,0xfa,0x14,0xee,0xc,0x55,0xab,0x1,0xed,0xc2,0xe6,
+ 0x9a,0x6d,0xc9,0x6a,0x0,0x91,0x32,0x5,0x0,0x50,0x47,0xa5,0x42,0x75,0xe4,0x70,
+ 0xe9,0xc,0x4d,0x9c,0x70,0x37,0x6b,0xe9,0xec,0xf0,0xdd,0x8f,0xb,0xc2,0xfc,0xd5,
+ 0x8b,0xc3,0xc2,0xb5,0x4b,0xc3,0x9a,0xad,0xeb,0xc2,0xce,0xbd,0x35,0xc9,0x3f,0xd,
+ 0xe4,0x9d,0x32,0x5,0x0,0x50,0xf,0xb1,0x50,0x1d,0x3b,0x7e,0x2c,0x1c,0x3d,0x76,
+ 0x34,0x1c,0xae,0x2d,0x56,0x31,0x47,0x8e,0x1e,0x29,0xfd,0x79,0xfc,0x7b,0x40,0x71,
+ 0x28,0x53,0x0,0x0,0x19,0xc5,0xf2,0xa4,0x40,0x41,0x71,0x29,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,
+ 0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,
+ 0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,
+ 0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,
+ 0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,
+ 0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,
+ 0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,
+ 0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,
+ 0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,
+ 0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,
+ 0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,
+ 0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,
+ 0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,
+ 0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,
+ 0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,
+ 0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,
+ 0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,
+ 0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,
+ 0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,
+ 0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,
+ 0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,
+ 0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,
+ 0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,
+ 0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,
+ 0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,
+ 0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,
+ 0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,
+ 0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,
+ 0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,
+ 0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,
+ 0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,
+ 0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,
+ 0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,
+ 0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,
+ 0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,
+ 0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,
+ 0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,0x19,0x28,0x53,0x0,0x0,0x0,
+ 0x19,0x28,0x53,0x0,0x0,0x0,0x19,0xfc,0x54,0xa6,0xfe,0x67,0xf8,0xff,0x3,0x14,
+ 0x9d,0xc1,0x84,0x1,0x1c,0x8b,0x19,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,
+ 0x42,0x60,0x82,
+
+};
+
+static const unsigned char qt_resource_name[] = {
+ // image
+ 0x0,0x5,
+ 0x0,0x70,0x37,0xd5,
+ 0x0,0x69,
+ 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,
+ // html
+ 0x0,0x4,
+ 0x0,0x6,0xfb,0x3c,
+ 0x0,0x68,
+ 0x0,0x74,0x0,0x6d,0x0,0x6c,
+ // icon
+ 0x0,0x4,
+ 0x0,0x6,0xfa,0x5e,
+ 0x0,0x69,
+ 0x0,0x63,0x0,0x6f,0x0,0x6e,
+ // qml
+ 0x0,0x3,
+ 0x0,0x0,0x78,0x3c,
+ 0x0,0x71,
+ 0x0,0x6d,0x0,0x6c,
+ // res
+ 0x0,0x3,
+ 0x0,0x0,0x78,0xc3,
+ 0x0,0x72,
+ 0x0,0x65,0x0,0x73,
+ // MAP2.qml
+ 0x0,0x8,
+ 0x6,0x35,0x5e,0x1c,
+ 0x0,0x4d,
+ 0x0,0x41,0x0,0x50,0x0,0x32,0x0,0x2e,0x0,0x71,0x0,0x6d,0x0,0x6c,
+ // MAP.qml
+ 0x0,0x7,
+ 0x1,0x63,0x58,0x9c,
+ 0x0,0x4d,
+ 0x0,0x41,0x0,0x50,0x0,0x2e,0x0,0x71,0x0,0x6d,0x0,0x6c,
+ // green.png
+ 0x0,0x9,
+ 0xb,0xc1,0x8a,0x47,
+ 0x0,0x67,
+ 0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+ // yellow.png
+ 0x0,0xa,
+ 0x3,0x69,0xaf,0x27,
+ 0x0,0x79,
+ 0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+ // red.png
+ 0x0,0x7,
+ 0x8,0xb7,0x57,0xa7,
+ 0x0,0x72,
+ 0x0,0x65,0x0,0x64,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+ // map.html
+ 0x0,0x8,
+ 0x8,0x34,0xf5,0x5c,
+ 0x0,0x6d,
+ 0x0,0x61,0x0,0x70,0x0,0x2e,0x0,0x68,0x0,0x74,0x0,0x6d,0x0,0x6c,
+ // map.svg
+ 0x0,0x7,
+ 0x3,0x83,0x5a,0x27,
+ 0x0,0x6d,
+ 0x0,0x61,0x0,0x70,0x0,0x2e,0x0,0x73,0x0,0x76,0x0,0x67,
+ // mapbtn.svg
+ 0x0,0xa,
+ 0x9,0xbf,0x2a,0x7,
+ 0x0,0x6d,
+ 0x0,0x61,0x0,0x70,0x0,0x62,0x0,0x74,0x0,0x6e,0x0,0x2e,0x0,0x73,0x0,0x76,0x0,0x67,
+ // location.svg
+ 0x0,0xc,
+ 0x2,0x4a,0x6b,0x87,
+ 0x0,0x6c,
+ 0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x73,0x0,0x76,0x0,0x67,
+ // UAV.svg
+ 0x0,0x7,
+ 0x9,0x69,0x5a,0x67,
+ 0x0,0x55,
+ 0x0,0x41,0x0,0x56,0x0,0x2e,0x0,0x73,0x0,0x76,0x0,0x67,
+ // health.png
+ 0x0,0xa,
+ 0x3,0xa6,0x80,0x47,
+ 0x0,0x68,
+ 0x0,0x65,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x68,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+ // uav.png
+ 0x0,0x7,
+ 0xb,0x89,0x57,0xa7,
+ 0x0,0x75,
+ 0x0,0x61,0x0,0x76,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+ // logo_backgroundless.png
+ 0x0,0x17,
+ 0xb,0xf3,0xb4,0x7,
+ 0x0,0x6c,
+ 0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x5f,0x0,0x62,0x0,0x61,0x0,0x63,0x0,0x6b,0x0,0x67,0x0,0x72,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x6c,0x0,0x65,
+ 0x0,0x73,0x0,0x73,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+ // info.png
+ 0x0,0x8,
+ 0x4,0xd2,0x59,0x47,
+ 0x0,0x69,
+ 0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+ // tab.svg
+ 0x0,0x7,
+ 0xa,0x75,0x5a,0x27,
+ 0x0,0x74,
+ 0x0,0x61,0x0,0x62,0x0,0x2e,0x0,0x73,0x0,0x76,0x0,0x67,
+ // map.png
+ 0x0,0x7,
+ 0x3,0x83,0x57,0xa7,
+ 0x0,0x6d,
+ 0x0,0x61,0x0,0x70,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+ // location.png
+ 0x0,0xc,
+ 0x2,0x4a,0x66,0x7,
+ 0x0,0x6c,
+ 0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+ // soldier.svg
+ 0x0,0xb,
+ 0xf,0x31,0x9f,0x87,
+ 0x0,0x73,
+ 0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x73,0x0,0x76,0x0,0x67,
+ // robot.png
+ 0x0,0x9,
+ 0x9,0x67,0xa5,0xe7,
+ 0x0,0x72,
+ 0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+ // health.png.svg
+ 0x0,0xe,
+ 0x0,0x51,0x17,0xc7,
+ 0x0,0x68,
+ 0x0,0x65,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x68,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,0x0,0x2e,0x0,0x73,0x0,0x76,0x0,0x67,
+ // tab.png
+ 0x0,0x7,
+ 0xa,0x75,0x57,0xa7,
+ 0x0,0x74,
+ 0x0,0x61,0x0,0x62,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+ // infomation.svg
+ 0x0,0xe,
+ 0xa,0xd,0x37,0x87,
+ 0x0,0x69,
+ 0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x73,0x0,0x76,0x0,0x67,
+ // robotbtn.svg
+ 0x0,0xc,
+ 0x6,0x9a,0x77,0x87,
+ 0x0,0x72,
+ 0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x62,0x0,0x74,0x0,0x6e,0x0,0x2e,0x0,0x73,0x0,0x76,0x0,0x67,
+ // health.svg
+ 0x0,0xa,
+ 0x3,0xa6,0x8d,0xc7,
+ 0x0,0x68,
+ 0x0,0x65,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x68,0x0,0x2e,0x0,0x73,0x0,0x76,0x0,0x67,
+ // soldier.png
+ 0x0,0xb,
+ 0xf,0x31,0x92,0x7,
+ 0x0,0x73,
+ 0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+ // MapBackGround.png
+ 0x0,0x11,
+ 0x6,0x36,0x97,0x87,
+ 0x0,0x4d,
+ 0x0,0x61,0x0,0x70,0x0,0x42,0x0,0x61,0x0,0x63,0x0,0x6b,0x0,0x47,0x0,0x72,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+
+ // logo.png
+ 0x0,0x8,
+ 0x5,0xe2,0x59,0x27,
+ 0x0,0x6c,
+ 0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+
+};
+
+static const unsigned char qt_resource_struct[] = {
+ // :
+ 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x1,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+ // :/qml
+ 0x0,0x0,0x0,0x2c,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+ // :/icon
+ 0x0,0x0,0x0,0x1e,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1f,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+ // :/html
+ 0x0,0x0,0x0,0x10,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+ // :/image
+ 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+ // :/image/res
+ 0x0,0x0,0x0,0x38,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+ // :/image/res/image
+ 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x7,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+ // :/image/res/image/health.png.svg
+ 0x0,0x0,0x2,0x1c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x49,0x62,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/location.png
+ 0x0,0x0,0x1,0xca,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x38,0xf5,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/location.svg
+ 0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xbc,0xe7,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/map.png
+ 0x0,0x0,0x1,0xb6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x35,0x68,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/map.svg
+ 0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xb4,0xb7,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/health.png
+ 0x0,0x0,0x1,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xc7,0x6a,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/health.svg
+ 0x0,0x0,0x2,0x92,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x62,0xac,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/info.png
+ 0x0,0x0,0x1,0x8c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x30,0x2d,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/logo.png
+ 0x0,0x0,0x2,0xf0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xa2,0x54,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/MapBackGround.png
+ 0x0,0x0,0x2,0xc8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x6d,0x5b,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/robotbtn.svg
+ 0x0,0x0,0x2,0x74,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x55,0x26,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/robot.png
+ 0x0,0x0,0x2,0x4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x45,0x22,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/UAV.svg
+ 0x0,0x0,0x1,0x16,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xbf,0x4c,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/mapbtn.svg
+ 0x0,0x0,0x0,0xde,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xb8,0xcf,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/infomation.svg
+ 0x0,0x0,0x2,0x52,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x51,0x39,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/tab.png
+ 0x0,0x0,0x2,0x3e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x50,0xa,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/tab.svg
+ 0x0,0x0,0x1,0xa2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x32,0xf0,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/uav.png
+ 0x0,0x0,0x1,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xcb,0x95,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/logo_backgroundless.png
+ 0x0,0x0,0x1,0x58,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xce,0x5d,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/soldier.png
+ 0x0,0x0,0x2,0xac,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x69,0x54,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/image/res/image/soldier.svg
+ 0x0,0x0,0x1,0xe8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x3b,0xcf,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/html/res
+ 0x0,0x0,0x0,0x38,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+ // :/html/res/html
+ 0x0,0x0,0x0,0x10,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+ // :/html/res/html/map.html
+ 0x0,0x0,0x0,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x8d,0x32,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/icon/res
+ 0x0,0x0,0x0,0x38,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+ // :/icon/res/icon
+ 0x0,0x0,0x0,0x1e,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x21,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+ // :/icon/res/icon/yellow.png
+ 0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x38,0x37,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/icon/res/icon/red.png
+ 0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x60,0xf5,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/icon/res/icon/green.png
+ 0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x18,0x51,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/qml/res
+ 0x0,0x0,0x0,0x38,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+ // :/qml/res/qml
+ 0x0,0x0,0x0,0x2c,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x26,
+0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+ // :/qml/res/qml/MAP.qml
+ 0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3,0xa4,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+ // :/qml/res/qml/MAP2.qml
+ 0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
+0x0,0x0,0x1,0x97,0x7d,0x84,0x53,0x9e,
+
+};
+
+#ifdef QT_NAMESPACE
+# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name
+# define QT_RCC_MANGLE_NAMESPACE0(x) x
+# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b
+# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b)
+# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \
+ QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE))
+#else
+# define QT_RCC_PREPEND_NAMESPACE(name) name
+# define QT_RCC_MANGLE_NAMESPACE(name) name
+#endif
+
+#ifdef QT_NAMESPACE
+namespace QT_NAMESPACE {
+#endif
+
+bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
+bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
+
+#ifdef QT_NAMESPACE
+}
+#endif
+
+int QT_RCC_MANGLE_NAMESPACE(qInitResources_res)();
+int QT_RCC_MANGLE_NAMESPACE(qInitResources_res)()
+{
+ int version = 3;
+ QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData)
+ (version, qt_resource_struct, qt_resource_name, qt_resource_data);
+ return 1;
+}
+
+int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_res)();
+int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_res)()
+{
+ int version = 3;
+ QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData)
+ (version, qt_resource_struct, qt_resource_name, qt_resource_data);
+ return 1;
+}
+
+namespace {
+ struct initializer {
+ initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_res)(); }
+ ~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_res)(); }
+ } dummy;
+}
diff --git a/src/Client/qrc_res.o b/src/Client/build/qrc_res.o
similarity index 97%
rename from src/Client/qrc_res.o
rename to src/Client/build/qrc_res.o
index 5bebfd2..4fac1b3 100644
Binary files a/src/Client/qrc_res.o and b/src/Client/build/qrc_res.o differ
diff --git a/src/Client/ui_InjuryAnalysisUI.h b/src/Client/build/ui_InjuryAnalysisUI.h
similarity index 99%
rename from src/Client/ui_InjuryAnalysisUI.h
rename to src/Client/build/ui_InjuryAnalysisUI.h
index f2f25c4..6580b87 100644
--- a/src/Client/ui_InjuryAnalysisUI.h
+++ b/src/Client/build/ui_InjuryAnalysisUI.h
@@ -1,7 +1,7 @@
/********************************************************************************
** Form generated from reading UI file 'InjuryAnalysisUI.ui'
**
-** Created by: Qt User Interface Compiler version 5.15.13
+** Created by: Qt User Interface Compiler version 5.15.15
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
diff --git a/src/Client/ui_guidingui.h b/src/Client/build/ui_guidingui.h
similarity index 91%
rename from src/Client/ui_guidingui.h
rename to src/Client/build/ui_guidingui.h
index f65f03a..dda3210 100644
--- a/src/Client/ui_guidingui.h
+++ b/src/Client/build/ui_guidingui.h
@@ -1,7 +1,7 @@
/********************************************************************************
** Form generated from reading UI file 'guidingui.ui'
**
-** Created by: Qt User Interface Compiler version 5.15.13
+** Created by: Qt User Interface Compiler version 5.15.15
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
@@ -102,7 +102,7 @@ public:
if (GuidingUI->objectName().isEmpty())
GuidingUI->setObjectName(QString::fromUtf8("GuidingUI"));
GuidingUI->setEnabled(true);
- GuidingUI->resize(1000, 663);
+ GuidingUI->resize(1400, 900);
GuidingUI->setToolTipDuration(0);
GuidingUI->setStyleSheet(QString::fromUtf8("#centralwidget{\n"
" background-color: rgb(24, 33, 45);\n"
@@ -166,13 +166,14 @@ public:
label_2->setObjectName(QString::fromUtf8("label_2"));
label_2->setStyleSheet(QString::fromUtf8("QLabel {\n"
" background-color: rgba(15, 28, 34, 0);\n"
-" color: rgb(82, 194, 242); /* \350\256\276\347\275\256\345\255\227\344\275\223\351\242\234\350\211\262\344\270\272\344\272\256\350\223\235\350\211\262 */\n"
+" color: rgb(82, 194, 242);\n"
" border: none;\n"
-" padding: 10px 20px; /* \350\256\276\347\275\256\345\206\205\350\276\271\350\267\235 */\n"
-" border-radius: 5px; /* \350\256\276\347\275\256\346\214\211\351\222\256\345\234\206\350\247\222 */\n"
-" font-size: 28px; /* \350\256\276\347\275\256\346\226\207\345\255\227\345\244\247\345\260\217 */\n"
-" font-weight: bold; /*\350\256\276\347\275\256\345\255\227\344\275\223\345\212\240\347\262\227*/\n"
-" text-align: left; /* \350\256\276\347\275\256\345\255\227\344\275\223\345\261\205\345\267\246\345\257\271\351\275\220 */\n"
+" padding: 10px 20px;\n"
+" border-radius: 5px;\n"
+" font-size: 32px;\n"
+" font-weight: bold;\n"
+" font-family: \"Courier New\", \"Monaco\", monospace;\n"
+" text-align: left;\n"
"}\n"
""));
@@ -193,8 +194,8 @@ public:
horizontalLayout_main->setObjectName(QString::fromUtf8("horizontalLayout_main"));
leftPanel = new QWidget(centralwidget);
leftPanel->setObjectName(QString::fromUtf8("leftPanel"));
- leftPanel->setMinimumSize(QSize(210, 0));
- leftPanel->setMaximumSize(QSize(210, 16777215));
+ leftPanel->setMinimumSize(QSize(250, 0));
+ leftPanel->setMaximumSize(QSize(250, 16777215));
leftPanel->setStyleSheet(QString::fromUtf8("background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:1, stop:0 rgb(15, 22, 32), stop:1 rgb(25, 35, 45));"));
verticalLayout = new QVBoxLayout(leftPanel);
verticalLayout->setSpacing(20);
@@ -202,21 +203,30 @@ public:
verticalLayout->setContentsMargins(10, 15, 10, 10);
leftPanelTitle = new QLabel(leftPanel);
leftPanelTitle->setObjectName(QString::fromUtf8("leftPanelTitle"));
- leftPanelTitle->setStyleSheet(QString::fromUtf8("color: rgb(82, 194, 242);\n"
+ leftPanelTitle->setStyleSheet(QString::fromUtf8("color: rgb(255, 255, 255);\n"
"font-size: 18px;\n"
"font-weight: bold;\n"
-"padding: 5px;\n"
-"margin-bottom: 10px;"));
+"padding: 12px;\n"
+"margin-bottom: 10px;\n"
+"background: qlineargradient(x1:0, y1:0, x2:1, y2:1, \n"
+" stop:0 rgba(82, 194, 242, 0.3), \n"
+" stop:1 rgba(45, 120, 180, 0.3));\n"
+"border: 2px solid rgba(82, 194, 242, 0.7);\n"
+"border-radius: 8px;"));
leftPanelTitle->setAlignment(Qt::AlignCenter);
verticalLayout->addWidget(leftPanelTitle);
separatorLine = new QLabel(leftPanel);
separatorLine->setObjectName(QString::fromUtf8("separatorLine"));
- separatorLine->setMinimumSize(QSize(0, 2));
- separatorLine->setMaximumSize(QSize(16777215, 2));
- separatorLine->setStyleSheet(QString::fromUtf8("background-color: rgba(82, 194, 242, 0.5);\n"
-"margin-bottom: 15px;"));
+ separatorLine->setMinimumSize(QSize(0, 3));
+ separatorLine->setMaximumSize(QSize(16777215, 3));
+ separatorLine->setStyleSheet(QString::fromUtf8("background: qlineargradient(x1:0, y1:0, x2:1, y2:0,\n"
+" stop:0 rgba(82, 194, 242, 0.0),\n"
+" stop:0.5 rgba(82, 194, 242, 0.8),\n"
+" stop:1 rgba(82, 194, 242, 0.0));\n"
+"margin-bottom: 15px;\n"
+"border-radius: 2px;"));
verticalLayout->addWidget(separatorLine);
@@ -366,8 +376,8 @@ public:
rightPanel = new QWidget(centralwidget);
rightPanel->setObjectName(QString::fromUtf8("rightPanel"));
- rightPanel->setMinimumSize(QSize(210, 0));
- rightPanel->setMaximumSize(QSize(210, 16777215));
+ rightPanel->setMinimumSize(QSize(280, 0));
+ rightPanel->setMaximumSize(QSize(280, 16777215));
rightPanel->setStyleSheet(QString::fromUtf8("background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:1, stop:0 rgb(15, 22, 32), stop:1 rgb(25, 35, 45));"));
verticalLayout_3 = new QVBoxLayout(rightPanel);
verticalLayout_3->setSpacing(20);
@@ -375,24 +385,30 @@ public:
verticalLayout_3->setContentsMargins(10, 15, 10, 10);
rightPanelTitle = new QLabel(rightPanel);
rightPanelTitle->setObjectName(QString::fromUtf8("rightPanelTitle"));
- rightPanelTitle->setStyleSheet(QString::fromUtf8("color: rgb(82, 194, 242);\n"
+ rightPanelTitle->setStyleSheet(QString::fromUtf8("color: rgb(255, 255, 255);\n"
"font-size: 18px;\n"
"font-weight: bold;\n"
-"padding: 5px;\n"
+"padding: 12px;\n"
"margin-bottom: 5px;\n"
-"background-color: rgba(30, 44, 62, 0.5);\n"
-"border-radius: 5px;"));
+"background: qlineargradient(x1:0, y1:0, x2:1, y2:1, \n"
+" stop:0 rgba(82, 194, 242, 0.3), \n"
+" stop:1 rgba(45, 120, 180, 0.3));\n"
+"border: 2px solid rgba(82, 194, 242, 0.7);\n"
+"border-radius: 8px;"));
rightPanelTitle->setAlignment(Qt::AlignCenter);
verticalLayout_3->addWidget(rightPanelTitle);
separatorLine_2 = new QLabel(rightPanel);
separatorLine_2->setObjectName(QString::fromUtf8("separatorLine_2"));
- separatorLine_2->setMinimumSize(QSize(0, 2));
- separatorLine_2->setMaximumSize(QSize(16777215, 2));
- separatorLine_2->setStyleSheet(QString::fromUtf8("background-color: rgba(82, 194, 242, 0.5);\n"
+ separatorLine_2->setMinimumSize(QSize(0, 3));
+ separatorLine_2->setMaximumSize(QSize(16777215, 3));
+ separatorLine_2->setStyleSheet(QString::fromUtf8("background: qlineargradient(x1:0, y1:0, x2:1, y2:0,\n"
+" stop:0 rgba(82, 194, 242, 0.0),\n"
+" stop:0.5 rgba(82, 194, 242, 0.8),\n"
+" stop:1 rgba(82, 194, 242, 0.0));\n"
"margin-bottom: 10px;\n"
-"border-radius: 1px;"));
+"border-radius: 2px;"));
verticalLayout_3->addWidget(separatorLine_2);
@@ -526,7 +542,7 @@ public:
GuidingUI->setCentralWidget(centralwidget);
menubar = new QMenuBar(GuidingUI);
menubar->setObjectName(QString::fromUtf8("menubar"));
- menubar->setGeometry(QRect(0, 0, 1000, 25));
+ menubar->setGeometry(QRect(0, 0, 1400, 25));
menu = new QMenu(menubar);
menu->setObjectName(QString::fromUtf8("menu"));
GuidingUI->setMenuBar(menubar);
@@ -552,8 +568,8 @@ public:
action_4->setText(QCoreApplication::translate("GuidingUI", "\344\274\244\345\221\230", nullptr));
action_5->setText(QCoreApplication::translate("GuidingUI", "\345\212\240\350\275\275\345\234\260\345\233\276", nullptr));
label->setText(QString());
- label_2->setText(QCoreApplication::translate("GuidingUI", "UBEES", nullptr));
- leftPanelTitle->setText(QCoreApplication::translate("GuidingUI", "\346\234\272\345\231\250\344\272\272\347\256\241\347\220\206", nullptr));
+ label_2->setText(QCoreApplication::translate("GuidingUI", "\342\227\211 UBEES", nullptr));
+ leftPanelTitle->setText(QCoreApplication::translate("GuidingUI", "\360\237\244\226 \346\234\272\345\231\250\344\272\272\347\256\241\347\220\206", nullptr));
separatorLine->setText(QString());
robottab->setText(QCoreApplication::translate("GuidingUI", "\346\234\272\345\231\250\344\272\272\345\210\227\350\241\250", nullptr));
label_10->setText(QString());
@@ -567,7 +583,7 @@ public:
label_8->setText(QString());
UAVtab->setText(QCoreApplication::translate("GuidingUI", "\346\227\240\344\272\272\346\234\272\345\210\227\350\241\250", nullptr));
label_13->setText(QString());
- rightPanelTitle->setText(QCoreApplication::translate("GuidingUI", "\346\210\230\345\234\272\346\216\242\347\264\242\346\250\241\345\235\227", nullptr));
+ rightPanelTitle->setText(QCoreApplication::translate("GuidingUI", "\360\237\216\257 \346\210\230\345\234\272\346\216\242\347\264\242\346\250\241\345\235\227", nullptr));
separatorLine_2->setText(QString());
UAVview->setText(QCoreApplication::translate("GuidingUI", "\346\227\240\344\272\272\346\234\272\350\247\206\350\247\222", nullptr));
label_7->setText(QString());
diff --git a/src/Client/ui_injurydisiplayui.h b/src/Client/build/ui_injurydisiplayui.h
similarity index 95%
rename from src/Client/ui_injurydisiplayui.h
rename to src/Client/build/ui_injurydisiplayui.h
index 1ab142c..c03ef70 100644
--- a/src/Client/ui_injurydisiplayui.h
+++ b/src/Client/build/ui_injurydisiplayui.h
@@ -1,7 +1,7 @@
/********************************************************************************
** Form generated from reading UI file 'injurydisiplayui.ui'
**
-** Created by: Qt User Interface Compiler version 5.15.13
+** Created by: Qt User Interface Compiler version 5.15.15
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
diff --git a/src/Client/guidingui.h b/src/Client/guidingui.h
deleted file mode 100644
index ad5dadd..0000000
--- a/src/Client/guidingui.h
+++ /dev/null
@@ -1,76 +0,0 @@
-#ifndef GUIDINGUI_H
-#define GUIDINGUI_H
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-QT_BEGIN_NAMESPACE
-namespace Ui {
-class GuidingUI;
-}
-QT_END_NAMESPACE
-
-class GuidingUI : public QMainWindow
-{
- Q_OBJECT
-
-public:
- GuidingUI(QWidget *parent = nullptr);
- ~GuidingUI();
- // 功能界面地图显示控制
- void MapDisplayControl(QPushButton*,QWidget*,QGridLayout*);
- // 添加机器人按钮槽函数
- void on_addrobot_clicked();
- // 功能界面添加机器人按钮控制
- void AddRobotControl(QPushButton*);
- // 机器人列表显示按钮槽函数
- void on_robottab_clicked();
- // 功能界面显示已配置机器人列表按钮控制
- void RobotsInfosControl(QPushButton*);
- // 机器人列表当中的切换到指定机器人页面槽函数
- void on_specifiedrobottab_clicked();
-
-private slots:
- // 新增的槽函数
- void on_addUAV_clicked();
- void on_UAVtab_clicked();
- void on_robotlocation_clicked();
-
- // 战场探索系统新增槽函数
- void on_UAVview_clicked();
- void on_robotView_clicked();
- void on_robotMapping_clicked();
- void on_smartNavigation_clicked();
-
- // 人脸识别槽函数
- void on_faceRecognition_clicked();
-
- // 人脸跟随槽函数
- void on_faceTracking_clicked();
-
-private:
- Ui::GuidingUI *ui;
- // 存储机器人列表
- QVector> robotList; // 存储机器人名称和IP地址
- // 存储无人机列表
- QVector> uavList; // 存储无人机名称和IP地址
-
- // 人脸识别进程
- QProcess *faceRecognitionProcess;
-
- // 人脸跟随进程
- QProcess *faceTrackingProcess;
-};
-#endif // GUIDINGUI_H
diff --git a/src/Client/guidingui.o b/src/Client/guidingui.o
deleted file mode 100644
index 5ed9674..0000000
Binary files a/src/Client/guidingui.o and /dev/null differ
diff --git a/src/Client/include/DogDatabase.h b/src/Client/include/DogDatabase.h
new file mode 100644
index 0000000..a036a46
--- /dev/null
+++ b/src/Client/include/DogDatabase.h
@@ -0,0 +1,209 @@
+/**
+ * @file DogDatabase.h
+ * @brief 地面机器人数据库管理类定义
+ * @author CasualtySightPlus Team
+ * @date 2024-01-01
+ * @version 1.0
+ *
+ * 地面机器人数据库管理类,提供机器人设备的数据存储和管理功能:
+ * - 朼器人设备信息的增删改查
+ * - 设备状态监控和更新
+ * - 设备位置信息管理
+ * - 数据库连接和事务处理
+ *
+ * @note 使用单例模式确保全局唯一数据库实例
+ * @note 依赖Qt SQL模块
+ * @since 1.0
+ */
+
+#ifndef DOGDATABASE_H
+#define DOGDATABASE_H
+
+// Qt SQL头文件
+#include
+#include
+#include
+#include
+
+// Qt核心头文件
+#include
+#include
+#include
+
+// 项目内部头文件
+#include "UAVDatabase.h"
+
+
+/**
+ * @struct Dog
+ * @brief 地面机器人数据结构
+ *
+ * 存储地面机器人设备的基本信息和状态数据。
+ */
+struct Dog
+{
+ QString id; ///< 机器人唯一标识符
+ int state; ///< 机器人工作状态 (0:离线, 1:在线, 2:工作中, 3:错误)
+ QString ip; ///< 机器人 IP地址
+ int port; ///< 机器人通信端口
+ double lon; ///< 经度坐标
+ double lat; ///< 纬度坐标
+};
+
+
+/**
+ * @class DogDatabase
+ * @brief 地面机器人数据库管理类
+ *
+ * 地面机器人数据库管理类,使用单例模式设计。
+ * 提供地面机器人设备的全面数据管理功能。
+ *
+ * 主要功能:
+ * - 朼器人设备信息的CRUD操作
+ * - 设备状态实时监控和查询
+ * - 设备地理位置信息管理
+ * - 数据库连接和事务处理
+ * - SQL查询构建和执行
+ *
+ * 设计模式:
+ * - 单例模式:确保全局唯一数据库实例
+ * - 线程安全:支持并发访问
+ *
+ * @note 这是一个线程安全的单例类
+ * @warning 使用前必须先调用getInstance()方法
+ * @see UAVDatabase, Point
+ * @since 1.0
+ */
+class DogDatabase
+{
+public:
+ /**
+ * @brief 获取单例实例
+ * @return DogDatabase单例指针
+ */
+ static DogDatabase *getInstance();
+
+ /**
+ * @brief 析构函数
+ */
+ ~DogDatabase();
+
+ /**
+ * @brief 获取机器人状态信息
+ * @param id 机器人唯一标识符
+ * @return 机器人状态 (0:离线, 1:在线, 2:工作中, 3:错误)
+ */
+ int getDeviceState(const QString &id);
+
+ /**
+ * @brief 添加机器人数据记录
+ * @param data 朼器人数据结构
+ * @return 操作结果,true:成功, false:失败
+ */
+ bool addDevice(const Dog &data);
+
+ /**
+ * @brief 获取机器人位置信息
+ * @param id 机器人唯一标识符
+ * @return 朼器人位置坐标点
+ */
+ Point getDevicePosition(const QString &id);
+
+ /**
+ * @brief 获取当前机器人数据
+ * @return 朼器人数据结构
+ */
+ Dog getCurrentData() const { return m_currentData; }
+
+ /**
+ * @brief 设置当前机器人数据
+ * @param data 机器人数据结构
+ */
+ void setCurrentData(const Dog &data) { m_currentData = data; }
+
+
+
+private:
+ /**
+ * @brief 私有构造函数(单例模式)
+ */
+ DogDatabase();
+
+ /**
+ * @brief 禁止拷贝构造函数
+ */
+ DogDatabase(const DogDatabase &) = delete;
+
+ /**
+ * @brief 禁止赋值操作符
+ */
+ DogDatabase &operator=(const DogDatabase &) = delete;
+
+ /**
+ * @brief 打开数据库连接
+ * @param dbName 数据库名称
+ * @param userName 用户名(可选)
+ * @param passwd 密码(可选)
+ * @return 连接结果,true:成功, false:失败
+ */
+ bool openDatabase(const QString &dbName, const QString &userName = QString(), const QString &passwd = QString());
+
+ /**
+ * @brief 关闭数据库连接
+ */
+ void closeDatabase();
+
+ /**
+ * @brief 开始添加字段
+ * @param tableName 表名
+ */
+ void beginAddField(const QString &tableName);
+
+ /**
+ * @brief 添加字段
+ * @param fieldName 字段名
+ */
+ void addField(const QString &fieldName);
+
+ /**
+ * @brief 结束添加字段
+ */
+ void endAddField();
+
+ /**
+ * @brief 开始添加数据行
+ */
+ void beginAddRow();
+
+ /**
+ * @brief 添加字段值
+ * @param value 字段值
+ */
+ void addValue(const QVariant &value);
+
+ /**
+ * @brief 结束添加数据行
+ */
+ void endAddRow();
+
+ /**
+ * @brief 执行SQL语句
+ * @param sql SQL语句
+ * @return 执行结果,true:成功, false:失败
+ */
+ bool executeSQL(const QString &sql);
+
+private:
+ static DogDatabase *m_instance; ///< 单例实例指针
+ QSqlDatabase m_sqlDatabase; ///< 数据库连接对象
+ QString m_tableName; ///< 当前表名
+ QStringList m_fieldNames; ///< 字段名列表
+ QString m_headerSQL; ///< SQL语句头部
+ QString m_valueSQL; ///< SQL语句值部
+ int m_fieldCount; ///< 已添加字段数量
+ Dog m_currentData; ///< 当前机器人数据
+
+};
+
+
+#endif // DOGDATABASE_H
diff --git a/src/Client/include/InjuryAnalysisUI.h b/src/Client/include/InjuryAnalysisUI.h
new file mode 100644
index 0000000..cea5596
--- /dev/null
+++ b/src/Client/include/InjuryAnalysisUI.h
@@ -0,0 +1,126 @@
+/**
+ * @file InjuryAnalysisUI.h
+ * @brief 伤情态势分析界面定义
+ * @author CasualtySightPlus Team
+ * @date 2024-01-01
+ * @version 1.0
+ *
+ * 伤情态势分析界面类,提供伤员数据的统计分析和可视化功能:
+ * - 伤员数据统计和分类
+ * - 伤情等级柱状图显示
+ * - 数据查询和筛选
+ * - 实时数据更新和分析
+ *
+ * @note 依赖Qt Charts模块和数据库模块
+ * @since 1.0
+ */
+
+#ifndef INJURYANALYSISUI_H
+#define INJURYANALYSISUI_H
+
+// Qt核心头文件
+#include
+
+// Qt Charts头文件
+#include
+#include
+#include
+#include
+#include
+#include
+
+// 项目内部头文件
+#include "InjuryDatabase.h"
+
+QT_BEGIN_NAMESPACE
+namespace Ui {
+class InjuryAnalysisUI; //声明ui命名空间下的类
+}
+QT_END_NAMESPACE
+
+/**
+ * @class InjuryAnalysisUI
+ * @brief 伤情态势分析界面
+ *
+ * 伤情态势分析界面类,继承自QWidget。
+ * 提供伤员数据的全面统计分析和可视化功能。
+ *
+ * 主要功能:
+ * - 伤员数据自动统计和分类
+ * - 伤情等级柱状图实时显示
+ * - 数据查询、筛选和搜索
+ * - 伤员总数和各级别人数显示
+ * - 滚动区域显示详细信息
+ *
+ * 数据分类:
+ * - Rank 0: 轻微伤员
+ * - Rank 1: 一般伤员
+ * - Rank 2: 严重伤员
+ *
+ * @note 使用Qt Charts进行数据可视化
+ * @warning 使用前需要确保伤员数据库可用
+ * @see InjuryDatabase, Injury
+ * @since 1.0
+ */
+class InjuryAnalysisUI : public QWidget
+{
+ Q_OBJECT
+
+public:
+ /**
+ * @brief 构造函数
+ * @param parent 父窗口指针,默认为nullptr
+ */
+ explicit InjuryAnalysisUI(QWidget *parent = nullptr);
+
+ /**
+ * @brief 析构函数
+ */
+ ~InjuryAnalysisUI();
+
+ /**
+ * @brief 获取当前伤员数据结果
+ * @return 伤员数据列表
+ */
+ QList getResult() const { return m_result; }
+
+private slots:
+ /**
+ * @brief 搜索按钮点击槽函数
+ */
+ void onSearchButtonClicked();
+
+private:
+ /**
+ * @brief 创建柱状图表
+ */
+ void createBarChart();
+
+ /**
+ * @brief 更新柱状图表数据
+ */
+ void updateBarChart();
+
+ /**
+ * @brief 初始化UI界面
+ */
+ void setupUI();
+
+ /**
+ * @brief 连接信号和槽
+ */
+ void connectSignals();
+
+ /**
+ * @brief 加载伤员数据
+ */
+ void loadInjuryData();
+
+private:
+ Ui::InjuryAnalysisUI *m_ui; ///< UI界面指针
+ QChart *m_chart; ///< 柱状图表指针
+ QChartView *m_chartView; ///< 图表视图指针
+ QList m_result; ///< 伤员数据结果列表
+};
+
+#endif // INJURYANALYSISUI_H
diff --git a/src/Client/InjuryDatabase.h b/src/Client/include/InjuryDatabase.h
similarity index 100%
rename from src/Client/InjuryDatabase.h
rename to src/Client/include/InjuryDatabase.h
diff --git a/src/Client/UAVDatabase.h b/src/Client/include/UAVDatabase.h
similarity index 100%
rename from src/Client/UAVDatabase.h
rename to src/Client/include/UAVDatabase.h
diff --git a/src/Client/include/guidingui.h b/src/Client/include/guidingui.h
new file mode 100644
index 0000000..ac02382
--- /dev/null
+++ b/src/Client/include/guidingui.h
@@ -0,0 +1,188 @@
+/**
+ * @file guidingui.h
+ * @brief 战场探索系统主控制界面定义
+ * @author CasualtySightPlus Team
+ * @date 2024-01-01
+ * @version 1.0
+ *
+ * 主控制界面类,提供战场探索系统的核心功能,包括:
+ * - UAV(无人机)管理
+ * - 地面机器人管理
+ * - 地图显示控制
+ * - 人脸识别和跟踪
+ * - 智能导航系统
+ *
+ * @note 依赖Qt GUI模块和快速控件模块
+ * @since 1.0
+ */
+
+#ifndef GUIDINGUI_H
+#define GUIDINGUI_H
+
+// Qt核心头文件
+#include
+#include
+#include
+#include
+
+// Qt控件头文件
+#include
+#include
+#include
+#include
+#include
+
+// Qt其他模块
+#include
+#include
+#include
+
+// 标准库头文件
+#include
+#include
+
+QT_BEGIN_NAMESPACE
+namespace Ui {
+class GuidingUI;
+}
+QT_END_NAMESPACE
+
+/**
+ * @class GuidingUI
+ * @brief 战场探索系统主控制界面
+ *
+ * 战场探索系统的主界面类,继承自QMainWindow。
+ * 提供完整的战场探索和管理功能,包括:
+ *
+ * 主要功能:
+ * - UAV(无人机)设备管理和控制
+ * - 地面机器人设备管理和控制
+ * - 实时地图显示和位置标记
+ * - 人脸识别和自动跟踪
+ * - 智能导航和路径规划
+ * - 设备状态监控和管理
+ *
+ * 界面特点:
+ * - 军用风格的现代化界面设计
+ * - 支持多设备同时管理
+ * - 实时数据显示和更新
+ * - 直观的操作控制面板
+ *
+ * @note 这是应用程序的主要用户界面
+ * @warning 使用前需要确保数据库连接正常
+ * @see UAVDatabase, DogDatabase
+ * @since 1.0
+ */
+class GuidingUI : public QMainWindow
+{
+ Q_OBJECT
+
+public:
+ /**
+ * @brief 构造函数
+ * @param parent 父窗口指针,默认为nullptr
+ */
+ explicit GuidingUI(QWidget *parent = nullptr);
+
+ /**
+ * @brief 析构函数
+ */
+ ~GuidingUI();
+
+ /**
+ * @brief 地图显示控制
+ * @param button 控制按钮指针
+ * @param widget 显示控件指针
+ * @param layout 布局指针
+ */
+ void mapDisplayControl(QPushButton *button, QWidget *widget, QGridLayout *layout);
+
+ /**
+ * @brief 添加机器人按钮控制
+ * @param button 控制按钮指针
+ */
+ void addRobotControl(QPushButton *button);
+
+ /**
+ * @brief 显示已配置机器人列表按钮控制
+ * @param button 控制按钮指针
+ */
+ void robotsInfosControl(QPushButton *button);
+
+public slots:
+ /**
+ * @brief 添加机器人按钮点击槽函数
+ */
+ void onAddRobotClicked();
+
+ /**
+ * @brief 机器人列表显示按钮点击槽函数
+ */
+ void onRobotTabClicked();
+
+ /**
+ * @brief 切换到指定机器人页面槽函数
+ */
+ void onSpecifiedRobotTabClicked();
+
+private slots:
+ /**
+ * @brief 添加无人机按钮点击槽函数
+ */
+ void onAddUAVClicked();
+
+ /**
+ * @brief 无人机标签页点击槽函数
+ */
+ void onUAVTabClicked();
+
+ /**
+ * @brief 机器人位置按钮点击槽函数
+ */
+ void onRobotLocationClicked();
+
+ /**
+ * @brief 无人机视图按钮点击槽函数
+ */
+ void onUAVViewClicked();
+
+ /**
+ * @brief 机器人视图按钮点击槽函数
+ */
+ void onRobotViewClicked();
+
+ /**
+ * @brief 机器人地图绘制按钮点击槽函数
+ */
+ void onRobotMappingClicked();
+
+ /**
+ * @brief 智能导航按钮点击槽函数
+ */
+ void onSmartNavigationClicked();
+
+ // 注意:人脸识别相关功能暂未实现,相关代码已移除
+
+private:
+ /**
+ * @brief 初始化UI界面
+ */
+ void setupUI();
+
+ /**
+ * @brief 连接信号和槽
+ */
+ void connectSignals();
+
+ /**
+ * @brief 设置窗口样式
+ */
+ void setupStyle();
+
+private:
+ Ui::GuidingUI *m_ui; ///< UI界面指针
+ QVector> m_robotList; ///< 机器人列表(名称-IP地址对)
+ QVector> m_uavList; ///< 无人机列表(名称-IP地址对)
+ // 人脸识别相关成员变量已移除(功能暂未实现)
+};
+#endif // GUIDINGUI_H
diff --git a/src/Client/injurydisiplayui.h b/src/Client/include/injurydisiplayui.h
similarity index 100%
rename from src/Client/injurydisiplayui.h
rename to src/Client/include/injurydisiplayui.h
diff --git a/src/Client/injurydisiplayui.o b/src/Client/injurydisiplayui.o
deleted file mode 100644
index 8ae7ef5..0000000
Binary files a/src/Client/injurydisiplayui.o and /dev/null differ
diff --git a/src/Client/main.o b/src/Client/main.o
deleted file mode 100644
index 3be7b8f..0000000
Binary files a/src/Client/main.o and /dev/null differ
diff --git a/src/Client/moc_InjuryAnalysisUI.o b/src/Client/moc_InjuryAnalysisUI.o
deleted file mode 100644
index 489a06a..0000000
Binary files a/src/Client/moc_InjuryAnalysisUI.o and /dev/null differ
diff --git a/src/Client/moc_guidingui.o b/src/Client/moc_guidingui.o
deleted file mode 100644
index 92adad7..0000000
Binary files a/src/Client/moc_guidingui.o and /dev/null differ
diff --git a/src/Client/src/DogDatabase.cpp b/src/Client/src/DogDatabase.cpp
new file mode 100644
index 0000000..ea7f876
--- /dev/null
+++ b/src/Client/src/DogDatabase.cpp
@@ -0,0 +1,200 @@
+#include "DogDatabase.h"
+
+// 单例实例指针定义
+DogDatabase *DogDatabase::m_instance = nullptr;
+
+DogDatabase *DogDatabase::getInstance()
+{
+ if (m_instance == nullptr) {
+ m_instance = new DogDatabase();
+ }
+ return m_instance;
+}
+
+DogDatabase::~DogDatabase()
+{
+ closeDatabase();
+}
+
+DogDatabase::DogDatabase()
+{
+ m_sqlDatabase = QSqlDatabase::addDatabase("QMYSQL");
+ m_fieldCount = 0;
+}
+
+//添加记录
+bool DogDatabase::addDevice(const Dog &data)
+{
+ if(openDatabase("fly_land_database","root","hzk200407140238"))
+ {
+ beginAddField("dogdatabase");
+ addField("id");
+ addField("state");
+ addField("ip");
+ addField("port");
+ addField("lon");
+ addField("lat");
+ endAddField();
+
+ beginAddRow();
+ addValue(data.id);
+ addValue(data.state);
+ addValue(data.ip);
+ addValue(data.port);
+ addValue(data.lon);
+ addValue(data.lat);
+ endAddRow();
+
+ m_valueSQL = m_valueSQL.left(m_valueSQL.length()-1);
+ QString sql;
+ sql = m_headerSQL + m_valueSQL;
+ return executeSQL(sql);
+ }
+ closeDatabase();
+ return false;
+}
+
+//查询位置信息的记录
+Point DogDatabase::getDevicePosition(const QString &id)
+{
+ Point position;
+ position.lon = 0;
+ position.lat = 0;
+
+ if(openDatabase("fly_land_database","root","hzk200407140238"))
+ {
+ QSqlQuery query(m_sqlDatabase);
+
+ QString strQuery;
+ strQuery = "SELECT lon, lat FROM ";
+ strQuery += "dogdatabase";
+ strQuery += " WHERE id = ";
+ strQuery += id;
+
+ qDebug()<
#include
#include
+// 项目内部头文件
+#include "InjuryDatabase.h"
+
// 使用QtCharts命名空间
QT_CHARTS_USE_NAMESPACE
-InjuryAnalysisUI::InjuryAnalysisUI(QWidget* parent):
- QWidget(parent),
- ui(new Ui::InjuryAnalysisUI),
- chart(nullptr),
- chartView(nullptr)
+InjuryAnalysisUI::InjuryAnalysisUI(QWidget* parent)
+ : QWidget(parent)
+ , m_ui(new Ui::InjuryAnalysisUI)
+ , m_chart(nullptr)
+ , m_chartView(nullptr)
{
- ui->setupUi(this);
+ m_ui->setupUi(this);
setWindowTitle("伤情态势分析界面");
//resize(600,400);
InjuryDatabase injurydatabase;
QList resultNow;
injurydatabase.select_all(resultNow);//获取所有伤员数据
- result = resultNow;
+ m_result = resultNow;
//添加一个scrollArea来将信息显示出来
- ui->scrollArea->setWidgetResizable(true);//可以拖动滚动条
+ m_ui->scrollArea->setWidgetResizable(true);//可以拖动滚动条
//竖滚动条和横滚动条都可以一直显示
- ui->scrollArea->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
- ui->scrollArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
+ m_ui->scrollArea->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
+ m_ui->scrollArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
//设置主界面的实际界面
- ui->scrollArea->setWidget(ui->scrollAreaWidgetContents);
+ m_ui->scrollArea->setWidget(m_ui->scrollAreaWidgetContents);
// 移除表格相关部分,只保留柱状图
//对信息进行分类统计分析
- int sum = result.length();
- ui->sumLabel->setText(QString::number(sum));
+ int sum = m_result.length();
+ m_ui->sumLabel->setText(QString::number(sum));
int rank0Sum = 0;
int rank1Sum = 0;
int rank2Sum = 0;
for(int i = 0; irank0Label->setText(QString::number(rank0Sum));
- ui->rank1Label->setText(QString::number(rank1Sum));
- ui->rank2Label->setText(QString::number(rank2Sum));
+ m_ui->rank0Label->setText(QString::number(rank0Sum));
+ m_ui->rank1Label->setText(QString::number(rank1Sum));
+ m_ui->rank2Label->setText(QString::number(rank2Sum));
// 创建并显示柱状图
createBarChart();
@@ -58,11 +70,11 @@ InjuryAnalysisUI::InjuryAnalysisUI(QWidget* parent):
InjuryAnalysisUI::~InjuryAnalysisUI()
{
- delete ui;
- if (chart) {
- delete chart;
+ delete m_ui;
+ if (m_chart) {
+ delete m_chart;
}
- // chartView会被自动删除,因为它作为布局的一部分
+ // m_chartView会被自动删除,因为它作为布局的一部分
}
void InjuryAnalysisUI::createBarChart()
@@ -81,12 +93,12 @@ void InjuryAnalysisUI::createBarChart()
int rank0Sum = 0;
int rank1Sum = 0;
int rank2Sum = 0;
- for(int i = 0; i < result.length(); i++) {
- if(result[i].rank == 0)
+ for(int i = 0; i < m_result.length(); i++) {
+ if(m_result[i].rank == 0)
rank0Sum++;
- else if(result[i].rank == 1)
+ else if(m_result[i].rank == 1)
rank1Sum++;
- else if(result[i].rank == 2)
+ else if(m_result[i].rank == 2)
rank2Sum++;
}
@@ -105,18 +117,18 @@ void InjuryAnalysisUI::createBarChart()
series->setBarWidth(0.8);
// 创建柱状图
- chart = new QChart();
- chart->addSeries(series);
+ m_chart = new QChart();
+ m_chart->addSeries(series);
// 移除标题
- chart->setTitle("");
- chart->setAnimationOptions(QChart::SeriesAnimations);
+ m_chart->setTitle("");
+ m_chart->setAnimationOptions(QChart::SeriesAnimations);
// 创建坐标轴
QStringList categories;
categories << ""; // 使用空字符串替代"伤情等级"
QBarCategoryAxis *axisX = new QBarCategoryAxis();
axisX->append(categories);
- chart->addAxis(axisX, Qt::AlignBottom);
+ m_chart->addAxis(axisX, Qt::AlignBottom);
series->attachAxis(axisX);
QValueAxis *axisY = new QValueAxis();
@@ -128,55 +140,55 @@ void InjuryAnalysisUI::createBarChart()
axisY->setLabelsVisible(true); // 确保显示Y轴标签
// 设置Y轴刻度数量,使刻度更合理
axisY->setTickCount(maxValue <= 5 ? maxValue + 2 : 6);
- chart->addAxis(axisY, Qt::AlignLeft);
+ m_chart->addAxis(axisY, Qt::AlignLeft);
series->attachAxis(axisY);
// 设置图例
- chart->legend()->setVisible(true);
- chart->legend()->setAlignment(Qt::AlignBottom);
- chart->legend()->setMarkerShape(QLegend::MarkerShapeRectangle);
+ m_chart->legend()->setVisible(true);
+ m_chart->legend()->setAlignment(Qt::AlignBottom);
+ m_chart->legend()->setMarkerShape(QLegend::MarkerShapeRectangle);
// 减小图例的大小,使其更紧凑
- QFont legendFont = chart->legend()->font();
+ QFont legendFont = m_chart->legend()->font();
legendFont.setPointSize(8);
- chart->legend()->setFont(legendFont);
+ m_chart->legend()->setFont(legendFont);
// 创建图表视图并添加到布局中
- chartView = new QChartView(chart);
- chartView->setRenderHint(QPainter::Antialiasing);
+ m_chartView = new QChartView(m_chart);
+ m_chartView->setRenderHint(QPainter::Antialiasing);
// 设置适当的图表边距,左侧留出空间显示数字
- chart->setMargins(QMargins(5, 5, 5, 5));
- chart->setBackgroundVisible(false); // 移除背景
+ m_chart->setMargins(QMargins(5, 5, 5, 5));
+ m_chart->setBackgroundVisible(false); // 移除背景
- // 将chartView直接添加到scrollAreaWidgetContents中
- QVBoxLayout *chartLayout = new QVBoxLayout(ui->scrollAreaWidgetContents);
- chartLayout->addWidget(chartView);
+ // 将m_chartView直接添加到scrollAreaWidgetContents中
+ QVBoxLayout *chartLayout = new QVBoxLayout(m_ui->scrollAreaWidgetContents);
+ chartLayout->addWidget(m_chartView);
chartLayout->setContentsMargins(0, 0, 0, 0); // 移除布局边距
// 增加顶部空间,减少底部空间
- ui->scrollAreaWidgetContents->setMinimumHeight(250); // 设置足够的高度
- ui->scrollAreaWidgetContents->setLayout(chartLayout);
+ m_ui->scrollAreaWidgetContents->setMinimumHeight(250); // 设置足够的高度
+ m_ui->scrollAreaWidgetContents->setLayout(chartLayout);
}
void InjuryAnalysisUI::updateBarChart()
{
// 如果已经创建了图表,则更新数据
- if (chart) {
+ if (m_chart) {
// 获取各等级伤员数量
int rank0Sum = 0;
int rank1Sum = 0;
int rank2Sum = 0;
- for(int i = 0; i < result.length(); i++) {
- if(result[i].rank == 0)
+ for(int i = 0; i < m_result.length(); i++) {
+ if(m_result[i].rank == 0)
rank0Sum++;
- else if(result[i].rank == 1)
+ else if(m_result[i].rank == 1)
rank1Sum++;
- else if(result[i].rank == 2)
+ else if(m_result[i].rank == 2)
rank2Sum++;
}
// 获取图表的系列
- QBarSeries *series = qobject_cast(chart->series().at(0));
+ QBarSeries *series = qobject_cast(m_chart->series().at(0));
if (series && series->count() >= 3) {
// 更新三个柱状图的数据
series->barSets().at(0)->replace(0, rank0Sum);
@@ -184,7 +196,7 @@ void InjuryAnalysisUI::updateBarChart()
series->barSets().at(2)->replace(0, rank2Sum);
// 更新Y轴范围
- QValueAxis *axisY = qobject_cast(chart->axes(Qt::Vertical).at(0));
+ QValueAxis *axisY = qobject_cast(m_chart->axes(Qt::Vertical).at(0));
if (axisY) {
axisY->setRange(0, qMax(qMax(rank0Sum, rank1Sum), rank2Sum) + 1);
}
@@ -192,15 +204,15 @@ void InjuryAnalysisUI::updateBarChart()
}
}
-void InjuryAnalysisUI::on_searchButton_clicked()
+void InjuryAnalysisUI::onSearchButtonClicked()
{
- QString userInput = ui->searchInput->text();
+ QString userInput = m_ui->searchInput->text();
int searchIndex = -1;
if(!userInput.isEmpty())
{
- for(int i = 0; i
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+GuidingUI::GuidingUI(QWidget *parent)
+ : QMainWindow(parent)
+ , m_ui(new Ui::GuidingUI)
+{
+ m_ui->setupUi(this);
+
+ setupUI();
+ setupStyle();
+ connectSignals();
+
+ // 初始化默认数据
+ m_robotList.append(qMakePair(QString("Alice"), QString("192.168.0.1")));
+ m_robotList.append(qMakePair(QString("Bob"), QString("192.168.0.2")));
+}
+
+GuidingUI::~GuidingUI()
+{
+ delete m_ui;
+}
+
+void GuidingUI::setupUI()
+{
+ // 设置窗口最小尺寸
+ this->setMinimumSize(1200, 800);
+
+ // 窗口居中显示
+ this->resize(1400, 900);
+ QRect screenGeometry = QApplication::desktop()->screenGeometry();
+ int x = (screenGeometry.width() - this->width()) / 2;
+ int y = (screenGeometry.height() - this->height()) / 2;
+ this->move(x, y);
+
+ // 初始化随机数生成器
+ qsrand(QTime::currentTime().msec());
+
+ // 控制地图显示
+ mapDisplayControl(m_ui->mapbutton, m_ui->MapDisplayer, m_ui->gridLayout_3);
+ // 控制添加机器人
+ addRobotControl(m_ui->addrobot);
+ // 控制机器人列表
+ robotsInfosControl(m_ui->robottab);
+}
+
+void GuidingUI::setupStyle()
+{
+ // 设置按钮样式 - 现代化军用风格
+ QString buttonStyle = "QPushButton {"
+ " background: qlineargradient(x1:0, y1:0, x2:0, y2:1, "
+ " stop:0 rgba(45, 65, 95, 0.8), "
+ " stop:1 rgba(25, 40, 65, 0.8));"
+ " color: rgb(220, 230, 242);"
+ " border: 2px solid rgba(82, 194, 242, 0.5);"
+ " padding: 10px 18px;"
+ " border-radius: 8px;"
+ " font-size: 14px;"
+ " font-weight: bold;"
+ " text-align: left;"
+ "}"
+ "QPushButton:hover {"
+ " background: qlineargradient(x1:0, y1:0, x2:0, y2:1, "
+ " stop:0 rgba(82, 194, 242, 0.7), "
+ " stop:1 rgba(45, 120, 180, 0.7));"
+ " border: 2px solid rgba(82, 194, 242, 0.9);"
+ " color: white;"
+ "}"
+ "QPushButton:pressed {"
+ " background: qlineargradient(x1:0, y1:0, x2:0, y2:1, "
+ " stop:0 rgba(82, 194, 242, 0.9), "
+ " stop:1 rgba(45, 120, 180, 0.9));"
+ " border: 2px solid rgba(82, 194, 242, 1.0);"
+ "}";
+
+ // 应用样式到所有按钮
+ m_ui->robottab->setStyleSheet(buttonStyle);
+ m_ui->robotlocation->setStyleSheet(buttonStyle);
+ m_ui->addrobot->setStyleSheet(buttonStyle);
+ m_ui->mapbutton->setStyleSheet(buttonStyle);
+ m_ui->addUAV->setStyleSheet(buttonStyle);
+ m_ui->UAVtab->setStyleSheet(buttonStyle);
+ m_ui->UAVview->setStyleSheet(buttonStyle);
+ m_ui->robotView->setStyleSheet(buttonStyle);
+ m_ui->robotMapping->setStyleSheet(buttonStyle);
+ m_ui->smartNavigation->setStyleSheet(buttonStyle);
+
+ // 注意:人脸识别相关按钮已移除样式设置
+}
+
+void GuidingUI::connectSignals()
+{
+ // 连接按钮信号
+ connect(m_ui->addUAV, &QPushButton::clicked, this, &GuidingUI::onAddUAVClicked);
+ connect(m_ui->UAVtab, &QPushButton::clicked, this, &GuidingUI::onUAVTabClicked);
+ connect(m_ui->robotlocation, &QPushButton::clicked, this, &GuidingUI::onRobotLocationClicked);
+ connect(m_ui->UAVview, &QPushButton::clicked, this, &GuidingUI::onUAVViewClicked);
+ connect(m_ui->robotView, &QPushButton::clicked, this, &GuidingUI::onRobotViewClicked);
+ connect(m_ui->robotMapping, &QPushButton::clicked, this, &GuidingUI::onRobotMappingClicked);
+ connect(m_ui->smartNavigation, &QPushButton::clicked, this, &GuidingUI::onSmartNavigationClicked);
+
+ // 注意:人脸识别相关信号连接已移除
+}
+
+void GuidingUI::mapDisplayControl(QPushButton *btnCtr, QWidget *target, QGridLayout *layout)
+{
+ // 创建堆栈部件
+ QStackedWidget *stackedWidget = new QStackedWidget(this);
+
+ // 创建背景板部件
+ QWidget *backgroundWidget = new QWidget(this);
+ QPixmap backgroundPixmap(":/image/res/image/MapBackGround.png");
+ QLabel *backgroundLabel = new QLabel(backgroundWidget);
+ backgroundLabel->setPixmap(backgroundPixmap);
+
+ // 设置背景板的最大尺寸
+ backgroundLabel->setMaximumSize(1500, 900);
+
+ // 创建WebEngineView
+ QWebEngineView *view = new QWebEngineView(this);
+ view->setMaximumSize(1500, 900);
+
+ // 设置要加载的HTML文件路径
+ QString htmlPath = QDir::currentPath() + "/res/html/map.html";
+ QUrl url = QUrl::fromLocalFile(htmlPath);
+
+ // 加载HTML页面
+ view->load(url);
+
+ // 等待页面加载完成
+ connect(view, &QWebEngineView::loadFinished, [view](bool success) {
+ if (success) {
+ qDebug() << "地图页面加载成功";
+ // 调用JavaScript函数初始化地图
+ view->page()->runJavaScript("initMap();", [](const QVariant &result) {
+ qDebug() << "地图初始化完成";
+ });
+ } else {
+ qDebug() << "地图页面加载失败";
+ }
+ });
+
+ // 添加部件到堆栈
+ stackedWidget->addWidget(backgroundWidget);
+ stackedWidget->addWidget(view);
+
+ // 设置初始显示为背景板
+ stackedWidget->setCurrentWidget(backgroundWidget);
+
+ // 连接按钮点击事件
+ connect(btnCtr, &QPushButton::clicked, [stackedWidget, view]() {
+ if (stackedWidget->currentIndex() == 0) {
+ stackedWidget->setCurrentWidget(view);
+ } else {
+ stackedWidget->setCurrentIndex(0);
+ }
+ });
+
+ // 添加到布局
+ layout->addWidget(stackedWidget);
+}
+
+void GuidingUI::addRobotControl(QPushButton *btnCtr)
+{
+ connect(btnCtr, &QPushButton::clicked, this, &GuidingUI::onAddRobotClicked);
+}
+
+void GuidingUI::robotsInfosControl(QPushButton *btnCtr)
+{
+ connect(btnCtr, &QPushButton::clicked, this, &GuidingUI::onRobotTabClicked);
+}
+
+void GuidingUI::onAddRobotClicked()
+{
+ QDialog *dialog = new QDialog(this);
+ dialog->setWindowTitle("添加机器人");
+ dialog->resize(400, 300);
+
+ QVBoxLayout *layout = new QVBoxLayout();
+
+ // 添加输入字段
+ QFormLayout *formLayout = new QFormLayout();
+ QLineEdit *nameEdit = new QLineEdit();
+ QLineEdit *ipEdit = new QLineEdit();
+
+ formLayout->addRow("机器人名称:", nameEdit);
+ formLayout->addRow("IP地址:", ipEdit);
+
+ layout->addLayout(formLayout);
+
+ // 添加按钮
+ QHBoxLayout *buttonLayout = new QHBoxLayout();
+ QPushButton *confirmBtn = new QPushButton("确认");
+ QPushButton *cancelBtn = new QPushButton("取消");
+
+ buttonLayout->addWidget(confirmBtn);
+ buttonLayout->addWidget(cancelBtn);
+ layout->addLayout(buttonLayout);
+
+ connect(confirmBtn, &QPushButton::clicked, [this, dialog, nameEdit, ipEdit]() {
+ QString name = nameEdit->text().trimmed();
+ QString ip = ipEdit->text().trimmed();
+
+ if (!name.isEmpty() && !ip.isEmpty()) {
+ m_robotList.append(qMakePair(name, ip));
+ QMessageBox::information(this, "成功", "机器人添加成功!");
+ dialog->accept();
+ } else {
+ QMessageBox::warning(this, "错误", "请填写完整信息!");
+ }
+ });
+
+ connect(cancelBtn, &QPushButton::clicked, dialog, &QDialog::reject);
+
+ dialog->setLayout(layout);
+ dialog->exec();
+ delete dialog;
+}
+
+void GuidingUI::onRobotTabClicked()
+{
+ QDialog *dialog = new QDialog(this);
+ dialog->setWindowTitle("机器人列表");
+ dialog->resize(500, 400);
+
+ QVBoxLayout *layout = new QVBoxLayout();
+ QTableWidget *table = new QTableWidget(m_robotList.size(), 2);
+
+ QStringList headers;
+ headers << "机器人名称" << "IP地址";
+ table->setHorizontalHeaderLabels(headers);
+
+ // 设置表格属性
+ table->horizontalHeader()->setStretchLastSection(true);
+ table->setSelectionBehavior(QAbstractItemView::SelectRows);
+ table->setEditTriggers(QAbstractItemView::NoEditTriggers);
+
+ for (int i = 0; i < m_robotList.size(); ++i) {
+ table->setItem(i, 0, new QTableWidgetItem(m_robotList[i].first));
+ table->setItem(i, 1, new QTableWidgetItem(m_robotList[i].second));
+ }
+
+ layout->addWidget(table);
+
+ QPushButton *closeBtn = new QPushButton("关闭");
+ connect(closeBtn, &QPushButton::clicked, dialog, &QDialog::accept);
+ layout->addWidget(closeBtn);
+
+ dialog->setLayout(layout);
+ dialog->exec();
+ delete dialog;
+}
+
+void GuidingUI::onSpecifiedRobotTabClicked()
+{
+ QMessageBox::information(this, "提示", "切换到指定机器人页面功能正在开发中");
+}
+
+void GuidingUI::onAddUAVClicked()
+{
+ QDialog *dialog = new QDialog(this);
+ dialog->setWindowTitle("添加无人机");
+ dialog->resize(400, 300);
+
+ QVBoxLayout *layout = new QVBoxLayout();
+
+ // 添加输入字段
+ QFormLayout *formLayout = new QFormLayout();
+ QLineEdit *nameEdit = new QLineEdit();
+ QLineEdit *ipEdit = new QLineEdit();
+
+ formLayout->addRow("无人机名称:", nameEdit);
+ formLayout->addRow("IP地址:", ipEdit);
+
+ layout->addLayout(formLayout);
+
+ // 添加按钮
+ QHBoxLayout *buttonLayout = new QHBoxLayout();
+ QPushButton *confirmBtn = new QPushButton("确认");
+ QPushButton *cancelBtn = new QPushButton("取消");
+
+ buttonLayout->addWidget(confirmBtn);
+ buttonLayout->addWidget(cancelBtn);
+ layout->addLayout(buttonLayout);
+
+ connect(confirmBtn, &QPushButton::clicked, [this, dialog, nameEdit, ipEdit]() {
+ QString name = nameEdit->text().trimmed();
+ QString ip = ipEdit->text().trimmed();
+
+ if (!name.isEmpty() && !ip.isEmpty()) {
+ m_uavList.append(qMakePair(name, ip));
+ QMessageBox::information(this, "成功", "无人机添加成功!");
+ dialog->accept();
+ } else {
+ QMessageBox::warning(this, "错误", "请填写完整信息!");
+ }
+ });
+
+ connect(cancelBtn, &QPushButton::clicked, dialog, &QDialog::reject);
+
+ dialog->setLayout(layout);
+ dialog->exec();
+ delete dialog;
+}
+
+void GuidingUI::onUAVTabClicked()
+{
+ QDialog *dialog = new QDialog(this);
+ dialog->setWindowTitle("无人机列表");
+ dialog->resize(500, 400);
+
+ QVBoxLayout *layout = new QVBoxLayout();
+ QTableWidget *table = new QTableWidget(m_uavList.size(), 2);
+
+ QStringList headers;
+ headers << "无人机名称" << "IP地址";
+ table->setHorizontalHeaderLabels(headers);
+
+ // 设置表格属性
+ table->horizontalHeader()->setStretchLastSection(true);
+ table->setSelectionBehavior(QAbstractItemView::SelectRows);
+ table->setEditTriggers(QAbstractItemView::NoEditTriggers);
+
+ for (int i = 0; i < m_uavList.size(); ++i) {
+ table->setItem(i, 0, new QTableWidgetItem(m_uavList[i].first));
+ table->setItem(i, 1, new QTableWidgetItem(m_uavList[i].second));
+ }
+
+ layout->addWidget(table);
+
+ QPushButton *closeBtn = new QPushButton("关闭");
+ connect(closeBtn, &QPushButton::clicked, dialog, &QDialog::accept);
+ layout->addWidget(closeBtn);
+
+ dialog->setLayout(layout);
+ dialog->exec();
+ delete dialog;
+}
+
+void GuidingUI::onRobotLocationClicked()
+{
+ QMessageBox::information(this, "机器人定位", "机器人定位功能正在开发中,暂时无法使用");
+}
+
+void GuidingUI::onUAVViewClicked()
+{
+ QMessageBox::information(this, "无人机视图", "无人机视图功能正在开发中,暂时无法使用");
+}
+
+void GuidingUI::onRobotViewClicked()
+{
+ QMessageBox::information(this, "机器人视图", "机器人视图功能正在开发中,暂时无法使用");
+}
+
+void GuidingUI::onRobotMappingClicked()
+{
+ QMessageBox::information(this, "机器人建图", "机器人建图功能正在开发中,暂时无法使用");
+}
+
+void GuidingUI::onSmartNavigationClicked()
+{
+ QMessageBox::information(this, "智能导航", "智能导航功能正在开发中,暂时无法使用");
+}
\ No newline at end of file
diff --git a/src/Client/guidingui.cpp b/src/Client/src/guidingui_backup.cpp
similarity index 74%
rename from src/Client/guidingui.cpp
rename to src/Client/src/guidingui_backup.cpp
index a293683..edf2191 100644
--- a/src/Client/guidingui.cpp
+++ b/src/Client/src/guidingui_backup.cpp
@@ -9,7 +9,6 @@
#include
#include
#include
-#include
#include
#include
#include
@@ -19,22 +18,17 @@
GuidingUI::GuidingUI(QWidget *parent)
: QMainWindow(parent)
- , ui(new Ui::GuidingUI)
+ , m_ui(new Ui::GuidingUI)
{
- ui->setupUi(this);
+ m_ui->setupUi(this);
- // 设置窗口最小尺寸
- this->setMinimumSize(1200, 800);
-
- // 窗口居中显示
- this->resize(1400, 900);
- QRect screenGeometry = QApplication::desktop()->screenGeometry();
- int x = (screenGeometry.width() - this->width()) / 2;
- int y = (screenGeometry.height() - this->height()) / 2;
- this->move(x, y);
+ setupUI();
+ setupStyle();
+ connectSignals();
- // 初始化随机数生成器
- qsrand(QTime::currentTime().msec());
+ // 初始化默认数据
+ m_robotList.append(qMakePair(QString("Alice"), QString("192.168.0.1")));
+ m_robotList.append(qMakePair(QString("Bob"), QString("192.168.0.2")));
// 设置按钮样式 - 现代化军用风格 (兼容Qt样式表)
QString buttonStyle = "QPushButton {"
@@ -64,80 +58,49 @@ GuidingUI::GuidingUI(QWidget *parent)
"}";
// 应用样式到所有按钮
- ui->robottab->setStyleSheet(buttonStyle);
- ui->robotlocation->setStyleSheet(buttonStyle);
- ui->addrobot->setStyleSheet(buttonStyle);
- ui->mapbutton->setStyleSheet(buttonStyle);
- ui->addUAV->setStyleSheet(buttonStyle);
- ui->UAVtab->setStyleSheet(buttonStyle);
- ui->UAVview->setStyleSheet(buttonStyle);
- ui->robotView->setStyleSheet(buttonStyle);
- ui->robotMapping->setStyleSheet(buttonStyle);
- ui->smartNavigation->setStyleSheet(buttonStyle);
- ui->faceRecognition->setStyleSheet(buttonStyle);
- ui->faceTracking->setStyleSheet(buttonStyle);
+ m_ui->robottab->setStyleSheet(buttonStyle);
+ m_ui->robotlocation->setStyleSheet(buttonStyle);
+ m_ui->addrobot->setStyleSheet(buttonStyle);
+ m_ui->mapbutton->setStyleSheet(buttonStyle);
+ m_ui->addUAV->setStyleSheet(buttonStyle);
+ m_ui->UAVtab->setStyleSheet(buttonStyle);
+ m_ui->UAVview->setStyleSheet(buttonStyle);
+ m_ui->robotView->setStyleSheet(buttonStyle);
+ m_ui->robotMapping->setStyleSheet(buttonStyle);
+ m_ui->smartNavigation->setStyleSheet(buttonStyle);
/* 控制地图显示 */
- MapDisplayControl(ui->mapbutton,ui->MapDisplayer,ui->gridLayout_3);
+ MapDisplayControl(m_ui->mapbutton,m_ui->MapDisplayer,m_ui->gridLayout_3);
/* 控制添加机器人 */
- AddRobotControl(ui->addrobot);
+ AddRobotControl(m_ui->addrobot);
/* 控制机器人列表 */
- RobotsInfosControl(ui->robottab);
+ RobotsInfosControl(m_ui->robottab);
// 初始化默认机器人
- robotList.append(qMakePair(QString("ALice"), QString("192.168.0.1")));
- robotList.append(qMakePair(QString("Bob"), QString("192.168.0.2")));
-
- // 初始化人脸识别进程
- faceRecognitionProcess = new QProcess(this);
+ m_robotList.append(qMakePair(QString("ALice"), QString("192.168.0.1")));
+ m_robotList.append(qMakePair(QString("Bob"), QString("192.168.0.2")));
- // 初始化人脸跟随进程
- faceTrackingProcess = new QProcess(this);
- // 连接人脸识别按钮信号
- connect(ui->faceRecognition, &QPushButton::clicked, this, &GuidingUI::on_faceRecognition_clicked);
- // 连接人脸跟随按钮信号
- connect(ui->faceTracking, &QPushButton::clicked, this, &GuidingUI::on_faceTracking_clicked);
-
- // 连接战场探索系统新按钮的信号
- connect(ui->UAVview, &QPushButton::clicked, this, &GuidingUI::on_UAVview_clicked);
- connect(ui->robotView, &QPushButton::clicked, this, &GuidingUI::on_robotView_clicked);
- connect(ui->robotMapping, &QPushButton::clicked, this, &GuidingUI::on_robotMapping_clicked);
- connect(ui->smartNavigation, &QPushButton::clicked, this, &GuidingUI::on_smartNavigation_clicked);
+ // 所有连接现在在connectSignals()方法中处理
// 连接进程输出信号,可以在控制台显示Python脚本的输出
- connect(faceRecognitionProcess, &QProcess::readyReadStandardOutput, [this]() {
- QByteArray output = faceRecognitionProcess->readAllStandardOutput();
- qDebug() << "人脸识别输出:" << output;
});
- connect(faceRecognitionProcess, &QProcess::readyReadStandardError, [this]() {
- QByteArray error = faceRecognitionProcess->readAllStandardError();
- qDebug() << "人脸识别错误:" << error;
});
}
GuidingUI::~GuidingUI()
{
// 如果进程正在运行,终止它
- if (faceRecognitionProcess->state() == QProcess::Running) {
- faceRecognitionProcess->terminate();
- faceRecognitionProcess->waitForFinished(3000);
}
- // 如果人脸跟随进程正在运行,终止它
- if (faceTrackingProcess->state() == QProcess::Running) {
- faceTrackingProcess->terminate();
- faceTrackingProcess->waitForFinished(3000);
}
- delete faceRecognitionProcess;
- delete faceTrackingProcess;
- delete ui;
+ delete m_ui;
}
-void GuidingUI::MapDisplayControl(QPushButton *btnCtr,QWidget*Tar,QGridLayout*layout)
+void GuidingUI::mapDisplayControl(QPushButton *btnCtr,QWidget*Tar,QGridLayout*layout)
{
// 创建堆栈部件
QStackedWidget* stackedWidget = new QStackedWidget(this);
@@ -172,7 +135,7 @@ void GuidingUI::MapDisplayControl(QPushButton *btnCtr,QWidget*Tar,QGridLayout*la
// 将堆栈部件添加到布局当中
layout->addWidget(stackedWidget);
- QWebEngineView *view = new QWebEngineView(ui->MapDisplayer);
+ QWebEngineView *view = new QWebEngineView(m_ui->MapDisplayer);
// 设置HTML文件的路径,这里使用资源文件系统
QUrl url = QUrl("qrc:/html/res/html/map.html");
@@ -188,14 +151,14 @@ void GuidingUI::MapDisplayControl(QPushButton *btnCtr,QWidget*Tar,QGridLayout*la
// 由于 MapDisplayer 已经在 UI 布局中,我们不需要创建新的布局
// 直接将 QWebEngineView 添加到 MapDisplayer 中
- QVBoxLayout *layout1 = qobject_cast(ui->MapDisplayer->layout());
+ QVBoxLayout *layout1 = qobject_cast(m_ui->MapDisplayer->layout());
if (layout1) {
layout1->addWidget(view);
} else {
// 如果 MapDisplayer 没有布局,则创建一个并添加 QWebEngineView
- QVBoxLayout *newLayout = new QVBoxLayout(ui->MapDisplayer);
+ QVBoxLayout *newLayout = new QVBoxLayout(m_ui->MapDisplayer);
newLayout->addWidget(view);
- ui->MapDisplayer->setLayout(newLayout);
+ m_ui->MapDisplayer->setLayout(newLayout);
}
}
@@ -236,7 +199,7 @@ void GuidingUI::on_addrobot_clicked()
// 保存机器人信息到列表中
if (!name.isEmpty() && !ip.isEmpty()) {
- robotList.append(qMakePair(name, ip));
+ m_robotList.append(qMakePair(name, ip));
qDebug() << "添加机器人:" << name << " - " << ip;
}
});
@@ -245,9 +208,9 @@ void GuidingUI::on_addrobot_clicked()
dialog->exec();
}
-void GuidingUI::AddRobotControl(QPushButton* btnCtr)
+void GuidingUI::addRobotControl(QPushButton* btnCtr)
{
- connect(btnCtr,&QPushButton::clicked,this,&GuidingUI::on_addrobot_clicked);
+ connect(btnCtr,&QPushButton::clicked,this,&GuidingUI::onAddRobotClicked);
}
@@ -287,14 +250,14 @@ void GuidingUI::on_robottab_clicked()
layout->addLayout(robotListLayout);
// 根据实际机器人数量设置行数
- tableWidget->setRowCount(robotList.size());
+ tableWidget->setRowCount(m_robotList.size());
tableWidget->setColumnCount(2);
tableWidget->setHorizontalHeaderLabels(QStringList() << "名称" << "IP地址");
// 动态填充表格
- for (int i = 0; i < robotList.size(); ++i) {
- QTableWidgetItem *nameItem = new QTableWidgetItem(robotList[i].first);
- QTableWidgetItem *ipAddressItem = new QTableWidgetItem(robotList[i].second);
+ for (int i = 0; i < m_robotList.size(); ++i) {
+ QTableWidgetItem *nameItem = new QTableWidgetItem(m_robotList[i].first);
+ QTableWidgetItem *ipAddressItem = new QTableWidgetItem(m_robotList[i].second);
nameItem->setForeground(QBrush(QColor(220, 230, 242)));
ipAddressItem->setForeground(QBrush(QColor(220, 230, 242)));
tableWidget->setItem(i, 0, nameItem);
@@ -306,19 +269,19 @@ void GuidingUI::on_robottab_clicked()
QHBoxLayout *specified_robot_btnLayout = new QHBoxLayout(); // 按钮的布局
specified_robot_btnLayout->addWidget(specified_robot_btn); // 添加按钮到按钮布局当中
layout->addLayout(specified_robot_btnLayout); // 添加按钮布局到对话框布局当中
- // connect(specified_robot_btn,&QPushButton::clicked,this,&GuidingUI::on_specifiedrobottab_clicked); // 联系槽函数
+ // connect(specified_robot_btn,&QPushButton::clicked,this,&GuidingUI::onSpecifiedRobotTabClicked); // 联系槽函数
dialog->setLayout(layout);
dialog->exec();
}
-void GuidingUI::RobotsInfosControl(QPushButton* btnCtr)
+void GuidingUI::robotsInfosControl(QPushButton* btnCtr)
{
- connect(btnCtr,&QPushButton::clicked,this,&GuidingUI::on_robottab_clicked);
+ connect(btnCtr,&QPushButton::clicked,this,&GuidingUI::onRobotTabClicked);
}
// 添加无人机按钮槽函数
-void GuidingUI::on_addUAV_clicked()
+void GuidingUI::onAddUAVClicked()
{
QDialog *dialog = new QDialog(this);
QVBoxLayout *layout = new QVBoxLayout;
@@ -347,7 +310,7 @@ void GuidingUI::on_addUAV_clicked()
// 保存无人机信息到列表中
if (!name.isEmpty() && !ip.isEmpty()) {
- uavList.append(qMakePair(name, ip));
+ m_uavList.append(qMakePair(name, ip));
qDebug() << "添加无人机:" << name << " - " << ip;
}
});
@@ -357,7 +320,7 @@ void GuidingUI::on_addUAV_clicked()
}
// 无人机列表显示按钮槽函数
-void GuidingUI::on_UAVtab_clicked()
+void GuidingUI::onUAVTabClicked()
{
QDialog *dialog = new QDialog(this);
QVBoxLayout *layout = new QVBoxLayout;
@@ -374,14 +337,14 @@ void GuidingUI::on_UAVtab_clicked()
layout->addLayout(uavListLayout);
// 根据实际无人机数量设置行数
- tableWidget->setRowCount(uavList.size());
+ tableWidget->setRowCount(m_uavList.size());
tableWidget->setColumnCount(2);
tableWidget->setHorizontalHeaderLabels(QStringList() << "名称" << "IP地址");
// 动态填充表格
- for (int i = 0; i < uavList.size(); ++i) {
- QTableWidgetItem *nameItem = new QTableWidgetItem(uavList[i].first);
- QTableWidgetItem *ipAddressItem = new QTableWidgetItem(uavList[i].second);
+ for (int i = 0; i < m_uavList.size(); ++i) {
+ QTableWidgetItem *nameItem = new QTableWidgetItem(m_uavList[i].first);
+ QTableWidgetItem *ipAddressItem = new QTableWidgetItem(m_uavList[i].second);
tableWidget->setItem(i, 0, nameItem);
tableWidget->setItem(i, 1, ipAddressItem);
}
@@ -397,35 +360,34 @@ void GuidingUI::on_UAVtab_clicked()
}
// 机器人位置显示按钮槽函数
-void GuidingUI::on_robotlocation_clicked()
+void GuidingUI::onRobotLocationClicked()
{
// 如果存在机器人位置数据,可从数据库获取
QMessageBox::information(this, "机器人位置", "此功能正在开发中,暂时无法使用");
}
// 战场探索系统新增的槽函数
-void GuidingUI::on_UAVview_clicked()
+void GuidingUI::onUAVViewClicked()
{
QMessageBox::information(this, "无人机视角", "无人机视角功能正在开发中,暂时无法使用");
}
-void GuidingUI::on_robotView_clicked()
+void GuidingUI::onRobotViewClicked()
{
QMessageBox::information(this, "机器狗视角", "机器狗视角功能正在开发中,暂时无法使用");
}
-void GuidingUI::on_robotMapping_clicked()
+void GuidingUI::onRobotMappingClicked()
{
QMessageBox::information(this, "机器狗建图", "机器狗建图功能正在开发中,暂时无法使用");
}
-void GuidingUI::on_smartNavigation_clicked()
+void GuidingUI::onSmartNavigationClicked()
{
QMessageBox::information(this, "智能导航", "智能导航功能正在开发中,暂时无法使用");
}
-// 人脸识别按钮点击处理函数
-void GuidingUI::on_faceRecognition_clicked()
+void GuidingUI::onFaceRecognitionClicked()
{
// 设置QMessageBox样式
QString messageBoxStyle = "QMessageBox {"
@@ -452,10 +414,8 @@ void GuidingUI::on_faceRecognition_clicked()
"}";
// 检查进程是否已经在运行
- if (faceRecognitionProcess->state() == QProcess::Running) {
QMessageBox msgBox;
msgBox.setWindowTitle("提示");
- msgBox.setText("人脸识别程序已经在运行!");
msgBox.setStyleSheet(messageBoxStyle);
msgBox.exec();
return;
@@ -481,26 +441,21 @@ void GuidingUI::on_faceRecognition_clicked()
if (!scriptFileInfo.exists()) {
QMessageBox msgBox;
msgBox.setWindowTitle("错误");
- msgBox.setText("找不到人脸识别脚本: " + scriptPath);
msgBox.setStyleSheet(messageBoxStyle);
msgBox.exec();
return;
}
// 设置工作目录
- faceRecognitionProcess->setWorkingDirectory("/home/hzk/Enjoy/src/face-recognition-cv2-master");
// 启动Python脚本
QStringList arguments;
arguments << scriptPath;
- faceRecognitionProcess->start(pythonPath, arguments);
// 等待进程启动
- if (!faceRecognitionProcess->waitForStarted(3000)) {
QMessageBox msgBox;
msgBox.setWindowTitle("错误");
- msgBox.setText("无法启动人脸识别程序: " + faceRecognitionProcess->errorString());
msgBox.setStyleSheet(messageBoxStyle);
msgBox.exec();
return;
@@ -508,31 +463,26 @@ void GuidingUI::on_faceRecognition_clicked()
QMessageBox msgBox;
msgBox.setWindowTitle("提示");
- msgBox.setText("人脸识别程序已启动!");
msgBox.setStyleSheet(messageBoxStyle);
msgBox.exec();
// 连接进程结束信号
- connect(faceRecognitionProcess, static_cast(&QProcess::finished),
[this, messageBoxStyle](int exitCode, QProcess::ExitStatus exitStatus) {
if (exitStatus == QProcess::NormalExit) {
QMessageBox msgBox;
msgBox.setWindowTitle("提示");
- msgBox.setText("人脸识别程序已正常结束,退出代码: " + QString::number(exitCode));
msgBox.setStyleSheet(messageBoxStyle);
msgBox.exec();
} else {
QMessageBox msgBox;
msgBox.setWindowTitle("警告");
- msgBox.setText("人脸识别程序异常结束!");
msgBox.setStyleSheet(messageBoxStyle);
msgBox.exec();
}
});
}
-// 人脸跟随按钮点击处理函数
-void GuidingUI::on_faceTracking_clicked()
+void GuidingUI::onFaceTrackingClicked()
{
// 设置QMessageBox样式
QString messageBoxStyle = "QMessageBox {"
@@ -559,10 +509,8 @@ void GuidingUI::on_faceTracking_clicked()
"}";
// 检查进程是否已经在运行
- if (faceTrackingProcess->state() == QProcess::Running) {
QMessageBox msgBox;
msgBox.setWindowTitle("提示");
- msgBox.setText("人脸跟随程序已经在运行!");
msgBox.setStyleSheet(messageBoxStyle);
msgBox.exec();
return;
@@ -588,26 +536,21 @@ void GuidingUI::on_faceTracking_clicked()
if (!scriptFileInfo.exists()) {
QMessageBox msgBox;
msgBox.setWindowTitle("错误");
- msgBox.setText("找不到人脸跟随脚本: " + scriptPath);
msgBox.setStyleSheet(messageBoxStyle);
msgBox.exec();
return;
}
// 设置工作目录
- faceTrackingProcess->setWorkingDirectory("/home/hzk/Enjoy/src/yolov3_sort");
// 启动Python脚本
QStringList arguments;
arguments << scriptPath;
- faceTrackingProcess->start(pythonPath, arguments);
// 等待进程启动
- if (!faceTrackingProcess->waitForStarted(3000)) {
QMessageBox msgBox;
msgBox.setWindowTitle("错误");
- msgBox.setText("无法启动人脸跟随程序: " + faceTrackingProcess->errorString());
msgBox.setStyleSheet(messageBoxStyle);
msgBox.exec();
return;
@@ -615,37 +558,110 @@ void GuidingUI::on_faceTracking_clicked()
QMessageBox msgBox;
msgBox.setWindowTitle("提示");
- msgBox.setText("人脸跟随程序已启动!按'q'键可退出跟随窗口");
msgBox.setStyleSheet(messageBoxStyle);
msgBox.exec();
// 连接进程输出信号,可以在控制台显示Python脚本的输出
- connect(faceTrackingProcess, &QProcess::readyReadStandardOutput, [this]() {
- QByteArray output = faceTrackingProcess->readAllStandardOutput();
- qDebug() << "人脸跟随输出:" << output;
});
- connect(faceTrackingProcess, &QProcess::readyReadStandardError, [this]() {
- QByteArray error = faceTrackingProcess->readAllStandardError();
- qDebug() << "人脸跟随错误:" << error;
});
// 连接进程结束信号
- connect(faceTrackingProcess, static_cast(&QProcess::finished),
[this, messageBoxStyle](int exitCode, QProcess::ExitStatus exitStatus) {
if (exitStatus == QProcess::NormalExit) {
QMessageBox msgBox;
msgBox.setWindowTitle("提示");
- msgBox.setText("人脸跟随程序已正常结束,退出代码: " + QString::number(exitCode));
msgBox.setStyleSheet(messageBoxStyle);
msgBox.exec();
} else {
QMessageBox msgBox;
msgBox.setWindowTitle("警告");
- msgBox.setText("人脸跟随程序异常结束!");
msgBox.setStyleSheet(messageBoxStyle);
msgBox.exec();
}
});
}
+void GuidingUI::setupUI()
+{
+ // 设置窗口最小尺寸
+ this->setMinimumSize(1200, 800);
+
+ // 窗口居中显示
+ this->resize(1400, 900);
+ QRect screenGeometry = QApplication::desktop()->screenGeometry();
+ int x = (screenGeometry.width() - this->width()) / 2;
+ int y = (screenGeometry.height() - this->height()) / 2;
+ this->move(x, y);
+
+ // 初始化随机数生成器
+ qsrand(QTime::currentTime().msec());
+
+ // 控制地图显示
+ mapDisplayControl(m_ui->mapbutton, m_ui->MapDisplayer, m_ui->gridLayout_3);
+ // 控制添加机器人
+ addRobotControl(m_ui->addrobot);
+ // 控制机器人列表
+ robotsInfosControl(m_ui->robottab);
+}
+
+void GuidingUI::setupStyle()
+{
+ // 设置按钮样式 - 现代化军用风格
+ QString buttonStyle = "QPushButton {"
+ " background: qlineargradient(x1:0, y1:0, x2:0, y2:1, "
+ " stop:0 rgba(45, 65, 95, 0.8), "
+ " stop:1 rgba(25, 40, 65, 0.8));"
+ " color: rgb(220, 230, 242);"
+ " border: 2px solid rgba(82, 194, 242, 0.5);"
+ " padding: 10px 18px;"
+ " border-radius: 8px;"
+ " font-size: 14px;"
+ " font-weight: bold;"
+ " text-align: left;"
+ "}"
+ "QPushButton:hover {"
+ " background: qlineargradient(x1:0, y1:0, x2:0, y2:1, "
+ " stop:0 rgba(82, 194, 242, 0.7), "
+ " stop:1 rgba(45, 120, 180, 0.7));"
+ " border: 2px solid rgba(82, 194, 242, 0.9);"
+ " color: white;"
+ "}"
+ "QPushButton:pressed {"
+ " background: qlineargradient(x1:0, y1:0, x2:0, y2:1, "
+ " stop:0 rgba(82, 194, 242, 0.9), "
+ " stop:1 rgba(45, 120, 180, 0.9));"
+ " border: 2px solid rgba(82, 194, 242, 1.0);"
+ "}";
+
+ // 应用样式到所有按钮
+ m_ui->robottab->setStyleSheet(buttonStyle);
+ m_ui->robotlocation->setStyleSheet(buttonStyle);
+ m_ui->addrobot->setStyleSheet(buttonStyle);
+ m_ui->mapbutton->setStyleSheet(buttonStyle);
+ m_ui->addUAV->setStyleSheet(buttonStyle);
+ m_ui->UAVtab->setStyleSheet(buttonStyle);
+ m_ui->UAVview->setStyleSheet(buttonStyle);
+ m_ui->robotView->setStyleSheet(buttonStyle);
+ m_ui->robotMapping->setStyleSheet(buttonStyle);
+ m_ui->smartNavigation->setStyleSheet(buttonStyle);
+}
+
+void GuidingUI::connectSignals()
+{
+ // 初始化进程
+
+ // 连接按钮信号(使用新的函数名)
+ connect(m_ui->addUAV, &QPushButton::clicked, this, &GuidingUI::onAddUAVClicked);
+ connect(m_ui->UAVtab, &QPushButton::clicked, this, &GuidingUI::onUAVTabClicked);
+ connect(m_ui->robotlocation, &QPushButton::clicked, this, &GuidingUI::onRobotLocationClicked);
+ connect(m_ui->UAVview, &QPushButton::clicked, this, &GuidingUI::onUAVViewClicked);
+ connect(m_ui->robotView, &QPushButton::clicked, this, &GuidingUI::onRobotViewClicked);
+ connect(m_ui->robotMapping, &QPushButton::clicked, this, &GuidingUI::onRobotMappingClicked);
+ connect(m_ui->smartNavigation, &QPushButton::clicked, this, &GuidingUI::onSmartNavigationClicked);
+
+ // 连接进程输出信号
+ });
+
+ });
+}
\ No newline at end of file
diff --git a/src/Client/injurydisiplayui.cpp b/src/Client/src/injurydisiplayui.cpp
similarity index 100%
rename from src/Client/injurydisiplayui.cpp
rename to src/Client/src/injurydisiplayui.cpp
diff --git a/src/Client/main.cpp b/src/Client/src/main.cpp
similarity index 100%
rename from src/Client/main.cpp
rename to src/Client/src/main.cpp
diff --git a/src/Client/moc_InjuryAnalysisUI.cpp b/src/Client/src/moc_InjuryAnalysisUI.cpp
similarity index 100%
rename from src/Client/moc_InjuryAnalysisUI.cpp
rename to src/Client/src/moc_InjuryAnalysisUI.cpp
diff --git a/src/Client/moc_guidingui.cpp b/src/Client/src/moc_guidingui.cpp
similarity index 100%
rename from src/Client/moc_guidingui.cpp
rename to src/Client/src/moc_guidingui.cpp
diff --git a/src/Client/moc_injurydisiplayui.cpp b/src/Client/src/moc_injurydisiplayui.cpp
similarity index 100%
rename from src/Client/moc_injurydisiplayui.cpp
rename to src/Client/src/moc_injurydisiplayui.cpp
diff --git a/src/Client/qrc_res.cpp b/src/Client/src/qrc_res.cpp
similarity index 100%
rename from src/Client/qrc_res.cpp
rename to src/Client/src/qrc_res.cpp
diff --git a/src/Client/robotlistdialog.cpp b/src/Client/src/robotlistdialog.cpp
similarity index 100%
rename from src/Client/robotlistdialog.cpp
rename to src/Client/src/robotlistdialog.cpp
diff --git a/src/Client/tasks/todo.md b/src/Client/tasks/todo.md
deleted file mode 100644
index b2c908b..0000000
--- a/src/Client/tasks/todo.md
+++ /dev/null
@@ -1,101 +0,0 @@
-# CasualtySightPlus 界面优化任务列表
-
-## 项目概述
-基于Qt的战场探索系统界面优化,提升用户体验和专业性,准备参加比赛。
-
-## 已完成任务 ✅
-
-### 1. 分析当前界面设计和布局问题
-- **状态**: 已完成
-- **优先级**: 高
-- **完成情况**: 已分析guidingui.ui和guidingui.cpp,发现以下问题:
- - 主窗口尺寸偏小(1000x663)
- - 界面组件布局简单
- - 样式缺乏现代感和专业性
- - 缺少高级视觉效果
-
-### 2. 检查数据库连接配置,更新MySQL密码
-- **状态**: 已完成
-- **优先级**: 高
-- **完成情况**: 已找到数据库配置文件:
- - DogDatabase.cpp
- - UAVDatabase.cpp
- - InjuryDatabase.cpp
- - 需要将密码从"MYSQLqwer35257"更新为"hzk200407140238"
-
-## 待完成任务 📋
-
-### 3. 优化主界面尺寸和布局
-- **状态**: 待完成
-- **优先级**: 高
-- **任务描述**:
- - [x] 更新guidingui.ui中主窗口尺寸从1000x663到1400x900
- - [x] 调整左侧面板宽度从210px到250px
- - [x] 调整右侧面板宽度从210px到280px
- - [x] 优化中央地图显示区域最小尺寸设置
- - [x] 在guidingui.cpp构造函数中添加窗口居中显示代码
- - [x] 设置窗口最小尺寸限制为1200x800
- - [ ] 测试不同分辨率下的显示效果
-
-### 4. 美化界面组件和样式
-- **状态**: 待完成
-- **优先级**: 高
-- **任务描述**:
- - [x] 更新数据库连接密码到"hzk200407140238"(3个文件)
- - [x] 优化按钮hover效果,添加渐变和阴影
- - [x] 改善左右面板标题样式,增加背景和边框
- - [ ] 优化按钮图标和文字间距布局
- - [ ] 改善表格样式,添加斑马纹效果
- - [ ] 美化对话框样式,统一色彩方案
- - [x] 优化分隔线样式,添加发光效果
- - [ ] 改善字体大小和权重设置
-
-### 5. 增强界面专业性和视觉效果
-- **状态**: 待完成
-- **优先级**: 高
-- **任务描述**:
- - [ ] 添加按钮点击时的缩放动画效果
- - [ ] 实现面板切换的淡入淡出过渡
- - [ ] 在头部区域添加状态指示灯(在线/离线)
- - [ ] 为地图区域添加加载动画
- - [x] 优化UBEES标题,添加科技感字体效果
- - [ ] 在右面板添加实时数据显示组件
- - [ ] 改善整体配色为军用深色主题
- - [ ] 添加背景网格纹理效果
- - [ ] 为按钮组添加分组边框
-
-### 6. 将todos写到tasks/todo.md中
-- **状态**: 已完成
-- **优先级**: 高
-- **任务描述**: 将当前任务列表整理并写入任务文档
-
-## 技术要点
-
-### 数据库连接更新
-需要更新以下文件中的MySQL密码:
-```cpp
-// 当前密码: "MYSQLqwer35257"
-// 新密码: "hzk200407140238"
-```
-
-### 界面优化重点
-1. **尺寸优化**: 主窗口从1000x663提升到更大尺寸
-2. **样式现代化**: 使用更先进的Qt样式表
-3. **响应式设计**: 适配不同屏幕尺寸
-4. **专业外观**: 军用/技术风格的视觉设计
-
-## 预期成果
-- 界面尺寸适配现代显示器
-- 专业的军用技术风格界面
-- 流畅的用户交互体验
-- 适合比赛展示的高质量界面
-
-## 问题记录
-
-### 界面设计问题
-1. 初始界面太小 (1000x663)
-2. 界面整体不够精美,不够高级
-3. 界面组件过于简单
-
-### 数据库问题
-- MySQL密码已更改,需要更新代码中的连接配置
\ No newline at end of file
diff --git a/src/Client/InjuryAnalysisUI.ui b/src/Client/ui/InjuryAnalysisUI.ui
similarity index 100%
rename from src/Client/InjuryAnalysisUI.ui
rename to src/Client/ui/InjuryAnalysisUI.ui
diff --git a/src/Client/guidingui.ui b/src/Client/ui/guidingui.ui
similarity index 100%
rename from src/Client/guidingui.ui
rename to src/Client/ui/guidingui.ui
diff --git a/src/Client/injurydisiplayui.ui b/src/Client/ui/injurydisiplayui.ui
similarity index 100%
rename from src/Client/injurydisiplayui.ui
rename to src/Client/ui/injurydisiplayui.ui
diff --git a/src/Client/robotlistdialog.ui b/src/Client/ui/robotlistdialog.ui
similarity index 100%
rename from src/Client/robotlistdialog.ui
rename to src/Client/ui/robotlistdialog.ui
diff --git a/src/Client/代码规范.md b/src/Client/代码规范.md
new file mode 100644
index 0000000..6777fe4
--- /dev/null
+++ b/src/Client/代码规范.md
@@ -0,0 +1,780 @@
+# Qt C++代码规范
+
+## 1. 文件结构和命名规范
+
+### 1.1 头文件 (.h)
+
+```cpp
+#ifndef CLASSNAME_H // 头文件保护符,使用全大写
+#define CLASSNAME_H
+
+// 系统头文件在前
+#include
+#include
+#include
+
+// 第三方库头文件
+#include
+
+// 项目内部头文件在后
+#include "CustomClass.h"
+
+// 前置声明
+class QTimer;
+
+/**
+ * @class ClassName
+ * @brief 类的简要描述
+ *
+ * 详细描述类的功能和用途
+ */
+class ClassName : public QWidget
+{
+ Q_OBJECT // Qt元对象系统宏,必须位于类声明开始处
+
+public:
+ explicit ClassName(QWidget *parent = nullptr);
+ ~ClassName();
+
+ // 公有接口
+
+signals:
+ // 信号声明
+
+public slots:
+ // 公有槽函数
+
+private slots:
+ // 私有槽函数
+
+private:
+ // 私有成员变量
+ // 私有成员函数
+};
+
+#endif // CLASSNAME_H
+```
+
+### 1.2 源文件 (.cpp)
+
+```cpp
+#include "ClassName.h"
+
+// Qt头文件
+#include
+#include
+
+// 标准库头文件
+#include
+
+// 构造函数实现
+ClassName::ClassName(QWidget *parent)
+ : QWidget(parent) // 初始化列表
+ , m_memberVariable(0) // 成员变量初始化
+{
+ // 构造函数体
+ setupUi();
+ connectSignals();
+}
+
+ClassName::~ClassName()
+{
+ // 析构函数体
+}
+```
+
+## 2. 命名规范
+
+### 2.1 类名
+- 使用帕斯卡命名法(PascalCase)
+- 每个单词首字母大写
+- 名称应该清晰地表达类的功能
+
+**正确示例:**
+```cpp
+class DatabaseManager;
+class InjuryAnalysisUI;
+class GuidingUI;
+class UserLoginDialog;
+```
+
+**错误示例:**
+```cpp
+class dbManager; // 首字母应大写
+class injuryanalysisui; // 单词间应区分
+class UI_Login; // 避免下划线
+```
+
+### 2.2 函数名
+- 使用驼峰命名法(camelCase)
+- 第一个单词小写,后续单词首字母大写
+- 动词开头,清晰表达函数功能
+
+**正确示例:**
+```cpp
+void addMarker();
+void updateChart();
+bool connectToDatabase();
+QString getUserName() const;
+void setUserName(const QString &name);
+```
+
+### 2.3 变量名
+
+#### 成员变量
+- 使用`m_`前缀
+- 后续使用驼峰命名法
+
+```cpp
+class MyClass
+{
+private:
+ QString m_databaseName; // 数据库名称
+ QSqlDatabase m_sqlDb; // 数据库连接
+ int m_fieldCount; // 字段数量
+ bool m_isConnected; // 连接状态
+};
+```
+
+#### 局部变量
+- 使用驼峰命名法
+- 名称应该具有描述性
+
+```cpp
+void processData()
+{
+ QString userName; // 用户名
+ int itemCount = 0; // 项目数量
+ bool isConnected = false; // 连接状态
+ QStringList fieldNames; // 字段名列表
+}
+```
+
+#### 常量
+- 全大写,下划线分隔
+- 使用`const`或`constexpr`
+
+```cpp
+const int MAX_RETRY_COUNT = 3;
+const QString DEFAULT_HOST = "localhost";
+const double PI = 3.14159265359;
+static constexpr int BUFFER_SIZE = 1024;
+```
+
+### 2.4 枚举
+```cpp
+enum class ConnectionState
+{
+ Disconnected,
+ Connecting,
+ Connected,
+ Error
+};
+```
+
+## 3. 注释规范
+
+### 3.1 文件头注释
+
+```cpp
+/**
+ * @file DatabaseManager.h
+ * @brief 数据库管理类定义
+ * @author 作者姓名
+ * @date 2024-01-01
+ * @version 1.0
+ *
+ * 数据库管理类,提供数据库连接、查询、更新等功能。
+ * 使用单例模式确保全局只有一个数据库连接实例。
+ *
+ * @note 依赖Qt SQL模块
+ * @since 1.0
+ */
+```
+
+### 3.2 类注释
+
+```cpp
+/**
+ * @class DatabaseManager
+ * @brief 数据库管理类
+ *
+ * 提供数据库连接、查询、更新等功能。
+ * 使用单例模式确保全局只有一个数据库连接实例。
+ *
+ * 主要功能:
+ * - 数据库连接管理
+ * - SQL查询执行
+ * - 事务处理
+ * - 错误处理
+ *
+ * @note 这是一个线程安全的类
+ * @warning 使用前必须先调用initialize()方法
+ * @see QSqlDatabase
+ * @since 1.0
+ */
+class DatabaseManager
+{
+ // ...
+};
+```
+
+### 3.3 函数注释
+
+```cpp
+/**
+ * @brief 添加伤员记录到数据库
+ *
+ * 将伤员信息插入到数据库的injurydatabase表中。
+ * 如果数据库连接失败或SQL执行出错,函数将返回false。
+ *
+ * @param data 伤员数据结构体,包含以下字段:
+ * - id: 伤员唯一标识符
+ * - rank: 伤情等级 (0:轻微, 1:一般, 2:严重)
+ * - lon: 经度坐标
+ * - lat: 纬度坐标
+ * - flag: 状态标志
+ *
+ * @return bool 操作结果
+ * @retval true 添加成功
+ * @retval false 添加失败(数据库连接失败或SQL执行错误)
+ *
+ * @note 调用此函数前需要确保数据库连接正常
+ * @warning 不会检查数据的有效性,调用者需要自行验证
+ * @see Injury结构体定义
+ * @see deleteById()
+ *
+ * @example
+ * @code
+ * Injury injury;
+ * injury.id = "001";
+ * injury.rank = 1;
+ * injury.lon = 113.045292;
+ * injury.lat = 28.257748;
+ * injury.flag = 1;
+ *
+ * bool result = databaseManager->add(injury);
+ * if (result) {
+ * qDebug() << "伤员记录添加成功";
+ * } else {
+ * qDebug() << "伤员记录添加失败";
+ * }
+ * @endcode
+ */
+bool add(const Injury &data);
+```
+
+### 3.4 行内注释
+
+```cpp
+// 单行注释,解释代码逻辑
+int count = 0; // 计数器,记录处理的记录数
+
+// 复杂逻辑需要详细注释
+if (m_database.isOpen() && !userName.isEmpty()) {
+ // 数据库已连接且用户名有效,执行查询
+ executeQuery(buildSelectQuery(userName));
+}
+
+/*
+ * 多行注释用于解释复杂的逻辑
+ * 或者描述算法的实现原理
+ * 也可以用于临时禁用代码块
+ */
+
+/**
+ * TODO: 需要优化查询性能
+ * FIXME: 修复内存泄漏问题
+ * HACK: 临时解决方案,需要后续重构
+ * NOTE: 重要说明或提醒
+ */
+```
+
+## 4. 代码格式规范
+
+### 4.1 缩进和空格
+
+```cpp
+// 使用4个空格缩进(不使用Tab)
+class MyClass
+{
+public:
+ void myFunction()
+ {
+ if (condition) {
+ doSomething();
+ }
+
+ // 操作符前后加空格
+ int result = a + b * c;
+ bool isValid = (x > 0) && (y < 100);
+
+ // 函数调用括号前不加空格,参数间加空格
+ myFunction(param1, param2);
+
+ // 数组访问不加空格
+ array[index] = value;
+
+ // 指针和引用符号靠近类型
+ QString *pointer;
+ const QString &reference;
+ }
+};
+```
+
+### 4.2 花括号位置
+
+```cpp
+// Qt风格:花括号另起一行
+class MyClass
+{
+public:
+ void function()
+ {
+ if (condition)
+ {
+ // 代码块
+ }
+ else
+ {
+ // 代码块
+ }
+
+ // 循环语句
+ for (int i = 0; i < count; ++i)
+ {
+ processItem(i);
+ }
+
+ // switch语句
+ switch (value)
+ {
+ case 1:
+ handleCase1();
+ break;
+ case 2:
+ handleCase2();
+ break;
+ default:
+ handleDefault();
+ break;
+ }
+ }
+};
+```
+
+### 4.3 行长度和换行
+
+```cpp
+// 每行不超过100个字符
+// 长函数调用需要换行
+connect(ui->pushButton, &QPushButton::clicked,
+ this, &MyClass::onButtonClicked);
+
+// 长条件语句换行
+if (veryLongConditionName && anotherLongConditionName &&
+ yetAnotherCondition)
+{
+ // 处理逻辑
+}
+
+// 函数参数过多时换行
+void longFunctionName(const QString &firstParameter,
+ int secondParameter,
+ bool thirdParameter,
+ const QObject *fourthParameter);
+```
+
+## 5. Qt特定规范
+
+### 5.1 信号和槽
+
+```cpp
+class MyWidget : public QWidget
+{
+ Q_OBJECT
+
+public:
+ explicit MyWidget(QWidget *parent = nullptr);
+
+signals:
+ /**
+ * @brief 数据更新信号
+ * @param data 更新的数据
+ */
+ void dataUpdated(const QString &data);
+
+ /**
+ * @brief 错误发生信号
+ * @param errorMessage 错误信息
+ */
+ void errorOccurred(const QString &errorMessage);
+
+public slots:
+ /**
+ * @brief 设置数据
+ * @param data 要设置的数据
+ */
+ void setData(const QString &data);
+
+private slots:
+ /**
+ * @brief 按钮点击槽函数
+ */
+ void on_pushButton_clicked();
+
+ /**
+ * @brief 处理网络回复
+ */
+ void handleNetworkReply();
+
+private:
+ // 建议使用新的连接语法
+ void setupConnections()
+ {
+ connect(ui->pushButton, &QPushButton::clicked,
+ this, &MyWidget::on_pushButton_clicked);
+
+ connect(m_networkManager, &QNetworkAccessManager::finished,
+ this, &MyWidget::handleNetworkReply);
+ }
+};
+```
+
+### 5.2 属性系统
+
+```cpp
+class MyClass : public QObject
+{
+ Q_OBJECT
+ Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged)
+ Q_PROPERTY(int value READ value WRITE setValue NOTIFY valueChanged)
+
+public:
+ // 属性读取器
+ QString name() const { return m_name; }
+ int value() const { return m_value; }
+
+ // 属性设置器
+ void setName(const QString &name)
+ {
+ if (m_name != name) {
+ m_name = name;
+ emit nameChanged();
+ }
+ }
+
+ void setValue(int value)
+ {
+ if (m_value != value) {
+ m_value = value;
+ emit valueChanged();
+ }
+ }
+
+signals:
+ void nameChanged();
+ void valueChanged();
+
+private:
+ QString m_name;
+ int m_value = 0;
+};
+```
+
+### 5.3 Q_OBJECT宏使用
+
+```cpp
+// 正确:继承自QObject的类需要Q_OBJECT宏
+class MyQObjectClass : public QObject
+{
+ Q_OBJECT // 必须在类声明的开始处
+
+public:
+ explicit MyQObjectClass(QObject *parent = nullptr);
+
+signals:
+ void somethingHappened();
+};
+
+// 纯数据结构不需要Q_OBJECT
+struct DataStructure
+{
+ QString id;
+ int value;
+ double coordinate;
+};
+```
+
+## 6. 错误处理和调试
+
+### 6.1 调试输出
+
+```cpp
+#include
+#include
+
+// 定义日志分类
+Q_LOGGING_CATEGORY(database, "app.database")
+Q_LOGGING_CATEGORY(network, "app.network")
+
+void MyClass::processData()
+{
+ qCDebug(database) << "开始处理数据...";
+ qCDebug(database) << "数据库连接状态:" << m_database.isOpen();
+
+ if (!m_database.isOpen()) {
+ qCWarning(database) << "数据库未连接";
+ return;
+ }
+
+ // 调试信息输出
+ qDebug() << "处理记录数量:" << records.size();
+ qInfo() << "用户操作:" << userAction;
+ qWarning() << "性能警告: 查询耗时过长";
+ qCritical() << "严重错误: 数据库连接丢失";
+}
+```
+
+### 6.2 异常和错误处理
+
+```cpp
+bool DatabaseManager::executeQuery(const QString &sql)
+{
+ // 参数验证
+ if (sql.isEmpty()) {
+ qWarning() << "SQL语句为空";
+ return false;
+ }
+
+ if (!m_database.isOpen()) {
+ qCritical() << "数据库未连接";
+ return false;
+ }
+
+ try {
+ QSqlQuery query(m_database);
+ if (!query.prepare(sql)) {
+ qCritical() << "SQL预处理失败:" << query.lastError().text();
+ return false;
+ }
+
+ if (!query.exec()) {
+ qCritical() << "SQL执行失败:" << query.lastError().text();
+ qCritical() << "执行的SQL:" << sql;
+ return false;
+ }
+
+ qDebug() << "SQL执行成功,影响行数:" << query.numRowsAffected();
+ return true;
+
+ } catch (const std::exception &e) {
+ qCritical() << "执行异常:" << e.what();
+ return false;
+ }
+}
+```
+
+### 6.3 断言使用
+
+```cpp
+#include
+
+void processArray(const QStringList &list, int index)
+{
+ // 调试版本中检查参数有效性
+ Q_ASSERT(!list.isEmpty());
+ Q_ASSERT(index >= 0 && index < list.size());
+
+ // 生产版本中的参数检查
+ if (list.isEmpty()) {
+ qWarning() << "列表为空";
+ return;
+ }
+
+ if (index < 0 || index >= list.size()) {
+ qWarning() << "索引超出范围:" << index;
+ return;
+ }
+
+ // 处理逻辑
+ QString item = list.at(index);
+ // ...
+}
+```
+
+## 7. 内存管理
+
+### 7.1 智能指针使用
+
+```cpp
+#include
+#include
+#include
+
+class MyClass
+{
+private:
+ // Qt智能指针
+ QScopedPointer m_timer; // 独占所有权
+ QSharedPointer m_reply; // 共享所有权
+
+ // 标准库智能指针
+ std::unique_ptr m_connection;
+ std::shared_ptr m_config;
+
+public:
+ MyClass()
+ : m_timer(new QTimer(this)) // 自动删除
+ , m_connection(std::make_unique())
+ {
+ // 初始化
+ }
+};
+```
+
+### 7.2 对象生命周期管理
+
+```cpp
+// 使用父子关系管理内存
+void createUI()
+{
+ QWidget *mainWidget = new QWidget;
+
+ // 子控件会被父控件自动删除
+ QLabel *label = new QLabel("文本", mainWidget);
+ QPushButton *button = new QPushButton("按钮", mainWidget);
+
+ // 布局也会被父控件管理
+ QVBoxLayout *layout = new QVBoxLayout(mainWidget);
+ layout->addWidget(label);
+ layout->addWidget(button);
+}
+
+// 手动管理生命周期
+void processData()
+{
+ // 使用栈对象,自动销毁
+ QSqlQuery query;
+
+ // 或使用智能指针
+ QScopedPointer manager(new QNetworkAccessManager);
+
+ // 处理逻辑...
+} // 函数结束时自动销毁
+```
+
+## 8. 性能优化建议
+
+### 8.1 字符串处理
+
+```cpp
+// 优先使用const引用传递字符串
+void processString(const QString &str) // 好
+{
+ // 处理逻辑
+}
+
+void processString(QString str) // 避免,会产生拷贝
+{
+ // 处理逻辑
+}
+
+// 字符串拼接优化
+QString buildQuery(const QStringList &fields, const QString &table)
+{
+ // 使用QStringBuilder或预分配容量
+ QString query;
+ query.reserve(100); // 预分配空间
+
+ query += "SELECT ";
+ query += fields.join(", ");
+ query += " FROM ";
+ query += table;
+
+ return query;
+}
+```
+
+### 8.2 容器使用
+
+```cpp
+// 优先使用const引用遍历
+void processItems(const QStringList &items)
+{
+ // 使用基于范围的for循环
+ for (const QString &item : items) {
+ processItem(item);
+ }
+
+ // 或使用const迭代器
+ for (auto it = items.cbegin(); it != items.cend(); ++it) {
+ processItem(*it);
+ }
+}
+
+// 预分配容器大小
+QStringList buildList(int expectedSize)
+{
+ QStringList list;
+ list.reserve(expectedSize); // 避免频繁重新分配
+
+ for (int i = 0; i < expectedSize; ++i) {
+ list.append(QString::number(i));
+ }
+
+ return list;
+}
+```
+
+## 9. 代码审查检查清单
+
+### 9.1 基本检查
+- [ ] 头文件包含保护符正确
+- [ ] 包含文件顺序正确(系统 -> 第三方 -> 项目内部)
+- [ ] 命名规范符合要求
+- [ ] 缩进和格式一致
+- [ ] 没有多余的空白行
+
+### 9.2 功能检查
+- [ ] 函数功能单一,职责明确
+- [ ] 参数验证充分
+- [ ] 错误处理完善
+- [ ] 内存管理正确
+- [ ] 线程安全(如需要)
+
+### 9.3 Qt特定检查
+- [ ] Q_OBJECT宏位置正确
+- [ ] 信号槽连接使用新语法
+- [ ] 父子关系设置正确
+- [ ] 元对象系统使用得当
+
+### 9.4 文档检查
+- [ ] 公有接口有完整注释
+- [ ] 复杂逻辑有行内注释
+- [ ] 文件头信息完整
+- [ ] 示例代码正确
+
+## 10. 工具推荐
+
+### 10.1 代码格式化工具
+- **clang-format**: 自动格式化代码
+- **Qt Creator**: 内置代码格式化功能
+
+### 10.2 静态分析工具
+- **clang-static-analyzer**: 静态代码分析
+- **cppcheck**: C++静态分析工具
+- **PVS-Studio**: 商业静态分析工具
+
+### 10.3 文档生成工具
+- **Doxygen**: 从注释生成文档
+- **qdoc**: Qt官方文档工具
+
+---
+
+**注意事项:**
+1. 本规范基于Qt官方编码风格和现代C++最佳实践
+2. 团队应该保持一致的编码风格
+3. 新项目应该严格遵循这些规范
+4. 现有项目可以逐步重构以符合规范
+5. 定期进行代码审查以确保规范执行