blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
26bed2c3a6b6edf033573141d63c7cab81b6f551 | 1e0e16b83d4c8783c64a09ad998ef8c838551974 | /Userland/Libraries/LibUnicode/CharacterTypes.h | beb2288cfb7b6918a12be8d2a21e6004d3c2c64b | [
"BSD-2-Clause"
] | permissive | grlap/serenity | c61db5b82fcfa385c9c68bd37887d4577f12cc1a | d1ee31c5def4aa03798bcc8875bbd387df1b02e2 | refs/heads/master | 2023-07-03T12:49:20.390816 | 2021-07-29T21:28:04 | 2021-07-29T21:47:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 546 | h | /*
* Copyright (c) 2021, Tim Flynn <trflynn89@pm.me>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Forward.h>
#include <AK/String.h>
#include <AK/Types.h>
namespace Unicode {
// Note: The single code point case conversions only perform simple case folding.
// Use the full-string transformations for full case folding.
u32 to_unicode_lowercase(u32 code_point);
u32 to_unicode_uppercase(u32 code_point);
String to_unicode_lowercase_full(StringView const&);
String to_unicode_uppercase_full(StringView const&);
}
| [
"mail@linusgroh.de"
] | mail@linusgroh.de |
90780627dc74f9d0dc1edb06d2245074c34dd633 | d2476c2672084f0287801280f51990f8c4648f2a | /Source/Choi/BTTask_TargetMove.cpp | 9a2f64a56e2d2a14b2a2419c87bcf6a96c2efe0b | [] | no_license | chamnah/Portfolio_Ue4Defence | ecf0d863d4648b0755a713e61425a6fe1355526c | a7350c9e411dfaf3c55886284e9d87c229dede66 | refs/heads/master | 2022-06-15T13:23:42.479726 | 2020-05-06T12:50:27 | 2020-05-06T12:50:27 | 261,756,385 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 158 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "BTTask_TargetMove.h"
UBTTask_TargetMove::UBTTask_TargetMove()
{
} | [
"46718509+chamnah@users.noreply.github.com"
] | 46718509+chamnah@users.noreply.github.com |
06f9a829ad4658bff0fbb2f16e0f772a2495d739 | 7977f753e46cbcaf335cfbd1b15de346008dbcb4 | /6/book_code/prog6_1_3_fact.cc | 6f95066fa80770474b7a141624b79847bed3f38a | [] | no_license | Roller44/learnCplusplus | e1d6f12e7e36a988f98eec22f32be24fd7bc924a | 277ed387fc694c9cd7bac1a2d1886653798846a5 | refs/heads/master | 2021-01-16T22:15:19.705016 | 2020-01-28T09:45:37 | 2020-01-28T09:45:37 | 56,282,711 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 129 | cc | #include "Chapter6.h"
int fact(int val)
{
int ret = 1;
while (val > 1) {
ret *= val--;
}
return ret;
}
| [
"roller44@163.com"
] | roller44@163.com |
3681368a5951bafa042aebeca4ac73f3659e96e9 | 452dafe3f2c76d22a33098634016c1e323456a67 | /Problems/1245A.cpp | 0c1e9e167479a78e7584856e5335d3606c54cf8a | [] | no_license | nikakogho/codeforces | 6c87b4d7b640808813e405d5ce6e129bd527f5df | b6261f5a83e221de190f6daec3ba932e45d1acca | refs/heads/master | 2023-03-21T19:34:58.401874 | 2021-03-06T15:49:16 | 2021-03-06T15:49:16 | 345,130,987 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 260 | cpp | #include <bits/stdc++.h>
using namespace std;
int main()
{
short t;
cin >> t;
while(t--)
{
int a, b;
cin >> a >> b;
while(a != b)
if(a > b) a -= b;
else b -= a;
string answer = a == 1 ? "Finite" : "Infinite";
cout << answer << endl;
}
}
| [
"nikakoghuashvili@gmail.com"
] | nikakoghuashvili@gmail.com |
eff15bf3ed53fbe654f2aa7d6c0ea403a54934b2 | bf8fdb14e8be48efd80c2d5e4a9751aded0b3e7b | /Game/Koopa.cpp | 17d3f00f00e6be6233112eec54d00e69d6571ced | [] | no_license | tranphuongduy20/supermario3 | 2aa6d7bec6c19d7955a0965b0649925f3465c5d0 | fcbb3275392f4cba96ec2dd614b9183f5abfe74e | refs/heads/master | 2023-01-13T07:15:37.029016 | 2020-11-13T07:01:00 | 2020-11-13T07:01:00 | 306,828,328 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,144 | cpp | #include "Koopa.h"
#include "Brick.h"
Koopa::Koopa()
{
tag = EntityType::KOOPA;
SetState(KOOPA_STATE_WALKING);
}
void Koopa::GetBoundingBox(float& left, float& top, float& right, float& bottom)
{
left = x;
right = x + KOOPA_BBOX_WIDTH;
bottom = y + KOOPA_BBOX_HEIGHT+1;
/*if (state == KOOPA_STATE_DIE)
bottom = y + KOOPA_BBOX_HEIGHT_DIE;
else
bottom = y + KOOPA_BBOX_HEIGHT;*/
if (state == KOOPA_STATE_DIE || state == KOOPA_STATE_TROOPA_SPIN)
top = y + 10;
else
top = y + 10;
//else
// bottom = y + KOOPA_BBOX_HEIGHT;
}
void Koopa::Update(DWORD dt, vector<LPGAMEENTITY>* coObjects)
{
Entity::Update(dt);
// Simple fall down
DebugOut(L"SOPT:%d \n", state);
if(state != KOOPA_STATE_DIE) vy += 0.002 * dt;
vector<LPCOLLISIONEVENT> coEvents;
vector<LPCOLLISIONEVENT> coEventsResult;
coEvents.clear();
if (/*state != KOOPA_STATE_DIE &&*/ state != KOOPA_STATE_DIE_FLY)
{
//Disable Collider
CalcPotentialCollisions(coObjects, coEvents);
}
// No collision occured, proceed normally
if (coEvents.size() == 0)
{
x += dx;
y += dy;
}
else
{
float min_tx, min_ty, nx = 0, ny;
float rdx = 0;
float rdy = 0;
// TODO: This is a very ugly designed function!!!!
FilterCollision(coEvents, coEventsResult, min_tx, min_ty, nx, ny, rdx, rdy);
// how to push back Mario if collides with a moving objects, what if Mario is pushed this way into another object?
//if (rdx != 0 && rdx!=dx)
// x += nx*abs(rdx);
// block every object first!
x += min_tx * dx + nx * 0.4f;
y += min_ty * dy + ny * 0.4f;
//if (nx != 0) vx = 0;
if (ny != 0) vy = 0;
//
// Collision logic with other objects
//
//DebugOut(L"SOPT:%d \n", coEvents.size());
/*if (coEvents.size() >= 3 )
vx *= -1;*/
for (UINT i = 0; i < coEventsResult.size(); i++)
{
LPCOLLISIONEVENT e = coEventsResult[i];
if (dynamic_cast<Brick*>(e->obj))
if (e->nx != 0)vx = -1 * vx;
}
}
for (UINT i = 0; i < coEvents.size(); i++) delete coEvents[i];
}
void Koopa::Render()
{
int ani = KOOPA_ANI_WALKING;
if (state == KOOPA_STATE_DIE) {
ani = KOOPA_ANI_DIE;
}
else if (state == KOOPA_STATE_TROOPA_SPIN) {
ani = KOOPA_ANI_TROOPA_SPIN;
}
else if (state == KOOPA_STATE_DIE_FLY)
ani = KOOPA_ANI_DIE_FLY;
if (state == KOOPA_STATE_WALKING)
animationSet->at(ani)->Render(nx, x, y);
else if (state == KOOPA_STATE_DIE)
{
/*if (timerenderanidie == 0)
timerenderanidie = GetTickCount64();
if (GetTickCount64() - timerenderanidie < 200)*/
animationSet->at(ani)->Render(nx, x, y);
}
else if (state == KOOPA_STATE_DIE_FLY)
{
animationSet->at(ani)->Render(nx, x, y);
}
if (vx > 0)
nx = 1;
else nx = -1;
animationSet->at(ani)->Render(nx, x, y);
RenderBoundingBox();
}
void Koopa::SetState(int state)
{
Entity::SetState(state);
switch (state)
{
case KOOPA_STATE_DIE:
y += (KOOPA_BBOX_HEIGHT - KOOPA_BBOX_HEIGHT_DIE)/2 -5;
vx = 0;
vy = 0;
break;
case KOOPA_STATE_WALKING:
vx = KOOPA_WALKING_SPEED;
break;
case KOOPA_STATE_TROOPA_SPIN:
vx = -nx * 0.1;
break;
case KOOPA_STATE_DIE_FLY:
vx = -KOOPA_WALKING_SPEED + 0.04f;
vy = -0.35;
break;
}
}
| [
"bob@"
] | bob@ |
dc046b4ced497a6335a1b2be8a948df75eed62b3 | 976a99fbb455f5486196663ed319673d90faad62 | /src/QmlOpenGLWindowInteractor.cpp | 09640e9909e7479ca1c9750d42f358c0560342ab | [] | no_license | seanhxx/QMLOpenGLVTK | 666eff7b0226180129ba2ee637a5c65966c89eab | 58e4ea53c00d5fa05fb2df1b73c0a70808450c6c | refs/heads/master | 2020-09-14T00:26:03.799875 | 2019-12-10T10:23:47 | 2019-12-10T10:23:47 | 222,952,158 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,601 | cpp |
#include <QQmlContext>
#include <QQmlApplicationEngine>
#include <Qt>
#include "QmlOpenGLWindowInteractor.h"
#include "QmlVTKOpenGLRenderWindowInteractor.h"
QmlOpenGLWindowInteractor::QmlOpenGLWindowInteractor()
{
qDebug() << "QmlOpenGLWindowInteractor::QmlOpenGLWindowInteractor: Initialize";
setAcceptedMouseButtons(Qt::LeftButton | Qt::RightButton);
}
QQuickFramebufferObject::Renderer * QmlOpenGLWindowInteractor::createRenderer() const
{
qDebug() << "QmlOpenGLWindowInteractor::createRenderer";
return new QmlVTKOpenGLRenderWindowInteractor();
}
void QmlOpenGLWindowInteractor::mousePressEvent(QMouseEvent * e)
{
qDebug() << "QmlOpenGLWindowInteractor::MouseEvent: {}" << e->buttons();
}
void QmlOpenGLWindowInteractor::testMethod()
{
qDebug() << "Test print";
}
WId QmlOpenGLWindowInteractor::getWinId()
{
QQmlContext * currentContext = QQmlApplicationEngine::contextForObject(this);
QQmlApplicationEngine * engine = qobject_cast<QQmlApplicationEngine *>(currentContext->engine());
QObject * rootObject = engine->rootObjects().first();
/* QObject * interactor = rootObject->findChild<QObject*>("interactor");
itemWindow = qobject_cast<QQuickItem*>(interactor)->window(); */
QObject * iWin = rootObject->findChild<QObject*>("iWin");
itemWindow = qobject_cast<QQuickItem*>(iWin)->window();
WId widQuick = itemWindow->winId();
qDebug() << "window Quick ID: " << widQuick;
QWindow * window = qobject_cast<QWindow *>(rootObject);
WId wid = window->winId();
qDebug() << "window ID: " << wid;
return widQuick;
} | [
"seanhxx42@live.com"
] | seanhxx42@live.com |
c303aad09a4dd71981fb6c9fa28b891e6ec362f6 | 63174a2104990b7202e9088bd28bfca578e36542 | /include/nvutils.h | 7b772351258b62593e2d828b232be9ade7e20ab4 | [] | no_license | Limbbo/Naverlabs-LiDAR-API | 98a32244225fb2e383cf4a66bd81c828e36aab98 | 3ca36c53f4273c21757551c9ac0ef259e81a8208 | refs/heads/main | 2023-09-05T10:02:54.658527 | 2021-11-19T08:23:32 | 2021-11-19T08:23:32 | 442,138,676 | 1 | 0 | null | 2021-12-27T11:20:38 | 2021-12-27T11:20:38 | null | UTF-8 | C++ | false | false | 6,465 | h | #ifndef NVUTILS_H
#define NVUTILS_H
#include <map>
#include <H5Cpp.h>
#include <boost/multi_array.hpp>
#include <experimental/filesystem>
#include <algorithm>
#include <iostream>
#include <vector>
#include <ros/ros.h>
#include <nav_msgs/Path.h>
#include <sensor_msgs/PointCloud2.h>
#include <geometry_msgs/Pose.h>
#include <pcl/common/transforms.h>
#include <pcl_conversions/pcl_conversions.h>
#include <pcl/filters/voxel_grid.h>
#include <pcl/point_types.h>
#include <pcl/io/pcd_io.h>
#include <pcl/point_cloud.h>
#include <yaml.h>
#include <tf/tf.h>
#include <visualization_msgs/Marker.h>
#include <visualization_msgs/MarkerArray.h>
#include <fstream>
#include <signal.h>
//using namespace fs = std::filesystem;
using namespace std::experimental::filesystem::v1;
using namespace std;
using PointType = pcl::PointXYZ;
#define PCD_NAME_DELIMITER "_"
#define LARGE_ENOUGH 30000
#define MAP_CLOUD_LARGE_ENOUGH 3000000
#define MARKER_SCALE 3
#define SCORE_MARKER_SCALE 0.7
#define MARKER_LOC 10
#define UNIT_TIMESTAMP_INTERVAL 0.1
#define FEATURE_EXTRACTION_USING_FPFH 0
#define FEATURE_EXTRACTION_USING_SPINNET 1
struct Pose3 {
Eigen::Translation3f position;
Eigen::Quaternionf orientation;
Pose3(const Eigen::Matrix4f &tf4x4) :
position(Eigen::Translation3f(tf4x4.topRightCorner(3, 1))),
orientation(Eigen::Quaternionf(tf4x4.block<3, 3>(0, 0))) {};
Pose3(const vector<double> &vec) :
position(Eigen::Translation3f(vec[0], vec[1], vec[2])),
orientation(Eigen::Quaternionf(vec[3], vec[4], vec[5], vec[6])) {};
Pose3(const Eigen::Translation3f &tf, const Eigen::Quaternionf &q) :
position(tf),
orientation(q) {};
};
struct sensorInfos {
vector<string> ids = {"lidar0", "lidar1"};
vector<Pose3> sensorPoses = {Pose3({0.000000, 0.000000, 0.400000, 0.000000, 0.707107, -0.707107, 0.000000}),
Pose3({-0.017810, 0.002077, 0.853309, 0.507853, 0.494743, -0.501624,
-0.495670})}; // x,y,z,qw,qx,qy,qz
};
//void readAllHdf5(const string& strHdfFileName, std::map<string, map<uint64_t, gtsam::Pose3> >& lidarPosesMap);
//void readAllTimeStamps(const vector<string>& lidarPcdNames, vector<uint64_t>& timeStamps);
// Conversion
Eigen::Matrix3d eigenf2eigend(const Eigen::Matrix3f &eigen3x3);
Eigen::Matrix4d eigenf2eigend(const Eigen::Matrix4f &eigen4x4);
Eigen::Matrix3f eigend2eigenf(const Eigen::Matrix3d &eigen3x3);
Eigen::Matrix4f eigend2eigenf(const Eigen::Matrix4d &eigen4x4);
uint64_t str2uint64_t(const string &str);
Eigen::Matrix4f pose2eigen(const Pose3 &pose);
Eigen::VectorXf eigen2xyzrpy(const Eigen::Matrix4f &eigenPose);
geometry_msgs::Pose eigen2geoPose(const Eigen::Matrix4f pose);
tf::Matrix3x3 getRotMat(const Eigen::Matrix4f &eigenPose);
template<typename T>
sensor_msgs::PointCloud2 cloud2msg(pcl::PointCloud<T> cloud, std::string frame_id = "map") {
sensor_msgs::PointCloud2 cloud_ROS;
pcl::toROSMsg(cloud, cloud_ROS);
cloud_ROS.header.frame_id = frame_id;
return cloud_ROS;
}
template<typename T>
pcl::PointCloud<T> cloudmsg2cloud(sensor_msgs::PointCloud2 cloudmsg) {
pcl::PointCloud<T> cloudresult;
pcl::fromROSMsg(cloudmsg, cloudresult);
return cloudresult;
}
template<typename T>
void cloudmsg2cloudptr(sensor_msgs::PointCloud2 cloudmsg, boost::shared_ptr<pcl::PointCloud<T> > cloudPtr) {
pcl::fromROSMsg(cloudmsg, *cloudPtr);
}
void setNavPath(const Eigen::Matrix4f &pose, const int &idx, nav_msgs::Path &path);
// It is for TEASER++
template<typename T>
void pc2eigen(const boost::shared_ptr<pcl::PointCloud<T> > srcPtr, Eigen::Matrix<double, 3, Eigen::Dynamic> &eigenXYZ) {
int N = srcPtr->points.size();
for (int i = 0; i < N; ++i) {
eigenXYZ.col(i) << srcPtr->points[i].x, srcPtr->points[i].y, srcPtr->points[i].z;
}
}
template<typename T>
void voxelize(const boost::shared_ptr<pcl::PointCloud<T> > srcPtr, pcl::PointCloud<T> &dst, double voxelSize) {
static pcl::VoxelGrid<T> voxel_filter;
voxel_filter.setInputCloud(srcPtr);
voxel_filter.setLeafSize(voxelSize, voxelSize, voxelSize);
voxel_filter.filter(dst);
}
template<typename T>
void voxelize(const boost::shared_ptr<pcl::PointCloud<T> > srcPtr, boost::shared_ptr<pcl::PointCloud<T> > dstPtr,
double voxelSize) {
static pcl::VoxelGrid<T> voxel_filter;
voxel_filter.setInputCloud(srcPtr);
voxel_filter.setLeafSize(voxelSize, voxelSize, voxelSize);
voxel_filter.filter(*dstPtr);
}
void setTextMarker(visualization_msgs::Marker &marker);
void setPositionMarker(visualization_msgs::Marker &marker, geometry_msgs::Pose &pose);
void setMarkerColor(visualization_msgs::Marker &marker, float score,
float lowestBoundary, float middleBoundary, float highestBoundary);
void setCorrespondenceMarker(visualization_msgs::Marker &marker,
pcl::PointCloud<PointType>::Ptr ptrSrc, pcl::PointCloud<PointType>::Ptr ptrTgt,
std::vector<std::pair<int, float> > &correspondence, float distThreshold);
void setCorrespondenceMarker(visualization_msgs::Marker& marker,
pcl::PointCloud<PointType>& src_matched, pcl::PointCloud<PointType>& tgt_matched,
float thickness=2, std::vector<float> rgb_color={1.0, 1.0, 1.0});
void setCorrespondenceMarker(visualization_msgs::Marker &marker,
pcl::PointCloud<PointType>::Ptr ptrSrc, pcl::PointCloud<PointType>::Ptr ptrTgt,
std::vector<std::pair<int, int> > &correspondence,
float thickness,
std::vector<float> rgb_color={1.0, 1.0, 0.0});
//int loadCloudWrtBody(string& absPath, Eigen::Matrix4f& lidar2body, pcl::PointCloud<PointType>::Ptr dstCloud);
void writePose(ofstream &FileObj, int idx, geometry_msgs::Pose P);
void writePose(ofstream &FileObj, int srcIdx, int tgtIdx, double score, geometry_msgs::Pose P);
//Eigen::Matrix4f loadBodyTf4x4(const map<uint64_t, gtsam::Pose3>& poseMap, const Eigen::Matrix4f& lidar2body, uint64_t keyTs);
void pcl2eigen(const pcl::PointCloud<PointType> &pcl_raw, Eigen::Matrix<double, 3, Eigen::Dynamic> &cloud);
void eigen2pcl(const Eigen::Matrix<double, 3, Eigen::Dynamic> &src, pcl::PointCloud<PointType> &cloud);
int calQuadrant(PointType& p);
#endif | [
"shapelim@kaist.ac.kr"
] | shapelim@kaist.ac.kr |
b3ea108ac3539c4159814e08237d67f13d61e91d | b609e082abeefb2c9be7bee31f2306b70bb29bce | /make_csr.cpp | 1bb32c14ddedc6018cf2403ea24cb8d32b8364cc | [
"MIT"
] | permissive | primenumber/LSmethod | 9bc6add6891c4ef59aa5055aedcc223eb33776b6 | 3f0f2ac216ce16f0cbb22a4ea8d86befddb4b773 | refs/heads/master | 2020-12-07T21:00:44.434162 | 2017-01-01T08:48:06 | 2017-01-01T08:48:06 | 66,283,857 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 793 | cpp | #include "make_csr.hpp"
namespace math {
SpMat make_csr() {
SpMat res;
// initialize matrix
int n;
scanf("%d", &n);
res.col_size = 0;
res.row_size = 0;
for (int i = 0; i < n; ++i) {
int row, col;
math::Real val;
scanf("%d %d %lf", &row, &col, &val);
res.col_size = std::max(res.col_size, col + 1);
if (row+1 == res.row_size) {
if (col == res.cols.back()) {
res.elems.back() += val;
} else {
res.cols.push_back(col);
res.elems.push_back(val);
}
} else {
res.row_offsets.push_back(res.cols.size());
res.row_size = std::max(res.row_size, row+1);
res.cols.push_back(col);
res.elems.push_back(val);
}
}
res.row_offsets.push_back(res.cols.size());
return res;
}
} // namespace math
| [
"prime@kmc.gr.jp"
] | prime@kmc.gr.jp |
6ae47ffd8835d814a202d26a935157375d745cf5 | 9e54913b877a1d53e4727e45df3f936591fdcae2 | /aceproc/str2array.cpp | 2b92ba28a3668f80e260fdc004f0fbc1117dd987 | [] | no_license | jhp333/aux | 3d25ad3a2fefe08b04b9e6726acc82b91aa38cfa | 55ca94d6dea93934feefa467684678f94ca7eee5 | refs/heads/master | 2021-01-23T22:43:05.311822 | 2015-09-12T08:02:53 | 2015-09-12T08:02:53 | 42,349,624 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,245 | cpp | #pragma once
#include <string>
using namespace std;
#include "audfret.h"
#include "audstr.h"
AUDFRET_EXP char* recoverNULL(int *dummy, char *dest, const char *src)
{ return NULL; }
AUDFRET_EXP char* recoverNULL(float *dummy, char *dest, const char *src)
{ return NULL; }
AUDFRET_EXP char* recoverNULL(double *dummy, char *dest, const char *src)
{ return NULL; }
AUDFRET_EXP char * copyItem(char * out, char * in)
{
return strcpy(out,in);
}
AUDFRET_EXP int copyItem(int out, char * in)
{
int res = sscanf(in, "%d", &out);
if (res==EOF || res==0) return 0;
return out;
}
AUDFRET_EXP double copyItem(double out, char * in)
{
int res = sscanf(in, "%lf", &out);
if (res==EOF || res==0) return 0;
return out;
}
AUDFRET_EXP int str2intarray(int* out, int maxSize_x, const char * str, const char *deliminators)
{
return str2array(out, maxSize_x, str, deliminators);
}
AUDFRET_EXP int str2strarray(char** out, int maxSize_x, const char * str, const char *deliminators)
{
return str2array(out, maxSize_x, str, deliminators);
}
AUDFRET_EXP int str2doublearray(double* out, int maxSize_x, const char * str, const char *deliminators)
{
return str2array(out, maxSize_x, str, deliminators);
}
| [
"jhp333@gmail.com"
] | jhp333@gmail.com |
d6c8ec5c3a518fd09427e47c812d86bdd70435e1 | db2aabbc48b0f4afa7e055d1002186caca957fd2 | /src/Plugins/HttpPlugin/HttpAsset/HttpAssetTransfer.h | 74be290d76de7974eb2413445f77e783c3b7b81d | [
"Apache-2.0"
] | permissive | antont/tundra-urho3d | e64ba692cc29821d1fd26aa3b321e4371b3efa1d | 648771b64934d671eb45f371e0d62ba9f9af2d28 | refs/heads/master | 2021-01-14T14:15:48.941407 | 2014-11-11T20:17:31 | 2014-11-11T20:17:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 576 | h | // For conditions of distribution and use, see copyright notice in LICENSE
#pragma once
#include "HttpPluginApi.h"
#include "HttpPluginFwd.h"
#include "IAssetTransfer.h"
namespace Tundra
{
/// HTTP asset transfer
class TUNDRA_HTTP_API HttpAssetTransfer : public IAssetTransfer
{
public:
HttpAssetTransfer(HttpAssetProvider *provider, HttpRequestPtr &request, const String &assetRef_, const String &assetType_);
~HttpAssetTransfer();
private:
void OnFinished(HttpRequestPtr &request, int status, const String &error);
HttpAssetProvider *provider_;
};
}
| [
"jonne@adminotech.com"
] | jonne@adminotech.com |
cfa03aa311bde2d3c3bab61311ef5a37c37f63ec | e4bd81fe110fdee8aafdede51e789f77ffe326d1 | /src/nodes/feature_tracker_node.cpp | 14890ffccfcf38d93b479d09f5291b12430ce19f | [] | permissive | ethz-ait/klt_feature_tracker | 07bef9795ad863a69409275a22973e45f2243082 | 9b5b567ae77f93d1ef4d36151529ba2506a46e7a | refs/heads/master | 2021-01-10T11:51:13.745216 | 2020-03-20T12:31:42 | 2020-03-20T12:31:42 | 54,370,683 | 42 | 56 | BSD-3-Clause | 2020-03-20T12:31:43 | 2016-03-21T08:11:50 | C++ | UTF-8 | C++ | false | false | 3,567 | cpp | /****************************************************************************
*
* Copyright (c) 2016 AIT, ETH Zurich. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name AIT nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
****************************************************************************/
/*
* feature_tracker_node.cpp
*
* Created on: Mar 9, 2016
* Author: nicolas
*/
#include <vector>
#include <ros/ros.h>
#include <cv_bridge/cv_bridge.h>
#include "trackFeatures.h"
#include "klt_feature_tracker/TrackFeatures.h"
bool track(klt_feature_tracker::TrackFeatures::Request &req, klt_feature_tracker::TrackFeatures::Response &res);
int main(int argc, char *argv[])
{
ros::init(argc, argv, "feature_tracker");
ros::NodeHandle nh;
ros::ServiceServer service = nh.advertiseService("track_features", track);
ROS_INFO("Ready to track features.");
ros::spin();
return 0;
}
bool track(klt_feature_tracker::TrackFeatures::Request &req, klt_feature_tracker::TrackFeatures::Response &res)
{
cv_bridge::CvImagePtr left_image;
cv_bridge::CvImagePtr right_image;
try {
left_image = cv_bridge::toCvCopy(req.left_image, "mono8");
} catch (cv_bridge::Exception& e) {
ROS_ERROR("Error while converting left image to OpenCV: %s", e.what());
}
try {
right_image = cv_bridge::toCvCopy(req.right_image, "mono8");
} catch (cv_bridge::Exception& e) {
ROS_ERROR("Error while converting right image to OpenCV: %s", e.what());
}
std::vector<cv::Point2f> features_l;
std::vector<cv::Point2f> features_r;
res.features_l.resize(req.update_vect.size()*2);
res.features_r.resize(req.update_vect.size()*2);
trackFeatures(left_image->image, right_image->image, features_l, features_r, req.update_vect, req.stereo);
for (int i = 0; i < features_l.size(); i++) {
res.features_l[2*i + 0] = features_l[i].x;
res.features_l[2*i + 1] = features_l[i].y;
res.features_r[2*i + 0] = features_r[i].x;
res.features_r[2*i + 1] = features_r[i].y;
}
res.update_vect = req.update_vect;
return true;
}
| [
"depnicol@student.ethz.ch"
] | depnicol@student.ethz.ch |
acccb91713656739f61c6fcd9fc3d34eed249345 | 3829e05488f23c66d0c3f86f8ab600ae591d20c9 | /BalanceParenthesis/BalanceParenthesis.cpp | 57722a8eabe59c8cfe0ff690f880c760848c393e | [
"MIT"
] | permissive | sounishnath003/CPP-for-beginner | c4de8d7aa2aea83eb6fd1463a9ad7622474a7e17 | d4755ab4ae098d63c9a0666d8eb4d152106d4a20 | refs/heads/master | 2021-06-18T05:18:00.909614 | 2021-04-27T05:53:22 | 2021-04-27T05:53:22 | 198,789,834 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,386 | cpp | #include<iostream>
#include<bits/stdc++.h>
using namespace std ;
stack<char> StackOfBrackets ;
char xtop;
bool isBalancedParenthesis(string &expr) {
for (int i = 0; i < expr.size(); i++)
{
if (expr[i] == '(' || expr[i] == '{' || expr[i] == '[' ){
StackOfBrackets.push(expr[i]) ;
continue ;
}
if (StackOfBrackets.empty()) {
return false ;
}
switch (expr[i])
{
case ')':
xtop = StackOfBrackets.top() ;
StackOfBrackets.pop() ;
if (xtop == '}' || xtop == ']' ) return false ;
break;
case '}':
xtop = StackOfBrackets.top() ;
StackOfBrackets.pop() ;
if (xtop == ')' || xtop == ']' ) return false ;
break;
case ']':
xtop = StackOfBrackets.top() ;
StackOfBrackets.pop() ;
if (xtop == '}' || xtop == ')' ) return false ;
break;
}
}
return (StackOfBrackets.empty() ) ;
}
int main(int argc, char const *argv[])
{
string expr = "{{(][[(){[]}]])({}))()}}}";
if(isBalancedParenthesis(expr)) {
cout << "balanced" ;
}else {
cout << "not balanced" ;
}
return 0;
}
| [
"flock.sinasini@gmail.com"
] | flock.sinasini@gmail.com |
f362e3c3d360e67a379664e24716c9c5ebea3beb | c246f4befcaa55b960298abdcb77d4820c7f976c | /ext/tclap-1.2.1/include/tclap/MultiArg.h | 66498401eb4db18b0de0639c044989e3ae480638 | [
"BSD-2-Clause",
"MIT"
] | permissive | IasonManolas/threed-beam-fea | fed5363bcb25789a3fcb29fa2b63895938dbc504 | 13096dbd6ccff9761208f31e88e0115a7a86676e | refs/heads/master | 2021-07-08T02:39:52.809466 | 2021-05-01T18:33:10 | 2021-05-01T18:33:10 | 235,398,772 | 0 | 1 | NOASSERTION | 2020-01-21T17:19:02 | 2020-01-21T17:19:01 | null | UTF-8 | C++ | false | false | 14,058 | h | /******************************************************************************
*
* file: MultiArg.h
*
* Copyright (c) 2003, Michael E. Smoot .
* Copyright (c) 2004, Michael E. Smoot, Daniel Aarno.
* All rights reverved.
*
* See the file COPYING in the top directory of this distribution for
* more information.
*
* THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
*****************************************************************************/
#ifndef TCLAP_MULTIPLE_ARGUMENT_H
#define TCLAP_MULTIPLE_ARGUMENT_H
#include <string>
#include <vector>
#include <tclap/Arg.h>
#include <tclap/Constraint.h>
namespace TCLAP {
/**
* An argument that allows multiple values of type T to be specified. Very
* similar to a ValueArg, except a vector of values will be returned
* instead of just one.
*/
template<class T>
class MultiArg : public Arg {
public:
typedef std::vector<T> container_type;
typedef typename container_type::iterator iterator;
typedef typename container_type::const_iterator const_iterator;
protected:
/**
* The list of values parsed from the CmdLine.
*/
std::vector<T> _values;
/**
* The description of type T to be used in the usage.
*/
std::string _typeDesc;
/**
* A list of constraint on this Arg.
*/
Constraint<T> *_constraint;
/**
* Extracts the value from the string.
* Attempts to parse string as type T, if this fails an exception
* is thrown.
* \param val - The string to be read.
*/
void _extractValue(const std::string &val);
/**
* Used by XorHandler to decide whether to keep parsing for this arg.
*/
bool _allowMore;
public:
/**
* Constructor.
* \param flag - The one character flag that identifies this
* argument on the command line.
* \param name - A one word name for the argument. Can be
* used as a long flag on the command line.
* \param desc - A description of what the argument is for or
* does.
* \param req - Whether the argument is required on the command
* line.
* \param typeDesc - A short, human readable description of the
* type that this object expects. This is used in the generation
* of the USAGE statement. The goal is to be helpful to the end user
* of the program.
* \param v - An optional visitor. You probably should not
* use this unless you have a very good reason.
*/
MultiArg(const std::string &flag,
const std::string &name,
const std::string &desc,
bool req,
const std::string &typeDesc,
Visitor *v = NULL);
/**
* Constructor.
* \param flag - The one character flag that identifies this
* argument on the command line.
* \param name - A one word name for the argument. Can be
* used as a long flag on the command line.
* \param desc - A description of what the argument is for or
* does.
* \param req - Whether the argument is required on the command
* line.
* \param typeDesc - A short, human readable description of the
* type that this object expects. This is used in the generation
* of the USAGE statement. The goal is to be helpful to the end user
* of the program.
* \param parser - A CmdLine parser object to add this Arg to
* \param v - An optional visitor. You probably should not
* use this unless you have a very good reason.
*/
MultiArg(const std::string &flag,
const std::string &name,
const std::string &desc,
bool req,
const std::string &typeDesc,
CmdLineInterface &parser,
Visitor *v = NULL);
/**
* Constructor.
* \param flag - The one character flag that identifies this
* argument on the command line.
* \param name - A one word name for the argument. Can be
* used as a long flag on the command line.
* \param desc - A description of what the argument is for or
* does.
* \param req - Whether the argument is required on the command
* line.
* \param constraint - A pointer to a Constraint object used
* to constrain this Arg.
* \param v - An optional visitor. You probably should not
* use this unless you have a very good reason.
*/
MultiArg(const std::string &flag,
const std::string &name,
const std::string &desc,
bool req,
Constraint<T> *constraint,
Visitor *v = NULL);
/**
* Constructor.
* \param flag - The one character flag that identifies this
* argument on the command line.
* \param name - A one word name for the argument. Can be
* used as a long flag on the command line.
* \param desc - A description of what the argument is for or
* does.
* \param req - Whether the argument is required on the command
* line.
* \param constraint - A pointer to a Constraint object used
* to constrain this Arg.
* \param parser - A CmdLine parser object to add this Arg to
* \param v - An optional visitor. You probably should not
* use this unless you have a very good reason.
*/
MultiArg(const std::string &flag,
const std::string &name,
const std::string &desc,
bool req,
Constraint<T> *constraint,
CmdLineInterface &parser,
Visitor *v = NULL);
/**
* Handles the processing of the argument.
* This re-implements the Arg version of this method to set the
* _value of the argument appropriately. It knows the difference
* between labeled and unlabeled.
* \param i - Pointer the the current argument in the list.
* \param args - Mutable list of strings. Passed from main().
*/
virtual bool processArg(int *i, std::vector<std::string> &args);
/**
* Returns a vector of type T containing the values parsed from
* the command line.
*/
const std::vector<T> &getValue();
/**
* Returns an iterator over the values parsed from the command
* line.
*/
const_iterator begin() const { return _values.begin(); }
/**
* Returns the end of the values parsed from the command
* line.
*/
const_iterator end() const { return _values.end(); }
/**
* Returns the a short id string. Used in the usage.
* \param val - value to be used.
*/
virtual std::string shortID(const std::string &val = "val") const;
/**
* Returns the a long id string. Used in the usage.
* \param val - value to be used.
*/
virtual std::string longID(const std::string &val = "val") const;
/**
* Once we've matched the first value, then the arg is no longer
* required.
*/
virtual bool isRequired() const;
virtual bool allowMore();
virtual void reset();
private:
/**
* Prevent accidental copying
*/
MultiArg<T>(const MultiArg<T> &rhs);
MultiArg<T> &operator=(const MultiArg<T> &rhs);
};
template<class T>
MultiArg<T>::MultiArg(const std::string &flag,
const std::string &name,
const std::string &desc,
bool req,
const std::string &typeDesc,
Visitor *v) :
Arg(flag, name, desc, req, true, v),
_values(std::vector<T>()),
_typeDesc(typeDesc),
_constraint(NULL),
_allowMore(false) {
_acceptsMultipleValues = true;
}
template<class T>
MultiArg<T>::MultiArg(const std::string &flag,
const std::string &name,
const std::string &desc,
bool req,
const std::string &typeDesc,
CmdLineInterface &parser,
Visitor *v)
: Arg(flag, name, desc, req, true, v),
_values(std::vector<T>()),
_typeDesc(typeDesc),
_constraint(NULL),
_allowMore(false) {
parser.add(this);
_acceptsMultipleValues = true;
}
/**
*
*/
template<class T>
MultiArg<T>::MultiArg(const std::string &flag,
const std::string &name,
const std::string &desc,
bool req,
Constraint<T> *constraint,
Visitor *v)
: Arg(flag, name, desc, req, true, v),
_values(std::vector<T>()),
_typeDesc(constraint->shortID()),
_constraint(constraint),
_allowMore(false) {
_acceptsMultipleValues = true;
}
template<class T>
MultiArg<T>::MultiArg(const std::string &flag,
const std::string &name,
const std::string &desc,
bool req,
Constraint<T> *constraint,
CmdLineInterface &parser,
Visitor *v)
: Arg(flag, name, desc, req, true, v),
_values(std::vector<T>()),
_typeDesc(constraint->shortID()),
_constraint(constraint),
_allowMore(false) {
parser.add(this);
_acceptsMultipleValues = true;
}
template<class T>
const std::vector<T> &MultiArg<T>::getValue() { return _values; }
template<class T>
bool MultiArg<T>::processArg(int *i, std::vector<std::string> &args) {
if (_ignoreable && Arg::ignoreRest())
return false;
if (_hasBlanks(args[*i]))
return false;
std::string flag = args[*i];
std::string value = "";
trimFlag(flag, value);
if (argMatches(flag)) {
if (Arg::delimiter() != ' ' && value == "")
throw(ArgParseException(
"Couldn't find delimiter for this argument!",
toString()));
// always take the first one, regardless of start string
if (value == "") {
(*i)++;
if (static_cast<unsigned int>(*i) < args.size())
_extractValue(args[*i]);
else
throw(ArgParseException("Missing a value for this argument!",
toString()));
}
else
_extractValue(value);
/*
// continuing taking the args until we hit one with a start string
while ( (unsigned int)(*i)+1 < args.size() &&
args[(*i)+1].find_first_of( Arg::flagStartString() ) != 0 &&
args[(*i)+1].find_first_of( Arg::nameStartString() ) != 0 )
_extractValue( args[++(*i)] );
*/
_alreadySet = true;
_checkWithVisitor();
return true;
}
else
return false;
}
/**
*
*/
template<class T>
std::string MultiArg<T>::shortID(const std::string &val) const {
static_cast<void>(val); // Ignore input, don't warn
return Arg::shortID(_typeDesc) + " ... ";
}
/**
*
*/
template<class T>
std::string MultiArg<T>::longID(const std::string &val) const {
static_cast<void>(val); // Ignore input, don't warn
return Arg::longID(_typeDesc) + " (accepted multiple times)";
}
/**
* Once we've matched the first value, then the arg is no longer
* required.
*/
template<class T>
bool MultiArg<T>::isRequired() const {
if (_required) {
if (_values.size() > 1)
return false;
else
return true;
}
else
return false;
}
template<class T>
void MultiArg<T>::_extractValue(const std::string &val) {
try {
T tmp;
ExtractValue(tmp, val, typename ArgTraits<T>::ValueCategory());
_values.push_back(tmp);
} catch (ArgParseException &e) {
throw ArgParseException(e.error(), toString());
}
if (_constraint != NULL) if (!_constraint->check(_values.back()))
throw(CmdLineParseException("Value '" + val +
"' does not meet constraint: " +
_constraint->description(),
toString()));
}
template<class T>
bool MultiArg<T>::allowMore() {
bool am = _allowMore;
_allowMore = true;
return am;
}
template<class T>
void MultiArg<T>::reset() {
Arg::reset();
_values.clear();
}
} // namespace TCLAP
#endif
| [
"ryan.latture@gmail.com"
] | ryan.latture@gmail.com |
3504bd80572ee1149b32310830528bca1bb71d81 | eef1d936e9edb172703aecd40cace4fa64268934 | /src/748.cc | 6aa470b4e65c9f63208551843659f6b0f077f868 | [
"Apache-2.0"
] | permissive | o-olll/shuati | 59d964acd4f340ff392e95a625719c1bc88deab5 | 64a031a5218670afd4bdbba5d3af3c428757b3fd | refs/heads/master | 2022-01-04T05:29:05.932615 | 2021-12-30T08:23:46 | 2021-12-30T08:23:46 | 112,041,583 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,077 | cc | #include <iostream>
#include <vector>
#include <unordered_map>
#include <string>
#include "utils.h"
using namespace std;
bool hasAllLetters(string& word, vector<int> plate) {
for (char c : word) {
if (plate[c-'a'] > 0)
--plate[c-'a'];
}
for (int i : plate) {
if (i > 0)
return false;
}
return true;
}
string shortestCompletingWordOLD(string licensePlate, vector<string>& words)
{
vector<int> plate(26, 0);
int len = INT_MAX, p;
for (char c : licensePlate) {
if (islower(c)) {
++plate[c-'a'];
} else if (isupper(c)) {
++plate[c-'A'];
}
}
for (int i=0; i<words.size(); ++i) {
if (hasAllLetters(words[i], plate)) {
if (words[i].size() < len) {
len = words[i].size();
p = i;
}
}
}
return words[p];
}
vector<int> primes = {2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103};
long product(const string& s)
{
long res = 1;
for (char c : s) {
res *= primes[c-'a'];
}
return res;
}
string shortestCompletingWord(string licensePlate, vector<string>& words)
{
int i, j;
for (i=0, j=0; i<licensePlate.size(); ++i) {
if (islower(licensePlate[i]))
licensePlate[j++] = licensePlate[i];
if (isupper(licensePlate[i]))
licensePlate[j++] = licensePlate[i]-'A'+'a';
}
licensePlate.resize(j);
long plateProduct = product(licensePlate);
int p, len = INT_MAX;
for (i=0; i<words.size(); ++i) {
if (product(words[i])%plateProduct == 0) {
if (words[i].size() < len) {
len = words[i].size();
p = i;
}
}
}
return words[p];
}
int main(int argc, char** argv)
{
string s = "tR28607";
vector<string> test_case = {"present","fall","make","change","everything","performance","owner","beat","name","serve"};
cout << shortestCompletingWord(s, test_case) << endl;
return 0;
}
| [
"o-olll@users.noreply.github.com"
] | o-olll@users.noreply.github.com |
af4dfbd5ca0bd30266a60faf7121fb187562b236 | 22bd625b1a2ffc102761914469c9673f62cf8e78 | /benchmarks/src/cuda/shoc-master/src/opencl/level0/BusSpeedReadback.cpp | c9d0f88c65c3d122d7f494cd455d4701073b1277 | [
"BSD-2-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | purdue-aalp/gpgpu-sim_simulations | f1c32ac5a88c4120d326d1053c82e598ca2d05fe | 84113a92a4aacfdd1ddbc1beb2f01746060dfb05 | refs/heads/master | 2021-08-05T21:56:58.378115 | 2021-01-28T23:31:26 | 2021-01-28T23:31:26 | 154,350,995 | 6 | 15 | BSD-2-Clause | 2021-05-18T15:28:08 | 2018-10-23T15:18:42 | HTML | UTF-8 | C++ | false | false | 8,337 | cpp | #include <iostream>
#include "support.h"
#include "Event.h"
#include "ResultDatabase.h"
#include "OptionParser.h"
using namespace std;
void addBenchmarkSpecOptions(OptionParser &op)
{
op.addOption("nopinned", OPT_BOOL, "",
"disable usage of pinned (pagelocked) memory");
}
// Modifications:
// Jeremy Meredith, Wed Dec 1 17:05:27 EST 2010
// Added calculation of latency estimate.
void RunBenchmark(cl_device_id id,
cl_context ctx,
cl_command_queue queue,
ResultDatabase &resultDB,
OptionParser &op)
{
bool verbose = op.getOptionBool("verbose");
bool pinned = !op.getOptionBool("nopinned");
int npasses = op.getOptionInt("passes");
const bool waitForEvents = true;
// Sizes are in kb
int nSizes = 20;
int sizes[20] = {1,2,4,8,16,32,64,128,256,512,1024,2048,4096,8192,16384,
32768,65536,131072,262144,524288};
// Max sure we don't surpass the OpenCL limit.
cl_long maxAllocSizeBytes = 0;
clGetDeviceInfo(id, CL_DEVICE_MAX_MEM_ALLOC_SIZE,
sizeof(cl_long), &maxAllocSizeBytes, NULL);
while (sizes[nSizes-1]*1024 > 0.90 * maxAllocSizeBytes)
{
--nSizes;
if (verbose) cout << " - dropping allocation size to keep under reported limit.\n";
if (nSizes < 1)
{
cerr << "Error: OpenCL reported a max allocation size less than 1kB.\b";
return;
}
}
// Create some host memory pattern
if (verbose) cout << ">> creating host mem pattern\n";
int err;
float *hostMem1;
float *hostMem2;
cl_mem hostMemObj1;
cl_mem hostMemObj2;
long long numMaxFloats = 1024 * (sizes[nSizes-1]) / 4;
if (pinned)
{
int err1, err2;
hostMemObj1 = clCreateBuffer(ctx,
CL_MEM_READ_WRITE | CL_MEM_ALLOC_HOST_PTR,
sizeof(float)*numMaxFloats, NULL, &err1);
if (err1 == CL_SUCCESS)
{
hostMem1 = (float*)clEnqueueMapBuffer(queue, hostMemObj1, true,
CL_MAP_READ|CL_MAP_WRITE,
0,sizeof(float)*numMaxFloats,0,
NULL,NULL,&err1);
}
hostMemObj2 = clCreateBuffer(ctx,
CL_MEM_READ_WRITE | CL_MEM_ALLOC_HOST_PTR,
sizeof(float)*numMaxFloats, NULL, &err2);
if (err2 == CL_SUCCESS)
{
hostMem2 = (float*)clEnqueueMapBuffer(queue, hostMemObj2, true,
CL_MAP_READ|CL_MAP_WRITE,
0,sizeof(float)*numMaxFloats,0,
NULL,NULL,&err2);
}
while (err1 != CL_SUCCESS || err2 != CL_SUCCESS)
{
// free the first buffer if only the second failed
if (err1 == CL_SUCCESS)
clReleaseMemObject(hostMemObj1);
// drop the size and try again
if (verbose) cout << " - dropping size allocating pinned mem\n";
--nSizes;
if (nSizes < 1)
{
cerr << "Error: Couldn't allocated any pinned buffer\n";
return;
}
numMaxFloats = 1024 * (sizes[nSizes-1]) / 4;
hostMemObj1 = clCreateBuffer(ctx,
CL_MEM_READ_WRITE | CL_MEM_ALLOC_HOST_PTR,
sizeof(float)*numMaxFloats, NULL, &err1);
if (err1 == CL_SUCCESS)
{
hostMem1 = (float*)clEnqueueMapBuffer(queue, hostMemObj1, true,
CL_MAP_READ|CL_MAP_WRITE,
0,sizeof(float)*numMaxFloats,0,
NULL,NULL,&err1);
}
hostMemObj2 = clCreateBuffer(ctx,
CL_MEM_READ_WRITE | CL_MEM_ALLOC_HOST_PTR,
sizeof(float)*numMaxFloats, NULL, &err2);
if (err2 == CL_SUCCESS)
{
hostMem2 = (float*)clEnqueueMapBuffer(queue, hostMemObj2, true,
CL_MAP_READ|CL_MAP_WRITE,
0,sizeof(float)*numMaxFloats,0,
NULL,NULL,&err2);
}
}
}
else
{
hostMem1 = new float[numMaxFloats];
hostMem2 = new float[numMaxFloats];
}
for (int i=0; i<numMaxFloats; i++) {
hostMem1[i] = i % 77;
hostMem2[i] = -1;
}
// Allocate some device memory
if (verbose) cout << ">> allocating device mem\n";
cl_mem mem1 = clCreateBuffer(ctx, CL_MEM_READ_WRITE,
sizeof(float)*numMaxFloats, NULL, &err);
while (err != CL_SUCCESS)
{
// drop the size and try again
if (verbose) cout << " - dropping size allocating device mem\n";
--nSizes;
if (nSizes < 1)
{
cerr << "Error: Couldn't allocated any device buffer\n";
return;
}
numMaxFloats = 1024 * (sizes[nSizes-1]) / 4;
mem1 = clCreateBuffer(ctx, CL_MEM_READ_WRITE,
sizeof(float)*numMaxFloats, NULL, &err);
}
if (verbose) cout << ">> filling device mem to force allocation\n";
Event evDownloadPrime("DownloadPrime");
err = clEnqueueWriteBuffer(queue, mem1, false, 0,
numMaxFloats*sizeof(float), hostMem1,
0, NULL, &evDownloadPrime.CLEvent());
CL_CHECK_ERROR(err);
if (verbose) cout << ">> waiting for download to finish\n";
err = clWaitForEvents(1, &evDownloadPrime.CLEvent());
CL_CHECK_ERROR(err);
// Three passes, forward and backward both
for (int pass = 0; pass < npasses; pass++)
{
// store the times temporarily to estimate latency
//float times[nSizes];
// Step through sizes forward on even passes and backward on odd
for (int i = 0; i < nSizes; i++)
{
int sizeIndex;
if ((pass%2) == 0)
sizeIndex = i;
else
sizeIndex = (nSizes-1) - i;
// Read memory back from the device
if (verbose) cout << ">> reading from device "<<sizes[sizeIndex]<<"kB\n";
Event evReadback("Readback");
err = clEnqueueReadBuffer(queue, mem1, false, 0,
sizes[sizeIndex]*1024, hostMem2,
0, NULL, &evReadback.CLEvent());
CL_CHECK_ERROR(err);
// Wait for event to finish
if (verbose) cout << ">> waiting for readback to finish\n";
err = clWaitForEvents(1, &evReadback.CLEvent());
CL_CHECK_ERROR(err);
if (verbose) cout << ">> finish!";
if (verbose) cout << endl;
// Get timings
err = clFlush(queue);
CL_CHECK_ERROR(err);
evReadback.FillTimingInfo();
if (verbose) evReadback.Print(cerr);
double t = evReadback.SubmitEndRuntime() / 1.e6; // in ms
//times[sizeIndex] = t;
// Add timings to database
double speed = (double(sizes[sizeIndex] * 1024.) / (1000.*1000.)) / t;
char sizeStr[256];
sprintf(sizeStr, "% 7dkB", sizes[sizeIndex]);
resultDB.AddResult("ReadbackSpeed", sizeStr, "GB/sec", speed);
// Add timings to database
double delay = evReadback.SubmitStartDelay() / 1.e6;
resultDB.AddResult("ReadbackDelay", sizeStr, "ms", delay);
resultDB.AddResult("ReadbackTime", sizeStr, "ms", t);
}
//resultDB.AddResult("ReadbackLatencyEstimate", "1-2kb", "ms", times[0]-(times[1]-times[0])/1.);
//resultDB.AddResult("ReadbackLatencyEstimate", "1-4kb", "ms", times[0]-(times[2]-times[0])/3.);
//resultDB.AddResult("ReadbackLatencyEstimate", "2-4kb", "ms", times[1]-(times[2]-times[1])/1.);
}
// Cleanup
err = clReleaseMemObject(mem1);
CL_CHECK_ERROR(err);
if (pinned)
{
err = clReleaseMemObject(hostMemObj1);
CL_CHECK_ERROR(err);
err = clReleaseMemObject(hostMemObj2);
CL_CHECK_ERROR(err);
}
else
{
delete[] hostMem1;
delete[] hostMem2;
}
}
| [
"tgrogers@purdue.edu"
] | tgrogers@purdue.edu |
cd469a7dd60a6a19dc3562d9dbdc03528e0a9759 | 26c6932ee883c3e5a9f9f4e85d251a2624ca7f9e | /mini/collections/list.inl | cbd0c123680d7d54b4652bd5e22ea9d993bc2f58 | [
"MIT"
] | permissive | zhengfish/mini-tor | 51581806b7bcefa5dd4d5b6fb7fb09f44252c63e | 5d39011e632be8e2b6b1819ee7295e8bd9b7a769 | refs/heads/master | 2020-04-09T10:45:40.940270 | 2018-03-08T13:20:05 | 2018-03-08T13:20:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,100 | inl | #include "list.h"
#include <mini/common.h>
#include <mini/memory.h>
namespace mini::collections {
//
// constructors.
//
template <
typename T,
typename ALLOCATOR_TYPE
>
list<T, ALLOCATOR_TYPE>::list(
void
)
: _first(nullptr)
, _last(nullptr)
, _end(nullptr)
{
}
template <
typename T,
typename ALLOCATOR_TYPE
>
list<T, ALLOCATOR_TYPE>::list(
const list& other
)
: list<T, ALLOCATOR_TYPE>()
{
reserve(other.get_capacity());
for (auto&& e : other)
{
add(e);
}
}
template <
typename T,
typename ALLOCATOR_TYPE
>
list<T, ALLOCATOR_TYPE>::list(
list&& other
)
: list<T, ALLOCATOR_TYPE>()
{
swap(other);
}
template <
typename T,
typename ALLOCATOR_TYPE
>
list<T, ALLOCATOR_TYPE>::list(
std::initializer_list<T> values
)
: list<T, ALLOCATOR_TYPE>()
{
for (auto&& e : values)
{
add(e);
}
}
template <
typename T,
typename ALLOCATOR_TYPE
>
template <
typename ITERATOR_TYPE
>
list<T, ALLOCATOR_TYPE>::list(
ITERATOR_TYPE begin,
ITERATOR_TYPE end
)
: list<T, ALLOCATOR_TYPE>(end - begin)
{
size_type index = 0;
while (begin < end)
{
insert(*begin++, index++);
}
}
template <
typename T,
typename ALLOCATOR_TYPE
>
list<T, ALLOCATOR_TYPE>::list(
size_type initial_size
)
: list<T, ALLOCATOR_TYPE>()
{
resize(initial_size);
}
template <
typename T,
typename ALLOCATOR_TYPE
>
list<T, ALLOCATOR_TYPE>::list(
const buffer_ref<T> buffer
)
: list<T, ALLOCATOR_TYPE>(buffer.begin(), buffer.end())
{
}
template <
typename T,
typename ALLOCATOR_TYPE
>
template <
size_type N
>
list<T, ALLOCATOR_TYPE>::list(
const T(&array)[N]
)
: list<T, ALLOCATOR_TYPE>(array, array + N)
{
}
template <
typename T,
typename ALLOCATOR_TYPE
>
list<T, ALLOCATOR_TYPE>::list(
std::initializer_list<const buffer_ref<T>> items
)
: list<T, ALLOCATOR_TYPE>()
{
add_many(items);
}
//
// destructor.
//
template <
typename T,
typename ALLOCATOR_TYPE
>
list<T, ALLOCATOR_TYPE>::~list(
void
)
{
_allocator.destroy_range(_first, _last);
_allocator.deallocate(_first);
}
//
// assign operators.
//
template <
typename T,
typename ALLOCATOR_TYPE
>
list<T, ALLOCATOR_TYPE>&
list<T, ALLOCATOR_TYPE>::operator=(
const list& other
)
{
reserve(other.get_capacity());
for (auto&& e : other)
{
add(e);
}
return *this;
}
template <
typename T,
typename ALLOCATOR_TYPE
>
list<T, ALLOCATOR_TYPE>&
list<T, ALLOCATOR_TYPE>::operator=(
list&& other
)
{
swap(other);
return *this;
}
//
// swap.
//
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::swap(
list& other
)
{
mini::swap(_first, other._first);
mini::swap(_last, other._last);
mini::swap(_end, other._end);
}
//
// element access.
//
template <
typename T,
typename ALLOCATOR_TYPE
>
typename list<T, ALLOCATOR_TYPE>::reference
list<T, ALLOCATOR_TYPE>::operator[](
size_type index
)
{
return at(index);
}
template <
typename T,
typename ALLOCATOR_TYPE
>
typename list<T, ALLOCATOR_TYPE>::const_reference
list<T, ALLOCATOR_TYPE>::operator[](
size_type index
) const
{
return at(index);
}
template <
typename T,
typename ALLOCATOR_TYPE
>
typename list<T, ALLOCATOR_TYPE>::reference
list<T, ALLOCATOR_TYPE>::at(
size_type index
)
{
return _first[index];
}
template <
typename T,
typename ALLOCATOR_TYPE
>
typename list<T, ALLOCATOR_TYPE>::const_reference
list<T, ALLOCATOR_TYPE>::at(
size_type index
) const
{
return _first[index];
}
template <
typename T,
typename ALLOCATOR_TYPE
>
typename list<T, ALLOCATOR_TYPE>::reference
list<T, ALLOCATOR_TYPE>::top(
void
)
{
return _first[get_size() - 1];
}
template <
typename T,
typename ALLOCATOR_TYPE
>
typename list<T, ALLOCATOR_TYPE>::const_reference
list<T, ALLOCATOR_TYPE>::top(
void
) const
{
return _first[get_size() - 1];
}
template <
typename T,
typename ALLOCATOR_TYPE
>
typename list<T, ALLOCATOR_TYPE>::value_type*
list<T, ALLOCATOR_TYPE>::get_buffer(
void
)
{
return _first;
}
template <
typename T,
typename ALLOCATOR_TYPE
>
const typename list<T, ALLOCATOR_TYPE>::value_type*
list<T, ALLOCATOR_TYPE>::get_buffer(
void
) const
{
return _first;
}
template <
typename T,
typename ALLOCATOR_TYPE
>
buffer_ref<T>
list<T, ALLOCATOR_TYPE>::slice(
size_type begin,
size_type end
) const
{
end = end == (size_type)-1
? get_size()
: end;
return buffer_ref<T>(_first + begin, _first + end);
}
template <
typename T,
typename ALLOCATOR_TYPE
>
mutable_buffer_ref<T>
list<T, ALLOCATOR_TYPE>::slice(
size_type begin,
size_type end
)
{
end = end == (size_type)-1
? get_size()
: end;
return mutable_buffer_ref<T>(_first + begin, _first + end);
}
//
// iterators.
//
template <
typename T,
typename ALLOCATOR_TYPE
>
typename list<T, ALLOCATOR_TYPE>::iterator
list<T, ALLOCATOR_TYPE>::begin(
void
)
{
return _first;
}
template <
typename T,
typename ALLOCATOR_TYPE
>
typename list<T, ALLOCATOR_TYPE>::const_iterator
list<T, ALLOCATOR_TYPE>::begin(
void
) const
{
return _first;
}
template <
typename T,
typename ALLOCATOR_TYPE
>
typename list<T, ALLOCATOR_TYPE>::iterator
list<T, ALLOCATOR_TYPE>::end(
void
)
{
return _last;
}
template <
typename T,
typename ALLOCATOR_TYPE
>
typename list<T, ALLOCATOR_TYPE>::const_iterator
list<T, ALLOCATOR_TYPE>::end(
void
) const
{
return _last;
}
//
// capacity.
//
template <
typename T,
typename ALLOCATOR_TYPE
>
bool
list<T, ALLOCATOR_TYPE>::is_empty(
void
) const
{
return get_size() == 0;
}
template <
typename T,
typename ALLOCATOR_TYPE
>
typename list<T, ALLOCATOR_TYPE>::size_type
list<T, ALLOCATOR_TYPE>::get_size(
void
) const
{
return _last - _first;
}
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::resize(
size_type new_size,
const_reference item
)
{
if (new_size < get_size())
{
_allocator.destroy_range(_first + new_size, _first + get_size());
}
else if (new_size <= get_capacity())
{
_allocator.construct_range(_first + get_size(), _first + new_size, item);
}
else if (new_size > get_capacity())
{
reserve(max(new_size, (get_size() * 3) / 2));
_allocator.construct_range(_first + get_size(), _first + new_size, item);
}
_last = _first + new_size;
}
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::resize_unsafe(
size_type new_size
)
{
if (new_size > get_capacity())
{
reserve(max(new_size, (get_size() * 3) / 2));
}
_last = _first + new_size;
}
template <
typename T,
typename ALLOCATOR_TYPE
>
typename list<T, ALLOCATOR_TYPE>::size_type
list<T, ALLOCATOR_TYPE>::get_capacity(
void
) const
{
return _end - _first;
}
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::reserve(
size_type new_capacity
)
{
if (new_capacity > get_capacity())
{
size_type old_size = get_size();
T* new_first = _allocator.allocate(new_capacity);
_allocator.move_range(_first, _last, new_first);
_allocator.deallocate(_first);
_first = new_first;
_last = _first + old_size;
_end = _first + new_capacity;
}
}
//
// lookup.
//
template <
typename T,
typename ALLOCATOR_TYPE
>
bool
list<T, ALLOCATOR_TYPE>::equals(
const list& other
) const
{
return buffer_ref<T>(*this).equals(other);
}
template <
typename T,
typename ALLOCATOR_TYPE
>
bool
list<T, ALLOCATOR_TYPE>::contains(
const value_type& item
) const
{
return index_of(item) != not_found;
}
template <
typename T,
typename ALLOCATOR_TYPE
>
typename list<T, ALLOCATOR_TYPE>::size_type
list<T, ALLOCATOR_TYPE>::index_of(
const value_type& item,
size_type from_offset
) const
{
for (size_type i = from_offset; i < get_size(); i++)
{
if (_first[i] == item)
{
return i;
}
}
return not_found;
}
//
// modifiers.
//
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::add(
const value_type& item
)
{
insert(item, get_size());
}
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::add(
value_type&& item
)
{
insert(std::move(item), get_size());
}
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::add_many(
const buffer_ref<T> items
)
{
size_type new_size = get_size() + items.get_size();
reserve_to_at_least(new_size);
//
// TODO:
// fix for non-POD types.
//
memory::copy(&_first[get_size()], items.get_buffer(), items.get_size() * sizeof(T));
_last = _first + new_size;
}
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::add_many(
std::initializer_list<const buffer_ref<T>> items
)
{
for (auto&& e : items)
{
add_many(e);
}
}
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::push(
const value_type& item
)
{
add(item);
}
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::push(
value_type&& item
)
{
add(std::move(item));
}
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::insert(
const value_type& item,
size_type index
)
{
reserve_to_at_least(index + 1);
_allocator.construct(_first + index, item);
_last = _first + index + 1;
}
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::insert(
value_type&& item,
size_type index
)
{
reserve_to_at_least(index + 1);
_allocator.construct(_first + index, std::forward<value_type>(item));
_last = _first + index + 1;
}
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::insert_many(
const buffer_ref<T> items,
size_type index
)
{
size_type new_size = index + items.get_size();
reserve_to_at_least(new_size);
//
// TODO:
// fix for non-POD types.
//
memory::copy(&_first[index], items.get_buffer(), items.get_size());
_last = _first + new_size;
}
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::remove(
const value_type& item
)
{
size_type index = index_of(item);
if (index != not_found)
{
remove_at(index);
}
}
// 0 0 0 0 0 0
// X X
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::remove_range(
size_type from_offset,
size_type count
)
{
if (is_empty())
{
return;
}
const size_type max_count = get_size() - 1;
if (count == (size_type)-1)
{
count = max_count;
}
//
// special case #1
// removing all items
//
if (from_offset == 0 && count == max_count)
{
clear();
}
//
// special case #2
// removing items from any location to the end
//
else if (count == max_count)
{
resize_unsafe(get_size() - count);
}
//
// everything else:
// move buffer & resize
//
else
{
memory::move(
_first + from_offset,
_first + from_offset + count,
get_size() - count - from_offset);
resize_unsafe(get_size() - count);
}
}
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::remove_at(
size_type index
)
{
if (index != (get_size() - 1))
{
do
{
_allocator.destroy(_first + index);
_allocator.construct(_first + index, std::move(*(_first + index + 1)));
} while (++index < (get_size() - 1));
}
//
// destroy the last element
//
_allocator.destroy(_first + index);
_last -= 1;
}
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::remove_by_swap_at(
size_type index
)
{
_allocator.destroy(_first + index);
if (index != (get_size() - 1))
{
swap(_first[index], (_first[get_size() - 1]));
}
_last -= 1;
}
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::pop(
void
)
{
remove_at(get_size() - 1);
}
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::clear(
void
)
{
_allocator.destroy_range(_first, _last);
_last = _first;
}
//
// conversion operators.
//
template <
typename T,
typename ALLOCATOR_TYPE
>
list<T, ALLOCATOR_TYPE>::operator buffer_ref<T>(
void
) const
{
return buffer_ref<T>(_first, _last);
}
template <
typename T,
typename ALLOCATOR_TYPE
>
list<T, ALLOCATOR_TYPE>::operator mutable_buffer_ref<T>(
void
)
{
return mutable_buffer_ref<T>(_first, _last);
}
//
// private methods.
//
template <
typename T,
typename ALLOCATOR_TYPE
>
void
list<T, ALLOCATOR_TYPE>::reserve_to_at_least(
size_type desired_capacity
)
{
if (desired_capacity > get_capacity())
{
size_type new_capacity = (get_capacity() + 1) << 2;
while (desired_capacity >= new_capacity)
{
new_capacity <<= 2;
}
reserve(new_capacity);
}
}
}
namespace mini {
//
// non-class functions.
//
template <
typename T,
typename ALLOCATOR_TYPE
>
void
swap(
collections::list<T, ALLOCATOR_TYPE>& lhs,
collections::list<T, ALLOCATOR_TYPE>& rhs
)
{
lhs.swap(rhs);
}
}
| [
"w.benny@outlook.com"
] | w.benny@outlook.com |
49ef82368a1f4f7453d9e8bf1ed0e4f344f4d0e6 | 1663473b630351792fc396352ceef39a4e95b998 | /1945strikers/random.cpp | de9b30759ce49ee055d752e926a0a65a4f539db7 | [] | no_license | wsxc94/Winapi1945 | 89c385ba88a74b5ab276cf81d95531a222890a6f | 99470eaf8ef0a34e57038e52ac3849edb2ea4863 | refs/heads/master | 2022-12-07T12:53:53.885540 | 2020-08-31T03:47:10 | 2020-08-31T03:47:10 | 291,606,586 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 794 | cpp | #include "stdafx.h"
#include "random.h"
HRESULT random::init()
{
//랜덤시드 초기화
srand(GetTickCount());
return S_OK;
}
void random::release()
{
}
int random::range(int num)
{
return rand() % num;
}
int random::range(int min, int max)
{
return rand() % (max - min + 1) + min;
}
float random::range(float num)
{
//3 / 2 = 1 (정수)
//3.0 / 2.0 = 1.5 (실수)
//rand() => 0 ~ 32767
//RAND_MAX => 32767
//rand() / RAND_MAX => 값의 범위 : 0.0f ~ 1.0f
return ((float)rand() / (float)RAND_MAX) * num;
}
float random::range(float min, float max)
{
float rnd = ((float)rand() / (float)RAND_MAX);
return (rnd * (max - min)) + min;
}
double random::range(double min, double max)
{
double rnd = ((double)rand() / (double)RAND_MAX);
return (rnd * (max - min)) + min;
}
| [
"wsxc9468@gmail.com"
] | wsxc9468@gmail.com |
46f8cdbaf2dd3b7fa7411f889a1bd04f12f772b8 | 0449e7d3206abc2afc0e140b649661f7dee008ca | /reader.h | eaed0969c398407621f54b46b09fdde19d7618cb | [] | no_license | twonaja/SAOD-CoursPrj- | c1fe105fbaec8e01d8d32b81145b3f0717c46a61 | 59e2809f4e4164567b2301c620e2492963ecf69c | refs/heads/master | 2022-10-24T14:01:43.260009 | 2020-06-17T19:42:12 | 2020-06-17T19:42:12 | 261,146,022 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 1,169 | h | #pragma once
#include "inc.h"
class reader
{
private:
std::string ticketNumber = "C0000-00"; //номер чит билета формат А - права доступа, цифры до "-" порядковый номер регистрации,
// после год регистрации
std::string name = "\0";//фамилия
std::string surname = "\0"; //имя
std::string patronymic = "\0"; //отчество
unsigned int yearBorn = 0; // год рождения
std::string adress = "\0"; //адрес проживания
std::string stateWoStd = "\0"; //место работы или учебы
public:
reader(const std::string&, const std::string&, const std::string&, const std::string&, const unsigned int&, const std::string&, const std::string&);
~reader();
//гетры
const std::string getTN() { return this->ticketNumber; } //возвращает номер чит билета
const std::string getSur() { return this->surname; }
const std::string getName() { return this->name; }
const std::string getPatr() { return this->patronymic; }
friend std::ostream& operator<<(std::ostream& os, const reader& myRd);
};
| [
"lotkamaxim09@yandex.ru"
] | lotkamaxim09@yandex.ru |
7d3f23354ee44090626c8fd798d4a97388d34cc3 | 767a49334113d375f96049f99e940123b4a712fd | /DevSkill_CP/Intermediate/Batch 8/Class 21/shortest_path.cpp | 6a0db91e98c237bd3c64aef435322c6f608244a3 | [] | no_license | Sadman007/DevSkill-Programming-Course---Basic---Public-CodeBank | 9f4effbbea048f4a6919b699bc0fb1b9a0d5fef7 | d831620c44f826c3c89ca18ff95fb81ea2a2cc40 | refs/heads/master | 2023-09-01T03:44:37.609267 | 2023-08-18T19:45:41 | 2023-08-18T19:45:41 | 173,104,184 | 83 | 64 | null | null | null | null | UTF-8 | C++ | false | false | 801 | cpp | #include <bits/stdc++.h>
using namespace std;
vector<int>gr[100010];
bool vis[100010];
int color[100010];
void dfs(int u, int clr)
{
vis[u] = 1;
color[u] = clr;
for(int v : gr[u]) /// u --> v
{
if(!vis[v])
{
dfs(v, clr);
}
}
}
int main()
{
int n, m, u, v;
cin >> n >> m;
memset(vis, 0, sizeof(vis));
for(int i = 0; i < m; i++)
{
cin >> u >> v;
gr[u].push_back(v);
gr[v].push_back(u);
}
int clr = 1;
for(int i = 1; i <= n; i++)
{
if(!vis[i])
{
dfs(i, clr);
clr++;
}
}
for(int i = 1; i <= n; i++)
{
cout << i << " : " << color[i] << "\n";
}
return 0;
}
/**
10 9
1 2
2 4
2 5
2 6
1 3
3 7
7 9
7 10
3 8
**/
| [
"sakib.csedu21@gmail.com"
] | sakib.csedu21@gmail.com |
e89f5ca570444a386e55d6afaa7a4b93291469ff | b8475a1c33a3bda7958a788d2089d96c9a0b44ab | /cores/teensy4/usb_mtp.h | 88c0ffb2ae0f71b4ac5651cd5596a967b9784ef3 | [
"MIT"
] | permissive | Rigel09/CRW_2021_Teensy_Data_Record | fcee13b4794a1033f70d377851b43804e3ee49d9 | 9ddaf5bf452efc185b5c284b80d1d9e1d817bae4 | refs/heads/master | 2023-09-01T18:55:40.601916 | 2021-11-02T05:22:01 | 2021-11-02T05:22:01 | 423,327,526 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,198 | h | /* Teensyduino Core Library
* http://www.pjrc.com/teensy/
* Copyright (c) 2017 PJRC.COM, LLC.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* 1. The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* 2. If the Software is incorporated into a build system that allows
* selection among a list of target devices, then similar target
* devices manufactured by PJRC.COM must be included in the list of
* target devices and selectable in the same manner.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#pragma once
#include "usb_desc.h"
#if defined(MTP_INTERFACE)
#include <inttypes.h>
// C language implementation
#ifdef __cplusplus
extern "C" {
#endif
void usb_mtp_configure(void);
int usb_mtp_recv(void *buffer, uint32_t timeout);
int usb_mtp_available(void);
int usb_mtp_send(const void *buffer, uint32_t len, uint32_t timeout);
#ifdef __cplusplus
}
#endif
// C++ interface
#ifdef __cplusplus
class usb_mtp_class
{
public:
int available(void) {return usb_mtp_available(); }
int recv(void *buffer, uint32_t timeout) { return usb_mtp_recv(buffer, timeout); }
int send(const void *buffer, uint32_t len, uint32_t timeout) { return usb_mtp_send(buffer, len, timeout); }
};
extern usb_mtp_class mtp;
#endif // __cplusplus
#endif // MTP_INTERFACE
| [
"jnnewton@hiwaay.net"
] | jnnewton@hiwaay.net |
4d8a3da4b72eb489872795f05d4288b9f11b121f | d4df8016db637baa32f802b83e084734eb42f066 | /Hashing/problems/__sortByFreq.cpp | 86f9ba566cd2f29b7498beab8f508228eb959efe | [] | no_license | vineetsinghrana/gfg_dsa_selfplaced | 9f591f0e63677885b25237d447b28b96714bb56b | 9f8619fd4a53110c343ad598acb120eb708151c6 | refs/heads/main | 2023-06-18T16:44:46.504398 | 2021-07-11T18:20:53 | 2021-07-11T18:20:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,463 | cpp | // { Driver Code Starts
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
class Solution{
public:
static bool sortByVal(const pair<int, int>& a,
const pair<int, int>& b)
{
// If frequency is same then sort by index
if (a.second == b.second)
return a.first < b.first;
return a.second > b.second;
}
//Complete this function
//Function to sort the array according to frequency of elements.
vector<int> sortByFreq(int a[],int n)
{
//Your code here
vector<int>res;
unordered_map<int, int> m;
vector<pair<int, int> > v;
for (int i = 0; i < n; ++i) {
// Map m is used to keep track of count
// of elements in array
m[a[i]]++;
}
// Copy map to vector
copy(m.begin(), m.end(), back_inserter(v));
// Sort the element of array by frequency
sort(v.begin(), v.end(), sortByVal);
for (int i = 0; i < v.size(); ++i)
while(v[i].second--)
{
res.push_back(v[i].first);
}
return res;
}
};
// { Driver Code Starts.
int main() {
int t;
cin >> t;
while(t--){
int n;
cin >> n;
int a[n+1];
for(int i = 0;i<n;i++){
cin >> a[i];
}
Solution obj;
vector<int> v;
v = obj.sortByFreq(a,n);
for(int i:v)
cout<<i<<" ";
cout << endl;
}
return 0;
}
// } Driver Code Ends | [
"55969671+tanmayarya29@users.noreply.github.com"
] | 55969671+tanmayarya29@users.noreply.github.com |
5e940a09f45f22e6c0de1f20e742d8c252777d95 | 47a0a6676349129af4873dc1951531bd76b28228 | /chrome/browser/ui/blocked_content/tab_under_navigation_throttle.h | 352f9842d1be5e7f53fa54ed8a9877e560340015 | [
"BSD-3-Clause"
] | permissive | Kaleb8812/chromium | f61c4a42e211ba4df707a45388a62e70dcae9cd7 | 4c098731f333f0d38b403af55133182d626be182 | refs/heads/master | 2022-12-23T01:13:33.470865 | 2018-04-06T11:44:50 | 2018-04-06T11:44:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,190 | h | // Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_BLOCKED_CONTENT_TAB_UNDER_NAVIGATION_THROTTLE_H_
#define CHROME_BROWSER_UI_BLOCKED_CONTENT_TAB_UNDER_NAVIGATION_THROTTLE_H_
#include <memory>
#include "base/feature_list.h"
#include "base/macros.h"
#include "base/time/time.h"
#include "content/public/browser/navigation_throttle.h"
namespace content {
class NavigationHandle;
}
namespace user_prefs {
class PrefRegistrySyncable;
};
constexpr char kBlockTabUnderFormatMessage[] =
"Chrome stopped this site from navigating to %s, see "
"https://www.chromestatus.com/feature/5675755719622656 for more details.";
// This class blocks navigations that we've classified as tab-unders. It does so
// by communicating with the popup opener tab helper.
//
// Currently, navigations are considered tab-unders if:
// 1. It is a navigation that is "suspicious"
// a. It has no user gesture.
// b. It is renderer-initiated.
// c. It is cross site to the last committed URL in the tab.
// d. The target site has a Site Engagement score below some threshold (by
// default, a score of 0).
// 2. The tab has opened a popup and hasn't received a user gesture since then.
// This information is tracked by the PopupOpenerTabHelper.
class TabUnderNavigationThrottle : public content::NavigationThrottle {
public:
static const base::Feature kBlockTabUnders;
// This enum backs a histogram. Update enums.xml if you make any updates, and
// put new entries before |kLast|.
enum class Action {
// Logged at WillStartRequest.
kStarted,
// Logged when a navigation is blocked.
kBlocked,
// Logged at the same time as kBlocked, but will additionally be logged even
// if the experiment is turned off.
kDidTabUnder,
// The user clicked through to navigate to the blocked redirect.
kClickedThrough,
// The user did not navigate to the blocked redirect and closed the message.
// This only gets logged when the user takes action on the UI, not when it
// gets automatically dismissed by a navigation for example.
kAcceptedIntervention,
kCount
};
static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
static std::unique_ptr<content::NavigationThrottle> MaybeCreate(
content::NavigationHandle* handle);
~TabUnderNavigationThrottle() override;
private:
explicit TabUnderNavigationThrottle(content::NavigationHandle* handle);
// This method is described at the top of this file.
//
// Note: This method should be robust to navigations at any stage.
bool IsSuspiciousClientRedirect() const;
content::NavigationThrottle::ThrottleCheckResult MaybeBlockNavigation();
void ShowUI();
bool HasOpenedPopupSinceLastUserGesture() const;
// content::NavigationThrottle:
content::NavigationThrottle::ThrottleCheckResult WillStartRequest() override;
content::NavigationThrottle::ThrottleCheckResult WillRedirectRequest()
override;
const char* GetNameForLogging() override;
// Threshold for a site's engagement score to be considered non-suspicious.
// Any tab-under target URL with engagement > |engagement_threshold_| will not
// be considered a suspicious redirect. If this member is -1, this threshold
// will not apply and all sites will be candidates for blocking.
const int engagement_threshold_ = 0;
// Store whether we're off the record as a member to avoid looking it up all
// the time.
const bool off_the_record_ = false;
// True if the experiment is turned on and the class should actually attempt
// to block tab-unders.
const bool block_ = false;
// Tracks whether this WebContents has opened a popup since the last user
// gesture, at the time this navigation is starting.
const bool has_opened_popup_since_last_user_gesture_at_start_ = false;
// True if the throttle has seen a tab under.
bool seen_tab_under_ = false;
DISALLOW_COPY_AND_ASSIGN(TabUnderNavigationThrottle);
};
#endif // CHROME_BROWSER_UI_BLOCKED_CONTENT_TAB_UNDER_NAVIGATION_THROTTLE_H_
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
2476c2af9488b1ebd4b22c981a0cd1ae6ebd4861 | 171ceb2fb959cee65bfa7d72758eb679d7fd6d62 | /codeforces/19E.cpp | 9f48f175bcc9a4573ae7dc80d74fd71437151895 | [] | no_license | maroom5/acm-icpc | 1470e84012aa54257f14d3ef6b32cd3adea3ff7b | 87ff25b8cec27e1f0d9dabcb22add64796069b06 | refs/heads/master | 2021-01-17T22:24:02.560769 | 2014-06-05T16:07:38 | 2014-06-05T16:07:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,879 | cpp | #include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int MAXN = 10010;
struct Edge {
int y, id; Edge *next;
Edge(int y, int id, Edge *next):y(y), id(id), next(next){}
}*a[MAXN];
int n, m;
int deep[MAXN], father[MAXN], vis[MAXN], mark[MAXN], odd = 0, where = -1, even[MAXN], mark_E[MAXN];
void Dfs(int u) {
vis[u] = true;
for (Edge *p = a[u]; p; p = p->next) if (p->y != father[u]) {
if (!vis[p->y]) {
father[p->y] = u;
deep[p->y] = deep[u] + 1;
Dfs(p->y);
} else if (deep[p->y] < deep[u]) {
if ((deep[u] - deep[p->y]) % 2 == 0) {
odd++;
mark[p->y]--;
mark[u]++;
where = p->id;
} else {
mark_E[p->y]++;
mark_E[u]--;
}
}
}
}
int stack[MAXN], top = 0, sum[MAXN], fail = false;
void Cal(int u) {
if (fail) return;
sum[u] = mark[u]; vis[u] = true; even[u] = mark_E[u];
for (Edge *p = a[u]; p; p = p->next) if (!vis[p->y]) {
Cal(p->y);
sum[u] += sum[p->y];
even[u] += even[p->y];
if (sum[p->y] == odd && even[p->y] == 0) {
stack[++top] = p->id;
}
}
}
int main(void) {
freopen("in", "r", stdin);
scanf("%d%d", &n, &m);
if (m == 0) {puts("0"); return 0;}
int self = 0;
for (int i = 1; i <= m; i++) {
int x, y; scanf("%d%d", &x, &y);
if (x == y) {self = i; continue;}
a[x] = new Edge(y, i, a[x]);
a[y] = new Edge(x, i, a[y]);
}
for (int i = 1; i <= n; i++) if (!vis[i]) {
Dfs(i); }memset(vis, 0, sizeof vis);
if (self) {
if (odd) puts("0"); else {
printf("1\n%d\n", self);
}
return 0;
}
if (odd == 0) {
printf("%d\n", m);
for (int i = 1; i <= m; i++) printf("%d ", i); puts("");
return 0;
}
for (int i = 1; i <= n; i++) if (!vis[i]) {
Cal(i); }if (odd == 1) stack[++top] = where;
if (fail) top = 0;
sort(stack + 1, stack + top + 1);
printf("%d\n", top);
for (int i = 1; i <= top; i ++) printf("%d ", stack[i]); puts("");
return 0;
}
| [
"echooatmeal@gmail.com"
] | echooatmeal@gmail.com |
bb3856ede0ec0a79b0bb1c50a295145b7919a37a | ba4db75b9d1f08c6334bf7b621783759cd3209c7 | /src_main/Tracker/AdminServer/ServerListCompare.cpp | ef11f02d9569864a63a9fc3d6275d018d5120de8 | [] | no_license | equalent/source-2007 | a27326c6eb1e63899e3b77da57f23b79637060c0 | d07be8d02519ff5c902e1eb6430e028e1b302c8b | refs/heads/master | 2020-03-28T22:46:44.606988 | 2017-03-27T18:05:57 | 2017-03-27T18:05:57 | 149,257,460 | 2 | 0 | null | 2018-09-18T08:52:10 | 2018-09-18T08:52:09 | null | WINDOWS-1252 | C++ | false | false | 4,090 | cpp | //========= Copyright © 1996-2001, Valve LLC, All rights reserved. ============
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
#include "ServerListCompare.h"
#include "server.h"
#include "serverpage.h"
#include <VGUI_ListPanel.h>
#include <VGUI_KeyValues.h>
//-----------------------------------------------------------------------------
// Purpose: List password column sort function
//-----------------------------------------------------------------------------
int __cdecl PasswordCompare(vgui::ListPanel *pPanel, const ListPanelItem &item1, const ListPanelItem &item2 )
{
serveritem_t &s1 = CServerPage::GetInstance()->GetServer(item1.userData);
serveritem_t &s2 = CServerPage::GetInstance()->GetServer(item2.userData);
if (s1.password < s2.password)
return 1;
else if (s1.password > s2.password)
return -1;
return 0;
}
//-----------------------------------------------------------------------------
// Purpose: Ping comparison function
//-----------------------------------------------------------------------------
int __cdecl PingCompare(vgui::ListPanel *pPanel, const vgui::ListPanelItem &item1, const vgui::ListPanelItem &item2 )
{
serveritem_t &s1 = CServerPage::GetInstance()->GetServer(item1.userData);
serveritem_t &s2 = CServerPage::GetInstance()->GetServer(item2.userData);
int ping1 = s1.ping;
int ping2 = s2.ping;
if ( ping1 < ping2 )
return -1;
else if ( ping1 > ping2 )
return 1;
return 0;
}
//-----------------------------------------------------------------------------
// Purpose: Map comparison function
//-----------------------------------------------------------------------------
int __cdecl MapCompare(vgui::ListPanel *pPanel, const vgui::ListPanelItem &item1, const vgui::ListPanelItem &item2 )
{
serveritem_t &s1 = CServerPage::GetInstance()->GetServer(item1.userData);
serveritem_t &s2 = CServerPage::GetInstance()->GetServer(item2.userData);
return stricmp(s1.map, s2.map);
}
//-----------------------------------------------------------------------------
// Purpose: Game dir comparison function
//-----------------------------------------------------------------------------
int __cdecl GameCompare(vgui::ListPanel *pPanel, const vgui::ListPanelItem &item1, const vgui::ListPanelItem &item2 )
{
serveritem_t &s1 = CServerPage::GetInstance()->GetServer(item1.userData);
serveritem_t &s2 = CServerPage::GetInstance()->GetServer(item2.userData);
// make sure we haven't added the same server to the list twice
assert(p1->userData != p2->userData);
return stricmp(s1.gameDescription, s2.gameDescription);
}
//-----------------------------------------------------------------------------
// Purpose: Server name comparison function
//-----------------------------------------------------------------------------
int __cdecl ServerNameCompare(vgui::ListPanel *pPanel, const vgui::ListPanelItem &item1, const vgui::ListPanelItem &item2 )
{
serveritem_t &s1 = CServerPage::GetInstance()->GetServer(item1.userData);
serveritem_t &s2 = CServerPage::GetInstance()->GetServer(item2.userData);
return stricmp(s1.name, s2.name);
}
//-----------------------------------------------------------------------------
// Purpose: Player number comparison function
//-----------------------------------------------------------------------------
int __cdecl PlayersCompare(vgui::ListPanel *pPanel, const vgui::ListPanelItem &item1, const vgui::ListPanelItem &item2 )
{
serveritem_t &s1 = CServerPage::GetInstance()->GetServer(item1.userData);
serveritem_t &s2 = CServerPage::GetInstance()->GetServer(item2.userData);
int s1p = s1.players;
int s1m = s1.maxPlayers;
int s2p = s2.players;
int s2m = s2.maxPlayers;
// compare number of players
if (s1p > s2p)
return -1;
if (s1p < s2p)
return 1;
// compare max players if number of current players is equal
if (s1m > s2m)
return -1;
if (s1m < s2m)
return 1;
return 0;
}
| [
"sean@csnxs.uk"
] | sean@csnxs.uk |
d0cc89635aa2da8289ad8522a787e4a3592d88ca | 6ae1b86972c01cd37bbe5a63565be08bc1f4582d | /ProjetCarte/Joueur.cpp | c02429c96c6b687913998b070413f5eeb6926b68 | [] | no_license | Reilbat/ProjetCarte | 877d38c62a351a213b120f957a4a688c2c36186d | 9449045f07718bc43cd12a3f1bb8695f3e65c01b | refs/heads/master | 2021-08-19T08:35:54.173606 | 2017-11-25T14:40:30 | 2017-11-25T14:40:30 | 110,707,722 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,691 | cpp | #include "Joueur.h"
#include <random>
#include <fstream>
#include <ctime>
Joueur::Joueur(string _nom, int _solde) : m_nom(_nom), m_vie(200), m_solde(_solde)
{
}
Joueur::~Joueur()
{
}
void Joueur::ajout_carte(Energie* new_carte)
{
collection.push_back(new_carte);
;
}
void Joueur::ajout_carte(Creature* new_carte)
{
collection.push_back(new_carte);
;
}
void Joueur::affichage_coll()
{
for (int i = 0; i<collection.size(); i++)
{
collection[i]->affichage();
}
}
void Joueur::affichage()
{
cout << "-nom : " << get_name() << " (argent sur le compte : " << get_solde() << " grains d'ADN )" << endl;
}
void nouvelle_collection() //fonction qui alloue une collection
{
int collecrand = 0;
//string bob = tab_joueur[taille].get_name();
uniform_int_distribution<int> distribution(1, 4);
std::default_random_engine generateur;
collecrand = distribution(generateur);
string nomfichier = "test.txt";
ofstream monFlux(nomfichier.c_str());
if (collecrand == 1)
{
ajout_carte(&VIH);
monFlux << "VIH Hepatite Gene";
ajout_carte(&hepatite);
ajout_carte(&VIH);
ajout_carte(&gene);
affichage_coll();
monFlux << endl;
}/*
if (collecrand == 2)
{
bob.ajout_carte(&gene);
monFlux << "gene Hepatite VIH gene";
bob.ajout_carte(&hepatite);
bob.ajout_carte(&VIH);
bob.ajout_carte(&gene);
bob.affichage_coll();
monFlux << endl;
}
if (collecrand == 3)
{
bob.ajout_carte(&gene);
monFlux << "gene Hepatite VIH VIH";
bob.ajout_carte(&hepatite);
bob.ajout_carte(&VIH);
bob.ajout_carte(&VIH);
bob.affichage_coll();
monFlux << endl;
}*/
}
//access
string Joueur::get_name()
{
return m_nom;
}
int Joueur::get_solde()
{
return m_solde;
} | [
"alexandre.2555@hotmail.fr"
] | alexandre.2555@hotmail.fr |
35a51d5e9770383cf07aea237fdc8a07016e9d13 | 49d005b88c4f587de8183050ed11e9a940e9ff09 | /code/engine/singletons/fanRenderDebug.cpp | 28704d12ecb469c2f931e0b4c3b0ac1e7de4feea | [] | no_license | G4m4/FEngine | daff1f1c0ab4db4f1cad7f056c431691e884c574 | de02892deed91d7eddfe19420fa3e49a4d12a09b | refs/heads/master | 2023-01-28T14:07:44.579234 | 2020-11-17T06:21:10 | 2020-11-17T06:21:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,160 | cpp | #include "engine/singletons/fanRenderDebug.hpp"
#include "core/math/fanMathUtils.hpp"
#include "core/math/fanBasicModels.hpp"
#include "core/fanDebug.hpp"
#include "editor/fanModals.hpp"
namespace fan
{
//========================================================================================================
//========================================================================================================
void RenderDebug::SetInfo( EcsSingletonInfo& /*_info*/ )
{
}
//========================================================================================================
//========================================================================================================
void RenderDebug::Init( EcsWorld& /*_world*/, EcsSingleton& _component )
{
RenderDebug& renderDebug= static_cast<RenderDebug&>( _component );
( void ) renderDebug;
}
//========================================================================================================
//========================================================================================================
void RenderDebug::Clear()
{
mDebugLines.clear();
mDebugLinesNoDepthTest.clear();
mDebugTriangles.clear();
mDebugLines2D.clear();
}
//========================================================================================================
//========================================================================================================
void RenderDebug::DebugPoint( const btVector3 _pos, const Color _color )
{
const float size = 0.2f;
DebugLine( _pos - size * btVector3::Up(), _pos + size * btVector3::Up(), _color );
DebugLine( _pos - size * btVector3::Left(), _pos + size * btVector3::Left(), _color );
DebugLine( _pos - size * btVector3::Forward(), _pos + size * btVector3::Forward(), _color );
}
//========================================================================================================
//========================================================================================================
void RenderDebug::DebugLine( const btVector3 _start,
const btVector3 _end,
const Color _color,
const bool _depthTestEnable )
{
if( _depthTestEnable )
{
mDebugLines.push_back( DebugVertex( ToGLM( _start ), glm::vec3( 0, 0, 0 ), _color.ToGLM() ) );
mDebugLines.push_back( DebugVertex( ToGLM( _end ), glm::vec3( 0, 0, 0 ), _color.ToGLM() ) );
}
else
{
mDebugLinesNoDepthTest.push_back( DebugVertex( ToGLM( _start ),
glm::vec3( 0, 0, 0 ),
_color.ToGLM() ) );
mDebugLinesNoDepthTest.push_back( DebugVertex( ToGLM( _end ),
glm::vec3( 0, 0, 0 ),
_color.ToGLM() ) );
}
}
//========================================================================================================
// takes a list of triangle and a list of colors
// 3 vertices per triangle
// 1 color per triangle
//========================================================================================================
void
RenderDebug::DebugTriangles( const std::vector<btVector3>& _triangles, const std::vector<Color>& _colors )
{
fanAssert( _triangles.size() % 3 == 0 );
fanAssert( _colors.size() == _triangles.size() / 3 );
mDebugTriangles.resize( mDebugTriangles.size() + _triangles.size() );
for( int triangleIndex = 0; triangleIndex < (int)_triangles.size() / 3; triangleIndex++ )
{
const btVector3 v0 = _triangles[3 * triangleIndex + 0];
const btVector3 v1 = _triangles[3 * triangleIndex + 1];
const btVector3 v2 = _triangles[3 * triangleIndex + 2];
const glm::vec3 normal = glm::normalize( ToGLM( ( v1 - v2 ).cross( v0 - v2 ) ) );
mDebugTriangles[3 * triangleIndex + 0] = DebugVertex( ToGLM( v0 ),
normal,
_colors[triangleIndex].ToGLM() );
mDebugTriangles[3 * triangleIndex + 1] = DebugVertex( ToGLM( v1 ),
normal,
_colors[triangleIndex].ToGLM() );
mDebugTriangles[3 * triangleIndex + 2] = DebugVertex( ToGLM( v2 ),
normal,
_colors[triangleIndex].ToGLM() );
}
}
//========================================================================================================
//========================================================================================================
void RenderDebug::DebugCircle( const btVector3 _pos,
const float _radius,
btVector3 _axis,
uint32_t _nbSegments,
const Color _color,
const bool _depthTestEnable )
{
fanAssert( _nbSegments > 2 && _radius >= 0.f );
const btVector3 other = btVector3( -_axis[1], -_axis[2], _axis[0] );
btVector3 orthogonal = _radius * _axis.cross( other ).normalized();
const float angle = 2.f * SIMD_PI / (float)_nbSegments;
std::vector<DebugVertex>& lines = _depthTestEnable ? mDebugLines : mDebugLinesNoDepthTest;
for( uint32_t segmentIndex = 0; segmentIndex < _nbSegments; segmentIndex++ )
{
btVector3 start = _pos + orthogonal;
orthogonal = orthogonal.rotate( _axis, angle );
btVector3 end = _pos + orthogonal;
lines.push_back( DebugVertex( ToGLM( start ), glm::vec3( 0, 0, 0 ), _color.ToGLM() ) );
lines.push_back( DebugVertex( ToGLM( end ), glm::vec3( 0, 0, 0 ), _color.ToGLM() ) );
}
}
//========================================================================================================
//========================================================================================================
void RenderDebug::DebugTriangle( const btVector3 _v0,
const btVector3 _v1,
const btVector3 _v2,
const Color _color )
{
const glm::vec3 normal = glm::normalize( ToGLM( ( _v1 - _v2 ).cross( _v0 - _v2 ) ) );
mDebugTriangles.push_back( DebugVertex( ToGLM( _v0 ), normal, _color.ToGLM() ) );
mDebugTriangles.push_back( DebugVertex( ToGLM( _v1 ), normal, _color.ToGLM() ) );
mDebugTriangles.push_back( DebugVertex( ToGLM( _v2 ), normal, _color.ToGLM() ) );
}
//========================================================================================================
//========================================================================================================
void RenderDebug::DebugCube( const btTransform _transform,
const btVector3 _halfExtent,
const Color _color,
const bool _depthTestEnable )
{
std::vector< btVector3 > cube = GetCube( _halfExtent );
for( int vertIndex = 0; vertIndex < (int)cube.size(); vertIndex++ )
{
cube[vertIndex] = _transform * cube[vertIndex];
}
glm::vec4 glmColor = _color.ToGLM();
std::vector<DebugVertex>& lines = _depthTestEnable ? mDebugLines : mDebugLinesNoDepthTest;
lines.push_back( DebugVertex( ToGLM( cube[0] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[1] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[1] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[3] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[3] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[2] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[2] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[0] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[4] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[5] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[5] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[7] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[7] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[6] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[6] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[4] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[0] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[4] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[1] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[5] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[3] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[7] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[2] ), glm::vec3( 0, 0, 0 ), glmColor ) );
lines.push_back( DebugVertex( ToGLM( cube[6] ), glm::vec3( 0, 0, 0 ), glmColor ) );
}
//========================================================================================================
//========================================================================================================
void RenderDebug::DebugIcoSphere( const btTransform _transform,
const float _radius,
const int _numSubdivisions,
const Color _color,
const bool _depthTestEnable )
{
if( _radius <= 0 )
{
Debug::Warning( "Debug sphere radius cannot be zero or negative" );
return;
}
std::vector<btVector3> sphere = GetSphere( _radius, _numSubdivisions );
for( int vertIndex = 0; vertIndex < (int)sphere.size(); vertIndex++ )
{
sphere[vertIndex] = _transform * sphere[vertIndex];
}
for( int triangleIndex = 0; triangleIndex < (int)sphere.size() / 3; triangleIndex++ )
{
const btVector3 v0 = sphere[3 * triangleIndex + 0];
const btVector3 v1 = sphere[3 * triangleIndex + 1];
const btVector3 v2 = sphere[3 * triangleIndex + 2];
DebugLine( v0, v1, _color, _depthTestEnable );
DebugLine( v1, v2, _color, _depthTestEnable );
DebugLine( v2, v0, _color, _depthTestEnable );
}
}
//========================================================================================================
//========================================================================================================
void RenderDebug::DebugSphere( const btTransform _transform,
const float _radius,
const Color _color,
const bool _depthTestEnable )
{
DebugCircle( _transform.getOrigin(), _radius, btVector3::Up(), 32, _color, _depthTestEnable );
DebugCircle( _transform.getOrigin(), _radius, btVector3::Left(), 32, _color, _depthTestEnable );
DebugCircle( _transform.getOrigin(), _radius, btVector3::Forward(), 32, _color, _depthTestEnable );
}
//========================================================================================================
//========================================================================================================
void RenderDebug::DebugCone( const btTransform _transform,
const float _radius,
const float _height,
const int _numSubdivisions,
const Color _color )
{
std::vector<btVector3> cone = GetCone( _radius, _height, _numSubdivisions );
for( int vertIndex = 0; vertIndex < (int)cone.size(); vertIndex++ )
{
cone[vertIndex] = _transform * cone[vertIndex];
}
for( int triangleIndex = 0; triangleIndex < (int)cone.size() / 3; triangleIndex++ )
{
DebugTriangle( cone[3 * triangleIndex + 0],
cone[3 * triangleIndex + 1],
cone[3 * triangleIndex + 2],
_color );
}
}
//========================================================================================================
//========================================================================================================
void RenderDebug::DebugAABB( const AABB& _aabb, const Color _color )
{
std::vector< btVector3 > corners = _aabb.GetCorners();
// Top
DebugLine( corners[0], corners[1], _color );
DebugLine( corners[1], corners[2], _color );
DebugLine( corners[2], corners[3], _color );
DebugLine( corners[3], corners[0], _color );
// Bot
DebugLine( corners[4], corners[5], _color );
DebugLine( corners[5], corners[6], _color );
DebugLine( corners[6], corners[7], _color );
DebugLine( corners[7], corners[4], _color );
//Vertical sides
DebugLine( corners[0], corners[4], _color );
DebugLine( corners[1], corners[5], _color );
DebugLine( corners[2], corners[6], _color );
DebugLine( corners[3], corners[7], _color );
}
//========================================================================================================
// start/end in screen pixels
//========================================================================================================
void RenderDebug::DebugLine2D( const glm::ivec2 _start, const glm::ivec2 _end, const Color _color )
{
mDebugLines2D.push_back( DebugVertex2D( _start, _color.ToGLM() ) );
mDebugLines2D.push_back( DebugVertex2D( _end, _color.ToGLM() ) );
}
//========================================================================================================
//========================================================================================================
void RenderDebug::DebugQuad2D( const glm::ivec2 _pos, const glm::ivec2 _size, const Color _color )
{
const glm::ivec2 tl = _pos;
const glm::ivec2 tr = _pos + glm::ivec2(_size.x, 0);
const glm::ivec2 bl = _pos + glm::ivec2(0, _size.y);
const glm::ivec2 br = _pos + _size;
DebugLine2D( tl, tr , _color );
DebugLine2D( tr, br , _color );
DebugLine2D( br, bl , _color );
DebugLine2D( bl, tl , _color );
}
} | [
"candela.francois@gmail.com"
] | candela.francois@gmail.com |
b62c91c02f74df122809478f802d6fef09d744c2 | ce6229f5915f9e6de1238861b4a940d61e56960b | /Sonder/Temp/il2cppOutput/il2cppOutput/mscorlib_System_ArgumentOutOfRangeException279959794.h | 198113d55a1b444c48b7899d2506f5645b82a834 | [
"Apache-2.0"
] | permissive | HackingForGood/GoogleyEyes | d9e36e3dffb4edbd0736ab49a764736a91ecebcf | a92b962ab220686794350560a47e88191e165c05 | refs/heads/master | 2021-04-15T10:03:59.093464 | 2017-06-25T17:32:52 | 2017-06-25T17:32:52 | 94,575,021 | 7 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,182 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "mscorlib_System_ArgumentException3259014390.h"
// System.Object
struct Il2CppObject;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t279959794 : public ArgumentException_t3259014390
{
public:
// System.Object System.ArgumentOutOfRangeException::actual_value
Il2CppObject * ___actual_value_13;
public:
inline static int32_t get_offset_of_actual_value_13() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t279959794, ___actual_value_13)); }
inline Il2CppObject * get_actual_value_13() const { return ___actual_value_13; }
inline Il2CppObject ** get_address_of_actual_value_13() { return &___actual_value_13; }
inline void set_actual_value_13(Il2CppObject * value)
{
___actual_value_13 = value;
Il2CppCodeGenWriteBarrier(&___actual_value_13, value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"anishdhesikan@gmail.com"
] | anishdhesikan@gmail.com |
edaa36de29ff6ea2995e6f2c4ebb07325f14fff9 | aecea44a579fda3eb66f65ebf7d02e5cb85a08cf | /thrill/common/string_view.hpp | 995af1ffce4da94e5c81fcf9d55322487cc6c441 | [
"BSD-2-Clause"
] | permissive | qicosmos/thrill | 7e43847aeb8747f836db243a0d164303327397d4 | 063b4b72e770d557d781f722f2a9fc84f0735a4a | refs/heads/master | 2020-12-28T23:35:50.285383 | 2016-04-25T07:15:57 | 2016-04-25T07:15:57 | 59,924,676 | 2 | 0 | null | 2016-05-29T03:29:55 | 2016-05-29T03:29:54 | null | UTF-8 | C++ | false | false | 6,444 | hpp | /*******************************************************************************
* thrill/common/string_view.hpp
*
* A simplified string_view implementation to reduce the number of allocations
* in the WordCount benchmark.
*
* Part of Project Thrill - http://project-thrill.org
*
* Copyright (C) 2015 Alexander Noe <aleexnoe@gmail.com>
* Copyright (C) 2016 Timo Bingmann <tb@panthema.net>
*
* All rights reserved. Published under the BSD-2 license in the LICENSE file.
******************************************************************************/
#pragma once
#ifndef THRILL_COMMON_STRING_VIEW_HEADER
#define THRILL_COMMON_STRING_VIEW_HEADER
#include <thrill/common/fast_string.hpp>
#include <algorithm>
#include <ostream>
#include <string>
namespace thrill {
namespace common {
/*!
* StringView is a reference to a part of a string, consisting of only a char
* pointer and a length. It does not have ownership of the substring and is used
* mainly for temporary objects.
*/
class StringView
{
public:
using iterator = const char*;
//! Default constructor for a StringView. Doesn't do anything.
StringView() = default;
/*!
* Creates a new StringView, given a const char* and the size.
*
* \param data pointer to start of data
* \param size size of data in bytes.
* \return new StringView object.
*/
StringView(const char* data, size_t size) noexcept
: data_(data), size_(size) { }
/*!
* Creates a new StringView, given a const iterator to a std::string and the
* size.
*
* \param data iterator to start of data
* \param size size of data in character.
* \return new StringView object.
*/
StringView(const std::string::const_iterator& data, size_t size) noexcept
: data_(&(*data)), size_(size) { }
/*!
* Creates a new reference StringView, given two const iterators to a
* std::string.
*
* \param begin iterator to start of data
* \param end iterator to the end of data.
* \return new StringView object.
*/
StringView(const std::string::const_iterator& begin,
const std::string::const_iterator& end) noexcept
: StringView(begin, end - begin) { }
//! Construct a StringView to the whole std::string.
explicit StringView(const std::string& str) noexcept
: StringView(str.begin(), str.end()) { }
//! Returns a pointer to the start of the data.
const char * data() const noexcept {
return data_;
}
//! Returns a pointer to the beginning of the data.
iterator begin() const noexcept {
return data_;
}
//! Returns a pointer beyond the end of the data.
iterator end() const noexcept {
return data_ + size_;
}
//! Returns the size of this StringView
size_t size() const noexcept {
return size_;
}
//! Equality operator to compare a StringView with another StringView
bool operator == (const StringView& other) const noexcept {
return size_ == other.size_ &&
std::equal(data_, data_ + size_, other.data_);
}
//! Inequality operator to compare a StringView with another StringView
bool operator != (const StringView& other) const noexcept {
return !(operator == (other));
}
//! Equality operator to compare a StringView with an std::string
bool operator == (const std::string& other) const noexcept {
return size_ == other.size() &&
std::equal(data_, data_ + size_, other.data());
}
//! Inequality operator to compare a StringView with an std::string
bool operator != (const std::string& other) const noexcept {
return !(operator == (other));
}
//! make StringView ostreamable
friend std::ostream& operator << (std::ostream& os, const StringView& sv) {
return os.write(sv.data(), sv.size());
}
//! Returns the data of this StringView as an std::string
std::string ToString() const {
return std::string(data_, size_);
}
//! Returns the data of this StringView as an FastString
FastString ToFastString() const {
return FastString::Ref(data_, size_);
}
// operator std::string () const { return ToString(); }
private:
//! pointer to character data
const char* data_ = nullptr;
//! size of data
size_t size_ = 0;
};
static inline
bool operator == (const std::string& a, const StringView& b) noexcept {
return b == a;
}
static inline
bool operator != (const std::string& a, const StringView& b) noexcept {
return b != a;
}
/*!
* Split the given string at each separator character into distinct substrings,
* and call the given callback for each substring, represented by two iterators
* begin and end. Multiple consecutive separators are considered individually
* and will result in empty split substrings.
*
* \param str string to split
* \param sep separator character
* \param callback callback taking begin and end iterator of substring
* \param limit maximum number of parts returned
*/
template <typename F>
static inline
void SplitView(
const std::string& str, char sep, F&& callback,
std::string::size_type limit = std::string::npos) {
if (limit == 0)
{
callback(StringView(str.begin(), str.end()));
return;
}
std::string::size_type count = 0;
auto it = str.begin(), last = it;
for ( ; it != str.end(); ++it)
{
if (*it == sep)
{
if (count == limit)
{
callback(StringView(last, str.end()));
return;
}
callback(StringView(last, it));
++count;
last = it + 1;
}
}
callback(StringView(last, it));
}
} // namespace common
} // namespace thrill
namespace std {
template <>
struct hash<thrill::common::StringView>
{
size_t operator () (const thrill::common::StringView& sv) const {
// simple string hash taken from: http://www.cse.yorku.ca/~oz/hash.html
size_t hash = 5381;
for (const char* ctr = sv.begin(); ctr != sv.end(); ++ctr) {
// hash * 33 + c
hash = ((hash << 5) + hash) + *ctr;
}
return hash;
}
};
} // namespace std
#endif // !THRILL_COMMON_STRING_VIEW_HEADER
/******************************************************************************/
| [
"tbgit@panthema.net"
] | tbgit@panthema.net |
449fadd044596d123fcd7a42925a2afc67fc2ead | 211ccfb7a770f44b4308bf760a68cecb1feb9573 | /cob_phidgets/ros/src/cob_phidgets_sim_node.cpp | 9f86b31f19ef3fdb660ebbcebac27f3c486fa9d8 | [
"Apache-2.0"
] | permissive | ipa320/cob_driver | 7a16f995a5bd9284f2f513484bb9e022b91cd3d5 | 536b400c58cad212722c1d8f36e97f65faf288e5 | refs/heads/kinetic_dev | 2023-09-01T19:19:55.521870 | 2023-07-24T14:11:05 | 2023-07-24T14:11:05 | 1,142,976 | 49 | 171 | Apache-2.0 | 2023-08-23T09:55:34 | 2010-12-06T12:13:47 | C++ | UTF-8 | C++ | false | false | 2,514 | cpp | /*
* Copyright 2017 Fraunhofer Institute for Manufacturing Engineering and Automation (IPA)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <ros/ros.h>
#include <cob_phidgets/SetDataRate.h>
#include <cob_phidgets/SetDigitalSensor.h>
#include <cob_phidgets/SetTriggerValue.h>
#include <cob_phidgets/AnalogSensor.h>
#include <cob_phidgets/DigitalSensor.h>
class PhidgetIKROSSim
{
public:
PhidgetIKROSSim()
{
_pubAnalog = _nh.advertise<cob_phidgets::AnalogSensor>("analog_sensors", 1);
_pubDigital = _nh.advertise<cob_phidgets::DigitalSensor>("digital_sensors", 1);
_subDigital = _nh.subscribe("set_digital_sensor", 1, &PhidgetIKROSSim::onDigitalOutCallback, this);
_srvDigitalOut = _nh.advertiseService("set_digital", &PhidgetIKROSSim::setDigitalOutCallback, this);
_srvDataRate = _nh.advertiseService("set_data_rate", &PhidgetIKROSSim::setDataRateCallback, this);
_srvTriggerValue = _nh.advertiseService("set_trigger_value", &PhidgetIKROSSim::setTriggerValueCallback, this);
};
~PhidgetIKROSSim(){};
private:
ros::NodeHandle _nh;
ros::Publisher _pubAnalog;
ros::Publisher _pubDigital;
ros::Subscriber _subDigital;
ros::ServiceServer _srvDigitalOut;
ros::ServiceServer _srvDataRate;
ros::ServiceServer _srvTriggerValue;
auto onDigitalOutCallback(const cob_phidgets::DigitalSensorConstPtr& msg) -> void
{
}
auto setDigitalOutCallback(cob_phidgets::SetDigitalSensor::Request &req,
cob_phidgets::SetDigitalSensor::Response &res) -> bool
{
res.state = req.state;
res.uri = req.uri;
return true;
}
auto setDataRateCallback(cob_phidgets::SetDataRate::Request &req,
cob_phidgets::SetDataRate::Response &res) -> bool
{
return true;
}
auto setTriggerValueCallback(cob_phidgets::SetTriggerValue::Request &req,
cob_phidgets::SetTriggerValue::Response &res) -> bool
{
return true;
}
};
int main(int argc, char **argv)
{
ros::init(argc, argv, "cob_phidgets_sim");
PhidgetIKROSSim cob_phidgets_sim;
ros::spin();
return 0;
}
| [
"felixmessmer@gmail.com"
] | felixmessmer@gmail.com |
ed0c97a881b251166a0c560abd845e7ddd77a428 | 12015de5f13f7f61eac69974b9555d0121fc71e5 | /tests/test_rank_filter_base.cxx | ad45cd728394bf4e5449b0f9e98aea25a596fb6c | [
"BSD-3-Clause"
] | permissive | ricardomga/rank_filter | 4760a806a454a47817c6b84b2fda6510dd9ac2ee | a6c846207444187d023df84c9d38024c5ff3a538 | refs/heads/master | 2020-03-09T12:13:37.241709 | 2018-04-10T12:09:00 | 2018-04-10T12:09:00 | 128,780,536 | 0 | 0 | null | 2018-04-09T13:58:37 | 2018-04-09T13:58:36 | null | UTF-8 | C++ | false | false | 5,305 | cxx | #define BOOST_TEST_MODULE RankFilterBaseModule
#include <boost/test/included/unit_test.hpp>
#include <boost/array.hpp>
#include "rank_filter_base.hxx"
struct RankFilterBaseFixture
{
public:
static const unsigned long size = 10;
boost::array<double, size> array_1;
boost::array<double, size> reverse_array_1;
boost::array<double, size> expected_result_1;
boost::array<double, size> result_1;
boost::array<double, size>::iterator array_1_begin;
boost::array<double, size>::iterator array_1_end;
boost::array<double, size>::iterator reverse_array_1_begin;
boost::array<double, size>::iterator reverse_array_1_end;
boost::array<double, size>::iterator result_1_begin;
boost::array<double, size>::iterator result_1_end;
public:
RankFilterBaseFixture()
{
for (int i = 0; i < size; i++)
{
array_1[i] = i;
}
for (int i = 0; i < size; i++)
{
reverse_array_1[i] = size - i - 1;
}
expected_result_1.fill(0);
result_1.fill(0);
array_1_begin = array_1.begin();
array_1_end = array_1.end();
reverse_array_1_begin = reverse_array_1.begin();
reverse_array_1_end = reverse_array_1.end();
result_1_begin = result_1.begin();
result_1_end = result_1.end();
};
~RankFilterBaseFixture()
{
};
};
BOOST_AUTO_TEST_SUITE( RankFilterBaseSuite )
BOOST_FIXTURE_TEST_CASE(test_rank_filter_base_1, RankFilterBaseFixture)
{
expected_result_1 = array_1;
rank_filter::lineRankOrderFilter1D(array_1_begin, array_1_end, result_1_begin, result_1_end, 0, 0.5);
BOOST_CHECK_EQUAL(expected_result_1, result_1);
}
BOOST_FIXTURE_TEST_CASE(test_rank_filter_base_2, RankFilterBaseFixture)
{
expected_result_1 = reverse_array_1;
rank_filter::lineRankOrderFilter1D(reverse_array_1_begin, reverse_array_1_end, result_1_begin, result_1_end, 0, 0.5);
BOOST_CHECK_EQUAL(expected_result_1, result_1);
}
BOOST_FIXTURE_TEST_CASE(test_rank_filter_base_3, RankFilterBaseFixture)
{
expected_result_1 = array_1;
expected_result_1[0] = expected_result_1[1];
expected_result_1[expected_result_1.size() - 1] = expected_result_1[expected_result_1.size() - 2];
rank_filter::lineRankOrderFilter1D(array_1_begin, array_1_end, result_1_begin, result_1_end, 1, 0.5);
BOOST_CHECK_EQUAL(expected_result_1, result_1);
}
BOOST_FIXTURE_TEST_CASE(test_rank_filter_base_4, RankFilterBaseFixture)
{
expected_result_1 = reverse_array_1;
expected_result_1[0] = expected_result_1[1];
expected_result_1[expected_result_1.size() - 1] = expected_result_1[expected_result_1.size() - 2];
rank_filter::lineRankOrderFilter1D(reverse_array_1_begin, reverse_array_1_end, result_1_begin, result_1_end, 1, 0.5);
BOOST_CHECK_EQUAL(expected_result_1, result_1);
}
BOOST_FIXTURE_TEST_CASE(test_rank_filter_base_5, RankFilterBaseFixture)
{
expected_result_1 = array_1;
expected_result_1[0] = expected_result_1[1];
expected_result_1[expected_result_1.size() - 1] = expected_result_1[expected_result_1.size() - 2];
rank_filter::lineRankOrderFilter1D(array_1_begin, array_1_end, result_1_begin, result_1_end, 2, 0.5);
BOOST_CHECK_EQUAL(expected_result_1, result_1);
}
BOOST_FIXTURE_TEST_CASE(test_rank_filter_base_6, RankFilterBaseFixture)
{
expected_result_1 = reverse_array_1;
expected_result_1[0] = expected_result_1[1];
expected_result_1[expected_result_1.size() - 1] = expected_result_1[expected_result_1.size() - 2];
rank_filter::lineRankOrderFilter1D(reverse_array_1_begin, reverse_array_1_end, result_1_begin, result_1_end, 2, 0.5);
BOOST_CHECK_EQUAL(expected_result_1, result_1);
}
BOOST_FIXTURE_TEST_CASE(test_rank_filter_base_7, RankFilterBaseFixture)
{
expected_result_1 = array_1;
expected_result_1[0] = expected_result_1[1] = expected_result_1[2];
expected_result_1[expected_result_1.size() - 1] = expected_result_1[expected_result_1.size() - 2] = expected_result_1[expected_result_1.size() - 3];
rank_filter::lineRankOrderFilter1D(array_1_begin, array_1_end, result_1_begin, result_1_end, 3, 0.5);
BOOST_CHECK_EQUAL(expected_result_1, result_1);
}
BOOST_FIXTURE_TEST_CASE(test_rank_filter_base_8, RankFilterBaseFixture)
{
expected_result_1 = reverse_array_1;
expected_result_1[0] = expected_result_1[1] = expected_result_1[2];
expected_result_1[expected_result_1.size() - 1] = expected_result_1[expected_result_1.size() - 2] = expected_result_1[expected_result_1.size() - 3];
rank_filter::lineRankOrderFilter1D(reverse_array_1_begin, reverse_array_1_end, result_1_begin, result_1_end, 3, 0.5);
BOOST_CHECK_EQUAL(expected_result_1, result_1);
}
BOOST_FIXTURE_TEST_CASE(test_rank_filter_base_9, RankFilterBaseFixture)
{
for (size_t i = 0; i < array_1.size(); i++)
{
expected_result_1[i] = (i < 5) ? array_1[5] : array_1[4];
}
rank_filter::lineRankOrderFilter1D(array_1_begin, array_1_end, result_1_begin, result_1_end, size - 1, 0.5);
BOOST_CHECK_EQUAL(expected_result_1, result_1);
}
BOOST_AUTO_TEST_SUITE_END()
| [
"kirkhamj@janelia.hhmi.org"
] | kirkhamj@janelia.hhmi.org |
78fff9734588883bb41c5a1af5e1872bb016a137 | c99563482d18ebb50c3bdd3feb3e3f821f7cccc4 | /src/base58.h | 2f2d46fdd5a8413697382381644b8fab554b59be | [
"MIT"
] | permissive | matsuiny2004/BookCoin | afa85971ae01a17a9d53c3fdcdc1cca7db05270e | 23ad19110babe6b0cdd80b62eec314d3c270938b | refs/heads/master | 2020-04-13T22:01:41.080231 | 2018-11-18T17:39:14 | 2018-11-18T17:39:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,768 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
/**
* Why base-58 instead of standard base-64 encoding?
* - Don't want 0OIl characters that look the same in some fonts and
* could be used to create visually identical looking data.
* - A string with non-alphanumeric characters is not as easily accepted as input.
* - E-mail usually won't line-break if there's no punctuation to break at.
* - Double-clicking selects the whole string as one word if it's all alphanumeric.
*/
#ifndef BITCOIN_BASE58_H
#define BITCOIN_BASE58_H
#include "chainparams.h"
#include "key.h"
#include "pubkey.h"
#include "script/script.h"
#include "script/standard.h"
#include "support/allocators/zeroafterfree.h"
#include <string>
#include <vector>
/**
* Encode a byte sequence as a base58-encoded string.
* pbegin and pend cannot be NULL, unless both are.
*/
std::string EncodeBase58(const unsigned char* pbegin, const unsigned char* pend);
/**
* Encode a byte vector as a base58-encoded string
*/
std::string EncodeBase58(const std::vector<unsigned char>& vch);
/**
* Decode a base58-encoded string (psz) into a byte vector (vchRet).
* return true if decoding is successful.
* psz cannot be NULL.
*/
bool DecodeBase58(const char* psz, std::vector<unsigned char>& vchRet);
/**
* Decode a base58-encoded string (str) into a byte vector (vchRet).
* return true if decoding is successful.
*/
bool DecodeBase58(const std::string& str, std::vector<unsigned char>& vchRet);
/**
* Encode a byte vector into a base58-encoded string, including checksum
*/
std::string EncodeBase58Check(const std::vector<unsigned char>& vchIn);
/**
* Decode a base58-encoded string (psz) that includes a checksum into a byte
* vector (vchRet), return true if decoding is successful
*/
inline bool DecodeBase58Check(const char* psz, std::vector<unsigned char>& vchRet);
/**
* Decode a base58-encoded string (str) that includes a checksum into a byte
* vector (vchRet), return true if decoding is successful
*/
inline bool DecodeBase58Check(const std::string& str, std::vector<unsigned char>& vchRet);
/**
* Base class for all base58-encoded data
*/
class CBase58Data
{
protected:
//! the version byte(s)
std::vector<unsigned char> vchVersion;
//! the actually encoded data
typedef std::vector<unsigned char, zero_after_free_allocator<unsigned char> > vector_uchar;
vector_uchar vchData;
CBase58Data();
void SetData(const std::vector<unsigned char> &vchVersionIn, const void* pdata, size_t nSize);
void SetData(const std::vector<unsigned char> &vchVersionIn, const unsigned char *pbegin, const unsigned char *pend);
public:
bool SetString(const char* psz, unsigned int nVersionBytes = 1);
bool SetString(const std::string& str);
std::string ToString() const;
int CompareTo(const CBase58Data& b58) const;
bool operator==(const CBase58Data& b58) const { return CompareTo(b58) == 0; }
bool operator<=(const CBase58Data& b58) const { return CompareTo(b58) <= 0; }
bool operator>=(const CBase58Data& b58) const { return CompareTo(b58) >= 0; }
bool operator< (const CBase58Data& b58) const { return CompareTo(b58) < 0; }
bool operator> (const CBase58Data& b58) const { return CompareTo(b58) > 0; }
};
/** base58-encoded Book addresses.
* Public-key-hash-addresses have version 76 (or 140 testnet).
* The data vector contains RIPEMD160(SHA256(pubkey)), where pubkey is the serialized public key.
* Script-hash-addresses have version 16 (or 19 testnet).
* The data vector contains RIPEMD160(SHA256(cscript)), where cscript is the serialized redemption script.
*/
class CBitcoinAddress : public CBase58Data {
public:
bool Set(const CKeyID &id);
bool Set(const CScriptID &id);
bool Set(const CTxDestination &dest);
bool IsValid() const;
bool IsValid(const CChainParams ¶ms) const;
CBitcoinAddress() {}
CBitcoinAddress(const CTxDestination &dest) { Set(dest); }
CBitcoinAddress(const std::string& strAddress) { SetString(strAddress); }
CBitcoinAddress(const char* pszAddress) { SetString(pszAddress); }
CTxDestination Get() const;
bool GetKeyID(CKeyID &keyID) const;
bool GetIndexKey(uint160& hashBytes, int& type) const;
bool IsScript() const;
};
/**
* A base58-encoded secret key
*/
class CBitcoinSecret : public CBase58Data
{
public:
void SetKey(const CKey& vchSecret);
CKey GetKey();
bool IsValid() const;
bool SetString(const char* pszSecret);
bool SetString(const std::string& strSecret);
CBitcoinSecret(const CKey& vchSecret) { SetKey(vchSecret); }
CBitcoinSecret() {}
};
template<typename K, int Size, CChainParams::Base58Type Type> class CBitcoinExtKeyBase : public CBase58Data
{
public:
void SetKey(const K &key) {
unsigned char vch[Size];
key.Encode(vch);
SetData(Params().Base58Prefix(Type), vch, vch+Size);
}
K GetKey() {
K ret;
if (vchData.size() == Size) {
//if base58 encouded data not holds a ext key, return a !IsValid() key
ret.Decode(&vchData[0]);
}
return ret;
}
CBitcoinExtKeyBase(const K &key) {
SetKey(key);
}
CBitcoinExtKeyBase(const std::string& strBase58c) {
SetString(strBase58c.c_str(), Params().Base58Prefix(Type).size());
}
CBitcoinExtKeyBase() {}
};
typedef CBitcoinExtKeyBase<CExtKey, 74, CChainParams::EXT_SECRET_KEY> CBitcoinExtKey;
typedef CBitcoinExtKeyBase<CExtPubKey, 74, CChainParams::EXT_PUBLIC_KEY> CBitcoinExtPubKey;
#endif // BITCOIN_BASE58_H
| [
"bookcoin@protonmail.com"
] | bookcoin@protonmail.com |
c20982c3a281f3bb294f022b59e74a27221924ad | f5deac52f73fffbdcebaadb24fabbb1c33a6a808 | /src/tools/viewcsv.cpp | 1b36c44692034250276a6a9fefeca6a9274dda04 | [
"BSD-3-Clause",
"LicenseRef-scancode-other-permissive"
] | permissive | zippy/libbu | d92557f8ece66c70e8ba37768194b2d6aad8bd89 | 6c79102419f9e79d25751fefc155f746496f4b50 | refs/heads/master | 2021-01-18T05:53:00.876941 | 2013-02-17T02:46:00 | 2013-02-17T02:46:00 | 8,282,197 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,328 | cpp | /*
* Copyright (C) 2007-2013 Xagasoft, All rights reserved.
*
* This file is part of the libbu++ library and is released under the
* terms of the license contained in the file LICENSE.
*/
#include <bu/sio.h>
#include <bu/optparser.h>
#include <bu/csvreader.h>
#include <bu/file.h>
#include <bu/newline.h>
#include <bu/buffer.h>
#include <bu/util.h>
#include <bu/regex.h>
#include <ncurses.h>
using namespace Bu;
class Options : public Bu::OptParser
{
public:
Options( int argc, char *argv[] ) :
bHeader( true )
{
addOption( bHeader, "no-header",
"Don't use the first line as a header row. This behaviour can "
"also be toggled while running with 'h'." );
setNonOption( slot( this, &Options::onNonOption ) );
addHelpOption();
setOverride( "no-header", "true" );
parse( argc, argv );
}
virtual ~Options()
{
}
int onNonOption( StrArray aParams )
{
//sio << aParams << sio.nl;
sFileIn = aParams[0];
return 0;
}
Bu::String sFileIn;
bool bHeader;
};
typedef Bu::Array<StrArray> StrGrid;
typedef Bu::Array<int> IntArray;
class CsvDoc
{
public:
CsvDoc() :
iMaxCols( 0 )
{
}
virtual ~CsvDoc()
{
}
void addRow( StrArray aStr )
{
sgData.append( aStr );
if( iMaxCols < aStr.getSize() )
iMaxCols = aStr.getSize();
while( aWidths.getSize() < iMaxCols )
{
aWidths.append( 0 );
}
for( int j = 0; j < aStr.getSize(); j++ )
{
if( aWidths[j] < aStr[j].getSize() )
aWidths[j] = aStr[j].getSize();
}
}
int iMaxCols;
StrGrid sgData;
IntArray aWidths;
};
class CsvView
{
public:
CsvView( CsvDoc &doc ) :
doc( doc ),
iXOff( 0 ),
iYOff( 0 ),
bHeaderRow( false )
{
}
virtual ~CsvView()
{
}
void render()
{
erase();
int maxx, maxy;
getmaxyx( stdscr, maxy, maxx );
int iRows = buMin( (int)doc.sgData.getSize(), maxy-((bHeaderRow)?(4):(3)) );
int iCols = buMin( doc.iMaxCols, (int)maxx-1 );
int iHdrHeight = 1;
if( bHeaderRow )
iHdrHeight++;
// Draw the headers
for( int iRow = 0; iRow < iRows; iRow++ )
{
if( iRow+iYOff >= doc.sgData.getSize() )
break;
char buf[6];
snprintf( buf, 6, "%5d", iRow+iYOff );
mvaddnstr( iRow+iHdrHeight+1, 0, buf, 5 );
mvaddch( iRow+iHdrHeight+1, 6, ACS_VLINE );
}
int iXPos = 6;
try
{
for( int iCol = 0; iCol < iCols; iCol++ )
{
if( iXPos >= maxx )
break;
int iWidth = buMin( doc.aWidths[iCol+iXOff], maxx-iXPos-1 );
char buf[6];
snprintf( buf, 6, "%d", iCol+iXOff );
mvaddch( 0, iXPos, ACS_VLINE );
mvaddch( iHdrHeight, iXPos, ACS_PLUS );
mvaddnstr( 0, iXPos+1, buf, 5 );
if( bHeaderRow )
{
mvaddnstr(
1, iXPos+1, doc.sgData[0][iCol+iXOff].getStr(), iWidth
);
mvaddch( 1, iXPos, ACS_VLINE );
}
for( int j = 0; j < iWidth; j++ )
{
mvaddch( iHdrHeight, iXPos+j+1, ACS_HLINE );
}
iXPos += iWidth+1;
}
}
catch(...) { }
for( int j = 0; j < 6; j++ )
{
mvaddch( iHdrHeight, j, ACS_HLINE );
}
// Draw some data
for( int iRow = 0; iRow < iRows; iRow++ )
{
try
{
int iXPos = 6;
for( int iCol = 0; iCol < iCols; iCol++ )
{
if( iXPos >= maxx )
break;
int iWidth = buMin( doc.aWidths[iCol+iXOff], maxx-iXPos-1 );
mvaddch( iRow+iHdrHeight+1, iXPos, ACS_VLINE );
mvaddnstr( iRow+iHdrHeight+1, iXPos+1,
doc.sgData[iRow+iYOff][iCol+iXOff].getStr(), iWidth );
iXPos += iWidth+1;
}
} catch(...) { }
}
attron( A_REVERSE );
for( int j = 0; j < maxx; j++ )
{
mvaddch( maxy-1, j, ' ' );
}
mvaddstr( maxy-1, 1, "q) quit h) toggle header row" );
char buf[30];
int iWidth = sprintf( buf, "[%dx%ld]",
doc.iMaxCols, doc.sgData.getSize()
);
mvaddstr( maxy-1, maxx-iWidth-1, buf );
attroff( A_REVERSE );
}
void move( int iX, int iY )
{
iXOff += iX;
iYOff += iY;
if( iXOff < 0 )
iXOff = 0;
if( bHeaderRow )
{
if( iYOff < 1 )
iYOff = 1;
}
else
{
if( iYOff < 0 )
iYOff = 0;
}
if( iYOff >= doc.sgData.getSize() )
iYOff = doc.sgData.getSize()-1;
if( iXOff >= doc.iMaxCols )
iXOff = doc.iMaxCols-1;
}
void pageDown()
{
int maxx, maxy;
getmaxyx( stdscr, maxy, maxx );
move( 0, maxy-((bHeaderRow)?(4):(3)) );
}
void pageUp()
{
int maxx, maxy;
getmaxyx( stdscr, maxy, maxx );
move( 0, -(maxy-((bHeaderRow)?(4):(3))) );
}
void home()
{
iYOff = 0;
if( bHeaderRow ) iYOff++;
}
void end()
{
iYOff = doc.sgData.getSize()-1;
}
void setHeaderRow( bool bOn )
{
if( bHeaderRow == bOn )
return;
bHeaderRow = bOn;
move( 0, ((bOn)?(1):(-1)) );
}
void toggleHeaderRow()
{
setHeaderRow( !bHeaderRow );
}
Bu::String prompt( const Bu::String &sPrompt )
{
int maxx, maxy;
Bu::String sStr;
RegEx re( sPrompt );
curs_set( 1 );
for(;;)
{
getmaxyx( stdscr, maxy, maxx );
for( int j = 0; j < maxx; j++ )
{
mvaddch( maxy-1, j, ' ' );
}
mvaddstr( maxy-1, 0, sPrompt.getStr() );
mvaddstr( maxy-1, sPrompt.getSize(), sStr.getStr() );
int iCh = getch();
switch( iCh )
{
case '\n':
case '\r':
case KEY_ENTER:
curs_set( 0 );
return sStr;
break;
case KEY_BACKSPACE:
if( sStr.getSize() > 0 )
sStr.resize( sStr.getSize()-1 );
break;
default:
if( iCh < 127 )
sStr += (char)iCh;
break;
}
}
}
void resetCaret()
{
sysCaret.reset();
}
void findNext( const Bu::String &sTerm )
{
RegEx re( sTerm );
int y = sysCaret.iRow;
if( y < 0 )
y = 0;
int x = sysCaret.iCol+1;
for( ; y < doc.sgData.getSize(); y++ )
{
StrArray &aRow = doc.sgData[y];
for( ; x < aRow.getSize(); x++ )
{
if( re.execute( aRow[x] ) ) //aRow[x].find( sTerm ) )
{
sysCaret.iRow = y;
sysCaret.iCol = x;
scrollToCaret();
return;
}
}
x = 0;
}
}
void scrollToCaret()
{
iXOff = sysCaret.iCol;
iYOff = sysCaret.iRow;
}
CsvDoc &doc;
int iXOff;
int iYOff;
bool bHeaderRow;
class Caret
{
public:
Caret() :
iRow( -1 ),
iCol( -1 )
{
}
virtual ~Caret()
{
}
void reset()
{
iRow = iCol = -1;
}
bool isSet()
{
if( iRow < 0 || iCol < 0 )
return false;
return true;
}
int iRow;
int iCol;
};
Caret sysCaret;
};
int main( int argc, char *argv[] )
{
Options opt( argc, argv );
if( !opt.sFileIn.isSet() )
{
sio << "No file specified." << sio.nl;
return 1;
}
CsvDoc doc;
{
File fIn( opt.sFileIn, File::Read );
NewLine nlIn( fIn );
Buffer bIn( nlIn );
CsvReader cr( bIn );
while( !fIn.isEos() )
{
StrArray sa = cr.readLine();
if( fIn.isEos() )
break;
doc.addRow( sa );
}
}
initscr();
cbreak();
noecho();
nonl();
intrflush( stdscr, FALSE );
keypad( stdscr, TRUE );
curs_set( 0 );
CsvView view( doc );
view.setHeaderRow( opt.bHeader );
Bu::String sSearchTerm;
bool bRun = true;
do
{
view.render();
int ch = getch();
switch( ch )
{
case 'q':
bRun = false;
break;
case KEY_DOWN:
view.move( 0, 1 );
break;
case KEY_UP:
view.move( 0, -1 );
break;
case KEY_LEFT:
view.move( -1, 0 );
break;
case KEY_RIGHT:
view.move( 1, 0 );
break;
case KEY_NPAGE:
view.pageDown();
break;
case KEY_PPAGE:
view.pageUp();
break;
case KEY_HOME:
view.home();
break;
case KEY_END:
view.end();
break;
case '/':
sSearchTerm = view.prompt("find: ");
view.resetCaret();
view.findNext( sSearchTerm );
break;
case 'n':
view.findNext( sSearchTerm );
break;
case 'h':
view.toggleHeaderRow();
break;
}
} while( bRun );
endwin();
return 0;
}
| [
"mike@xagasoft.com"
] | mike@xagasoft.com |
aa0f599e97c005d2d5e08bbfdb5853738d4a04ba | 63aabb6c10491ec6faa606833b2c778e7ab55dbc | /librdkafka-0.9.2-RC1/src-cpp/rdkafkacpp_int.h | f68714204df44c1e8f6334867c0b343556cbcf63 | [
"LicenseRef-scancode-public-domain",
"MIT",
"ISC",
"BSD-2-Clause",
"BSD-3-Clause",
"Zlib"
] | permissive | BrennoMello/FoT-Stream_Fog_Simulation | 1964c18971a329d67c27c4695c02be88fdfa6892 | 4f4132a65a950a609d664c22e88d69464afc5000 | refs/heads/master | 2020-08-14T16:59:40.305044 | 2019-10-14T02:26:29 | 2019-10-14T02:26:29 | 215,202,759 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 22,360 | h | /*
* librdkafka - Apache Kafka C/C++ library
*
* Copyright (c) 2014 Magnus Edenhill
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include <string>
#include <iostream>
#include <cstring>
#include <stdlib.h>
#include "rdkafkacpp.h"
extern "C" {
#include "../src/rdkafka.h"
}
#ifdef _MSC_VER
typedef int mode_t;
#endif
namespace RdKafka {
void log_cb_trampoline (const rd_kafka_t *rk, int level,
const char *fac, const char *buf);
void error_cb_trampoline (rd_kafka_t *rk, int err, const char *reason,
void *opaque);
void throttle_cb_trampoline (rd_kafka_t *rk, const char *broker_name,
int32_t broker_id, int throttle_time_ms,
void *opaque);
int stats_cb_trampoline (rd_kafka_t *rk, char *json, size_t json_len,
void *opaque);
int socket_cb_trampoline (int domain, int type, int protocol, void *opaque);
int open_cb_trampoline (const char *pathname, int flags, mode_t mode,
void *opaque);
void rebalance_cb_trampoline (rd_kafka_t *rk,
rd_kafka_resp_err_t err,
rd_kafka_topic_partition_list_t *c_partitions,
void *opaque);
void offset_commit_cb_trampoline (rd_kafka_t *rk,
rd_kafka_resp_err_t err,
rd_kafka_topic_partition_list_t *c_offsets,
void *opaque);
rd_kafka_topic_partition_list_t *
partitions_to_c_parts (const std::vector<TopicPartition*> &partitions);
/**
* @brief Update the application provided 'partitions' with info from 'c_parts'
*/
void update_partitions_from_c_parts (std::vector<TopicPartition*> &partitions,
const rd_kafka_topic_partition_list_t *c_parts);
class EventImpl : public Event {
public:
~EventImpl () {};
EventImpl (Type type, ErrorCode err, Severity severity,
const char *fac, const char *str):
type_(type), err_(err), severity_(severity), fac_(fac ? fac : ""),
str_(str), id_(0), throttle_time_(0) {};
EventImpl (Type type):
type_(type), err_(ERR_NO_ERROR), severity_(EVENT_SEVERITY_EMERG),
fac_(""), str_(""), id_(0), throttle_time_(0) {};
Type type () const { return type_; }
ErrorCode err () const { return err_; }
Severity severity () const { return severity_; }
std::string fac () const { return fac_; }
std::string str () const { return str_; }
std::string broker_name () const {
if (type_ == EVENT_THROTTLE)
return str_;
else
return std::string("");
}
int broker_id () const { return id_; }
int throttle_time () const { return throttle_time_; }
Type type_;
ErrorCode err_;
Severity severity_;
std::string fac_;
std::string str_; /* reused for THROTTLE broker_name */
int id_;
int throttle_time_;
};
class MessageImpl : public Message {
public:
~MessageImpl () {
if (free_rkmessage_)
rd_kafka_message_destroy(const_cast<rd_kafka_message_t *>(rkmessage_));
if (key_)
delete key_;
};
MessageImpl (RdKafka::Topic *topic, rd_kafka_message_t *rkmessage):
topic_(topic), rkmessage_(rkmessage), free_rkmessage_(true), key_(NULL) {}
MessageImpl (RdKafka::Topic *topic, rd_kafka_message_t *rkmessage,
bool dofree):
topic_(topic), rkmessage_(rkmessage), free_rkmessage_(dofree), key_(NULL) { }
MessageImpl (RdKafka::Topic *topic, const rd_kafka_message_t *rkmessage):
topic_(topic), rkmessage_(rkmessage), free_rkmessage_(false), key_(NULL) { }
MessageImpl (rd_kafka_message_t *rkmessage):
topic_(NULL), rkmessage_(rkmessage), free_rkmessage_(true), key_(NULL) {
if (rkmessage->rkt) {
/* Possibly NULL */
topic_ = static_cast<Topic *>(rd_kafka_topic_opaque(rkmessage->rkt));
}
}
/* Create errored message */
MessageImpl (RdKafka::Topic *topic, RdKafka::ErrorCode err):
topic_(topic), free_rkmessage_(false), key_(NULL) {
rkmessage_ = &rkmessage_err_;
memset(&rkmessage_err_, 0, sizeof(rkmessage_err_));
rkmessage_err_.err = static_cast<rd_kafka_resp_err_t>(err);
}
std::string errstr() const {
/* FIXME: If there is an error string in payload (for consume_cb)
* it wont be shown since 'payload' is reused for errstr
* and we cant distinguish between consumer and producer.
* For the producer case the payload needs to be the original
* payload pointer. */
const char *es = rd_kafka_err2str(rkmessage_->err);
return std::string(es ? es : "");
}
ErrorCode err () const {
return static_cast<RdKafka::ErrorCode>(rkmessage_->err);
}
Topic *topic () const { return topic_; }
std::string topic_name () const {
if (rkmessage_->rkt)
return rd_kafka_topic_name(rkmessage_->rkt);
else
return "";
}
int32_t partition () const { return rkmessage_->partition; }
void *payload () const { return rkmessage_->payload; }
size_t len () const { return rkmessage_->len; }
const std::string *key () const {
if (key_) {
return key_;
} else if (rkmessage_->key) {
key_ = new std::string(static_cast<char const*>(rkmessage_->key), rkmessage_->key_len);
return key_;
}
return NULL;
}
const void *key_pointer () const { return rkmessage_->key; }
size_t key_len () const { return rkmessage_->key_len; }
int64_t offset () const { return rkmessage_->offset; }
MessageTimestamp timestamp () const {
MessageTimestamp ts;
rd_kafka_timestamp_type_t tstype;
ts.timestamp = rd_kafka_message_timestamp(rkmessage_, &tstype);
ts.type = static_cast<MessageTimestamp::MessageTimestampType>(tstype);
return ts;
}
void *msg_opaque () const { return rkmessage_->_private; };
RdKafka::Topic *topic_;
const rd_kafka_message_t *rkmessage_;
bool free_rkmessage_;
/* For error signalling by the C++ layer the .._err_ message is
* used as a place holder and rkmessage_ is set to point to it. */
rd_kafka_message_t rkmessage_err_;
mutable std::string *key_; /* mutable because it's a cached value */
private:
/* "delete" copy ctor + copy assignment, for safety of key_ */
MessageImpl(MessageImpl const&) /*= delete*/;
MessageImpl& operator=(MessageImpl const&) /*= delete*/;
};
class ConfImpl : public Conf {
public:
ConfImpl()
:dr_cb_(NULL),
event_cb_(NULL),
socket_cb_(NULL),
open_cb_(NULL),
partitioner_cb_(NULL),
partitioner_kp_cb_(NULL),
rebalance_cb_(NULL),
offset_commit_cb_(NULL),
rk_conf_(NULL),
rkt_conf_(NULL){}
~ConfImpl () {
if (rk_conf_)
rd_kafka_conf_destroy(rk_conf_);
else if (rkt_conf_)
rd_kafka_topic_conf_destroy(rkt_conf_);
}
Conf::ConfResult set(const std::string &name,
const std::string &value,
std::string &errstr);
Conf::ConfResult set (const std::string &name, DeliveryReportCb *dr_cb,
std::string &errstr) {
if (name != "dr_cb") {
errstr = "Invalid value type";
return Conf::CONF_INVALID;
}
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
dr_cb_ = dr_cb;
return Conf::CONF_OK;
}
Conf::ConfResult set (const std::string &name, EventCb *event_cb,
std::string &errstr) {
if (name != "event_cb") {
errstr = "Invalid value type";
return Conf::CONF_INVALID;
}
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
event_cb_ = event_cb;
return Conf::CONF_OK;
}
Conf::ConfResult set (const std::string &name, const Conf *topic_conf,
std::string &errstr) {
const ConfImpl *tconf_impl =
dynamic_cast<const RdKafka::ConfImpl *>(topic_conf);
if (name != "default_topic_conf" || !tconf_impl->rkt_conf_) {
errstr = "Invalid value type";
return Conf::CONF_INVALID;
}
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
rd_kafka_conf_set_default_topic_conf(rk_conf_,
rd_kafka_topic_conf_dup(tconf_impl->
rkt_conf_));
return Conf::CONF_OK;
}
Conf::ConfResult set (const std::string &name, PartitionerCb *partitioner_cb,
std::string &errstr) {
if (name != "partitioner_cb") {
errstr = "Invalid value type";
return Conf::CONF_INVALID;
}
if (!rkt_conf_) {
errstr = "Requires RdKafka::Conf::CONF_TOPIC object";
return Conf::CONF_INVALID;
}
partitioner_cb_ = partitioner_cb;
return Conf::CONF_OK;
}
Conf::ConfResult set (const std::string &name,
PartitionerKeyPointerCb *partitioner_kp_cb,
std::string &errstr) {
if (name != "partitioner_key_pointer_cb") {
errstr = "Invalid value type";
return Conf::CONF_INVALID;
}
if (!rkt_conf_) {
errstr = "Requires RdKafka::Conf::CONF_TOPIC object";
return Conf::CONF_INVALID;
}
partitioner_kp_cb_ = partitioner_kp_cb;
return Conf::CONF_OK;
}
Conf::ConfResult set (const std::string &name, SocketCb *socket_cb,
std::string &errstr) {
if (name != "socket_cb") {
errstr = "Invalid value type";
return Conf::CONF_INVALID;
}
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
socket_cb_ = socket_cb;
return Conf::CONF_OK;
}
Conf::ConfResult set (const std::string &name, OpenCb *open_cb,
std::string &errstr) {
if (name != "open_cb") {
errstr = "Invalid value type";
return Conf::CONF_INVALID;
}
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
open_cb_ = open_cb;
return Conf::CONF_OK;
}
Conf::ConfResult set (const std::string &name, RebalanceCb *rebalance_cb,
std::string &errstr) {
if (name != "rebalance_cb") {
errstr = "Invalid value type";
return Conf::CONF_INVALID;
}
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
rebalance_cb_ = rebalance_cb;
return Conf::CONF_OK;
}
Conf::ConfResult set (const std::string &name,
OffsetCommitCb *offset_commit_cb,
std::string &errstr) {
if (name != "offset_commit_cb") {
errstr = "Invalid value type";
return Conf::CONF_INVALID;
}
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
offset_commit_cb_ = offset_commit_cb;
return Conf::CONF_OK;
}
Conf::ConfResult get(const std::string &name, std::string &value) const {
size_t size;
rd_kafka_conf_res_t res = RD_KAFKA_CONF_OK;
if (rk_conf_) {
if ((res = rd_kafka_conf_get(rk_conf_,
name.c_str(), NULL, &size)) != RD_KAFKA_CONF_OK)
return static_cast<Conf::ConfResult>(res);
value.resize(size);
if ((res = rd_kafka_conf_get(rk_conf_, name.c_str(),
(char *)value.c_str(), &size)) != RD_KAFKA_CONF_OK)
return static_cast<Conf::ConfResult>(res);
}
else if (rkt_conf_) {
if ((res = rd_kafka_topic_conf_get(rkt_conf_,
name.c_str(), NULL, &size)) != RD_KAFKA_CONF_OK)
return static_cast<Conf::ConfResult>(res);
value.resize(size);
if ((res = rd_kafka_topic_conf_get(rkt_conf_, name.c_str(),
(char *)value.c_str(), &size)) != RD_KAFKA_CONF_OK)
return static_cast<Conf::ConfResult>(res);
}
return Conf::CONF_OK;
}
std::list<std::string> *dump ();
DeliveryReportCb *dr_cb_;
EventCb *event_cb_;
SocketCb *socket_cb_;
OpenCb *open_cb_;
PartitionerCb *partitioner_cb_;
PartitionerKeyPointerCb *partitioner_kp_cb_;
RebalanceCb *rebalance_cb_;
OffsetCommitCb *offset_commit_cb_;
ConfType conf_type_;
rd_kafka_conf_t *rk_conf_;
rd_kafka_topic_conf_t *rkt_conf_;
};
class HandleImpl : virtual public Handle {
public:
~HandleImpl() {};
HandleImpl () {};
const std::string name () const { return std::string(rd_kafka_name(rk_)); };
const std::string memberid () const {
char *str = rd_kafka_memberid(rk_);
std::string memberid = str ? str : "";
if (str)
rd_kafka_mem_free(rk_, str);
return memberid;
}
int poll (int timeout_ms) { return rd_kafka_poll(rk_, timeout_ms); };
int outq_len () { return rd_kafka_outq_len(rk_); };
void set_common_config (RdKafka::ConfImpl *confimpl);
RdKafka::ErrorCode metadata (bool all_topics,const Topic *only_rkt,
Metadata **metadatap, int timeout_ms);
ErrorCode pause (std::vector<TopicPartition*> &partitions);
ErrorCode resume (std::vector<TopicPartition*> &partitions);
ErrorCode query_watermark_offsets (const std::string &topic,
int32_t partition,
int64_t *low, int64_t *high,
int timeout_ms) {
return static_cast<RdKafka::ErrorCode>(
rd_kafka_query_watermark_offsets(
rk_, topic.c_str(), partition,
low, high, timeout_ms));
}
ErrorCode get_watermark_offsets (const std::string &topic,
int32_t partition,
int64_t *low, int64_t *high) {
return static_cast<RdKafka::ErrorCode>(
rd_kafka_get_watermark_offsets(
rk_, topic.c_str(), partition,
low, high));
}
rd_kafka_t *rk_;
/* All Producer and Consumer callbacks must reside in HandleImpl and
* the opaque provided to rdkafka must be a pointer to HandleImpl, since
* ProducerImpl and ConsumerImpl classes cannot be safely directly cast to
* HandleImpl due to the skewed diamond inheritance. */
EventCb *event_cb_;
SocketCb *socket_cb_;
OpenCb *open_cb_;
DeliveryReportCb *dr_cb_;
PartitionerCb *partitioner_cb_;
PartitionerKeyPointerCb *partitioner_kp_cb_;
RebalanceCb *rebalance_cb_;
OffsetCommitCb *offset_commit_cb_;
};
class TopicImpl : public Topic {
public:
~TopicImpl () {
rd_kafka_topic_destroy(rkt_);
}
const std::string name () const {
return rd_kafka_topic_name(rkt_);
}
bool partition_available (int32_t partition) const {
return !!rd_kafka_topic_partition_available(rkt_, partition);
}
ErrorCode offset_store (int32_t partition, int64_t offset) {
return static_cast<RdKafka::ErrorCode>(
rd_kafka_offset_store(rkt_, partition, offset));
}
static Topic *create (Handle &base, const std::string &topic,
Conf *conf);
rd_kafka_topic_t *rkt_;
PartitionerCb *partitioner_cb_;
PartitionerKeyPointerCb *partitioner_kp_cb_;
};
/**
* Topic and Partition
*/
class TopicPartitionImpl : public TopicPartition {
public:
~TopicPartitionImpl() {};
static TopicPartition *create (const std::string &topic, int partition);
TopicPartitionImpl (const std::string &topic, int partition):
topic_(topic), partition_(partition), offset_(RdKafka::Topic::OFFSET_INVALID),
err_(ERR_NO_ERROR) {}
TopicPartitionImpl (const rd_kafka_topic_partition_t *c_part) {
topic_ = std::string(c_part->topic);
partition_ = c_part->partition;
offset_ = c_part->offset;
err_ = static_cast<ErrorCode>(c_part->err);
// FIXME: metadata
}
int partition () { return partition_; }
const std::string &topic () const { return topic_ ; }
int64_t offset () { return offset_; }
ErrorCode err () { return err_; }
void set_offset (int64_t offset) { offset_ = offset; }
std::ostream& operator<<(std::ostream &ostrm) const {
return ostrm << topic_ << " [" << partition_ << "]";
}
std::string topic_;
int partition_;
int64_t offset_;
ErrorCode err_;
};
class KafkaConsumerImpl : virtual public KafkaConsumer, virtual public HandleImpl {
public:
~KafkaConsumerImpl () {
}
static KafkaConsumer *create (Conf *conf, std::string &errstr);
ErrorCode assignment (std::vector<TopicPartition*> &partitions);
ErrorCode subscription (std::vector<std::string> &topics);
ErrorCode subscribe (const std::vector<std::string> &topics);
ErrorCode unsubscribe ();
ErrorCode assign (const std::vector<TopicPartition*> &partitions);
ErrorCode unassign ();
Message *consume (int timeout_ms);
ErrorCode commitSync () {
return static_cast<ErrorCode>(rd_kafka_commit(rk_, NULL, 0/*sync*/));
}
ErrorCode commitAsync () {
return static_cast<ErrorCode>(rd_kafka_commit(rk_, NULL, 1/*async*/));
}
ErrorCode commitSync (Message *message) {
MessageImpl *msgimpl = dynamic_cast<MessageImpl*>(message);
return static_cast<ErrorCode>(
rd_kafka_commit_message(rk_, msgimpl->rkmessage_, 0/*sync*/));
}
ErrorCode commitAsync (Message *message) {
MessageImpl *msgimpl = dynamic_cast<MessageImpl*>(message);
return static_cast<ErrorCode>(
rd_kafka_commit_message(rk_, msgimpl->rkmessage_,1/*async*/));
}
ErrorCode commitSync (std::vector<TopicPartition*> &offsets) {
rd_kafka_topic_partition_list_t *c_parts =
partitions_to_c_parts(offsets);
rd_kafka_resp_err_t err =
rd_kafka_commit(rk_, c_parts, 0);
if (!err)
update_partitions_from_c_parts(offsets, c_parts);
rd_kafka_topic_partition_list_destroy(c_parts);
return static_cast<ErrorCode>(err);
}
ErrorCode commitAsync (const std::vector<TopicPartition*> &offsets) {
rd_kafka_topic_partition_list_t *c_parts =
partitions_to_c_parts(offsets);
rd_kafka_resp_err_t err =
rd_kafka_commit(rk_, c_parts, 1);
rd_kafka_topic_partition_list_destroy(c_parts);
return static_cast<ErrorCode>(err);
}
ErrorCode committed (std::vector<TopicPartition*> &partitions, int timeout_ms);
ErrorCode position (std::vector<TopicPartition*> &partitions);
ErrorCode close ();
};
class MetadataImpl : public Metadata {
public:
MetadataImpl(const rd_kafka_metadata_t *metadata);
~MetadataImpl();
const std::vector<const BrokerMetadata *> *brokers() const {
return &brokers_;
}
const std::vector<const TopicMetadata *> *topics() const {
return &topics_;
}
const std::string orig_broker_name() const {
return std::string(metadata_->orig_broker_name);
}
int32_t orig_broker_id() const {
return metadata_->orig_broker_id;
}
private:
const rd_kafka_metadata_t *metadata_;
std::vector<const BrokerMetadata *> brokers_;
std::vector<const TopicMetadata *> topics_;
std::string orig_broker_name_;
};
class QueueImpl : public Queue {
public:
QueueImpl () { }
~QueueImpl () {
rd_kafka_queue_destroy(queue_);
}
rd_kafka_queue_t *queue_;
};
class ConsumerImpl : virtual public Consumer, virtual public HandleImpl {
public:
~ConsumerImpl () {
rd_kafka_destroy(rk_); };
static Consumer *create (Conf *conf, std::string &errstr);
ErrorCode start (Topic *topic, int32_t partition, int64_t offset);
ErrorCode start (Topic *topic, int32_t partition, int64_t offset,
Queue *queue);
ErrorCode stop (Topic *topic, int32_t partition);
ErrorCode seek (Topic *topic, int32_t partition, int64_t offset,
int timeout_ms);
Message *consume (Topic *topic, int32_t partition, int timeout_ms);
Message *consume (Queue *queue, int timeout_ms);
int consume_callback (Topic *topic, int32_t partition, int timeout_ms,
ConsumeCb *cb, void *opaque);
int consume_callback (Queue *queue, int timeout_ms,
RdKafka::ConsumeCb *consume_cb, void *opaque);
};
class ProducerImpl : virtual public Producer, virtual public HandleImpl {
public:
~ProducerImpl () { if (rk_) rd_kafka_destroy(rk_); };
ErrorCode produce (Topic *topic, int32_t partition,
int msgflags,
void *payload, size_t len,
const std::string *key,
void *msg_opaque);
ErrorCode produce (Topic *topic, int32_t partition,
int msgflags,
void *payload, size_t len,
const void *key, size_t key_len,
void *msg_opaque);
ErrorCode produce (Topic *topic, int32_t partition,
const std::vector<char> *payload,
const std::vector<char> *key,
void *msg_opaque);
ErrorCode flush (int timeout_ms) {
return static_cast<RdKafka::ErrorCode>(rd_kafka_flush(rk_,
timeout_ms));
}
static Producer *create (Conf *conf, std::string &errstr);
};
}
| [
"ernandopassosjr@gmail.com"
] | ernandopassosjr@gmail.com |
e887ed00c5c5de97b99e76820e4a6cbc1ce9ccb2 | 60cbae3f1fcc46f9d385820dab3745357b2fc0b0 | /include/mesh.h | 57991e127c7ee332339a217dcb1f1d798c5e699d | [] | no_license | Bjornaahr/Graphics-Engine | 56e3fc485be233a2c85dd3d578a33e4e846df1fe | 4a115bf6a7341c188357cc6cadda17da0937f82d | refs/heads/master | 2020-05-19T01:06:38.237144 | 2019-05-03T12:15:19 | 2019-05-03T12:15:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,223 | h | #pragma once
#include <assimp/Importer.hpp>
#include <assimp/scene.h>
#include <vector>
#include <assimp/postprocess.h>
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#include <texture.h>
#include <GFX/gfx.h>
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#include <cameraMovement.h>
struct PointLight {
glm::vec3 position;
glm::vec3 ambient;
glm::vec3 diffuse;
glm::vec3 specular; //Takes 4*sizeof(vec4)
float constant;
float linear;
float quadratic; //Takes 3*sizeof(float)
std::string name;
};
struct DirectionalLight {
glm::vec3 direction;
glm::vec3 ambient;
glm::vec3 diffuse;
glm::vec3 specular;
};
struct Vertex
{
glm::vec3 m_pos;
glm::vec2 m_tex;
glm::vec3 m_normal;
Vertex() {}
Vertex(const glm::vec3& pos, const glm::vec2& tex, const glm::vec3& normal)
{
m_pos = pos;
m_tex = tex;
m_normal = normal;
}
};
class Mesh {
public:
Mesh();
~Mesh();
bool LoadMesh(const std::string& Filename);
glm::mat4 ShadowRenderer();
void Render(CameraMovement* cam, glm::mat4 model, DirectionalLight* dirLight, std::vector<PointLight*> pointLights);
void SetShadowShader(char vertexShader[], char fragmentShader[]);
void SetShader(char shader[]);
private:
bool InitFromScene(const aiScene* pScene, const std::string& Filename);
void InitMesh(const aiMesh* paiMesh,
std::vector<glm::vec3> &Positions,
std::vector<glm::vec3> &Normals,
std::vector<glm::vec2> &TexCoords,
std::vector<unsigned int> &Indices);
bool InitMaterials(const aiScene* pScene, const std::string& Filename);
void Clear();
#define INVALID_MATERIAL 0xFFFFFFFF
#define INDEX_BUFFER 0
#define POS_VB 1
#define NORMAL_VB 2
#define TEXCOORD_VB 3
GLuint m_VAO, uboMatrices, m_lightbuffer;
GLuint m_Buffers[4];
int NR_LIGHTS = 1;
struct MeshEntry {
MeshEntry() {
NumIndices = 0;
BaseVertex = 0;
BaseIndex = 0;
MaterialIndex = INVALID_MATERIAL;
}
~MeshEntry();
unsigned int BaseVertex;
unsigned int BaseIndex;
unsigned int NumIndices;
unsigned int MaterialIndex;
};
std::vector<MeshEntry> m_Entries;
std::vector<Texture*> m_Textures;
Texture* depthMap;
std::vector<PointLight*> m_Lights;
DirectionalLight* m_dirLight;
};
| [
"bjornaah@stud.ntnu.no"
] | bjornaah@stud.ntnu.no |
844f0cef0761bb12a604c1367aa9bf2763b34714 | 9c70733a9e9ae0ca06760532a2d96a196dc90b08 | /C++/ensconce/Worker.cpp | 541780d44b17be6a65d6cc0f1cb48644125123ae | [] | no_license | helloworldzlg/programming_language | f61b44dc148da87586d657f488cb0eeb71253d95 | 89061f58d3fa317b1afea09c33b505a82f199b66 | refs/heads/master | 2020-07-28T20:21:49.609347 | 2017-02-13T03:25:03 | 2017-02-13T03:25:03 | 73,696,081 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 231 | cpp | #include <iostream>
#include "Worker.h"
using namespace std;
Worker::Worker()
{
cout << "Worker create" << endl;
}
Worker::~Worker()
{
cout << "Worker clean" << endl;
}
void Worker::work()
{
cout << "Worker work" << endl;
}
| [
"helloworldzlg@163.com"
] | helloworldzlg@163.com |
1c1fb66b917b3022199cb60097c527e8d7847033 | 79880dc80ce6d31502655f8131c1feffd11dea57 | /src/temperature.cpp | 6a2767c982783cbbc4b9c13e5e86a5e5398dd44b | [
"MIT"
] | permissive | KenMacD/particle-temperature | fd6907fab3124d2aaf2a7af0ca5b964adf4b36f6 | 6bc56f8af8a6956a6452ee6cceb6a838683718fd | refs/heads/master | 2021-01-01T08:13:12.343298 | 2019-08-31T19:22:04 | 2020-02-08T19:25:05 | 239,192,245 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,347 | cpp | #include <Particle.h>
#if 0
SYSTEM_THREAD(ENABLED);
SYSTEM_MODE(AUTOMATIC);
#endif
#include "math.h"
#include <HTU21D.h>
/* Number of measurements to average across (5) */
#define AVG_ACROSS 5
/* How often to measure */
#define MEASURE_EVERY (1 * 1000)
/* How often to report (1) */
#define REPORT_EVERY 5
#if 0
SerialLogHandler logHandler(LOG_LEVEL_INFO, {
// { "comm.protocol", LOG_LEVEL_WARN},
{ "comm.protocol", LOG_LEVEL_INFO},
{ "app", LOG_LEVEL_ALL }
});
#endif
#if 0
SerialLogHandler logHandler(LOG_LEVEL_TRACE);
#endif
SerialLogHandler logHandler(LOG_LEVEL_ALL);
int set_name(String new_name);
int get_name(String _unused);
int do_reset(String _unused);
void publish_priv(const char *event_name, const char *event_data);
void publish_priv_null(const char *event_name);
void processDelay(system_tick_t delayTime);
float calcDewpoint(float tempCelsius, float humidity);
static UDP udp;
static IPAddress remoteIP4(192, 168, 0, 1);
static const uint8_t remoteAddr[33] = {
0x00, 0x64, 0xff, 0x9b,
0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00,
192, 168, 0, 1,
6};
static const IPAddress remoteIP6((const HAL_IPAddress&)remoteAddr);
static int port = 8089;
HTU21D htu = HTU21D();
bool sensor_began = false;
float temps[AVG_ACROSS];
float humis[AVG_ACROSS];
int save_i; // Location to save current measurement
int values_needed; // How many values are still needed
int report_ctr; // track if this is a report loop
uint32_t name; // actually 4 chars
// For accessing values on the console:
static double var_temperature = 0;
static double var_humidity = 0;
static double var_dewpoint = 0;
system_tick_t last_connect;
void setup() {
Particle.function("set_name", set_name);
Particle.function("get_name", get_name);
Particle.function("reset", do_reset);
EEPROM.get(0, name);
last_connect = millis();
save_i = 0;
values_needed = AVG_ACROSS;
report_ctr = 0;
Particle.variable("temperature", var_temperature);
Particle.variable("humidity", var_humidity);
Particle.variable("dewpoint", var_dewpoint);
while (!htu.begin()) {
Log.warn("Not connected to sensor");
publish_priv_null("exception/sensor_needed");
processDelay(5000);
}
udp.begin(0);
}
void loop() {
Particle.process();
float temperature, humidity, dewpoint;
system_tick_t now = millis();
#if 0
if (now > 6 * 60 * 60 * 1000UL) {
System.reset();
}
#endif
if (!Particle.connected()) {
if (now - last_connect > 300 * 1000UL) {
System.reset();
}
} else {
last_connect = now;
}
if (name == 0xffffffff) {
publish_priv_null("exception/name_needed");
processDelay(5000);
return;
}
Serial.printlnf("System version: %s", System.version().c_str());
Serial.printlnf("Ticks per uS: %d", System.ticksPerMicrosecond());
temperature = htu.readTemperature();
if (temperature == HTU21D_I2C_TIMEOUT || temperature == HTU21D_BAD_CRC) {
publish_priv_null("exception/bad-temp");
processDelay(MEASURE_EVERY);
return;
}
humidity = htu.readHumidity();
if (humidity == HTU21D_I2C_TIMEOUT || humidity == HTU21D_BAD_CRC) {
publish_priv_null("exception/bad-humidity");
processDelay(MEASURE_EVERY);
return;
}
// Update the humidity based on the RH + (-0.15 * (25 - T))
humidity += -0.15 * (25 - temperature);
// Save the values:
temps[save_i] = temperature;
humis[save_i] = humidity;
save_i = (save_i + 1) % AVG_ACROSS;
report_ctr = (report_ctr + 1) % REPORT_EVERY;
if (values_needed > 1) {
values_needed--;
processDelay(MEASURE_EVERY);
return;
}
if (report_ctr == 0) {
// Report the current values:
temperature = 0;
humidity = 0;
for (int i = 0; i < AVG_ACROSS; i++) {
temperature += temps[i];
humidity += humis[i];
}
temperature /= AVG_ACROSS;
humidity /= AVG_ACROSS;
dewpoint = calcDewpoint(temperature, humidity);
var_temperature = temperature;
var_humidity = humidity;
var_dewpoint = dewpoint;
// snprintf(buf, sizeof(buf), "%.01f,%.01f,%.01f", temperature, humidity, dewpoint);
//Particle.publish("temperature", buf, PRIVATE);
char data[64];
snprintf(data, sizeof(data), "%.02f", temperature);
char event_name[64];
snprintf(event_name, sizeof(event_name), "temperature/%.4s/is", (char *)&name);
publish_priv(event_name, data);
// Mesh.publish(event_name, data);
char buffer[128];
snprintf(buffer, sizeof(buffer), "thermostat,zone=%.4s "
"temperature=%.2f,humidity=%.2f,dewpoint=%.2f",
(char *)&name, temperature, humidity, dewpoint);
Serial.println(buffer);
/* Handle both a gateway-xenon where the external server must be
* accessed using the IPv4 address, and a mesh-xenon where the
* IPv6 version is required.
*/
if(network_ready(NETWORK_INTERFACE_ALL, NETWORK_READY_TYPE_IPV4, nullptr)) {
udp.sendPacket(buffer, strlen(buffer), remoteIP4, port) < 0;
}
else if (network_ready(NETWORK_INTERFACE_ALL, NETWORK_READY_TYPE_IPV6, nullptr)) {
udp.sendPacket(buffer, strlen(buffer), remoteIP6, port) < 0;
} else {
Particle.publish("thermostat/exception/UDPNoNetwork", buffer, PRIVATE);
}
}
processDelay(MEASURE_EVERY);
return;
}
void publish_priv(const char *event_name, const char *event_data) {
if (Particle.connected()) {
Particle.publish(event_name, event_data, PRIVATE);
}
}
void publish_priv_null(const char *event_name) {
if (Particle.connected()) {
Particle.publish(event_name, PRIVATE);
}
}
int get_name(String _unused) {
char name_buf[5];
snprintf(name_buf, sizeof(name_buf), "%.4s", (char *)&name);
Log.info("get_name: Name: %s", name_buf);
Particle.publish("my-name", name_buf, PRIVATE);
return 0;
}
int set_name(String new_name) {
if (new_name.length() != sizeof(name)) {
return -1;
}
uint32_t *name_int = (uint32_t *)new_name.c_str();
name = *name_int;
EEPROM.put(0, name);
get_name(String());
return 0;
}
int do_reset(String _unused) {
System.reset();
return 0;
}
void processDelay(system_tick_t delayTime)
{
system_tick_t start = millis();
while (millis()-start < delayTime) {
Particle.process();
}
}
// https://github.com/ADiea/libDHT/blob/master/DHT.cpp
float calcDewpoint(float tempCelsius, float humidity) {
float result;
float percentHumidity = humidity * 0.01;
result = 6.107799961 +
tempCelsius * (0.4436518521 +
tempCelsius * (0.01428945805 +
tempCelsius * (2.650648471e-4 +
tempCelsius * (3.031240396e-6 +
tempCelsius * (2.034080948e-8 +
tempCelsius * 6.136820929e-11)))));
//Convert from mBar to kPa (1mBar = 0.1 kPa) and divide by 0.61078 constant
//Determine vapor pressure (takes the RH into account)
result = percentHumidity * result / (10 * 0.61078);
result = log(result);
result = (241.88 * result) / (17.558 - result);
return result;
}
| [
"kenny.macdermid@gmail.com"
] | kenny.macdermid@gmail.com |
010dac85a2812bd8721141a86859856df0f3fc5b | 5ec06dab1409d790496ce082dacb321392b32fe9 | /clients/cpp-restbed-server/generated/model/OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo.cpp | 9b6e223de1c03e9f450c25992fab28fc387aceb7 | [
"Apache-2.0"
] | permissive | shinesolutions/swagger-aem-osgi | e9d2385f44bee70e5bbdc0d577e99a9f2525266f | c2f6e076971d2592c1cbd3f70695c679e807396b | refs/heads/master | 2022-10-29T13:07:40.422092 | 2021-04-09T07:46:03 | 2021-04-09T07:46:03 | 190,217,155 | 3 | 3 | Apache-2.0 | 2022-10-05T03:26:20 | 2019-06-04T14:23:28 | null | UTF-8 | C++ | false | false | 2,762 | cpp | /**
* Adobe Experience Manager OSGI config (AEM) API
* Swagger AEM OSGI is an OpenAPI specification for Adobe Experience Manager (AEM) OSGI Configurations API
*
* OpenAPI spec version: 1.0.0-pre.0
* Contact: opensource@shinesolutions.com
*
* NOTE: This class is auto generated by OpenAPI-Generator 3.2.1-SNAPSHOT.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
#include "OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo.h"
#include <string>
#include <sstream>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
using boost::property_tree::ptree;
using boost::property_tree::read_json;
using boost::property_tree::write_json;
namespace org {
namespace openapitools {
namespace server {
namespace model {
OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo::OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo()
{
m_Pid = "";
m_Title = "";
m_Description = "";
}
OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo::~OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo()
{
}
std::string OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo::toJsonString()
{
std::stringstream ss;
ptree pt;
pt.put("Pid", m_Pid);
pt.put("Title", m_Title);
pt.put("Description", m_Description);
write_json(ss, pt, false);
return ss.str();
}
void OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo::fromJsonString(std::string const& jsonString)
{
std::stringstream ss(jsonString);
ptree pt;
read_json(ss,pt);
m_Pid = pt.get("Pid", "");
m_Title = pt.get("Title", "");
m_Description = pt.get("Description", "");
}
std::string OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo::getPid() const
{
return m_Pid;
}
void OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo::setPid(std::string value)
{
m_Pid = value;
}
std::string OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo::getTitle() const
{
return m_Title;
}
void OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo::setTitle(std::string value)
{
m_Title = value;
}
std::string OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo::getDescription() const
{
return m_Description;
}
void OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo::setDescription(std::string value)
{
m_Description = value;
}
std::shared_ptr<OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckProperties> OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo::getProperties() const
{
return m_Properties;
}
void OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo::setProperties(std::shared_ptr<OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckProperties> value)
{
m_Properties = value;
}
}
}
}
}
| [
"cliffano@gmail.com"
] | cliffano@gmail.com |
ae38a013596f9d6c11bd5e6dfdae4fc038d4b872 | 0406821f59a5a524ba2fa87fd8a38e4692a8bf0d | /src/com/devsda/gargantua/asignments/2/22.cpp | 3c73bbdfa5eb3dd0547c43b397b1eba51c31eba9 | [
"MIT"
] | permissive | devvsda/gargantua | bedc3fa2b8d4e9c5dfb6e28546bafd2c367a611c | 9e41f87d5c73920611bafdfa15047639cb322809 | refs/heads/master | 2021-08-30T13:45:12.457326 | 2017-12-18T06:23:13 | 2017-12-18T06:23:13 | 114,602,637 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 621 | cpp | #include<iostream>
using namespace std;
bool deleteHelper(trie_node_t *pNode, char key[], int level, int len) {
if(pNode == NULL) return false;
if(level == len) {
if(pNode->value) {
pNode->value = 0;
if(isItFree(pNode)) return true;
return false;
}
}
else {
int index = key[level];
if( deleteHelper(pNode->children[index], key, level + 1, len)) {
free(pNode->children[index]);
return ( isItFree(pNode) && !leafNode(pNode) );
}
}
return false;
}
main() {
return 0;
}
| [
"hijhamb@Hiteshs-MacBook-Pro.local"
] | hijhamb@Hiteshs-MacBook-Pro.local |
5d095a0efa69e5f4980401f6833a2dd5fbedbbe1 | 67e5bce19ef8bbd2ea7a9d3638661c0faa7cb0f4 | /src/gfx/Triangle.h | 4d9f84ee7586d9ce49f54629a073a253fad7a57c | [] | no_license | ChaseCarthen/Didgeridoo | e43f36959a7568ffef7a3af9434418b1e2a8a601 | 39a0bb00b34c19aab1c60d5cd4ef67af0273d633 | refs/heads/master | 2020-12-24T19:46:51.726313 | 2016-04-18T18:48:43 | 2016-04-18T18:48:43 | 56,175,384 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,742 | h | /*
Filename : Triangle.h
Author : Cody White
Version : 1.0
Purpose : Class to define a triangle.
Change List:
- 06/18/2009 - Created (Cody White)
*/
#pragma once
#include <Vector.h>
#include <Material.h>
#include <vector>
namespace gfx
{
/**
* Class to contain one triangle.
*/
template <typename T>
class Triangle
{
public:
/**
* Default constructor.
*/
Triangle (void)
{
m_vertices[0].zero ();
m_vertices[1].zero ();
m_vertices[2].zero ();
m_texture_coords[0].zero ();
m_texture_coords[1].zero ();
m_texture_coords[2].zero ();
m_normals[0].zero ();
m_normals[1].zero ();
m_normals[2].zero ();
m_tangents[0].zero ();
m_tangents[1].zero ();
m_tangents[2].zero ();
m_has_split = false;
m_material = NULL;
}
/**
* Destructor.
*/
~Triangle (void)
{
}
/**
* Copy Constructor.
* @param rhs Triangle to copy.
*/
Triangle (const Triangle &rhs)
{
*this = rhs;
}
/**
* Operator =.
* @param rhs Triangle to set this one equal to.
*/
Triangle & operator= (const Triangle &rhs)
{
if (this != &rhs)
{
m_vertices[0] = rhs.m_vertices[0];
m_vertices[1] = rhs.m_vertices[1];
m_vertices[2] = rhs.m_vertices[2];
m_texture_coords[0] = rhs.m_texture_coords[0];
m_texture_coords[1] = rhs.m_texture_coords[1];
m_texture_coords[2] = rhs.m_texture_coords[2];
m_tangents[0] = rhs.m_tangents[0];
m_tangents[1] = rhs.m_tangents[1];
m_tangents[2] = rhs.m_tangents[2];
m_normals[0] = rhs.m_normals[0];
m_normals[1] = rhs.m_normals[1];
m_normals[2] = rhs.m_normals[2];
m_material = rhs.m_material;
m_has_split = rhs.m_has_split;
m_b = rhs.m_b;
m_c = rhs.m_c;
m_N = rhs.m_N;
m_barycentric_divide = rhs.m_barycentric_divide;
m_u = rhs.m_u;
m_v = rhs.m_v;
}
return *this;
}
/**
* Operator[]
* @param i Index of vertex to return.
*/
inline math::Vector <T, 3> & operator[] (int i)
{
return m_vertices[i];
}
/**
* Calculate an interpolated normal for a hit point on this triangle.
* @param hit_point The hit point on this triangle.
*/
math::Vector <T, 3> interpolate (math::Vector <T, 3> hit_point)
{
math::Vector <T, 3> normal = math::normalize (math::cross (m_vertices[1] - m_vertices[0], m_vertices[2] - m_vertices[0]));
T whole_area = math::dot (normal, math::cross (m_vertices[1] - m_vertices[0], m_vertices[2] - m_vertices[0]));
// Compute first barycentric coordinate
T area_p12 = math::dot (normal, math::cross (m_vertices[1] - hit_point, m_vertices[2] - hit_point));
T a = area_p12 / whole_area;
// Compute the second barycentric coordinate
T area_p20 = math::dot (normal, math::cross (m_vertices[2] - hit_point, m_vertices[0] - hit_point));
T b = area_p20 / whole_area;
// Compute the last barycentric coordinate (a + b + c = 0)
T c = (T)1 - a - b;
return math::normalize (m_normals[0] * a + m_normals[1] * b + m_normals[2] * c);
}
/**
* Check for a ray collision.
* @param ray_origin Origin of the incoming ray.
* @param ray_direction Direction of the incoming ray.
* @param time Time of intersection.
*/
bool checkRayIntersection (math::Vector <T, 3> &ray_origin, math::Vector <T, 3> &ray_direction, T &time)
{
time = -math::dot (ray_origin - m_vertices[0], m_N) / math::dot (ray_direction, m_N);
if (time < 0.0000001)
{
return false;
}
math::Vector <T, 3> H;
H[m_u] = ray_origin[m_u] + time * ray_direction[m_u] - m_vertices[0][m_u];
H[m_v] = ray_origin[m_v] + time * ray_direction[m_v] - m_vertices[0][m_v];
T beta = (m_b[m_u] * H[m_v] - m_b[m_v] * H[m_u]) * m_barycentric_divide;
if (beta < 0)
{
return false;
}
T gamma = (m_c[m_v] * H[m_u] - m_c[m_u] * H[m_v]) * m_barycentric_divide;
if (gamma < 0)
{
return false;
}
if (beta + gamma > 1)
{
return false;
}
return true;
}
/**
* Calculate the tangent at each of the vertices. This is used for eye-space conversion.
*/
void calcTangents (void)
{
m_tangents[0] = getTangent (m_vertices[0], m_vertices[1], m_vertices[2], m_texture_coords[0], m_texture_coords[1], m_texture_coords[2]);
m_tangents[1] = getTangent (m_vertices[1], m_vertices[2], m_vertices[0], m_texture_coords[1], m_texture_coords[2], m_texture_coords[0]);
m_tangents[2] = getTangent (m_vertices[2], m_vertices[0], m_vertices[1], m_texture_coords[2], m_texture_coords[0], m_texture_coords[1]);
}
/**
* Initialize intersection.
*/
void initializeIntersection (void)
{
m_b = m_vertices[2] - m_vertices[0];
m_c = m_vertices[1] - m_vertices[0];
m_N = math::cross (m_c, m_b);
int k;
if (fabs (m_N.x ()) > fabs (m_N.y ()))
{
if (fabs (m_N.x ()) > fabs (m_N.z ()))
{
k = 0;
}
else
{
k = 2;
}
}
else
{
if (fabs (m_N.y ()) > fabs (m_N.z ()))
{
k = 1;
}
else
{
k = 2;
}
}
int mod[] = {0, 1, 2, 0, 1};
m_u = mod[k + 1];
m_v = mod[k + 2];
m_barycentric_divide = 1.0 / (m_b[m_u] * m_c[m_v] - m_b[m_v] * m_c[m_u]);
}
// Member variables
math::Vector <T, 3> m_vertices [3]; // Vertices of this triangle.
math::Vector <T, 2> m_texture_coords [3]; // Texture coordinates that correspond to the vertices of the triangle.
math::Vector <T, 4> m_tangents [3]; // Tangent vectors at each vertex.
math::Vector <T, 3> m_normals [3]; // Normals of this triangle at each vertex.
gfx::Material *m_material; // Pointer to a material.
bool m_has_split; // Flag for determining if this triangle has tesselated data.
std::vector <Triangle<T> *> m_tesselations; // The tesselated version of this triangle.
// Intersection variables.
math::Vector <T, 3> m_b, m_c, m_N;
T m_barycentric_divide;
T m_u, m_v;
private:
/**
* Compute the tangent based on the passed in vertices and texture coordinates.
* @param v1 Vertex 1 of the triangle.
* @param v2 Vertex 2 of the triangle.
* @param v3 Vertex 3 of the triangle.
* @param t1 Texture coordinate 1 that corresponds to v1.
* @param t2 Texture coordinate 2 that corresponds to v2.
* @param t3 Texture coordinate 3 that corresponds to v3.
*/
math::Vector <T, 4> getTangent (math::Vector <T, 3> &v1, math::Vector <T, 3> &v2, math::Vector <T, 3> &v3, math::Vector <T, 2> &t1, math::Vector <T, 2> &t2, math::Vector <T, 2> &t3)
{
T det = (T)1 / (((t2[0] - t1[0]) * (t3[1] - t1[1])) - ((t3[0] - t1[0]) * (t2[1] - t1[1])));
math::Vector <T, 3> t, b;
math::Vector <T, 3> edge1 = v2 - v1;
math::Vector <T, 3> edge2 = v3 - v1;
t = ((edge1 * (t3[1] - t1[1])) - (edge2 * (t2[1] - t1[1]))) * det;
b = ((edge1 * (-(t3[0] - t1[0]))) + (edge2 * (t2[0] - t1[0]))) * det;
t = normalize (t);
b = normalize (b);
math::Vector <T, 3> normal = cross (t, b);
// Calculate the handedness of the local tangent space (right or left) which is
// dependent upon the bitangent. The bitangent vector is the cross product between
// the triangle face normal and the tangent vector. The resulting bitangent vector
// should be the same as the bitangend vector calculated from the set of equations above.
// If the point in different directions, then the bitangent that will be calculated in the
// shader needs to be inverted to perform correct lighting.
math::Vector <T, 3> bitangent = cross (normal, t);
T handedness = dot (bitangent, b) < (T)0 ? (T)1 : -(T)1;
math::vec4f tangent;
tangent[0] = t[0];
tangent[1] = t[1];
tangent[2] = t[2];
tangent[3] = handedness;
return tangent;
}
};
}
| [
"chasec2331@gmail.com"
] | chasec2331@gmail.com |
cac253aebaf975310c67054a3d37aee135be8aa4 | 2ca3ee150901686205260335630a2906269d3629 | /deps/v8_inspector/platform/inspector_protocol/ValueConversions.h | b82f04f588f7f1e7fe070fd1a7922b54c17e6716 | [
"LicenseRef-scancode-openssl",
"Zlib",
"NTP",
"NAIST-2003",
"LicenseRef-scancode-unicode",
"LicenseRef-scancode-unknown-license-reference",
"Artistic-2.0",
"ISC",
"MIT",
"BSD-3-Clause",
"ICU",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause"
] | permissive | BazisSoft/node-delphi | d54b808186501c3a6bffe5be683735bea33d6651 | 2e53d8a6ba95746d23e39d3e265b1e5eefc055e2 | refs/heads/dev | 2021-01-18T02:31:11.607356 | 2017-07-05T08:01:55 | 2017-07-05T08:01:55 | 63,846,061 | 15 | 9 | null | 2017-07-05T08:01:56 | 2016-07-21T07:13:53 | JavaScript | UTF-8 | C++ | false | false | 4,421 | h | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ValueConversions_h
#define ValueConversions_h
#include "platform/inspector_protocol/ErrorSupport.h"
#include "platform/inspector_protocol/Platform.h"
#include "platform/inspector_protocol/String16.h"
#include "platform/inspector_protocol/Values.h"
namespace blink {
namespace protocol {
PLATFORM_EXPORT std::unique_ptr<protocol::Value> toValue(int value);
PLATFORM_EXPORT std::unique_ptr<protocol::Value> toValue(double value);
PLATFORM_EXPORT std::unique_ptr<protocol::Value> toValue(bool value);
PLATFORM_EXPORT std::unique_ptr<protocol::Value> toValue(const String16& param);
PLATFORM_EXPORT std::unique_ptr<protocol::Value> toValue(const String& param);
PLATFORM_EXPORT std::unique_ptr<protocol::Value> toValue(protocol::Value* param);
PLATFORM_EXPORT std::unique_ptr<protocol::Value> toValue(protocol::DictionaryValue* param);
PLATFORM_EXPORT std::unique_ptr<protocol::Value> toValue(protocol::ListValue* param);
template<typename T> std::unique_ptr<protocol::Value> toValue(T* param)
{
return param->serialize();
}
template<typename T> std::unique_ptr<protocol::Value> toValue(const std::unique_ptr<T>& param)
{
return toValue(param.get());
}
template<typename T>
struct FromValue {
static std::unique_ptr<T> parse(protocol::Value* value, ErrorSupport* errors)
{
return T::parse(value, errors);
}
};
template<>
struct FromValue<bool> {
static bool parse(protocol::Value* value, ErrorSupport* errors)
{
bool result = false;
bool success = value ? value->asBoolean(&result) : false;
if (!success)
errors->addError("boolean value expected");
return result;
}
};
template<>
struct FromValue<int> {
static int parse(protocol::Value* value, ErrorSupport* errors)
{
int result = 0;
bool success = value ? value->asNumber(&result) : false;
if (!success)
errors->addError("integer value expected");
return result;
}
};
template<>
struct FromValue<double> {
static double parse(protocol::Value* value, ErrorSupport* errors)
{
double result = 0;
bool success = value ? value->asNumber(&result) : false;
if (!success)
errors->addError("double value expected");
return result;
}
};
template<>
struct FromValue<String> {
static String parse(protocol::Value* value, ErrorSupport* errors)
{
String16 result;
bool success = value ? value->asString(&result) : false;
if (!success)
errors->addError("string value expected");
return result;
}
};
template<>
struct FromValue<String16> {
static String16 parse(protocol::Value* value, ErrorSupport* errors)
{
String16 result;
bool success = value ? value->asString(&result) : false;
if (!success)
errors->addError("string value expected");
return result;
}
};
template<>
struct FromValue<Value> {
static std::unique_ptr<Value> parse(protocol::Value* value, ErrorSupport* errors)
{
bool success = !!value;
if (!success)
errors->addError("value expected");
return value->clone();
}
};
template<>
struct FromValue<DictionaryValue> {
static std::unique_ptr<DictionaryValue> parse(protocol::Value* value, ErrorSupport* errors)
{
bool success = value && value->type() == protocol::Value::TypeObject;
if (!success)
errors->addError("object expected");
return DictionaryValue::cast(value->clone());
}
};
template<>
struct FromValue<ListValue> {
static std::unique_ptr<ListValue> parse(protocol::Value* value, ErrorSupport* errors)
{
bool success = value && value->type() == protocol::Value::TypeArray;
if (!success)
errors->addError("list expected");
return ListValue::cast(value->clone());
}
};
template<typename T> class Array;
template<typename T>
struct FromValue<protocol::Array<T>> {
static std::unique_ptr<protocol::Array<T>> parse(protocol::Value* value, ErrorSupport* errors)
{
return protocol::Array<T>::parse(value, errors);
}
};
} // namespace platform
} // namespace blink
#endif // !defined(ValueConversions_h)
| [
"ofrobots@google.com"
] | ofrobots@google.com |
da0bdb0d42ea6f0b91316449adeb8c9a106c246c | c246519c0cd76463e23a87582860bc5e9d4908de | /STM32H735DK/TGFX_SO/TouchGFX/generated/images/src/image_knob.cpp | 4e68c0a752730c8f0b74587783d6938df9321bcd | [] | no_license | HB9GZE/Pub_DIY_HAM_Radio_Transceiver | 07c50c145aefd614980980b981fdc215f39d7bdb | 37a17b6e2f15df058ef81ea281a1f94b7db7c2c4 | refs/heads/master | 2023-04-23T19:00:14.383024 | 2021-05-11T11:54:06 | 2021-05-11T11:54:06 | 366,364,285 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 593,311 | cpp | // 4.16.0 0xaed679e2 D2 AY R0 FARGB8888 U888 N0 SExtFlashSection
// Generated by imageconverter. Please, do not edit!
#include <touchgfx/hal/Config.hpp>
LOCATION_PRAGMA("ExtFlashSection")
KEEP extern const unsigned char image_knob[] LOCATION_ATTRIBUTE("ExtFlashSection") = // 154x152 ARGB8888 pixels.
{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x96, 0x4b, 0x2d, 0x11,
0x8f, 0x53, 0x2e, 0x37, 0x8e, 0x52, 0x2e, 0x5d, 0x8e, 0x51, 0x2e, 0x83,
0x8f, 0x51, 0x2e, 0xa0, 0x8f, 0x51, 0x2f, 0xac, 0x8f, 0x52, 0x2e, 0xb9,
0x8e, 0x52, 0x2e, 0xc6, 0x8f, 0x52, 0x2f, 0xd2, 0x8e, 0x52, 0x2e, 0xdf,
0x8e, 0x52, 0x2e, 0xec, 0x8e, 0x51, 0x2f, 0xf9, 0x8e, 0x51, 0x2f, 0xf9,
0x8e, 0x52, 0x2e, 0xec, 0x8e, 0x52, 0x2e, 0xdf, 0x8f, 0x52, 0x2f, 0xd2,
0x8e, 0x52, 0x2e, 0xc6, 0x8f, 0x52, 0x2e, 0xb9, 0x8f, 0x51, 0x2f, 0xac,
0x8f, 0x51, 0x2e, 0xa0, 0x8e, 0x51, 0x2e, 0x83, 0x8e, 0x52, 0x2e, 0x5d,
0x8f, 0x53, 0x2e, 0x37, 0x87, 0x4b, 0x2d, 0x11, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8f, 0x53, 0x2e, 0x37, 0x8f, 0x52, 0x2f, 0x75,
0x8f, 0x52, 0x2f, 0x9b, 0x8e, 0x51, 0x2f, 0xc1, 0x8e, 0x51, 0x2f, 0xe7,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x9f, 0x5c, 0x35, 0xff, 0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff,
0xc1, 0x70, 0x43, 0xff, 0xb0, 0x66, 0x3c, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x51, 0x2f, 0xe7, 0x8e, 0x51, 0x2e, 0xc1, 0x8f, 0x52, 0x2f, 0x9b,
0x8f, 0x52, 0x2f, 0x75, 0x8f, 0x53, 0x2e, 0x37, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x91, 0x50, 0x2d, 0x33, 0x8f, 0x52, 0x2e, 0x72,
0x8f, 0x52, 0x2e, 0xb0, 0x8e, 0x52, 0x2f, 0xf0, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8a, 0x54, 0x38, 0xff, 0x7d, 0x5b, 0x54, 0xff,
0x6f, 0x61, 0x71, 0xff, 0x61, 0x68, 0x8d, 0xff, 0x54, 0x6d, 0xa6, 0xff,
0x4f, 0x6f, 0xaf, 0xff, 0x4b, 0x71, 0xb9, 0xff, 0x46, 0x73, 0xc3, 0xff,
0x41, 0x75, 0xcb, 0xff, 0x6f, 0x75, 0x9e, 0xff, 0xc4, 0x72, 0x44, 0xff,
0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff, 0x8f, 0x75, 0x7e, 0xff,
0x3d, 0x77, 0xd5, 0xff, 0x41, 0x75, 0xcb, 0xff, 0x46, 0x73, 0xc3, 0xff,
0x4b, 0x71, 0xb9, 0xff, 0x4f, 0x6f, 0xaf, 0xff, 0x54, 0x6d, 0xa6, 0xff,
0x61, 0x68, 0x8d, 0xff, 0x6f, 0x61, 0x71, 0xff, 0x7d, 0x5b, 0x54, 0xff,
0x8a, 0x54, 0x38, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x52, 0x2e, 0xef, 0x8e, 0x52, 0x2f, 0xb1, 0x8f, 0x52, 0x2e, 0x72,
0x91, 0x50, 0x2d, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8d, 0x54, 0x38, 0x09, 0x8e, 0x53, 0x2d, 0x5f,
0x8e, 0x52, 0x2f, 0xad, 0x8e, 0x52, 0x2e, 0xec, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x80, 0x58, 0x4c, 0xff, 0x6a, 0x63, 0x7b, 0xff, 0x58, 0x6c, 0x9e, 0xff,
0x4a, 0x72, 0xbb, 0xff, 0x3b, 0x77, 0xd6, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x68, 0x79, 0xad, 0xff,
0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff,
0x8c, 0x76, 0x83, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x3b, 0x78, 0xd7, 0xff,
0x4a, 0x72, 0xbb, 0xff, 0x58, 0x6c, 0x9e, 0xff, 0x6a, 0x63, 0x7b, 0xff,
0x80, 0x58, 0x4c, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2e, 0xec,
0x8e, 0x52, 0x2f, 0xad, 0x8e, 0x53, 0x2d, 0x5f, 0x8d, 0x54, 0x38, 0x09,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8e, 0x51, 0x2f, 0x4b, 0x8f, 0x51, 0x2f, 0xa2, 0x8e, 0x52, 0x2f, 0xf8,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x82, 0x59, 0x49, 0xff, 0x6b, 0x62, 0x78, 0xff, 0x54, 0x6d, 0xa7, 0xff,
0x3c, 0x78, 0xd6, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x71, 0x78, 0xa3, 0xff, 0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff,
0xc4, 0x72, 0x44, 0xff, 0x84, 0x77, 0x8e, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x3c, 0x78, 0xd6, 0xff,
0x54, 0x6d, 0xa7, 0xff, 0x6b, 0x62, 0x78, 0xff, 0x82, 0x59, 0x49, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x52, 0x2f, 0xf8, 0x8f, 0x51, 0x2f, 0xa2, 0x8e, 0x51, 0x2f, 0x4b,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8f, 0x53, 0x2e, 0x37, 0x8d, 0x52, 0x2e, 0x8e,
0x8d, 0x52, 0x30, 0xe6, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x76, 0x5d, 0x5f, 0xff, 0x57, 0x6c, 0xa0, 0xff,
0x3d, 0x77, 0xd2, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x71, 0x78, 0xa3, 0xff, 0xc4, 0x72, 0x44, 0xff,
0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff, 0x84, 0x77, 0x8e, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x3d, 0x77, 0xd2, 0xff, 0x57, 0x6c, 0xa0, 0xff,
0x77, 0x5d, 0x5f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2e, 0xe4, 0x8d, 0x52, 0x2e, 0x8e,
0x8f, 0x53, 0x2e, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x90, 0x51, 0x2f, 0x51, 0x8e, 0x51, 0x2e, 0xbf, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x7f, 0x59, 0x51, 0xff,
0x5e, 0x69, 0x92, 0xff, 0x3e, 0x77, 0xd3, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x71, 0x78, 0xa3, 0xff,
0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff,
0x84, 0x77, 0x8e, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x3e, 0x77, 0xd3, 0xff,
0x5e, 0x69, 0x92, 0xff, 0x7f, 0x59, 0x51, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2e, 0xbf,
0x8d, 0x51, 0x2f, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x52, 0x2e, 0x5d,
0x8e, 0x52, 0x2e, 0xca, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x87, 0x55, 0x3d, 0xfe, 0x66, 0x65, 0x82, 0xff, 0x46, 0x73, 0xc2, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x71, 0x78, 0xa3, 0xff, 0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff,
0xc4, 0x72, 0x44, 0xff, 0x84, 0x77, 0x8e, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x46, 0x73, 0xc2, 0xff, 0x66, 0x65, 0x82, 0xff, 0x87, 0x55, 0x3f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2e, 0xca,
0x8e, 0x52, 0x2e, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8e, 0x50, 0x2e, 0x68, 0x8f, 0x52, 0x2e, 0xd5,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x83, 0x57, 0x48, 0xff,
0x5a, 0x6a, 0x99, 0xff, 0x32, 0x7d, 0xeb, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x7b, 0x78, 0x99, 0xff, 0xc4, 0x72, 0x44, 0xff,
0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff, 0x7b, 0x78, 0x99, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x32, 0x7d, 0xeb, 0xff, 0x5a, 0x6a, 0x99, 0xff, 0x83, 0x57, 0x48, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2e, 0xd5,
0x8e, 0x50, 0x2e, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8f, 0x51, 0x2e, 0x5e, 0x8e, 0x51, 0x2e, 0xe1, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x7e, 0x5a, 0x50, 0xff, 0x57, 0x6c, 0xa2, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x7b, 0x78, 0x99, 0xff,
0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff,
0x7b, 0x78, 0x99, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x57, 0x6c, 0xa2, 0xff, 0x7e, 0x5a, 0x50, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2e, 0xe1,
0x8f, 0x51, 0x2e, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x91, 0x50, 0x2d, 0x33,
0x8e, 0x51, 0x2e, 0xb6, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x7b, 0x5b, 0x58, 0xff, 0x53, 0x6e, 0xaa, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x84, 0x77, 0x8e, 0xff, 0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff,
0xc4, 0x72, 0x44, 0xff, 0x71, 0x78, 0xa3, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x53, 0x6e, 0xaa, 0xff, 0x7b, 0x5b, 0x58, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2e, 0xb6,
0x91, 0x50, 0x2d, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x7f, 0x3f, 0x1f, 0x08, 0x90, 0x51, 0x2e, 0x8a,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x87, 0x55, 0x3e, 0xfe,
0x56, 0x6c, 0xa1, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x84, 0x77, 0x8e, 0xff, 0xc4, 0x72, 0x44, 0xff,
0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff, 0x71, 0x78, 0xa3, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x56, 0x6c, 0xa1, 0xff, 0x87, 0x56, 0x3f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x90, 0x51, 0x2e, 0x8a,
0x7f, 0x3f, 0x1f, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8e, 0x53, 0x2d, 0x5f, 0x8f, 0x52, 0x2f, 0xe2,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x66, 0x65, 0x81, 0xff,
0x36, 0x7b, 0xe3, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x8c, 0x76, 0x83, 0xff,
0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff,
0x68, 0x79, 0xad, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x36, 0x7a, 0xe3, 0xff, 0x66, 0x65, 0x81, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xe2, 0x8e, 0x53, 0x2d, 0x5f,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x88, 0x55, 0x33, 0x0f, 0x8e, 0x51, 0x2f, 0xa6, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x77, 0x5d, 0x60, 0xff, 0x46, 0x74, 0xc2, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x8c, 0x76, 0x83, 0xff, 0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff,
0xc4, 0x72, 0x44, 0xff, 0x68, 0x79, 0xad, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x46, 0x73, 0xc2, 0xff, 0x77, 0x5d, 0x60, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2f, 0xa6, 0x88, 0x55, 0x33, 0x0f,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8c, 0x51, 0x30, 0x45, 0x8e, 0x52, 0x2f, 0xdc, 0x8f, 0x52, 0x2f, 0xff,
0x8a, 0x54, 0x38, 0xfe, 0x57, 0x6c, 0xa2, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x8c, 0x76, 0x83, 0xff, 0xc4, 0x72, 0x44, 0xff,
0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff, 0x68, 0x79, 0xad, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x57, 0x6c, 0xa2, 0xff, 0x8a, 0x54, 0x39, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x52, 0x2f, 0xdc, 0x8c, 0x51, 0x30, 0x45, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8f, 0x50, 0x2f, 0x7b, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x77, 0x5e, 0x61, 0xff, 0x3f, 0x77, 0xd2, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x96, 0x75, 0x79, 0xff,
0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff,
0x5f, 0x7a, 0xb8, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x3f, 0x77, 0xd2, 0xff,
0x77, 0x5e, 0x61, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x50, 0x2f, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x32, 0x19,
0x8f, 0x52, 0x2e, 0xb0, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x62, 0x66, 0x89, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x96, 0x75, 0x79, 0xff, 0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff,
0xc4, 0x72, 0x44, 0xff, 0x5f, 0x7a, 0xb8, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x62, 0x66, 0x89, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2e, 0xb0,
0x8e, 0x51, 0x32, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x2e, 0x42,
0x8f, 0x52, 0x2e, 0xe6, 0x8f, 0x52, 0x2f, 0xff, 0x86, 0x56, 0x3f, 0xfe,
0x4e, 0x6f, 0xb1, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x96, 0x75, 0x79, 0xff, 0xc4, 0x72, 0x44, 0xff,
0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff, 0x5f, 0x7a, 0xb8, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x4e, 0x6f, 0xb1, 0xff, 0x86, 0x56, 0x40, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2e, 0xe6, 0x8e, 0x51, 0x2e, 0x42,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x53, 0x2f, 0x56,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x73, 0x5f, 0x69, 0xff,
0x3b, 0x79, 0xd9, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x9f, 0x74, 0x6e, 0xff,
0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff,
0x56, 0x7a, 0xc3, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x3b, 0x79, 0xd9, 0xff, 0x73, 0x5f, 0x69, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x53, 0x2f, 0x56, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x51, 0x2d, 0x6a,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x68, 0x64, 0x7e, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x9f, 0x74, 0x6e, 0xff, 0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff,
0xc4, 0x72, 0x44, 0xff, 0x56, 0x7a, 0xc3, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x68, 0x64, 0x7e, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8d, 0x51, 0x2d, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x2e, 0x7d,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x60, 0x67, 0x8d, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0xa8, 0x75, 0x64, 0xff, 0xc4, 0x72, 0x44, 0xff,
0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff, 0x4d, 0x7a, 0xcd, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x60, 0x67, 0x8d, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2e, 0x7d,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x52, 0x2f, 0x91,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x59, 0x6b, 0x9c, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0xa8, 0x75, 0x64, 0xff,
0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff,
0x4d, 0x7a, 0xcd, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x59, 0x6b, 0x9c, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2f, 0x91, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x2e, 0x9f,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x52, 0x6e, 0xaa, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0xa8, 0x75, 0x64, 0xff, 0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff,
0xc4, 0x72, 0x44, 0xff, 0x4d, 0x7a, 0xcd, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x52, 0x6e, 0xaa, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x51, 0x2e, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x51, 0x2f, 0x90,
0x8f, 0x52, 0x2f, 0xff, 0x8b, 0x54, 0x36, 0xfe, 0x4b, 0x71, 0xb9, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0xb1, 0x74, 0x59, 0xff, 0xc4, 0x72, 0x44, 0xff,
0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff, 0x43, 0x7b, 0xd7, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x4b, 0x71, 0xb9, 0xff,
0x8b, 0x54, 0x36, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2f, 0x90,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x52, 0x2f, 0x82,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x4c, 0x70, 0xb6, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0xb1, 0x74, 0x59, 0xff,
0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff,
0x43, 0x7b, 0xd7, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x4c, 0x70, 0xb6, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x90, 0x53, 0x2f, 0x81, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x52, 0x2e, 0x73,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x51, 0x6e, 0xac, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0xb1, 0x74, 0x59, 0xff, 0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff,
0xc4, 0x72, 0x44, 0xff, 0x43, 0x7b, 0xd7, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x51, 0x6e, 0xac, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8d, 0x52, 0x2e, 0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x2d, 0x64,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x56, 0x6c, 0xa1, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0xbb, 0x73, 0x4f, 0xff, 0xc4, 0x72, 0x44, 0xff,
0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff, 0x3a, 0x7c, 0xe2, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x56, 0x6c, 0xa1, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2d, 0x64,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x51, 0x30, 0x55,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x5d, 0x6a, 0x96, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0xbb, 0x73, 0x4f, 0xff,
0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff, 0xc4, 0x72, 0x44, 0xff,
0x3a, 0x7c, 0xe2, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x5d, 0x6a, 0x96, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x90, 0x51, 0x30, 0x55, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x52, 0x30, 0x25,
0x8e, 0x51, 0x2f, 0xf1, 0x8f, 0x52, 0x2f, 0xff, 0x62, 0x66, 0x8a, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x43, 0x7b, 0xd7, 0xff, 0x4d, 0x7a, 0xcd, 0xff, 0x4d, 0x7a, 0xcd, 0xff,
0x56, 0x7a, 0xc3, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x62, 0x66, 0x8a, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2e, 0xf0,
0x90, 0x52, 0x30, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8e, 0x51, 0x2e, 0xbf, 0x8f, 0x52, 0x2f, 0xff, 0x6f, 0x61, 0x71, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x6f, 0x61, 0x71, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2e, 0xbf, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8f, 0x52, 0x2e, 0x8e, 0x8f, 0x52, 0x2f, 0xff, 0x80, 0x58, 0x4c, 0xff,
0x36, 0x7b, 0xe3, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x36, 0x7b, 0xe3, 0xff, 0x80, 0x58, 0x4c, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2e, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8e, 0x52, 0x2e, 0x5d, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x48, 0x73, 0xbe, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x48, 0x73, 0xbe, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2e, 0x5d,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8b, 0x51, 0x2e, 0x2c, 0x8d, 0x51, 0x2e, 0xf8, 0x8f, 0x52, 0x2f, 0xff,
0x5a, 0x6b, 0x9a, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x5a, 0x6b, 0x9a, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x51, 0x2e, 0xf7, 0x8b, 0x51, 0x2e, 0x2c, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8e, 0x52, 0x2e, 0xc6, 0x8f, 0x52, 0x2f, 0xff,
0x6c, 0x62, 0x76, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x6c, 0x62, 0x76, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2e, 0xc6,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8f, 0x51, 0x2f, 0x77, 0x8f, 0x52, 0x2f, 0xff,
0x7e, 0x5a, 0x50, 0xff, 0x33, 0x7c, 0xe8, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x33, 0x7c, 0xe8, 0xff, 0x7e, 0x5a, 0x50, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2f, 0x77, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x91, 0x50, 0x32, 0x23, 0x8f, 0x51, 0x2f, 0xfd,
0x8f, 0x52, 0x2f, 0xff, 0x4d, 0x70, 0xb3, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x4d, 0x70, 0xb3, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2f, 0xfd,
0x91, 0x50, 0x32, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x51, 0x2e, 0xa9,
0x8f, 0x52, 0x2f, 0xff, 0x6c, 0x62, 0x75, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x6c, 0x62, 0x75, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2e, 0xa9, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x53, 0x2f, 0x56,
0x8f, 0x52, 0x2f, 0xff, 0x8b, 0x54, 0x37, 0xfe, 0x3b, 0x79, 0xd9, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x3b, 0x79, 0xd9, 0xff, 0x8b, 0x54, 0x37, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x53, 0x2f, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0x7f, 0x00, 0x02,
0x8e, 0x52, 0x2e, 0xdc, 0x8f, 0x52, 0x2f, 0xff, 0x5a, 0x6b, 0x9a, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x5a, 0x6b, 0x9a, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2e, 0xdc, 0x7f, 0x7f, 0x00, 0x02,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8e, 0x52, 0x2e, 0x88, 0x8f, 0x52, 0x2f, 0xff, 0x79, 0x5c, 0x5d, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x79, 0x5c, 0x5d, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x52, 0x2e, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8d, 0x54, 0x2f, 0x1b, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x47, 0x73, 0xc0, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x47, 0x73, 0xc0, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8d, 0x54, 0x2f, 0x1b,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8f, 0x52, 0x2f, 0x8b, 0x8f, 0x52, 0x2f, 0xff,
0x6f, 0x61, 0x71, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x6f, 0x61, 0x71, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8b, 0x51, 0x2e, 0x16, 0x8f, 0x52, 0x2e, 0xfb,
0x8f, 0x52, 0x2f, 0xff, 0x45, 0x74, 0xc4, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x45, 0x74, 0xc4, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2e, 0xfb, 0x8b, 0x51, 0x2e, 0x16,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x2f, 0x86,
0x8f, 0x52, 0x2f, 0xff, 0x71, 0x60, 0x6c, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x71, 0x60, 0x6c, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x51, 0x2f, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x4f, 0x2f, 0x10,
0x8f, 0x51, 0x2f, 0xf6, 0x8f, 0x52, 0x2f, 0xff, 0x47, 0x73, 0xbf, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x47, 0x73, 0xbf, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2e, 0xf5, 0x8f, 0x4f, 0x2f, 0x10,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8f, 0x51, 0x2f, 0x80, 0x8f, 0x52, 0x2f, 0xff, 0x73, 0x5e, 0x68, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x73, 0x5e, 0x68, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x51, 0x2f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0xaa, 0x55, 0x55, 0x03, 0x8f, 0x51, 0x2e, 0xf0, 0x8f, 0x52, 0x2f, 0xff,
0x49, 0x71, 0xbb, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x49, 0x71, 0xbb, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2e, 0xf0, 0xaa, 0x55, 0x55, 0x03,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x90, 0x53, 0x2f, 0x5c, 0x8f, 0x52, 0x2f, 0xff,
0x79, 0x5c, 0x5c, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x79, 0x5c, 0x5c, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x90, 0x53, 0x2f, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x2e, 0xb5,
0x8f, 0x52, 0x2f, 0xff, 0x59, 0x6b, 0x9e, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x59, 0x6b, 0x9e, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2e, 0xb5, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x55, 0x2a, 0x1e,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x38, 0x7a, 0xdf, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x38, 0x7a, 0xdf, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x90, 0x55, 0x2a, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8d, 0x51, 0x2f, 0x77, 0x8f, 0x52, 0x2f, 0xff, 0x6f, 0x61, 0x70, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x6f, 0x61, 0x70, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8d, 0x51, 0x2f, 0x77, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8e, 0x52, 0x2e, 0xcf, 0x8f, 0x52, 0x2f, 0xff,
0x4f, 0x70, 0xb3, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x4f, 0x70, 0xb3, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2e, 0xcf,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8f, 0x50, 0x2c, 0x39, 0x8f, 0x52, 0x2f, 0xff,
0x86, 0x56, 0x41, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x86, 0x56, 0x41, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x50, 0x2c, 0x39, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x52, 0x2e, 0x8f,
0x8f, 0x52, 0x2f, 0xff, 0x65, 0x65, 0x84, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x65, 0x65, 0x84, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2e, 0x8f,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8e, 0x52, 0x2e, 0xcf, 0x8f, 0x52, 0x2f, 0xff, 0x49, 0x73, 0xbe, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x49, 0x72, 0xbe, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x52, 0x2e, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8e, 0x51, 0x32, 0x19, 0x8f, 0x52, 0x2f, 0xff, 0x8c, 0x53, 0x35, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x8c, 0x53, 0x35, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x32, 0x19,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8f, 0x53, 0x2d, 0x59, 0x8f, 0x52, 0x2f, 0xff,
0x74, 0x5f, 0x65, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x74, 0x5e, 0x65, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x53, 0x2d, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x2e, 0x9a,
0x8f, 0x52, 0x2f, 0xff, 0x5c, 0x69, 0x95, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x5d, 0x6a, 0x96, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2e, 0x9a, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8e, 0x51, 0x2e, 0xda, 0x8f, 0x52, 0x2f, 0xff, 0x45, 0x74, 0xc6, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x45, 0x74, 0xc6, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2e, 0xda,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8d, 0x4d, 0x31, 0x24, 0x8f, 0x52, 0x2f, 0xff, 0x88, 0x55, 0x3d, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x88, 0x55, 0x3d, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8d, 0x4d, 0x31, 0x24, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x2d, 0x64, 0x8f, 0x52, 0x2f, 0xff,
0x70, 0x60, 0x6e, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x70, 0x60, 0x6e, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2d, 0x64,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x52, 0x2e, 0x8f,
0x8f, 0x52, 0x2f, 0xff, 0x5c, 0x69, 0x95, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x5c, 0x69, 0x95, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x52, 0x2e, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8e, 0x52, 0x2f, 0xb6, 0x8f, 0x52, 0x2f, 0xff, 0x4e, 0x6f, 0xb3, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x4e, 0x6f, 0xb3, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2f, 0xb6, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8f, 0x51, 0x2f, 0xdd, 0x8f, 0x52, 0x2f, 0xff,
0x3f, 0x76, 0xcf, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x3f, 0x76, 0xcf, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2f, 0xdd,
0x00, 0x00, 0x00, 0x00, 0x9f, 0x5f, 0x1f, 0x08, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x52, 0x31, 0xff, 0x31, 0x7d, 0xec, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xec, 0xff, 0x8e, 0x52, 0x31, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x9f, 0x5f, 0x1f, 0x08, 0x8d, 0x51, 0x30, 0x2f,
0x8f, 0x52, 0x2f, 0xff, 0x80, 0x59, 0x4d, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x80, 0x59, 0x4d, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8d, 0x51, 0x30, 0x2f,
0x8e, 0x53, 0x2f, 0x56, 0x8f, 0x52, 0x2f, 0xff, 0x71, 0x5f, 0x6a, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x71, 0x5f, 0x6a, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x53, 0x2f, 0x56, 0x8e, 0x51, 0x2e, 0x7d, 0x8f, 0x52, 0x2f, 0xff,
0x63, 0x66, 0x88, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x63, 0x66, 0x88, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2e, 0x7d, 0x8e, 0x52, 0x2f, 0x9d,
0x8f, 0x52, 0x2f, 0xff, 0x55, 0x6c, 0xa4, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x55, 0x6c, 0xa4, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2f, 0x9d,
0x90, 0x52, 0x2e, 0xaa, 0x8f, 0x52, 0x2f, 0xff, 0x51, 0x6e, 0xae, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x51, 0x6e, 0xae, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x90, 0x52, 0x2e, 0xaa, 0x8f, 0x52, 0x2f, 0xb7, 0x8f, 0x52, 0x2f, 0xff,
0x4b, 0x71, 0xb7, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x4b, 0x71, 0xb7, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xb7, 0x8f, 0x51, 0x2e, 0xc4,
0x8f, 0x52, 0x2f, 0xff, 0x47, 0x73, 0xc1, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x47, 0x73, 0xc1, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2e, 0xc4,
0x8e, 0x51, 0x2f, 0xd1, 0x8f, 0x52, 0x2f, 0xff, 0x42, 0x75, 0xca, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x42, 0x75, 0xca, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x51, 0x2f, 0xd1, 0x8f, 0x52, 0x2f, 0xde, 0x8f, 0x52, 0x2f, 0xff,
0x3d, 0x78, 0xd4, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x3d, 0x78, 0xd4, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xde, 0x8f, 0x52, 0x2e, 0xeb,
0x8f, 0x52, 0x2f, 0xff, 0x38, 0x79, 0xde, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x38, 0x79, 0xde, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2e, 0xeb,
0x8e, 0x52, 0x2f, 0xf8, 0x8f, 0x52, 0x2f, 0xff, 0x34, 0x7c, 0xe7, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x34, 0x7c, 0xe7, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x52, 0x2f, 0xf8, 0x8e, 0x52, 0x2f, 0xf8, 0x8f, 0x52, 0x2f, 0xff,
0x33, 0x7c, 0xe8, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x34, 0x7c, 0xe7, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2f, 0xf8, 0x8f, 0x52, 0x2e, 0xeb,
0x8f, 0x52, 0x2f, 0xff, 0x38, 0x7a, 0xde, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x38, 0x79, 0xde, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2e, 0xeb,
0x8f, 0x52, 0x2f, 0xde, 0x8f, 0x52, 0x2f, 0xff, 0x3d, 0x77, 0xd5, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x3d, 0x78, 0xd4, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xde, 0x8e, 0x51, 0x2f, 0xd1, 0x8f, 0x52, 0x2f, 0xff,
0x41, 0x76, 0xcb, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x42, 0x75, 0xca, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2f, 0xd1, 0x8f, 0x51, 0x2e, 0xc4,
0x8f, 0x52, 0x2f, 0xff, 0x47, 0x74, 0xc2, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x47, 0x73, 0xc1, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2e, 0xc4,
0x8f, 0x52, 0x2f, 0xb7, 0x8f, 0x52, 0x2f, 0xff, 0x4b, 0x71, 0xb7, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x4b, 0x71, 0xb7, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xb7, 0x90, 0x52, 0x2e, 0xaa, 0x8f, 0x52, 0x2f, 0xff,
0x51, 0x6e, 0xae, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x51, 0x6e, 0xae, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x90, 0x52, 0x2e, 0xaa, 0x8e, 0x52, 0x2f, 0x9d,
0x8f, 0x52, 0x2f, 0xff, 0x55, 0x6c, 0xa4, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x55, 0x6c, 0xa4, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2f, 0x9d,
0x8e, 0x51, 0x2e, 0x7d, 0x8f, 0x52, 0x2f, 0xff, 0x63, 0x66, 0x88, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x63, 0x66, 0x88, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x51, 0x2e, 0x7d, 0x8e, 0x53, 0x2f, 0x56, 0x8f, 0x52, 0x2f, 0xff,
0x71, 0x5f, 0x6a, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x71, 0x5f, 0x6a, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x53, 0x2f, 0x56, 0x8d, 0x51, 0x30, 0x2f,
0x8f, 0x52, 0x2f, 0xff, 0x80, 0x59, 0x4d, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x80, 0x59, 0x4d, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8d, 0x51, 0x30, 0x2f,
0x9f, 0x5f, 0x1f, 0x08, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x31, 0xff,
0x31, 0x7d, 0xec, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xec, 0xff, 0x8e, 0x52, 0x31, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x9f, 0x5f, 0x1f, 0x08, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x51, 0x2f, 0xdd,
0x8f, 0x52, 0x2f, 0xff, 0x3f, 0x76, 0xcf, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x3f, 0x76, 0xcf, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x51, 0x2f, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8e, 0x52, 0x2f, 0xb6, 0x8f, 0x52, 0x2f, 0xff, 0x4e, 0x6f, 0xb3, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x4e, 0x6f, 0xb3, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2f, 0xb6, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8e, 0x52, 0x2e, 0x8f, 0x8f, 0x52, 0x2f, 0xff,
0x5c, 0x69, 0x95, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x5c, 0x69, 0x95, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2e, 0x8f,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x2d, 0x64,
0x8f, 0x52, 0x2f, 0xff, 0x70, 0x60, 0x6e, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x70, 0x60, 0x6e, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x51, 0x2d, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8d, 0x4d, 0x31, 0x24, 0x8f, 0x52, 0x2f, 0xff, 0x88, 0x55, 0x3d, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x88, 0x55, 0x3d, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8d, 0x4d, 0x31, 0x24, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x2e, 0xda,
0x8f, 0x52, 0x2f, 0xff, 0x45, 0x74, 0xc6, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x45, 0x74, 0xc6, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2e, 0xda, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8e, 0x51, 0x2e, 0x9a, 0x8f, 0x52, 0x2f, 0xff, 0x5d, 0x6a, 0x96, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x5c, 0x69, 0x95, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2e, 0x9a,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8f, 0x53, 0x2d, 0x59, 0x8f, 0x52, 0x2f, 0xff,
0x74, 0x5e, 0x65, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x74, 0x5f, 0x65, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x53, 0x2d, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x32, 0x19,
0x8f, 0x52, 0x2f, 0xff, 0x8c, 0x53, 0x35, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x8c, 0x53, 0x35, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x32, 0x19, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8e, 0x52, 0x2e, 0xcf, 0x8f, 0x52, 0x2f, 0xff,
0x49, 0x72, 0xbe, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x49, 0x73, 0xbe, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2e, 0xcf, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x52, 0x2e, 0x8f,
0x8f, 0x52, 0x2f, 0xff, 0x65, 0x65, 0x84, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x65, 0x65, 0x84, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2e, 0x8f,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8f, 0x50, 0x2c, 0x39, 0x8f, 0x52, 0x2f, 0xff, 0x86, 0x56, 0x41, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x86, 0x56, 0x41, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x50, 0x2c, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x52, 0x2e, 0xcf,
0x8f, 0x52, 0x2f, 0xff, 0x4f, 0x70, 0xb3, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x4f, 0x70, 0xb3, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x52, 0x2e, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8d, 0x51, 0x2f, 0x77, 0x8f, 0x52, 0x2f, 0xff, 0x6f, 0x61, 0x70, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x6f, 0x61, 0x70, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8d, 0x51, 0x2f, 0x77, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x90, 0x55, 0x2a, 0x1e, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x38, 0x7a, 0xdf, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x38, 0x7a, 0xdf, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x90, 0x55, 0x2a, 0x1e,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8e, 0x51, 0x2e, 0xb5, 0x8f, 0x52, 0x2f, 0xff, 0x59, 0x6b, 0x9e, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x59, 0x6b, 0x9e, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2e, 0xb5,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x90, 0x53, 0x2f, 0x5c, 0x8f, 0x52, 0x2f, 0xff,
0x79, 0x5c, 0x5c, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x79, 0x5c, 0x5c, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x90, 0x53, 0x2f, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xaa, 0x55, 0x55, 0x03,
0x8f, 0x51, 0x2e, 0xf0, 0x8f, 0x52, 0x2f, 0xff, 0x49, 0x71, 0xbb, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x49, 0x71, 0xbb, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x51, 0x2f, 0xf1, 0xaa, 0x55, 0x55, 0x03, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8f, 0x51, 0x2f, 0x80, 0x8f, 0x52, 0x2f, 0xff,
0x73, 0x5e, 0x68, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x73, 0x5e, 0x68, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2f, 0x80, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x4f, 0x2f, 0x10,
0x8f, 0x51, 0x2f, 0xf6, 0x8f, 0x52, 0x2f, 0xff, 0x47, 0x73, 0xbf, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x47, 0x73, 0xbf, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2f, 0xf6, 0x8f, 0x4f, 0x2f, 0x10,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x2f, 0x86, 0x8f, 0x52, 0x2f, 0xff,
0x71, 0x60, 0x6c, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x71, 0x60, 0x6c, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2f, 0x86,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8b, 0x51, 0x2e, 0x16,
0x8f, 0x52, 0x2e, 0xfb, 0x8f, 0x52, 0x2f, 0xff, 0x45, 0x74, 0xc4, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x45, 0x74, 0xc4, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2e, 0xfb,
0x8b, 0x51, 0x2e, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8f, 0x52, 0x2f, 0x8b, 0x8f, 0x52, 0x2f, 0xff,
0x6f, 0x61, 0x71, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x6f, 0x61, 0x71, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0x8b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x54, 0x2f, 0x1b,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x47, 0x73, 0xc0, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x47, 0x73, 0xc0, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8d, 0x54, 0x2f, 0x1b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8e, 0x52, 0x2e, 0x88, 0x8f, 0x52, 0x2f, 0xff,
0x79, 0x5c, 0x5d, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x79, 0x5c, 0x5d, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2e, 0x88, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0x7f, 0x00, 0x02,
0x8e, 0x52, 0x2e, 0xdc, 0x8f, 0x52, 0x2f, 0xff, 0x5a, 0x6b, 0x9a, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x5a, 0x6b, 0x9a, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8d, 0x52, 0x30, 0xde, 0x7f, 0x7f, 0x00, 0x02,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8e, 0x53, 0x2f, 0x56, 0x8f, 0x52, 0x2f, 0xff,
0x8b, 0x54, 0x37, 0xff, 0x3b, 0x79, 0xd9, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x3b, 0x79, 0xd9, 0xff,
0x8b, 0x54, 0x37, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x53, 0x2f, 0x56,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8f, 0x51, 0x2e, 0xa9, 0x8f, 0x52, 0x2f, 0xff, 0x6c, 0x62, 0x75, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x6c, 0x62, 0x75, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2e, 0xa9,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x91, 0x50, 0x32, 0x23, 0x8f, 0x51, 0x2f, 0xfd,
0x8f, 0x52, 0x2f, 0xff, 0x4d, 0x70, 0xb3, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x4d, 0x70, 0xb3, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2f, 0xfd,
0x91, 0x50, 0x32, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8f, 0x51, 0x2f, 0x77, 0x8f, 0x52, 0x2f, 0xff, 0x7e, 0x5a, 0x50, 0xff,
0x33, 0x7c, 0xe8, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x33, 0x7c, 0xe8, 0xff, 0x7e, 0x5a, 0x50, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x51, 0x2f, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x52, 0x2e, 0xc6,
0x8f, 0x52, 0x2f, 0xff, 0x6c, 0x62, 0x76, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x6c, 0x62, 0x76, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x52, 0x2e, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8b, 0x51, 0x2e, 0x2c, 0x8d, 0x51, 0x2e, 0xf8, 0x8f, 0x52, 0x2f, 0xff,
0x5a, 0x6b, 0x9a, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x5a, 0x6b, 0x9a, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8d, 0x51, 0x2e, 0xf8, 0x8b, 0x51, 0x2e, 0x2c, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x52, 0x2e, 0x5d,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x48, 0x73, 0xbe, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x48, 0x73, 0xbe, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2e, 0x5d, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8f, 0x52, 0x2e, 0x8e, 0x8f, 0x52, 0x2f, 0xff,
0x80, 0x58, 0x4c, 0xff, 0x36, 0x7b, 0xe3, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x36, 0x7b, 0xe3, 0xff, 0x80, 0x58, 0x4c, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2e, 0x8e, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8e, 0x51, 0x2e, 0xbf, 0x8f, 0x52, 0x2f, 0xff, 0x6f, 0x61, 0x71, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x6f, 0x61, 0x71, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2e, 0xbf, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x90, 0x52, 0x30, 0x25, 0x8f, 0x51, 0x2e, 0xf0,
0x8f, 0x52, 0x2f, 0xff, 0x62, 0x66, 0x8a, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x62, 0x66, 0x8a, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2f, 0xf1, 0x90, 0x52, 0x30, 0x25,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x90, 0x51, 0x30, 0x55, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x5d, 0x6a, 0x96, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x5d, 0x6a, 0x96, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x90, 0x51, 0x30, 0x55,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x2d, 0x64,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x56, 0x6c, 0xa1, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x56, 0x6c, 0xa1, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2d, 0x64,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8d, 0x52, 0x2e, 0x73, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x51, 0x6e, 0xac, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x51, 0x6e, 0xac, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8d, 0x52, 0x2e, 0x73,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x90, 0x53, 0x2f, 0x81, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x4c, 0x70, 0xb6, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x4c, 0x70, 0xb6, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0x82,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x51, 0x2f, 0x90,
0x8f, 0x52, 0x2f, 0xff, 0x8b, 0x54, 0x36, 0xff, 0x4b, 0x71, 0xb9, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x4b, 0x71, 0xb9, 0xff,
0x8b, 0x54, 0x36, 0xfe, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2f, 0x90,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x2e, 0x9f, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x52, 0x6e, 0xaa, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x52, 0x6e, 0xaa, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2e, 0x9f,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8e, 0x52, 0x2f, 0x91, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x59, 0x6b, 0x9c, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x59, 0x6b, 0x9c, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2f, 0x91,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x2e, 0x7d,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x60, 0x67, 0x8d, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x60, 0x67, 0x8d, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2e, 0x7d,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8d, 0x51, 0x2d, 0x6a, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x68, 0x64, 0x7e, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x68, 0x64, 0x7e, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8d, 0x51, 0x2d, 0x6a,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8e, 0x53, 0x2f, 0x56, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x73, 0x5f, 0x69, 0xff, 0x3b, 0x79, 0xd9, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x3b, 0x79, 0xd9, 0xff, 0x73, 0x5f, 0x69, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x53, 0x2f, 0x56,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x2e, 0x42,
0x8f, 0x52, 0x2e, 0xe6, 0x8f, 0x52, 0x2f, 0xff, 0x86, 0x56, 0x40, 0xff,
0x4e, 0x6f, 0xb1, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x4e, 0x6f, 0xb1, 0xff, 0x86, 0x56, 0x40, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8d, 0x52, 0x2f, 0xe8, 0x8e, 0x51, 0x2e, 0x42,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x32, 0x19, 0x8f, 0x52, 0x2e, 0xb0,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x62, 0x66, 0x89, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x62, 0x66, 0x89, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2e, 0xb0, 0x8e, 0x51, 0x32, 0x19,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8f, 0x50, 0x2f, 0x7b, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x77, 0x5e, 0x61, 0xff, 0x3f, 0x77, 0xd2, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x3f, 0x77, 0xd2, 0xff, 0x77, 0x5e, 0x61, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x50, 0x2f, 0x7b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8c, 0x51, 0x30, 0x45, 0x8e, 0x52, 0x2f, 0xdc, 0x8f, 0x52, 0x2f, 0xff,
0x8a, 0x54, 0x39, 0xff, 0x57, 0x6c, 0xa2, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x57, 0x6c, 0xa2, 0xff, 0x8a, 0x54, 0x38, 0xfe, 0x8f, 0x52, 0x2f, 0xff,
0x8d, 0x52, 0x31, 0xde, 0x8c, 0x51, 0x30, 0x45, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, 0x55, 0x33, 0x0f,
0x8e, 0x51, 0x2f, 0xa6, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x77, 0x5d, 0x60, 0xff, 0x46, 0x73, 0xc2, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x46, 0x74, 0xc2, 0xff,
0x77, 0x5d, 0x60, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x51, 0x2f, 0xa6, 0x88, 0x55, 0x33, 0x0f, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x53, 0x2d, 0x5f,
0x8f, 0x52, 0x2f, 0xe2, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x66, 0x65, 0x81, 0xff, 0x36, 0x7a, 0xe3, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x36, 0x7b, 0xe3, 0xff, 0x66, 0x65, 0x81, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x31, 0xe4,
0x8e, 0x53, 0x2d, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x7f, 0x3f, 0x1f, 0x08, 0x90, 0x51, 0x2e, 0x8a,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x87, 0x56, 0x3f, 0xff,
0x56, 0x6c, 0xa1, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x56, 0x6c, 0xa1, 0xff, 0x87, 0x56, 0x3f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x90, 0x51, 0x2e, 0x8a,
0x7f, 0x3f, 0x1f, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x91, 0x50, 0x2d, 0x33, 0x8e, 0x51, 0x2e, 0xb6,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x7b, 0x5b, 0x58, 0xff,
0x53, 0x6e, 0xaa, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x53, 0x6e, 0xaa, 0xff, 0x7b, 0x5b, 0x58, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2e, 0xb6, 0x91, 0x50, 0x2d, 0x33,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8f, 0x51, 0x2e, 0x5e, 0x8e, 0x51, 0x2e, 0xe1,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x7e, 0x5a, 0x50, 0xff,
0x57, 0x6c, 0xa2, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x57, 0x6c, 0xa2, 0xff,
0x7e, 0x5a, 0x50, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8d, 0x52, 0x30, 0xe3, 0x8f, 0x51, 0x2e, 0x5e, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8e, 0x50, 0x2e, 0x68, 0x8f, 0x52, 0x2e, 0xd5,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x83, 0x57, 0x48, 0xff,
0x5a, 0x6a, 0x99, 0xff, 0x32, 0x7d, 0xeb, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x32, 0x7d, 0xeb, 0xff, 0x5a, 0x6a, 0x99, 0xff, 0x83, 0x57, 0x48, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8d, 0x52, 0x30, 0xd8,
0x8e, 0x50, 0x2e, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8e, 0x52, 0x2e, 0x5d, 0x8e, 0x52, 0x2e, 0xca,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x87, 0x55, 0x3f, 0xff,
0x66, 0x65, 0x82, 0xff, 0x46, 0x73, 0xc2, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x46, 0x73, 0xc2, 0xff,
0x66, 0x65, 0x82, 0xff, 0x87, 0x55, 0x3f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8d, 0x53, 0x31, 0xcd, 0x8e, 0x52, 0x2e, 0x5d,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8d, 0x51, 0x2f, 0x51, 0x8e, 0x51, 0x2e, 0xbf,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x7f, 0x59, 0x51, 0xff, 0x5e, 0x69, 0x92, 0xff, 0x3e, 0x77, 0xd3, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x3e, 0x77, 0xd3, 0xff, 0x5e, 0x69, 0x92, 0xff, 0x7f, 0x59, 0x51, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x51, 0x2e, 0xbf, 0x90, 0x51, 0x2f, 0x51, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x8f, 0x53, 0x2e, 0x37, 0x8d, 0x52, 0x2e, 0x8e,
0x8f, 0x51, 0x2e, 0xe4, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x77, 0x5d, 0x5f, 0xff, 0x57, 0x6c, 0xa0, 0xff,
0x3d, 0x77, 0xd2, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x3d, 0x77, 0xd2, 0xff, 0x57, 0x6c, 0xa0, 0xff,
0x76, 0x5d, 0x5f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8d, 0x52, 0x30, 0xe6, 0x8d, 0x52, 0x2e, 0x8e,
0x8f, 0x53, 0x2e, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x51, 0x2f, 0x4b,
0x8f, 0x51, 0x2f, 0xa2, 0x8e, 0x52, 0x2f, 0xf8, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x82, 0x59, 0x49, 0xff,
0x6b, 0x62, 0x78, 0xff, 0x54, 0x6d, 0xa7, 0xff, 0x3c, 0x78, 0xd6, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x3c, 0x78, 0xd6, 0xff, 0x54, 0x6d, 0xa7, 0xff,
0x6b, 0x62, 0x78, 0xff, 0x82, 0x59, 0x49, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2f, 0xf8,
0x8f, 0x51, 0x2f, 0xa2, 0x8e, 0x51, 0x2f, 0x4b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x54, 0x38, 0x09,
0x8e, 0x53, 0x2d, 0x5f, 0x8e, 0x52, 0x2f, 0xad, 0x8e, 0x52, 0x2e, 0xec,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x80, 0x58, 0x4c, 0xff, 0x6a, 0x63, 0x7b, 0xff,
0x58, 0x6c, 0x9e, 0xff, 0x4a, 0x72, 0xbb, 0xff, 0x3b, 0x78, 0xd7, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff, 0x31, 0x7d, 0xed, 0xff,
0x3b, 0x77, 0xd6, 0xff, 0x4a, 0x72, 0xbb, 0xff, 0x58, 0x6c, 0x9e, 0xff,
0x6a, 0x63, 0x7b, 0xff, 0x80, 0x58, 0x4c, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x52, 0x2f, 0xed, 0x8e, 0x52, 0x2f, 0xad, 0x8e, 0x53, 0x2d, 0x5f,
0x8d, 0x54, 0x38, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x91, 0x50, 0x2d, 0x33, 0x8f, 0x52, 0x2e, 0x72,
0x8e, 0x52, 0x2f, 0xb1, 0x8e, 0x52, 0x2e, 0xef, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8a, 0x54, 0x38, 0xff, 0x7d, 0x5b, 0x54, 0xff,
0x6f, 0x61, 0x71, 0xff, 0x61, 0x68, 0x8d, 0xff, 0x54, 0x6d, 0xa6, 0xff,
0x4f, 0x6f, 0xaf, 0xff, 0x4b, 0x71, 0xb9, 0xff, 0x46, 0x73, 0xc3, 0xff,
0x41, 0x75, 0xcb, 0xff, 0x3d, 0x77, 0xd5, 0xff, 0x38, 0x79, 0xde, 0xff,
0x34, 0x7c, 0xe7, 0xff, 0x34, 0x7c, 0xe7, 0xff, 0x38, 0x79, 0xde, 0xff,
0x3d, 0x77, 0xd5, 0xff, 0x41, 0x75, 0xcb, 0xff, 0x46, 0x73, 0xc3, 0xff,
0x4b, 0x71, 0xb9, 0xff, 0x4f, 0x6f, 0xaf, 0xff, 0x54, 0x6d, 0xa6, 0xff,
0x61, 0x68, 0x8d, 0xff, 0x6f, 0x61, 0x71, 0xff, 0x7d, 0x5b, 0x54, 0xff,
0x8a, 0x54, 0x38, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8e, 0x52, 0x2f, 0xf0, 0x8f, 0x52, 0x2e, 0xb0, 0x8f, 0x52, 0x2e, 0x72,
0x91, 0x50, 0x2d, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8f, 0x53, 0x2e, 0x37, 0x8f, 0x52, 0x2f, 0x75, 0x8f, 0x52, 0x2f, 0x9b,
0x8e, 0x51, 0x2e, 0xc1, 0x8e, 0x51, 0x2f, 0xe7, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff,
0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8d, 0x52, 0x30, 0xe9,
0x8e, 0x51, 0x2f, 0xc1, 0x8f, 0x52, 0x2f, 0x9b, 0x8f, 0x52, 0x2f, 0x75,
0x8f, 0x53, 0x2e, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x87, 0x4b, 0x2d, 0x11, 0x8f, 0x53, 0x2e, 0x37, 0x8e, 0x52, 0x2e, 0x5d,
0x8e, 0x51, 0x2e, 0x83, 0x8f, 0x51, 0x2e, 0xa0, 0x8f, 0x51, 0x2f, 0xac,
0x8f, 0x52, 0x2e, 0xb9, 0x8e, 0x52, 0x2e, 0xc6, 0x8f, 0x52, 0x2f, 0xd2,
0x8e, 0x52, 0x2e, 0xdf, 0x8e, 0x52, 0x2e, 0xec, 0x8e, 0x51, 0x2f, 0xf9,
0x8e, 0x51, 0x2f, 0xf9, 0x8e, 0x52, 0x2e, 0xec, 0x8e, 0x52, 0x2e, 0xdf,
0x8f, 0x52, 0x2f, 0xd2, 0x8e, 0x52, 0x2e, 0xc6, 0x8f, 0x52, 0x2e, 0xb9,
0x8f, 0x51, 0x2f, 0xac, 0x8f, 0x51, 0x2e, 0xa0, 0x8e, 0x51, 0x2e, 0x83,
0x8e, 0x52, 0x2e, 0x5d, 0x8f, 0x53, 0x2e, 0x37, 0x96, 0x4b, 0x2d, 0x11,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
| [
"stefan.meyre@verysmart.ch"
] | stefan.meyre@verysmart.ch |
caecbe049bd338d0bea30f54ba8b01b4902bf3fd | 70a56882364fd37cb436f56ce95f94c042b65d82 | /GaoFramework/jni/Android/GLTexture.h | e507c2c1cdbdbce910a64735ff193f7ed885232e | [] | no_license | michael-wang/jade | 31e5f8afdcb6e3783a11f67ffe8e61dfd3d4ca40 | 76d7208aa78866561c4c8b9b97a0f5a96407ced3 | refs/heads/master | 2020-07-02T11:49:16.256480 | 2014-10-02T04:27:18 | 2014-10-02T04:27:18 | 52,652,879 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 569 | h | #ifndef ANDROIDTEXTURE_H_
#define ANDROIDTEXTURE_H_
#include <Framework/Texture.hpp>
#include <jni.h>
#include <string>
#include "Java/JavaObject.h"
#include "AndroidLogger.h"
class GLTexture : public Gao::Framework::Texture {
public:
GLTexture();
virtual ~GLTexture();
virtual GaoBool Create(GaoString& fileName);
virtual GaoBool Reload();
virtual GaoVoid Unload();
GaoBool Create(GaoString& fileName, GaoBool filtered);
jobject GetJavaRef() {
return jobj.GetJavaRef();
}
private:
JavaObject jobj;
AndroidLogger log;
};
#endif // ANDROIDTEXTURE_H_ | [
"michael.icwang@gmail.com"
] | michael.icwang@gmail.com |
0e9dce7203dc8c745c0e78793e87bf4de8e95035 | 93ca35101e01b11686e998a94a8f6647e48e09a4 | /amazon/product_parser.cpp | 436b6e8d86ec50d51bc48ada60dc35ee27be5e10 | [] | no_license | smurmus/AmazonEmulator | d87123fde123efb55dc820c69158705af1c8f7e2 | 3e8ede2d7aa31b1b51d09d126c2af9f897745d06 | refs/heads/master | 2020-12-31T04:29:13.583031 | 2016-01-04T20:31:47 | 2016-01-04T20:31:47 | 49,021,187 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,223 | cpp | #include <iostream>
#include <sstream>
#include "product_parser.h"
/** Add any other desired #includes below */
#include "book.h"
#include "clothing.h"
#include "movie.h"
#include "product.h"
using namespace std;
static std::string &trim(std::string &s);
ProductParser::ProductParser()
{
}
ProductParser::~ProductParser()
{
}
Product* ProductParser::parse(string category,
istream& is,
bool& error,
string& errorMsg,
int& lineno)
{
parseCommonProduct(is, error, errorMsg, lineno);
if(error) return NULL;
return parseSpecificProduct(category, is, error, errorMsg, lineno);
}
void ProductParser::parseCommonProduct(std::istream& is,
bool& error,
string& errorMsg,
int& lineno)
{
lineno++;
string myline;
getline(is, myline);
myline = trim(myline);
if(myline.size() == 0){
error = true;
errorMsg = "Unable to find a product name";
return;
}
prodName_ = myline;
lineno++;
getline(is, myline);
if(is.fail()){
error = true;
errorMsg = "Expected another line with the price";
return;
}
stringstream ss1(myline);
ss1 >> price_;
if( ss1.fail() ){
error = true;
errorMsg = "Unable to read price";
return;
}
lineno++;
getline(is, myline);
if(is.fail()){
error = true;
errorMsg = "Expected another line with the quantity";
return;
}
stringstream ss2(myline);
ss2 >> qty_;
if( ss2.fail() ){
error = true;
errorMsg = "Unable to read quantity";
}
}
// Used from http://stackoverflow.com/questions/216823/whats-the-best-way-to-trim-stdstring
// trim from start
static inline std::string <rim(std::string &s) {
s.erase(s.begin(), std::find_if(s.begin(), s.end(), std::not1(std::ptr_fun<int, int>(std::isspace))));
return s;
}
// trim from end
static inline std::string &rtrim(std::string &s) {
s.erase(std::find_if(s.rbegin(), s.rend(), std::not1(std::ptr_fun<int, int>(std::isspace))).base(), s.end());
return s;
}
// trim from both ends
static inline std::string &trim(std::string &s) {
return ltrim(rtrim(s));
}
ProductBookParser::ProductBookParser() : ProductParser()
{
}
Product* ProductBookParser::parseSpecificProduct(std::string category,
std::istream& is,
bool& error,
std::string& errorMsg,
int& lineno)
{
lineno++;
string myline;
getline(is, myline);
stringstream ss3(myline);
ss3 >> isbn_;
if(ss3.fail()){
error = true;
errorMsg = "Unable to read ISBN";
}
lineno++;
getline(is, author_);
if(is.fail()){
error = true;
errorMsg = "Unable to read author";
}
#ifdef DEBUG
cout << "Making product " << prodName_ << endl;
#endif
if(error){
return NULL;
}
return makeProduct();
}
std::string ProductBookParser::categoryID()
{
return "book";
}
/**
* Your job to fill in the code to create a new book product
* using the data members in this class and the parent ProductParser class
*/
Product* ProductBookParser::makeProduct()
{
Product * aBook = new Book(author_, isbn_, prodName_, price_, qty_);
return aBook;
}
ProductClothingParser::ProductClothingParser()
{
}
Product* ProductClothingParser::parseSpecificProduct(std::string category,
std::istream& is,
bool& error,
std::string& errorMsg,
int& lineno)
{
lineno++;
string myline;
getline(is, myline);
stringstream ss3(myline);
ss3 >> size_;
if(ss3.fail()){
error = true;
errorMsg = "Unable to read size";
}
lineno++;
getline(is, brand_);
if(is.fail()){
error = true;
errorMsg = "Unable to read brand";
}
#ifdef DEBUG
cout << "Making product " << prodName_ << endl;
#endif
if(error){
return NULL;
}
return makeProduct();
}
std::string ProductClothingParser::categoryID()
{
return "clothing";
}
/**
* Your job to fill in the code to create a new clothing product
* using the data members in this class and the parent ProductParser class
*/
Product* ProductClothingParser::makeProduct()
{
Product * aClothing = new Clothing(size_, brand_, prodName_, price_, qty_);
return aClothing;
}
ProductMovieParser::ProductMovieParser()
{
}
Product* ProductMovieParser::parseSpecificProduct(std::string category,
std::istream& is,
bool& error,
std::string& errorMsg,
int& lineno)
{
lineno++;
string myline;
getline(is, myline);
stringstream ss3(myline);
ss3 >> genre_;
if(ss3.fail()){
error = true;
errorMsg = "Unable to read genre";
}
lineno++;
getline(is, myline);
stringstream ss4(myline);
ss4 >> rating_;
if(ss4.fail()){
error = true;
errorMsg = "Unable to read rating";
}
#ifdef DEBUG
cout << "Making product " << prodName_ << endl;
#endif
if(error){
return NULL;
}
return makeProduct();
}
std::string ProductMovieParser::categoryID()
{
return "movie";
}
/**
* Your job to fill in the code to create a new movie product
* using the data members in this class and the parent ProductParser class
*/
Product* ProductMovieParser::makeProduct()
{
Product * aMovie = new Movie(genre_, rating_, prodName_, price_, qty_);
return aMovie;
}
| [
"murmu@usc.edu"
] | murmu@usc.edu |
550ace6fefd824976fb485e1e924c80995309742 | a8e4c73e926b9742af3798d1a424ea7184fa1c0e | /wallpaper.cpp | 3babad4fbd80156e76cc1af3210e7e9203fdd385 | [] | no_license | hecc1949/archery | 2492bbca705b544195cf186b482eca428868137a | 5d38d062adc619353fd9bfd70e64687b3e7a890e | refs/heads/master | 2021-07-13T17:19:07.776132 | 2020-07-25T01:23:08 | 2020-07-25T01:23:08 | 188,240,113 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,251 | cpp | #include "wallpaper.h"
#include <QApplication>
#include <QDesktopWidget>
#include <QtGui>
//#include <QToolBox>
#include <QGridLayout>
//#include <QHBoxLayout>
//#include <QVBoxLayout>
#include <QTimer>
#include <QTime>
#include <QDockWidget>
//#include <QWSServer>
#include <QScreen>
#include "archerview.h"
#include "configdlg.h"
#include "dbview.h"
Wallpaper::Wallpaper(QWidget *parent)
: QMainWindow(parent)
{
/*
#ifdef ARM
QWSServer::setBackground(QColor(71,138,205,255)); //黑色RGBA=QColor(0,0,0,0)
#endif
*/
// setAttribute( Qt::WA_TranslucentBackground,true );
#ifdef ARM
QDesktopWidget* desktop = QApplication::desktop();
resize(desktop->width(),desktop->height());
#else
resize(1280, 720);
#endif
setWindowFlags(Qt::FramelessWindowHint);
//
setAutoFillBackground(true);
QPixmap pixmap("image/img02.jpg");
QPalette palette;
palette.setBrush(QPalette::Background,QBrush(pixmap));
setPalette(palette);
QRegion maskedRegion(0, 0, width(), height(), QRegion::Rectangle);
setMask(maskedRegion);
//
QWidget *toolbox = new QWidget(this);
QGridLayout *gridlayout = new QGridLayout(toolbox);
labelTitle = new QLabel(this);
labelTitle->setText("欢迎光临");
labelTitle->setAlignment(Qt::AlignCenter);
// labelTitle->setStyleSheet("background-color:#939299; color:rgb(5,255,5); font-size:32px;
labelTitle->setStyleSheet("background-color:#939299; color:rgb(5,255,5); font-size:22px; \
border: 2px groove gray; border-top-left-radius:6px;border-top-right-radius:6px; \
border-bottom-left-radius:6px;border-bottom-right-radius:6px; \
padding-left:0px;padding-right:0px;");
gridlayout->addWidget(labelTitle, 0, 0, 1, 3);
//统一风格设置
// int w1 = 64, h1 = 64;
int w1 = 36, h1 = 36;
Qt::ToolButtonStyle style_btn = Qt::ToolButtonTextBesideIcon; //Qt::ToolButtonTextUnderIcon;
// QString styles = "background-color:#93A2B9; color:#0000ff; font-size:24px";
QString styles = "background-color:#93A2B9; color:#0000ff; font-size:16px";
//第1行的Button
btnExit = new QToolButton(this);
btnExit->setIconSize(QSize(w1,h1));
btnExit->setToolButtonStyle(style_btn);
btnExit->setStyleSheet(styles);
gridlayout->addWidget(btnExit, 0, 3);
QAction *exitAction = new QAction(tr("关机"), this);
exitAction->setIcon(QPixmap("icon/stop.png"));
exitAction->setShortcut(tr("Ctrl+Q"));
connect(exitAction, SIGNAL(triggered()), this, SLOT(exitApp()));
btnExit->setDefaultAction(exitAction);
//第2行各个Button
btnStart = new QToolButton(this);
btnStart->setIconSize(QSize(w1,h1));
btnStart->setMaximumSize(2*w1+w1/2,h1*2); //
btnStart->setToolButtonStyle(style_btn);
btnStart->setStyleSheet(styles);
// btnStart->setIcon(QPixmap("icon/play.png"));
gridlayout->addWidget(btnStart, 1, 0);
// QAction *startAction = new QAction(tr("点击开始,右键切换"), this);
QAction *startAction = new QAction(tr("开始"), this);
startAction->setIcon(QPixmap("icon/play.png"));
connect(startAction, SIGNAL(triggered()), this, SLOT(startgame()));
btnStart->setDefaultAction(startAction);
// btnStart->setContextMenuPolicy (Qt::CustomContextMenu);
// connect(btnStart, SIGNAL(customContextMenuRequested(QPoint)),this, SLOT(startBtnRightClick(QPoint))); //鼠标右键
btnReport = new QToolButton(this);
btnReport->setIconSize(QSize(w1,h1));
btnReport->setToolButtonStyle(style_btn);
btnReport->setStyleSheet(styles);
gridlayout->addWidget(btnReport, 1, 1);
QAction *reportAction = new QAction(tr("报告"), this);
reportAction->setIcon(QPixmap("icon/play.png"));
connect(reportAction, SIGNAL(triggered()), this, SLOT(report()));
btnReport->setDefaultAction(reportAction);
// btnReport->setEnabled(false);
btnConfig = new QToolButton(this);
btnConfig->setIconSize(QSize(w1,h1));
btnConfig->setToolButtonStyle(style_btn);
btnConfig->setStyleSheet(styles);
gridlayout->addWidget(btnConfig, 1, 2);
QAction *configAction = new QAction(tr("配置"), this);
configAction->setIcon(QPixmap("icon/enlarge.png"));
connect(configAction, SIGNAL(triggered()), this, SLOT(config_dlg()));
btnConfig->setDefaultAction(configAction);
btnResource = new QToolButton(this);
btnResource->setIconSize(QSize(w1,h1));
btnResource->setToolButtonStyle(style_btn);
btnResource->setStyleSheet(styles);
gridlayout->addWidget(btnResource, 1, 3);
QAction *resourceAction = new QAction(tr("资源"), this);
resourceAction->setIcon(QPixmap("icon/enlarge.png"));
connect(resourceAction, SIGNAL(triggered()), this, SLOT(resource_cfg()));
btnResource->setDefaultAction(resourceAction);
btnResource->setEnabled(false);
//
dockPan = new QDockWidget(tr("射箭游戏"),this);
dockPan->setStyleSheet("background-color:#93A2B9; color:#0000ff");
dockPan->setAutoFillBackground(true);
dockPan->setWidget(toolbox);
dockPan->setFeatures(QDockWidget::DockWidgetMovable | QDockWidget::DockWidgetFloatable);
dockPan->move(width() - 700, height() - 300); //设置位置
QTimer *idle_timer = new QTimer(this);
connect(idle_timer,SIGNAL(timeout()), this, SLOT(idleTimer()));
idle_times = 0;
idle_timer->start(1000);
//
// laneMode = DEF_LANE_LEFT;
// SelectLaneMode(false);
devIntf = DevInterface::GetInstance();
// cameraLinkStep = 0;
// dialogRunings = 0;
isBackgroup = false;
}
Wallpaper::~Wallpaper()
{
}
void Wallpaper::closeEvent(QCloseEvent *)
{
}
void Wallpaper::clearAndClose()
{
dockPan->setHidden(true);
this->clearMask();
QPalette palette;
palette.setColor(QPalette::Background, Qt::lightGray);
setPalette(palette);
repaint();
QTimer *closeTimer = new QTimer(this);
closeTimer->setSingleShot(true);
connect(closeTimer, &QTimer::timeout, this,[=](){this->close();});
closeTimer->start(50);
}
void Wallpaper::exitApp() //slots
{
dockPan->hide();
this->repaint();
// qDebug()<<"Application close.";
devIntf->closeProcs();
clearAndClose();
// system("dd if=/dev/zero of=/dev/fb0"); //eglfs清屏,可以,但不规范
// this->close();
// QApplication::exit(0);
//# system("poweroff");
}
void Wallpaper::idleTimer() //slots
{
idle_times++;
if (isBackgroup)
return;
if (idle_times ==1)
{
devIntf->setBuzzle(1);
}
devIntf->setGpio(GPIO_LED_0, 3);
//时间显示
if (idle_times >5 && devIntf->cameraLinkStatus!=0)
{
QTime curtime = QTime::currentTime();
if (curtime.second() <10 || curtime.second()>50)
{
labelTitle->setText(curtime.toString("hh:mm:ss"));
}
else
{
labelTitle->setText(curtime.toString("hh:mm"));
}
}
//
if ((idle_times % 10)==1 && devIntf->cameraLinkStatus==0)
{
CheckCameraLinks();
}
}
void Wallpaper::startgame() //slots
{
SignIn *signIn = new SignIn();
// signIn->setWindowModality(Qt::ApplicationModal);
// signIn->setMode(0);
signIn->setMode(NULL);
if (!signIn->exec())
return;
SigninSheet sheet;
if (!signIn->getSignInSheet(sheet))
return;
ArcherView *arview = new ArcherView(NULL);
arview->setSignIn(sheet);
arview->setWindowModality(Qt::ApplicationModal); //和setAttribute(Qt::WA_ShowModal, true)两选一,都可
arview->setWindowFlags(Qt::Dialog | Qt::FramelessWindowHint); //不允许TAB切换
//QT5 for eglfs下showFullScreen()/showMaximized()都不能使窗口运行在全屏模式,只能Resize()来设置。
arview->setGeometry(0,0, this->width(), this->height());
arview->show();
isBackgroup = true;
}
void Wallpaper::report() //slots
{
DbView *dbview = new DbView(this);
dbview->exec();
}
void Wallpaper::config_dlg() //slots
{
ConfigDlg *cfgdlg = new ConfigDlg(this);
cfgdlg->setAttribute(Qt::WA_ShowModal, true);
devIntf->setGpio(GPIO_Relay,1);
// dialogRunings = 1;
isBackgroup = true;
cfgdlg->exec(); //模式对话
isBackgroup = false;
// dialogRunings = 0;
devIntf->setGpio(GPIO_Relay,0);
// devIntf->setGpio(GPIO_LED_CameraVideo,0);
}
void Wallpaper::resource_cfg()
{
}
void Wallpaper::CheckCameraLinks()
{
if (devIntf->cameraLinkStatus ==0)
{
connect(devIntf, SIGNAL(externProcDone(int)), this, SLOT(devIntf_exProcEnd(int)));
devIntf->startOnvifStrobe();
labelTitle->setText(tr("连接摄像头..."));
}
else
{
labelTitle->setText(tr("摄像头已连接"));
}
}
void Wallpaper::devIntf_exProcEnd(int exitCode) //slot
{
Q_UNUSED(exitCode);
if (devIntf->cameraLinkStatus !=0)
{
labelTitle->setText(tr("摄像头已连接"));
}
else
{
labelTitle->setText(tr("没有找到摄像头"));
}
disconnect(devIntf, SIGNAL(externProcDone(int)), this, SLOT(devIntf_exProcEnd(int)));
// qDebug() <<"Camera Check done." <<laneDisMark << "is:"<<devIntf->cameraLinkStatus;
}
| [
"hcc21cn@163.com"
] | hcc21cn@163.com |
9ad99b731275ff231bcd5ae3f98134123b4c909b | f38e1eeee8678d5b228d9340dbeab87edb6a9368 | /TeeNew/Builder2010/SeriesType_Polar.cpp | 3211c831e7e05553a9cd43318a521bdb8c0c17d1 | [] | no_license | Steema/TeeChart-VCL-samples | 383f28bfb7e6c812ed7d0db9768c5c1c64366831 | cb26790fa9e5b4c1e50e57922697813e43a0b0bc | refs/heads/master | 2021-11-17T07:02:23.895809 | 2021-09-14T07:43:04 | 2021-09-14T07:43:04 | 8,649,033 | 23 | 14 | null | null | null | null | UTF-8 | C++ | false | false | 3,060 | cpp | //---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "SeriesType_Polar.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma link "TeeComma"
#pragma link "TeeEdit"
#pragma link "TeePolar"
#pragma resource "*.dfm"
TPolarForm *PolarForm;
//---------------------------------------------------------------------------
__fastcall TPolarForm::TPolarForm(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TPolarForm::FormCreate(TObject *Sender)
{
PolarSeries1->FillSampleValues(20);
PolarSeries1->Cursor = crTeeHand;
PolarSeries2->FillSampleValues(25);
PolarSeries2->Cursor = crTeeHand;
}
//---------------------------------------------------------------------------
void __fastcall TPolarForm::CheckBox1Click(TObject *Sender)
{
Timer1->Enabled = CheckBox1->Checked;
}
//---------------------------------------------------------------------------
void __fastcall TPolarForm::Timer1Timer(TObject *Sender)
{
Timer1->Enabled = false;
// Move Points !!!
PolarSeries1->Rotate(5);
PolarSeries2->Rotate(355);
// Change Grid Lines and Horizontal Axis Labels
TChartAxis *ba = Chart1->BottomAxis;
if (ba->Increment == 0.0 || ba->Increment>=90.0) ba->Increment = 1.0;
else ba->Increment += 2.0;
// Change Grid RINGS and Vertical Axis Labels }
ba = Chart1->LeftAxis;
if (ba->Increment == 0.0 || ba->Increment>=(ba->Maximum-ba->Minimum)/2.0)
ba->Increment = (ba->Maximum-ba->Minimum)/20.0;
else ba->Increment = 2.0*ba->Increment;
Timer1->Enabled = true;
}
//---------------------------------------------------------------------------
void __fastcall TPolarForm::CheckBox2Click(TObject *Sender)
{
PolarSeries1->Circled = CheckBox2->Checked;
}
//---------------------------------------------------------------------------
void __fastcall TPolarForm::PolarSeries1Click(TChartSeries *Sender,
int ValueIndex, TMouseButton Button, TShiftState Shift, int X, int Y)
{
ShowMessage(AnsiString("You clicked: ")+Sender->Name+
AnsiString("\n Angle : ")+FloatToStr(Sender->XValues->Value[ValueIndex])+
AnsiString("\n Radius: ")+FloatToStr(Sender->YValues->Value[ValueIndex]));
}
//---------------------------------------------------------------------------
void __fastcall TPolarForm::Chart1AfterDraw(TObject *Sender)
{
Chart1->Canvas->Brush->Style = bsClear; // <-- IMPORTANT (Try without) !!!
Chart1->Canvas->Pen->Width = 2;
// Draw a blue ring passing over the 3rd PolarSeries1 Point
Chart1->Canvas->Pen->Color = clBlue;
PolarSeries1->DrawRing( PolarSeries1->YValues->Value[2], PolarSeries1->EndZ );
// Draw a green ring passing over the 6th PolarSeries2 Point
Chart1->Canvas->Pen->Color = clGreen;
PolarSeries2->DrawRing( PolarSeries2->YValues->Value[5], PolarSeries2->EndZ );
}
//---------------------------------------------------------------------------
| [
"ncalvet@gmail.com"
] | ncalvet@gmail.com |
f27801a3490f331176f76a3ab2b5b6c9f16ec597 | f32c1c017faa78d8f6dcbbf9ee8cc3d4891f015d | /cpp_includes/basic_cases/hdrs/foo.hpp | 211f9db07e13afb656fa7232e7a644ec9e103d3d | [] | no_license | martis42/bazel_playground | e64e275a78d9f3f75f8046a3c1db2f305d4b6aa3 | 722a660d15b3a3902a1f1bf5e8776a4e712f021a | refs/heads/main | 2023-06-07T16:44:51.473199 | 2021-06-20T16:31:06 | 2021-06-20T18:51:37 | 339,864,220 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 36 | hpp | inline int foo()
{
return 13;
}
| [
"medler.martin@gmail.com"
] | medler.martin@gmail.com |
7880c58bb8aba9710d1db6bf2bf4275161a68426 | 126e18d87dcd274477dfea3c8c81ee58c3f7517b | /src/zoj2947.cpp | bebcc6347774c4acd450ca3065a4d41e6d3e34c4 | [] | no_license | hzqtc/zoj-solutions | 260014b9ac8a5acf46ef118d210d8486089adc7f | 76efc95fb0c4d5a6e62f62c5d07e61cc9fdc5109 | refs/heads/master | 2021-01-18T14:58:00.753417 | 2012-06-26T04:07:07 | 2012-06-26T04:07:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 408 | cpp | #include <iostream>
#include <string>
using namespace std;
int main()
{
int caseCount;
cin >> caseCount;
while(caseCount--)
{
int len;
string a, b;
string word;
cin >> len;
while(len--)
{
cin >> word;
a += word[0];
}
cin >> len;
while(len--)
{
cin >> word;
b += word[0];
}
if(a == b)
cout << "SAME" << endl;
else
cout << "DIFFERENT" << endl;
}
return 0;
}
| [
"hzqtc1229@gmail.com"
] | hzqtc1229@gmail.com |
29c0806c9f5251ef5c88838584e4c2556a28a087 | 8a9bb0bba06a3fb9da06f48b5fb43af6a2a4bb47 | /LeetCode/WordLadderII.h | bd6ecf6a98c276099a1a8ccbc5a11d0ffd1668fa | [] | no_license | ruifshi/LeetCode | 4cae3f54e5e5a8ee53c4a7400bb58d177a560be8 | 11786b6bc379c7b09b3f49fc8743cc15d46b5c0d | refs/heads/master | 2022-07-14T09:39:55.001968 | 2022-06-26T02:06:00 | 2022-06-26T02:06:00 | 158,513,101 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 398 | h | #include <vector>
#include <string>
#include <unordered_map>
using namespace std;
class Solution {
public:
vector<vector<string>> findLadders(string beginWord, string endWord, vector<string>& wordList);
void dfs_wordladderii(const string & end_word,
const string & cur_word,
const unordered_map<string, vector<string>>& children,
vector<string> & line,
vector<vector<string>> & res);
}; | [
"ruifshi@hotmail.com"
] | ruifshi@hotmail.com |
0ca1e0b19fbfb0c03125080aa52496d0b3379f5a | fcebca7c5725c44796d90a7158350e52aa61cc72 | /src/model/effects/generic/MissingCovariatePredicate.h | b85295c8c94d337464385bf8f2efdddce238efef | [] | no_license | kkc-krish/RSiena | c082a0e1c3698bffd68734387347c4de7981698f | 4f9d65392367703150e6285291a9b41d23e647c6 | refs/heads/master | 2020-12-24T19:59:58.649070 | 2013-06-18T00:00:00 | 2013-06-18T00:00:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 857 | h | /******************************************************************************
* SIENA: Simulation Investigation for Empirical Network Analysis
*
* Web: http://www.stats.ox.ac.uk/~snijders/siena/
*
* File: MissingCovariatePredicate.h
*
* Description: This file contains the definition of the
* MissingCovariatePredicate class.
*****************************************************************************/
#ifndef MISSINGCOVARIATEPREDICATE_H_
#define MISSINGCOVARIATEPREDICATE_H_
#include "CovariatePredicate.h"
namespace siena
{
/**
* Defines a predicate that holds if the covariate value is missing either for
* the ego or the alter.
*/
class MissingCovariatePredicate: public CovariatePredicate
{
public:
MissingCovariatePredicate(string covariateName);
virtual bool value(int alter);
};
}
#endif /* MISSINGCOVARIATEPREDICATE_H_ */
| [
"csardi.gabor@gmail.com"
] | csardi.gabor@gmail.com |
c753cfbf749811e2001542aff2ecf2d1e4c636f1 | 82d2738fb1e66ae2869eba15a32f3128e09b1f27 | /Whisperwind/Whisperwind_Engine/src/SceneManager.cpp | ba02f9f6f85e696d73c5cff551a5f2514327f505 | [
"MIT"
] | permissive | harr999y/Whisperwind | a25326fa14c98f16ae8b451b3d96f64368c4d147 | 1171201f7cdcfe2e0043f305514dda66bf677f30 | refs/heads/master | 2021-06-01T11:34:50.562533 | 2020-06-25T11:50:30 | 2020-06-25T11:50:30 | 4,048,736 | 4 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 9,014 | cpp | /*-------------------------------------------------------------------------
This source file is a part of Whisperwind.(GameEngine + GamePlay + GameTools)
For the latest info, see http://lisuyong.com
Copyright (c) 2012 Suyong Li (79481268@qq.com)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE
-------------------------------------------------------------------------*/
#include <boost/make_shared.hpp>
#include <boost/typeof/typeof.hpp>
#include "DebugDefine.h"
#include "ExceptionDefine.h"
#include "LogManager.h"
#include "StringConverter.h"
#include "CheckedCast.h"
#include "MathDefine.h"
#include "EngineManager.h"
#include "EngineConfig.h"
#include "Resource.h"
#include "ResourceManager.h"
#include "DebugResource.h"
#include "SceneNode.h"
#include "SceneObject.h"
#include "SceneObjectFactory.h"
#include "Light.h"
#include "SceneManager.h"
namespace Engine
{
//---------------------------------------------------------------------
SceneManager::~SceneManager()
{
mSceneNodeMap.clear();
}
//---------------------------------------------------------------------
void SceneManager::init()
{
init_impl();
}
//---------------------------------------------------------------------
SceneNodePtr & SceneManager::createSceneNode(const Util::Wstring & name, Util::u_int nodeType)
{
WHISPERWIND_ASSERT(mSceneNodeMap.find(name) == mSceneNodeMap.end());
SceneNodePtr sceneNode = createSceneNode_impl(name, nodeType);
IF_NULL_EXCEPTION(sceneNode, Util::WstringToString(name) + " node create failed!" );
mSceneNodeMap.insert(SceneNodeMap::value_type(name, sceneNode));
return mSceneNodeMap[name];
}
//---------------------------------------------------------------------
SceneNodePtr & SceneManager::getSceneNode(const Util::Wstring & name)
{
WHISPERWIND_ASSERT(mSceneNodeMap.find(name) != mSceneNodeMap.end());
return mSceneNodeMap[name];
}
//---------------------------------------------------------------------
void SceneManager::destroySceneNode(const Util::Wstring & name)
{
WHISPERWIND_ASSERT(mSceneNodeMap.find(name) != mSceneNodeMap.end());
SceneNodePtr & node = mSceneNodeMap[name];
node->removeAllChildNode();
node->dettachAllSceneObject();
SceneNodePtr parentNode;
if (node->getParentNode(parentNode))
parentNode->removeChildNode(node);
destroySceneNode_impl(name);
mSceneNodeMap.erase(name);
}
//---------------------------------------------------------------------
void SceneManager::destroyAllSceneNode()
{
while (!mSceneNodeMap.empty())
{
destroySceneNode((mSceneNodeMap.begin())->first);
}
destroyAllSceneNode_impl();
mSceneNodeMap.clear();
}
//---------------------------------------------------------------------
void SceneManager::preUpdate(Util::time elapsedTime)
{
if (mPreCallback)
mPreCallback(elapsedTime);
preUpdate_impl(elapsedTime);
}
//---------------------------------------------------------------------
void SceneManager::postUpdate(Util::time elapsedTime)
{
if (mPostCallback)
mPostCallback(elapsedTime);
postUpdate_impl(elapsedTime);
}
//---------------------------------------------------------------------
void SceneManager::regSceneObjectFactory(const SceneObjectFactoryPtr & factory)
{
WHISPERWIND_ASSERT(mSceneObjectFactoryMap.find(factory->getName()) == mSceneObjectFactoryMap.end());
mSceneObjectFactoryMap.insert(SceneObjectFactoryMap::value_type(factory->getName(), factory));
}
//---------------------------------------------------------------------
SceneObjectPtr & SceneManager::createSceneObject(const Util::Wstring & type, const Util::Wstring & name, const Util::Wstring & resourceName)
{
WHISPERWIND_ASSERT(mSceneObjectFactoryMap.find(type) != mSceneObjectFactoryMap.end());
WHISPERWIND_ASSERT(mSceneObjectMap.find(name) == mSceneObjectMap.end());
const ResourceManagerPtr & rm = EngineManager::getSingleton().getResourceManager();
ResourcePtr resource = rm->loadResource(resourceName);
const SceneObjectPtr & obj = mSceneObjectFactoryMap[type]->create(name, resource);
IF_NULL_EXCEPTION(obj, Util::WstringToString(name) + " object create failed!" );
mSceneObjectMap.insert(SceneObjectMap::value_type(name, obj));
return mSceneObjectMap[name];
}
//---------------------------------------------------------------------
SceneObjectPtr & SceneManager::getSceneObject(const Util::Wstring & name)
{
WHISPERWIND_ASSERT(mSceneObjectMap.find(name) != mSceneObjectMap.end());
return mSceneObjectMap[name];
}
//---------------------------------------------------------------------
void SceneManager::destroySceneObject(const Util::Wstring & name)
{
WHISPERWIND_ASSERT(mSceneObjectMap.find(name) != mSceneObjectMap.end());
SceneNodePtr & parentNode = mSceneObjectMap[name]->getAttachedSceneNode();
if (parentNode)
parentNode->dettachSceneObject(mSceneObjectMap[name]);
mSceneObjectMap.erase(name);
}
//---------------------------------------------------------------------
void SceneManager::destroyAllSceneObject()
{
while (!mSceneObjectMap.empty())
{
destroySceneObject((mSceneObjectMap.begin())->second->getName());
}
mSceneObjectMap.clear();
}
//---------------------------------------------------------------------
SceneObjectPtr & SceneManager::createLight(const Util::Wstring & name, const LightInfo & lightInfo)
{
WHISPERWIND_ASSERT(mSceneObjectMap.find(name) == mSceneObjectMap.end());
LightPtr light;
switch (lightInfo.Type)
{
case LT_DIRECTIONAL:
{
DirectionalLightPtr dirLight = boost::make_shared<DirectionalLight>(name);
dirLight->setDirection(lightInfo.Direction);
light = dirLight;
break;
}
case LT_POINT:
{
PointLightPtr pointLight = boost::make_shared<PointLight>(name);
pointLight->setEffectDistance(lightInfo.EffectDistance);
light = pointLight;
break;
}
default:
{
WHISPERWIND_ASSERT(false && "Donnot have this light type!");
break;
}
}
light->setColor(lightInfo.Color);
mSceneObjectMap.insert(SceneObjectMap::value_type(name, light));
mLightNamesVec.push_back(name);
return mSceneObjectMap[name] ;
}
//---------------------------------------------------------------------
const LightVector & SceneManager::getAffectedLights(const Util::AABBPtr & aabb)
{
/// Static for perfomance.
static LightVector lightVec;
lightVec.clear();
LightPtr light;
BOOST_AUTO(it, mLightNamesVec.begin());
for (it; it != mLightNamesVec.end();)
{
if (mSceneObjectMap.find(*it) == mSceneObjectMap.end())
{
it = mLightNamesVec.erase(it);
continue;
}
const SceneObjectPtr & obj = mSceneObjectMap[*it];
light = Util::checkedPtrCast<Light>(obj);
if (light->isAffected(aabb))
lightVec.push_back(light);
++it;
}
return lightVec;
}
//---------------------------------------------------------------------
void SceneManager::loadScene(const Util::Wstring & scene)
{
const ResourceManagerPtr & rm = EngineManager::getSingleton().getResourceManager();
rm->loadResource(scene);
WHISPERWIND_LOG(scene + TO_UNICODE(" scene load done!"));
/// TODO:Now put it here.
if (EngineManager::getSingleton().getEngineConfig()->getDebugRendering())
createDebugRendering();
}
//---------------------------------------------------------------------
void SceneManager::createDebugRendering()
{
BOOST_AUTO(nodePair, mSceneNodeMap.begin());
for (nodePair; nodePair != mSceneNodeMap.end(); ++nodePair)
{
const Util::Wstring & name = nodePair->second->getName();
SceneObjectPtr & obj = this->createSceneObject(DebugResource::getDebugCreateType(),
name + TO_UNICODE("_debugAABB"), name + DebugResource::getDebugNodeSuffix());
nodePair->second->attachSceneObject(obj);
}
}
}
| [
"79481268@qq.com"
] | 79481268@qq.com |
cc2465e625614c5b637af6e8c53027961deb7c71 | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/git/old_hunk_2912.cpp | 7ba4105f7c3b4b200e4911528a68f6fc0a6418c1 | [] | no_license | ccdxc/logSurvey | eaf28e9c2d6307140b17986d5c05106d1fd8e943 | 6b80226e1667c1e0760ab39160893ee19b0e9fb1 | refs/heads/master | 2022-01-07T21:31:55.446839 | 2018-04-21T14:12:43 | 2018-04-21T14:12:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 182 | cpp | cb.newlog = fdopen_lock_file(&reflog_lock, "w");
if (!cb.newlog) {
error("cannot fdopen %s (%s)",
reflog_lock.filename.buf, strerror(errno));
goto failure;
}
}
| [
"993273596@qq.com"
] | 993273596@qq.com |
088ac0b5db0863d160c30a97e1ed9c8cc7bdf5cd | 7dc6ae44724954c1da0167d184051afef86965d7 | /build/ui_aboutdialog.h | 29a1b9e7fd8a45a2e91933dc38ec324451422aec | [] | no_license | manishcoindevl/soloscoin | e1636c784f93f4bf6489dcb719a2f08846ac5c2f | d166fb50fcdcde8566ae8a81c314e682c20343e8 | refs/heads/master | 2021-07-10T22:51:22.235062 | 2017-10-10T09:22:08 | 2017-10-10T09:22:08 | 106,389,366 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,087 | h | /********************************************************************************
** Form generated from reading UI file 'aboutdialog.ui'
**
** Created by: Qt User Interface Compiler version 5.2.1
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_ABOUTDIALOG_H
#define UI_ABOUTDIALOG_H
#include <QtCore/QVariant>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QDialog>
#include <QtWidgets/QDialogButtonBox>
#include <QtWidgets/QHBoxLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QLabel>
#include <QtWidgets/QSpacerItem>
#include <QtWidgets/QVBoxLayout>
QT_BEGIN_NAMESPACE
class Ui_AboutDialog
{
public:
QHBoxLayout *horizontalLayout_2;
QLabel *label_4;
QVBoxLayout *verticalLayout_2;
QSpacerItem *verticalSpacer_2;
QHBoxLayout *horizontalLayout;
QLabel *label;
QLabel *versionLabel;
QSpacerItem *horizontalSpacer;
QLabel *copyrightLabel;
QLabel *label_2;
QSpacerItem *verticalSpacer;
QDialogButtonBox *buttonBox;
void setupUi(QDialog *AboutDialog)
{
if (AboutDialog->objectName().isEmpty())
AboutDialog->setObjectName(QStringLiteral("AboutDialog"));
AboutDialog->resize(593, 331);
horizontalLayout_2 = new QHBoxLayout(AboutDialog);
horizontalLayout_2->setObjectName(QStringLiteral("horizontalLayout_2"));
label_4 = new QLabel(AboutDialog);
label_4->setObjectName(QStringLiteral("label_4"));
QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Ignored);
sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0);
sizePolicy.setHeightForWidth(label_4->sizePolicy().hasHeightForWidth());
label_4->setSizePolicy(sizePolicy);
label_4->setPixmap(QPixmap(QString::fromUtf8(":/images/about")));
horizontalLayout_2->addWidget(label_4);
verticalLayout_2 = new QVBoxLayout();
verticalLayout_2->setObjectName(QStringLiteral("verticalLayout_2"));
verticalSpacer_2 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
verticalLayout_2->addItem(verticalSpacer_2);
horizontalLayout = new QHBoxLayout();
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout"));
label = new QLabel(AboutDialog);
label->setObjectName(QStringLiteral("label"));
label->setCursor(QCursor(Qt::IBeamCursor));
label->setTextInteractionFlags(Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse);
horizontalLayout->addWidget(label);
versionLabel = new QLabel(AboutDialog);
versionLabel->setObjectName(QStringLiteral("versionLabel"));
versionLabel->setCursor(QCursor(Qt::IBeamCursor));
versionLabel->setText(QStringLiteral("0.3.666-beta"));
versionLabel->setTextInteractionFlags(Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse);
horizontalLayout->addWidget(versionLabel);
horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
horizontalLayout->addItem(horizontalSpacer);
verticalLayout_2->addLayout(horizontalLayout);
copyrightLabel = new QLabel(AboutDialog);
copyrightLabel->setObjectName(QStringLiteral("copyrightLabel"));
copyrightLabel->setCursor(QCursor(Qt::IBeamCursor));
copyrightLabel->setTextInteractionFlags(Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse);
verticalLayout_2->addWidget(copyrightLabel);
label_2 = new QLabel(AboutDialog);
label_2->setObjectName(QStringLiteral("label_2"));
label_2->setCursor(QCursor(Qt::IBeamCursor));
label_2->setWordWrap(true);
label_2->setTextInteractionFlags(Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse);
verticalLayout_2->addWidget(label_2);
verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
verticalLayout_2->addItem(verticalSpacer);
buttonBox = new QDialogButtonBox(AboutDialog);
buttonBox->setObjectName(QStringLiteral("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Ok);
verticalLayout_2->addWidget(buttonBox);
horizontalLayout_2->addLayout(verticalLayout_2);
retranslateUi(AboutDialog);
QObject::connect(buttonBox, SIGNAL(accepted()), AboutDialog, SLOT(accept()));
QObject::connect(buttonBox, SIGNAL(rejected()), AboutDialog, SLOT(reject()));
QMetaObject::connectSlotsByName(AboutDialog);
} // setupUi
void retranslateUi(QDialog *AboutDialog)
{
AboutDialog->setWindowTitle(QApplication::translate("AboutDialog", "About SolosCoin", 0));
label->setText(QApplication::translate("AboutDialog", "<b>SolosCoin</b> version", 0));
copyrightLabel->setText(QApplication::translate("AboutDialog", "\n"
"Copyright \302\251 2009-2012 Bitcoin Developers\n"
"Copyright \302\251 2012 PeerCoin Developers\n"
"Copyright \302\251 2014 SolosCoin Developers\n"
"", 0));
label_2->setText(QApplication::translate("AboutDialog", "\n"
"This is experimental software. If you don't treat it as such, you're likely to put an eye out!\n"
"\n"
"Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php.\n"
"\n"
"This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by Eric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard.", 0));
} // retranslateUi
};
namespace Ui {
class AboutDialog: public Ui_AboutDialog {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_ABOUTDIALOG_H
| [
"deewakaar@gmail.com"
] | deewakaar@gmail.com |
10fac8e54a41056482e63ec5940b901e3c63aea9 | 1bed10351039b1c53508a8d1822f0df22e210695 | /src/opr/impl/muxing.cpp | 8ff8c67e978673bda2925f7fb94a8275cd2cea1a | [
"LicenseRef-scancode-generic-cla",
"Apache-2.0"
] | permissive | chyelang/MegEngine | 2a39857c5e0db4845b27d3c9e49f2de97f1d38d7 | 4cb7fa8e28cbe7fd23c000e4657300f1db0726ae | refs/heads/master | 2023-08-19T12:08:27.596823 | 2021-10-13T02:51:04 | 2021-10-13T03:19:30 | 250,149,702 | 0 | 0 | NOASSERTION | 2020-03-26T03:14:37 | 2020-03-26T03:14:36 | null | UTF-8 | C++ | false | false | 11,809 | cpp | /**
* \file src/opr/impl/muxing.cpp
* MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
*
* Copyright (c) 2014-2021 Megvii Inc. All rights reserved.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#include "megbrain/opr/muxing.h"
#include <atomic>
#include "megbrain/graph/event.h"
#include "megbrain/graph/grad_impl.h"
#include "megbrain/opr/io.h"
#include "megbrain/opr/tensor_manip.h"
using namespace mgb;
using namespace opr;
MGB_DYN_TYPE_OBJ_FINAL_IMPL(AllGather);
class AllGather::CopyStrategy {
struct VarState {
VarNode* var;
std::unique_ptr<CompNode::Event> cn_ready_event;
//! number of var states that depend on this
size_t nr_odep = 0;
std::atomic_int_fast32_t nr_odep_to_wake;
explicit VarState(VarNode* v) : var(v) { nr_odep_to_wake.store(0); }
void set_ready() {
mgb_assert(
!nr_odep_to_wake.load(), "val before set ready: %d",
int(nr_odep_to_wake.load()));
if (cn_ready_event) {
cn_ready_event->record();
}
nr_odep_to_wake.store(nr_odep);
}
void wait_ready() {
while (!nr_odep_to_wake.load())
;
auto remain = --nr_odep_to_wake;
mgb_assert(remain >= 0);
}
};
struct CopyInstr {
bool cross_cn = false;
VarState *src = nullptr, *dst = nullptr;
SubTensorSpec src_sub, dst_sub;
CopyInstr(
VarState* s, const SubTensorSpec& ss, VarState* d,
const SubTensorSpec& ds)
: cross_cn(s->var->comp_node() != d->var->comp_node()),
src(s),
dst(d),
src_sub(ss),
dst_sub(ds) {}
CopyInstr() = default;
void execute() {
src->wait_ready();
if (cross_cn) {
dst->var->comp_node().device_wait_event(*src->cn_ready_event);
}
dst->var->dev_tensor().sub(dst_sub).copy_from_fixlayout(
src->var->dev_tensor().sub(src_sub));
dst->set_ready();
}
};
AllGather* m_par_opr;
size_t m_odd_split_adjust = 0;
//! states of each output var
std::vector<std::vector<std::unique_ptr<VarState>>> m_var_state;
//! copy instrs grouped by comp node
CompNode::UnorderedMap<std::vector<CopyInstr>> m_copy_instr;
TensorLayout m_output_layout;
std::vector<size_t> m_axis_shape_partial_sum;
VarState* alloc_var_state(size_t out_idx) {
auto&& vec = m_var_state.at(out_idx);
vec.push_back(std::make_unique<VarState>(m_par_opr->output(out_idx)));
return vec.back().get();
}
void add_copy_instr(const CopyInstr& instr) {
m_copy_instr.at(instr.dst->var->comp_node()).push_back(instr);
auto src = instr.src;
++src->nr_odep;
if (!src->cn_ready_event && instr.cross_cn) {
src->cn_ready_event = src->var->comp_node().create_event();
}
mgb_assert(instr.src_sub.layout().eq_shape(instr.dst_sub.layout()));
}
SubTensorSpec make_sub_spec_interval(size_t begin, size_t end) {
begin = m_axis_shape_partial_sum.at(begin);
end = m_axis_shape_partial_sum.at(end);
return Slice(begin, end).apply(m_output_layout, m_par_opr->m_axis);
}
/*!
* \brief make a step for parallel copy, so that
* output[begin:end][sub(begin, end)] == input[begin:end]
*/
void make_prog_step(size_t begin, size_t end) {
mgb_assert(end >= begin + 1);
if (end == begin + 1) {
auto src = alloc_var_state(begin), dst = alloc_var_state(begin);
src->var = m_par_opr->input(begin);
add_copy_instr(
{src, SubTensorSpec::make_from_layout(src->var->layout()), dst,
make_sub_spec_interval(begin, end)});
return;
}
auto mid = begin + (end - begin) / 2;
if ((end - begin) % 2) {
mid += m_odd_split_adjust;
m_odd_split_adjust ^= 1;
}
make_prog_step(begin, mid);
make_prog_step(mid, end);
std::vector<VarState*> all_src, all_dst;
for (size_t i = begin; i < end; ++i) {
all_src.push_back(m_var_state.at(i).back().get());
all_dst.push_back(alloc_var_state(i));
}
auto copy_sub = [&](size_t src_begin, size_t src_end, size_t dst_begin,
size_t dst_end) {
auto sub = make_sub_spec_interval(src_begin, src_end);
for (size_t i = dst_begin; i < dst_end; ++i) {
size_t other = i - dst_begin + src_begin;
if (other == src_end)
other = src_begin + (src_end - src_begin) / 2;
mgb_assert(src_begin <= other && other < src_end);
add_copy_instr(
{all_src.at(other - begin), sub, all_dst.at(i - begin), sub});
}
};
copy_sub(begin, mid, mid, end);
copy_sub(mid, end, begin, mid);
}
public:
void reset(AllGather* opr) {
m_par_opr = opr;
m_var_state.resize(opr->output().size());
for (auto&& i : m_var_state)
i.clear();
m_copy_instr.clear();
for (auto i : opr->output())
m_copy_instr[i->comp_node()].clear();
m_output_layout.dtype = opr->output(0)->dtype();
m_output_layout.init_contiguous_stride(opr->output(0)->shape());
m_axis_shape_partial_sum.clear();
m_axis_shape_partial_sum.push_back(0);
for (auto i : opr->input()) {
auto real_axis = opr->m_axis;
if (real_axis < 0)
real_axis += i->shape().ndim;
m_axis_shape_partial_sum.push_back(
m_axis_shape_partial_sum.back() + i->shape().shape[real_axis]);
}
make_prog_step(0, m_par_opr->output().size());
}
void execute_on_comp_node(const CompNode& comp_node) {
for (auto&& state : m_var_state) {
auto s0 = state.front().get();
if (s0->var->comp_node() == comp_node)
s0->set_ready();
}
for (auto&& instr : m_copy_instr.at(comp_node)) {
instr.execute();
}
}
};
void AllGather::get_output_var_shape(
const TensorShapeArray& inp_shape, TensorShapeArray& out_shape) const {
TensorShape oshp;
for (auto&& ishp : inp_shape) {
if (&ishp == &inp_shape[0]) {
oshp = ishp;
mgb_assert(
m_axis < static_cast<int>(ishp.ndim) &&
m_axis >= -static_cast<int>(ishp.ndim),
"AllGather: axis=%d ndim=%zd", m_axis, ishp.ndim);
continue;
}
auto real_axis = m_axis;
if (real_axis < 0)
real_axis += ishp.ndim;
mgb_assert(oshp.ndim == ishp.ndim);
for (int i = 0; i < static_cast<int>(oshp.ndim); ++i) {
if (i == real_axis) {
oshp.shape[i] += ishp.shape[i];
} else {
mgb_assert(
oshp.shape[i] == ishp.shape[i],
"shape mismatch: axis=%d oshp=%s ishp=%s", real_axis,
oshp.to_string().c_str(), ishp.to_string().c_str());
}
}
}
for (auto&& i : out_shape)
i = oshp;
}
void AllGather::init_output_comp_node() {
mgb_assert(
config().comp_node().empty(),
"output comp nodes for AllGather could not be manually specified and"
" must be the same as that of inputs");
for (size_t i = 0; i < input().size(); ++i) {
output(i)->comp_node(input(i)->comp_node());
}
}
cg::OperatorNodeBase::NodeProp* AllGather::do_make_node_prop() const {
auto prop = OperatorNodeBase::do_make_node_prop();
prop->add_flag(NodeProp::Flag::CROSS_COMP_NODE_MEMORY);
return prop;
}
void AllGather::on_mem_status_changed() {
if (m_input_layout.size() == input().size()) {
bool valid = true;
for (size_t i = 0; i < m_input_layout.size(); ++i) {
if (!m_input_layout[i].eq_layout(input(i)->layout())) {
valid = false;
break;
}
}
if (valid)
return;
}
m_input_layout.resize(input().size());
for (size_t i = 0; i < m_input_layout.size(); ++i)
m_input_layout[i] = input(i)->layout();
m_copy_strategy->reset(this);
}
cg::OperatorNodeBase::OprEventCallback AllGather::get_opr_event_callback() {
return {std::bind(&AllGather::on_mem_status_changed, this)};
}
void AllGather::do_execute(ExecEnv& env) {
CompNode::UnorderedSet used_cn;
for (auto i : output()) {
if (!used_cn.insert(i->comp_node()).second)
continue;
auto runner = [this, cn = i->comp_node()]() {
owner_graph()->event().signal_inplace<cg::event::BeforeKernel>(this, cn);
m_copy_strategy->execute_on_comp_node(cn);
owner_graph()->event().signal_inplace<cg::event::AfterKernel>(this, cn);
};
env.dispatch_on_comp_node(i->comp_node(), runner);
}
}
VarNodeArray AllGather::grad(const VarNodeArray& out_grad) {
CompNode::UnorderedMap<VarNode*> cn_reduced;
for (auto i : out_grad) {
auto&& dst = cn_reduced[i->comp_node()];
if (!dst)
dst = i;
else
dst = (SymbolVar{dst} + i).node();
}
VarNode* og_sum = nullptr;
for (auto i : cn_reduced) {
if (!og_sum) {
og_sum = i.second;
} else {
auto copy = Copy::make(i.second, og_sum->comp_node());
og_sum = (SymbolVar{og_sum} + copy).node();
}
}
OperatorNodeConfig::CompNodeArray sp_cn;
SymbolVarArray partition;
for (auto i : input()) {
partition.push_back(GetVarShape::make(i, m_axis));
sp_cn.push_back(i->comp_node());
}
return cg::to_var_node_array(Split::make(
og_sum, Split::Options::make_partition(m_axis, partition),
OperatorNodeConfig().comp_node_arr(sp_cn)));
}
#if MGB_ENABLE_GRAD
MGB_IMPL_OPR_GRAD(AllGather) {
return const_cast<AllGather&>(opr).grad(out_grad);
}
#endif
void AllGather::on_output_comp_node_stream_changed() {}
AllGather::AllGather(
const VarNodeArray& input, int axis, const OperatorNodeConfig& config)
: Super{input.at(0)->owner_graph(), config, "allgather", {input.at(0)}},
m_copy_strategy(std::make_unique<CopyStrategy>()),
m_axis(axis) {
for (auto i : input) {
add_input({i});
add_output(i->name());
}
}
SymbolVarArray AllGather::make(
const SymbolVarArray& input, int axis, const OperatorNodeConfig& config) {
mgb_assert(!input.empty());
mgb_assert(
input[0].node()->owner_graph()->options().async_exec_level &&
input[0].node()->comp_node().device_type() !=
CompNode::DeviceType::CPU,
"currently only AllGather between gpus supported");
VarNodeArray inpvar;
for (auto&& i : input)
inpvar.push_back(i.node());
auto opr = inpvar[0]->owner_graph()->insert_opr(
std::make_unique<AllGather>(inpvar, axis, config));
SymbolVarArray rst;
for (auto i : opr->output())
rst.push_back(i);
return rst;
}
AllGather::~AllGather() = default;
// vim: syntax=cpp.doxygen foldmethod=marker foldmarker=f{{{,f}}}
| [
"megengine@megvii.com"
] | megengine@megvii.com |
9d969e2cdae75061f820214c2e66d677db7108ee | 9871be83114d2b14204d4fefb72a0c4026aa58f4 | /subroutines/four_motif_orig.cpp | e3ce1ba3b10e6493b62f0c9476a5a02a13a01ef6 | [] | no_license | SysSynBio/network_sampling_MC | 7858b574ba0377ccc497dbc1407532a314bb01a1 | 5271249281b49fbbbe7e93c9c9320646766f93d2 | refs/heads/master | 2023-03-15T14:58:15.383793 | 2018-05-25T19:42:07 | 2018-05-25T19:42:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,128 | cpp | #include "net_props.h"
void four_motif_orig(int N, int *Adj, double **fourmer, double *histfour, double**hist, int *typelist)
{
/*There are 6 subgraphs that have 4 nodes*/
/*two have 3 edges*/
/*two have 4 edges*/
/*one has 5 edges*/
/*one has 6 edges*/
/*All self loops are ignored.*/
int i,j, k, l;
int ind;
double factor;
int Ntype=6;
int Nrepeats=2;//max number of graphs with given edge number
//never less than 3 edges
hist[3][0]=0;
hist[3][1]=0;
hist[4][0]=0;
hist[4][1]=0;
hist[5][0]=0;
hist[6][0]=0;
cout <<"in four subgraph motifs! "<<endl;
/*Try using the adjacency matrix*/
int nsub=4;
int *origlist=new int[nsub];
int t=0;//this index keeps track of which fourmer we're on
int flag, ne;
int type;
// cout <<"Current adjacency in four motif "<<endl;
// for(i=0;i<N;i++){
// for(j=0;j<N;j++){
// //cout <<Adj[i*N+j]<<'\t';
// }
// //cout <<endl;
// }
for(i=0;i<N;i++){
origlist[0]=i;
for(j=i+1;j<N;j++){
origlist[1]=j;
if(Adj[i*N+j]==1){
//these two nodes are connected, find a third partner
//first loop over i's partners.
for(k=0;k<N;k++){
//make sure k is not the same as j
origlist[2]=k;
if(k!=j && k!=i){
if(Adj[i*N+k]==1){
//now k is the third component and is bound to i
/*find a fourth component by looping over partners of i, and j, and k.
each of those subnetworks could be distinct*/
for(l=0;l<N;l++){
if(l!=k &&l!=i &&l!=j){
three_ways(i, j, k, l, Adj, N, t, fourmer, hist, origlist, typelist);
}
}//end looping over l
}
if(Adj[j*N+k]==1){
//now k is the third component and is bound to J
/*find a fourth component by looping over partners of i, and j, and k.
each of those subnetworks could be distinct*/
for(l=0;l<N;l++){
if(l!=k &&l!=i &&l!=j){
three_ways(j, i, k, l, Adj, N, t, fourmer, hist, origlist, typelist);//i and j swap positions
}
}//end looping over l
}
}
}//end looping over k
}
}//end looping over j
}//end looping over i
/*Now count total number of subgraphs*/
double total=hist[3][0]+hist[3][1]+hist[4][0]+hist[4][1]+hist[5][0]+hist[6][0];
cout <<"total 4-mers: "<<total<<' '<<t<<endl;
cout <<"Three edges, star shape: "<< hist[3][0]*1.0/(1.0*total)<<endl;
cout <<"Three edges, square: "<<hist[3][1]*1.0/(1.0*total)<<endl;
cout <<"Four edges, star: "<<hist[4][0]*1.0/(1.0*total)<<endl;
cout <<"Four edges, square: "<<hist[4][1]*1.0/(1.0*total)<<endl;
cout <<"Five edges: "<<hist[5][0]*1.0/(1.0*total)<<endl;
cout <<"Six edges: "<<hist[6][0]*1.0/(1.0*total)<<endl;
cout <<"List fourmers: "<<total<<endl;
histfour[0]=hist[3][0]*1.0/(1.0*total);
histfour[1]= hist[3][1]*1.0/(1.0*total);
histfour[2]=hist[4][0]*1.0/(1.0*total);
histfour[3]=hist[4][1]*1.0/(1.0*total);
histfour[4]=hist[5][0]*1.0/(1.0*total);
histfour[5]=hist[6][0]*1.0/(1.0*total);
// for(i=0;i<total;i++){
// cout <<fourmer[i][0]<<' '<<fourmer[i][1]<<' '<<fourmer[i][2]<<' '<<fourmer[i][3]<<' '<<typelist[i]<<endl;
//}
delete[] origlist;
}
| [
"mejohnson81@gmail.com"
] | mejohnson81@gmail.com |
80244898420d1f08237ff2936c3724e951f57c1e | 12a149c91541243f7e0f9b9e834e7cea3be83ab9 | /ash/app_list/views/app_list_bubble_view_unittest.cc | 1d70be329a638f8645fd2fa41af2c309d7743921 | [
"BSD-3-Clause"
] | permissive | liutao5/chromium | 6840deed48ae77e961cbf7969519d6adcfecab31 | b4da5b0d03ed5f5f1961caca5e3b1e68889cdfcc | refs/heads/main | 2023-06-28T18:05:01.192638 | 2021-09-03T07:28:50 | 2021-09-03T07:28:50 | 402,694,820 | 1 | 0 | BSD-3-Clause | 2021-09-03T08:08:55 | 2021-09-03T08:08:54 | null | UTF-8 | C++ | false | false | 12,276 | cc | // Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/app_list/views/app_list_bubble_view.h"
#include <memory>
#include <string>
#include <utility>
#include "ash/app_list/app_list_bubble_presenter.h"
#include "ash/app_list/app_list_controller_impl.h"
#include "ash/app_list/model/search/test_search_result.h"
#include "ash/app_list/test/app_list_test_helper.h"
#include "ash/app_list/test_app_list_client.h"
#include "ash/app_list/views/app_list_bubble_apps_page.h"
#include "ash/app_list/views/app_list_bubble_search_page.h"
#include "ash/app_list/views/assistant/app_list_bubble_assistant_page.h"
#include "ash/app_list/views/recent_apps_view.h"
#include "ash/app_list/views/search_box_view.h"
#include "ash/constants/ash_features.h"
#include "ash/shell.h"
#include "ash/style/ash_color_provider.h"
#include "ash/system/tray/tray_constants.h"
#include "ash/test/ash_test_base.h"
#include "base/run_loop.h"
#include "base/strings/string_number_conversions.h"
#include "base/test/scoped_feature_list.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/compositor/layer.h"
#include "ui/events/keycodes/keyboard_codes_posix.h"
#include "ui/gfx/geometry/point.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/views/controls/image_view.h"
#include "ui/views/controls/textfield/textfield.h"
#include "ui/views/widget/widget.h"
using views::Widget;
namespace ash {
namespace {
void AddSearchResult(const std::string& id, const std::u16string& title) {
auto search_result = std::make_unique<TestSearchResult>();
search_result->set_result_id(id);
search_result->set_display_type(SearchResultDisplayType::kList);
search_result->set_title(title);
Shell::Get()->app_list_controller()->GetSearchModel()->results()->Add(
std::move(search_result));
}
void AddRecentApps(int num_apps) {
auto* search_model = Shell::Get()->app_list_controller()->GetSearchModel();
for (int i = 0; i < num_apps; i++) {
auto result = std::make_unique<TestSearchResult>();
result->set_result_id(base::NumberToString(i));
result->set_result_type(AppListSearchResultType::kInstalledApp);
// TODO(crbug.com/1216662): Replace with a real display type after the ML
// team gives us a way to query directly for recent apps.
result->set_display_type(SearchResultDisplayType::kChip);
search_model->results()->Add(std::move(result));
}
}
AppListBubblePresenter* GetBubblePresenter() {
return Shell::Get()->app_list_controller()->bubble_presenter_for_test();
}
views::View* GetSeparator() {
return GetBubblePresenter()->bubble_view_for_test()->separator_for_test();
}
// Simulates the Assistant being enabled.
void SimulateAssistantEnabled() {
Shell::Get()
->app_list_controller()
->GetSearchModel()
->search_box()
->SetShowAssistantButton(true);
}
class AppListBubbleViewTest : public AshTestBase {
public:
AppListBubbleViewTest() {
scoped_features_.InitAndEnableFeature(features::kAppListBubble);
}
~AppListBubbleViewTest() override = default;
// Shows the app list on the primary display.
void ShowAppList() { GetAppListTestHelper()->ShowAppList(); }
void AddAppItems(int num_items) {
GetAppListTestHelper()->AddAppItems(num_items);
}
void ClickButton(views::Button* button) {
GetEventGenerator()->MoveMouseTo(button->GetBoundsInScreen().CenterPoint());
GetEventGenerator()->ClickLeftButton();
}
SearchBoxView* GetSearchBoxView() {
return GetAppListTestHelper()->GetBubbleSearchBoxView();
}
AppListBubbleAppsPage* GetAppsPage() {
return GetAppListTestHelper()->GetBubbleAppsPage();
}
AppListBubbleSearchPage* GetSearchPage() {
return GetAppListTestHelper()->GetBubbleSearchPage();
}
AppListBubbleAssistantPage* GetAssistantPage() {
return GetAppListTestHelper()->GetBubbleAssistantPage();
}
base::test::ScopedFeatureList scoped_features_;
};
TEST_F(AppListBubbleViewTest, LayerConfiguration) {
ShowAppList();
// Verify that nothing has changed the layer configuration.
ui::Layer* layer = GetBubblePresenter()->bubble_view_for_test()->layer();
ASSERT_TRUE(layer);
EXPECT_FALSE(layer->fills_bounds_opaquely());
EXPECT_TRUE(layer->is_fast_rounded_corner());
EXPECT_EQ(layer->background_blur(), kUnifiedMenuBackgroundBlur);
EXPECT_EQ(layer->background_color(),
AshColorProvider::Get()->GetBaseLayerColor(
AshColorProvider::BaseLayerType::kTransparent80));
}
// Tests some basic layout coordinates, because we don't have screenshot tests.
// See go/cros-launcher-spec for layout.
TEST_F(AppListBubbleViewTest, Layout) {
ShowAppList();
// Check the bounds of the search box search icon.
auto* search_box_view = GetSearchBoxView();
auto* search_icon = search_box_view->get_search_icon_for_test();
gfx::Rect search_icon_bounds =
search_icon->ConvertRectToWidget(search_icon->GetLocalBounds());
EXPECT_EQ("16,16 24x24", search_icon_bounds.ToString());
// Check height of search box view.
EXPECT_EQ(56, search_box_view->height());
// The separator is immediately under the search box.
gfx::Point separator_origin;
views::View::ConvertPointToWidget(GetSeparator(), &separator_origin);
EXPECT_EQ(0, separator_origin.x());
EXPECT_EQ(search_box_view->height(), separator_origin.y());
}
TEST_F(AppListBubbleViewTest, OpeningBubbleFocusesSearchBox) {
ShowAppList();
SearchBoxView* search_box_view = GetSearchBoxView();
EXPECT_TRUE(search_box_view->search_box()->HasFocus());
EXPECT_TRUE(search_box_view->is_search_box_active());
}
TEST_F(AppListBubbleViewTest, SearchBoxTextUsesPrimaryTextColor) {
ShowAppList();
views::Textfield* search_box = GetSearchBoxView()->search_box();
EXPECT_EQ(search_box->GetTextColor(),
AshColorProvider::Get()->GetContentLayerColor(
AshColorProvider::ContentLayerType::kTextColorPrimary));
}
TEST_F(AppListBubbleViewTest, SearchBoxShowsAssistantButton) {
SimulateAssistantEnabled();
ShowAppList();
// By default the assistant button is visible.
SearchBoxView* view = GetSearchBoxView();
EXPECT_TRUE(view->assistant_button()->GetVisible());
EXPECT_FALSE(view->close_button()->GetVisible());
// Typing text shows the close button instead.
PressAndReleaseKey(ui::VKEY_A);
EXPECT_FALSE(view->assistant_button()->GetVisible());
EXPECT_TRUE(view->close_button()->GetVisible());
}
TEST_F(AppListBubbleViewTest, ClickingAssistantButtonShowsAssistantPage) {
SimulateAssistantEnabled();
ShowAppList();
SearchBoxView* search_box = GetSearchBoxView();
ClickButton(search_box->assistant_button());
EXPECT_FALSE(search_box->GetVisible());
EXPECT_FALSE(GetSeparator()->GetVisible());
EXPECT_FALSE(GetAppsPage()->GetVisible());
EXPECT_FALSE(GetSearchPage()->GetVisible());
EXPECT_TRUE(GetAssistantPage()->GetVisible());
}
TEST_F(AppListBubbleViewTest, SearchBoxCloseButton) {
ShowAppList();
PressAndReleaseKey(ui::VKEY_A);
// Close button is visible after typing text.
SearchBoxView* search_box_view = GetSearchBoxView();
EXPECT_TRUE(search_box_view->close_button()->GetVisible());
EXPECT_FALSE(search_box_view->search_box()->GetText().empty());
// Clicking the close button clears the search, but the search box is still
// focused/active.
ClickButton(search_box_view->close_button());
EXPECT_FALSE(search_box_view->close_button()->GetVisible());
EXPECT_TRUE(search_box_view->search_box()->GetText().empty());
EXPECT_TRUE(search_box_view->search_box()->HasFocus());
EXPECT_TRUE(search_box_view->is_search_box_active());
}
TEST_F(AppListBubbleViewTest, AppsPageShownByDefault) {
ShowAppList();
EXPECT_TRUE(GetAppsPage()->GetVisible());
EXPECT_FALSE(GetSearchPage()->GetVisible());
EXPECT_FALSE(GetAssistantPage()->GetVisible());
}
TEST_F(AppListBubbleViewTest, TypingTextShowsSearchPage) {
ShowAppList();
AppListBubbleAppsPage* apps_page = GetAppsPage();
AppListBubbleSearchPage* search_page = GetSearchPage();
// Type some text.
PressAndReleaseKey(ui::VKEY_A);
// Search page is shown.
EXPECT_FALSE(apps_page->GetVisible());
EXPECT_TRUE(search_page->GetVisible());
// Backspace to remove the text.
PressAndReleaseKey(ui::VKEY_BACK);
// Apps page is shown.
EXPECT_TRUE(apps_page->GetVisible());
EXPECT_FALSE(search_page->GetVisible());
}
TEST_F(AppListBubbleViewTest, TypingTextStartsSearch) {
TestAppListClient* client = GetAppListTestHelper()->app_list_client();
ShowAppList();
PressAndReleaseKey(ui::VKEY_A);
EXPECT_EQ(client->last_search_query(), u"a");
PressAndReleaseKey(ui::VKEY_B);
EXPECT_EQ(client->last_search_query(), u"ab");
}
TEST_F(AppListBubbleViewTest, BackActionsClearSearch) {
ShowAppList();
SearchBoxView* search_box_view = GetSearchBoxView();
PressAndReleaseKey(ui::VKEY_A);
EXPECT_FALSE(search_box_view->search_box()->GetText().empty());
PressAndReleaseKey(ui::VKEY_BROWSER_BACK);
EXPECT_TRUE(search_box_view->search_box()->GetText().empty());
EXPECT_TRUE(search_box_view->is_search_box_active());
PressAndReleaseKey(ui::VKEY_A);
EXPECT_FALSE(search_box_view->search_box()->GetText().empty());
PressAndReleaseKey(ui::VKEY_ESCAPE);
EXPECT_TRUE(search_box_view->search_box()->GetText().empty());
EXPECT_TRUE(search_box_view->is_search_box_active());
}
TEST_F(AppListBubbleViewTest, BackActionsCloseAppList) {
ShowAppList();
GetAppListTestHelper()->CheckVisibility(true);
PressAndReleaseKey(ui::VKEY_BROWSER_BACK);
GetAppListTestHelper()->CheckVisibility(false);
ShowAppList();
GetAppListTestHelper()->CheckVisibility(true);
PressAndReleaseKey(ui::VKEY_ESCAPE);
GetAppListTestHelper()->CheckVisibility(false);
}
TEST_F(AppListBubbleViewTest, CanSelectSearchResults) {
ShowAppList();
// Can't select results, search page isn't visible.
AppListBubbleView* view = GetBubblePresenter()->bubble_view_for_test();
EXPECT_FALSE(view->CanSelectSearchResults());
// Typing a key switches to the search page, but we still don't have results.
PressAndReleaseKey(ui::VKEY_A);
EXPECT_FALSE(view->CanSelectSearchResults());
// Search results becoming available allows keyboard selection.
AddSearchResult("id", u"title");
base::RunLoop().RunUntilIdle(); // Update search model observers.
EXPECT_TRUE(view->CanSelectSearchResults());
}
TEST_F(AppListBubbleViewTest, DownArrowMovesFocusToApps) {
// Add an app, but no "Continue" suggestions.
AddAppItems(1);
ShowAppList();
auto* apps_grid_view = GetAppListTestHelper()->GetScrollableAppsGridView();
AppListItemView* app_item = apps_grid_view->GetItemViewAt(0);
SearchBoxView* search_box_view = GetSearchBoxView();
EXPECT_TRUE(search_box_view->search_box()->HasFocus());
// Pressing down arrow moves focus into apps.
PressAndReleaseKey(ui::VKEY_DOWN);
EXPECT_FALSE(search_box_view->search_box()->HasFocus());
EXPECT_TRUE(apps_grid_view->IsSelectedView(app_item));
EXPECT_TRUE(app_item->HasFocus());
// Pressing up arrow moves focus back to search box.
PressAndReleaseKey(ui::VKEY_UP);
EXPECT_TRUE(search_box_view->search_box()->HasFocus());
EXPECT_FALSE(apps_grid_view->has_selected_view());
EXPECT_FALSE(app_item->HasFocus());
}
TEST_F(AppListBubbleViewTest, DownArrowSelectsRecentsThenApps) {
// Create enough apps to require scrolling.
AddAppItems(50);
// Create enough recent apps that the recents section will show.
const int kNumRecentApps = 5;
AddRecentApps(kNumRecentApps);
ShowAppList();
// Pressing down arrow moves focus through the recent apps. It does not
// trigger ScrollView scrolling.
auto* recent_apps = GetAppListTestHelper()->GetBubbleRecentAppsView();
auto* focus_manager = GetAppsPage()->GetFocusManager();
for (int i = 0; i < kNumRecentApps; i++) {
PressAndReleaseKey(ui::VKEY_DOWN);
EXPECT_TRUE(recent_apps->Contains(focus_manager->GetFocusedView()));
}
// Pressing down arrow again moves focus into the apps grid.
PressAndReleaseKey(ui::VKEY_DOWN);
auto* apps_grid = GetAppListTestHelper()->GetScrollableAppsGridView();
EXPECT_TRUE(apps_grid->Contains(focus_manager->GetFocusedView()));
}
} // namespace
} // namespace ash
| [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
608aeb66f1849c2419d16ce9dd19c58daeb86b15 | 75f10916127eb39e005deb80d202a1101febce17 | /hts/hts/common.cpp | bc392c87203fe9901547085df9b04ea2a68860ee | [] | no_license | 340211173/Tunnel-based-on-HTTP- | 61b5b2cf6705dfb31db0d8ffbc9935540a358132 | f515ae47766bbd24e1561247466a4704b8bcba4d | refs/heads/master | 2021-01-15T16:57:05.061784 | 2015-08-16T04:25:07 | 2015-08-16T04:25:07 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,856 | cpp | #include <WinSock2.h>
#include "common.h"
/*
函数说明: 从套接字fd接收收据然后将其通过隧道转发出去;
*/
int handle_device_input(Tunnel *tunnel,SOCKET fd)
{
char buf[10240];
int n,m;
n=recv(fd,buf,sizeof(buf),0);
if(n==0||n==SOCKET_ERROR)return n;
buf[n] = '\0';
printf("HTTP 隧道服务端从外部程序接收到数据为:%s\n",buf);
m=tunnel_write(tunnel,buf,n);
return m;
}
int handle_tunnel_input(Tunnel *tunnel,SOCKET fd)
{
char buf[10240];
int n,m;
n=tunnel_read( tunnel,buf,sizeof(buf));
if(n<=0)return n;
buf[n] = '\0';
printf("HTTP 隧道服务端从隧道接收到的数据为:%s\n",buf);
m = write_all ( fd, buf , n );
return m;
}
/*
函数说明:创建一个服务器套接字,并使其在端口port侦听;
*/
SOCKET server_socket ( int port)
{
struct sockaddr_in address;
int i;
SOCKET s;
s=socket(AF_INET,SOCK_STREAM,IPPROTO_TCP);
if(INVALID_SOCKET==s)
{
return INVALID_SOCKET;
}
i=1;
memset(&address,0,sizeof(address));
address.sin_family=AF_INET;
address.sin_port=htons((u_short)port);
address.sin_addr.s_addr=htonl(ADDR_ANY);
if(bind(s,(struct sockaddr *)&address,sizeof(address))==SOCKET_ERROR)
{
closesocket(s);
return INVALID_SOCKET;
}
if(listen(s,SOMAXCONN)==-1)
{
closesocket(s);
return INVALID_SOCKET;
}
return s;
}
/*
函数说明:主机名:端口号==>sockaddr_in结构体;
*/
int set_address (struct sockaddr_in *address,
const char *host, int port)
{
memset(address,0,sizeof(*address));
address->sin_family=AF_INET;
address->sin_port=htons(port);
address->sin_addr.s_addr=inet_addr(host);
if(address->sin_addr.s_addr==INADDR_NONE)
{
struct hostent *ent;
ent=gethostbyname(host);
if(ent==NULL)return -1;
memcpy(&(address->sin_addr.s_addr),ent->h_addr,(unsigned)ent->h_length);
}
return 0;
} | [
"1046395839@qq.com"
] | 1046395839@qq.com |
2f1c83b3b21a6fad4b38ceec2e5acc757db2f9b6 | a8788f2b6595c5590f5b663bf6968c363ae04fac | /src/software/firmware/MyoHand_v1_Project/lib/ros_lib/pcl_msgs/ModelCoefficients.h | 6bfa2522461a4afc9582ba50e46ec11425417e52 | [
"CC0-1.0"
] | permissive | orthopus/01-myohand | 2429b35f5bc2cc0db4b023433159cd72c0ebc67b | 227b8a6284b839d187f1f380dbe83ce81ca057b8 | refs/heads/master | 2023-03-22T20:34:36.954773 | 2021-03-10T22:40:15 | 2021-03-10T22:40:15 | 331,913,745 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,139 | h | #ifndef _ROS_pcl_msgs_ModelCoefficients_h
#define _ROS_pcl_msgs_ModelCoefficients_h
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include "ros/msg.h"
#include "std_msgs/Header.h"
namespace pcl_msgs
{
class ModelCoefficients : public ros::Msg
{
public:
typedef std_msgs::Header _header_type;
_header_type header;
uint32_t values_length;
typedef float _values_type;
_values_type st_values;
_values_type * values;
ModelCoefficients():
header(),
values_length(0), values(NULL)
{
}
virtual int serialize(unsigned char *outbuffer) const
{
int offset = 0;
offset += this->header.serialize(outbuffer + offset);
*(outbuffer + offset + 0) = (this->values_length >> (8 * 0)) & 0xFF;
*(outbuffer + offset + 1) = (this->values_length >> (8 * 1)) & 0xFF;
*(outbuffer + offset + 2) = (this->values_length >> (8 * 2)) & 0xFF;
*(outbuffer + offset + 3) = (this->values_length >> (8 * 3)) & 0xFF;
offset += sizeof(this->values_length);
for( uint32_t i = 0; i < values_length; i++){
union {
float real;
uint32_t base;
} u_valuesi;
u_valuesi.real = this->values[i];
*(outbuffer + offset + 0) = (u_valuesi.base >> (8 * 0)) & 0xFF;
*(outbuffer + offset + 1) = (u_valuesi.base >> (8 * 1)) & 0xFF;
*(outbuffer + offset + 2) = (u_valuesi.base >> (8 * 2)) & 0xFF;
*(outbuffer + offset + 3) = (u_valuesi.base >> (8 * 3)) & 0xFF;
offset += sizeof(this->values[i]);
}
return offset;
}
virtual int deserialize(unsigned char *inbuffer)
{
int offset = 0;
offset += this->header.deserialize(inbuffer + offset);
uint32_t values_lengthT = ((uint32_t) (*(inbuffer + offset)));
values_lengthT |= ((uint32_t) (*(inbuffer + offset + 1))) << (8 * 1);
values_lengthT |= ((uint32_t) (*(inbuffer + offset + 2))) << (8 * 2);
values_lengthT |= ((uint32_t) (*(inbuffer + offset + 3))) << (8 * 3);
offset += sizeof(this->values_length);
if(values_lengthT > values_length)
this->values = (float*)realloc(this->values, values_lengthT * sizeof(float));
values_length = values_lengthT;
for( uint32_t i = 0; i < values_length; i++){
union {
float real;
uint32_t base;
} u_st_values;
u_st_values.base = 0;
u_st_values.base |= ((uint32_t) (*(inbuffer + offset + 0))) << (8 * 0);
u_st_values.base |= ((uint32_t) (*(inbuffer + offset + 1))) << (8 * 1);
u_st_values.base |= ((uint32_t) (*(inbuffer + offset + 2))) << (8 * 2);
u_st_values.base |= ((uint32_t) (*(inbuffer + offset + 3))) << (8 * 3);
this->st_values = u_st_values.real;
offset += sizeof(this->st_values);
memcpy( &(this->values[i]), &(this->st_values), sizeof(float));
}
return offset;
}
const char * getType(){ return "pcl_msgs/ModelCoefficients"; };
const char * getMD5(){ return "ca27dea75e72cb894cd36f9e5005e93e"; };
};
}
#endif
| [
"mona.jamois@orthopus.com"
] | mona.jamois@orthopus.com |
87e9a06c017587c6526bc9a8161016188ea835c8 | a9ab72c3dd7fdfe8b6e0b1b5e296bf4c39b9989d | /round2/leetcode328.cpp | 50d8e7126cab91b3de221e1e4c03b2c2986b8bc5 | [] | no_license | keqhe/leetcode | cd82fc3d98b7fc71a9a08c5e438aa1f82737d76f | 86b2a453255c909f94f9ea3be7f2a97a6680a854 | refs/heads/master | 2020-12-24T06:38:15.444432 | 2016-12-07T19:15:02 | 2016-12-07T19:15:02 | 48,405,123 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 932 | cpp |
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* oddEvenList(ListNode* head) {
if (!head || !head->next || !head->next->next) {
return head;
}
struct ListNode * l1 = head;
struct ListNode * l2 = head->next;
struct ListNode * p = head->next->next;
struct ListNode * l2_head = l2;
int cnt = 1;
while (p) {
struct ListNode * tmp = p;
p = p->next;
if (cnt % 2 == 1) {
l1->next = tmp;
l1 = l1->next;
}
else {
l2->next = tmp;
l2 = l2->next;
}
cnt ++;
}
l2->next = NULL;//important
l1->next = l2_head;
return head;
}
};
| [
"keqhe@cs.wisc.edu"
] | keqhe@cs.wisc.edu |
35f8e36b2f96ee89925ec6b2f6badeeec20c9ddf | 6a11fe932e93bd2bdd4afa863f82136abad42c40 | /TraceInfrastructure/Passes/SplitAllocas.cpp | f3a6c9ccf52b73a4a1236cbd4e8381846053eb8e | [] | no_license | mackncheesiest/TraceAtlas | 9c6714f83e9a239455580c91471ce74bc7988b40 | 0950893e792caacfced91dfad20df6d380a36888 | refs/heads/master | 2022-07-08T19:41:00.486768 | 2021-02-25T21:17:53 | 2021-02-25T21:17:53 | 229,296,196 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,133 | cpp | #include "Passes/SplitAllocas.h"
#include <llvm/Pass.h>
#include <llvm/IR/Function.h>
#include <llvm/IR/Instruction.h>
#include <llvm/IR/Instructions.h>
#include <llvm/IR/Type.h>
#include <llvm/Support/raw_ostream.h>
using namespace llvm;
namespace DashTracer::Passes {
bool SplitAllocas::runOnFunction(Function &F) {
BasicBlock &firstBB = F.front();
AllocaInst *furthestAlloca = nullptr;
for (Instruction &I : firstBB) {
if (auto *AI = dyn_cast<AllocaInst>(&I)) {
furthestAlloca = AI;
}
}
if (furthestAlloca != nullptr) {
// We need to actually split at the immediate next instruction
if (furthestAlloca->getNextNode() != nullptr) {
firstBB.splitBasicBlock(furthestAlloca->getNextNode());
return true;
}
}
return false;
}
char SplitAllocas::ID = 0;
static RegisterPass<SplitAllocas> Z("SplitAllocas", "Splits the first basic block of each function such that all allocas are in their own basic block", false, false);
} // namespace DashTracer::Passes | [
"mackncheesiest@gmail.com"
] | mackncheesiest@gmail.com |
d84656133c5e759b342eb64fd7bf8800fec865f5 | 877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a | /app/src/main/cpp/dir7941/dir7942/dir8062/dir8063/dir8254/dir8444/dir8720/dir10555/dir10556/file10681.cpp | 7fb2cc825281a5a6351d376b17c7d10cdb3c5553 | [] | no_license | tgeng/HugeProject | 829c3bdfb7cbaf57727c41263212d4a67e3eb93d | 4488d3b765e8827636ce5e878baacdf388710ef2 | refs/heads/master | 2022-08-21T16:58:54.161627 | 2020-05-28T01:54:03 | 2020-05-28T01:54:03 | 267,468,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 115 | cpp | #ifndef file10681
#error "macro file10681 must be defined"
#endif
static const char* file10681String = "file10681"; | [
"tgeng@google.com"
] | tgeng@google.com |
3cf3902b7a3532c15edbed0b6a7234119c621e13 | dca88305f8482b803120c84012680be4790c8e7b | /Test/Test/AssemblyInfo.cpp | 4d64ee3715e8c7cb5735364ed08568c9acec8f8a | [] | no_license | GiannisAulo/ProjectOptikos | c252253c87acd5bc32f84105f11046be06ccde99 | f89f40972f1d447541f5c031f41385b95a34245c | refs/heads/master | 2023-03-07T13:35:32.740216 | 2021-02-16T14:27:20 | 2021-02-16T14:27:20 | 339,424,410 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,284 | cpp | #include "stdafx.h"
using namespace System;
using namespace System::Reflection;
using namespace System::Runtime::CompilerServices;
using namespace System::Runtime::InteropServices;
using namespace System::Security::Permissions;
//
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
//
[assembly:AssemblyTitleAttribute("Test")];
[assembly:AssemblyDescriptionAttribute("")];
[assembly:AssemblyConfigurationAttribute("")];
[assembly:AssemblyCompanyAttribute("")];
[assembly:AssemblyProductAttribute("Test")];
[assembly:AssemblyCopyrightAttribute("Copyright (c) 2020")];
[assembly:AssemblyTrademarkAttribute("")];
[assembly:AssemblyCultureAttribute("")];
//
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the value or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly:AssemblyVersionAttribute("1.0.*")];
[assembly:ComVisible(false)];
[assembly:CLSCompliantAttribute(true)];
[assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];
| [
"johnaulogiaris@gmail.com"
] | johnaulogiaris@gmail.com |
ba68d47831edf6301777218809c1de239058bc20 | ef4fe02d77323e2670dd9444ff83496704c670de | /STL面试知识点/STL面试知识点.cpp | 0ea035a9f0b094600704927f791696f63af0fa31 | [] | no_license | Lanxin123/-Grammatical-knowledge | 14eef8ced7fe3d2556f17de56cc6909762e0b322 | 6e1eb401a8e056ba030cc5d1256551d9991686a5 | refs/heads/master | 2020-03-22T01:44:35.691858 | 2018-08-24T13:55:55 | 2018-08-24T13:55:55 | 139,326,677 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 98 | cpp | 详见:https://www.cnblogs.com/wulala1119/p/4758345.html
以及参考我的STL源码剖析笔记 | [
"337544818@qq.com"
] | 337544818@qq.com |
dd24e7827b6670f0bd19795c5781928a20b27dd5 | 2bcfced3810b41afd8c609e9441ac9f27a87b02d | /dict_runner/weiss/DSL.cpp | b7e4a52bddb81ee42a5fda31da89faffdc20079d | [] | no_license | CS221/dict-wars | 10a3611fbd260ef39d4bf2f6b78bab43fff9dd40 | 74198b651877a324dd3c612f76c2daea43a6c3ea | refs/heads/master | 2021-01-20T10:54:43.382499 | 2013-06-11T05:48:48 | 2013-06-11T05:48:48 | 10,519,830 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,501 | cpp | #include "DSL.h"
/**
* Construct the tree.
* inf is the largest Comparable
* and is used to signal failed finds.
*/
template <class Comparable>
DSL<Comparable>::DSL( const Comparable & inf ) : INFINITY( inf )
{
bottom = new SkipNode<Comparable>( );
bottom->right = bottom->down = bottom;
tail = new SkipNode<Comparable>( INFINITY );
tail->right = tail;
header = new SkipNode<Comparable>( INFINITY, tail, bottom );
}
/**
* Copy constructor.
* Left as an exercise.
*/
template <class Comparable>
DSL<Comparable>::DSL( const DSL<Comparable> & rhs ) : INFINITY( rhs.INFINITY)
{
std::cout << "Copy constructor is unimplemented" << std::endl;
}
/**
* Destructor.
*/
template <class Comparable>
DSL<Comparable>::~DSL( )
{
makeEmpty( );
delete header;
delete tail;
delete bottom;
}
/**
* Insert item x into the DSL.
*/
template <class Comparable>
void DSL<Comparable>::insert( const Comparable & x )
{
SkipNode<Comparable> *current = header;
bottom->element = x;
while( current != bottom )
{
while( current->element < x )
current = current->right;
// If gap size is 3 or at bottom level and
// must insert, then promote middle element
if( current->down->right->right->element < current->element )
{
current->right = new SkipNode<Comparable>( current->element,
current->right, current->down->right->right );
current->element = current->down->right->element;
}
else
current = current->down;
}
// Raise height of DSL if necessary
if( header->right != tail )
header = new SkipNode<Comparable>( INFINITY, tail, header );
}
/**
* Remove item x from the DSL. Unimplemented.
*/
template <class Comparable>
void DSL<Comparable>::remove( const Comparable & x )
{
std::cout << "Sorry, remove unimplemented; " << x <<
" still present" << std::endl;
}
/**
* Find the smallest item in the tree.
* Return smallest item or INFINITY if empty.
*/
template <class Comparable>
const Comparable & DSL<Comparable>::findMin( ) const
{
if( isEmpty( ) )
return INFINITY;
SkipNode<Comparable> *current = header;
while( current->down != bottom )
current = current->down;
return elementAt( current );
}
/**
* Find the largest item in the tree.
* Return the largest item or INFINITY if empty.
*/
template <class Comparable>
const Comparable & DSL<Comparable>::findMax( ) const
{
if( isEmpty( ) )
return INFINITY;
SkipNode<Comparable> *current = header;
for( ; ; )
if( current->right->right != tail )
current = current->right;
else if( current->down != bottom )
current = current->down;
else
return elementAt( current );
}
/**
* Find item x in the tree.
* Return the matching item or INFINITY if not found.
*/
template <class Comparable>
const Comparable & DSL<Comparable>::find( const Comparable & x ) const
{
SkipNode<Comparable> *current = header;
bottom->element = x;
for( ; ; )
if( x < current->element )
current = current->down;
else if( current->element < x )
current = current->right;
else
return elementAt( current );
}
/**
* Make the tree logically empty.
*/
template <class Comparable>
void DSL<Comparable>::makeEmpty( )
{
reclaimMemory( header );
header->right = tail;
header->down = bottom;
}
/**
* Test if the tree is logically empty.
* Return true if empty, false otherwise.
*/
template <class Comparable>
bool DSL<Comparable>::isEmpty( ) const
{
return header->right == tail && header->down == bottom;
}
/**
* Internal method to get element field from node t.
* Return the element field or INFINITY if t is at the bottom.
*/
template <class Comparable>
const Comparable & DSL<Comparable>::
elementAt( SkipNode<Comparable> *t ) const
{
if( t == bottom )
return INFINITY;
else
return t->element;
}
/**
* Print the DSL.
*/
template <class Comparable>
void DSL<Comparable>::printList( ) const
{
SkipNode<Comparable> *current = header;
while( current->down != bottom )
current = current->down;
while( current->right != tail )
{
std::cout << current->element << std::endl;
current = current->right;
}
}
/**
* Deep copy. Left as an exercise
*/
template <class Comparable>
const DSL<Comparable> &
DSL<Comparable>::operator=( const DSL<Comparable> & rhs )
{
if( this != &rhs )
std::cout << "Sorry, operator= is unimplemented" << std::endl;
return *this;
}
/**
* reclaimMemory is left as an exercise.
* Hint: delete from top level to bottom level.
*/
template <class Comparable>
void DSL<Comparable>::reclaimMemory( SkipNode<Comparable> *t ) const
{
if( t != bottom )
std::cout << "reclaimMemory is unimplemented -- leaking!" << std::endl;
}
| [
"mr.karpierz@gmail.com"
] | mr.karpierz@gmail.com |
b7f557d279e391675167f97886507495a3ef5372 | 828b52aa65e1002348e332d4342449043245e4e6 | /coloring/lsSolver.cpp | bd60b920b11241d8b767710193a831636a95a4fe | [
"MIT"
] | permissive | domenipavec/Coursera-DiscreteOptimization | 0ec087b7cdae16dd4166cdb2b9238ec3f8b1ce31 | e0904966922ded5e9f0ec29ce0ebfe434d11d938 | refs/heads/master | 2021-05-27T03:28:43.717704 | 2014-05-01T19:38:37 | 2014-05-01T19:38:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 731 | cpp | /*
* lsSolver.cpp
*
* Copyright 2014 Domen <domen.ipavec@z-v.si>
*
* See LICENSE.
*
*/
#include "lsSolver.hpp"
LSState::LSState(const LSState & s) :
graph(s.graph),
verticesColors(s.verticesColors),
nVertices(s.nVertices),
nColors(s.nColors)
{
}
LSState::LSState(Graph *g, const Solution &s) :
graph(g),
verticesColors(s.verticesColors),
nVertices(graph->nVertices),
nColors(s.colors())
{
}
LSSolver::LSSolver(Graph *g, const Solution &s) :
graph(g),
state(g,s)
{
}
Solution LSSolver::solution() {
Solution s(graph->nVertices);
s.verticesColors.assign(state.verticesColors.begin(), state.verticesColors.end());
return s;
}
| [
"domen.ipavec@z-v.si"
] | domen.ipavec@z-v.si |
884bd2925e6f35f6aecc1106d636c0030532d465 | c3a157322ab0c670584e7e0497009d7df3a2335b | /audioPatchControl.cpp | f468ec64a035332d14fad40b9392c73e41965540 | [] | no_license | SebulonB/audioTest | baa2342f4931347acb5bfa709b764999fd3755e2 | b187b101b8b04c8d0b3a72976376cf7527e1afd5 | refs/heads/main | 2023-04-20T12:42:12.669912 | 2021-05-14T21:32:34 | 2021-05-14T21:32:34 | 336,262,271 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,719 | cpp | #include <string.h>
#include <Adafruit_GFX.h> // Core graphics library
#include <Adafruit_ST7735.h> // Hardware-specific library for ST7735
#include <Adafruit_ST7789.h> // Hardware-specific library for ST7789
#include <Encoder.h>
#include "TeensyThreads.h"
#include <SD.h>
#include <SPI.h>
#include <SerialFlash.h>
#include <Audio.h>
#include <Wire.h>
#include <Bounce.h>
#include "src/ui/widgets.h"
#include "src/ui/ui.h"
#include "audioPatch.h"
#include "audioPatchControl.h"
void AudioPatchControl::init(void)
{
if(p_ui == NULL){return;}
// p_delay->setInputStream(Mix_LeftIn, 0, 0);
// p_delay->setInputStream(Mix_RightIn, 0, 1);
// _cords.push_back(new AudioConnection( *p_delay->getOutputStream(0), 0,
// MasterLeft, 0));
// _cords.push_back(new AudioConnection( *p_delay->getOutputStream(1), 0,
// MasterRight, 0));
// p_delay->updateParam(0, 1.23);
// |init mixers|
// float val = 1.0;
// for(int i=0; i<4; i++){
// //Input
// val = 0.0;
// mix_in__ch1_4_left.gain(i, val);
// mix_in__ch1_4_right.gain(i, val);
// mix_in__ch5_6_left.gain(i, val);
// mix_in__ch5_6_right.gain(i, val);
// //delay init
// val = 1.0;
// Mix_LeftIn.gain(i, val);
// Mix_RightIn.gain(i, val);
// MasterLeft.gain(i, val);
// MasterRight.gain(i, val);
// }
// for(int i=0;i<6;i++){
// setHighPass(i);
// }
}
void AudioPatchControl::updateInputMixer(uint8_t ch)
{
if(ch>=6){return;}
if(p_ui == NULL){return;}
float pan = p_ui->getDialVal(UserInterface::DIAL_PAGE_PAN, ch);
float vol = p_ui->getFaderVal(ch);
if(m_debug){
Serial.print("Vol/Pan: ");
Serial.print(ch);
Serial.print(" | ");
Serial.print(vol);
Serial.print(" | ");
Serial.print(pan);
Serial.print("\n");
}
//mixer ch1_4
std::vector<audioDevice *> mixers;
p_engine->getDeviceList(ID_TYPE_DEVICE_MIXER, mixers);
if(mixers.size() > ch){
mixers.at(ch)->updateParam(0, 0, vol);
mixers.at(ch)->updateParam(0, 1, pan);
}
}
void AudioPatchControl::setFilterParam(enum UserInterface::DIAL_PAGE page, uint8_t ch)
{
if(ch>=6){return;}
if(p_ui == NULL){return;}
float val = p_ui->getDialVal(page,ch);
uint8_t p = (uint8_t)page - (uint8_t)UserInterface::DIAL_PAGE_FILTER_CH1;//count from 0
//float vol = p_ui->getFaderVal(p);
if(m_debug){
Serial.print("Filter Effect: ");
Serial.print(ch);
Serial.print(" | ");
Serial.print(p);
Serial.print(" | ");
Serial.print(val);
Serial.print("\n");
}
std::vector<audioDevice *> device;
p_engine->getDeviceList(ID_TYPE_DEVICE_FILTER, device);
//LP Frequency
if ( ch == 0 ){
if(p<device.size()){ device.at(p)->updateParam(0, ch, val);}
}
//LP Resonance
else if ( ch == 1 ){
if(p<device.size()){ device.at(p)->updateParam(0, ch, val);}
}
//LP Type
else if ( ch == 2 ){
if(p<device.size()){ device.at(p)->updateParam(0, ch, val);}
}
//HP Frequency
else if ( ch == 3 ){
if(p<device.size()){ device.at(p)->updateParam(0, ch, val);}
}
//HP Resonance
else if ( ch == 4 ){
if(p<device.size()){ device.at(p)->updateParam(0, ch, val);}
}
//Width
else if ( ch == 5 ){
if(p<device.size()){ device.at(p)->updateParam(0, ch, val);}
}
}
void AudioPatchControl::setSendEffect(enum UserInterface::DIAL_PAGE page, uint8_t ch)
{
if(ch>=6){return;}
if(p_ui == NULL){return;}
float val = p_ui->getDialVal(page,ch);
uint8_t p = (uint8_t)page - (uint8_t)UserInterface::DIAL_PAGE_SEND_CH1;//count from 0
//float vol = p_ui->getFaderVal(p);
if(m_debug){
Serial.print("Send Effect: ");
Serial.print(ch);
Serial.print(" | ");
Serial.print(p);
Serial.print(" | ");
Serial.print(val);
Serial.print("\n");
}
std::vector<audioDevice *> mixers;
p_engine->getDeviceList(ID_TYPE_DEVICE_MIXER, mixers);
if(mixers.size() <= p){return;}
mixers.at(p)->updateParam(0, ch+4, val);
}
void AudioPatchControl::setReverbParam(uint8_t ch)
{
if(ch>=6){return;}
if(p_ui == NULL){return;}
// float val = p_ui->getDialVal(UserInterface::DIAL_PAGE_EFFECT_REVERB,ch);
// if(m_debug){
// Serial.print("ReverbParam: ");
// Serial.print(ch);
// Serial.print(" | ");
// Serial.print(val);
// Serial.print("\n");
// }
}
void AudioPatchControl::setDelayParam(enum UserInterface::DIAL_PAGE page, uint8_t ch)
{
if(ch>=6){return;}
if(p_ui == NULL){return;}
float val = p_ui->getDialVal(page,ch);
uint8_t p = (uint8_t)page - (uint8_t)UserInterface::DIAL_PAGE_EFFECT_DELAY;//count from 0
if(m_debug){
Serial.print("DelayParam: ");
Serial.print(ch);
Serial.print(" | ");
Serial.print(p);
Serial.print(" | ");
Serial.print(val);
Serial.print("\n");
}
std::vector<audioDevice *> device;
p_engine->getDeviceList(ID_TYPE_DEVICE_DELAY_EFFEKT, device);
//dry wet
if(ch == 5){
if(p<device.size()){
device.at(p)->updateParam(0, 3, val);
}
}
else if(ch>=0 && ch<3)
{
if(p<device.size()){
device.at(p)->updateParam(0, ch, val);
}
}
}
void AudioPatchControl::updatePeak(void)
{
// if (peak1.available()) {p_ui->updateBars(0, peak1.read());}
// if (peak2.available()) {p_ui->updateBars(1, peak2.read());}
// if (peak3.available()) {p_ui->updateBars(2, peak3.read());}
// if (peak4.available()) {p_ui->updateBars(3, peak4.read());}
// if (peak5.available()) {p_ui->updateBars(4, peak5.read());}
// if (peak6.available()) {p_ui->updateBars(5, peak6.read());}
}
| [
"s.brunnauer@laseranimation.com"
] | s.brunnauer@laseranimation.com |
f859eff4689221682c751d7a8508a944d23c138c | 25eda15859d45817ac22c428bf4a7f23f600bf7d | /src/chainparams.cpp | 021b491932cb86fc736a4b7d9f109015f431b83c | [
"MIT"
] | permissive | SamiAhmed7777/game-frag-coin | 3f7605af94168e7fbb0af85c085c8e975a91e227 | 1b450d26713aff7ef027fee3954fb96c99764a29 | refs/heads/master | 2023-04-14T17:56:48.819371 | 2021-04-26T16:06:26 | 2021-04-26T16:06:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,179 | cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2020 The PIVX developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "chainparams.h"
#include "chainparamsseeds.h"
#include "consensus/merkle.h"
#include "util.h"
#include "utilstrencodings.h"
#include <boost/assign/list_of.hpp>
#include <assert.h>
static CBlock CreateGenesisBlock(const char* pszTimestamp, const CScript& genesisOutputScript, uint32_t nTime, uint32_t nNonce, uint32_t nBits, int32_t nVersion, const CAmount& genesisReward)
{
CMutableTransaction txNew;
txNew.nVersion = 1;
txNew.vin.resize(1);
txNew.vout.resize(1);
txNew.vin[0].scriptSig = CScript() << 486604799 << CScriptNum(4) << std::vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
txNew.vout[0].nValue = genesisReward;
txNew.vout[0].scriptPubKey = genesisOutputScript;
CBlock genesis;
genesis.vtx.push_back(std::make_shared<const CTransaction>(std::move(txNew)));
genesis.hashPrevBlock.SetNull();
genesis.nVersion = nVersion;
genesis.nTime = nTime;
genesis.nBits = nBits;
genesis.nNonce = nNonce;
genesis.hashMerkleRoot = BlockMerkleRoot(genesis);
return genesis;
}
/**
* Build the genesis block. Note that the output of the genesis coinbase cannot
* be spent as it did not originally exist in the database.
*
* CBlock(hash=00000ffd590b14, ver=1, hashPrevBlock=00000000000000, hashMerkleRoot=e0028e, nTime=1390095618, nBits=1e0ffff0, nNonce=28917698, vtx=1)
* CTransaction(hash=e0028e, ver=1, vin.size=1, vout.size=1, nLockTime=0)
* CTxIn(COutPoint(000000, -1), coinbase 04ffff001d01044c5957697265642030392f4a616e2f3230313420546865204772616e64204578706572696d656e7420476f6573204c6976653a204f76657273746f636b2e636f6d204973204e6f7720416363657074696e6720426974636f696e73)
* CTxOut(nValue=50.00000000, scriptPubKey=0xA9037BAC7050C479B121CF)
* vMerkleTree: e0028e
*/
static CBlock CreateGenesisBlock(uint32_t nTime, uint32_t nNonce, uint32_t nBits, int32_t nVersion, const CAmount& genesisReward)
{
const char* pszTimestamp = "It only ends with one man standing and one man laying in a pool of blood. There can be only one.";
const CScript genesisOutputScript = CScript() << ParseHex("0460be0f4c9ec79c991a6c676b170c1de823c1c4cdb6b5ac11a3f244c750d6b1bd1f963c71de807a53777adf2607fe192e07f7366173cd94df2b0fdfbc1a9f8acf3f45f8c5e009511007522041254166e3c02fb80626207877db2998cf81d09130") << OP_CHECKSIG;
return CreateGenesisBlock(pszTimestamp, genesisOutputScript, nTime, nNonce, nBits, nVersion, genesisReward);
}
/**
* Main network
*/
/**
* What makes a good checkpoint block?
* + Is surrounded by blocks with reasonable timestamps
* (no blocks before with a timestamp after, none after with
* timestamp before)
* + Contains no strange transactions
*/
static Checkpoints::MapCheckpoints mapCheckpoints =
boost::assign::map_list_of
(0, uint256S("0x00000c4083c9032f5e67d6756bf084e79e36882bbc4df26c278654c6735378b9"))
(100, uint256S("0x000001e2f0d480c9eb875520744f7ae409542300948362b3fbbc38321262f4e9"))
(292, uint256S("0xe4d36145ee6b4ed81b7c66a5af836a2f9db7c854d834794e122691c0627d564f")) // POS Activation
(500, uint256S("0x6511e332ca0f80cbd4575c69b5df569f20f760c5894ec2e0e4045b87a5c17fa8")) // BIP Activation
(1500, uint256S("0xfd129cdf866130b764ab256aee8082223afd37b4b7060c44267a280bcc1541dd")) // POS V3_4 Activation
(4000, uint256S("0xaf9715359857402b89e843ae349a74fe4f7b054ec7370b720e734b330a505755")) // POS V4_0 Activation
(6000, uint256S("0x380c2e41d31ac0f1803a4288b376aa6bdba93c5166fffa776495c8a1ffb0f376")); // POS V5_0 Activation
static const Checkpoints::CCheckpointData data = {
&mapCheckpoints,
1619337870, // * UNIX timestamp of last checkpoint block
12499, // * total number of transactions between genesis and last checkpoint
// (the tx=... number in the UpdateTip debug.log lines)
1440 // * estimated number of transactions per day after checkpoint
};
static Checkpoints::MapCheckpoints mapCheckpointsTestnet =
boost::assign::map_list_of
(0, uint256S("0x001"));
//(201, uint256S("6ae7d52092fd918c8ac8d9b1334400387d3057997e6e927a88e57186dc395231")); // v5 activation (PoS/Sapling)
static const Checkpoints::CCheckpointData dataTestnet = {
&mapCheckpointsTestnet,
1454124731,
0,
3000};
static Checkpoints::MapCheckpoints mapCheckpointsRegtest =
boost::assign::map_list_of(0, uint256S("0x001"));
static const Checkpoints::CCheckpointData dataRegtest = {
&mapCheckpointsRegtest,
1454124731,
0,
100};
class CMainParams : public CChainParams
{
public:
CMainParams()
{
networkID = CBaseChainParams::MAIN;
strNetworkID = "main";
genesis = CreateGenesisBlock(1618724005, 698539, 0x1e0ffff0, 1, 250 * COIN);
consensus.hashGenesisBlock = genesis.GetHash();
assert(consensus.hashGenesisBlock == uint256S("0x00000c4083c9032f5e67d6756bf084e79e36882bbc4df26c278654c6735378b9"));
assert(genesis.hashMerkleRoot == uint256S("0x25e3542004d6979bc3947b7f405d9fe2120edddce3f0c5793b9032af18d745b7"));
consensus.fPowAllowMinDifficultyBlocks = false;
consensus.powLimit = ~UINT256_ZERO >> 20; // GAMEFRAG starting difficulty is 1 / 2^12
consensus.posLimitV1 = ~UINT256_ZERO >> 24;
consensus.posLimitV2 = ~UINT256_ZERO >> 20;
consensus.nBudgetCycleBlocks = 43200; // approx. 1 every 30 days
consensus.nBudgetFeeConfirmations = 6; // Number of confirmations for the finalization fee
consensus.nCoinbaseMaturity = 50;
consensus.nFutureTimeDriftPoW = 7200;
consensus.nFutureTimeDriftPoS = 180;
consensus.nMasternodeCountDrift = 20; // num of MN we allow the see-saw payments to be off by
consensus.nMaxMoneyOut = 21000000 * COIN;
consensus.nPoolMaxTransactions = 3;
consensus.nProposalEstablishmentTime = 60 * 60 * 24; // must be at least a day old to make it into a budget
consensus.nStakeMinAge = 60 * 60;
consensus.nStakeMinDepth = 600;
consensus.nTargetTimespan = 40 * 60;
consensus.nTargetTimespanV2 = 30 * 60;
consensus.nTargetSpacing = 1 * 60;
consensus.nTimeSlotLength = 15;
consensus.nMaxProposalPayments = 6;
// spork keys
consensus.strSporkPubKey = "04264bd93bad3b2aecfac4ce2860d1d56852d47dfc2f4c9a4bb53cf588990019e29b66292717f18d58eeec554639346ff7ef2d39160fb7cf53c4bf42fb2eb70dd3";
consensus.strSporkPubKeyOld = "040F129DE6546FE405995329A887329BED4321325B1A73B0A257423C05C1FCFE9E40EF0678AEF59036A22C42E61DFD29DF7EFB09F56CC73CADF64E05741880E3E7";
consensus.nTime_EnforceNewSporkKey = 1608512400; //!> December 21, 2020 01:00:00 AM GMT
consensus.nTime_RejectOldSporkKey = 1614560400; //!> March 1, 2021 01:00:00 AM GMT
// height-based activations
consensus.height_last_ZC_AccumCheckpoint = 999999999;
consensus.height_last_ZC_WrappedSerials = 999999999;
consensus.height_start_InvalidUTXOsCheck = 999999999;
consensus.height_start_ZC_InvalidSerials = 999999999;
consensus.height_start_ZC_SerialRangeCheck = 999999999;
consensus.height_ZC_RecalcAccumulators = 999999999;
// validation by-pass
consensus.nGamefragBadBlockTime = 1471401614; // Skip nBit validation of Block 259201 per PR #915
consensus.nGamefragBadBlockBits = 0x1c056dac; // Skip nBit validation of Block 259201 per PR #915
// Zerocoin-related params
consensus.ZC_Modulus = "25195908475657893494027183240048398571429282126204032027777137836043662020707595556264018525880784"
"4069182906412495150821892985591491761845028084891200728449926873928072877767359714183472702618963750149718246911"
"6507761337985909570009733045974880842840179742910064245869181719511874612151517265463228221686998754918242243363"
"7259085141865462043576798423387184774447920739934236584823824281198163815010674810451660377306056201619676256133"
"8441436038339044149526344321901146575444541784240209246165157233507787077498171257724679629263863563732899121548"
"31438167899885040445364023527381951378636564391212010397122822120720357";
consensus.ZC_MaxPublicSpendsPerTx = 637; // Assume about 220 bytes each input
consensus.ZC_MaxSpendsPerTx = 7; // Assume about 20kb each input
consensus.ZC_MinMintConfirmations = 20;
consensus.ZC_MinMintFee = 1 * CENT;
consensus.ZC_MinStakeDepth = 200;
consensus.ZC_TimeStart = 1508214600; // October 17, 2017 4:30:00 AM
// Network upgrades
consensus.vUpgrades[Consensus::BASE_NETWORK].nActivationHeight =
Consensus::NetworkUpgrade::ALWAYS_ACTIVE;
consensus.vUpgrades[Consensus::UPGRADE_TESTDUMMY].nActivationHeight =
Consensus::NetworkUpgrade::NO_ACTIVATION_HEIGHT;
consensus.vUpgrades[Consensus::UPGRADE_POS].nActivationHeight = 292;
consensus.vUpgrades[Consensus::UPGRADE_POS_V2].nActivationHeight = 500;
consensus.vUpgrades[Consensus::UPGRADE_ZC].nActivationHeight = 999999999;
consensus.vUpgrades[Consensus::UPGRADE_ZC_V2].nActivationHeight = 999999999;
consensus.vUpgrades[Consensus::UPGRADE_BIP65].nActivationHeight = 292;
consensus.vUpgrades[Consensus::UPGRADE_ZC_PUBLIC].nActivationHeight = 999999999;
consensus.vUpgrades[Consensus::UPGRADE_V3_4].nActivationHeight = 1500;
consensus.vUpgrades[Consensus::UPGRADE_V4_0].nActivationHeight = 4000;
consensus.vUpgrades[Consensus::UPGRADE_V5_0].nActivationHeight = 6000;
/*
consensus.vUpgrades[Consensus::UPGRADE_ZC].hashActivationBlock =
uint256S("0x5b2482eca24caf2a46bb22e0545db7b7037282733faa3a42ec20542509999a64");
consensus.vUpgrades[Consensus::UPGRADE_ZC_V2].hashActivationBlock =
uint256S("0x37ea75fe1c9314171cff429a91b25b9f11331076d1c9de50ee4054d61877f8af");
consensus.vUpgrades[Consensus::UPGRADE_ZC_PUBLIC].hashActivationBlock =
uint256S("0xe2448b76d88d37aba4194ffed1041b680d779919157ddf5cbf423373d7f8078e");
*/
consensus.vUpgrades[Consensus::UPGRADE_BIP65].hashActivationBlock =
uint256S("0x6511e332ca0f80cbd4575c69b5df569f20f760c5894ec2e0e4045b87a5c17fa8");
consensus.vUpgrades[Consensus::UPGRADE_V3_4].hashActivationBlock =
uint256S("0xfd129cdf866130b764ab256aee8082223afd37b4b7060c44267a280bcc1541dd");
consensus.vUpgrades[Consensus::UPGRADE_V4_0].hashActivationBlock =
uint256S("0xaf9715359857402b89e843ae349a74fe4f7b054ec7370b720e734b330a505755");
/**
* The message start string is designed to be unlikely to occur in normal data.
* The characters are rarely used upper ASCII, not valid as UTF-8, and produce
* a large 4-byte int at any alignment.
*/
pchMessageStart[0] = 0x8c;
pchMessageStart[1] = 0x93;
pchMessageStart[2] = 0xec;
pchMessageStart[3] = 0xa1;
nDefaultPort = 42020;
// Note that of those with the service bits flag, most only support a subset of possible options
vSeeds.emplace_back("game-frag.com", "seed1.game-frag.com", true); // Primary DNS Seeder from Fuzzbawls
vSeeds.emplace_back("game-frag.com", "seed2.game-frag.com", true); // Secondary DNS Seeder from Fuzzbawls
base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1, 50);
base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1, 30);
base58Prefixes[STAKING_ADDRESS] = std::vector<unsigned char>(1, 45); // starting with 'S'
base58Prefixes[SECRET_KEY] = std::vector<unsigned char>(1, 61);
base58Prefixes[EXT_PUBLIC_KEY] = boost::assign::list_of(0x1a)(0x33)(0x3f)(0x97).convert_to_container<std::vector<unsigned char> >();
base58Prefixes[EXT_SECRET_KEY] = boost::assign::list_of(0x6f)(0x1a)(0xb4)(0x77).convert_to_container<std::vector<unsigned char> >();
// BIP44 coin type is from https://github.com/satoshilabs/slips/blob/master/slip-0044.md
base58Prefixes[EXT_COIN_TYPE] = boost::assign::list_of(0x80)(0x00)(0x03)(0xb4).convert_to_container<std::vector<unsigned char> >();
vFixedSeeds = std::vector<SeedSpec6>(pnSeed6_main, pnSeed6_main + ARRAYLEN(pnSeed6_main));
// Sapling
bech32HRPs[SAPLING_PAYMENT_ADDRESS] = "ps";
bech32HRPs[SAPLING_FULL_VIEWING_KEY] = "pviews";
bech32HRPs[SAPLING_INCOMING_VIEWING_KEY] = "fragks";
bech32HRPs[SAPLING_EXTENDED_SPEND_KEY] = "p-secret-spending-key-main";
bech32HRPs[SAPLING_EXTENDED_FVK] = "pxviews";
}
const Checkpoints::CCheckpointData& Checkpoints() const
{
return data;
}
};
static CMainParams mainParams;
/**
* Testnet (v5)
*/
class CTestNetParams : public CMainParams
{
public:
CTestNetParams()
{
networkID = CBaseChainParams::TESTNET;
strNetworkID = "test";
genesis = CreateGenesisBlock(1618724010, 809209, 0x1e0ffff0, 1, 250 * COIN);
consensus.hashGenesisBlock = genesis.GetHash();
assert(consensus.hashGenesisBlock == uint256S("0x00000d8584d3870e03cf6aeb2614779965eedd65e360dac1949d0bf743b8d596"));
assert(genesis.hashMerkleRoot == uint256S("0x25e3542004d6979bc3947b7f405d9fe2120edddce3f0c5793b9032af18d745b7"));
consensus.fPowAllowMinDifficultyBlocks = true;
consensus.powLimit = ~UINT256_ZERO >> 20; // GAMEFRAG starting difficulty is 1 / 2^12
consensus.posLimitV1 = ~UINT256_ZERO >> 24;
consensus.posLimitV2 = ~UINT256_ZERO >> 20;
consensus.nBudgetCycleBlocks = 144; // approx 10 cycles per day
consensus.nBudgetFeeConfirmations = 3; // (only 8-blocks window for finalization on testnet)
consensus.nCoinbaseMaturity = 15;
consensus.nProposalEstablishmentTime = 60 * 5; // at least 5 min old to make it into a budget
consensus.nStakeMinAge = 60 * 60;
consensus.nStakeMinDepth = 100;
consensus.nTargetTimespan = 40 * 60;
consensus.nTargetTimespanV2 = 30 * 60;
consensus.nTargetSpacing = 1 * 60;
consensus.nTimeSlotLength = 15;
consensus.nMaxProposalPayments = 20;
// spork keys
consensus.strSporkPubKey = "04a6cd04a612607ca9da8d689ed5a0238866c88b1f14e63b382501dcb99a40111bfba73c13b2bb05a58fc623b5b05d42025318e65eeee7079287307544f3dace7f";
consensus.strSporkPubKeyOld = "04E88BB455E2A04E65FCC41D88CD367E9CCE1F5A409BE94D8C2B4B35D223DED9C8E2F4E061349BA3A38839282508066B6DC4DB72DD432AC4067991E6BF20176127";
// height based activations
consensus.height_last_ZC_AccumCheckpoint = -1;
consensus.height_last_ZC_WrappedSerials = -1;
consensus.height_start_InvalidUTXOsCheck = 999999999;
consensus.height_start_ZC_InvalidSerials = 999999999;
consensus.height_start_ZC_SerialRangeCheck = 1;
consensus.height_ZC_RecalcAccumulators = 999999999;
// Network upgrades
consensus.vUpgrades[Consensus::BASE_NETWORK].nActivationHeight =
Consensus::NetworkUpgrade::ALWAYS_ACTIVE;
consensus.vUpgrades[Consensus::UPGRADE_TESTDUMMY].nActivationHeight =
Consensus::NetworkUpgrade::NO_ACTIVATION_HEIGHT;
consensus.vUpgrades[Consensus::UPGRADE_POS].nActivationHeight = 201;
consensus.vUpgrades[Consensus::UPGRADE_POS_V2].nActivationHeight = 201;
consensus.vUpgrades[Consensus::UPGRADE_ZC].nActivationHeight = 201;
consensus.vUpgrades[Consensus::UPGRADE_ZC_V2].nActivationHeight = 201;
consensus.vUpgrades[Consensus::UPGRADE_BIP65].nActivationHeight = 201;
consensus.vUpgrades[Consensus::UPGRADE_ZC_PUBLIC].nActivationHeight = 201;
consensus.vUpgrades[Consensus::UPGRADE_V3_4].nActivationHeight = 201;
consensus.vUpgrades[Consensus::UPGRADE_V4_0].nActivationHeight = 201;
consensus.vUpgrades[Consensus::UPGRADE_V5_0].nActivationHeight = 201;
/**
* The message start string is designed to be unlikely to occur in normal data.
* The characters are rarely used upper ASCII, not valid as UTF-8, and produce
* a large 4-byte int at any alignment.
*/
pchMessageStart[0] = 0xa1;
pchMessageStart[1] = 0xee;
pchMessageStart[2] = 0x8e;
pchMessageStart[3] = 0xc0;
nDefaultPort = 52020;
vFixedSeeds.clear();
vSeeds.clear();
// nodes with support for servicebits filtering should be at the top
vSeeds.emplace_back("game-frag.com", "gamefrag-testnet.seed.game-frag.com", true);
vSeeds.emplace_back("game-frag.com", "gamefrag-testnet.seed2.game-frag.com", true);
base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1, 65); // Testnet gamefrag addresses start with 'x' or 'y'
base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1, 48); // Testnet gamefrag script addresses start with '8' or '9'
base58Prefixes[STAKING_ADDRESS] = std::vector<unsigned char>(1, 41); // starting with 'W'
base58Prefixes[SECRET_KEY] = std::vector<unsigned char>(1, 51); // Testnet private keys start with '9' or 'c' (Bitcoin defaults)
// Testnet gamefrag BIP32 pubkeys start with 'DRKV'
base58Prefixes[EXT_PUBLIC_KEY] = boost::assign::list_of(0xba)(0xbd)(0x7f)(0x26).convert_to_container<std::vector<unsigned char> >();
// Testnet gamefrag BIP32 prvkeys start with 'DRKP'
base58Prefixes[EXT_SECRET_KEY] = boost::assign::list_of(0xc3)(0x98)(0x55)(0x64).convert_to_container<std::vector<unsigned char> >();
// Testnet gamefrag BIP44 coin type is '1' (All coin's testnet default)
base58Prefixes[EXT_COIN_TYPE] = boost::assign::list_of(0x80)(0x00)(0x00)(0xa4).convert_to_container<std::vector<unsigned char> >();
vFixedSeeds = std::vector<SeedSpec6>(pnSeed6_test, pnSeed6_test + ARRAYLEN(pnSeed6_test));
// Sapling
bech32HRPs[SAPLING_PAYMENT_ADDRESS] = "ptestsapling";
bech32HRPs[SAPLING_FULL_VIEWING_KEY] = "pviewtestsapling";
bech32HRPs[SAPLING_INCOMING_VIEWING_KEY] = "fragktestsapling";
bech32HRPs[SAPLING_EXTENDED_SPEND_KEY] = "p-secret-spending-key-test";
bech32HRPs[SAPLING_EXTENDED_FVK] = "pxviewtestsapling";
}
const Checkpoints::CCheckpointData& Checkpoints() const
{
return dataTestnet;
}
};
static CTestNetParams testNetParams;
/**
* Regression test
*/
class CRegTestParams : public CTestNetParams
{
public:
CRegTestParams()
{
networkID = CBaseChainParams::REGTEST;
strNetworkID = "regtest";
genesis = CreateGenesisBlock(1618724015, 380960, 0x1e0ffff0, 1, 250 * COIN);
consensus.hashGenesisBlock = genesis.GetHash();
assert(consensus.hashGenesisBlock == uint256S("0x00000cb282f8b295264711e1402afce74cd5fed68f9b582c0d39fd9d23802f67"));
assert(genesis.hashMerkleRoot == uint256S("0x25e3542004d6979bc3947b7f405d9fe2120edddce3f0c5793b9032af18d745b7"));
consensus.fPowAllowMinDifficultyBlocks = true;
consensus.powLimit = ~UINT256_ZERO >> 20; // GAMEFRAG starting difficulty is 1 / 2^12
consensus.posLimitV1 = ~UINT256_ZERO >> 24;
consensus.posLimitV2 = ~UINT256_ZERO >> 20;
consensus.nBudgetCycleBlocks = 144; // approx 10 cycles per day
consensus.nBudgetFeeConfirmations = 3; // (only 8-blocks window for finalization on regtest)
consensus.nCoinbaseMaturity = 100;
consensus.nFutureTimeDriftPoW = 7200;
consensus.nFutureTimeDriftPoS = 180;
consensus.nMasternodeCountDrift = 4; // num of MN we allow the see-saw payments to be off by
consensus.nMaxMoneyOut = 43199500 * COIN;
consensus.nPoolMaxTransactions = 2;
consensus.nProposalEstablishmentTime = 60 * 5; // at least 5 min old to make it into a budget
consensus.nStakeMinAge = 0;
consensus.nStakeMinDepth = 2;
consensus.nTargetTimespan = 40 * 60;
consensus.nTargetTimespanV2 = 30 * 60;
consensus.nTargetSpacing = 1 * 60;
consensus.nTimeSlotLength = 15;
/* Spork Key for RegTest:
WIF private key: 932HEevBSujW2ud7RfB1YF91AFygbBRQj3de3LyaCRqNzKKgWXi
private key hex: bd4960dcbd9e7f2223f24e7164ecb6f1fe96fc3a416f5d3a830ba5720c84b8ca
Address: yCvUVd72w7xpimf981m114FSFbmAmne7j9
*/
consensus.strSporkPubKey = "043969b1b0e6f327de37f297a015d37e2235eaaeeb3933deecd8162c075cee0207b13537618bde640879606001a8136091c62ec272dd0133424a178704e6e75bb7";
consensus.strSporkPubKeyOld = "";
consensus.nTime_EnforceNewSporkKey = 0;
consensus.nTime_RejectOldSporkKey = 0;
// height based activations
consensus.height_last_ZC_AccumCheckpoint = 310; // no checkpoints on regtest
consensus.height_last_ZC_WrappedSerials = -1;
consensus.height_start_InvalidUTXOsCheck = 999999999;
consensus.height_start_ZC_InvalidSerials = 999999999;
consensus.height_start_ZC_SerialRangeCheck = 300;
consensus.height_ZC_RecalcAccumulators = 999999999;
// Zerocoin-related params
consensus.ZC_Modulus = "25195908475657893494027183240048398571429282126204032027777137836043662020707595556264018525880784"
"4069182906412495150821892985591491761845028084891200728449926873928072877767359714183472702618963750149718246911"
"6507761337985909570009733045974880842840179742910064245869181719511874612151517265463228221686998754918242243363"
"7259085141865462043576798423387184774447920739934236584823824281198163815010674810451660377306056201619676256133"
"8441436038339044149526344321901146575444541784240209246165157233507787077498171257724679629263863563732899121548"
"31438167899885040445364023527381951378636564391212010397122822120720357";
consensus.ZC_MaxPublicSpendsPerTx = 637; // Assume about 220 bytes each input
consensus.ZC_MaxSpendsPerTx = 7; // Assume about 20kb each input
consensus.ZC_MinMintConfirmations = 10;
consensus.ZC_MinMintFee = 1 * CENT;
consensus.ZC_MinStakeDepth = 10;
consensus.ZC_TimeStart = 0; // not implemented on regtest
// Network upgrades
consensus.vUpgrades[Consensus::BASE_NETWORK].nActivationHeight =
Consensus::NetworkUpgrade::ALWAYS_ACTIVE;
consensus.vUpgrades[Consensus::UPGRADE_TESTDUMMY].nActivationHeight =
Consensus::NetworkUpgrade::NO_ACTIVATION_HEIGHT;
consensus.vUpgrades[Consensus::UPGRADE_POS].nActivationHeight = 251;
consensus.vUpgrades[Consensus::UPGRADE_POS_V2].nActivationHeight = 251;
consensus.vUpgrades[Consensus::UPGRADE_ZC].nActivationHeight = 300;
consensus.vUpgrades[Consensus::UPGRADE_ZC_V2].nActivationHeight = 300;
consensus.vUpgrades[Consensus::UPGRADE_BIP65].nActivationHeight =
Consensus::NetworkUpgrade::ALWAYS_ACTIVE;
consensus.vUpgrades[Consensus::UPGRADE_ZC_PUBLIC].nActivationHeight = 400;
consensus.vUpgrades[Consensus::UPGRADE_V3_4].nActivationHeight = 251;
consensus.vUpgrades[Consensus::UPGRADE_V4_0].nActivationHeight =
Consensus::NetworkUpgrade::ALWAYS_ACTIVE;
consensus.vUpgrades[Consensus::UPGRADE_V5_0].nActivationHeight = 300;
/**
* The message start string is designed to be unlikely to occur in normal data.
* The characters are rarely used upper ASCII, not valid as UTF-8, and produce
* a large 4-byte int at any alignment.
*/
pchMessageStart[0] = 0xc9;
pchMessageStart[1] = 0xbf;
pchMessageStart[2] = 0xb6;
pchMessageStart[3] = 0xe1;
nDefaultPort = 62020;
vFixedSeeds.clear(); //! Testnet mode doesn't have any fixed seeds.
vSeeds.clear(); //! Testnet mode doesn't have any DNS seeds.
}
const Checkpoints::CCheckpointData& Checkpoints() const
{
return dataRegtest;
}
void UpdateNetworkUpgradeParameters(Consensus::UpgradeIndex idx, int nActivationHeight)
{
assert(idx > Consensus::BASE_NETWORK && idx < Consensus::MAX_NETWORK_UPGRADES);
consensus.vUpgrades[idx].nActivationHeight = nActivationHeight;
}
};
static CRegTestParams regTestParams;
static CChainParams* pCurrentParams = 0;
const CChainParams& Params()
{
assert(pCurrentParams);
return *pCurrentParams;
}
CChainParams& Params(CBaseChainParams::Network network)
{
switch (network) {
case CBaseChainParams::MAIN:
return mainParams;
case CBaseChainParams::TESTNET:
return testNetParams;
case CBaseChainParams::REGTEST:
return regTestParams;
default:
assert(false && "Unimplemented network");
return mainParams;
}
}
void SelectParams(CBaseChainParams::Network network)
{
SelectBaseParams(network);
pCurrentParams = &Params(network);
}
bool SelectParamsFromCommandLine()
{
CBaseChainParams::Network network = NetworkIdFromCommandLine();
if (network == CBaseChainParams::MAX_NETWORK_TYPES)
return false;
SelectParams(network);
return true;
}
void UpdateNetworkUpgradeParameters(Consensus::UpgradeIndex idx, int nActivationHeight)
{
regTestParams.UpdateNetworkUpgradeParameters(idx, nActivationHeight);
}
| [
"development@SpectreSecurity.io"
] | development@SpectreSecurity.io |
fa3666aac281cf3e46d9f0c2f864e0a03258be17 | 0b8515326d4cb6a2e72318d256ed929aa04dff20 | /chrome/browser/ui/ime/ime_window.cc | 8f17e3a1258776b9b3f320261df45bcb215ade45 | [
"BSD-3-Clause"
] | permissive | wuhengzhi/chromium-crosswalk | 0c6aaec514a3952123616679399f84769019a9de | b5d9bfd4f53d132beab079ed59c6e1ae5d14fe98 | refs/heads/master | 2022-11-11T08:03:41.115014 | 2016-08-25T07:37:50 | 2016-08-25T07:37:50 | 25,424,312 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,591 | cc | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/ime/ime_window.h"
#include <utility>
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/ime/ime_native_window.h"
#include "chrome/browser/ui/ime/ime_window_observer.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/web_contents.h"
#include "extensions/common/constants.h"
#include "extensions/common/extension.h"
#include "extensions/common/manifest_handlers/icons_handler.h"
#include "ui/display/display.h"
#include "ui/display/screen.h"
#include "ui/gfx/image/image.h"
namespace {
// The vertical margin between the cursor and the follow-cursor window.
const int kFollowCursorMargin = 3;
// The offset from the left of follow cursor window to the left of cursor.
const int kFollowCursorOffset = 32;
} // namespace
namespace ui {
ImeWindow::ImeWindow(Profile* profile,
const extensions::Extension* extension,
content::RenderFrameHost* opener_render_frame_host,
const std::string& url,
Mode mode,
const gfx::Rect& bounds)
: mode_(mode), native_window_(nullptr) {
if (extension) { // Allow nullable |extension| for testability.
title_ = extension->name();
icon_.reset(new extensions::IconImage(
profile, extension, extensions::IconsInfo::GetIcons(extension),
extension_misc::EXTENSION_ICON_BITTY, gfx::ImageSkia(), this));
}
registrar_.Add(this, chrome::NOTIFICATION_APP_TERMINATING,
content::NotificationService::AllSources());
GURL gurl(url);
if (!gurl.is_valid())
gurl = extension->GetResourceURL(url);
scoped_refptr<content::SiteInstance> site_instance =
opener_render_frame_host ? opener_render_frame_host->GetSiteInstance()
: nullptr;
if (!site_instance ||
site_instance->GetSiteURL().GetOrigin() != gurl.GetOrigin()) {
site_instance = content::SiteInstance::CreateForURL(profile, gurl);
}
content::WebContents::CreateParams create_params(profile,
std::move(site_instance));
if (opener_render_frame_host) {
create_params.opener_render_process_id =
opener_render_frame_host->GetProcess()->GetID();
create_params.opener_render_frame_id =
opener_render_frame_host->GetRoutingID();
}
web_contents_.reset(content::WebContents::Create(create_params));
web_contents_->SetDelegate(this);
content::OpenURLParams params(gurl, content::Referrer(), SINGLETON_TAB,
ui::PAGE_TRANSITION_LINK, false);
web_contents_->OpenURL(params);
native_window_ = CreateNativeWindow(this, bounds, web_contents_.get());
}
void ImeWindow::Show() {
native_window_->Show();
}
void ImeWindow::Hide() {
native_window_->Hide();
}
void ImeWindow::Close() {
web_contents_.reset();
native_window_->Close();
}
void ImeWindow::SetBounds(const gfx::Rect& bounds) {
native_window_->SetBounds(bounds);
}
void ImeWindow::FollowCursor(const gfx::Rect& cursor_bounds) {
if (mode_ != FOLLOW_CURSOR)
return;
gfx::Rect screen_bounds =
display::Screen::GetScreen()->GetPrimaryDisplay().bounds();
gfx::Rect window_bounds = native_window_->GetBounds();
int screen_width = screen_bounds.width();
int screen_height = screen_bounds.height();
int width = window_bounds.width();
int height = window_bounds.height();
// By default, aligns the left of the window client area to the left of the
// cursor, and aligns the top of the window to the bottom of the cursor.
// If the right of the window would go beyond the screen bounds, aligns the
// right of the window to the screen bounds.
// If the bottom of the window would go beyond the screen bounds, aligns the
// bottom of the window to the cursor top.
int x = cursor_bounds.x() - kFollowCursorOffset;
int y = cursor_bounds.y() + cursor_bounds.height() + kFollowCursorMargin;
if (width < screen_width && x + width > screen_width)
x = screen_width - width;
if (height < screen_height && y + height > screen_height)
y = cursor_bounds.y() - height - kFollowCursorMargin;
window_bounds.set_x(x);
window_bounds.set_y(y);
SetBounds(window_bounds);
}
int ImeWindow::GetFrameId() const {
return web_contents_->GetMainFrame()->GetRoutingID();
}
void ImeWindow::OnWindowDestroyed() {
FOR_EACH_OBSERVER(ImeWindowObserver, observers_, OnWindowDestroyed(this));
native_window_ = nullptr;
delete this;
}
void ImeWindow::AddObserver(ImeWindowObserver* observer) {
observers_.AddObserver(observer);
}
void ImeWindow::RemoveObserver(ImeWindowObserver* observer) {
observers_.RemoveObserver(observer);
}
void ImeWindow::OnExtensionIconImageChanged(extensions::IconImage* image) {
if (native_window_)
native_window_->UpdateWindowIcon();
}
ImeWindow::~ImeWindow() {}
void ImeWindow::Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
if (type == chrome::NOTIFICATION_APP_TERMINATING)
Close();
}
content::WebContents* ImeWindow::OpenURLFromTab(
content::WebContents* source,
const content::OpenURLParams& params) {
source->GetController().LoadURL(params.url, params.referrer,
params.transition, params.extra_headers);
return source;
}
bool ImeWindow::CanDragEnter(
content::WebContents* source,
const content::DropData& data,
blink::WebDragOperationsMask operations_allowed) {
return false;
}
void ImeWindow::CloseContents(content::WebContents* source) {
Close();
}
void ImeWindow::MoveContents(content::WebContents* source,
const gfx::Rect& pos) {
if (!native_window_)
return;
if (mode_ == NORMAL) {
native_window_->SetBounds(pos);
return;
}
// Follow-cursor window needs to remain the x/y and only allow JS to
// change the size.
gfx::Rect bounds = native_window_->GetBounds();
bounds.set_width(pos.width());
bounds.set_height(pos.height());
native_window_->SetBounds(bounds);
}
bool ImeWindow::IsPopupOrPanel(const content::WebContents* source) const {
return true;
}
} // namespace ui
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
0a426959839bd024b1fc273c68ab5bbdab2ba6bc | c9e41a9b3d526e3ae50a5858195749a21c23cbfd | /Terrain/d3dUtility.h | 643d28d87d42dc2ff271f8819ea07b2d673a38db | [] | no_license | Zehao/d3dtutorial | da56190b1f17f876871ebac2ea794bdf50602ba8 | 703ee93344c2295c468f3e3ab46e5eba11b47e42 | refs/heads/master | 2016-09-06T03:34:48.409144 | 2015-06-21T06:25:26 | 2015-06-21T06:25:26 | 37,805,092 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 4,466 | h | //////////////////////////////////////////////////////////////////////////////////////////////////
//
// File: d3dUtility.h
//
// Author: Frank Luna (C) All Rights Reserved
//
// System: AMD Athlon 1800+ XP, 512 DDR, Geforce 3, Windows XP, MSVC++ 7.0
//
// Desc: Provides utility functions for simplifying common tasks.
//
//////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef __d3dUtilityH__
#define __d3dUtilityH__
#include <d3dx9.h>
#include <string>
#include <limits>
namespace d3d
{
//
// Init
//
bool InitD3D(
HINSTANCE hInstance, // [in] Application instance.
int width, int height, // [in] Backbuffer dimensions.
bool windowed, // [in] Windowed (true)or full screen (false).
D3DDEVTYPE deviceType, // [in] HAL or REF
IDirect3DDevice9** device);// [out]The created device.
int EnterMsgLoop(
bool (*ptr_display)(float timeDelta));
LRESULT CALLBACK WndProc(
HWND hwnd,
UINT msg,
WPARAM wParam,
LPARAM lParam);
//
// Cleanup
//
template<class T> void Release(T t)
{
if( t )
{
t->Release();
t = 0;
}
}
template<class T> void Delete(T t)
{
if( t )
{
delete t;
t = 0;
}
}
//
// Colors
//
const D3DXCOLOR WHITE( D3DCOLOR_XRGB(255, 255, 255) );
const D3DXCOLOR BLACK( D3DCOLOR_XRGB( 0, 0, 0) );
const D3DXCOLOR RED( D3DCOLOR_XRGB(255, 0, 0) );
const D3DXCOLOR GREEN( D3DCOLOR_XRGB( 0, 255, 0) );
const D3DXCOLOR BLUE( D3DCOLOR_XRGB( 0, 0, 255) );
const D3DXCOLOR YELLOW( D3DCOLOR_XRGB(255, 255, 0) );
const D3DXCOLOR CYAN( D3DCOLOR_XRGB( 0, 255, 255) );
const D3DXCOLOR MAGENTA( D3DCOLOR_XRGB(255, 0, 255) );
const D3DXCOLOR BEACH_SAND( D3DCOLOR_XRGB(255, 249, 157) );
const D3DXCOLOR DESERT_SAND( D3DCOLOR_XRGB(250, 205, 135) );
const D3DXCOLOR LIGHTGREEN( D3DCOLOR_XRGB( 60, 184, 120) );
const D3DXCOLOR PUREGREEN( D3DCOLOR_XRGB( 0, 166, 81) );
const D3DXCOLOR DARKGREEN( D3DCOLOR_XRGB( 0, 114, 54) );
const D3DXCOLOR LIGHT_YELLOW_GREEN( D3DCOLOR_XRGB(124, 197, 118) );
const D3DXCOLOR PURE_YELLOW_GREEN( D3DCOLOR_XRGB( 57, 181, 74) );
const D3DXCOLOR DARK_YELLOW_GREEN( D3DCOLOR_XRGB( 25, 123, 48) );
const D3DXCOLOR LIGHTBROWN(D3DCOLOR_XRGB(198, 156, 109));
const D3DXCOLOR DARKBROWN( D3DCOLOR_XRGB(115, 100, 87));
//
// Lights
//
D3DLIGHT9 InitDirectionalLight(D3DXVECTOR3* direction, D3DXCOLOR* color);
D3DLIGHT9 InitPointLight(D3DXVECTOR3* position, D3DXCOLOR* color);
D3DLIGHT9 InitSpotLight(D3DXVECTOR3* position, D3DXVECTOR3* direction, D3DXCOLOR* color);
//
// Materials
//
D3DMATERIAL9 InitMtrl(D3DXCOLOR a, D3DXCOLOR d, D3DXCOLOR s, D3DXCOLOR e, float p);
const D3DMATERIAL9 WHITE_MTRL = InitMtrl(WHITE, WHITE, WHITE, BLACK, 2.0f);
const D3DMATERIAL9 RED_MTRL = InitMtrl(RED, RED, RED, BLACK, 2.0f);
const D3DMATERIAL9 GREEN_MTRL = InitMtrl(GREEN, GREEN, GREEN, BLACK, 2.0f);
const D3DMATERIAL9 BLUE_MTRL = InitMtrl(BLUE, BLUE, BLUE, BLACK, 2.0f);
const D3DMATERIAL9 YELLOW_MTRL = InitMtrl(YELLOW, YELLOW, YELLOW, BLACK, 2.0f);
//
// Bounding Objects
//
struct BoundingBox
{
BoundingBox();
bool isPointInside(D3DXVECTOR3& p);
D3DXVECTOR3 _min;
D3DXVECTOR3 _max;
};
struct BoundingSphere
{
BoundingSphere();
D3DXVECTOR3 _center;
float _radius;
};
//
// Constants
//
const float EPSILON = 0.001f;
//
// Drawing
//
// Function references "desert.bmp" internally. This file must
// be in the working directory.
bool DrawBasicScene(
IDirect3DDevice9* device,// Pass in 0 for cleanup.
float scale); // uniform scale
//
// Vertex Structures
//
struct Vertex
{
Vertex(){}
Vertex(float x, float y, float z,
float nx, float ny, float nz,
float u, float v)
{
_x = x; _y = y; _z = z;
_nx = nx; _ny = ny; _nz = nz;
_u = u; _v = v;
}
float _x, _y, _z;
float _nx, _ny, _nz;
float _u, _v;
static const DWORD FVF;
};
//
// Randomness
//
// Desc: Return random float in [lowBound, highBound] interval.
float GetRandomFloat(float lowBound, float highBound);
// Desc: Returns a random vector in the bounds specified by min and max.
void GetRandomVector(
D3DXVECTOR3* out,
D3DXVECTOR3* min,
D3DXVECTOR3* max);
//
// Conversion
//
DWORD FtoDw(float f);
//
// Interpolation
//
float Lerp(float a, float b, float t);
}
#endif // __d3dUtilityH__ | [
"zehaojin@gmail.com"
] | zehaojin@gmail.com |
032053199709cc9e026e9934d1104d1118e149c0 | 941e1c9c87576247aac5c28db16e2d73a2bec0af | /SelectDlg.h | f2b8702892dc36cfd2f9c61301c1c2251bf6acd3 | [] | no_license | luochong/vc-gms-1 | 49a5ccc2edd3da74da2a7d9271352db8213324cb | 607b087e37cc0946b4562b681bb65875863bc084 | refs/heads/master | 2016-09-06T09:32:16.340313 | 2009-06-14T07:35:19 | 2009-06-14T07:35:19 | 32,432,320 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 637 | h | #pragma once
#include "afxwin.h"
// CSelectDlg 对话框
class CSelectDlg : public CDialog
{
DECLARE_DYNAMIC(CSelectDlg)
public:
CSelectDlg(CWnd* pParent = NULL); // 标准构造函数
virtual ~CSelectDlg();
// 对话框数据
enum { IDD = IDD_DIALOG_SELECT };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
CString m_gname;
CString m_gcode;
CListBox m_listbox;
CString m_gnameEx;
bool isgoods;
virtual BOOL OnInitDialog();
afx_msg void OnLbnSelchangeList1();
afx_msg void OnBnClickedButton1();
CString m_title;
};
| [
"luochong1987@29d93fdc-527c-11de-bf49-a932634fd5a9"
] | luochong1987@29d93fdc-527c-11de-bf49-a932634fd5a9 |
c3da543f44ec4547f1b34f7334e34ce404860634 | 0307b62b6cd00b5e75d9219645d4d40dd1e73bec | /src/lve_renderer.cpp | 54cd166b73f5b2ae2d458b43483e0b07a2ba1532 | [] | no_license | vamsisridhar/ProjectAlice2D | 6500c66d5fbd04fccda07457f41225cf2dce9e0d | e4a11efa3939c4384b9e28a2369d5f198847b912 | refs/heads/main | 2023-08-24T08:03:39.699774 | 2021-10-14T15:37:29 | 2021-10-14T15:37:29 | 404,909,176 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,305 | cpp | #include "lve_renderer.hpp"
// std
#include <array>
#include <cassert>
#include <stdexcept>
namespace lve {
LveRenderer::LveRenderer(LveWindow &window, LveDevice &device) : lveWindow{window}, lveDevice{device} {
recreateSwapChain();
createCommandBuffers();
}
LveRenderer::~LveRenderer() { freeCommandBuffers(); }
void LveRenderer::recreateSwapChain() {
auto extent = lveWindow.getExtent();
while (extent.width == 0 || extent.height == 0) {
extent = lveWindow.getExtent();
glfwWaitEvents();
}
vkDeviceWaitIdle(lveDevice.device());
if (lveSwapChain == nullptr) {
lveSwapChain = std::make_unique<LveSwapChain>(lveDevice, extent);
} else {
std::shared_ptr<LveSwapChain> oldSwapChain = std::move(lveSwapChain);
lveSwapChain = std::make_unique<LveSwapChain>(lveDevice, extent, oldSwapChain);
if(!oldSwapChain->compareSwapFormat(*lveSwapChain.get())){
throw std::runtime_error("Swap chain image(or depth) format has changed");
}
}
// create Pipeline????
}
void LveRenderer::createCommandBuffers() {
commandBuffers.resize(LveSwapChain::MAX_FRAMES_IN_FLIGHT);
VkCommandBufferAllocateInfo allocInfo{};
allocInfo.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO;
allocInfo.level = VK_COMMAND_BUFFER_LEVEL_PRIMARY;
allocInfo.commandPool = lveDevice.getCommandPool();
allocInfo.commandBufferCount = static_cast<uint32_t>(commandBuffers.size());
if (vkAllocateCommandBuffers(lveDevice.device(), &allocInfo, commandBuffers.data()) !=
VK_SUCCESS) {
throw std::runtime_error("failed to allocate command buffers!");
}
}
void LveRenderer::freeCommandBuffers() {
vkFreeCommandBuffers(
lveDevice.device(),
lveDevice.getCommandPool(),
static_cast<uint32_t>(commandBuffers.size()),
commandBuffers.data());
commandBuffers.clear();
}
VkCommandBuffer LveRenderer::beginFrame(){
assert(!isFrameStarted && "Can't call beginFrame while already in progress");
auto result = lveSwapChain->acquireNextImage(¤tImageIndex);
if (result == VK_ERROR_OUT_OF_DATE_KHR) {
recreateSwapChain();
return nullptr;
}
if (result != VK_SUCCESS && result != VK_SUBOPTIMAL_KHR) {
throw std::runtime_error("failed to acquire swap chain image!");
}
isFrameStarted = true;
auto commandBuffer = getCurrentCommandBuffer();
VkCommandBufferBeginInfo beginInfo{};
beginInfo.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO;
if (vkBeginCommandBuffer(commandBuffer, &beginInfo) != VK_SUCCESS) {
throw std::runtime_error("failed to begin recording command buffer!");
}
return commandBuffer;
}
void LveRenderer::endFrame(){
assert(isFrameStarted && "Can't call endFrame while frame is not in progress");
auto commandBuffer = getCurrentCommandBuffer();
if (vkEndCommandBuffer(commandBuffer) != VK_SUCCESS) {
throw std::runtime_error("failed to record command buffer!");
}
auto result = lveSwapChain->submitCommandBuffers(&commandBuffer, ¤tImageIndex);
if (result == VK_ERROR_OUT_OF_DATE_KHR || result == VK_SUBOPTIMAL_KHR ||
lveWindow.wasWindowResized()) {
lveWindow.resetWindowResizedFlag();
recreateSwapChain();
} else if (result != VK_SUCCESS) {
throw std::runtime_error("failed to present swap chain image!");
}
isFrameStarted = false;
currentFrameIndex = (currentFrameIndex + 1) & LveSwapChain::MAX_FRAMES_IN_FLIGHT;
}
void LveRenderer::beginSwapChainRenderPass(VkCommandBuffer commandBuffer){
assert(isFrameStarted && "Can't call beginSwapChainRenderPass if frame is not in progress");
assert(commandBuffer == getCurrentCommandBuffer() && "Can't begin render pass on a command buffer from a different frame");
VkRenderPassBeginInfo renderPassInfo{};
renderPassInfo.sType = VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO;
renderPassInfo.renderPass = lveSwapChain->getRenderPass();
renderPassInfo.framebuffer = lveSwapChain->getFrameBuffer(currentImageIndex);
renderPassInfo.renderArea.offset = {0, 0};
renderPassInfo.renderArea.extent = lveSwapChain->getSwapChainExtent();
std::array<VkClearValue, 2> clearValues{};
clearValues[0].color = {0.1f, 0.1f, 0.1f, 1.0f};
clearValues[1].depthStencil = {1.0f, 0};
renderPassInfo.clearValueCount = static_cast<uint32_t>(clearValues.size());
renderPassInfo.pClearValues = clearValues.data();
vkCmdBeginRenderPass(commandBuffer, &renderPassInfo, VK_SUBPASS_CONTENTS_INLINE);
VkViewport viewport{};
viewport.x = 0.0f;
viewport.y = 0.0f;
viewport.width = static_cast<float>(lveSwapChain->getSwapChainExtent().width);
viewport.height = static_cast<float>(lveSwapChain->getSwapChainExtent().height);
viewport.minDepth = 0.0f;
viewport.maxDepth = 1.0f;
VkRect2D scissor{{0, 0}, lveSwapChain->getSwapChainExtent()};
vkCmdSetViewport(commandBuffer, 0, 1, &viewport);
vkCmdSetScissor(commandBuffer, 0, 1, &scissor);
}
void LveRenderer::endSwapChainRenderPass(VkCommandBuffer commandBuffer){
assert(isFrameStarted && "Can't call endSwapChainRenderPass if frame is not in progress");
assert(commandBuffer == getCurrentCommandBuffer() && "Can't end render pass on a command buffer from a different frame");
vkCmdEndRenderPass(commandBuffer);
}
} // namespace lve | [
"vamsisridhar@hotmail.com"
] | vamsisridhar@hotmail.com |
057cd220cd5c61c8b1598c0cc07b174f753a0d54 | 444282da953087e3117aa5b1910962d6a4f4b5cc | /test/src/DeclareExchangeTest.hpp | 85e83cb8c37ecd086474df06573d9c024bf570f4 | [] | no_license | cojae/HareCpp_Dev | d29051e3f99aeb588cf8f7bca18e01a8bc9ce3e6 | 36c6d3abe0bc7d9333e25a9b65f49ac07c92730b | refs/heads/master | 2023-03-02T06:06:29.661411 | 2021-02-13T16:19:14 | 2021-02-13T16:19:14 | 282,063,129 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,280 | hpp | #include "ProducerConsumerTester.hpp"
inline int testSomeMessageReceives(const int totalMsg, ProducerConsumerTester& pubsubTest) {
pubsubTest.Restart();
auto start = std::chrono::system_clock::now();
while(pubsubTest.GetDesiredMessageCount() < totalMsg) {
if(pubsubTest.GetUndesiredMessageCount() > 0)
return 0;
// Send a message over with the producer
auto newMessage = HareCpp::Message("hello world");
pubsubTest.producer.Send("newExchange","test",newMessage) ;
auto cur = std::chrono::system_clock::now();
std::chrono::duration<double> elapsedTime = cur - start;
// Kill after 5 seconds, we should receive 5 messages by now
if (elapsedTime.count() > 10)
return 0;
}
return 1;
}
TEST_F(ProducerConsumerTester, exchangeDeclareTest) {
ASSERT_EQ(HareCpp::HARE_ERROR_E::ALL_GOOD, consumer.Subscribe("newExchange", "test",
std::bind(&ProducerConsumerTester::defaultCallback,
this, std::placeholders::_1)));
ASSERT_EQ(HareCpp::HARE_ERROR_E::ALL_GOOD, producer.DeclareExchange("newExchange"));
producer.Start();
consumer.Start();
ASSERT_EQ(1, testSomeMessageReceives(5,*this));
} | [
"co.jae@pm.me"
] | co.jae@pm.me |
3c3aed967bb7a1463dbb54a5d4993e73f929f83d | 1311e01ec5e5308d782ed451e1f0fd1869d7e3a0 | /source/svgpolylineelement.h | c89c28244881ddced3268f1f6e3d32ea1de0c81c | [
"MIT"
] | permissive | seven1240/lunasvg | 00b76e893bb64418871b29aa6fa83fdb53ee8dee | fa01813f499cebb5705cd0dbd1a49bf78021e755 | refs/heads/master | 2022-06-19T07:39:11.156877 | 2020-03-25T13:07:40 | 2020-05-05T16:11:14 | 270,309,129 | 1 | 0 | null | 2020-06-07T13:06:30 | 2020-06-07T13:06:29 | null | UTF-8 | C++ | false | false | 407 | h | #ifndef SVGPOLYLINEELEMENT_H
#define SVGPOLYLINEELEMENT_H
#include "svgpolyelement.h"
namespace lunasvg {
class SVGPolylineElement : public SVGPolyElement
{
public:
SVGPolylineElement(SVGDocument* document);
Path makePathAndBoundingBox(RenderState& state) const;
SVGElementImpl* clone(SVGDocument* document) const;
};
} // namespace lunasvg
#endif // SVGPOLYLINEELEMENT_H
| [
"sammycageagle@gmail.com"
] | sammycageagle@gmail.com |
3cd526c0d0c1596cd7b1af34cec72449fdead093 | b5b064b7ca0e7f7ac4f80ab29b744fdf575f8b37 | /src/shared/protoDisconnectFromServer.hpp | 303adbe4bc03778ac46c10086d6ed135e4a04020 | [] | no_license | waterproofpatch/c_chat_app | 2a82cc25fffe4a6808ec12f35a6e71b36d32f5ae | 6139609a2ea08c4a254faf3d1b574ccfcd595d7e | refs/heads/master | 2021-11-11T21:36:13.043816 | 2021-11-07T09:43:54 | 2021-11-07T09:43:54 | 151,008,946 | 0 | 0 | null | 2018-10-15T01:17:23 | 2018-09-30T21:32:10 | C | UTF-8 | C++ | false | false | 229 | hpp |
#ifndef _PROTO_DISCONNECT_FROM_SERVER_H_
#define _PROTO_DISCONNECT_FROM_SERVER_H_
#include "errorCodes.hpp" /* proto_err_t */
#include "user.hpp"
proto_err_t protoDisconnectFromServer(user_t *user, const char *reason);
#endif | [
"waterproofpatch@gmail.com"
] | waterproofpatch@gmail.com |
959b4a1daf690cc9eebc19377ce72bfa3169bd7d | 07562a4262bfd89f63b121974b6ec2ff55055b0f | /menpo/io/mesh/cpp/assimpwrapper.cpp | fe61cab1c72d6c087343bf1d8c33483a635b2cca | [] | no_license | karla3jo/menpo-old | d82415c3e3f62829457741414e3186c74db4042f | 4d477089bf7f8e961db4488726d6123643cbc452 | refs/heads/master | 2020-05-18T13:32:38.279611 | 2014-03-31T11:47:57 | 2014-03-31T11:47:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,006 | cpp | #include <iostream>
#include <vector>
#include <assimp/Importer.hpp>
#include <assimp/scene.h>
#include <assimp/postprocess.h>
#include "assimpwrapper.h"
// *************** IMPORTER *************** //
AssimpImporter::AssimpImporter(std::string path){
// we only want raw info - don't care about a lot of the stuff that assimp
// could give us back. Here we disable all that stuff.
importer.SetPropertyInteger(AI_CONFIG_PP_RVC_FLAGS,
aiComponent_NORMALS |
aiComponent_TANGENTS_AND_BITANGENTS |
aiComponent_ANIMATIONS |
aiComponent_BONEWEIGHTS |
aiComponent_COLORS |
aiComponent_LIGHTS |
aiComponent_CAMERAS |
0);
const aiScene* aiscene = importer.ReadFile(path,
aiProcess_RemoveComponent |
aiProcess_JoinIdenticalVertices |
aiProcess_Triangulate |
aiProcess_FindDegenerates |
aiProcess_SortByPType);
if(!aiscene) {
throw std::string("We couldn't find a scene.");
}
p_scene = new AssimpScene(aiscene);
}
AssimpImporter::~AssimpImporter(){
delete p_scene;
}
AssimpScene* AssimpImporter::get_scene(){
return p_scene;
}
// *************** SCENE *************** //
AssimpScene::AssimpScene(const aiScene* aiscene){
p_scene = aiscene;
for(unsigned int i = 0; i < p_scene->mNumMeshes; i++) {
meshes.push_back(new AssimpMesh(p_scene->mMeshes[i], this));
}
}
AssimpScene::~AssimpScene(){
std::vector<AssimpMesh*>::iterator it;
for (it = meshes.begin(); it != meshes.end(); it++)
delete *it;
}
unsigned int AssimpScene::n_meshes(){
return p_scene->mNumMeshes;
}
std::string AssimpScene::texture_path(){
// get the material that is attached to this mesh
std::string path = NO_TEXTURE_PATH;
for(unsigned int i = 0; i < p_scene->mNumMaterials; i++) {
aiMaterial* mat = p_scene->mMaterials[i];
std::string path = diffuse_texture_path_on_material(mat);
if(path != NO_TEXTURE_PATH)
return path;
}
return path;
}
// *************** MESH *************** //
AssimpMesh::AssimpMesh(aiMesh* mesh, AssimpScene* scene_in){
p_mesh = mesh;
scene = scene_in;
}
unsigned int AssimpMesh::n_points(){
return p_mesh->mNumVertices;
}
unsigned int AssimpMesh::n_faces(){
return p_mesh->mNumFaces;
}
unsigned int AssimpMesh::n_tcoord_sets(){
bool has_tcoords[AI_MAX_NUMBER_OF_TEXTURECOORDS];
return tcoords_mask(p_mesh, has_tcoords);
}
bool AssimpMesh::has_points(){
return aiPrimitiveType_POINT & p_mesh->mPrimitiveTypes;
}
bool AssimpMesh::has_lines(){
return aiPrimitiveType_LINE & p_mesh->mPrimitiveTypes;
}
bool AssimpMesh::has_triangles(){
return aiPrimitiveType_TRIANGLE & p_mesh->mPrimitiveTypes;
}
bool AssimpMesh::has_polygons(){
return aiPrimitiveType_POLYGON & p_mesh->mPrimitiveTypes;
}
bool AssimpMesh::is_pointcloud(){
return (!(has_lines() || has_polygons() || has_triangles()));
}
bool AssimpMesh::is_trimesh(){
return (!(has_points() || has_lines() || has_polygons())
&& has_triangles());
}
void AssimpMesh::points(double* points){
for(unsigned int i = 0; i < p_mesh->mNumVertices; i++) {
aiVector3D point = p_mesh->mVertices[i];
points[3*i] = point.x;
points[3*i + 1] = point.y;
points[3*i + 2] = point.z;
}
}
void AssimpMesh::trilist(unsigned int* trilist){
// it is YOUR responsibility to ensure this
// mesh contains only triangles before calling this method.
for(unsigned int i = 0; i < p_mesh->mNumFaces; i++) {
aiFace face = p_mesh->mFaces[i];
trilist[3*i] = face.mIndices[0];
trilist[3*i + 1] = face.mIndices[1];
trilist[3*i + 2] = face.mIndices[2];
}
}
void AssimpMesh::tcoords(int index, double* tcoords){
/* Reads the (s,t) tcoords, removing the alpha channel component.
* expects tcoords to be a C contiguous array of size
* (n_points, 2)
*/
aiVector3D* tcoord_array = p_mesh->mTextureCoords[index];
for(unsigned int i = 0; i < p_mesh->mNumVertices; i++) {
aiVector3D tcoord = tcoord_array[i];
tcoords[2*i] = tcoord.x;
tcoords[2*i + 1] = tcoord.y;
}
}
void AssimpMesh::tcoords_with_alpha(int index, double* tcoords){
/* Reads the tcoords, keeping the alpha channel component.
* expects tcoords to be a C contiguous array of size
* (n_points, 3)
*/
aiVector3D* tcoord_array = p_mesh->mTextureCoords[index];
for(unsigned int i = 0; i < p_mesh->mNumVertices; i++){
aiVector3D tcoord = tcoord_array[i];
tcoords[3*i] = tcoord.x;
tcoords[3*i + 1] = tcoord.y;
tcoords[3*i + 2] = tcoord.z;
}
}
// *************** HELPER ROUTINES *************** //
unsigned int tcoords_mask(aiMesh* mesh, bool* has_tcoords){
int tcoords_counter = 0;
for(int i = 0; i < AI_MAX_NUMBER_OF_TEXTURECOORDS; i++){
if(mesh->HasTextureCoords(i)) {
has_tcoords[i] = true;
tcoords_counter++;
}
else
has_tcoords[i] = false;
}
return tcoords_counter;
}
std::string diffuse_texture_path_on_material(aiMaterial* mat){
aiString path;
//std::cout << mat->mNumProperties << std::endl;
aiString name;
mat->Get(AI_MATKEY_NAME, name);
//std::cout << "Material name is " << name.C_Str() << std::endl;
//std::cout << "Material path is " << path.C_Str() << std::endl;
unsigned int texture_count = mat->GetTextureCount(aiTextureType_DIFFUSE);
if(texture_count == 1) {
mat->GetTexture(aiTextureType_DIFFUSE, 0, &path,
NULL, NULL, NULL, NULL, NULL);
const char* c_path = path.C_Str();
std::string cpp_path(c_path);
return cpp_path;
}
else
return NO_TEXTURE_PATH;
}
| [
"jabooth@gmail.com"
] | jabooth@gmail.com |
48f30d557703921e9803da60733b9862dd201d63 | ce7f596f248cb65a37349ee1dc2e03430cb50e9c | /covidlq.cpp | ed89c050d1f60bfc4e2f3accfd54eb6a519dcea2 | [] | no_license | CodeSadhu/General-Coding-Practice | f19e7cf3e0de874abde6ae11fe10076b1229e338 | b6f40f3214fb8a8b4227829bc36b0a5e07679341 | refs/heads/master | 2022-11-28T03:27:06.645341 | 2020-07-28T08:16:41 | 2020-07-28T08:16:41 | 266,974,563 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 611 | cpp | #include <iostream>
using namespace std;
int main(){
int a[100], n;
int f = -1, s = -1, flag = 0;
cin>>n;
for (int i = 0; i < n; i ++)
cin>>a[i];
for (int i = 0; i < n; i ++){
if (a[i] == 1){
if (f == -1)
f = i;
else
s = i;
if (f != -1 && s != -1){
flag = 1;
f = -1;
s = -1;
}
else flag = 0;
}
}
if (flag = 1){
if (s - f == 6){
cout<<"YES";
}
else cout<<"NO";
}
return 0;
}
| [
"thecaffeinesadhu@gmail.com"
] | thecaffeinesadhu@gmail.com |
9bbc59aff696d93c8062bcbf7dc2d65c3f0b6585 | 21f0cea53a45722af470e3f8828786da339d2edd | /TREES/BuildHBTfromArray.cpp | 6491730bbbd86f60a0389e95f03c73ab1b1a22c6 | [] | no_license | hemantsaini-7/ExQuestions | 400c55ebc00436630a4d75dbc00b594ea8748202 | 05faef0b6f73e8bae4f247c5ea870274e69413f3 | refs/heads/master | 2023-06-24T10:58:05.817930 | 2021-07-23T18:09:20 | 2021-07-23T18:09:20 | 298,967,372 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,002 | cpp | #include <iostream>
#include <queue>
using namespace std;
class node
{
public:
int data;
node *left;
node *right;
node(int d)
{
data = d;
left = NULL;
right = NULL;
}
};
node *buildTree(int a[], int s, int e)
{
if (s > e)
return NULL;
int mid = (s + e) / 2;
node *root = new node(a[mid]);
root->left = buildTree(a, s, mid - 1);
root->right = buildTree(a, mid + 1, e);
return root;
}
void printBFS(node *root)
{
queue<node *> q;
q.push(root);
while (!q.empty())
{
node *f = q.front();
cout << f->data << " ";
q.pop();
if (f->left)
q.push(f->left);
if (f->right)
q.push(f->right);
}
return;
}
int main()
{
int a[] = {1, 2, 3, 4, 5, 6, 7};
int n = sizeof(a) / sizeof(a[0]);
node *root = buildTree(a, 0, n - 1);
printBFS(root);
}
// 8 10 1 -1 -1 6 9 -1 -1 7 -1 -1 3 -1 14 13 -1 -1 -1
// 3 4 -1 6 -1 -1 5 -1 -1 -1 | [
"hsainioff@gmail.com"
] | hsainioff@gmail.com |
5bb09c92f6f354372ae2cea564eb3de41e8182f9 | 75bd4b605476b1fe5b7e4486fdbaddc08dd72e28 | /source/RaumserverDaemon/RaumserverDaemon.cpp | 37cf88d878db4b43243ec730c09ee57f1c339d16 | [] | no_license | Nestrius/Raumserver | 85df42a658c624540e24574ec96abb6ea01d9f44 | 1eb6fe4b7da4fb4abdf9b8797aa00fcf8d6426a2 | refs/heads/master | 2021-06-07T18:29:22.863486 | 2016-10-21T14:40:35 | 2016-10-21T14:40:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,370 | cpp | #include <sys/types.h>
#include <sys/stat.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
#include <syslog.h>
#include <string.h>
#include <execinfo.h>
#include <signal.h>
#include <string.h>
#include <ucontext.h>
#include <unistd.h>
#include <iostream>
#include <cxxabi.h>
#include <ctime>
#include <raumserver/raumserver.h>
#define DAEMON_NAME "raumsrvDaemon"
std::shared_ptr<Raumkernel::Log::Log> gLog;
/* This structure mirrors the one found in /usr/include/asm/ucontext.h */
typedef struct _sig_ucontext {
unsigned long uc_flags;
struct ucontext *uc_link;
stack_t uc_stack;
struct sigcontext uc_mcontext;
sigset_t uc_sigmask;
} sig_ucontext_t;
void crit_err_hdlr(int sig_num, siginfo_t * info, void * ucontext)
{
void * caller_address;
sig_ucontext_t * uc;
std::tm* timeinfo;
char buffer [80];
// cerr out to file!
time_t t = time(0);
std::string file = "fault/fault_";
timeinfo = std::localtime(&t);
std::strftime(buffer,80,"%Y%m%d_%H%M%S", timeinfo);
file += buffer;
file += ".log";
std::stringstream errorBuffer;
uc = (sig_ucontext_t *)ucontext;
/* Get the address at the time the signal was raised */
#if defined(__i386__) // gcc specific
caller_address = (void *)uc->uc_mcontext.eip; // EIP: x86 specific
#elif defined(__x86_64__) // gcc specific
caller_address = (void *)uc->uc_mcontext.rip; // RIP: x86_64 specific
#elif defined(__arm__) // gcc specific
caller_address = (void *)uc->uc_mcontext.arm_pc;
#else
#error Unsupported architecture.
#endif
errorBuffer << "signal " << sig_num
<< " (" << strsignal(sig_num) << "), address is "
<< info->si_addr << " from " << caller_address
<< std::endl << std::endl;
void * array[50];
int size = backtrace(array, 50);
array[1] = caller_address;
char ** messages = backtrace_symbols(array, size);
// skip first stack frame (points here)
for (int i = 1; i < size && messages != NULL; ++i)
{
char *mangled_name = 0, *offset_begin = 0, *offset_end = 0;
// find parantheses and +address offset surrounding mangled name
for (char *p = messages[i]; *p; ++p)
{
if (*p == '(')
{
mangled_name = p;
}
else if (*p == '+')
{
offset_begin = p;
}
else if (*p == ')')
{
offset_end = p;
break;
}
}
// if the line could be processed, attempt to demangle the symbol
if (mangled_name && offset_begin && offset_end &&
mangled_name < offset_begin)
{
*mangled_name++ = '\0';
*offset_begin++ = '\0';
*offset_end++ = '\0';
int status;
char * real_name = abi::__cxa_demangle(mangled_name, 0, 0, &status);
// if demangling is successful, output the demangled function name
if (status == 0)
{
errorBuffer << "[bt]: (" << i << ") " << messages[i] << " : "
<< real_name << "+" << offset_begin << offset_end
<< std::endl;
}
// otherwise, output the mangled function name
else
{
errorBuffer << "[bt]: (" << i << ") " << messages[i] << " : "
<< mangled_name << "+" << offset_begin << offset_end
<< std::endl;
}
free(real_name);
}
// otherwise, print the whole line
else
{
errorBuffer << "[bt]: (" << i << ") " << messages[i] << std::endl;
}
}
errorBuffer << std::endl;
free(messages);
gLog->error(errorBuffer.str(), CURRENT_POSITION);
gLog->critical("SIGNAL FAULT! Check files in fault directory", CURRENT_POSITION);
exit(EXIT_FAILURE);
}
inline void AddSignalHandlers()
{
struct sigaction sigact;
sigact.sa_sigaction = crit_err_hdlr;
sigact.sa_flags = SA_RESTART | SA_SIGINFO;
if (sigaction(SIGSEGV, &sigact, (struct sigaction *)NULL) != 0)
{
fprintf(stderr, "error setting signal handler for %d (%s)\n",
SIGSEGV, strsignal(SIGSEGV));
exit(EXIT_FAILURE);
}
if (sigaction(SIGABRT, &sigact, (struct sigaction *)NULL) != 0)
{
fprintf(stderr, "error setting signal handler for %d (%s)\n",
SIGABRT, strsignal(SIGABRT));
exit(EXIT_FAILURE);
}
}
std::string getWorkingDirectory()
{
std::string path = "";
syslog (LOG_NOTICE, "Getting PID");
pid_t pid2 = getpid();
char buf[20] = {0};
syslog (LOG_NOTICE, "1");
sprintf(buf,"%d",pid2);
std::string _link = "/proc/";
syslog (LOG_NOTICE, "2");
_link.append( buf );
_link.append( "/exe");
syslog (LOG_NOTICE, "3");
char proc[512];
syslog (LOG_NOTICE, "readlink");
int ch = readlink(_link.c_str(),proc,512);
syslog (LOG_NOTICE, "4");
if (ch != -1)
{
proc[ch] = 0;
path = proc;
syslog (LOG_NOTICE, "5");
std::string::size_type t = path.find_last_of("/");
path = path.substr(0,t);
}
syslog (LOG_NOTICE, "6");
return path + std::string("/");
}
int main(int argc, char *argv[])
{
Raumserver::Raumserver raumserverObject;
//Set our Logging Mask and open the Log
setlogmask(LOG_UPTO(LOG_NOTICE));
openlog(DAEMON_NAME, LOG_CONS | LOG_NDELAY | LOG_PERROR | LOG_PID, LOG_USER);
syslog(LOG_NOTICE, "Trying to start daemon");
pid_t pid, sid;
//Fork the Parent Process
pid = fork();
if (pid < 0) { syslog (LOG_NOTICE, "Error forking the parent process"); exit(EXIT_FAILURE); }
//We got a good pid, Close the Parent Process
if (pid > 0) { syslog (LOG_NOTICE, "Got pid, closing parent process"); exit(EXIT_SUCCESS); }
//Change File Mask
umask(0);
//Create a new Signature Id for our child
sid = setsid();
if (sid < 0) { syslog (LOG_NOTICE, "Signature ID for child process could not be created!"); exit(EXIT_FAILURE); }
syslog (LOG_NOTICE, "Daemon ready, initialize raumserver object");
// get the working directory of the executable
std::string workingDirectory = getWorkingDirectory();
syslog (LOG_NOTICE, std::string("Working directory: " + workingDirectory).c_str());
//Change Directory
//If we cant find the directory we exit with failure.
if ((chdir("/")) < 0) { exit(EXIT_FAILURE); }
//Close Standard File Descriptors
close(STDIN_FILENO);
close(STDOUT_FILENO);
close(STDERR_FILENO);
// Add some system signal handlers for crash reporting
//raumserverObject.addSystemSignalHandlers();
AddSignalHandlers();
// set the log adapters we want to use (because we do not want to use the standard ones which includes console output)
std::vector<std::shared_ptr<Raumkernel::Log::LogAdapter>> adapters;
auto logAdapterFile = std::shared_ptr<Raumkernel::Log::LogAdapter_File>(new Raumkernel::Log::LogAdapter_File());
logAdapterFile->setLogFilePath(workingDirectory + "logs/");
adapters.push_back(logAdapterFile);
// create raumserver object and do init init
raumserverObject.setSettingsFile(workingDirectory + "settings.xml");
raumserverObject.initLogObject(Raumkernel::Log::LogType::LOGTYPE_ERROR, workingDirectory + "logs/", adapters);
raumserverObject.init();
gLog = raumserverObject.getLogObject();
gLog->debug("Deamon test log", CURRENT_POSITION);
// go into an endless loop and wait until daemon is killed by the syste,
while(true)
{
sleep(60); //Sleep for 60 seconds
}
syslog (LOG_NOTICE, "Daemon closed");
//Close the log
closelog ();
}
| [
"chris_d85@hotmail.com"
] | chris_d85@hotmail.com |
8d2771ff7bd327c365f3b230243be7738cf3256c | 540e91fbcd0ad96614fdbd8b4bda9c90e61d8189 | /types_and_declaration/type_alias.cpp | 651bcc2ba0dcefc0ff0dd1310ae22efadfc4f481 | [] | no_license | ipritish/cpp_basics | 14c5b714c5b4f908d520201ed55c6c5464bff04f | 8963b9ba38587aebbc979ca10965bf4a7f15620b | refs/heads/master | 2021-01-22T13:46:58.071986 | 2016-01-07T09:53:36 | 2016-01-07T09:53:36 | 41,899,998 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 143 | cpp | #include<iostream>
using namespace std;
int main()
{
char p = 'A';
using Pchar = char*;
Pchar p1 = &p;
cout << *p1 << "\n";
return 0;
}
| [
"pritishjain2009@gmail.com"
] | pritishjain2009@gmail.com |
0d10649942cb5fabe6e814655c709f724a598c8b | ea401c3e792a50364fe11f7cea0f35f99e8f4bde | /hackathon/2010/hang/ct3d/coseg/AT3D/extends/glwidget_ex.h | 374e1ea9783adf3ce14f44b11da7901cf5f3df6b | [
"MIT",
"Apache-2.0"
] | permissive | Vaa3D/vaa3d_tools | edb696aa3b9b59acaf83d6d27c6ae0a14bf75fe9 | e6974d5223ae70474efaa85e1253f5df1814fae8 | refs/heads/master | 2023-08-03T06:12:01.013752 | 2023-08-02T07:26:01 | 2023-08-02T07:26:01 | 50,527,925 | 107 | 86 | MIT | 2023-05-22T23:43:48 | 2016-01-27T18:19:17 | C++ | UTF-8 | C++ | false | false | 494 | h | #ifndef GLWIDGETEX_H
#define GLWIDGETEX_H
#include <vector>
#include <QObject>
#include <QtGui>
#include "../widgets/glwidget.h"
using namespace std;
class GLWidgetEX : public GLWidget
{
//Q_OBJECT
public:
GLWidgetEX(QWidget* parent);
~GLWidgetEX();
void setWidgetSize(int width, int height, int depth);
void addTrajectory(vector<float>& trajectory, int color);
protected:
void paintGL();
private:
vector<vector<float> > m_trajectorys; // m * 3*ni
vector<int> m_colors;
};
#endif
| [
"hanchuan.peng@gmail.com"
] | hanchuan.peng@gmail.com |
ca504cfd0a331c3aaf4fddaa31833087e6a18b21 | 2a091f02bbd6a675e9713b859a26e336b8d81b65 | /source/repos/KlasAgregatWariant6/KlasAgregatWariant6/KartaCzytelnika.h | b65f51245ee83eab462197406bca03fda7c673e2 | [] | no_license | kokakola1994/VSStudent | 9e9e1052503dd8b37c852efbafded71f20ecccfc | afb2188395620946f887caf8f771b4c3017965bb | refs/heads/master | 2023-03-21T03:07:18.262874 | 2020-01-27T05:43:00 | 2020-01-27T05:43:00 | 162,741,544 | 0 | 0 | null | 2023-03-03T06:58:06 | 2018-12-21T17:35:07 | C++ | UTF-8 | C++ | false | false | 691 | h | #pragma once
#include <iostream>
#include <string>
using namespace std;
class KartaCzytelnika
{
private:
string iin;
string adres;
int numer;
int data;
public:
KartaCzytelnika (int nnumer = 100, int ndata = 2000, string iin = "", string nadres = "");
~KartaCzytelnika();
void Setnumer(int numer) { this->numer = numer; };
int Getnumer()const { return numer; };
void Setdata(int data) { this->data = data; };
int Getdata()const { return data; };
void Setadres(string adres) { this->adres = adres; };
string Getadres()const { return adres; };
void Setiin(string iin) { this->iin = iin; };
string Getiin() const { return iin; };
void Printczytelnik();
void InputCzytelnik();
}; | [
"zabohunter1994@gmail.com"
] | zabohunter1994@gmail.com |
8c89df2771865a0b28a6fd9e2c5bfb15fc6fecb2 | 19681bc523d31eaf020f04bb14d31cfcab169c93 | /example-osc-output/src/ofApp.h | 587377b51f78947ec52a5a25068298d3643876e5 | [
"MIT"
] | permissive | hinike/ofxPDSP | 16e6e6e9c759a4a980300a93f3a661ce080b13c9 | b2c7fe4eec7b972e728373601d70f8d989d5c2ab | refs/heads/master | 2020-03-19T15:39:09.261972 | 2018-06-08T14:27:28 | 2018-06-08T14:27:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 737 | h | #pragma once
#include "ofMain.h"
#include "ofxSIMDFloats.h"
#include "ofxPDSP.h"
class ofApp : public ofBaseApp{
public:
void setup();
void update();
void draw();
void keyPressed(int key);
void keyReleased(int key);
void mouseMoved(int x, int y );
void mouseDragged(int x, int y, int button);
void mousePressed(int x, int y, int button);
void mouseReleased(int x, int y, int button);
void mouseEntered(int x, int y);
void mouseExited(int x, int y);
void windowResized(int w, int h);
void dragEvent(ofDragInfo dragInfo);
void gotMessage(ofMessage msg);
ofxPDSPEngine engine;
ofxPDSPOscOutput oscOut;
pdsp::Sequence sequence;
};
| [
"nicola@npisanti.com"
] | nicola@npisanti.com |
e51d65894d9d20ecf0f724b14508ff357b6c6897 | a4008ca31634dcafe53137267d7b2df4572605bc | /reco/CurveTracking/STCorrCurveTHProx.cc | 0a5e3a42fda5df40cbe423c873d0cbbf802b1f9b | [] | no_license | SpiRIT-Collaboration/SpiRITROOT | 416f766d59110b23f14b3f8c5647c649d5c42efb | 0f5154b75e5db0d736373386e1481caa7c2ff03c | refs/heads/develop | 2023-03-10T15:25:16.906623 | 2022-01-21T17:42:01 | 2022-01-21T17:42:01 | 19,332,445 | 6 | 3 | null | 2018-12-19T09:04:44 | 2014-05-01T01:20:47 | C++ | UTF-8 | C++ | false | false | 2,845 | cc | #include "STCorrCurveTHProx.hh"
#include <iostream>
using namespace std;
STCorrCurveTHProx::STCorrCurveTHProx(
Double_t xProxCut,
Double_t yProxCut,
Double_t zProxCut,
Int_t nHitsCompare,
Int_t nHitsCompareMax)
{
fXProxCut = xProxCut;
fYProxCut = yProxCut;
fZProxCut = zProxCut;
fNumHitsCompare = nHitsCompare;
fNumHitsCompareMax = nHitsCompareMax;
}
Bool_t
STCorrCurveTHProx::Correlate(STCurveTrack *track,
STHit *hit,
Bool_t &survive,
Double_t &matchQuality)
{
survive = kTRUE;
Int_t numHitsInTrack = track -> GetNumHits();
Int_t numHitsCompare = numHitsInTrack - track -> GetNumHitsRemoved();
survive = kFALSE;
if (numHitsCompare > fNumHitsCompare) {
numHitsCompare = fNumHitsCompare;
}
Double_t xCut = fXProxCut;
Double_t yCut = fYProxCut;
Double_t zCut = fZProxCut;
TVector3 positionHit = hit -> GetPosition();
STHit *hitT = track -> GetHit(numHitsInTrack - 1);
TVector3 positionHitInTrack = hitT -> GetPosition();
Double_t dX = positionHitInTrack.X() - positionHit.X();
Double_t dY = positionHitInTrack.Y() - positionHit.Y();
Double_t dZ = positionHitInTrack.Z() - positionHit.Z();
if (dX < 0) dX *= -1;
if (dY < 0) dY *= -1;
if (dZ < 0) dZ *= -1;
#ifdef DEBUG_CURVE
cout << "ppre: "
<< dX << " <? " << xCut * 5 << " | "
<< dY << " <? " << yCut * 5 << " | "
<< dZ << " <? " << zCut * 5 << endl;
#endif
if ((dX < xCut * 5 && dY < yCut * 5 && dZ < zCut * 5) == kFALSE)
{
survive = kFALSE;
return kTRUE;
}
for (Int_t iHit = 0; iHit < numHitsCompare; iHit++)
{
hitT = track -> GetHit(numHitsInTrack - 1 - iHit);
positionHitInTrack = hitT -> GetPosition();
dX = positionHitInTrack.X() - positionHit.X();
dY = positionHitInTrack.Y() - positionHit.Y();
dZ = positionHitInTrack.Z() - positionHit.Z();
#ifdef DEBUGLIT_CUT
STDebugLogger::Instance() -> FillHist1("dx", dX, 100, 0, 30);
STDebugLogger::Instance() -> FillHist1("dy", dY, 100, 0, 30);
STDebugLogger::Instance() -> FillHist1("dz", dZ, 100, 0, 10);
#endif
if (dX < 0) dX *= -1;
if (dY < 0) dY *= -1;
if (dZ < 0) dZ *= -1;
#ifdef DEBUG_CURVE
cout << "prox: "
<< dX << " <? " << xCut << " | "
<< dY << " <? " << yCut << " | "
<< dZ << " <? " << zCut << endl;
#endif
Double_t corrX = (xCut - dX) / xCut;
Double_t corrY = (yCut - dY) / yCut;
Double_t corrZ = (zCut - dZ) / zCut;
if (corrX >= 0 && corrY >= 0 && corrZ >= 0)
{
survive = kTRUE;
matchQuality = sqrt((corrX*corrX + corrY*corrY + corrZ*corrZ + matchQuality*matchQuality) / 4);
#ifdef DEBUG_CURVE
cout << "quality: " << matchQuality << endl;
#endif
return kTRUE;
}
}
return kTRUE;
}
| [
"phyjics@gmail.com"
] | phyjics@gmail.com |
3aaa174044aa91e63e8d7b8b35dbb347f2adebfd | cbf9d42397cc2bda21d2451d576c6e0307666243 | /src/Rodin/Variational/Transpose.h | 06a93ae77b1cc045c31e8eb54033061868e93cc0 | [
"BSL-1.0"
] | permissive | cbritopacheco/rodin | 272bd34b8d91ec825934a617d1fea751786a9632 | a64520db90ac444b7ce61ca353aa9fe85e4868d0 | refs/heads/master | 2023-08-21T20:19:35.539806 | 2023-08-14T20:36:37 | 2023-08-14T20:36:37 | 422,234,328 | 24 | 5 | BSL-1.0 | 2023-08-14T18:42:04 | 2021-10-28T14:22:55 | C++ | UTF-8 | C++ | false | false | 4,785 | h | /*
* Copyright Carlos BRITO PACHECO 2021 - 2022.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE or copy at
* https://www.boost.org/LICENSE_1_0.txt)
*/
#ifndef RODIN_VARIATIONAL_TRANSPOSE_H
#define RODIN_VARIATIONAL_TRANSPOSE_H
#include "ShapeFunction.h"
#include "MatrixFunction.h"
namespace Rodin::Variational
{
/**
* @defgroup TransposeSpecializations Transpose Template Specializations
* @brief Template specializations of the Transpose class.
* @see Transpose
*/
/**
* @brief Transpose of a FunctionBase object.
* @ingroup TransposeSpecializations
*/
template <class NestedDerived>
class Transpose<FunctionBase<NestedDerived>> final
: public FunctionBase<Transpose<FunctionBase<NestedDerived>>>
{
public:
using Operand = FunctionBase<NestedDerived>;
using Parent = FunctionBase<Transpose<Operand>>;
/**
* @brief Constructs the Transpose matrix of the given matrix.
*/
constexpr
Transpose(const Operand& m)
: m_operand(m.copy())
{}
constexpr
Transpose(const Transpose& other)
: Parent(other),
m_operand(other.m_operand->copy())
{}
constexpr
Transpose(Transpose&& other)
: Parent(std::move(other)),
m_operand(std::move(other.m_operand))
{}
inline
constexpr
RangeShape getRangeShape() const
{
return m_operand->getRangeShape().transpose();
}
inline
constexpr
const Operand& getOperand() const
{
assert(m_operand);
return *m_operand;
}
inline
constexpr
auto getValue(const Geometry::Point& p) const
{
using OperandRange = typename FormLanguage::Traits<Operand>::RangeType;
static_assert(std::is_same_v<OperandRange, Math::Vector> || std::is_same_v<OperandRange, Math::Matrix>);
return this->object(getOperand().getValue(p)).transpose();
}
inline Transpose* copy() const noexcept override
{
return new Transpose(*this);
}
private:
std::unique_ptr<Operand> m_operand;
};
template <class NestedDerived>
Transpose(const FunctionBase<NestedDerived>&) -> Transpose<FunctionBase<NestedDerived>>;
/**
* @brief Transpose of a ShapeFunctionBase object.
* @ingroup TransposeSpecializations
*/
template <class NestedDerived, class FES, ShapeFunctionSpaceType Space>
class Transpose<ShapeFunctionBase<NestedDerived, FES, Space>> final
: public ShapeFunctionBase<Transpose<ShapeFunctionBase<NestedDerived, FES, Space>>, FES, Space>
{
public:
using Operand = ShapeFunctionBase<NestedDerived, FES, Space>;
using Parent = ShapeFunctionBase<Transpose<Operand>, FES, Space>;
constexpr
Transpose(const Operand& op)
: Parent(op.getFiniteElementSpace()),
m_operand(op.copy())
{}
constexpr
Transpose(const Transpose& other)
: Parent(other),
m_operand(other.m_operand->copy())
{}
constexpr
Transpose(Transpose&& other)
: Parent(std::move(other)),
m_operand(std::move(other.m_operand))
{}
inline
constexpr
const auto& getLeaf() const
{
return getOperand().getLeaf();
}
inline
constexpr
RangeShape getRangeShape() const
{
return getOperand().getRangeShape().transpose();
}
inline
constexpr
size_t getDOFs(const Geometry::Simplex& simplex) const
{
return getOperand().getDOFs(simplex);
}
inline
constexpr
const Operand& getOperand() const
{
assert(m_operand);
return *m_operand;
}
inline
constexpr
auto getTensorBasis(const Geometry::Point& p) const
{
using OperandRange = typename FormLanguage::Traits<Operand>::RangeType;
static_assert(std::is_same_v<OperandRange, Math::Vector> || std::is_same_v<OperandRange, Math::Matrix>);
const auto& op = this->object(getOperand().getTensorBasis(p));
return TensorBasis(op.getDOFs(), [&](size_t i){ return op(i).transpose(); });
}
inline
constexpr
const FES& getFiniteElementSpace() const
{
return m_operand.getFiniteElementSpace();
}
inline Transpose* copy() const noexcept override
{
return new Transpose(*this);
}
private:
std::unique_ptr<Operand> m_operand;
};
template <class NestedDerived, class FES, ShapeFunctionSpaceType Space>
Transpose(const ShapeFunctionBase<NestedDerived, FES, Space>&)
-> Transpose<ShapeFunctionBase<NestedDerived, FES, Space>>;
}
#endif
| [
"carlos.brito524@gmail.com"
] | carlos.brito524@gmail.com |
7290d8a46e2b3b209eaf0058942944b25a32d0d5 | 38c10c01007624cd2056884f25e0d6ab85442194 | /third_party/WebKit/Source/core/loader/DocumentLoadTiming.h | 6bd081ef2b1ec2feb63643fe41983047bd65e8d8 | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"BSD-3-Clause",
"BSD-2-Clause",
"LGPL-2.0-only",
"LGPL-2.1-only",
"LicenseRef-scancode-warranty-disclaimer",
"GPL-2.0-only",
"LicenseRef-scancode-other-copyleft"
] | permissive | zenoalbisser/chromium | 6ecf37b6c030c84f1b26282bc4ef95769c62a9b2 | e71f21b9b4b9b839f5093301974a45545dad2691 | refs/heads/master | 2022-12-25T14:23:18.568575 | 2016-07-14T21:49:52 | 2016-07-23T08:02:51 | 63,980,627 | 0 | 2 | BSD-3-Clause | 2022-12-12T12:43:41 | 2016-07-22T20:14:04 | null | UTF-8 | C++ | false | false | 3,797 | h | /*
* Copyright (C) 2010 Google, Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY GOOGLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GOOGLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef DocumentLoadTiming_h
#define DocumentLoadTiming_h
#include "core/CoreExport.h"
#include "platform/heap/Handle.h"
#include "wtf/CurrentTime.h"
namespace blink {
class DocumentLoader;
class KURL;
class CORE_EXPORT DocumentLoadTiming final {
DISALLOW_ALLOCATION();
public:
explicit DocumentLoadTiming(DocumentLoader&);
double monotonicTimeToZeroBasedDocumentTime(double) const;
double monotonicTimeToPseudoWallTime(double) const;
double pseudoWallTimeToMonotonicTime(double) const;
void markNavigationStart();
void setNavigationStart(double);
void addRedirect(const KURL& redirectingUrl, const KURL& redirectedUrl);
void markUnloadEventStart();
void markUnloadEventEnd();
void markFetchStart();
void setResponseEnd(double);
void markLoadEventStart();
void markLoadEventEnd();
void setHasSameOriginAsPreviousDocument(bool value) { m_hasSameOriginAsPreviousDocument = value; }
double navigationStart() const { return m_navigationStart; }
double unloadEventStart() const { return m_unloadEventStart; }
double unloadEventEnd() const { return m_unloadEventEnd; }
double redirectStart() const { return m_redirectStart; }
double redirectEnd() const { return m_redirectEnd; }
short redirectCount() const { return m_redirectCount; }
double fetchStart() const { return m_fetchStart; }
double responseEnd() const { return m_responseEnd; }
double loadEventStart() const { return m_loadEventStart; }
double loadEventEnd() const { return m_loadEventEnd; }
bool hasCrossOriginRedirect() const { return m_hasCrossOriginRedirect; }
bool hasSameOriginAsPreviousDocument() const { return m_hasSameOriginAsPreviousDocument; }
double referenceMonotonicTime() const { return m_referenceMonotonicTime; }
DECLARE_TRACE();
private:
void setRedirectStart(double);
void markRedirectEnd();
void notifyDocumentTimingChanged();
double m_referenceMonotonicTime;
double m_referenceWallTime;
double m_navigationStart;
double m_unloadEventStart;
double m_unloadEventEnd;
double m_redirectStart;
double m_redirectEnd;
short m_redirectCount;
double m_fetchStart;
double m_responseEnd;
double m_loadEventStart;
double m_loadEventEnd;
bool m_hasCrossOriginRedirect;
bool m_hasSameOriginAsPreviousDocument;
RawPtrWillBeMember<DocumentLoader> m_documentLoader;
};
} // namespace blink
#endif
| [
"zeno.albisser@hemispherian.com"
] | zeno.albisser@hemispherian.com |
017da0d728a30217af4051ef3967a8f5aa2c3727 | 06dda1cf03a4aa75fb69f19babb847974a9f8681 | /Source/NoEndHouse/NoEndHouseGameMode.cpp | 93620bd17c0cec6311dfbd5dfcceebd150052c31 | [] | no_license | 0x2A/NoEndHouse | 8f88e365920bd0a351a50229ecf238554419bb2c | dee7041a78fce16a40086433d8da20bc5299f85f | refs/heads/master | 2023-02-20T16:30:28.586782 | 2017-07-19T15:37:14 | 2017-07-19T15:37:14 | 47,028,809 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 714 | cpp | // Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#include "NoEndHouse.h"
#include "NoEndHouseGameMode.h"
#include "NoEndHouseHUD.h"
#include "NoEndHouseCharacter.h"
#include "NEHPlayerController.h"
#include "NEHGameState.h"
ANoEndHouseGameMode::ANoEndHouseGameMode()
: Super()
{
// set default pawn class to our Blueprinted character
static ConstructorHelpers::FClassFinder<APawn> PlayerPawnClassFinder(TEXT("/Game/Characters/Blueprints/FirstPersonCharacter"));
DefaultPawnClass = PlayerPawnClassFinder.Class;
// use our custom HUD class
HUDClass = ANoEndHouseHUD::StaticClass();
GameStateClass = ANEHGameState::StaticClass();
PlayerControllerClass = ANEHPlayerController::StaticClass();
}
| [
"frank.koehnke@fh-heidelberg.de"
] | frank.koehnke@fh-heidelberg.de |
cb032959d7dec236e9d7c8b85177ffa7a8c29c94 | 6e20207f8aff0f0ad94f05bd025810c6b10a1d5f | /SDK/EnhancedCricketBat_RecipePickup_classes.h | aa40fc6e5c0b85b14a8e135ea24c71920c11152e | [] | no_license | zH4x-SDK/zWeHappyFew-SDK | 2a4e246d8ee4b58e45feaa4335f1feb8ea618a4a | 5906adc3edfe1b5de86b7ef0a0eff38073e12214 | refs/heads/main | 2023-08-17T06:05:18.561339 | 2021-08-27T13:36:09 | 2021-08-27T13:36:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 724 | h | #pragma once
// Name: WeHappyFew, Version: 1.8.8
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
namespace SDK
{
//---------------------------------------------------------------------------
// Classes
//---------------------------------------------------------------------------
// BlueprintGeneratedClass EnhancedCricketBat_RecipePickup.EnhancedCricketBat_RecipePickup_C
// 0x0000 (0x07A1 - 0x07A1)
class AEnhancedCricketBat_RecipePickup_C : public ACraftingRecipePickup_C
{
public:
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("BlueprintGeneratedClass EnhancedCricketBat_RecipePickup.EnhancedCricketBat_RecipePickup_C");
return ptr;
}
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"zp2kshield@gmail.com"
] | zp2kshield@gmail.com |
78ab65d0ff047a781f684697117a9262043e2cbd | dd9dd8e79b35cefdd36911117c2858f3248452f5 | /src/test/librbd/test_fixture.h | 508e4405c6cf301481b8c645bbafcfc94670a7f4 | [
"MIT"
] | permissive | SrinivasaBharath/ceph-1 | fed913cbf90c8d8ddffa156987d7b06464f19743 | 6a0747b6b79f5ca814afca6cefeb45f52fb9a509 | refs/heads/master | 2023-01-13T20:43:58.705726 | 2020-09-20T13:31:14 | 2020-09-20T13:31:14 | 298,234,477 | 0 | 0 | MIT | 2020-09-24T09:42:19 | 2020-09-24T09:42:18 | null | UTF-8 | C++ | false | false | 1,526 | h | // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#include "include/int_types.h"
#include "include/rados/librados.h"
#include "include/rbd/librbd.hpp"
#include "librbd/ImageCtx.h"
#include "gtest/gtest.h"
#include <set>
#include <string>
using namespace ceph;
class TestFixture : public ::testing::Test {
public:
TestFixture();
static void SetUpTestCase();
static void TearDownTestCase();
static std::string get_temp_image_name();
void SetUp() override;
void TearDown() override;
int open_image(const std::string &image_name, librbd::ImageCtx **ictx);
void close_image(librbd::ImageCtx *ictx);
int snap_create(librbd::ImageCtx &ictx, const std::string &snap_name);
int snap_protect(librbd::ImageCtx &ictx, const std::string &snap_name);
int flatten(librbd::ImageCtx &ictx, librbd::ProgressContext &prog_ctx);
int resize(librbd::ImageCtx *ictx, uint64_t size);
int lock_image(librbd::ImageCtx &ictx, ClsLockType lock_type,
const std::string &cookie);
int unlock_image();
int acquire_exclusive_lock(librbd::ImageCtx &ictx);
static std::string _pool_name;
static librados::Rados _rados;
static rados_t _cluster;
static uint64_t _image_number;
static std::string _data_pool;
CephContext* m_cct = nullptr;
librados::IoCtx m_ioctx;
librbd::RBD m_rbd;
std::string m_image_name;
uint64_t m_image_size;
std::set<librbd::ImageCtx *> m_ictxs;
std::string m_lock_object;
std::string m_lock_cookie;
};
| [
"vasu@redhat.com"
] | vasu@redhat.com |
f617de6309959d2ce4c9e5665ccf749a3df583c4 | a8223cd98343fef24eed1f5749c7199e4e8e1c40 | /UP-Magic_Demo实训案例/UP-Magic_Demo_install_20110217/include/Qt/qvariant.h | 977d2fb91bdd3c9b0d42943d43ee548ccbe71b1e | [] | no_license | yunzimos/magicprogram | 9f6ad14ae96181ea87f22b0e927399b197134da3 | d68b55fd9ab698539f254b6e01c8a6690b8cad16 | refs/heads/master | 2020-09-15T05:23:14.837416 | 2019-11-29T09:08:33 | 2019-11-29T09:08:33 | 223,356,234 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,434 | h | /****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of the QtCore module of the Qt Toolkit.
**
** This file may be used under the terms of the GNU General Public
** License versions 2.0 or 3.0 as published by the Free Software
** Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3
** included in the packaging of this file. Alternatively you may (at
** your option) use any later version of the GNU General Public
** License if such license has been publicly approved by Trolltech ASA
** (or its successors, if any) and the KDE Free Qt Foundation.
**
** Please review the following information to ensure GNU General
** Public Licensing requirements will be met:
** http://trolltech.com/products/qt/licenses/licensing/opensource/. If
** you are unsure which license is appropriate for your use, please
** review the following information:
** http://trolltech.com/products/qt/licenses/licensing/licensingoverview
** or contact the sales department at sales@trolltech.com.
**
** In addition, as a special exception, Trolltech, as the sole
** copyright holder for Qt Designer, grants users of the Qt/Eclipse
** Integration plug-in the right for the Qt/Eclipse Integration to
** link to functionality provided by Qt Designer and its related
** libraries.
**
** This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
** INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE. Trolltech reserves all rights not expressly
** granted herein.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#ifndef QVARIANT_H
#define QVARIANT_H
#include <QtCore/qatomic.h>
#include <QtCore/qbytearray.h>
#include <QtCore/qlist.h>
#include <QtCore/qmetatype.h>
#include <QtCore/qmap.h>
#include <QtCore/qstring.h>
QT_BEGIN_HEADER
QT_BEGIN_NAMESPACE
QT_MODULE(Core)
class QBitArray;
class QDataStream;
class QDate;
class QDateTime;
class QLine;
class QLineF;
class QLocale;
class QMatrix;
class QTransform;
class QStringList;
class QTime;
class QPoint;
class QPointF;
class QSize;
class QSizeF;
class QRect;
class QRectF;
#ifndef QT_NO_REGEXP
class QRegExp;
#endif
class QTextFormat;
class QTextLength;
class QUrl;
class QVariant;
class QVariantComparisonHelper;
#ifndef QT_NO_MEMBER_TEMPLATES
template <typename T>
inline QVariant qVariantFromValue(const T &);
template <typename T>
inline void qVariantSetValue(QVariant &, const T &);
template<typename T>
inline T qVariantValue(const QVariant &);
template<typename T>
inline bool qVariantCanConvert(const QVariant &);
#endif
class Q_CORE_EXPORT QVariant
{
public:
enum Type {
Invalid = 0,
Bool = 1,
Int = 2,
UInt = 3,
LongLong = 4,
ULongLong = 5,
Double = 6,
Char = 7,
Map = 8,
List = 9,
String = 10,
StringList = 11,
ByteArray = 12,
BitArray = 13,
Date = 14,
Time = 15,
DateTime = 16,
Url = 17,
Locale = 18,
Rect = 19,
RectF = 20,
Size = 21,
SizeF = 22,
Line = 23,
LineF = 24,
Point = 25,
PointF = 26,
RegExp = 27,
LastCoreType = RegExp,
// value 62 is internally reserved
#ifdef QT3_SUPPORT
ColorGroup = 63,
#endif
Font = 64,
Pixmap = 65,
Brush = 66,
Color = 67,
Palette = 68,
Icon = 69,
Image = 70,
Polygon = 71,
Region = 72,
Bitmap = 73,
Cursor = 74,
SizePolicy = 75,
KeySequence = 76,
Pen = 77,
TextLength = 78,
TextFormat = 79,
Matrix = 80,
Transform = 81,
LastGuiType = Transform,
UserType = 127,
#ifdef QT3_SUPPORT
IconSet = Icon,
CString = ByteArray,
PointArray = Polygon,
#endif
LastType = 0xffffffff // need this so that gcc >= 3.4 allocates 32 bits for Type
};
inline QVariant();
~QVariant();
QVariant(Type type);
QVariant(int typeOrUserType, const void *copy);
QVariant(const QVariant &other);
#ifndef QT_NO_DATASTREAM
QVariant(QDataStream &s);
#endif
QVariant(int i);
QVariant(uint ui);
QVariant(qlonglong ll);
QVariant(qulonglong ull);
QVariant(bool b);
QVariant(double d);
#ifndef QT_NO_CAST_FROM_ASCII
QT_ASCII_CAST_WARN_CONSTRUCTOR QVariant(const char *str);
#endif
QVariant(const QByteArray &bytearray);
QVariant(const QBitArray &bitarray);
QVariant(const QString &string);
QVariant(const QLatin1String &string);
QVariant(const QStringList &stringlist);
QVariant(const QChar &qchar);
QVariant(const QDate &date);
QVariant(const QTime &time);
QVariant(const QDateTime &datetime);
QVariant(const QList<QVariant> &list);
QVariant(const QMap<QString,QVariant> &map);
#ifndef QT_NO_GEOM_VARIANT
QVariant(const QSize &size);
QVariant(const QSizeF &size);
QVariant(const QPoint &pt);
QVariant(const QPointF &pt);
QVariant(const QLine &line);
QVariant(const QLineF &line);
QVariant(const QRect &rect);
QVariant(const QRectF &rect);
#endif
QVariant(const QUrl &url);
QVariant(const QLocale &locale);
#ifndef QT_NO_REGEXP
QVariant(const QRegExp ®Exp);
#endif
QVariant(Qt::GlobalColor color);
QVariant& operator=(const QVariant &other);
Type type() const;
int userType() const;
const char *typeName() const;
bool canConvert(Type t) const;
bool convert(Type t);
#ifdef QT3_SUPPORT
inline QT3_SUPPORT bool canCast(Type t) const
{ return canConvert(t); }
inline QT3_SUPPORT bool cast(Type t)
{ return convert(t); }
#endif
inline bool isValid() const;
bool isNull() const;
void clear();
void detach();
inline bool isDetached() const;
int toInt(bool *ok = 0) const;
uint toUInt(bool *ok = 0) const;
qlonglong toLongLong(bool *ok = 0) const;
qulonglong toULongLong(bool *ok = 0) const;
bool toBool() const;
double toDouble(bool *ok = 0) const;
QByteArray toByteArray() const;
QBitArray toBitArray() const;
QString toString() const;
QStringList toStringList() const;
QChar toChar() const;
QDate toDate() const;
QTime toTime() const;
QDateTime toDateTime() const;
QList<QVariant> toList() const;
QMap<QString, QVariant> toMap() const;
#ifndef QT_NO_GEOM_VARIANT
QPoint toPoint() const;
QPointF toPointF() const;
QRect toRect() const;
QSize toSize() const;
QSizeF toSizeF() const;
QLine toLine() const;
QLineF toLineF() const;
QRectF toRectF() const;
#endif
QUrl toUrl() const;
QLocale toLocale() const;
#ifndef QT_NO_REGEXP
QRegExp toRegExp() const;
#endif
#ifdef QT3_SUPPORT
inline QT3_SUPPORT int &asInt();
inline QT3_SUPPORT uint &asUInt();
inline QT3_SUPPORT qlonglong &asLongLong();
inline QT3_SUPPORT qulonglong &asULongLong();
inline QT3_SUPPORT bool &asBool();
inline QT3_SUPPORT double &asDouble();
inline QT3_SUPPORT QByteArray &asByteArray();
inline QT3_SUPPORT QBitArray &asBitArray();
inline QT3_SUPPORT QString &asString();
inline QT3_SUPPORT QStringList &asStringList();
inline QT3_SUPPORT QDate &asDate();
inline QT3_SUPPORT QTime &asTime();
inline QT3_SUPPORT QDateTime &asDateTime();
inline QT3_SUPPORT QList<QVariant> &asList();
inline QT3_SUPPORT QMap<QString,QVariant> &asMap();
inline QT3_SUPPORT QPoint &asPoint();
inline QT3_SUPPORT QRect &asRect();
inline QT3_SUPPORT QSize &asSize();
#endif //QT3_SUPPORT
#ifndef QT_NO_DATASTREAM
void load(QDataStream &ds);
void save(QDataStream &ds) const;
#endif
static const char *typeToName(Type type);
static Type nameToType(const char *name);
#ifdef QT3_SUPPORT
inline QT3_SUPPORT_CONSTRUCTOR QVariant(bool val, int) { create(Bool, &val); }
inline QT3_SUPPORT const QByteArray toCString() const { return toByteArray(); }
inline QT3_SUPPORT QByteArray &asCString() { return *reinterpret_cast<QByteArray *>(castOrDetach(ByteArray)); }
#endif
void *data();
const void *constData() const;
inline const void *data() const { return constData(); }
#ifndef QT_NO_MEMBER_TEMPLATES
template<typename T>
inline void setValue(const T &value);
template<typename T>
inline T value() const
{ return qVariantValue<T>(*this); }
template<typename T>
static inline QVariant fromValue(const T &value)
{ return qVariantFromValue(value); }
template<typename T>
bool canConvert() const
{ return qVariantCanConvert<T>(*this); }
#endif
public:
#ifndef qdoc
struct PrivateShared
{
inline PrivateShared() : ref(1) { }
inline PrivateShared(void *v) : ptr(v), ref(1) { }
void *ptr;
QAtomicInt ref;
};
struct Private
{
inline Private(): type(Invalid), is_shared(false), is_null(true) { data.ptr = 0; }
inline Private(const Private &other)
: data(other.data), type(other.type),
is_shared(other.is_shared), is_null(other.is_null)
{}
union Data
{
char c;
int i;
uint u;
bool b;
double d;
qlonglong ll;
qulonglong ull;
void *ptr;
PrivateShared *shared;
} data;
uint type : 30;
uint is_shared : 1;
uint is_null : 1;
};
public:
typedef void (*f_construct)(Private *, const void *);
typedef void (*f_clear)(Private *);
typedef bool (*f_null)(const Private *);
#ifndef QT_NO_DATASTREAM
typedef void (*f_load)(Private *, QDataStream &);
typedef void (*f_save)(const Private *, QDataStream &);
#endif
typedef bool (*f_compare)(const Private *, const Private *);
typedef bool (*f_convert)(const QVariant::Private *d, Type t, void *, bool *);
typedef bool (*f_canConvert)(const QVariant::Private *d, Type t);
typedef void (*f_debugStream)(QDebug, const QVariant &);
struct Handler {
f_construct construct;
f_clear clear;
f_null isNull;
#ifndef QT_NO_DATASTREAM
f_load load;
f_save save;
#endif
f_compare compare;
f_convert convert;
f_canConvert canConvert;
f_debugStream debugStream;
};
#endif
inline bool operator==(const QVariant &v) const
{ return cmp(v); }
inline bool operator!=(const QVariant &v) const
{ return !cmp(v); }
protected:
friend inline bool qvariant_cast_helper(const QVariant &, QVariant::Type, void *);
friend int qRegisterGuiVariant();
friend int qUnregisterGuiVariant();
friend inline bool operator==(const QVariant &, const QVariantComparisonHelper &);
#ifndef QT_NO_DEBUG_STREAM
friend Q_CORE_EXPORT QDebug operator<<(QDebug, const QVariant &);
#endif
Private d;
static const Handler *handler;
void create(int type, const void *copy);
#ifdef QT3_SUPPORT
void *castOrDetach(Type t);
#endif
bool cmp(const QVariant &other) const;
private:
#ifdef QT_NO_CAST_FROM_ASCII
// force compile error when implicit conversion is not wanted
inline QVariant(const char *) { Q_ASSERT(false); }
#endif
#ifndef QT3_SUPPORT
// force compile error, prevent QVariant(QVariant::Type, int) to be called
inline QVariant(bool, int) { Q_ASSERT(false); }
#endif
public:
typedef Private DataPtr;
inline DataPtr &data_ptr() { return d; }
};
typedef QList<QVariant> QVariantList;
typedef QMap<QString, QVariant> QVariantMap;
inline bool qvariant_cast_helper(const QVariant &v, QVariant::Type tp, void *ptr)
{ return QVariant::handler->convert(&v.d, tp, ptr, 0); }
template <typename T>
inline QVariant qVariantFromValue(const T &t)
{
return QVariant(qMetaTypeId<T>(reinterpret_cast<T *>(0)), &t);
}
template <>
inline QVariant qVariantFromValue(const QVariant &t) { return t; }
template <typename T>
inline void qVariantSetValue(QVariant &v, const T &t)
{
v = QVariant(qMetaTypeId<T>(reinterpret_cast<T *>(0)), &t);
}
inline QVariant::QVariant() {}
inline bool QVariant::isValid() const { return d.type != Invalid; }
#ifdef QT3_SUPPORT
inline int &QVariant::asInt()
{ return *reinterpret_cast<int *>(castOrDetach(Int)); }
inline uint &QVariant::asUInt()
{ return *reinterpret_cast<uint *>(castOrDetach(UInt)); }
inline qlonglong &QVariant::asLongLong()
{ return *reinterpret_cast<qlonglong *>(castOrDetach(LongLong)); }
inline qulonglong &QVariant::asULongLong()
{ return *reinterpret_cast<qulonglong *>(castOrDetach(ULongLong)); }
inline bool &QVariant::asBool()
{ return *reinterpret_cast<bool *>(castOrDetach(Bool)); }
inline double &QVariant::asDouble()
{ return *reinterpret_cast<double *>(castOrDetach(Double)); }
inline QByteArray& QVariant::asByteArray()
{ return *reinterpret_cast<QByteArray *>(castOrDetach(ByteArray)); }
inline QBitArray& QVariant::asBitArray()
{ return *reinterpret_cast<QBitArray *>(castOrDetach(BitArray)); }
inline QString& QVariant::asString()
{ return *reinterpret_cast<QString *>(castOrDetach(String)); }
inline QStringList& QVariant::asStringList()
{ return *reinterpret_cast<QStringList *>(castOrDetach(StringList)); }
inline QDate& QVariant::asDate()
{ return *reinterpret_cast<QDate *>(castOrDetach(Date)); }
inline QTime& QVariant::asTime()
{ return *reinterpret_cast<QTime *>(castOrDetach(Time)); }
inline QDateTime& QVariant::asDateTime()
{ return *reinterpret_cast<QDateTime *>(castOrDetach(DateTime)); }
inline QList<QVariant>& QVariant::asList()
{ return *reinterpret_cast<QList<QVariant> *>(castOrDetach(List)); }
inline QMap<QString, QVariant>& QVariant::asMap()
{ return *reinterpret_cast<QMap<QString, QVariant> *>(castOrDetach(Map)); }
inline QPoint &QVariant::asPoint()
{ return *reinterpret_cast<QPoint *>(castOrDetach(Point)); }
inline QRect &QVariant::asRect()
{ return *reinterpret_cast<QRect *>(castOrDetach(Rect)); }
inline QSize &QVariant::asSize()
{ return *reinterpret_cast<QSize *>(castOrDetach(Size)); }
#endif //QT3_SUPPORT
#ifndef QT_NO_MEMBER_TEMPLATES
template<typename T>
inline void QVariant::setValue(const T &avalue)
{ qVariantSetValue(*this, avalue); }
#endif
#ifndef QT_NO_DATASTREAM
Q_CORE_EXPORT QDataStream& operator>> (QDataStream& s, QVariant& p);
Q_CORE_EXPORT QDataStream& operator<< (QDataStream& s, const QVariant& p);
Q_CORE_EXPORT QDataStream& operator>> (QDataStream& s, QVariant::Type& p);
Q_CORE_EXPORT QDataStream& operator<< (QDataStream& s, const QVariant::Type p);
#endif
inline bool QVariant::isDetached() const
{ return !d.is_shared || d.data.shared->ref == 1; }
#ifdef qdoc
inline bool operator==(const QVariant &v1, const QVariant &v2);
inline bool operator!=(const QVariant &v1, const QVariant &v2);
#else
/* Helper class to add one more level of indirection to prevent
implicit casts.
*/
class QVariantComparisonHelper
{
public:
inline QVariantComparisonHelper(const QVariant &var)
: v(&var) {}
private:
friend inline bool operator==(const QVariant &, const QVariantComparisonHelper &);
const QVariant *v;
};
inline bool operator==(const QVariant &v1, const QVariantComparisonHelper &v2)
{
return v1.cmp(*v2.v);
}
inline bool operator!=(const QVariant &v1, const QVariantComparisonHelper &v2)
{
return !operator==(v1, v2);
}
#endif
#ifndef QT_MOC
#if !defined qdoc && defined Q_CC_MSVC && _MSC_VER < 1300
template<typename T> T qvariant_cast(const QVariant &v, T * = 0)
{
const int vid = qMetaTypeId<T>(static_cast<T *>(0));
if (vid == v.userType())
return *reinterpret_cast<const T *>(v.constData());
if (vid < int(QMetaType::User)) {
T t;
if (qvariant_cast_helper(v, QVariant::Type(vid), &t))
return t;
}
return T();
}
template<typename T>
inline T qVariantValue(const QVariant &variant, T *t = 0)
{ return qvariant_cast<T>(variant, t); }
template<typename T>
inline bool qVariantCanConvert(const QVariant &variant, T *t = 0)
{
return variant.canConvert(static_cast<QVariant::Type>(qMetaTypeId<T>(t)));
}
#else
template<typename T> T qvariant_cast(const QVariant &v)
{
const int vid = qMetaTypeId<T>(static_cast<T *>(0));
if (vid == v.userType())
return *reinterpret_cast<const T *>(v.constData());
if (vid < int(QMetaType::User)) {
T t;
if (qvariant_cast_helper(v, QVariant::Type(vid), &t))
return t;
}
return T();
}
template<typename T>
inline T qVariantValue(const QVariant &variant)
{ return qvariant_cast<T>(variant); }
template<typename T>
inline bool qVariantCanConvert(const QVariant &variant)
{
return variant.canConvert(static_cast<QVariant::Type>(
qMetaTypeId<T>(static_cast<T *>(0))));
}
#endif
#endif
Q_DECLARE_SHARED(QVariant)
Q_DECLARE_TYPEINFO(QVariant, Q_MOVABLE_TYPE);
#ifndef QT_NO_DEBUG_STREAM
Q_CORE_EXPORT QDebug operator<<(QDebug, const QVariant &);
Q_CORE_EXPORT QDebug operator<<(QDebug, const QVariant::Type);
#endif
QT_END_NAMESPACE
Q_DECLARE_BUILTIN_METATYPE(QVariantList, QVariantList)
Q_DECLARE_BUILTIN_METATYPE(QVariantMap, QVariantMap)
QT_END_HEADER
#endif // QVARIANT_H
| [
"2513968357@qq.com"
] | 2513968357@qq.com |
d25d479a8b08e3ebd99bbc24ace9b51dcea71bfa | fb7efe44f4d9f30d623f880d0eb620f3a81f0fbd | /net/http2/decoder/frame_decoder_state.h | 7060a6da4f7d6e8e98fda1619189b58b8ed4fba8 | [
"BSD-3-Clause"
] | permissive | wzyy2/chromium-browser | 2644b0daf58f8b3caee8a6c09a2b448b2dfe059c | eb905f00a0f7e141e8d6c89be8fb26192a88c4b7 | refs/heads/master | 2022-11-23T20:25:08.120045 | 2018-01-16T06:41:26 | 2018-01-16T06:41:26 | 117,618,467 | 3 | 2 | BSD-3-Clause | 2022-11-20T22:03:57 | 2018-01-16T02:09:10 | null | UTF-8 | C++ | false | false | 11,220 | h | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NET_HTTP2_DECODER_FRAME_DECODER_STATE_H_
#define NET_HTTP2_DECODER_FRAME_DECODER_STATE_H_
// FrameDecoderState provides state and behaviors in support of decoding
// the common frame header and the payload of all frame types.
// It is an input to all of the payload decoders.
// TODO(jamessynge): Since FrameDecoderState has far more than state in it,
// rename to FrameDecoderHelper, or similar.
#include <stddef.h>
#include "base/logging.h"
#include "net/http2/decoder/decode_buffer.h"
#include "net/http2/decoder/decode_status.h"
#include "net/http2/decoder/http2_frame_decoder_listener.h"
#include "net/http2/decoder/http2_structure_decoder.h"
#include "net/http2/http2_constants.h"
#include "net/http2/http2_structures.h"
#include "net/http2/platform/api/http2_export.h"
namespace net {
namespace test {
class FrameDecoderStatePeer;
} // namespace test
class HTTP2_EXPORT_PRIVATE FrameDecoderState {
public:
FrameDecoderState() {}
// Sets the listener which the decoders should call as they decode HTTP/2
// frames. The listener can be changed at any time, which allows for replacing
// it with a no-op listener when an error is detected, either by the payload
// decoder (OnPaddingTooLong or OnFrameSizeError) or by the "real" listener.
// That in turn allows us to define Http2FrameDecoderListener such that all
// methods have return type void, with no direct way to indicate whether the
// decoder should stop, and to eliminate from the decoder all checks of the
// return value. Instead the listener/caller can simply replace the current
// listener with a no-op listener implementation.
// TODO(jamessynge): Make set_listener private as only Http2FrameDecoder
// and tests need to set it, so it doesn't need to be public.
void set_listener(Http2FrameDecoderListener* listener) {
listener_ = listener;
}
Http2FrameDecoderListener* listener() const { return listener_; }
// The most recently decoded frame header.
const Http2FrameHeader& frame_header() const { return frame_header_; }
// Decode a structure in the payload, adjusting remaining_payload_ to account
// for the consumed portion of the payload. Returns kDecodeDone when fully
// decoded, kDecodeError if it ran out of payload before decoding completed,
// and kDecodeInProgress if the decode buffer didn't have enough of the
// remaining payload.
template <class S>
DecodeStatus StartDecodingStructureInPayload(S* out, DecodeBuffer* db) {
DVLOG(2) << __func__ << "\n\tdb->Remaining=" << db->Remaining()
<< "\n\tremaining_payload_=" << remaining_payload_
<< "\n\tneed=" << S::EncodedSize();
DecodeStatus status =
structure_decoder_.Start(out, db, &remaining_payload_);
if (status != DecodeStatus::kDecodeError) {
return status;
}
DVLOG(2) << "StartDecodingStructureInPayload: detected frame size error";
return ReportFrameSizeError();
}
// Resume decoding of a structure that has been split across buffers,
// adjusting remaining_payload_ to account for the consumed portion of
// the payload. Returns values are as for StartDecodingStructureInPayload.
template <class S>
DecodeStatus ResumeDecodingStructureInPayload(S* out, DecodeBuffer* db) {
DVLOG(2) << __func__ << "\n\tdb->Remaining=" << db->Remaining()
<< "\n\tremaining_payload_=" << remaining_payload_;
if (structure_decoder_.Resume(out, db, &remaining_payload_)) {
return DecodeStatus::kDecodeDone;
} else if (remaining_payload_ > 0) {
return DecodeStatus::kDecodeInProgress;
} else {
DVLOG(2) << "ResumeDecodingStructureInPayload: detected frame size error";
return ReportFrameSizeError();
}
}
// Initializes the two remaining* fields, which is needed if the frame's
// payload is split across buffers, or the decoder calls ReadPadLength or
// StartDecodingStructureInPayload, and of course the methods below which
// read those fields, as their names imply.
void InitializeRemainders() {
remaining_payload_ = frame_header().payload_length;
// Note that remaining_total_payload() relies on remaining_padding_ being
// zero for frames that have no padding.
remaining_padding_ = 0;
}
// Returns the number of bytes of the frame's payload that remain to be
// decoded, including any trailing padding. This method must only be called
// after the variables have been initialized, which in practice means once a
// payload decoder has called InitializeRemainders and/or ReadPadLength.
size_t remaining_total_payload() const {
DCHECK(IsPaddable() || remaining_padding_ == 0) << frame_header();
return remaining_payload_ + remaining_padding_;
}
// Returns the number of bytes of the frame's payload that remain to be
// decoded, excluding any trailing padding. This method must only be called
// after the variable has been initialized, which in practice means once a
// payload decoder has called InitializeRemainders; ReadPadLength will deduct
// the total number of padding bytes from remaining_payload_, including the
// size of the Pad Length field itself (1 byte).
size_t remaining_payload() const { return remaining_payload_; }
// Returns the number of bytes of the frame's payload that remain to be
// decoded, including any trailing padding. This method must only be called if
// the frame type allows padding, and after the variable has been initialized,
// which in practice means once a payload decoder has called
// InitializeRemainders and/or ReadPadLength.
size_t remaining_payload_and_padding() const {
DCHECK(IsPaddable()) << frame_header();
return remaining_payload_ + remaining_padding_;
}
// Returns the number of bytes of trailing padding after the payload that
// remain to be decoded. This method must only be called if the frame type
// allows padding, and after the variable has been initialized, which in
// practice means once a payload decoder has called InitializeRemainders,
// and isn't set to a non-zero value until ReadPadLength has been called.
uint32_t remaining_padding() const {
DCHECK(IsPaddable()) << frame_header();
return remaining_padding_;
}
// How many bytes of the remaining payload are in db?
size_t AvailablePayload(DecodeBuffer* db) const {
return db->MinLengthRemaining(remaining_payload_);
}
// How many bytes of the remaining payload and padding are in db?
// Call only for frames whose type is paddable.
size_t AvailablePayloadAndPadding(DecodeBuffer* db) const {
DCHECK(IsPaddable()) << frame_header();
return db->MinLengthRemaining(remaining_payload_ + remaining_padding_);
}
// How many bytes of the padding that have not yet been skipped are in db?
// Call only after remaining_padding_ has been set (for padded frames), or
// been cleared (for unpadded frames); and after all of the non-padding
// payload has been decoded.
size_t AvailablePadding(DecodeBuffer* db) const {
DCHECK(IsPaddable()) << frame_header();
DCHECK_EQ(remaining_payload_, 0u);
return db->MinLengthRemaining(remaining_padding_);
}
// Reduces remaining_payload_ by amount. To be called by a payload decoder
// after it has passed a variable length portion of the payload to the
// listener; remaining_payload_ will be automatically reduced when fixed
// size structures and padding, including the Pad Length field, are decoded.
void ConsumePayload(size_t amount) {
DCHECK_LE(amount, remaining_payload_);
remaining_payload_ -= amount;
}
// Reads the Pad Length field into remaining_padding_, and appropriately sets
// remaining_payload_. When present, the Pad Length field is always the first
// field in the payload, which this method relies on so that the caller need
// not set remaining_payload_ before calling this method.
// If report_pad_length is true, calls the listener's OnPadLength method when
// it decodes the Pad Length field.
// Returns kDecodeDone if the decode buffer was not empty (i.e. because the
// field is only a single byte long, it can always be decoded if the buffer is
// not empty).
// Returns kDecodeError if the buffer is empty because the frame has no
// payload (i.e. payload_length() == 0).
// Returns kDecodeInProgress if the buffer is empty but the frame has a
// payload.
DecodeStatus ReadPadLength(DecodeBuffer* db, bool report_pad_length);
// Skip the trailing padding bytes; only call once remaining_payload_==0.
// Returns true when the padding has been skipped.
// Does NOT check that the padding is all zeroes.
bool SkipPadding(DecodeBuffer* db);
// Calls the listener's OnFrameSizeError method and returns kDecodeError.
DecodeStatus ReportFrameSizeError();
private:
friend class Http2FrameDecoder;
friend class test::FrameDecoderStatePeer;
// Starts the decoding of a common frame header. Returns true if completed the
// decoding, false if the decode buffer didn't have enough data in it, in
// which case the decode buffer will have been drained and the caller should
// call ResumeDecodingFrameHeader when more data is available. This is called
// from Http2FrameDecoder, a friend class.
bool StartDecodingFrameHeader(DecodeBuffer* db) {
return structure_decoder_.Start(&frame_header_, db);
}
// Resumes decoding the common frame header after the preceding call to
// StartDecodingFrameHeader returned false, as did any subsequent calls to
// ResumeDecodingFrameHeader. This is called from Http2FrameDecoder,
// a friend class.
bool ResumeDecodingFrameHeader(DecodeBuffer* db) {
return structure_decoder_.Resume(&frame_header_, db);
}
// Clear any of the flags in the frame header that aren't set in valid_flags.
void RetainFlags(uint8_t valid_flags) {
frame_header_.RetainFlags(valid_flags);
}
// Clear all of the flags in the frame header; for use with frame types that
// don't define any flags, such as WINDOW_UPDATE.
void ClearFlags() { frame_header_.flags = Http2FrameFlag(); }
// Returns true if the type of frame being decoded can have padding.
bool IsPaddable() const {
return frame_header().type == Http2FrameType::DATA ||
frame_header().type == Http2FrameType::HEADERS ||
frame_header().type == Http2FrameType::PUSH_PROMISE;
}
Http2FrameDecoderListener* listener_ = nullptr;
Http2FrameHeader frame_header_;
// Number of bytes remaining to be decoded, if set; does not include the
// trailing padding once the length of padding has been determined.
// See ReadPadLength.
uint32_t remaining_payload_;
// The amount of trailing padding after the payload that remains to be
// decoded. See ReadPadLength.
uint32_t remaining_padding_;
// Generic decoder of structures, which takes care of buffering the needed
// bytes if the encoded structure is split across decode buffers.
Http2StructureDecoder structure_decoder_;
};
} // namespace net
#endif // NET_HTTP2_DECODER_FRAME_DECODER_STATE_H_
| [
"jacob-chen@iotwrt.com"
] | jacob-chen@iotwrt.com |
43065b16ba0e844cdbecaa0e2b495569ebb8a7eb | 55d560fe6678a3edc9232ef14de8fafd7b7ece12 | /boost/poly_collection/detail/is_constructible.hpp | d4de6ae43d4483e85c01f8032a01fdc9874e8226 | [
"BSL-1.0"
] | permissive | stardog-union/boost | ec3abeeef1b45389228df031bf25b470d3d123c5 | caa4a540db892caa92e5346e0094c63dea51cbfb | refs/heads/stardog/develop | 2021-06-25T02:15:10.697006 | 2020-11-17T19:50:35 | 2020-11-17T19:50:35 | 148,681,713 | 0 | 0 | BSL-1.0 | 2020-11-17T19:50:36 | 2018-09-13T18:38:54 | C++ | UTF-8 | C++ | false | false | 1,524 | hpp | /* Copyright 2016-2017 Joaquin M Lopez Munoz.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
*
* See http://www.boost.org/libs/poly_collection for library home page.
*/
#ifndef BOOST_POLY_COLLECTION_DETAIL_IS_CONSTRUCIBLE_HPP
#define BOOST_POLY_COLLECTION_DETAIL_IS_CONSTRUCIBLE_HPP
#if defined(_MSC_VER)
#pragma once
#endif
#include <boost/config.hpp>
#include <boost/detail/workaround.hpp>
#if BOOST_WORKAROUND(BOOST_MSVC_FULL_VER,<190023918)
/* https://connect.microsoft.com/VisualStudio/Feedback/Details/2118677,
* fixed in VS2015U2 according to
* https://blogs.msdn.microsoft.com/vcblog/2016/03/31/
* visual-c-2015-update-2-bug-fixes/, via github.com/dodheim
*/
#include <boost/type_traits/is_constructible.hpp>
namespace boost{
namespace poly_collection{
namespace detail{
template<typename T,typename... Args>
struct is_constructible:std::integral_constant<
bool,
boost::is_constructible<T,Args...>::value
>{};
} /* namespace poly_collection::detail */
} /* namespace poly_collection */
} /* namespace boost */
#else
#include <type_traits>
namespace boost{
namespace poly_collection{
namespace detail{
template<typename T,typename... Args>
using is_constructible=std::is_constructible<T,Args...>;
} /* namespace poly_collection::detail */
} /* namespace poly_collection */
} /* namespace boost */
#endif
#endif
| [
"james.pack@stardog.com"
] | james.pack@stardog.com |
0b520c9143f4adf45369c476740ea13f63b9a8db | b7f3edb5b7c62174bed808079c3b21fb9ea51d52 | /third_party/blink/renderer/modules/peerconnection/adapters/p2p_quic_transport_impl.cc | 5cf896dc0ae9e8634353dd13974c9969b95c730b | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"BSD-3-Clause"
] | permissive | otcshare/chromium-src | 26a7372773b53b236784c51677c566dc0ad839e4 | 64bee65c921db7e78e25d08f1e98da2668b57be5 | refs/heads/webml | 2023-03-21T03:20:15.377034 | 2020-11-16T01:40:14 | 2020-11-16T01:40:14 | 209,262,645 | 18 | 21 | BSD-3-Clause | 2023-03-23T06:20:07 | 2019-09-18T08:52:07 | null | UTF-8 | C++ | false | false | 24,337 | cc | // Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/modules/peerconnection/adapters/p2p_quic_transport_impl.h"
#include "net/quic/quic_chromium_connection_helper.h"
#include "net/third_party/quiche/src/quic/core/crypto/quic_random.h"
#include "net/third_party/quiche/src/quic/core/quic_config.h"
#include "net/third_party/quiche/src/quic/core/quic_types.h"
#include "net/third_party/quiche/src/quic/core/quic_utils.h"
#include "net/third_party/quiche/src/quic/core/tls_client_handshaker.h"
#include "net/third_party/quiche/src/quic/core/tls_server_handshaker.h"
#include "net/third_party/quiche/src/quic/platform/api/quic_mem_slice_storage.h"
#include "net/third_party/quiche/src/quic/tools/quic_simple_crypto_server_stream_helper.h"
#include "third_party/blink/renderer/modules/peerconnection/adapters/p2p_quic_crypto_stream_factory.h"
#include "third_party/blink/renderer/modules/peerconnection/adapters/p2p_quic_transport.h"
#include "third_party/blink/renderer/modules/peerconnection/adapters/p2p_quic_transport_stats.h"
namespace blink {
namespace {
static const char kClosingDetails[] = "Application closed connection.";
// QUIC's default is 100. Setting this value to 10000 allows room for QUIC to
// not refuse new incoming streams in the case that an application wants to send
// a small chunk of data per stream (and immediately close) unreliably.
uint32_t kMaxIncomingDynamicStreams = 10000;
// The P2PQuicPacketWriter is a private helper class that implements the
// QuicPacketWriter using a P2PQuicPacketTransport. This allows us to
// connect our own packet transport for writing into the QuicConnection.
// The normal case is using an ICE transport (packet_transport) for writing.
class P2PQuicPacketWriter : public quic::QuicPacketWriter,
public P2PQuicPacketTransport::WriteObserver {
public:
P2PQuicPacketWriter(P2PQuicPacketTransport* packet_transport)
: packet_transport_(packet_transport) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(packet_transport_);
packet_transport_->SetWriteObserver(this);
}
// This way the packet transport knows it no longer has a write observer and
// can DCHECK this on destruction.
~P2PQuicPacketWriter() override {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
packet_transport_->SetWriteObserver(nullptr);
}
// Sets the QuicConnection (which owns this packet writer). This allows us
// to get the packet numbers of QUIC packets we write. The QuicConnection
// is created with a quic::QuicPacketWriter, so we can't set the connection
// in the constructor.
void InitializeWithQuicConnection(quic::QuicConnection* connection) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(connection);
if (packet_transport_->Writable()) {
SetWritable();
}
connection_ = connection;
}
// quic::QuicPacketWriter overrides.
// Writes a QUIC packet to the network with the packet number as additional
// packet info.
quic::WriteResult WritePacket(const char* buffer,
size_t buf_len,
const quic::QuicIpAddress& self_address,
const quic::QuicSocketAddress& peer_address,
quic::PerPacketOptions* options) override {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(connection_);
if (IsWriteBlocked()) {
return quic::WriteResult(quic::WRITE_STATUS_BLOCKED, EWOULDBLOCK);
}
P2PQuicPacketTransport::QuicPacket packet;
packet.packet_number =
connection_->packet_creator().packet_number().ToUint64();
packet.buffer = buffer;
packet.buf_len = buf_len;
int bytes_written = packet_transport_->WritePacket(packet);
if (bytes_written <= 0) {
writable_ = false;
return quic::WriteResult(quic::WRITE_STATUS_BLOCKED, EWOULDBLOCK);
}
return quic::WriteResult(quic::WRITE_STATUS_OK, bytes_written);
}
bool IsWriteBlocked() const override {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return !writable_;
}
quic::QuicByteCount GetMaxPacketSize(
const quic::QuicSocketAddress& peer_address) const override {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
// This can be configured later.
return 1200;
}
void SetWritable() override {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
writable_ = true;
}
bool SupportsReleaseTime() const override {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return false;
}
bool IsBatchMode() const override {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return false;
}
quic::QuicPacketBuffer GetNextWriteLocation(
const quic::QuicIpAddress& self_address,
const quic::QuicSocketAddress& peer_address) override {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return {nullptr, nullptr};
}
quic::WriteResult Flush() override {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return quic::WriteResult(quic::WRITE_STATUS_OK, 0);
}
// P2PQuicPacketTransport::WriteDelegate override.
void OnCanWrite() override {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
SetWritable();
connection_->OnCanWrite();
}
private:
// The packet transport is owned by the P2PQuicSession, not the
// BlinkPacketWriter.
P2PQuicPacketTransport* packet_transport_;
// The QuicConnection owns this packet writer and will outlive it.
quic::QuicConnection* connection_;
bool writable_ = false;
THREAD_CHECKER(thread_checker_);
};
// Creates the QuicConnection for the QuicSession. Currently this connection
// uses a dummy address and ID. The |packet_writer| is a basic implementation
// using the QuicTransportConfig::packet_transport for writing. The |helper|
// and |alarm_factory| should be chromium specific implementations.
std::unique_ptr<quic::QuicConnection> CreateQuicConnection(
quic::Perspective perspective,
quic::QuicConnectionHelperInterface* helper,
quic::QuicPacketWriter* packet_writer,
quic::QuicAlarmFactory* alarm_factory) {
quic::QuicIpAddress ip;
ip.FromString("0.0.0.0");
quic::QuicSocketAddress dummy_address(ip, 0 /* Port */);
quic::QuicConnectionId dummy_connection_id;
char connection_id_bytes[8] = {0, 0, 0, 0, 0, 0, 0, 0};
dummy_connection_id =
quic::QuicConnectionId(connection_id_bytes, sizeof(connection_id_bytes));
return std::make_unique<quic::QuicConnection>(
dummy_connection_id, dummy_address, helper, alarm_factory, packet_writer,
/* owns_writer */ true, perspective,
quic::ParsedQuicVersionVector{quic::CurrentSupportedVersions()[0]});
}
// A dummy helper for a server crypto stream that accepts all client hellos
// and generates a random connection ID.
class DummyCryptoServerStreamHelper
: public quic::QuicCryptoServerStreamBase::Helper {
public:
explicit DummyCryptoServerStreamHelper(quic::QuicRandom* random) {}
~DummyCryptoServerStreamHelper() override {}
bool CanAcceptClientHello(const quic::CryptoHandshakeMessage& message,
const quic::QuicSocketAddress& client_address,
const quic::QuicSocketAddress& peer_address,
const quic::QuicSocketAddress& self_address,
std::string* error_details) const override {
return true;
}
};
} // namespace
std::unique_ptr<P2PQuicTransportImpl> P2PQuicTransportImpl::Create(
quic::QuicClock* clock,
quic::QuicAlarmFactory* alarm_factory,
quic::QuicRandom* quic_random,
P2PQuicTransport::Delegate* delegate,
P2PQuicPacketTransport* packet_transport,
const P2PQuicTransportConfig& config,
std::unique_ptr<P2PQuicCryptoConfigFactory> crypto_config_factory,
std::unique_ptr<P2PQuicCryptoStreamFactory> crypto_stream_factory) {
DCHECK(delegate);
DCHECK(packet_transport);
DCHECK(crypto_config_factory);
DCHECK(crypto_stream_factory);
// The P2PQuicSession owns these chromium specific objects required
// by the QuicConnection. These outlive the QuicConnection itself.
std::unique_ptr<net::QuicChromiumConnectionHelper> helper =
std::make_unique<net::QuicChromiumConnectionHelper>(clock, quic_random);
P2PQuicPacketWriter* packet_writer =
new P2PQuicPacketWriter(packet_transport);
std::unique_ptr<quic::QuicConnection> quic_connection = CreateQuicConnection(
config.perspective, helper.get(), packet_writer, alarm_factory);
// It's okay for the quic::QuicConnection to have a P2PQuicPacketWriter before
// the P2PQuicPacketWriter is initialized, because the P2QuicPacketWriter
// won't be writable until this occurs.
packet_writer->InitializeWithQuicConnection(quic_connection.get());
// QUIC configurations for the session are specified here.
// TODO(shampson): Consider setting larger initial flow control window sizes
// so that the default limit doesn't cause initial undersending.
quic::QuicConfig quic_config;
quic_config.SetMaxBidirectionalStreamsToSend(kMaxIncomingDynamicStreams);
quic_config.SetMaxUnidirectionalStreamsToSend(kMaxIncomingDynamicStreams);
// The handshake network timeouts are configured to large values to prevent
// the QUIC connection from being closed on a slow connection. This can occur
// if signaling is slow and one side begins the handshake early.
// See ICE related bug: bugs.webrtc.org/9869.
//
// This timeout is from time of creation of the quic::QuicConnection object to
// the completion of the handshake. It must be larger than the idle time.
quic_config.set_max_time_before_crypto_handshake(
quic::QuicTime::Delta::FromSeconds(50));
// This is the timeout for idle time in the handshake. This value allows
// time for slow signaling to complete.
quic_config.set_max_idle_time_before_crypto_handshake(
quic::QuicTime::Delta::FromSeconds(30));
return std::make_unique<P2PQuicTransportImpl>(
delegate, packet_transport, std::move(config), std::move(helper),
std::move(quic_connection), quic_config, std::move(crypto_config_factory),
std::move(crypto_stream_factory), clock);
}
P2PQuicTransportImpl::P2PQuicTransportImpl(
Delegate* delegate,
P2PQuicPacketTransport* packet_transport,
const P2PQuicTransportConfig& p2p_transport_config,
std::unique_ptr<quic::QuicConnectionHelperInterface> helper,
std::unique_ptr<quic::QuicConnection> connection,
const quic::QuicConfig& quic_config,
std::unique_ptr<P2PQuicCryptoConfigFactory> crypto_config_factory,
std::unique_ptr<P2PQuicCryptoStreamFactory> crypto_stream_factory,
quic::QuicClock* clock)
: quic::QuicSession(connection.get(),
nullptr /* visitor */,
quic_config,
quic::CurrentSupportedVersions(),
/*expected_num_static_unidirectional_streams = */ 0),
helper_(std::move(helper)),
connection_(std::move(connection)),
crypto_config_factory_(std::move(crypto_config_factory)),
crypto_stream_factory_(std::move(crypto_stream_factory)),
perspective_(p2p_transport_config.perspective),
packet_transport_(packet_transport),
delegate_(delegate),
clock_(clock),
stream_delegate_read_buffer_size_(
p2p_transport_config.stream_delegate_read_buffer_size),
stream_write_buffer_size_(p2p_transport_config.stream_write_buffer_size) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(delegate_);
DCHECK(crypto_config_factory_);
DCHECK(crypto_stream_factory_);
DCHECK(clock_);
DCHECK(packet_transport_);
DCHECK_GT(stream_delegate_read_buffer_size_, 0u);
DCHECK_GT(stream_write_buffer_size_, 0u);
if (!p2p_transport_config.certificates.IsEmpty()) {
// TODO(https://crbug.com/874296): The web API accepts multiple
// certificates, and we might want to pass these down to let QUIC decide on
// what to use.
certificate_ = p2p_transport_config.certificates[0];
}
switch (perspective_) {
case quic::Perspective::IS_CLIENT: {
crypto_client_config_ =
crypto_config_factory_->CreateClientCryptoConfig();
break;
}
case quic::Perspective::IS_SERVER: {
crypto_server_config_ =
crypto_config_factory_->CreateServerCryptoConfig();
break;
}
default:
NOTREACHED();
break;
}
}
P2PQuicTransportImpl::~P2PQuicTransportImpl() {
packet_transport_->SetReceiveDelegate(nullptr);
}
void P2PQuicTransportImpl::Stop() {
// This shouldn't be called before Start().
DCHECK(crypto_stream_);
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
if (IsClosed()) {
return;
}
// The error code used for the connection closing is
// quic::QUIC_CONNECTION_CANCELLED. This allows us to distinguish that the
// application closed the connection, as opposed to it closing from a
// failure/error.
connection_->CloseConnection(
quic::QuicErrorCode::QUIC_CONNECTION_CANCELLED, kClosingDetails,
quic::ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET);
}
void P2PQuicTransportImpl::Start(StartConfig config) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
// Either the remote fingerprints are being verified or a pre shared key is
// set.
DCHECK((certificate_ && !config.remote_fingerprints.IsEmpty()) ||
!config.pre_shared_key.empty());
DCHECK(!crypto_stream_);
remote_fingerprints_ = std::move(config.remote_fingerprints);
switch (perspective_) {
case quic::Perspective::IS_CLIENT: {
crypto_client_config_->set_pre_shared_key(config.pre_shared_key);
break;
}
case quic::Perspective::IS_SERVER: {
crypto_server_config_->set_pre_shared_key(config.pre_shared_key);
break;
}
default:
NOTREACHED();
break;
}
InitializeCryptoStream();
if (perspective_ == quic::Perspective::IS_CLIENT) {
quic::QuicCryptoClientStream* client_crypto_stream =
static_cast<quic::QuicCryptoClientStream*>(crypto_stream_.get());
client_crypto_stream->CryptoConnect();
}
// Now that crypto streams are setup we are ready to receive QUIC packets.
packet_transport_->SetReceiveDelegate(this);
}
void P2PQuicTransportImpl::OnPacketDataReceived(const char* data,
size_t data_len) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
// Received data from the |packet_transport_|. Create a QUIC packet and send
// it to be processed by the QuicSession/Connection.
quic::QuicReceivedPacket packet(data, data_len, clock_->Now());
ProcessUdpPacket(connection()->self_address(), connection()->peer_address(),
packet);
}
quic::QuicCryptoStream* P2PQuicTransportImpl::GetMutableCryptoStream() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return crypto_stream_.get();
}
const quic::QuicCryptoStream* P2PQuicTransportImpl::GetCryptoStream() const {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return crypto_stream_.get();
}
P2PQuicStreamImpl* P2PQuicTransportImpl::CreateStream() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return CreateOutgoingBidirectionalStream();
}
P2PQuicTransportStats P2PQuicTransportImpl::GetStats() const {
P2PQuicTransportStats stats(connection_->GetStats());
stats.num_incoming_streams_created = num_incoming_streams_created_;
stats.num_outgoing_streams_created = num_outgoing_streams_created_;
stats.num_datagrams_lost = num_datagrams_lost_;
return stats;
}
void P2PQuicTransportImpl::SendDatagram(Vector<uint8_t> datagram) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(CanSendDatagram());
DCHECK_LT(datagram.size(),
quic::QuicSession::GetCurrentLargestMessagePayload());
if (!datagram_buffer_.empty()) {
// We are currently write blocked, just add to the buffer.
datagram_buffer_.push(std::move(datagram));
return;
}
if (!TrySendDatagram(datagram)) {
datagram_buffer_.push(std::move(datagram));
}
}
bool P2PQuicTransportImpl::CanSendDatagram() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return IsEncryptionEstablished() &&
(connection()->version().SupportsMessageFrames()) && !IsClosed();
}
P2PQuicStreamImpl* P2PQuicTransportImpl::CreateOutgoingBidirectionalStream() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
num_outgoing_streams_created_++;
P2PQuicStreamImpl* stream =
CreateStreamInternal(GetNextOutgoingBidirectionalStreamId());
ActivateStream(std::unique_ptr<P2PQuicStreamImpl>(stream));
return stream;
}
P2PQuicStreamImpl* P2PQuicTransportImpl::CreateIncomingStream(
quic::QuicStreamId id) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
num_incoming_streams_created_++;
P2PQuicStreamImpl* stream = CreateStreamInternal(id);
ActivateStream(std::unique_ptr<P2PQuicStreamImpl>(stream));
delegate_->OnStream(stream);
return stream;
}
P2PQuicStreamImpl* P2PQuicTransportImpl::CreateIncomingStream(
quic::PendingStream* pending) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
num_incoming_streams_created_++;
P2PQuicStreamImpl* stream = CreateStreamInternal(pending);
ActivateStream(std::unique_ptr<P2PQuicStreamImpl>(stream));
delegate_->OnStream(stream);
return stream;
}
P2PQuicStreamImpl* P2PQuicTransportImpl::CreateStreamInternal(
quic::QuicStreamId id) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(crypto_stream_);
DCHECK(IsEncryptionEstablished());
DCHECK(!IsClosed());
return new P2PQuicStreamImpl(id, this, stream_delegate_read_buffer_size_,
stream_write_buffer_size_);
}
P2PQuicStreamImpl* P2PQuicTransportImpl::CreateStreamInternal(
quic::PendingStream* pending) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(crypto_stream_);
DCHECK(IsEncryptionEstablished());
DCHECK(!IsClosed());
return new P2PQuicStreamImpl(pending, this, stream_delegate_read_buffer_size_,
stream_write_buffer_size_);
}
bool P2PQuicTransportImpl::TrySendDatagram(Vector<uint8_t>& datagram) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(CanSendDatagram());
DCHECK_LT(datagram.size(),
quic::QuicSession::GetCurrentLargestMessagePayload());
struct iovec iov = {datagram.data(), datagram.size()};
quic::QuicMemSliceStorage storage(
&iov, 1, connection()->helper()->GetStreamSendBufferAllocator(),
datagram.size());
quic::MessageResult result = QuicSession::SendMessage(storage.ToSpan());
switch (result.status) {
case quic::MESSAGE_STATUS_BLOCKED:
return false;
case quic::MESSAGE_STATUS_SUCCESS:
delegate_->OnDatagramSent();
return true;
case quic::MESSAGE_STATUS_ENCRYPTION_NOT_ESTABLISHED:
case quic::MESSAGE_STATUS_INTERNAL_ERROR:
case quic::MESSAGE_STATUS_TOO_LARGE:
case quic::MESSAGE_STATUS_UNSUPPORTED:
break;
}
// Anything besides blocked/success should never happen.
LOG(ERROR) << "Unexpected result with QuicSession::SendMessage: "
<< result.status;
NOTREACHED();
return false;
}
void P2PQuicTransportImpl::InitializeCryptoStream() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
DCHECK(!crypto_stream_);
// TODO(shampson): If the P2PQuicTransportImpl is subclassed into a client
// and server class we can call this as a virtual function and not need this
// switch statement.
switch (perspective_) {
case quic::Perspective::IS_CLIENT: {
DCHECK(crypto_client_config_);
crypto_stream_ = crypto_stream_factory_->CreateClientCryptoStream(
/*QuicSession=*/this, crypto_client_config_.get(),
/*ProofHandler=*/this);
QuicSession::Initialize();
break;
}
case quic::Perspective::IS_SERVER: {
DCHECK(crypto_server_config_);
// Provide server with serialized config string to prove ownership.
quic::QuicCryptoServerConfig::ConfigOptions options;
// The |message| is used to handle the return value of AddDefaultConfig
// which is raw pointer of the CryptoHandshakeMessage.
std::unique_ptr<quic::CryptoHandshakeMessage> message(
crypto_server_config_->AddDefaultConfig(
helper_->GetRandomGenerator(), helper_->GetClock(), options));
compressed_certs_cache_.reset(new quic::QuicCompressedCertsCache(
quic::QuicCompressedCertsCache::kQuicCompressedCertsCacheSize));
server_stream_helper_ = std::make_unique<DummyCryptoServerStreamHelper>(
helper_->GetRandomGenerator());
crypto_stream_ = crypto_stream_factory_->CreateServerCryptoStream(
crypto_server_config_.get(), compressed_certs_cache_.get(), this,
server_stream_helper_.get());
QuicSession::Initialize();
break;
}
default:
NOTREACHED();
break;
}
}
void P2PQuicTransportImpl::SetDefaultEncryptionLevel(
quic::EncryptionLevel level) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
QuicSession::SetDefaultEncryptionLevel(level);
if (level == quic::ENCRYPTION_FORWARD_SECURE) {
DCHECK(IsEncryptionEstablished());
DCHECK(OneRttKeysAvailable());
P2PQuicNegotiatedParams negotiated_params;
// The guaranteed largest message payload will not change throughout the
// connection.
uint16_t max_datagram_length =
quic::QuicSession::GetGuaranteedLargestMessagePayload();
if (max_datagram_length > 0) {
// Datagrams are supported in this case.
negotiated_params.set_max_datagram_length(max_datagram_length);
}
delegate_->OnConnected(negotiated_params);
}
}
void P2PQuicTransportImpl::OnOneRttKeysAvailable() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
QuicSession::OnOneRttKeysAvailable();
DCHECK(IsEncryptionEstablished());
DCHECK(OneRttKeysAvailable());
P2PQuicNegotiatedParams negotiated_params;
// The guaranteed largest message payload will not change throughout the
// connection.
uint16_t max_datagram_length =
quic::QuicSession::GetGuaranteedLargestMessagePayload();
if (max_datagram_length > 0) {
// Datagrams are supported in this case.
negotiated_params.set_max_datagram_length(max_datagram_length);
}
delegate_->OnConnected(negotiated_params);
}
void P2PQuicTransportImpl::OnCanWrite() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
while (!datagram_buffer_.empty()) {
if (TrySendDatagram(datagram_buffer_.front())) {
datagram_buffer_.pop();
} else {
// Keep the message in the buffer to be written when we can write again.
return;
}
}
// We have successfully sent all buffered datagrams.
QuicSession::OnCanWrite();
}
void P2PQuicTransportImpl::OnMessageReceived(
quiche::QuicheStringPiece message) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
// This will never overflow because of the datagram size limit.
Vector<uint8_t> datagram(static_cast<wtf_size_t>(message.size()));
memcpy(datagram.data(), message.data(), message.size());
delegate_->OnDatagramReceived(std::move(datagram));
}
void P2PQuicTransportImpl::OnMessageLost(quic::QuicMessageId message_id) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
num_datagrams_lost_++;
}
void P2PQuicTransportImpl::OnConnectionClosed(
const quic::QuicConnectionCloseFrame& frame,
quic::ConnectionCloseSource source) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
const quic::QuicErrorCode error = frame.quic_error_code;
const std::string& error_details = frame.error_details;
quic::QuicSession::OnConnectionClosed(frame, source);
if (error != quic::QuicErrorCode::QUIC_CONNECTION_CANCELLED) {
delegate_->OnConnectionFailed(
error_details, source == quic::ConnectionCloseSource::FROM_PEER);
} else if (source == quic::ConnectionCloseSource::FROM_PEER) {
// This connection was closed by the application of the remote side.
delegate_->OnRemoteStopped();
}
}
bool P2PQuicTransportImpl::ShouldKeepConnectionAlive() const {
return GetNumActiveStreams() > 0;
}
bool P2PQuicTransportImpl::IsClosed() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return !connection_->connected();
}
} // namespace blink
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
64f52c5934e8376d679207cb91393cb25cf9bb1e | 9a97f19fb8c9611c7e9c6a31e307a8ce596dd1f2 | /Week5_DP/week5/light_at_the_museum/light_at_the_museum.cpp | 4dace32937d870caf4a54082801c0b094d94bb51 | [] | no_license | sankiteth/AlgoLab | bd9397efac164b3694ae47a7602a2587f5641126 | 13caeaf84a35ad773db3da7daae8dcd38328d7b2 | refs/heads/master | 2021-09-06T18:37:09.093344 | 2018-02-09T19:49:17 | 2018-02-09T19:49:17 | 106,556,655 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,657 | cpp | #include <iostream>
#include <vector>
#include <algorithm>
#include <climits>
#include <map>
#include <utility>
using namespace std;
void brute_force()
{
int N,M; cin >> N >> M;
vector<int> target(M);
vector<vector<int> > switch_lights_on(N, vector<int>(M));
vector<vector<int> > switch_lights_off(N, vector<int>(M));
for (int i = 0; i < M; ++i)
{
cin >> target[i];
}
vector<int> room_lights_on(M, 0);
vector<int> room_lights_off(M, 0);
for (int i = 0; i < N; ++i)
{
for (int j = 0; j < M; ++j)
{
int on, off; cin >> on >> off;
switch_lights_on[i][j] = on;
switch_lights_off[i][j] = off;
room_lights_on[j] += on;
room_lights_off[j] += off;
}
}
int min_flicks = N+1;
// check all subsets of switches
for (int s = 0; s < (1<<N); ++s)
{
vector<int> temp(room_lights_on);
int num_flicks = 0;
for (int i = 0; i < N; ++i)
{
// ith switch is flicked
if (s & (1 << i))
{
num_flicks++;
for (int j = 0; j < M; ++j)
{
temp[j] += (switch_lights_off[i][j] - switch_lights_on[i][j]);
}
}
}
if (temp == target)
{
if (num_flicks < min_flicks)
{
min_flicks = num_flicks;
}
}
}
if (min_flicks == N+1)
{
cout << "impossible\n";
}
else
{
cout << min_flicks << endl;
}
}
void split_list()
{
int N,M; cin >> N >> M;
vector<int> target(M);
vector<vector<int> > switch_lights_on(N, vector<int>(M));
vector<vector<int> > switch_lights_off(N, vector<int>(M));
for (int i = 0; i < M; ++i)
{
cin >> target[i];
}
vector<int> room_lights_on(M, 0);
vector<int> room_lights_off(M, 0);
for (int i = 0; i < N; ++i)
{
for (int j = 0; j < M; ++j)
{
int on, off; cin >> on >> off;
switch_lights_on[i][j] = on;
switch_lights_off[i][j] = off;
room_lights_on[j] += on;
room_lights_off[j] += off;
}
}
// Divide into 2 sets of equal sizes
int N_1 = N/2;
int N_2 = N - N_1;
// check all subsets of first set
map<vector<int>, int> l1_light_states;
for (int s = 0; s < (1<<N_1); ++s)
{
vector<int> state_change(M, 0);
int num_flicks = 0;
for (int i = 0; i < N_1; ++i)
{
// ith switch is flicked
if (s & (1 << i))
{
num_flicks++;
for (int j = 0; j < M; ++j)
{
state_change[j] += (switch_lights_off[i][j] - switch_lights_on[i][j]);
}
}
}
if(l1_light_states.find(state_change) == l1_light_states.end())
{
l1_light_states[state_change] = num_flicks;
}
else
{
// may be different subsets of switch flicks produce the same state changes in all the rooms
if (l1_light_states[state_change] > num_flicks)
{
l1_light_states[state_change] = num_flicks;
}
}
}
int min_flicks = N+1;
// check all subsets of second set
map<vector<int>, int> l2_light_states;
for (int s = 0; s < (1<<N_2); ++s)
{
vector<int> current_on(room_lights_on);
int num_flicks = 0;
// ith switch in the second set
for (int i = 0; i < N_2; ++i)
{
// ith switch is flicked
if (s & (1 << i))
{
num_flicks++;
for (int j = 0; j < M; ++j)
{
current_on[j] += (switch_lights_off[N_1+i][j] - switch_lights_on[N_1+i][j]);
}
}
}
for (int i = 0; i < M; ++i)
{
current_on[i] = target[i] - current_on[i];
}
if (l1_light_states.find(current_on) != l1_light_states.end())
{
if (l1_light_states[current_on]+num_flicks < min_flicks)
{
min_flicks = l1_light_states[current_on]+num_flicks;
}
}
}
if (min_flicks == N+1)
{
cout << "impossible\n";
}
else
{
cout << min_flicks << endl;
}
}
int main()
{
ios_base::sync_with_stdio(false);
int t; cin >> t;
for (int i = 0; i < t; ++i)
{
split_list();
}
return 0;
} | [
"sankit@student.ethz.ch"
] | sankit@student.ethz.ch |
9bc4abf25b4eb8e30d5785ee39e0d84f45f7d5f2 | 2f4e5f08123046032d1d9bd742ad8c04113adc45 | /src/positionfilter/KalmanFilter2D.cpp | 9cf265f80a0a5781f2340a10e062169c78ea6bb0 | [] | no_license | ilodor/Oat | 05548134167161d0bdac547056ded3d09ab655ae | 9ff542c7c71584a4afed2c4997b8d32691e9a546 | refs/heads/master | 2021-01-22T16:10:50.353966 | 2015-10-15T01:20:31 | 2015-10-15T01:20:31 | 46,384,139 | 0 | 0 | null | 2015-11-18T00:18:45 | 2015-11-18T00:18:45 | null | UTF-8 | C++ | false | false | 11,119 | cpp | //******************************************************************************
//* File: KalmanFilter2D.cpp
//* Author: Jon Newman <jpnewman snail mit dot edu>
//*
//* Copyright (c) Jon Newman (jpnewman snail mit dot edu)
//* All right reserved.
//* This file is part of the Oat project.
//* This is free software: you can redistribute it and/or modify
//* it under the terms of the GNU General Public License as published by
//* the Free Software Foundation, either version 3 of the License, or
//* (at your option) any later version.
//* This software is distributed in the hope that it will be useful,
//* but WITHOUT ANY WARRANTY; without even the implied warranty of
//* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//* GNU General Public License for more details.
//* You should have received a copy of the GNU General Public License
//* along with this source code. If not, see <http://www.gnu.org/licenses/>.
//******************************************************************************
#include "KalmanFilter2D.h"
#include "../../lib/cpptoml/cpptoml.h"
#include "../../lib/cpptoml/OatTOMLSanitize.h"
#include "../../lib/utility/IOFormat.h"
/**
* A Kalman filter for position measures. The assumed model is normally distributed
* constant force applied at each time steps causes a random, constant acceleration
* in between each time-step.
*
* @param position_source_name The position measure SOURCE
* @param position_sink_name The filtered position SINK
*/
KalmanFilter2D::KalmanFilter2D(const std::string& position_source_name, const std::string& position_sink_name) :
PositionFilter(position_source_name, position_sink_name)
, filtered_position(position_sink_name)
, dt(0.02)
, kf(4, 2, 0, CV_64F)
, kf_predicted_state(4, 1, CV_64F)
, kf_meas(2, 1, CV_64F)
, found(false)
, not_found_count_threshold(0)
, sig_accel(5.0)
, sig_measure_noise(0.0)
, tuning_windows_created(false)
, draw_scale(10.0)
, tuning_image_title(position_sink_name + "_tuning") {
sig_accel_tune = static_cast<int>(sig_measure_noise);
sig_measure_noise_tune = static_cast<int>(sig_measure_noise);
}
oat::Position2D KalmanFilter2D::filterPosition(oat::Position2D& raw_position) {
// Transform raw position into kf_meas vector
if (raw_position.position_valid) {
kf_meas.at<double>(0) = raw_position.position.x;
kf_meas.at<double>(1) = raw_position.position.y;
not_found_count = 0;
// We are coming from a time step where there were no measurements for a
// long time, so we need to reinitialize the filter
if (!found) {
initializeFilter();
}
found = true;
} else {
not_found_count++;
}
// If we have not gotten a measurement of the object for a long time
// we need to reinitialize the filter
if (not_found_count >= not_found_count_threshold) {
found = false;
}
// Only update if the object is found (this includes time points for which
// the position measurement was invalid, but we are within the not_found_count_threshold)
if (found) {
kf_predicted_state = kf.predict();
// Apply the Kalman update
kf.correct(kf_meas);
}
filtered_position.position.x = kf_predicted_state.at<double>(0);
filtered_position.velocity.x = kf_predicted_state.at<double>(1);
filtered_position.position.y = kf_predicted_state.at<double>(2);
filtered_position.velocity.y = kf_predicted_state.at<double>(3);
// This Position is only valid if the not_found_count_threshold has not
// be exceeded
if (found) {
filtered_position.position_valid = true;
filtered_position.velocity_valid = true;
} else {
filtered_position.position_valid = false;
filtered_position.velocity_valid = false;
}
// Tune the filter, if requested
tune();
return filtered_position;
}
void KalmanFilter2D::configure(const std::string& config_file, const std::string& config_key) {
// Available options
std::vector<std::string> options {
"dt",
"timeout",
"sigma_accel",
"sigma_noise",
"tune" };
// This will throw cpptoml::parse_exception if a file
// with invalid TOML is provided
cpptoml::table config;
config = cpptoml::parse_file(config_file);
// See if a camera configuration was provided
if (config.contains(config_key)) {
// Get this components configuration table
auto this_config = config.get_table(config_key);
// Check for unknown options in the table and throw if you find them
oat::config::checkKeys(options, this_config);
// Time step
oat::config::getValue(this_config, "dt", dt, 0.0);
// Occlusion timeout
double timeout_in_sec {0};
if (oat::config::getValue(this_config, "timeout", timeout_in_sec, 0.0)) {
not_found_count_threshold = static_cast<int>(timeout_in_sec / dt);
}
// Acceleration stdev
oat::config::getValue(this_config, "sigma_accel", sig_accel, 0.0);
// Measurement noise stdev
oat::config::getValue(this_config, "sigma_noise", sig_measure_noise, 0.0);
// GUI for tuning
bool config_tune {false};
oat::config::getValue(this_config, "tune", config_tune);
if (config_tune) {
tuning_on = true;
createTuningWindows();
}
} else {
throw (std::runtime_error(oat::configNoTableError(config_key, config_file)));
}
}
void KalmanFilter2D::initializeFilter(void) {
initializeStaticMatracies();
// Error covariance matrix (initialize with large value to indicate a lack
// of trust in the model)
cv::setIdentity(kf.errorCovPre, 1000.0);
// TODO: Add head direction?
// The state is
// [ x x' y y']^T, where ' denotes the time derivative
// Initialize the state using the current measurement
kf.statePre.at<double>(0) = kf_meas.at<double>(0);
kf.statePre.at<double>(1) = 0.0;
kf.statePre.at<double>(2) = kf_meas.at<double>(1);
kf.statePre.at<double>(3) = 0.0;
}
void KalmanFilter2D::initializeStaticMatracies() {
// State transition matrix
// [ 1 dt 0 0 ]
// [ 0 1 0 0 ]
// [ 0 0 1 dt ]
// [ 0 0 0 1 ]
cv::setIdentity(kf.transitionMatrix);
kf.transitionMatrix.at<double>(0, 1) = dt;
kf.transitionMatrix.at<double>(2, 3) = dt;
kf.transitionMatrix.at<double>(4, 5) = dt;
// Observation Matrix (can only see position directly)
// [ 1 0 0 0 ]
// [ 0 0 1 0 ]
cv::Mat::zeros(3, 6, CV_32F);
kf.measurementMatrix.at<double>(0, 0) = 1.0;
kf.measurementMatrix.at<double>(1, 2) = 1.0;
// Noise covariance matrix (see pp13-15 of MWL.JPN.105.02.002 for derivation)
// [ dt^4/4 dt^3/2 ]
// [ dt^3/2 dt^2 ]
// [ dt^4/2 dt^2/3 ] * sigma_accel^2
// [ dt^2/3 dt^2 ]
kf.processNoiseCov.at<double>(0, 0) = sig_accel * sig_accel * (dt * dt * dt * dt) / 4.0;
kf.processNoiseCov.at<double>(0, 1) = sig_accel * sig_accel * (dt * dt * dt) / 2.0;
kf.processNoiseCov.at<double>(0, 2) = 0.0;
kf.processNoiseCov.at<double>(0, 3) = 0.0;
kf.processNoiseCov.at<double>(1, 0) = sig_accel * sig_accel * (dt * dt * dt) / 2.0;
kf.processNoiseCov.at<double>(1, 1) = sig_accel * sig_accel * (dt * dt);
kf.processNoiseCov.at<double>(1, 2) = 0.0;
kf.processNoiseCov.at<double>(1, 3) = 0.0;
kf.processNoiseCov.at<double>(2, 0) = 0.0;
kf.processNoiseCov.at<double>(2, 1) = 0.0;
kf.processNoiseCov.at<double>(2, 2) = sig_accel * sig_accel * (dt * dt * dt * dt) / 4.0;
kf.processNoiseCov.at<double>(2, 3) = sig_accel * sig_accel * (dt * dt * dt) / 2.0;
kf.processNoiseCov.at<double>(3, 0) = 0.0;
kf.processNoiseCov.at<double>(3, 1) = 0.0;
kf.processNoiseCov.at<double>(3, 2) = sig_accel * sig_accel * (dt * dt * dt) / 2.0;
kf.processNoiseCov.at<double>(3, 3) = sig_accel * sig_accel * (dt * dt);
// Measurement noise covariance
// [ sig_x^2 0 ]
// [ 0 sig_y^2 ]
cv::setIdentity(kf.measurementNoiseCov, cv::Scalar(sig_measure_noise * sig_measure_noise));
}
void KalmanFilter2D::tune() {
// TODO: The display output of this tuning feature is pretty useless. The constant
// rescaling makes it very difficutl to get a sense of the absolute accuracy of
// filtering and how parameters affect this over time.
if (tuning_on) {
if (!tuning_windows_created) {
createTuningWindows();
}
// Use the new parameters to create new static filter matracies
sig_accel = static_cast<double>(sig_accel_tune);
sig_measure_noise = static_cast<double>(sig_measure_noise_tune);
initializeStaticMatracies();
//cv::Mat tuning_canvas(canvas_hw, canvas_hw, CV_8UC3);
//tuning_canvas.setTo(255);
//drawPosition(tuning_canvas, raw_position);
//drawPosition(tuning_canvas, filtered_position);
// Draw the result, update sliders
//cv::imshow(tuning_image_title, tuning_canvas);
// If user hits escape, close the tuning windows
char user_input;
user_input = cv::waitKey(1);
if (user_input == 27) { // Capture 'ESC' key
tuning_on = false;
}
} else if (!tuning_on && tuning_windows_created) {
// Destroy the tuning windows
// TODO: Window will not actually close!!
cv::destroyWindow(tuning_image_title);
tuning_windows_created = false;
}
}
void KalmanFilter2D::createTuningWindows() {
// Create window for sliders
cv::namedWindow(tuning_image_title, cv::WINDOW_AUTOSIZE);
// Create sliders and insert them into window
sig_accel_tune = static_cast<int>(sig_accel);
sig_measure_noise_tune = static_cast<int>(sig_measure_noise);
cv::createTrackbar("SIGMA ACCEL.", tuning_image_title, &sig_accel_tune, 1000);
cv::createTrackbar("SIGMA NOISE", tuning_image_title, &sig_measure_noise_tune, 10);
tuning_windows_created = true;
}
//void KalmanFilter2D::drawPosition(cv::Mat& canvas, const datatypes::Position2D& position) {
//
// float x = position.position.x * draw_scale + (float) canvas_hw / 2.0;
// float y = position.position.y * draw_scale + (float) canvas_hw / 2.0;
// float dx = position.velocity.x * draw_scale;
// float dy = position.velocity.y * draw_scale;
//
// if (x > (canvas_hw - canvas_border) ||
// y > (canvas_hw - canvas_border) ||
// x < canvas_border ||
// y < canvas_border) {
//
// draw_scale = draw_scale * 0.99;
// }
//
// if (position.position_valid) {
// cv::Point2f pos(x, y);
// cv::circle(canvas, pos, 10, cv::Scalar(0, 0, 255), 2);
// }
//
// if (position.velocity_valid && position.position_valid) {
// cv::Point2f pos(x, y);
// cv::line(canvas, pos, cv::Point2f(x + dx, y + dy), cv::Scalar(0, 255, 0), 2, 8);
// }
//}
| [
"jpnewman@mit.edu"
] | jpnewman@mit.edu |
9431a9bea7ebc2914d3a7e989af00c3e71846b47 | d247c15f5bfeffb207e9ad91a45f63beff7039d3 | /studies/leptonIDs/ScanChainCMS4.C | 399aac18ced19a03b8e85987b28ea6347a29372f | [] | no_license | jkguiang/NanoTools | 3e5fd5e6299bccfa98b3b116b8a192c7664ceb1f | 327296b777d2f6c97cd9bd2cc68c5f3e0d7ccfc1 | refs/heads/master | 2022-12-31T16:08:52.920147 | 2020-10-26T17:01:44 | 2020-10-26T17:01:44 | 257,946,405 | 0 | 1 | null | 2020-04-22T15:44:23 | 2020-04-22T15:44:22 | null | UTF-8 | C++ | false | false | 10,165 | c | // -*- C++ -*-
// C++
#include <iostream>
#include <vector>
#include <string>
// ROOT
#include "TBenchmark.h"
#include "TChain.h"
#include "TDirectory.h"
#include "TFile.h"
#include "TROOT.h"
#include "TTreeCache.h"
#include "TString.h"
// CORE
#include "CORE/CMS3.h"
#include "CORE/ElectronSelections.h"
#include "CORE/MuonSelections.h"
#include "CORE/PhotonSelections.h"
#include "CORE/IsolationTools.h"
#include "CORE/TriggerSelections.h"
#include "CORE/MetSelections.h"
// Tools
#include "CORE/Tools/JetCorrector.h"
#include "CORE/Tools/goodrun.h"
#include "CORE/Tools/jetcorr/FactorizedJetCorrector.h"
#include "CORE/Tools/datasetinfo/getDatasetInfo.h"
// Global Variables
DatasetInfoFromFile datasetInfoFromFile;
readMVA* globalEleMVAreader = 0;
// Custom
#include "./counter.C"
#include "./ElectronSelectionsCMS4.C"
#include "./MuonSelectionsCMS4.C"
// Namespaces
using namespace std;
using namespace tas;
int ScanChainCMS4(TChain* chain, TString id_level, TString flavor) {
// Variables
bool fast = true;
int nEvents = -1;
/* --> Initialization <-- */
// Set gConf parameters
gconf.year = 2016;
gconf.cmssw_ver = 94;
gconf.ea_version = 1;
gconf.btag_disc_wp = 0.6324;
gconf.WP_DEEPCSV_TIGHT = 0.8958;
gconf.WP_DEEPCSV_MEDIUM = 0.6324;
gconf.WP_DEEPCSV_LOOSE = 0.2219;
gconf.multiiso_el_minireliso = 0.12;
gconf.multiiso_el_ptratio = 0.80;
gconf.multiiso_el_ptrel = 7.2;
gconf.multiiso_mu_minireliso = 0.16;
gconf.multiiso_mu_ptratio = 0.76;
gconf.multiiso_mu_ptrel = 7.2;
string jecEra = "Summer16_07Aug2017BCD_V11";
string jecEraMC = "Summer16_07Aug2017_V11";
// Initialize JECs
std::vector<std::string> jetcorr_filenames_25ns_MC_pfL1;
std::vector<std::string> jetcorr_filenames_25ns_MC_pfL2L3;
std::vector<std::string> jetcorr_filenames_25ns_MC_pfL1L2L3;
jetcorr_filenames_25ns_MC_pfL1.push_back("CORE/Tools/jetcorr/data/run2_25ns/"+jecEraMC+"_MC/"+jecEraMC+"_MC_L1FastJet_AK4PFchs.txt");
jetcorr_filenames_25ns_MC_pfL2L3.push_back("CORE/Tools/jetcorr/data/run2_25ns/"+jecEraMC+"_MC/"+jecEraMC+"_MC_L2Relative_AK4PFchs.txt");
jetcorr_filenames_25ns_MC_pfL2L3.push_back("CORE/Tools/jetcorr/data/run2_25ns/"+jecEraMC+"_MC/"+jecEraMC+"_MC_L3Absolute_AK4PFchs.txt");
jetcorr_filenames_25ns_MC_pfL1L2L3.push_back("CORE/Tools/jetcorr/data/run2_25ns/"+jecEraMC+"_MC/"+jecEraMC+"_MC_L1FastJet_AK4PFchs.txt");
jetcorr_filenames_25ns_MC_pfL1L2L3.push_back("CORE/Tools/jetcorr/data/run2_25ns/"+jecEraMC+"_MC/"+jecEraMC+"_MC_L2Relative_AK4PFchs.txt");
jetcorr_filenames_25ns_MC_pfL1L2L3.push_back("CORE/Tools/jetcorr/data/run2_25ns/"+jecEraMC+"_MC/"+jecEraMC+"_MC_L3Absolute_AK4PFchs.txt");
FactorizedJetCorrector *jetCorrAG = nullptr;
FactorizedJetCorrector *jetCorrAG_L1 = nullptr;
FactorizedJetCorrector *jetCorrAG_L2L3 = nullptr;
jetCorrAG_L1 = makeJetCorrector(jetcorr_filenames_25ns_MC_pfL1);
jetCorrAG_L2L3 = makeJetCorrector(jetcorr_filenames_25ns_MC_pfL2L3);
jetCorrAG = makeJetCorrector(jetcorr_filenames_25ns_MC_pfL1L2L3);
// for closestJet() in CORE/IsolationTools.cc
gconf.jet_corrector_L1 = jetCorrAG_L1;
gconf.jet_corrector_L2L3 = jetCorrAG_L2L3;
// Initialize MVA
createAndInitMVA("./CORE", true, true, 80);
/* --> File Loop <-- */
// Get # events
unsigned int nEventsTotal = 0;
unsigned int nEventsChain = chain->GetEntries();
if (nEvents >= 0) nEventsChain = nEvents;
// Get list of files
TObjArray *listOfFiles = chain->GetListOfFiles();
TIter fileIter(listOfFiles);
TFile *currentFile = 0;
// Loop over files
while ( (currentFile = (TFile*)fileIter.Next()) ) {
// Get File Content
TFile *file = TFile::Open(currentFile->GetTitle());
TTree *tree = (TTree*)file->Get("Events");
if (fast) TTreeCache::SetLearnEntries(10);
if (fast) tree->SetCacheSize(128*1024*1024);
cms3.Init(tree);
// Initialize counters
vector<int> el_counts;
vector<int> mu_counts;
vector<string> el_cutflow_names;
vector<string> mu_cutflow_names;
// Loop over Events in current file
cout << "START LEPTON COMPARISON" << endl;
// cout << "cut,result,event,lumiblock" << endl;
// START DEBUG
cout << "cut,result,pt,event,lumiblock" << endl;
// END DEBUG
if (nEventsTotal >= nEventsChain) continue;
unsigned int nEventsTree = tree->GetEntriesFast();
for (unsigned int event = 0; event < nEventsTree; ++event) {
// Get Event Content
if (nEventsTotal >= nEventsChain) continue;
if (fast) tree->LoadTree(event);
cms3.GetEntry(event);
++nEventsTotal;
/* --> Start Analysis Code <-- */
if (flavor == "electron") {
// Electrons
bool no_el_counts = el_counts.empty();
for (unsigned int i = 0; i < els_p4().size(); i++) {
// // Nano preselection
if (els_p4().at(i).pt() <= 5) {
continue;
}
Counter results;
if (id_level == "tight") {
results = isGoodElectronCMS4(i);
}
else if (id_level == "loose") {
results = isFakableElectronCMS4(i);
}
else {
cout << "Invalid ID level" << endl;
return 0;
}
vector<int> counts = results.counts;
el_cutflow_names = results.names;
for (unsigned int j = 0; j < counts.size(); j++) {
int count = counts.at(j);
if (no_el_counts) {
el_counts.push_back(count);
}
else {
el_counts[j] += count;
}
}
if (el_counts.size() == counts.size()) {
no_el_counts = false;
}
else {
cout << "Something went horribly wrong..." << endl;
return 0;
}
}
}
if (flavor == "muon") {
// Muons
bool no_mu_counts = mu_counts.empty();
for (unsigned int i = 0; i < mus_p4().size(); i++) {
vector<bool> POG_IDs;
POG_IDs.push_back(passesMuonPOG(muID::CutBasedIdLoose, i));
POG_IDs.push_back(passesMuonPOG(muID::SoftCutBasedId, i));
POG_IDs.push_back(passesMuonPOG(muID::SoftMvaId, i));
POG_IDs.push_back(passesMuonPOG(muID::CutBasedIdGlobalHighPt, i));
POG_IDs.push_back(passesMuonPOG(muID::CutBasedIdTrkHighPt, i));
bool POG_pass = false;
for (unsigned int k = 0; k < POG_IDs.size(); k++) {
if (POG_IDs.at(k) == true) {
POG_pass = true;
break;
}
}
if (!POG_pass) {
continue;
}
// // Nano preselection
if (mus_p4().at(i).pt() <= 3) {
continue;
}
Counter results;
if (id_level == "tight") {
results = isGoodMuonCMS4(i);
}
else if (id_level == "loose") {
results = isFakableMuonCMS4(i);
}
else {
cout << "Invalid ID level" << endl;
return 0;
}
vector<int> counts = results.counts;
mu_cutflow_names = results.names;
for (unsigned int j = 0; j < counts.size(); j++) {
int count = counts.at(j);
if (no_mu_counts) {
mu_counts.push_back(count);
}
else {
mu_counts[j] += count;
}
}
if (mu_counts.size() == counts.size()) {
no_mu_counts = false;
}
else {
cout << "Something went horribly wrong..." << endl;
return 0;
}
}
}
/* --> END Analysis Code <-- */
}
// Print out
cout << "START FILE SUMMARY" << endl;
cout << "Events parsed: " << nEventsTotal << " events" << endl;
if (flavor == "electron") {
for (unsigned int i = 0; i < el_counts.size(); i++) {
if (i > 0) {
cout << "&& ";
}
cout << el_cutflow_names.at(i) << ": " << endl;
cout << " --> OBJ LEVEL CUTFLOW <-- " << endl;
cout << " lep passed cut: " << el_counts.at(i) << " reco leptons" << endl;
}
}
if (flavor == "muon") {
for (unsigned int i = 0; i < mu_counts.size(); i++) {
if (i > 0) {
cout << "&& ";
}
cout << mu_cutflow_names.at(i) << ": " << endl;
cout << " --> OBJ LEVEL CUTFLOW <-- " << endl;
cout << " lep passed cut: " << mu_counts.at(i) << " reco leptons" << endl;
}
}
// Clean Up
delete tree;
file->Close();
}
if (nEventsChain != nEventsTotal) {
cout << Form( "ERROR: number of events from files (%d) is not equal to total number of events (%d)", nEventsChain, nEventsTotal ) << endl;
}
return 0;
}
| [
"jkguiang@gmail.com"
] | jkguiang@gmail.com |
cb9a623d06c9ac7ab22a3f452315ff4dce28a208 | 28d68af73c56375314efd07eaf6a1a9241a51ce3 | /aws-cpp-sdk-transfer/include/aws/transfer/TransferClient.h | 7a55ffaa14098f74f8daaba7f9119e911a94e447 | [
"JSON",
"MIT",
"Apache-2.0"
] | permissive | zeliard/aws-sdk-cpp | 93b560791fa359be25b201e9a6513bc3cb415046 | 14119f1f5bc159ce00a1332f86e117362afd3cb6 | refs/heads/master | 2021-01-16T22:49:18.731977 | 2016-01-04T01:54:38 | 2016-01-04T01:54:38 | 41,892,393 | 0 | 1 | null | 2015-09-04T01:35:43 | 2015-09-04T01:35:43 | null | UTF-8 | C++ | false | false | 7,268 | h |
/*
* Copyright 2010-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
#pragma once
#ifndef TRANSFER_CLIENT_H
#define TRANSFER_CLIENT_H
#include <aws/transfer/Transfer_EXPORTS.h>
#include <aws/transfer/TransferClientDefs.h>
#include <aws/s3/S3Client.h>
namespace Aws
{
namespace S3
{
namespace Model
{
} // namespace Model
} // namespace S3
namespace Transfer
{
class UploadFileRequest;
class DownloadFileRequest;
const uint64_t MB5_BUFFER_SIZE = 5 * 1024 * 1024;
struct AWS_TRANSFER_API TransferClientConfiguration
{
public:
TransferClientConfiguration();
~TransferClientConfiguration();
uint32_t m_uploadBufferCount;
std::shared_ptr< UploadBufferResourceManagerType > m_uploadBufferManager;
};
class AWS_TRANSFER_API TransferClient
{
public:
TransferClient(const std::shared_ptr<Aws::S3::S3Client>& s3Client, const TransferClientConfiguration& config);
~TransferClient();
// Single entry point for attempting an upload - attempting to create an existing bucket won't hurt anything but will affect performance
// unnecessarily as the request waits for S3 to propagate the bucket
// All queries about the upload after this point can be found in UploadFileRequest's interface
std::shared_ptr<UploadFileRequest> UploadFile(const Aws::String& fileName, const Aws::String& bucketName, const Aws::String& keyName, const Aws::String& contentType, bool createBucket = false, bool doConsistencyChecks = false);
// User requested upload cancels should go through here
void CancelUpload(std::shared_ptr<UploadFileRequest>& fileRequest) const;
// Single entry point for attempting a download
std::shared_ptr<DownloadFileRequest> DownloadFile(const Aws::String& fileName, const Aws::String& bucketName, const Aws::String& keyName);
// User requested download cancels should go through here
void CancelDownload(std::shared_ptr<DownloadFileRequest>& fileRequest) const;
const std::shared_ptr<Aws::S3::S3Client>& GetS3Client() { return m_s3Client; }
uint32_t GetConfigBufferCount() const { return m_config.m_uploadBufferCount; }
friend class UploadFileRequest;
friend class DownloadFileRequest;
private:
void UploadFileInternal(std::shared_ptr<UploadFileRequest>& fileRequest);
void ProcessSingleBuffer(std::shared_ptr<UploadFileRequest>& request, const std::shared_ptr<UploadBuffer>& buffer);
void CancelUploadInternal(std::shared_ptr<UploadFileRequest>& fileRequest) const;
void BeginDownloadFile(std::shared_ptr<DownloadFileRequest>& fileRequest) const;
void DownloadFileInternal(std::shared_ptr<DownloadFileRequest>& fileRequest) const;
void GetContentsInternal(std::shared_ptr<DownloadFileRequest>& request) const;
void CancelDownloadInternal(std::shared_ptr<DownloadFileRequest>& fileRequest) const;
static void OnCreateBucket(const Aws::S3::S3Client* s3Client,
const Aws::S3::Model::CreateBucketRequest& request,
const Aws::S3::Model::CreateBucketOutcome& outcome,
const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context);
static void OnCreateMultipartUpload(const Aws::S3::S3Client* s3Client,
const Aws::S3::Model::CreateMultipartUploadRequest& request,
const Aws::S3::Model::CreateMultipartUploadOutcome& outcome,
const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context);
static void OnHeadBucket(const Aws::S3::S3Client* s3Client,
const Aws::S3::Model::HeadBucketRequest& request,
const Aws::S3::Model::HeadBucketOutcome& outcome,
const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context);
static void OnUploadPartRequest(const Aws::S3::S3Client* s3Client,
const Aws::S3::Model::UploadPartRequest& request,
const Aws::S3::Model::UploadPartOutcome& outcome,
const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context);
static void OnCompleteMultipartUpload(const Aws::S3::S3Client* s3Client,
const Aws::S3::Model::CompleteMultipartUploadRequest& request,
const Aws::S3::Model::CompleteMultipartUploadOutcome& outcome,
const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context);
static void OnPutObject(const Aws::S3::S3Client* s3Client,
const Aws::S3::Model::PutObjectRequest& request,
const Aws::S3::Model::PutObjectOutcome& outcome,
const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context);
static void OnDownloadGetObject(const Aws::S3::S3Client* s3Client,
const Aws::S3::Model::GetObjectRequest& request,
const Aws::S3::Model::GetObjectOutcome& outcome,
const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context);
static void OnDownloadListObjects(const Aws::S3::S3Client* s3Client,
const Aws::S3::Model::ListObjectsRequest& request,
const Aws::S3::Model::ListObjectsOutcome& outcome,
const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context);
static void OnUploadGetObject(const Aws::S3::S3Client* s3Client,
const Aws::S3::Model::GetObjectRequest& request,
const Aws::S3::Model::GetObjectOutcome& outcome,
const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context);
static void OnHeadObject(const Aws::S3::S3Client* s3Client,
const Aws::S3::Model::HeadObjectRequest& request,
const Aws::S3::Model::HeadObjectOutcome& outcome,
const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context);
static void OnUploadListObjects(const Aws::S3::S3Client* s3Client,
const Aws::S3::Model::ListObjectsRequest& request,
const Aws::S3::Model::ListObjectsOutcome& outcome,
const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context);
static void OnAbortMultipart(const Aws::S3::S3Client* ,
const Aws::S3::Model::AbortMultipartUploadRequest& ,
const Aws::S3::Model::AbortMultipartUploadOutcome& ,
const std::shared_ptr<const Aws::Client::AsyncCallerContext>& ) {}
std::shared_ptr< UploadBufferScopedResourceSetType > AcquireUploadBuffers(uint32_t bufferCount);
std::shared_ptr<Aws::S3::S3Client> m_s3Client;
TransferClientConfiguration m_config;
std::shared_ptr<UploadBufferResourceManagerType> m_uploadBufferManager;
};
} // namespace Transfer
} // namespace Aws
#endif | [
"henso@amazon.com"
] | henso@amazon.com |
dd78b3cbd58d06a6e1065ecb535deb478338faae | 433867fb8f23e1a9b2eaa770453a126730edd2b5 | /vscode_proj/condition_variable_produce.cpp | 049e3702621f12fdf32a38a79176cf22423a0f58 | [] | no_license | colderleo/cpp_thread | 9069aa015cb43bb67b0daf9e1f0808cea5375c2b | 69f5339e200afbe30265e4548f8e46f5dd48da1b | refs/heads/master | 2022-11-24T07:10:30.200387 | 2020-07-29T10:09:21 | 2020-07-29T10:09:21 | 273,801,816 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,673 | cpp | #include<thread>
#include<mutex>
#include<condition_variable>
using namespace std;
int cargo = 0;
mutex g_mutex;
condition_variable cv;
bool has_goods() {
return (cargo > 0);
}
void consume(int n) {
unique_lock<mutex> lck(g_mutex);
for (int i = 0; i < n; ++i) {
cv.wait(lck, has_goods);
printf("consume goods %d\n", cargo);
cargo = 0;
cv.notify_one();
}
}
int main() {
int n = 10;
printf("main start\n");
thread consumer_thread(consume, n);
unique_lock<mutex> lck(g_mutex);
//produce
for (int i = 0; i < n; ++i) {
cv.wait(lck, []() {return (cargo == 0); });
printf("produce %d\n", i + 1);
cargo = i + 1;
cv.notify_one();
}
consumer_thread.join();
}
//#include <iostream> // std::cout
//#include <thread> // std::thread, std::this_thread::yield
//#include <mutex> // std::mutex, std::unique_lock
//#include <condition_variable> // std::condition_variable
//
//std::mutex mtx;
//std::condition_variable cv;
//
//int cargo = 0;
//bool shipment_available()
//{
// return cargo != 0;
//}
//
//// 消费者线程.
//void consume(int n)
//{
// for (int i = 0; i < n; ++i) {
// std::unique_lock <std::mutex> lck(mtx);
// cv.wait(lck, shipment_available);
// std::cout << cargo << '\n';
// cargo = 0;
// }
//}
//
//int main()
//{
// std::thread consumer_thread(consume, 10); // 消费者线程.
//
// // 主线程为生产者线程, 生产 10 个物品.
// for (int i = 0; i < 10; ++i) {
// while (shipment_available())
// std::this_thread::yield();
// std::unique_lock <std::mutex> lck(mtx);
// cargo = i + 1;
// cv.notify_one();
// }
//
// consumer_thread.join();
//
// return 0;
//} | [
"colderleo@163.com"
] | colderleo@163.com |
d64b3d29699ade196c59c9e7b7a25880caea705f | 52ac4c54b198341b9b3f24e162fb77d9f2999bf4 | /The Land of Headaches/AssetManager.cpp | b89381ae3bd84e111f0fae4c0c5ba6f4d645d618 | [] | no_license | bOsowski/The-Land-of-Headaches | 6a196d52b9fc0ad8355f811441490cfa361e8026 | 47640db334392cb9743254dd68da689e8a39847f | refs/heads/master | 2020-04-10T07:48:02.664769 | 2018-12-16T05:01:46 | 2018-12-16T05:01:46 | 160,889,162 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,539 | cpp | //
// Created by Bartosz Osowski on 08/12/2018.
// Copyright (c) 2018 Bartosz Osowski. All rights reserved.
//
#include "AssetManager.hpp"
AssetManager::AssetManager() {
DIR *dir;
struct dirent *ent;
bool fail = true;
//loading textures
while(fail){
const char* textureDir = ((resourcePath()+"textures/").c_str());
const std::string texturesPath = std::string(textureDir);
if ((dir = opendir (textureDir)) != NULL) {
std::cout<< "Found textures folder."<<std::endl;
while ((ent = readdir (dir)) != NULL) {
std::string fileName = std::string(ent->d_name);
if(fileName == "." || fileName == "..")continue;
std::string full_path = texturesPath + fileName;
std::cout << "Trying to load from " + full_path << std::endl;
sf::Texture texture;
if ( texture.loadFromFile(full_path)) {
textures.insert(std::pair<std::string, sf::Texture>(fileName, texture));
std::cout << "Loaded '" + fileName << "'" << std::endl<<std::endl;
}
else{
std::cout << "Failed to load '" + fileName << "'" << std::endl<<std::endl;
}
}
closedir (dir);
fail = false;
}
}
fail = true;
//loading audio
while(fail){
const char* soundDir = ((resourcePath()+"audio/").c_str());
const std::string audioPath = std::string(soundDir);
if ((dir = opendir (soundDir)) != NULL) {
std::cout<< "Found audio folder."<<std::endl;
while ((ent = readdir (dir)) != NULL) {
std::string fileName = std::string(ent->d_name);
if(fileName == "." || fileName == "..")continue;
std::string full_path = audioPath + fileName;
std::cout << "Trying to load from " + full_path << std::endl;
sf::SoundBuffer* soundBuffer = new sf::SoundBuffer();
if ( soundBuffer->loadFromFile(full_path)) {
sounds.insert(std::pair<std::string, sf::SoundBuffer*>(fileName, soundBuffer));
std::cout << "Loaded '" + fileName << "'" << std::endl<<std::endl;
}
else{
std::cout << "Failed to load '" + fileName << "'" << std::endl<<std::endl;
}
}
closedir (dir);
fail = false;
}
}
}
| [
"bosowski04@gmail.com"
] | bosowski04@gmail.com |
60ec9f5e7f0eecd878303e129d6d99f832f87946 | e641bd95bff4a447e25235c265a58df8e7e57c84 | /third_party/blink/renderer/core/loader/loader_factory_for_frame.cc | 842a216e7014364a93d65efd48184e639e5c77aa | [
"LGPL-2.0-or-later",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-1.0-or-later",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"BSD-3-Clause",
"MIT",
"Apache-2.0"
] | permissive | zaourzag/chromium | e50cb6553b4f30e42f452e666885d511f53604da | 2370de33e232b282bd45faa084e5a8660cb396ed | refs/heads/master | 2023-01-02T08:48:14.707555 | 2020-11-13T13:47:30 | 2020-11-13T13:47:30 | 312,600,463 | 0 | 0 | BSD-3-Clause | 2022-12-23T17:01:30 | 2020-11-13T14:39:10 | null | UTF-8 | C++ | false | false | 5,980 | cc | // Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/core/loader/loader_factory_for_frame.h"
#include "base/single_thread_task_runner.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "services/network/public/mojom/url_loader_factory.mojom-blink.h"
#include "third_party/blink/public/common/blob/blob_utils.h"
#include "third_party/blink/public/mojom/fetch/fetch_api_request.mojom-blink.h"
#include "third_party/blink/public/platform/modules/service_worker/web_service_worker_network_provider.h"
#include "third_party/blink/public/platform/platform.h"
#include "third_party/blink/public/platform/web_url_loader_factory.h"
#include "third_party/blink/renderer/core/fileapi/public_url_manager.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/loader/document_loader.h"
#include "third_party/blink/renderer/core/loader/prefetched_signed_exchange_manager.h"
#include "third_party/blink/renderer/platform/exported/wrapped_resource_request.h"
#include "third_party/blink/renderer/platform/weborigin/kurl.h"
namespace blink {
LoaderFactoryForFrame::LoaderFactoryForFrame(DocumentLoader& document_loader,
LocalDOMWindow& window)
: document_loader_(document_loader),
window_(window),
prefetched_signed_exchange_manager_(
document_loader.GetPrefetchedSignedExchangeManager()) {}
void LoaderFactoryForFrame::Trace(Visitor* visitor) const {
visitor->Trace(document_loader_);
visitor->Trace(window_);
visitor->Trace(prefetched_signed_exchange_manager_);
LoaderFactory::Trace(visitor);
}
std::unique_ptr<WebURLLoader> LoaderFactoryForFrame::CreateURLLoader(
const ResourceRequest& request,
const ResourceLoaderOptions& options,
scoped_refptr<base::SingleThreadTaskRunner> freezable_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> unfreezable_task_runner) {
WrappedResourceRequest webreq(request);
mojo::PendingRemote<network::mojom::blink::URLLoaderFactory>
url_loader_factory;
if (options.url_loader_factory) {
mojo::Remote<network::mojom::blink::URLLoaderFactory>
url_loader_factory_remote(std::move(options.url_loader_factory->data));
url_loader_factory_remote->Clone(
url_loader_factory.InitWithNewPipeAndPassReceiver());
}
// Resolve any blob: URLs that haven't been resolved yet. The XHR and
// fetch() API implementations resolve blob URLs earlier because there can
// be arbitrarily long delays between creating requests with those APIs and
// actually creating the URL loader here. Other subresource loading will
// immediately create the URL loader so resolving those blob URLs here is
// simplest.
// Don't resolve the URL again if this is a shared worker request though, as
// in that case the browser process will have already done so and the code
// here should just go through the normal non-blob specific code path (note
// that this is only strictly true if NetworkService/S13nSW is enabled, but
// if that isn't the case we're going to run into race conditions resolving
// the blob URL anyway so it doesn't matter if the blob URL gets resolved
// here or later in the browser process, so skipping blob URL resolution
// here for all shared worker loads is okay even with NetworkService/S13nSW
// disabled).
// TODO(mek): Move the RequestContext check to the worker side's relevant
// callsite when we make Shared Worker loading off-main-thread.
if (request.Url().ProtocolIs("blob") && !url_loader_factory &&
request.GetRequestContext() !=
mojom::blink::RequestContextType::SHARED_WORKER) {
window_->GetPublicURLManager().Resolve(
request.Url(), url_loader_factory.InitWithNewPipeAndPassReceiver());
}
LocalFrame* frame = window_->GetFrame();
DCHECK(frame);
FrameScheduler* frame_scheduler = frame->GetFrameScheduler();
DCHECK(frame_scheduler);
// TODO(altimin): frame_scheduler->CreateResourceLoadingTaskRunnerHandle is
// used when creating a URLLoader, and ResourceFetcher::GetTaskRunner is
// used whenever asynchronous tasks around resource loading are posted. Modify
// the code so that all the tasks related to loading a resource use the
// resource loader handle's task runner.
if (url_loader_factory) {
return Platform::Current()
->WrapURLLoaderFactory(std::move(url_loader_factory))
->CreateURLLoader(webreq, CreateTaskRunnerHandle(freezable_task_runner),
CreateTaskRunnerHandle(unfreezable_task_runner));
}
if (document_loader_->GetServiceWorkerNetworkProvider()) {
auto loader =
document_loader_->GetServiceWorkerNetworkProvider()->CreateURLLoader(
webreq, CreateTaskRunnerHandle(freezable_task_runner),
CreateTaskRunnerHandle(unfreezable_task_runner));
if (loader)
return loader;
}
if (prefetched_signed_exchange_manager_) {
auto loader =
prefetched_signed_exchange_manager_->MaybeCreateURLLoader(webreq);
if (loader)
return loader;
}
return frame->GetURLLoaderFactory()->CreateURLLoader(
webreq, CreateTaskRunnerHandle(freezable_task_runner),
CreateTaskRunnerHandle(unfreezable_task_runner));
}
std::unique_ptr<WebCodeCacheLoader>
LoaderFactoryForFrame::CreateCodeCacheLoader() {
return Platform::Current()->CreateCodeCacheLoader();
}
std::unique_ptr<blink::scheduler::WebResourceLoadingTaskRunnerHandle>
LoaderFactoryForFrame::CreateTaskRunnerHandle(
scoped_refptr<base::SingleThreadTaskRunner> task_runner) {
return scheduler::WebResourceLoadingTaskRunnerHandle::CreateUnprioritized(
std::move(task_runner));
}
} // namespace blink
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
3d9718bc1e83b70ac6d35112824a8b404b76b80c | bfbdd3d6bf4e70aa2aa2df3d01d18c83a30d8033 | /day8/code/06OverrideQt/mainwindow.cpp | 9513a6634514ecb9b94b09563525bc4e9b7073c6 | [] | no_license | caiyiming/cppCode | 42333b1c052818afdd68d8a47c4e5b648d7a6b6d | dc1b897af0ebd0778159b852112e02b0ade23e78 | refs/heads/master | 2020-06-15T15:46:48.511108 | 2016-12-01T08:08:16 | 2016-12-01T08:08:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 424 | cpp | #include "mainwindow.h"
#include <iostream>
using namespace std;
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
{
this->setGeometry(300,300,500,300);
}
MainWindow::~MainWindow()
{
}
void MainWindow::mousePressEvent(QMouseEvent * e)
{
if(e->button() == Qt::LeftButton)
{
cout<<e->pos().rx()<<"\t"<<e->pos().ry()<<endl;
cout<<e->globalX()<<"\t"<<e->globalY()<<endl;
}
}
| [
"guilin_wang@163.com"
] | guilin_wang@163.com |
fa73601b7758dcc48163155943bcdc19768ae0f3 | 86856b9f1f57d85b37132f144a01011795c788ea | /C++/CS124/assignment26-converter.cpp | e519e3fbfdc8e1b86b34377dc94148cd443bf523 | [] | no_license | pelbertc/UBUNTUREPO | 60d3aefd8607f3d51a65b1ac7384f4030b6548f0 | 6eb850e394b5f149416f717c859674399f95bab8 | refs/heads/master | 2020-04-17T18:58:17.692020 | 2019-11-08T17:42:41 | 2019-11-08T17:42:41 | 166,848,677 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,658 | cpp | /**********************************************************************
* Program:
* Assignment 26, Files
* Brother Wagstaff, CS124
* Author:
* Elbert Prescott
* Summary:
* this program will read a text file with multiple grades then generate
* average grade
*
* Estimated: 4.0 hrs
* Actual: 8.0 hrs
* figuring out how to read through the whole file and be able to
* calculate all its values inside was difficult and time consuming
* trying to grasp these new concepts takes times especially with
* ifstream etc.
************************************************************************/
#include <iostream>
#include <fstream>
#include <cstdlib>
using namespace std;
/**********************************************************************
* getFileName() will input the file name to be read
***********************************************************************/
void getFileName(char fileName[])
{
cout << "Please enter the filename: ";
cin >> fileName;
}
/**********************************************************************
* readFile() will read the text file and compute the average grade
***********************************************************************/
float readFile(char fileName[])
{
//open the data
ifstream fin(fileName);
if (fin.fail())
{
cout << "Error reading file \"" << fileName << "\"" << endl;
exit(0);
}
else
{
//read the data
float grade = {0};
float sum = {0};
float tbvalue = {0};
int itemRead = 0;
while (fin >> grade)
{
sum += grade;
++itemRead;
}
if (itemRead < 1 || itemRead > 2000)
{
cout << "Error reading file \"" << fileName << "\"\n";
exit(0);
}
else
{
tbvalue = sum / 1024 / 1024 / 1024;
//close and return the data
fin.close();
return tbvalue;
}
}
}
/**********************************************************************
* display() will display the average grade
***********************************************************************/
void display(float value)
{
cout.setf(ios::fixed);
cout.precision(2);
cout << "Total Size of Data: " << value << " TB" << endl;
}
/**********************************************************************
* MAIN
* The main will call the 3 funtions to input the file name, generate
* then display average
***********************************************************************/
int main()
{
char file[256] = {0};
getFileName(file);
float total = readFile(file);
display(total);
return 0;
}
| [
"tufumoon@gmail.com"
] | tufumoon@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.