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 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
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 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2ae1f406d7f1157974cc87e5e4af7b2cb6720f62 | 5251655f773e70b39776ee05cc383c1a01357fee | /Jarvis March/Point.h | 9af50c6e46f5bd64e20b770823312227fa974044 | [] | no_license | nabinchha/convex-hull-jarvis-grahams-comparision | c82a196dc0fbbc8fa609bf0069602f6be5222228 | 69886919e9e54b16b16d8371db6384f5a7949b9a | refs/heads/master | 2021-05-02T07:58:13.056518 | 2020-01-17T23:39:57 | 2020-01-17T23:39:57 | 41,397,376 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 728 | h | // Author: Nabin Mulepati 2010
#include<iostream>
using namespace std;
class Point {
public:
double x;
double y;
double theta;
Point() {
x=0;
y=0;
theta=NULL;
}
Point(double a, double b) {
x = a;
y = b;
}
Point operator=(const Point& e) {
x = e.x;
y = e.y;
theta = e.theta;
return *this;
}
bool operator !=(const Point& e) {
if(x == e.x && y == e.y) {
return false;
} else {
return true;
}
}
bool operator ==(const Point& e) {
if(x == e.x && y == e.y) {
return true;
} else {
return false;
}
}
void Print() {
cout<<x << " " <<y<<endl;
}
}; | [
"nabinchha@gmail.com"
] | nabinchha@gmail.com |
881fea6c5d5884cc3553b66bf0474ff193cd22bd | 38c10c01007624cd2056884f25e0d6ab85442194 | /chrome/browser/upgrade_detector_impl.cc | 64bf7ca6aa63fb85aa63a00bbd3c656428f70b66 | [
"BSD-3-Clause"
] | 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 | 20,740 | cc | // Copyright (c) 2012 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/upgrade_detector_impl.h"
#include <string>
#include "base/bind.h"
#include "base/build_time.h"
#include "base/command_line.h"
#include "base/files/file_path.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/singleton.h"
#include "base/path_service.h"
#include "base/prefs/pref_service.h"
#include "base/process/launch.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "base/time/time.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/google/google_brand.h"
#include "chrome/common/channel_info.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/pref_names.h"
#include "components/network_time/network_time_tracker.h"
#include "components/version_info/version_info.h"
#include "content/public/browser/browser_thread.h"
#if defined(OS_WIN)
#include "base/win/win_util.h"
#include "chrome/installer/util/browser_distribution.h"
#include "chrome/installer/util/google_update_settings.h"
#include "chrome/installer/util/helper.h"
#include "chrome/installer/util/install_util.h"
#elif defined(OS_MACOSX)
#include "chrome/browser/mac/keystone_glue.h"
#endif
using content::BrowserThread;
namespace {
// How long (in milliseconds) to wait (each cycle) before checking whether
// Chrome's been upgraded behind our back.
const int kCheckForUpgradeMs = 2 * 60 * 60 * 1000; // 2 hours.
// How long to wait (each cycle) before checking which severity level we should
// be at. Once we reach the highest severity, the timer will stop.
const int kNotifyCycleTimeMs = 20 * 60 * 1000; // 20 minutes.
// Same as kNotifyCycleTimeMs but only used during testing.
const int kNotifyCycleTimeForTestingMs = 500; // Half a second.
// The number of days after which we identify a build/install as outdated.
const uint64 kOutdatedBuildAgeInDays = 12 * 7;
// Return the string that was passed as a value for the
// kCheckForUpdateIntervalSec switch.
std::string CmdLineInterval() {
const base::CommandLine& cmd_line = *base::CommandLine::ForCurrentProcess();
return cmd_line.GetSwitchValueASCII(switches::kCheckForUpdateIntervalSec);
}
// Check if one of the outdated simulation switches was present on the command
// line.
bool SimulatingOutdated() {
const base::CommandLine& cmd_line = *base::CommandLine::ForCurrentProcess();
return cmd_line.HasSwitch(switches::kSimulateOutdated) ||
cmd_line.HasSwitch(switches::kSimulateOutdatedNoAU);
}
// Check if any of the testing switches was present on the command line.
bool IsTesting() {
const base::CommandLine& cmd_line = *base::CommandLine::ForCurrentProcess();
return cmd_line.HasSwitch(switches::kSimulateUpgrade) ||
cmd_line.HasSwitch(switches::kCheckForUpdateIntervalSec) ||
cmd_line.HasSwitch(switches::kSimulateCriticalUpdate) ||
SimulatingOutdated();
}
// How often to check for an upgrade.
int GetCheckForUpgradeEveryMs() {
// Check for a value passed via the command line.
int interval_ms;
std::string interval = CmdLineInterval();
if (!interval.empty() && base::StringToInt(interval, &interval_ms))
return interval_ms * 1000; // Command line value is in seconds.
return kCheckForUpgradeMs;
}
#if !defined(OS_WIN) || defined(GOOGLE_CHROME_BUILD)
// Return true if the current build is one of the unstable channels.
bool IsUnstableChannel() {
// TODO(mad): Investigate whether we still need to be on the file thread for
// this. On Windows, the file thread used to be required for registry access
// but no anymore. But other platform may still need the file thread.
// crbug.com/366647.
DCHECK_CURRENTLY_ON(BrowserThread::FILE);
version_info::Channel channel = chrome::GetChannel();
return channel == version_info::Channel::DEV ||
channel == version_info::Channel::CANARY;
}
#endif // !defined(OS_WIN) || defined(GOOGLE_CHROME_BUILD)
#if !defined(OS_WIN)
// This task identifies whether we are running an unstable version. And then it
// unconditionally calls back the provided task.
void CheckForUnstableChannel(const base::Closure& callback_task,
bool* is_unstable_channel) {
*is_unstable_channel = IsUnstableChannel();
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, callback_task);
}
#else
// Return true if the currently running Chrome is a system install.
bool IsSystemInstall() {
// Get the version of the currently *installed* instance of Chrome,
// which might be newer than the *running* instance if we have been
// upgraded in the background.
base::FilePath exe_path;
if (!PathService::Get(base::DIR_EXE, &exe_path)) {
NOTREACHED() << "Failed to find executable path";
return false;
}
return !InstallUtil::IsPerUserInstall(exe_path);
}
#if defined(GOOGLE_CHROME_BUILD)
// Sets |is_unstable_channel| to true if the current chrome is on the dev or
// canary channels. Sets |is_auto_update_enabled| to true if Google Update will
// update the current chrome. Unconditionally posts |callback_task| to the UI
// thread to continue processing.
void DetectUpdatability(const base::Closure& callback_task,
bool* is_unstable_channel,
bool* is_auto_update_enabled) {
DCHECK_CURRENTLY_ON(BrowserThread::FILE);
// Don't try to turn on autoupdate when we failed previously.
if (is_auto_update_enabled) {
*is_auto_update_enabled =
GoogleUpdateSettings::AreAutoupdatesEnabled();
}
*is_unstable_channel = IsUnstableChannel();
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, callback_task);
}
#endif // defined(GOOGLE_CHROME_BUILD)
#endif // !defined(OS_WIN)
// Gets the currently installed version. On Windows, if |critical_update| is not
// NULL, also retrieves the critical update version info if available.
base::Version GetCurrentlyInstalledVersionImpl(Version* critical_update) {
base::ThreadRestrictions::AssertIOAllowed();
Version installed_version;
#if defined(OS_WIN)
// Get the version of the currently *installed* instance of Chrome,
// which might be newer than the *running* instance if we have been
// upgraded in the background.
bool system_install = IsSystemInstall();
// TODO(tommi): Check if using the default distribution is always the right
// thing to do.
BrowserDistribution* dist = BrowserDistribution::GetDistribution();
InstallUtil::GetChromeVersion(dist, system_install, &installed_version);
if (critical_update && installed_version.IsValid()) {
InstallUtil::GetCriticalUpdateVersion(dist, system_install,
critical_update);
}
#elif defined(OS_MACOSX)
installed_version =
Version(base::UTF16ToASCII(keystone_glue::CurrentlyInstalledVersion()));
#elif defined(OS_POSIX)
// POSIX but not Mac OS X: Linux, etc.
base::CommandLine command_line(*base::CommandLine::ForCurrentProcess());
command_line.AppendSwitch(switches::kProductVersion);
std::string reply;
if (!base::GetAppOutput(command_line, &reply)) {
DLOG(ERROR) << "Failed to get current file version";
return installed_version;
}
base::TrimWhitespaceASCII(reply, base::TRIM_ALL, &reply);
installed_version = Version(reply);
#endif
return installed_version;
}
} // namespace
UpgradeDetectorImpl::UpgradeDetectorImpl()
: is_unstable_channel_(false),
is_auto_update_enabled_(true),
build_date_(base::GetBuildTime()),
weak_factory_(this) {
base::CommandLine command_line(*base::CommandLine::ForCurrentProcess());
// The different command line switches that affect testing can't be used
// simultaneously, if they do, here's the precedence order, based on the order
// of the if statements below:
// - kDisableBackgroundNetworking prevents any of the other command line
// switch from being taken into account.
// - kSimulateUpgrade supersedes critical or outdated upgrade switches.
// - kSimulateCriticalUpdate has precedence over kSimulateOutdated.
// - kSimulateOutdatedNoAU has precedence over kSimulateOutdated.
// - kSimulateOutdated[NoAu] can work on its own, or with a specified date.
if (command_line.HasSwitch(switches::kDisableBackgroundNetworking))
return;
if (command_line.HasSwitch(switches::kSimulateUpgrade)) {
UpgradeDetected(UPGRADE_AVAILABLE_REGULAR);
return;
}
if (command_line.HasSwitch(switches::kSimulateCriticalUpdate)) {
UpgradeDetected(UPGRADE_AVAILABLE_CRITICAL);
return;
}
if (SimulatingOutdated()) {
// The outdated simulation can work without a value, which means outdated
// now, or with a value that must be a well formed date/time string that
// overrides the build date.
// Also note that to test with a given time/date, until the network time
// tracking moves off of the VariationsService, the "variations-server-url"
// command line switch must also be specified for the service to be
// available on non GOOGLE_CHROME_BUILD.
std::string switch_name;
if (command_line.HasSwitch(switches::kSimulateOutdatedNoAU)) {
is_auto_update_enabled_ = false;
switch_name = switches::kSimulateOutdatedNoAU;
} else {
switch_name = switches::kSimulateOutdated;
}
std::string build_date = command_line.GetSwitchValueASCII(switch_name);
base::Time maybe_build_time;
bool result = base::Time::FromString(build_date.c_str(), &maybe_build_time);
if (result && !maybe_build_time.is_null()) {
// We got a valid build date simulation so use it and check for upgrades.
build_date_ = maybe_build_time;
StartTimerForUpgradeCheck();
} else {
// Without a valid date, we simulate that we are already outdated...
UpgradeDetected(
is_auto_update_enabled_ ? UPGRADE_NEEDED_OUTDATED_INSTALL
: UPGRADE_NEEDED_OUTDATED_INSTALL_NO_AU);
}
return;
}
// Register for experiment notifications. Note that since this class is a
// singleton, it does not need to unregister for notifications when destroyed,
// since it outlives the VariationsService.
variations::VariationsService* variations_service =
g_browser_process->variations_service();
if (variations_service)
variations_service->AddObserver(this);
base::Closure start_upgrade_check_timer_task =
base::Bind(&UpgradeDetectorImpl::StartTimerForUpgradeCheck,
weak_factory_.GetWeakPtr());
#if defined(OS_WIN)
// Only enable upgrade notifications for official builds. Chromium has no
// upgrade channel.
#if defined(GOOGLE_CHROME_BUILD)
// On Windows, there might be a policy/enterprise environment preventing
// updates, so validate updatability, and then call StartTimerForUpgradeCheck
// appropriately. And don't check for autoupdate if we already attempted to
// enable it in the past.
bool attempted_enabling_autoupdate = g_browser_process->local_state() &&
g_browser_process->local_state()->GetBoolean(
prefs::kAttemptedToEnableAutoupdate);
BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
base::Bind(&DetectUpdatability,
start_upgrade_check_timer_task,
&is_unstable_channel_,
attempted_enabling_autoupdate ?
NULL : &is_auto_update_enabled_));
#endif
#else
#if defined(OS_MACOSX)
// Only enable upgrade notifications if the updater (Keystone) is present.
if (!keystone_glue::KeystoneEnabled()) {
is_auto_update_enabled_ = false;
return;
}
#elif defined(OS_POSIX)
// Always enable upgrade notifications regardless of branding.
#else
return;
#endif
// Check whether the build is an unstable channel before starting the timer.
BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
base::Bind(&CheckForUnstableChannel,
start_upgrade_check_timer_task,
&is_unstable_channel_));
#endif
}
UpgradeDetectorImpl::~UpgradeDetectorImpl() {
}
// static
base::Version UpgradeDetectorImpl::GetCurrentlyInstalledVersion() {
return GetCurrentlyInstalledVersionImpl(NULL);
}
// static
// This task checks the currently running version of Chrome against the
// installed version. If the installed version is newer, it calls back
// UpgradeDetectorImpl::UpgradeDetected using a weak pointer so that it can
// be interrupted from the UI thread.
void UpgradeDetectorImpl::DetectUpgradeTask(
base::WeakPtr<UpgradeDetectorImpl> upgrade_detector) {
DCHECK_CURRENTLY_ON(BrowserThread::FILE);
Version critical_update;
Version installed_version =
GetCurrentlyInstalledVersionImpl(&critical_update);
// Get the version of the currently *running* instance of Chrome.
Version running_version(version_info::GetVersionNumber());
if (!running_version.IsValid()) {
NOTREACHED();
return;
}
// |installed_version| may be NULL when the user downgrades on Linux (by
// switching from dev to beta channel, for example). The user needs a
// restart in this case as well. See http://crbug.com/46547
if (!installed_version.IsValid() ||
(installed_version.CompareTo(running_version) > 0)) {
// If a more recent version is available, it might be that we are lacking
// a critical update, such as a zero-day fix.
UpgradeAvailable upgrade_available = UPGRADE_AVAILABLE_REGULAR;
if (critical_update.IsValid() &&
critical_update.CompareTo(running_version) > 0) {
upgrade_available = UPGRADE_AVAILABLE_CRITICAL;
}
// Fire off the upgrade detected task.
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
base::Bind(&UpgradeDetectorImpl::UpgradeDetected,
upgrade_detector,
upgrade_available));
}
}
void UpgradeDetectorImpl::StartTimerForUpgradeCheck() {
detect_upgrade_timer_.Start(FROM_HERE,
base::TimeDelta::FromMilliseconds(GetCheckForUpgradeEveryMs()),
this, &UpgradeDetectorImpl::CheckForUpgrade);
}
void UpgradeDetectorImpl::StartUpgradeNotificationTimer() {
// The timer may already be running (e.g. due to both a software upgrade and
// experiment updates being available).
if (upgrade_notification_timer_.IsRunning())
return;
upgrade_detected_time_ = base::TimeTicks::Now();
// Start the repeating timer for notifying the user after a certain period.
// The called function will eventually figure out that enough time has passed
// and stop the timer.
const int cycle_time_ms = IsTesting() ?
kNotifyCycleTimeForTestingMs : kNotifyCycleTimeMs;
upgrade_notification_timer_.Start(FROM_HERE,
base::TimeDelta::FromMilliseconds(cycle_time_ms),
this, &UpgradeDetectorImpl::NotifyOnUpgrade);
}
void UpgradeDetectorImpl::CheckForUpgrade() {
// Interrupt any (unlikely) unfinished execution of DetectUpgradeTask, or at
// least prevent the callback from being executed, because we will potentially
// call it from within DetectOutdatedInstall() or will post
// DetectUpgradeTask again below anyway.
weak_factory_.InvalidateWeakPtrs();
// No need to look for upgrades if the install is outdated.
if (DetectOutdatedInstall())
return;
// We use FILE as the thread to run the upgrade detection code on all
// platforms. For Linux, this is because we don't want to block the UI thread
// while launching a background process and reading its output; on the Mac and
// on Windows checking for an upgrade requires reading a file.
BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
base::Bind(&UpgradeDetectorImpl::DetectUpgradeTask,
weak_factory_.GetWeakPtr()));
}
bool UpgradeDetectorImpl::DetectOutdatedInstall() {
// Don't show the bubble if we have a brand code that is NOT organic, unless
// an outdated build is being simulated by command line switches.
static bool simulate_outdated = SimulatingOutdated();
if (!simulate_outdated) {
std::string brand;
if (google_brand::GetBrand(&brand) && !google_brand::IsOrganic(brand))
return false;
#if defined(OS_WIN)
// Don't show the update bubbles to enterprise users (i.e., on a domain).
if (base::win::IsEnrolledToDomain())
return false;
#endif
}
base::Time network_time;
base::TimeDelta uncertainty;
if (!g_browser_process->network_time_tracker()->GetNetworkTime(
base::TimeTicks::Now(), &network_time, &uncertainty)) {
// When network time has not been initialized yet, simply rely on the
// machine's current time.
network_time = base::Time::Now();
}
if (network_time.is_null() || build_date_.is_null() ||
build_date_ > network_time) {
NOTREACHED();
return false;
}
if (network_time - build_date_ >
base::TimeDelta::FromDays(kOutdatedBuildAgeInDays)) {
UpgradeDetected(is_auto_update_enabled_ ?
UPGRADE_NEEDED_OUTDATED_INSTALL :
UPGRADE_NEEDED_OUTDATED_INSTALL_NO_AU);
return true;
}
// If we simlated an outdated install with a date, we don't want to keep
// checking for version upgrades, which happens on non-official builds.
return simulate_outdated;
}
void UpgradeDetectorImpl::OnExperimentChangesDetected(Severity severity) {
set_best_effort_experiment_updates_available(severity == BEST_EFFORT);
set_critical_experiment_updates_available(severity == CRITICAL);
StartUpgradeNotificationTimer();
}
void UpgradeDetectorImpl::UpgradeDetected(UpgradeAvailable upgrade_available) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
set_upgrade_available(upgrade_available);
// Stop the recurring timer (that is checking for changes).
detect_upgrade_timer_.Stop();
set_critical_update_acknowledged(false);
StartUpgradeNotificationTimer();
}
void UpgradeDetectorImpl::NotifyOnUpgradeWithTimePassed(
base::TimeDelta time_passed) {
const bool is_critical_or_outdated =
upgrade_available() > UPGRADE_AVAILABLE_REGULAR ||
critical_experiment_updates_available();
if (is_unstable_channel_) {
// There's only one threat level for unstable channels like dev and
// canary, and it hits after one hour. During testing, it hits after one
// second.
const base::TimeDelta unstable_threshold = IsTesting() ?
base::TimeDelta::FromSeconds(1) : base::TimeDelta::FromHours(1);
if (is_critical_or_outdated) {
set_upgrade_notification_stage(UPGRADE_ANNOYANCE_CRITICAL);
} else if (time_passed >= unstable_threshold) {
set_upgrade_notification_stage(UPGRADE_ANNOYANCE_LOW);
// That's as high as it goes.
upgrade_notification_timer_.Stop();
} else {
return; // Not ready to recommend upgrade.
}
} else {
const base::TimeDelta multiplier = IsTesting() ?
base::TimeDelta::FromSeconds(10) : base::TimeDelta::FromDays(1);
// 14 days when not testing, otherwise 140 seconds.
const base::TimeDelta severe_threshold = 14 * multiplier;
const base::TimeDelta high_threshold = 7 * multiplier;
const base::TimeDelta elevated_threshold = 4 * multiplier;
const base::TimeDelta low_threshold = 2 * multiplier;
// These if statements must be sorted (highest interval first).
if (time_passed >= severe_threshold || is_critical_or_outdated) {
set_upgrade_notification_stage(
is_critical_or_outdated ? UPGRADE_ANNOYANCE_CRITICAL :
UPGRADE_ANNOYANCE_SEVERE);
// We can't get any higher, baby.
upgrade_notification_timer_.Stop();
} else if (time_passed >= high_threshold) {
set_upgrade_notification_stage(UPGRADE_ANNOYANCE_HIGH);
} else if (time_passed >= elevated_threshold) {
set_upgrade_notification_stage(UPGRADE_ANNOYANCE_ELEVATED);
} else if (time_passed >= low_threshold) {
set_upgrade_notification_stage(UPGRADE_ANNOYANCE_LOW);
} else {
return; // Not ready to recommend upgrade.
}
}
NotifyUpgradeRecommended();
}
void UpgradeDetectorImpl::NotifyOnUpgrade() {
const base::TimeDelta time_passed =
base::TimeTicks::Now() - upgrade_detected_time_;
NotifyOnUpgradeWithTimePassed(time_passed);
}
// static
UpgradeDetectorImpl* UpgradeDetectorImpl::GetInstance() {
return base::Singleton<UpgradeDetectorImpl>::get();
}
// static
UpgradeDetector* UpgradeDetector::GetInstance() {
return UpgradeDetectorImpl::GetInstance();
}
| [
"zeno.albisser@hemispherian.com"
] | zeno.albisser@hemispherian.com |
b2ad24f66d1e82f529e8863f1efe320543dbbcce | 181b143c125e691d523d101e4cbb19fd11949ca7 | /apps/device/aes/kernels/app_aes_process_8.cpp | 92193634964c95e16974168c57ec134a1cb0d5fd | [
"MIT"
] | permissive | UCLA-VAST/EISC | 687bedde1bfdef939ed32c9a325582baf4ab74f3 | 6455dff287beddc82c5880309943b82bb9d8642d | refs/heads/master | 2020-09-29T07:57:48.316846 | 2019-12-07T05:59:06 | 2019-12-07T05:59:06 | 226,992,705 | 0 | 0 | MIT | 2019-12-10T00:10:42 | 2019-12-10T00:10:41 | null | UTF-8 | C++ | false | false | 2,324 | cpp | #include <insider_kernel.h>
#include "structure.h"
#include "subbytes.h"
#include "shiftrows.h"
#include "mixcols.h"
#include "addkeys.h"
void app_aes_process_8 (
ST_Queue<unsigned int> &app_aes_proc_8_params,
ST_Queue<unsigned int> &app_aes_end_params,
ST_Queue<APP_Data> &app_aes_proc_8_input_data,
ST_Queue<APP_Data> &app_aes_end_input_data) {
bool valid_param = false;
unsigned int input_param_num = 0;
Elem s_table[64][256];
#pragma HLS array_partition variable=s_table complete dim=1
#pragma HLS array_partition variable=s_table cyclic factor=4 dim=2
Matrix mix_table;
Matrix key_table;
while (1) {
#pragma HLS pipeline
unsigned int param;
APP_Data data_in;
APP_Data data_out;
if ((!valid_param) && app_aes_proc_8_params.read_nb(param)) {
// param for subbytes
if (input_param_num < 64) {
unsigned char idx = ((input_param_num) & 3);
unsigned char id = ((input_param_num) >> 2);
for (int i = 0; i < 64; i++) {
#pragma HLS unroll
s_table[i][16 * id + 4 * idx + 0] = (Elem) ((param >> 24) & 0xff);
s_table[i][16 * id + 4 * idx + 1] = (Elem) ((param >> 16) & 0xff);
s_table[i][16 * id + 4 * idx + 2] = (Elem) ((param >> 8) & 0xff);
s_table[i][16 * id + 4 * idx + 3] = (Elem) ((param >> 0) & 0xff);
}
// param for mixcols
} else if (input_param_num < 68) {
unsigned char idx = input_param_num - 64;
mix_table(32 * idx + 31, 32 * idx) = param;
// param for addkeys
} else if (input_param_num < 72) {
unsigned char idx = input_param_num - 68;
key_table(32 * idx + 31, 32 * idx) = param;
if (input_param_num == 72 - 1) valid_param = true;
}
input_param_num++;
app_aes_end_params.write(param);
} else if (valid_param && app_aes_proc_8_input_data.read_nb(data_in)) {
for (int i = 0; i < 4; i++) {
#pragma HLS unroll
Matrix data = data_in.data(128 * i + 127, 128 * i);
subbytes(data, s_table, i);
shiftrows(data);
mixcols(data, mix_table);
addkeys(data, key_table);
data_out.data(128 * i + 127, 128 * i) = data;
}
data_out.eop = data_in.eop;
data_out.len = 64;
app_aes_end_input_data.write(data_out);
}
}
}
| [
"zainryan95@gmail.com"
] | zainryan95@gmail.com |
91bfd7ef9de4df729936f36f744d88fd7fb14631 | c776476e9d06b3779d744641e758ac3a2c15cddc | /examples/litmus/c/run-scripts/tmp_1/IRRWIW+poacquireacquire+poonceonce+ReleaseOnce.c.cbmc_out.cpp | 2eda54160dcb20df2058d545ed9988328ec226b2 | [] | no_license | ashutosh0gupta/llvm_bmc | aaac7961c723ba6f7ffd77a39559e0e52432eade | 0287c4fb180244e6b3c599a9902507f05c8a7234 | refs/heads/master | 2023-08-02T17:14:06.178723 | 2023-07-31T10:46:53 | 2023-07-31T10:46:53 | 143,100,825 | 3 | 4 | null | 2023-05-25T05:50:55 | 2018-08-01T03:47:00 | C++ | UTF-8 | C++ | false | false | 48,932 | cpp | // 0:vars:2
// 7:thr2:1
// 2:atom_1_X0_2:1
// 3:atom_1_X2_0:1
// 4:atom_3_X0_1:1
// 5:thr0:1
// 6:thr1:1
// 8:thr3:1
#define ADDRSIZE 9
#define NPROC 5
#define NCONTEXT 1
#define ASSUME(stmt) __CPROVER_assume(stmt)
#define ASSERT(stmt) __CPROVER_assert(stmt, "error")
#define max(a,b) (a>b?a:b)
char __get_rng();
char get_rng( char from, char to ) {
char ret = __get_rng();
ASSUME(ret >= from && ret <= to);
return ret;
}
char get_rng_th( char from, char to ) {
char ret = __get_rng();
ASSUME(ret >= from && ret <= to);
return ret;
}
int main(int argc, char **argv) {
// declare arrays for intial value version in contexts
int meminit_[ADDRSIZE*NCONTEXT];
#define meminit(x,k) meminit_[(x)*NCONTEXT+k]
int coinit_[ADDRSIZE*NCONTEXT];
#define coinit(x,k) coinit_[(x)*NCONTEXT+k]
int deltainit_[ADDRSIZE*NCONTEXT];
#define deltainit(x,k) deltainit_[(x)*NCONTEXT+k]
// declare arrays for running value version in contexts
int mem_[ADDRSIZE*NCONTEXT];
#define mem(x,k) mem_[(x)*NCONTEXT+k]
int co_[ADDRSIZE*NCONTEXT];
#define co(x,k) co_[(x)*NCONTEXT+k]
int delta_[ADDRSIZE*NCONTEXT];
#define delta(x,k) delta_[(x)*NCONTEXT+k]
// declare arrays for local buffer and observed writes
int buff_[NPROC*ADDRSIZE];
#define buff(x,k) buff_[(x)*ADDRSIZE+k]
int pw_[NPROC*ADDRSIZE];
#define pw(x,k) pw_[(x)*ADDRSIZE+k]
// declare arrays for context stamps
char cr_[NPROC*ADDRSIZE];
#define cr(x,k) cr_[(x)*ADDRSIZE+k]
char iw_[NPROC*ADDRSIZE];
#define iw(x,k) iw_[(x)*ADDRSIZE+k]
char cw_[NPROC*ADDRSIZE];
#define cw(x,k) cw_[(x)*ADDRSIZE+k]
char cx_[NPROC*ADDRSIZE];
#define cx(x,k) cx_[(x)*ADDRSIZE+k]
char is_[NPROC*ADDRSIZE];
#define is(x,k) is_[(x)*ADDRSIZE+k]
char cs_[NPROC*ADDRSIZE];
#define cs(x,k) cs_[(x)*ADDRSIZE+k]
char crmax_[NPROC*ADDRSIZE];
#define crmax(x,k) crmax_[(x)*ADDRSIZE+k]
char sforbid_[ADDRSIZE*NCONTEXT];
#define sforbid(x,k) sforbid_[(x)*NCONTEXT+k]
// declare arrays for synchronizations
int cl[NPROC];
int cdy[NPROC];
int cds[NPROC];
int cdl[NPROC];
int cisb[NPROC];
int caddr[NPROC];
int cctrl[NPROC];
int cstart[NPROC];
int creturn[NPROC];
// declare arrays for contexts activity
int active[NCONTEXT];
int ctx_used[NCONTEXT];
int r0= 0;
char creg_r0;
int r1= 0;
char creg_r1;
int r2= 0;
char creg_r2;
int r3= 0;
char creg_r3;
int r4= 0;
char creg_r4;
int r5= 0;
char creg_r5;
int r6= 0;
char creg_r6;
int r7= 0;
char creg_r7;
int r8= 0;
char creg_r8;
int r9= 0;
char creg_r9;
int r10= 0;
char creg_r10;
int r11= 0;
char creg_r11;
int r12= 0;
char creg_r12;
int r13= 0;
char creg_r13;
int r14= 0;
char creg_r14;
int r15= 0;
char creg_r15;
char old_cctrl= 0;
char old_cr= 0;
char old_cdy= 0;
char old_cw= 0;
char new_creg= 0;
buff(0,0) = 0;
pw(0,0) = 0;
cr(0,0) = 0;
iw(0,0) = 0;
cw(0,0) = 0;
cx(0,0) = 0;
is(0,0) = 0;
cs(0,0) = 0;
crmax(0,0) = 0;
buff(0,1) = 0;
pw(0,1) = 0;
cr(0,1) = 0;
iw(0,1) = 0;
cw(0,1) = 0;
cx(0,1) = 0;
is(0,1) = 0;
cs(0,1) = 0;
crmax(0,1) = 0;
buff(0,2) = 0;
pw(0,2) = 0;
cr(0,2) = 0;
iw(0,2) = 0;
cw(0,2) = 0;
cx(0,2) = 0;
is(0,2) = 0;
cs(0,2) = 0;
crmax(0,2) = 0;
buff(0,3) = 0;
pw(0,3) = 0;
cr(0,3) = 0;
iw(0,3) = 0;
cw(0,3) = 0;
cx(0,3) = 0;
is(0,3) = 0;
cs(0,3) = 0;
crmax(0,3) = 0;
buff(0,4) = 0;
pw(0,4) = 0;
cr(0,4) = 0;
iw(0,4) = 0;
cw(0,4) = 0;
cx(0,4) = 0;
is(0,4) = 0;
cs(0,4) = 0;
crmax(0,4) = 0;
buff(0,5) = 0;
pw(0,5) = 0;
cr(0,5) = 0;
iw(0,5) = 0;
cw(0,5) = 0;
cx(0,5) = 0;
is(0,5) = 0;
cs(0,5) = 0;
crmax(0,5) = 0;
buff(0,6) = 0;
pw(0,6) = 0;
cr(0,6) = 0;
iw(0,6) = 0;
cw(0,6) = 0;
cx(0,6) = 0;
is(0,6) = 0;
cs(0,6) = 0;
crmax(0,6) = 0;
buff(0,7) = 0;
pw(0,7) = 0;
cr(0,7) = 0;
iw(0,7) = 0;
cw(0,7) = 0;
cx(0,7) = 0;
is(0,7) = 0;
cs(0,7) = 0;
crmax(0,7) = 0;
buff(0,8) = 0;
pw(0,8) = 0;
cr(0,8) = 0;
iw(0,8) = 0;
cw(0,8) = 0;
cx(0,8) = 0;
is(0,8) = 0;
cs(0,8) = 0;
crmax(0,8) = 0;
cl[0] = 0;
cdy[0] = 0;
cds[0] = 0;
cdl[0] = 0;
cisb[0] = 0;
caddr[0] = 0;
cctrl[0] = 0;
cstart[0] = get_rng(0,NCONTEXT-1);
creturn[0] = get_rng(0,NCONTEXT-1);
buff(1,0) = 0;
pw(1,0) = 0;
cr(1,0) = 0;
iw(1,0) = 0;
cw(1,0) = 0;
cx(1,0) = 0;
is(1,0) = 0;
cs(1,0) = 0;
crmax(1,0) = 0;
buff(1,1) = 0;
pw(1,1) = 0;
cr(1,1) = 0;
iw(1,1) = 0;
cw(1,1) = 0;
cx(1,1) = 0;
is(1,1) = 0;
cs(1,1) = 0;
crmax(1,1) = 0;
buff(1,2) = 0;
pw(1,2) = 0;
cr(1,2) = 0;
iw(1,2) = 0;
cw(1,2) = 0;
cx(1,2) = 0;
is(1,2) = 0;
cs(1,2) = 0;
crmax(1,2) = 0;
buff(1,3) = 0;
pw(1,3) = 0;
cr(1,3) = 0;
iw(1,3) = 0;
cw(1,3) = 0;
cx(1,3) = 0;
is(1,3) = 0;
cs(1,3) = 0;
crmax(1,3) = 0;
buff(1,4) = 0;
pw(1,4) = 0;
cr(1,4) = 0;
iw(1,4) = 0;
cw(1,4) = 0;
cx(1,4) = 0;
is(1,4) = 0;
cs(1,4) = 0;
crmax(1,4) = 0;
buff(1,5) = 0;
pw(1,5) = 0;
cr(1,5) = 0;
iw(1,5) = 0;
cw(1,5) = 0;
cx(1,5) = 0;
is(1,5) = 0;
cs(1,5) = 0;
crmax(1,5) = 0;
buff(1,6) = 0;
pw(1,6) = 0;
cr(1,6) = 0;
iw(1,6) = 0;
cw(1,6) = 0;
cx(1,6) = 0;
is(1,6) = 0;
cs(1,6) = 0;
crmax(1,6) = 0;
buff(1,7) = 0;
pw(1,7) = 0;
cr(1,7) = 0;
iw(1,7) = 0;
cw(1,7) = 0;
cx(1,7) = 0;
is(1,7) = 0;
cs(1,7) = 0;
crmax(1,7) = 0;
buff(1,8) = 0;
pw(1,8) = 0;
cr(1,8) = 0;
iw(1,8) = 0;
cw(1,8) = 0;
cx(1,8) = 0;
is(1,8) = 0;
cs(1,8) = 0;
crmax(1,8) = 0;
cl[1] = 0;
cdy[1] = 0;
cds[1] = 0;
cdl[1] = 0;
cisb[1] = 0;
caddr[1] = 0;
cctrl[1] = 0;
cstart[1] = get_rng(0,NCONTEXT-1);
creturn[1] = get_rng(0,NCONTEXT-1);
buff(2,0) = 0;
pw(2,0) = 0;
cr(2,0) = 0;
iw(2,0) = 0;
cw(2,0) = 0;
cx(2,0) = 0;
is(2,0) = 0;
cs(2,0) = 0;
crmax(2,0) = 0;
buff(2,1) = 0;
pw(2,1) = 0;
cr(2,1) = 0;
iw(2,1) = 0;
cw(2,1) = 0;
cx(2,1) = 0;
is(2,1) = 0;
cs(2,1) = 0;
crmax(2,1) = 0;
buff(2,2) = 0;
pw(2,2) = 0;
cr(2,2) = 0;
iw(2,2) = 0;
cw(2,2) = 0;
cx(2,2) = 0;
is(2,2) = 0;
cs(2,2) = 0;
crmax(2,2) = 0;
buff(2,3) = 0;
pw(2,3) = 0;
cr(2,3) = 0;
iw(2,3) = 0;
cw(2,3) = 0;
cx(2,3) = 0;
is(2,3) = 0;
cs(2,3) = 0;
crmax(2,3) = 0;
buff(2,4) = 0;
pw(2,4) = 0;
cr(2,4) = 0;
iw(2,4) = 0;
cw(2,4) = 0;
cx(2,4) = 0;
is(2,4) = 0;
cs(2,4) = 0;
crmax(2,4) = 0;
buff(2,5) = 0;
pw(2,5) = 0;
cr(2,5) = 0;
iw(2,5) = 0;
cw(2,5) = 0;
cx(2,5) = 0;
is(2,5) = 0;
cs(2,5) = 0;
crmax(2,5) = 0;
buff(2,6) = 0;
pw(2,6) = 0;
cr(2,6) = 0;
iw(2,6) = 0;
cw(2,6) = 0;
cx(2,6) = 0;
is(2,6) = 0;
cs(2,6) = 0;
crmax(2,6) = 0;
buff(2,7) = 0;
pw(2,7) = 0;
cr(2,7) = 0;
iw(2,7) = 0;
cw(2,7) = 0;
cx(2,7) = 0;
is(2,7) = 0;
cs(2,7) = 0;
crmax(2,7) = 0;
buff(2,8) = 0;
pw(2,8) = 0;
cr(2,8) = 0;
iw(2,8) = 0;
cw(2,8) = 0;
cx(2,8) = 0;
is(2,8) = 0;
cs(2,8) = 0;
crmax(2,8) = 0;
cl[2] = 0;
cdy[2] = 0;
cds[2] = 0;
cdl[2] = 0;
cisb[2] = 0;
caddr[2] = 0;
cctrl[2] = 0;
cstart[2] = get_rng(0,NCONTEXT-1);
creturn[2] = get_rng(0,NCONTEXT-1);
buff(3,0) = 0;
pw(3,0) = 0;
cr(3,0) = 0;
iw(3,0) = 0;
cw(3,0) = 0;
cx(3,0) = 0;
is(3,0) = 0;
cs(3,0) = 0;
crmax(3,0) = 0;
buff(3,1) = 0;
pw(3,1) = 0;
cr(3,1) = 0;
iw(3,1) = 0;
cw(3,1) = 0;
cx(3,1) = 0;
is(3,1) = 0;
cs(3,1) = 0;
crmax(3,1) = 0;
buff(3,2) = 0;
pw(3,2) = 0;
cr(3,2) = 0;
iw(3,2) = 0;
cw(3,2) = 0;
cx(3,2) = 0;
is(3,2) = 0;
cs(3,2) = 0;
crmax(3,2) = 0;
buff(3,3) = 0;
pw(3,3) = 0;
cr(3,3) = 0;
iw(3,3) = 0;
cw(3,3) = 0;
cx(3,3) = 0;
is(3,3) = 0;
cs(3,3) = 0;
crmax(3,3) = 0;
buff(3,4) = 0;
pw(3,4) = 0;
cr(3,4) = 0;
iw(3,4) = 0;
cw(3,4) = 0;
cx(3,4) = 0;
is(3,4) = 0;
cs(3,4) = 0;
crmax(3,4) = 0;
buff(3,5) = 0;
pw(3,5) = 0;
cr(3,5) = 0;
iw(3,5) = 0;
cw(3,5) = 0;
cx(3,5) = 0;
is(3,5) = 0;
cs(3,5) = 0;
crmax(3,5) = 0;
buff(3,6) = 0;
pw(3,6) = 0;
cr(3,6) = 0;
iw(3,6) = 0;
cw(3,6) = 0;
cx(3,6) = 0;
is(3,6) = 0;
cs(3,6) = 0;
crmax(3,6) = 0;
buff(3,7) = 0;
pw(3,7) = 0;
cr(3,7) = 0;
iw(3,7) = 0;
cw(3,7) = 0;
cx(3,7) = 0;
is(3,7) = 0;
cs(3,7) = 0;
crmax(3,7) = 0;
buff(3,8) = 0;
pw(3,8) = 0;
cr(3,8) = 0;
iw(3,8) = 0;
cw(3,8) = 0;
cx(3,8) = 0;
is(3,8) = 0;
cs(3,8) = 0;
crmax(3,8) = 0;
cl[3] = 0;
cdy[3] = 0;
cds[3] = 0;
cdl[3] = 0;
cisb[3] = 0;
caddr[3] = 0;
cctrl[3] = 0;
cstart[3] = get_rng(0,NCONTEXT-1);
creturn[3] = get_rng(0,NCONTEXT-1);
buff(4,0) = 0;
pw(4,0) = 0;
cr(4,0) = 0;
iw(4,0) = 0;
cw(4,0) = 0;
cx(4,0) = 0;
is(4,0) = 0;
cs(4,0) = 0;
crmax(4,0) = 0;
buff(4,1) = 0;
pw(4,1) = 0;
cr(4,1) = 0;
iw(4,1) = 0;
cw(4,1) = 0;
cx(4,1) = 0;
is(4,1) = 0;
cs(4,1) = 0;
crmax(4,1) = 0;
buff(4,2) = 0;
pw(4,2) = 0;
cr(4,2) = 0;
iw(4,2) = 0;
cw(4,2) = 0;
cx(4,2) = 0;
is(4,2) = 0;
cs(4,2) = 0;
crmax(4,2) = 0;
buff(4,3) = 0;
pw(4,3) = 0;
cr(4,3) = 0;
iw(4,3) = 0;
cw(4,3) = 0;
cx(4,3) = 0;
is(4,3) = 0;
cs(4,3) = 0;
crmax(4,3) = 0;
buff(4,4) = 0;
pw(4,4) = 0;
cr(4,4) = 0;
iw(4,4) = 0;
cw(4,4) = 0;
cx(4,4) = 0;
is(4,4) = 0;
cs(4,4) = 0;
crmax(4,4) = 0;
buff(4,5) = 0;
pw(4,5) = 0;
cr(4,5) = 0;
iw(4,5) = 0;
cw(4,5) = 0;
cx(4,5) = 0;
is(4,5) = 0;
cs(4,5) = 0;
crmax(4,5) = 0;
buff(4,6) = 0;
pw(4,6) = 0;
cr(4,6) = 0;
iw(4,6) = 0;
cw(4,6) = 0;
cx(4,6) = 0;
is(4,6) = 0;
cs(4,6) = 0;
crmax(4,6) = 0;
buff(4,7) = 0;
pw(4,7) = 0;
cr(4,7) = 0;
iw(4,7) = 0;
cw(4,7) = 0;
cx(4,7) = 0;
is(4,7) = 0;
cs(4,7) = 0;
crmax(4,7) = 0;
buff(4,8) = 0;
pw(4,8) = 0;
cr(4,8) = 0;
iw(4,8) = 0;
cw(4,8) = 0;
cx(4,8) = 0;
is(4,8) = 0;
cs(4,8) = 0;
crmax(4,8) = 0;
cl[4] = 0;
cdy[4] = 0;
cds[4] = 0;
cdl[4] = 0;
cisb[4] = 0;
caddr[4] = 0;
cctrl[4] = 0;
cstart[4] = get_rng(0,NCONTEXT-1);
creturn[4] = get_rng(0,NCONTEXT-1);
// Dumping initializations
mem(0+0,0) = 0;
mem(0+1,0) = 0;
mem(7+0,0) = 0;
mem(2+0,0) = 0;
mem(3+0,0) = 0;
mem(4+0,0) = 0;
mem(5+0,0) = 0;
mem(6+0,0) = 0;
mem(8+0,0) = 0;
// Dumping context matching equalities
co(0,0) = 0;
delta(0,0) = -1;
co(1,0) = 0;
delta(1,0) = -1;
co(2,0) = 0;
delta(2,0) = -1;
co(3,0) = 0;
delta(3,0) = -1;
co(4,0) = 0;
delta(4,0) = -1;
co(5,0) = 0;
delta(5,0) = -1;
co(6,0) = 0;
delta(6,0) = -1;
co(7,0) = 0;
delta(7,0) = -1;
co(8,0) = 0;
delta(8,0) = -1;
// Dumping thread 1
int ret_thread_1 = 0;
cdy[1] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[1] >= cstart[1]);
T1BLOCK0:
// call void @llvm.dbg.value(metadata i8* %arg, metadata !37, metadata !DIExpression()), !dbg !43
// br label %label_1, !dbg !44
goto T1BLOCK1;
T1BLOCK1:
// call void @llvm.dbg.label(metadata !42), !dbg !45
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0), metadata !38, metadata !DIExpression()), !dbg !46
// call void @llvm.dbg.value(metadata i64 2, metadata !41, metadata !DIExpression()), !dbg !46
// store atomic i64 2, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0) release, align 8, !dbg !47
// ST: Guess
// : Release
iw(1,0) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STIW
old_cw = cw(1,0);
cw(1,0) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STCOM
// Check
ASSUME(active[iw(1,0)] == 1);
ASSUME(active[cw(1,0)] == 1);
ASSUME(sforbid(0,cw(1,0))== 0);
ASSUME(iw(1,0) >= 0);
ASSUME(iw(1,0) >= 0);
ASSUME(cw(1,0) >= iw(1,0));
ASSUME(cw(1,0) >= old_cw);
ASSUME(cw(1,0) >= cr(1,0));
ASSUME(cw(1,0) >= cl[1]);
ASSUME(cw(1,0) >= cisb[1]);
ASSUME(cw(1,0) >= cdy[1]);
ASSUME(cw(1,0) >= cdl[1]);
ASSUME(cw(1,0) >= cds[1]);
ASSUME(cw(1,0) >= cctrl[1]);
ASSUME(cw(1,0) >= caddr[1]);
ASSUME(cw(1,0) >= cr(1,0+0));
ASSUME(cw(1,0) >= cr(1,0+1));
ASSUME(cw(1,0) >= cr(1,7+0));
ASSUME(cw(1,0) >= cr(1,2+0));
ASSUME(cw(1,0) >= cr(1,3+0));
ASSUME(cw(1,0) >= cr(1,4+0));
ASSUME(cw(1,0) >= cr(1,5+0));
ASSUME(cw(1,0) >= cr(1,6+0));
ASSUME(cw(1,0) >= cr(1,8+0));
ASSUME(cw(1,0) >= cw(1,0+0));
ASSUME(cw(1,0) >= cw(1,0+1));
ASSUME(cw(1,0) >= cw(1,7+0));
ASSUME(cw(1,0) >= cw(1,2+0));
ASSUME(cw(1,0) >= cw(1,3+0));
ASSUME(cw(1,0) >= cw(1,4+0));
ASSUME(cw(1,0) >= cw(1,5+0));
ASSUME(cw(1,0) >= cw(1,6+0));
ASSUME(cw(1,0) >= cw(1,8+0));
// Update
caddr[1] = max(caddr[1],0);
buff(1,0) = 2;
mem(0,cw(1,0)) = 2;
co(0,cw(1,0))+=1;
delta(0,cw(1,0)) = -1;
is(1,0) = iw(1,0);
cs(1,0) = cw(1,0);
ASSUME(creturn[1] >= cw(1,0));
// ret i8* null, !dbg !48
ret_thread_1 = (- 1);
// Dumping thread 2
int ret_thread_2 = 0;
cdy[2] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[2] >= cstart[2]);
T2BLOCK0:
// call void @llvm.dbg.value(metadata i8* %arg, metadata !51, metadata !DIExpression()), !dbg !70
// br label %label_2, !dbg !58
goto T2BLOCK1;
T2BLOCK1:
// call void @llvm.dbg.label(metadata !69), !dbg !72
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0), metadata !54, metadata !DIExpression()), !dbg !73
// %0 = load atomic i64, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0) acquire, align 8, !dbg !61
// LD: Guess
// : Acquire
old_cr = cr(2,0);
cr(2,0) = get_rng(0,NCONTEXT-1);// 2 ASSIGN LDCOM
// Check
ASSUME(active[cr(2,0)] == 2);
ASSUME(cr(2,0) >= iw(2,0));
ASSUME(cr(2,0) >= 0);
ASSUME(cr(2,0) >= cdy[2]);
ASSUME(cr(2,0) >= cisb[2]);
ASSUME(cr(2,0) >= cdl[2]);
ASSUME(cr(2,0) >= cl[2]);
ASSUME(cr(2,0) >= cx(2,0));
ASSUME(cr(2,0) >= cs(2,0+0));
ASSUME(cr(2,0) >= cs(2,0+1));
ASSUME(cr(2,0) >= cs(2,7+0));
ASSUME(cr(2,0) >= cs(2,2+0));
ASSUME(cr(2,0) >= cs(2,3+0));
ASSUME(cr(2,0) >= cs(2,4+0));
ASSUME(cr(2,0) >= cs(2,5+0));
ASSUME(cr(2,0) >= cs(2,6+0));
ASSUME(cr(2,0) >= cs(2,8+0));
// Update
creg_r0 = cr(2,0);
crmax(2,0) = max(crmax(2,0),cr(2,0));
caddr[2] = max(caddr[2],0);
if(cr(2,0) < cw(2,0)) {
r0 = buff(2,0);
} else {
if(pw(2,0) != co(0,cr(2,0))) {
ASSUME(cr(2,0) >= old_cr);
}
pw(2,0) = co(0,cr(2,0));
r0 = mem(0,cr(2,0));
}
cl[2] = max(cl[2],cr(2,0));
ASSUME(creturn[2] >= cr(2,0));
// call void @llvm.dbg.value(metadata i64 %0, metadata !56, metadata !DIExpression()), !dbg !73
// %conv = trunc i64 %0 to i32, !dbg !62
// call void @llvm.dbg.value(metadata i32 %conv, metadata !52, metadata !DIExpression()), !dbg !70
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1), metadata !58, metadata !DIExpression()), !dbg !76
// %1 = load atomic i64, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1) acquire, align 8, !dbg !64
// LD: Guess
// : Acquire
old_cr = cr(2,0+1*1);
cr(2,0+1*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN LDCOM
// Check
ASSUME(active[cr(2,0+1*1)] == 2);
ASSUME(cr(2,0+1*1) >= iw(2,0+1*1));
ASSUME(cr(2,0+1*1) >= 0);
ASSUME(cr(2,0+1*1) >= cdy[2]);
ASSUME(cr(2,0+1*1) >= cisb[2]);
ASSUME(cr(2,0+1*1) >= cdl[2]);
ASSUME(cr(2,0+1*1) >= cl[2]);
ASSUME(cr(2,0+1*1) >= cx(2,0+1*1));
ASSUME(cr(2,0+1*1) >= cs(2,0+0));
ASSUME(cr(2,0+1*1) >= cs(2,0+1));
ASSUME(cr(2,0+1*1) >= cs(2,7+0));
ASSUME(cr(2,0+1*1) >= cs(2,2+0));
ASSUME(cr(2,0+1*1) >= cs(2,3+0));
ASSUME(cr(2,0+1*1) >= cs(2,4+0));
ASSUME(cr(2,0+1*1) >= cs(2,5+0));
ASSUME(cr(2,0+1*1) >= cs(2,6+0));
ASSUME(cr(2,0+1*1) >= cs(2,8+0));
// Update
creg_r1 = cr(2,0+1*1);
crmax(2,0+1*1) = max(crmax(2,0+1*1),cr(2,0+1*1));
caddr[2] = max(caddr[2],0);
if(cr(2,0+1*1) < cw(2,0+1*1)) {
r1 = buff(2,0+1*1);
} else {
if(pw(2,0+1*1) != co(0+1*1,cr(2,0+1*1))) {
ASSUME(cr(2,0+1*1) >= old_cr);
}
pw(2,0+1*1) = co(0+1*1,cr(2,0+1*1));
r1 = mem(0+1*1,cr(2,0+1*1));
}
cl[2] = max(cl[2],cr(2,0+1*1));
ASSUME(creturn[2] >= cr(2,0+1*1));
// call void @llvm.dbg.value(metadata i64 %1, metadata !60, metadata !DIExpression()), !dbg !76
// %conv4 = trunc i64 %1 to i32, !dbg !65
// call void @llvm.dbg.value(metadata i32 %conv4, metadata !57, metadata !DIExpression()), !dbg !70
// %cmp = icmp eq i32 %conv, 2, !dbg !66
// %conv5 = zext i1 %cmp to i32, !dbg !66
// call void @llvm.dbg.value(metadata i32 %conv5, metadata !61, metadata !DIExpression()), !dbg !70
// call void @llvm.dbg.value(metadata i64* @atom_1_X0_2, metadata !62, metadata !DIExpression()), !dbg !80
// %2 = zext i32 %conv5 to i64
// call void @llvm.dbg.value(metadata i64 %2, metadata !64, metadata !DIExpression()), !dbg !80
// store atomic i64 %2, i64* @atom_1_X0_2 seq_cst, align 8, !dbg !68
// ST: Guess
iw(2,2) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW
old_cw = cw(2,2);
cw(2,2) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM
// Check
ASSUME(active[iw(2,2)] == 2);
ASSUME(active[cw(2,2)] == 2);
ASSUME(sforbid(2,cw(2,2))== 0);
ASSUME(iw(2,2) >= max(creg_r0,0));
ASSUME(iw(2,2) >= 0);
ASSUME(cw(2,2) >= iw(2,2));
ASSUME(cw(2,2) >= old_cw);
ASSUME(cw(2,2) >= cr(2,2));
ASSUME(cw(2,2) >= cl[2]);
ASSUME(cw(2,2) >= cisb[2]);
ASSUME(cw(2,2) >= cdy[2]);
ASSUME(cw(2,2) >= cdl[2]);
ASSUME(cw(2,2) >= cds[2]);
ASSUME(cw(2,2) >= cctrl[2]);
ASSUME(cw(2,2) >= caddr[2]);
// Update
caddr[2] = max(caddr[2],0);
buff(2,2) = (r0==2);
mem(2,cw(2,2)) = (r0==2);
co(2,cw(2,2))+=1;
delta(2,cw(2,2)) = -1;
ASSUME(creturn[2] >= cw(2,2));
// %cmp7 = icmp eq i32 %conv4, 0, !dbg !69
// %conv8 = zext i1 %cmp7 to i32, !dbg !69
// call void @llvm.dbg.value(metadata i32 %conv8, metadata !65, metadata !DIExpression()), !dbg !70
// call void @llvm.dbg.value(metadata i64* @atom_1_X2_0, metadata !66, metadata !DIExpression()), !dbg !83
// %3 = zext i32 %conv8 to i64
// call void @llvm.dbg.value(metadata i64 %3, metadata !68, metadata !DIExpression()), !dbg !83
// store atomic i64 %3, i64* @atom_1_X2_0 seq_cst, align 8, !dbg !71
// ST: Guess
iw(2,3) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW
old_cw = cw(2,3);
cw(2,3) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM
// Check
ASSUME(active[iw(2,3)] == 2);
ASSUME(active[cw(2,3)] == 2);
ASSUME(sforbid(3,cw(2,3))== 0);
ASSUME(iw(2,3) >= max(creg_r1,0));
ASSUME(iw(2,3) >= 0);
ASSUME(cw(2,3) >= iw(2,3));
ASSUME(cw(2,3) >= old_cw);
ASSUME(cw(2,3) >= cr(2,3));
ASSUME(cw(2,3) >= cl[2]);
ASSUME(cw(2,3) >= cisb[2]);
ASSUME(cw(2,3) >= cdy[2]);
ASSUME(cw(2,3) >= cdl[2]);
ASSUME(cw(2,3) >= cds[2]);
ASSUME(cw(2,3) >= cctrl[2]);
ASSUME(cw(2,3) >= caddr[2]);
// Update
caddr[2] = max(caddr[2],0);
buff(2,3) = (r1==0);
mem(3,cw(2,3)) = (r1==0);
co(3,cw(2,3))+=1;
delta(3,cw(2,3)) = -1;
ASSUME(creturn[2] >= cw(2,3));
// ret i8* null, !dbg !72
ret_thread_2 = (- 1);
// Dumping thread 3
int ret_thread_3 = 0;
cdy[3] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[3] >= cstart[3]);
T3BLOCK0:
// call void @llvm.dbg.value(metadata i8* %arg, metadata !88, metadata !DIExpression()), !dbg !93
// br label %label_3, !dbg !44
goto T3BLOCK1;
T3BLOCK1:
// call void @llvm.dbg.label(metadata !92), !dbg !95
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1), metadata !89, metadata !DIExpression()), !dbg !96
// call void @llvm.dbg.value(metadata i64 1, metadata !91, metadata !DIExpression()), !dbg !96
// store atomic i64 1, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !47
// ST: Guess
iw(3,0+1*1) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STIW
old_cw = cw(3,0+1*1);
cw(3,0+1*1) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STCOM
// Check
ASSUME(active[iw(3,0+1*1)] == 3);
ASSUME(active[cw(3,0+1*1)] == 3);
ASSUME(sforbid(0+1*1,cw(3,0+1*1))== 0);
ASSUME(iw(3,0+1*1) >= 0);
ASSUME(iw(3,0+1*1) >= 0);
ASSUME(cw(3,0+1*1) >= iw(3,0+1*1));
ASSUME(cw(3,0+1*1) >= old_cw);
ASSUME(cw(3,0+1*1) >= cr(3,0+1*1));
ASSUME(cw(3,0+1*1) >= cl[3]);
ASSUME(cw(3,0+1*1) >= cisb[3]);
ASSUME(cw(3,0+1*1) >= cdy[3]);
ASSUME(cw(3,0+1*1) >= cdl[3]);
ASSUME(cw(3,0+1*1) >= cds[3]);
ASSUME(cw(3,0+1*1) >= cctrl[3]);
ASSUME(cw(3,0+1*1) >= caddr[3]);
// Update
caddr[3] = max(caddr[3],0);
buff(3,0+1*1) = 1;
mem(0+1*1,cw(3,0+1*1)) = 1;
co(0+1*1,cw(3,0+1*1))+=1;
delta(0+1*1,cw(3,0+1*1)) = -1;
ASSUME(creturn[3] >= cw(3,0+1*1));
// ret i8* null, !dbg !48
ret_thread_3 = (- 1);
// Dumping thread 4
int ret_thread_4 = 0;
cdy[4] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[4] >= cstart[4]);
T4BLOCK0:
// call void @llvm.dbg.value(metadata i8* %arg, metadata !101, metadata !DIExpression()), !dbg !114
// br label %label_4, !dbg !53
goto T4BLOCK1;
T4BLOCK1:
// call void @llvm.dbg.label(metadata !113), !dbg !116
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1), metadata !103, metadata !DIExpression()), !dbg !117
// %0 = load atomic i64, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !56
// LD: Guess
old_cr = cr(4,0+1*1);
cr(4,0+1*1) = get_rng(0,NCONTEXT-1);// 4 ASSIGN LDCOM
// Check
ASSUME(active[cr(4,0+1*1)] == 4);
ASSUME(cr(4,0+1*1) >= iw(4,0+1*1));
ASSUME(cr(4,0+1*1) >= 0);
ASSUME(cr(4,0+1*1) >= cdy[4]);
ASSUME(cr(4,0+1*1) >= cisb[4]);
ASSUME(cr(4,0+1*1) >= cdl[4]);
ASSUME(cr(4,0+1*1) >= cl[4]);
// Update
creg_r2 = cr(4,0+1*1);
crmax(4,0+1*1) = max(crmax(4,0+1*1),cr(4,0+1*1));
caddr[4] = max(caddr[4],0);
if(cr(4,0+1*1) < cw(4,0+1*1)) {
r2 = buff(4,0+1*1);
} else {
if(pw(4,0+1*1) != co(0+1*1,cr(4,0+1*1))) {
ASSUME(cr(4,0+1*1) >= old_cr);
}
pw(4,0+1*1) = co(0+1*1,cr(4,0+1*1));
r2 = mem(0+1*1,cr(4,0+1*1));
}
ASSUME(creturn[4] >= cr(4,0+1*1));
// call void @llvm.dbg.value(metadata i64 %0, metadata !105, metadata !DIExpression()), !dbg !117
// %conv = trunc i64 %0 to i32, !dbg !57
// call void @llvm.dbg.value(metadata i32 %conv, metadata !102, metadata !DIExpression()), !dbg !114
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0), metadata !106, metadata !DIExpression()), !dbg !120
// call void @llvm.dbg.value(metadata i64 1, metadata !108, metadata !DIExpression()), !dbg !120
// store atomic i64 1, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !59
// ST: Guess
iw(4,0) = get_rng(0,NCONTEXT-1);// 4 ASSIGN STIW
old_cw = cw(4,0);
cw(4,0) = get_rng(0,NCONTEXT-1);// 4 ASSIGN STCOM
// Check
ASSUME(active[iw(4,0)] == 4);
ASSUME(active[cw(4,0)] == 4);
ASSUME(sforbid(0,cw(4,0))== 0);
ASSUME(iw(4,0) >= 0);
ASSUME(iw(4,0) >= 0);
ASSUME(cw(4,0) >= iw(4,0));
ASSUME(cw(4,0) >= old_cw);
ASSUME(cw(4,0) >= cr(4,0));
ASSUME(cw(4,0) >= cl[4]);
ASSUME(cw(4,0) >= cisb[4]);
ASSUME(cw(4,0) >= cdy[4]);
ASSUME(cw(4,0) >= cdl[4]);
ASSUME(cw(4,0) >= cds[4]);
ASSUME(cw(4,0) >= cctrl[4]);
ASSUME(cw(4,0) >= caddr[4]);
// Update
caddr[4] = max(caddr[4],0);
buff(4,0) = 1;
mem(0,cw(4,0)) = 1;
co(0,cw(4,0))+=1;
delta(0,cw(4,0)) = -1;
ASSUME(creturn[4] >= cw(4,0));
// %cmp = icmp eq i32 %conv, 1, !dbg !60
// %conv1 = zext i1 %cmp to i32, !dbg !60
// call void @llvm.dbg.value(metadata i32 %conv1, metadata !109, metadata !DIExpression()), !dbg !114
// call void @llvm.dbg.value(metadata i64* @atom_3_X0_1, metadata !110, metadata !DIExpression()), !dbg !123
// %1 = zext i32 %conv1 to i64
// call void @llvm.dbg.value(metadata i64 %1, metadata !112, metadata !DIExpression()), !dbg !123
// store atomic i64 %1, i64* @atom_3_X0_1 seq_cst, align 8, !dbg !62
// ST: Guess
iw(4,4) = get_rng(0,NCONTEXT-1);// 4 ASSIGN STIW
old_cw = cw(4,4);
cw(4,4) = get_rng(0,NCONTEXT-1);// 4 ASSIGN STCOM
// Check
ASSUME(active[iw(4,4)] == 4);
ASSUME(active[cw(4,4)] == 4);
ASSUME(sforbid(4,cw(4,4))== 0);
ASSUME(iw(4,4) >= max(creg_r2,0));
ASSUME(iw(4,4) >= 0);
ASSUME(cw(4,4) >= iw(4,4));
ASSUME(cw(4,4) >= old_cw);
ASSUME(cw(4,4) >= cr(4,4));
ASSUME(cw(4,4) >= cl[4]);
ASSUME(cw(4,4) >= cisb[4]);
ASSUME(cw(4,4) >= cdy[4]);
ASSUME(cw(4,4) >= cdl[4]);
ASSUME(cw(4,4) >= cds[4]);
ASSUME(cw(4,4) >= cctrl[4]);
ASSUME(cw(4,4) >= caddr[4]);
// Update
caddr[4] = max(caddr[4],0);
buff(4,4) = (r2==1);
mem(4,cw(4,4)) = (r2==1);
co(4,cw(4,4))+=1;
delta(4,cw(4,4)) = -1;
ASSUME(creturn[4] >= cw(4,4));
// ret i8* null, !dbg !63
ret_thread_4 = (- 1);
// Dumping thread 0
int ret_thread_0 = 0;
cdy[0] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[0] >= cstart[0]);
T0BLOCK0:
// %thr0 = alloca i64, align 8
// %thr1 = alloca i64, align 8
// %thr2 = alloca i64, align 8
// %thr3 = alloca i64, align 8
// call void @llvm.dbg.value(metadata i32 %argc, metadata !133, metadata !DIExpression()), !dbg !177
// call void @llvm.dbg.value(metadata i8** %argv, metadata !134, metadata !DIExpression()), !dbg !177
// %0 = bitcast i64* %thr0 to i8*, !dbg !87
// call void @llvm.lifetime.start.p0i8(i64 8, i8* %0) #7, !dbg !87
// call void @llvm.dbg.declare(metadata i64* %thr0, metadata !135, metadata !DIExpression()), !dbg !179
// %1 = bitcast i64* %thr1 to i8*, !dbg !89
// call void @llvm.lifetime.start.p0i8(i64 8, i8* %1) #7, !dbg !89
// call void @llvm.dbg.declare(metadata i64* %thr1, metadata !139, metadata !DIExpression()), !dbg !181
// %2 = bitcast i64* %thr2 to i8*, !dbg !91
// call void @llvm.lifetime.start.p0i8(i64 8, i8* %2) #7, !dbg !91
// call void @llvm.dbg.declare(metadata i64* %thr2, metadata !140, metadata !DIExpression()), !dbg !183
// %3 = bitcast i64* %thr3 to i8*, !dbg !93
// call void @llvm.lifetime.start.p0i8(i64 8, i8* %3) #7, !dbg !93
// call void @llvm.dbg.declare(metadata i64* %thr3, metadata !141, metadata !DIExpression()), !dbg !185
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1), metadata !142, metadata !DIExpression()), !dbg !186
// call void @llvm.dbg.value(metadata i64 0, metadata !144, metadata !DIExpression()), !dbg !186
// store atomic i64 0, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !96
// ST: Guess
iw(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW
old_cw = cw(0,0+1*1);
cw(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM
// Check
ASSUME(active[iw(0,0+1*1)] == 0);
ASSUME(active[cw(0,0+1*1)] == 0);
ASSUME(sforbid(0+1*1,cw(0,0+1*1))== 0);
ASSUME(iw(0,0+1*1) >= 0);
ASSUME(iw(0,0+1*1) >= 0);
ASSUME(cw(0,0+1*1) >= iw(0,0+1*1));
ASSUME(cw(0,0+1*1) >= old_cw);
ASSUME(cw(0,0+1*1) >= cr(0,0+1*1));
ASSUME(cw(0,0+1*1) >= cl[0]);
ASSUME(cw(0,0+1*1) >= cisb[0]);
ASSUME(cw(0,0+1*1) >= cdy[0]);
ASSUME(cw(0,0+1*1) >= cdl[0]);
ASSUME(cw(0,0+1*1) >= cds[0]);
ASSUME(cw(0,0+1*1) >= cctrl[0]);
ASSUME(cw(0,0+1*1) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,0+1*1) = 0;
mem(0+1*1,cw(0,0+1*1)) = 0;
co(0+1*1,cw(0,0+1*1))+=1;
delta(0+1*1,cw(0,0+1*1)) = -1;
ASSUME(creturn[0] >= cw(0,0+1*1));
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0), metadata !145, metadata !DIExpression()), !dbg !188
// call void @llvm.dbg.value(metadata i64 0, metadata !147, metadata !DIExpression()), !dbg !188
// store atomic i64 0, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !98
// ST: Guess
iw(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW
old_cw = cw(0,0);
cw(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM
// Check
ASSUME(active[iw(0,0)] == 0);
ASSUME(active[cw(0,0)] == 0);
ASSUME(sforbid(0,cw(0,0))== 0);
ASSUME(iw(0,0) >= 0);
ASSUME(iw(0,0) >= 0);
ASSUME(cw(0,0) >= iw(0,0));
ASSUME(cw(0,0) >= old_cw);
ASSUME(cw(0,0) >= cr(0,0));
ASSUME(cw(0,0) >= cl[0]);
ASSUME(cw(0,0) >= cisb[0]);
ASSUME(cw(0,0) >= cdy[0]);
ASSUME(cw(0,0) >= cdl[0]);
ASSUME(cw(0,0) >= cds[0]);
ASSUME(cw(0,0) >= cctrl[0]);
ASSUME(cw(0,0) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,0) = 0;
mem(0,cw(0,0)) = 0;
co(0,cw(0,0))+=1;
delta(0,cw(0,0)) = -1;
ASSUME(creturn[0] >= cw(0,0));
// call void @llvm.dbg.value(metadata i64* @atom_1_X0_2, metadata !148, metadata !DIExpression()), !dbg !190
// call void @llvm.dbg.value(metadata i64 0, metadata !150, metadata !DIExpression()), !dbg !190
// store atomic i64 0, i64* @atom_1_X0_2 monotonic, align 8, !dbg !100
// ST: Guess
iw(0,2) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW
old_cw = cw(0,2);
cw(0,2) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM
// Check
ASSUME(active[iw(0,2)] == 0);
ASSUME(active[cw(0,2)] == 0);
ASSUME(sforbid(2,cw(0,2))== 0);
ASSUME(iw(0,2) >= 0);
ASSUME(iw(0,2) >= 0);
ASSUME(cw(0,2) >= iw(0,2));
ASSUME(cw(0,2) >= old_cw);
ASSUME(cw(0,2) >= cr(0,2));
ASSUME(cw(0,2) >= cl[0]);
ASSUME(cw(0,2) >= cisb[0]);
ASSUME(cw(0,2) >= cdy[0]);
ASSUME(cw(0,2) >= cdl[0]);
ASSUME(cw(0,2) >= cds[0]);
ASSUME(cw(0,2) >= cctrl[0]);
ASSUME(cw(0,2) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,2) = 0;
mem(2,cw(0,2)) = 0;
co(2,cw(0,2))+=1;
delta(2,cw(0,2)) = -1;
ASSUME(creturn[0] >= cw(0,2));
// call void @llvm.dbg.value(metadata i64* @atom_1_X2_0, metadata !151, metadata !DIExpression()), !dbg !192
// call void @llvm.dbg.value(metadata i64 0, metadata !153, metadata !DIExpression()), !dbg !192
// store atomic i64 0, i64* @atom_1_X2_0 monotonic, align 8, !dbg !102
// ST: Guess
iw(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW
old_cw = cw(0,3);
cw(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM
// Check
ASSUME(active[iw(0,3)] == 0);
ASSUME(active[cw(0,3)] == 0);
ASSUME(sforbid(3,cw(0,3))== 0);
ASSUME(iw(0,3) >= 0);
ASSUME(iw(0,3) >= 0);
ASSUME(cw(0,3) >= iw(0,3));
ASSUME(cw(0,3) >= old_cw);
ASSUME(cw(0,3) >= cr(0,3));
ASSUME(cw(0,3) >= cl[0]);
ASSUME(cw(0,3) >= cisb[0]);
ASSUME(cw(0,3) >= cdy[0]);
ASSUME(cw(0,3) >= cdl[0]);
ASSUME(cw(0,3) >= cds[0]);
ASSUME(cw(0,3) >= cctrl[0]);
ASSUME(cw(0,3) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,3) = 0;
mem(3,cw(0,3)) = 0;
co(3,cw(0,3))+=1;
delta(3,cw(0,3)) = -1;
ASSUME(creturn[0] >= cw(0,3));
// call void @llvm.dbg.value(metadata i64* @atom_3_X0_1, metadata !154, metadata !DIExpression()), !dbg !194
// call void @llvm.dbg.value(metadata i64 0, metadata !156, metadata !DIExpression()), !dbg !194
// store atomic i64 0, i64* @atom_3_X0_1 monotonic, align 8, !dbg !104
// ST: Guess
iw(0,4) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW
old_cw = cw(0,4);
cw(0,4) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM
// Check
ASSUME(active[iw(0,4)] == 0);
ASSUME(active[cw(0,4)] == 0);
ASSUME(sforbid(4,cw(0,4))== 0);
ASSUME(iw(0,4) >= 0);
ASSUME(iw(0,4) >= 0);
ASSUME(cw(0,4) >= iw(0,4));
ASSUME(cw(0,4) >= old_cw);
ASSUME(cw(0,4) >= cr(0,4));
ASSUME(cw(0,4) >= cl[0]);
ASSUME(cw(0,4) >= cisb[0]);
ASSUME(cw(0,4) >= cdy[0]);
ASSUME(cw(0,4) >= cdl[0]);
ASSUME(cw(0,4) >= cds[0]);
ASSUME(cw(0,4) >= cctrl[0]);
ASSUME(cw(0,4) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,4) = 0;
mem(4,cw(0,4)) = 0;
co(4,cw(0,4))+=1;
delta(4,cw(0,4)) = -1;
ASSUME(creturn[0] >= cw(0,4));
// %call = call i32 @pthread_create(i64* noundef %thr0, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t0, i8* noundef null) #7, !dbg !105
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,7+0));
ASSUME(cdy[0] >= cw(0,2+0));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cw(0,6+0));
ASSUME(cdy[0] >= cw(0,8+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,7+0));
ASSUME(cdy[0] >= cr(0,2+0));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(cdy[0] >= cr(0,6+0));
ASSUME(cdy[0] >= cr(0,8+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cstart[1] >= cdy[0]);
// %call9 = call i32 @pthread_create(i64* noundef %thr1, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t1, i8* noundef null) #7, !dbg !106
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,7+0));
ASSUME(cdy[0] >= cw(0,2+0));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cw(0,6+0));
ASSUME(cdy[0] >= cw(0,8+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,7+0));
ASSUME(cdy[0] >= cr(0,2+0));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(cdy[0] >= cr(0,6+0));
ASSUME(cdy[0] >= cr(0,8+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cstart[2] >= cdy[0]);
// %call10 = call i32 @pthread_create(i64* noundef %thr2, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t2, i8* noundef null) #7, !dbg !107
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,7+0));
ASSUME(cdy[0] >= cw(0,2+0));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cw(0,6+0));
ASSUME(cdy[0] >= cw(0,8+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,7+0));
ASSUME(cdy[0] >= cr(0,2+0));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(cdy[0] >= cr(0,6+0));
ASSUME(cdy[0] >= cr(0,8+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cstart[3] >= cdy[0]);
// %call11 = call i32 @pthread_create(i64* noundef %thr3, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t3, i8* noundef null) #7, !dbg !108
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,7+0));
ASSUME(cdy[0] >= cw(0,2+0));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cw(0,6+0));
ASSUME(cdy[0] >= cw(0,8+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,7+0));
ASSUME(cdy[0] >= cr(0,2+0));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(cdy[0] >= cr(0,6+0));
ASSUME(cdy[0] >= cr(0,8+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cstart[4] >= cdy[0]);
// %4 = load i64, i64* %thr0, align 8, !dbg !109, !tbaa !110
// LD: Guess
old_cr = cr(0,5);
cr(0,5) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM
// Check
ASSUME(active[cr(0,5)] == 0);
ASSUME(cr(0,5) >= iw(0,5));
ASSUME(cr(0,5) >= 0);
ASSUME(cr(0,5) >= cdy[0]);
ASSUME(cr(0,5) >= cisb[0]);
ASSUME(cr(0,5) >= cdl[0]);
ASSUME(cr(0,5) >= cl[0]);
// Update
creg_r4 = cr(0,5);
crmax(0,5) = max(crmax(0,5),cr(0,5));
caddr[0] = max(caddr[0],0);
if(cr(0,5) < cw(0,5)) {
r4 = buff(0,5);
} else {
if(pw(0,5) != co(5,cr(0,5))) {
ASSUME(cr(0,5) >= old_cr);
}
pw(0,5) = co(5,cr(0,5));
r4 = mem(5,cr(0,5));
}
ASSUME(creturn[0] >= cr(0,5));
// %call12 = call i32 @pthread_join(i64 noundef %4, i8** noundef null), !dbg !114
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,7+0));
ASSUME(cdy[0] >= cw(0,2+0));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cw(0,6+0));
ASSUME(cdy[0] >= cw(0,8+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,7+0));
ASSUME(cdy[0] >= cr(0,2+0));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(cdy[0] >= cr(0,6+0));
ASSUME(cdy[0] >= cr(0,8+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cdy[0] >= creturn[1]);
// %5 = load i64, i64* %thr1, align 8, !dbg !115, !tbaa !110
// LD: Guess
old_cr = cr(0,6);
cr(0,6) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM
// Check
ASSUME(active[cr(0,6)] == 0);
ASSUME(cr(0,6) >= iw(0,6));
ASSUME(cr(0,6) >= 0);
ASSUME(cr(0,6) >= cdy[0]);
ASSUME(cr(0,6) >= cisb[0]);
ASSUME(cr(0,6) >= cdl[0]);
ASSUME(cr(0,6) >= cl[0]);
// Update
creg_r5 = cr(0,6);
crmax(0,6) = max(crmax(0,6),cr(0,6));
caddr[0] = max(caddr[0],0);
if(cr(0,6) < cw(0,6)) {
r5 = buff(0,6);
} else {
if(pw(0,6) != co(6,cr(0,6))) {
ASSUME(cr(0,6) >= old_cr);
}
pw(0,6) = co(6,cr(0,6));
r5 = mem(6,cr(0,6));
}
ASSUME(creturn[0] >= cr(0,6));
// %call13 = call i32 @pthread_join(i64 noundef %5, i8** noundef null), !dbg !116
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,7+0));
ASSUME(cdy[0] >= cw(0,2+0));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cw(0,6+0));
ASSUME(cdy[0] >= cw(0,8+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,7+0));
ASSUME(cdy[0] >= cr(0,2+0));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(cdy[0] >= cr(0,6+0));
ASSUME(cdy[0] >= cr(0,8+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cdy[0] >= creturn[2]);
// %6 = load i64, i64* %thr2, align 8, !dbg !117, !tbaa !110
// LD: Guess
old_cr = cr(0,7);
cr(0,7) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM
// Check
ASSUME(active[cr(0,7)] == 0);
ASSUME(cr(0,7) >= iw(0,7));
ASSUME(cr(0,7) >= 0);
ASSUME(cr(0,7) >= cdy[0]);
ASSUME(cr(0,7) >= cisb[0]);
ASSUME(cr(0,7) >= cdl[0]);
ASSUME(cr(0,7) >= cl[0]);
// Update
creg_r6 = cr(0,7);
crmax(0,7) = max(crmax(0,7),cr(0,7));
caddr[0] = max(caddr[0],0);
if(cr(0,7) < cw(0,7)) {
r6 = buff(0,7);
} else {
if(pw(0,7) != co(7,cr(0,7))) {
ASSUME(cr(0,7) >= old_cr);
}
pw(0,7) = co(7,cr(0,7));
r6 = mem(7,cr(0,7));
}
ASSUME(creturn[0] >= cr(0,7));
// %call14 = call i32 @pthread_join(i64 noundef %6, i8** noundef null), !dbg !118
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,7+0));
ASSUME(cdy[0] >= cw(0,2+0));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cw(0,6+0));
ASSUME(cdy[0] >= cw(0,8+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,7+0));
ASSUME(cdy[0] >= cr(0,2+0));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(cdy[0] >= cr(0,6+0));
ASSUME(cdy[0] >= cr(0,8+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cdy[0] >= creturn[3]);
// %7 = load i64, i64* %thr3, align 8, !dbg !119, !tbaa !110
// LD: Guess
old_cr = cr(0,8);
cr(0,8) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM
// Check
ASSUME(active[cr(0,8)] == 0);
ASSUME(cr(0,8) >= iw(0,8));
ASSUME(cr(0,8) >= 0);
ASSUME(cr(0,8) >= cdy[0]);
ASSUME(cr(0,8) >= cisb[0]);
ASSUME(cr(0,8) >= cdl[0]);
ASSUME(cr(0,8) >= cl[0]);
// Update
creg_r7 = cr(0,8);
crmax(0,8) = max(crmax(0,8),cr(0,8));
caddr[0] = max(caddr[0],0);
if(cr(0,8) < cw(0,8)) {
r7 = buff(0,8);
} else {
if(pw(0,8) != co(8,cr(0,8))) {
ASSUME(cr(0,8) >= old_cr);
}
pw(0,8) = co(8,cr(0,8));
r7 = mem(8,cr(0,8));
}
ASSUME(creturn[0] >= cr(0,8));
// %call15 = call i32 @pthread_join(i64 noundef %7, i8** noundef null), !dbg !120
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,7+0));
ASSUME(cdy[0] >= cw(0,2+0));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cw(0,6+0));
ASSUME(cdy[0] >= cw(0,8+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,7+0));
ASSUME(cdy[0] >= cr(0,2+0));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(cdy[0] >= cr(0,6+0));
ASSUME(cdy[0] >= cr(0,8+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cdy[0] >= creturn[4]);
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0), metadata !158, metadata !DIExpression()), !dbg !212
// %8 = load atomic i64, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0) seq_cst, align 8, !dbg !122
// LD: Guess
old_cr = cr(0,0);
cr(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM
// Check
ASSUME(active[cr(0,0)] == 0);
ASSUME(cr(0,0) >= iw(0,0));
ASSUME(cr(0,0) >= 0);
ASSUME(cr(0,0) >= cdy[0]);
ASSUME(cr(0,0) >= cisb[0]);
ASSUME(cr(0,0) >= cdl[0]);
ASSUME(cr(0,0) >= cl[0]);
// Update
creg_r8 = cr(0,0);
crmax(0,0) = max(crmax(0,0),cr(0,0));
caddr[0] = max(caddr[0],0);
if(cr(0,0) < cw(0,0)) {
r8 = buff(0,0);
} else {
if(pw(0,0) != co(0,cr(0,0))) {
ASSUME(cr(0,0) >= old_cr);
}
pw(0,0) = co(0,cr(0,0));
r8 = mem(0,cr(0,0));
}
ASSUME(creturn[0] >= cr(0,0));
// call void @llvm.dbg.value(metadata i64 %8, metadata !160, metadata !DIExpression()), !dbg !212
// %conv = trunc i64 %8 to i32, !dbg !123
// call void @llvm.dbg.value(metadata i32 %conv, metadata !157, metadata !DIExpression()), !dbg !177
// %cmp = icmp eq i32 %conv, 2, !dbg !124
// %conv16 = zext i1 %cmp to i32, !dbg !124
// call void @llvm.dbg.value(metadata i32 %conv16, metadata !161, metadata !DIExpression()), !dbg !177
// call void @llvm.dbg.value(metadata i64* @atom_1_X0_2, metadata !163, metadata !DIExpression()), !dbg !216
// %9 = load atomic i64, i64* @atom_1_X0_2 seq_cst, align 8, !dbg !126
// LD: Guess
old_cr = cr(0,2);
cr(0,2) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM
// Check
ASSUME(active[cr(0,2)] == 0);
ASSUME(cr(0,2) >= iw(0,2));
ASSUME(cr(0,2) >= 0);
ASSUME(cr(0,2) >= cdy[0]);
ASSUME(cr(0,2) >= cisb[0]);
ASSUME(cr(0,2) >= cdl[0]);
ASSUME(cr(0,2) >= cl[0]);
// Update
creg_r9 = cr(0,2);
crmax(0,2) = max(crmax(0,2),cr(0,2));
caddr[0] = max(caddr[0],0);
if(cr(0,2) < cw(0,2)) {
r9 = buff(0,2);
} else {
if(pw(0,2) != co(2,cr(0,2))) {
ASSUME(cr(0,2) >= old_cr);
}
pw(0,2) = co(2,cr(0,2));
r9 = mem(2,cr(0,2));
}
ASSUME(creturn[0] >= cr(0,2));
// call void @llvm.dbg.value(metadata i64 %9, metadata !165, metadata !DIExpression()), !dbg !216
// %conv20 = trunc i64 %9 to i32, !dbg !127
// call void @llvm.dbg.value(metadata i32 %conv20, metadata !162, metadata !DIExpression()), !dbg !177
// call void @llvm.dbg.value(metadata i64* @atom_1_X2_0, metadata !167, metadata !DIExpression()), !dbg !219
// %10 = load atomic i64, i64* @atom_1_X2_0 seq_cst, align 8, !dbg !129
// LD: Guess
old_cr = cr(0,3);
cr(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM
// Check
ASSUME(active[cr(0,3)] == 0);
ASSUME(cr(0,3) >= iw(0,3));
ASSUME(cr(0,3) >= 0);
ASSUME(cr(0,3) >= cdy[0]);
ASSUME(cr(0,3) >= cisb[0]);
ASSUME(cr(0,3) >= cdl[0]);
ASSUME(cr(0,3) >= cl[0]);
// Update
creg_r10 = cr(0,3);
crmax(0,3) = max(crmax(0,3),cr(0,3));
caddr[0] = max(caddr[0],0);
if(cr(0,3) < cw(0,3)) {
r10 = buff(0,3);
} else {
if(pw(0,3) != co(3,cr(0,3))) {
ASSUME(cr(0,3) >= old_cr);
}
pw(0,3) = co(3,cr(0,3));
r10 = mem(3,cr(0,3));
}
ASSUME(creturn[0] >= cr(0,3));
// call void @llvm.dbg.value(metadata i64 %10, metadata !169, metadata !DIExpression()), !dbg !219
// %conv24 = trunc i64 %10 to i32, !dbg !130
// call void @llvm.dbg.value(metadata i32 %conv24, metadata !166, metadata !DIExpression()), !dbg !177
// call void @llvm.dbg.value(metadata i64* @atom_3_X0_1, metadata !171, metadata !DIExpression()), !dbg !222
// %11 = load atomic i64, i64* @atom_3_X0_1 seq_cst, align 8, !dbg !132
// LD: Guess
old_cr = cr(0,4);
cr(0,4) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM
// Check
ASSUME(active[cr(0,4)] == 0);
ASSUME(cr(0,4) >= iw(0,4));
ASSUME(cr(0,4) >= 0);
ASSUME(cr(0,4) >= cdy[0]);
ASSUME(cr(0,4) >= cisb[0]);
ASSUME(cr(0,4) >= cdl[0]);
ASSUME(cr(0,4) >= cl[0]);
// Update
creg_r11 = cr(0,4);
crmax(0,4) = max(crmax(0,4),cr(0,4));
caddr[0] = max(caddr[0],0);
if(cr(0,4) < cw(0,4)) {
r11 = buff(0,4);
} else {
if(pw(0,4) != co(4,cr(0,4))) {
ASSUME(cr(0,4) >= old_cr);
}
pw(0,4) = co(4,cr(0,4));
r11 = mem(4,cr(0,4));
}
ASSUME(creturn[0] >= cr(0,4));
// call void @llvm.dbg.value(metadata i64 %11, metadata !173, metadata !DIExpression()), !dbg !222
// %conv28 = trunc i64 %11 to i32, !dbg !133
// call void @llvm.dbg.value(metadata i32 %conv28, metadata !170, metadata !DIExpression()), !dbg !177
// %and = and i32 %conv24, %conv28, !dbg !134
creg_r12 = max(creg_r10,creg_r11);
ASSUME(active[creg_r12] == 0);
r12 = r10 & r11;
// call void @llvm.dbg.value(metadata i32 %and, metadata !174, metadata !DIExpression()), !dbg !177
// %and29 = and i32 %conv20, %and, !dbg !135
creg_r13 = max(creg_r9,creg_r12);
ASSUME(active[creg_r13] == 0);
r13 = r9 & r12;
// call void @llvm.dbg.value(metadata i32 %and29, metadata !175, metadata !DIExpression()), !dbg !177
// %and30 = and i32 %conv16, %and29, !dbg !136
creg_r14 = max(max(creg_r8,0),creg_r13);
ASSUME(active[creg_r14] == 0);
r14 = (r8==2) & r13;
// call void @llvm.dbg.value(metadata i32 %and30, metadata !176, metadata !DIExpression()), !dbg !177
// %cmp31 = icmp eq i32 %and30, 1, !dbg !137
// br i1 %cmp31, label %if.then, label %if.end, !dbg !139
old_cctrl = cctrl[0];
cctrl[0] = get_rng(0,NCONTEXT-1);
ASSUME(cctrl[0] >= old_cctrl);
ASSUME(cctrl[0] >= creg_r14);
ASSUME(cctrl[0] >= 0);
if((r14==1)) {
goto T0BLOCK1;
} else {
goto T0BLOCK2;
}
T0BLOCK1:
// call void @__assert_fail(i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0), i8* noundef getelementptr inbounds ([131 x i8], [131 x i8]* @.str.1, i64 0, i64 0), i32 noundef 81, i8* noundef getelementptr inbounds ([23 x i8], [23 x i8]* @__PRETTY_FUNCTION__.main, i64 0, i64 0)) #8, !dbg !140
// unreachable, !dbg !140
r15 = 1;
T0BLOCK2:
// %12 = bitcast i64* %thr3 to i8*, !dbg !143
// call void @llvm.lifetime.end.p0i8(i64 8, i8* %12) #7, !dbg !143
// %13 = bitcast i64* %thr2 to i8*, !dbg !143
// call void @llvm.lifetime.end.p0i8(i64 8, i8* %13) #7, !dbg !143
// %14 = bitcast i64* %thr1 to i8*, !dbg !143
// call void @llvm.lifetime.end.p0i8(i64 8, i8* %14) #7, !dbg !143
// %15 = bitcast i64* %thr0 to i8*, !dbg !143
// call void @llvm.lifetime.end.p0i8(i64 8, i8* %15) #7, !dbg !143
// ret i32 0, !dbg !144
ret_thread_0 = 0;
ASSERT(r15== 0);
}
| [
"tuan-phong.ngo@it.uu.se"
] | tuan-phong.ngo@it.uu.se |
ffd03ae39384b9aaf66d9e8354e8df832eb54dd0 | e1a68b4100536dff62fcaae9cac45c82af7547a8 | /CpManager/Pr/PrPixel/src/PrPixelMonitor.h | 26e57c28a90d594265790661e2f0729955b8e63a | [] | no_license | don-reba/cp-manager | 3791338ff62a1ff35939d219f71485fdc331339b | 9b5b849d97e235553c36bf7b27e3a663e1c19878 | refs/heads/master | 2021-06-07T21:42:15.032659 | 2016-10-20T05:06:53 | 2016-10-20T05:06:53 | 7,685,994 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 664 | h | #ifndef PRPIXELMONITOR_H
#define PRPIXELMONITOR_H 1
#include "GaudiAlg/GaudiTupleAlg.h"
#include "PrPixelHitManager.h"
#include "PrPixelTrack.h"
/** @class PrPixelMonitor PrPixelMonitor.h
*
* Monitoring and debugging plots for PrPixelTracking.
*
*/
class PrPixelMonitor : public GaudiTupleAlg {
public:
/// Standard constructor
PrPixelMonitor(const std::string &name, ISvcLocator *pSvcLocator);
/// Destructor
virtual ~PrPixelMonitor();
virtual StatusCode initialize(); ///< Algorithm initialization
virtual StatusCode execute(); ///< Algorithm execution
private:
/// Hit manager tool
PrPixelHitManager *m_hitManager;
};
#endif
| [
"dcampora@lab13.lbdaq.cern.ch"
] | dcampora@lab13.lbdaq.cern.ch |
2ef07cd6c12c90878ba74d9e90e8e0bc4320c578 | d8e4507110f524ad147ae2638a42e2e202c4414a | /Windows/X/Project9/handlechild.cpp | 4d771b089035d84ce866bb3cf172b73b85f69d5f | [] | no_license | sandhyakunamneni/ncrwork | 9727bc5e9844a507b2759debcf0bb5f01e9abae4 | e71824bc679f7ad9b2d47b4ffd659cddfdee151e | refs/heads/master | 2023-04-14T14:22:18.050220 | 2019-03-12T11:30:48 | 2019-03-12T11:30:48 | 168,645,351 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 834 | cpp | #include<Windows.h>
#include<stdio.h>
#include<iostream>
#include<stdlib.h>
using namespace std;
long g_x = 0;
DWORD WINAPI threadfunc1(LPVOID lparam)
{
for (int i = 0;i < 10;i++)
{
printf("i=%d\n", i);
Sleep(1000);
}
return 0;
}
int main()
{
DWORD thID1, thID2;
HANDLE hThread1, hThread2;
HANDLE arr_hand[2];
hThread1 = CreateThread(NULL,
0,
threadfunc1,
NULL,
0,
&thID1);
if (hThread1 == NULL)
{
printf("unable to open thread1\n");
}
hThread2 = CreateThread(NULL,
0,
threadfunc1,
NULL,
0,
&thID1);
if (hThread2 == NULL)
{
printf("unable to open thread2\n");
}
arr_hand[0] = hThread1;
arr_hand[1] = hThread2;
WaitForMultipleObjects(2, arr_hand, TRUE, INFINITE);
CloseHandle(hThread1);
CloseHandle(hThread2);
printf("waiting for user input before exiting\n");
getchar();
return 0;
}
| [
"sandhyakunamneni@gmail.com"
] | sandhyakunamneni@gmail.com |
fc39e9308e427535c8657c3a196d67b0d1b18e1c | 4617c846ee76c4012e32cad3693973ededb17917 | /searchengine.cpp | 1e9bc8dca707f8566a762bd6e24e4f6d8039c076 | [] | no_license | Ajaybondhu/Search-Engine | 15beca9331dc523f78d564f86721f37a8d9fe0fd | 5f5bacf07f4f70e102a18451a876d45e2975aea3 | refs/heads/master | 2021-01-20T20:42:21.927117 | 2016-06-23T09:54:43 | 2016-06-23T09:54:43 | 61,794,403 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,660 | cpp | #include<iostream.h>
#include<process.h>
#include<conio.h>
#include<string.h>
#define no_of_countries_in_asia 50
int hash_function(char *country){
int key=0;
for(int i=0;country[i]!=NULL;i++)
key=key+country[i];
return (key%no_of_countries_in_asia);
}
/*
char *hash_table[no_of_countries_in_asia]={"Singapore","Thailand","Syria","Maldives","Mongolia","Sri Lanka","Afghanistan","Myanmar","Indonesia","Pakistan","Arab","Kuwait","Vietnam","Russia","Jordan","China","Cambodia","India","Palestine","Turkmenistan","Yemen","Bhutan","Japan","Kazakhstan","Tajikistan","Bahrain","Kyrgyzstan","Oman","Nepal","Iraq","Turkey","Laos","Iran","Bangladesh","Cyprus","Lebanon","Georgia","Qatar","Uzbekistan","Philippines","Israel","Armenia","Saudi Arabia","South Korea","Taiwan","Brunei","Timor-Leste","Azerbaijan","North Korea","Malaysia"};
char *currency[no_of_countries_in_asia]={"Singapore dollar","Baht","","",""};
char *capital[no_of_countries_in_asia]={"Singapore","bangkok","","",""};
char *language[no_of_countries_in_asia]={"Roman","Thai","","",""};
char *religion[no_of_countries_in_asia]={"","","","",""};
long int area[no_of_countries_in_asia]={718.3,513120,185180,};
long int population[no_of_countries_in_asia]={5469700,67200000,};
int states[no_of_countries_in_asia]={0,0,};
*/
char *hash_table[no_of_countries_in_asia]={"Singapore",
"Thailand",
"Syria",
"Maldives",
"Mongolia",
"SriLanka",
"Afghanistan",
"Myanmar",
"Indonesia",
"Pakistan",
"Arab",
"Kuwait",
"Vietnam",
"Russia",
"Jordan",
"China",
"Cambodia",
"India",
"Palestine",
"Turkmenistan",
"Yemen",
"Bhutan"
,"Japan",
"Kazakhstan",
"Tajikistan",
"Bahrain",
"Kyrgyzstan",
"Oman",
"Nepal",
"Iraq",
"Turkey",
"Laos",
"Iran",
"Bangladesh",
"Cyprus",
"Lebanon",
"Georgia",
"Qatar",
"Uzbekistan",
"Philippines",
"Israel",
"Armenia",
"Saudi Arabia",
"SouthKorea",
"Taiwan",
"Brunei",
"Timor-Leste",
"Azerbaijan",
"NorthKorea",
"Malaysia"};
float population[no_of_countries_in_asia]={5.5,
67.01,
22.85,
345.023,
2.893,
2.027,
30.55,
53.26,
249.9,
182.1,
365.0,
674.0,
964.0,
3.369,
89.71,
143.5,
6.459,
1.357,
15.14,
1.252,
4.4,
5.24,
24.41,
753.0,
947.0,
127.3,
17.04,
8.208,
1.332,
5.72,
3.632,
27.8,
33.42,
74.93,
6.77,
77.45,
156.6,
1.141,
4.467,
4.477,
2.169,
30.24,
98.39,
8.059,
2.977,
28.83,
50.22,
23.34,
41.77,
1.178,
9.417,
24.9,
29.72};
char *religion[no_of_countries_in_asia]={"buddism",
"buddism",
"islam",
"islam",
"buddism",
"theravada buddist",
"islam","buddism",
"Islam,Protestantism,Catholicism,Hinduism,Buddhism,Confucianism",
"islam",
"islam",
"islam",
"islam",
"islam",
"folk",
"christianity",
"muslims",
"taoism",
"Buddhism ",
"hinduism",
"muslims",
"islam",
"islam",
"vajrayana buddhism",
"shinto",
"islam",
"islam",
"islam",
"islam",
"islam",
"hinduism,buddism",
"islam",
"buddhism",
"islam",
"islam",
"islam",
"islam",
"greek orthodox",
"druze",
"christianity",
"islam",
"filipina",
"islam",
"armenian apostical church",
"islam",
"buddism"
,"buddism",
"sunni islam",
"catholic faith",
"shia islam",
"buddism","islam"};
char *currency[no_of_countries_in_asia]={"Singaporedollar",
"Baht",
"pound",
"maldiviyan rufiyaa",
"togrog",
"lkr",
"afghan afghani",
"kyat",
"indonesianrupiah",
"rupees",
"riyal",
"kuwaitidinar",
"Vietnamesedong",
"ruble(rub)",
"jordanian dinar",
"renminbi",
"riel",
"rupees",
"United Arab Emirates dirham",
" Turkmn new manat",
"yer",
"bhutanese ngultrum",
"japanese yen",
"kazakstan tenge",
"somoni",
"bahrain dinar",
"kyrgyzstan som",
"rial(omr)",
"rupee",
"iraqi dinar",
"Turkish lira"
," laokip" ,
"iranian rial",
"taka",
"euro",
"lebanese pound",
"lari",
"riyal",
"Uzbekistan som",
"peso",
"israeli new shekel",
"dram",
"saudi riyal",
"krw",
"new taiwan dollar",
"brunei dollar",
"dollor",
"manat",
"won",
"ringgit"};
char *capital[no_of_countries_in_asia]={"Singapore","bangkok","damascus","male",
"ulan bator","coloumbo"," kabul","naypyidaw","jakartha","islamabad","0","kuwaitcity", "hanoi","moscow","amman ","beijing","phnom penh","new delhi","0","Ashgabat","sana?a" , "thimphu","tokyo","astana","dushanbe","manama","bishkek","muscat","kathmandu",
"baghdad","ankara","vientane","tehran","dhaka","nicosia","tibilisi","doha","tashkent",
"manila","jerusalem","yerevan","riyadh","seoul","taipei","bandar seri bagwan","dili",
"baku ","pyongyang"," kuala lampur"};
char *language[no_of_countries_in_asia]={"Roman","Thai","beirut","dhivehi",
"sinhala","pasto - dari","burmese","indonesian","urdu","0","arabic","vietnamese",
"russian","arabic","standard chinese","khmer","hindi","0","Turkmen","arabic","dzonkha",
"japanese","kazakh,russian","russian,tajik","arabic","Kyrgyz ,Russian ","omani arabic",
"nepali","arabic","turkish","lao","arabbic-kurdish","bengali","greek turkish","arabic",
"georgian","qatari","uzbek","filipino","hebrew,arabic","armenian","arabic",
"korean","taiwamiese hokkine","russian","malay","Tetum portuguese","azerbaijani",
"korean","dhivehi"};
float area[no_of_countries_in_asia]={718.3,513.120,185.180,298.115,1564115.75,
65.61,652.86,676.57,1.904.569,803.940,0,17.820,332.698,17.098.242,89.342,9.596.96,
181.035,3.287.590,6.220,491.210,527.967,38.394,377.944,2.724.900,143.100,765.0,199.951,
309.501,147.181,437.072,783.562,236.800,1.648.195,147.570,9.251,10.452,69.700,11.575, 448.978,300.00,22.072,29.743,2.149.690,100.210,36.193,5.765,15.007,86.600,10.540,329.847};
char *climate[no_of_countries_in_asia]={"hot,humid","high humidity","humid","sunlit days,breezy nights,balmy mornings,iridescent sunsets","continental","arid to semiarid","monsoon","tropical with high humidity","moderate","0","dry hot long summer , short wet winter","dry,wet","continental","hot dry summer , cool wet winters",
"winter cold & dry , summer hot & rainy","warm hot","wet & dry climate","moderate",
"cold desert","subtropical dry and hot","hot , humid subtropical"," cold winter", "continental climate eith cold winter & hot summer","arid","hot summer & mild winter ","subtropical dry and hot","spring,hot,warm","hot dry summers , short cool winters",
"hot,dry","tropical mansoon","hot & dry","monsoon","meditteranean &semiarid",
"humid","humid subtropical","hot,humid","contenintal","monsoon,humid","meditteranian climate ,hot & dry","sunny","high temparatures","humid","subtropical",
"tropical equatorial","warm summer & very cold dry winter","conteinential,oceanic",
"tropical rainforest",};
int states[no_of_countries_in_asia]={1,76,14,25,1,19,21,65,4,0,3,5,10,10,14,10,29,5,32,
39,10,3,34,1,10,25,47,14,10,18,17,8,16,6,19,55,8,28,144,14,49,10,6,22,5,42,9,5,25};
float longitude[no_of_countries_in_asia]={1.3000,13.7500,33.5000,3.2000, 46.0000,7.0000,69.160652,22.0000,6.1750,33.6667,24.4667,29.3667,21.03,3360.0000,31.9500,35.0000,11.5500,21.0000,31.6253,37.9667,35.6833,48.0000,38.5500,26.0275,42.8667,23.6000,26.5333,33.3333,23.7000,17.9667,32.0000,23.7000,35.0000,33.9000,32.9605,25.3000,41.0000,40.18333,24.0000,
22.0,23.5000,4.8903,8.5667,40.3000,40.0000,3.1333};
float latitude[no_of_countries_in_asia]={103.8000,100.4833,36.3000,73.2200,105.0000,81.0000,34.543896,96.0000,106.8283,73.1667,54.3667,47.9667,105.8500,90.0000,35.9333,103.0000,104.9167,78.0000,35.1453,58.3333,48.0000,90.4350,139.7667,86.7333,44.4333,139.7667,68.000,68.8000,50.5500,74.6000,58.5500,86.7333,44.4333,90.3500,33.0000,35.5333,51.5167,69.0000,122.0000,35.0000,44.1567,45.0000,129.3650,121.0000,114.9422,125.5667, 47.70000,127.0000, 101.7000};
void list_of_countries(){
for(int i=0;i<no_of_countries_in_asia;i++)
cout<<endl<<hash_table[i];
}
void main(){
int key=0,option;
char *country;
clrscr();
do{
cout<<"enter your option\n 1.search details about counties in asia \n 2.display all countries present in asia\n 3.exit\n";
cin>>option;
switch(option){
case 1: cout<<"\n enter country name: ";
cin>>country;
key=hash_function(country);
int key_copy=key;
cout<<country<<endl<<hash_table[key];
do{
while(strcmpi(country,hash_table[key])){
if(key==(no_of_countries_in_asia-1))
key=0;
else
key++;
}
}while(key!=key_copy);
if(strcmpi(country,hash_table[key]))
cout<<"country not in our database";
else
cout<<"details of "<<hash_table[key]<<" are:"<<endl<<"area "<<area[key]<<endl<<"population "<<population[key]<<endl<<"states "<<states[key]<<endl<<"currency "<<currency[key]<<endl<<"capital "<<capital[key]<<endl<<"language "<<language[key]<<endl<<"religion "<<religion[key]<<endl;
getch();
break;
case 2: cout<<"\n list of countries in asia: ";
list_of_countries();
getch();
break;
case 3: option=100;
break;
default: cout<<"\n entered wrong option";
break;
}
}while(option!=100);
exit(0);
}
| [
"noreply@github.com"
] | Ajaybondhu.noreply@github.com |
693a6d4f0c377c00b30d3857f49849c6a6db016c | 97d8480d44021b6f042150317c89efb39d533fa8 | /temp.cpp | 3106afee0bd67981b4efa4ac9723d96873651ca3 | [] | no_license | ramrap/COL216-ASS3 | 297505e72cb3dd01371f11dd2d04f552b453ceb0 | 633c974074fcfa7a2b5b61818fd0ab5fd356698f | refs/heads/main | 2023-04-24T09:05:37.405878 | 2021-05-17T17:20:26 | 2021-05-17T17:20:26 | 347,027,162 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,326 | cpp | // c++14
#include <iostream>
#include <fstream>
// remove_if, sort, min, max, reverse, merge, binary_search, is_sorted, unique, replace_if, count, push_heap, pop_heap, make_heap
#include <algorithm>
#include <vector>
#include <stdexcept>
// .push, .pop, .front, .back
#include <queue>
// .front, .back, .push_back, push_front, pop_back, pop_front, .at (slow)
#include <deque>
// map<string, int> m; m["x"] = 2; auto it = m.find("x"); it != m.end(); it->second; m.erase(it); m.erase("x");
#include <map>
// can take custom binary cmp function,
// set<string> a; a.insert("f"); set<string>iterator it = a.find("f); it != a.end(); *it; a.erase("f");
#include <set>
#include <cstdio> // printf, scanf // scanf("%d", &i); // read integer
#include <stdlib.h>
#include <assert.h> // assert
#include <utility> // pair, make_pair
#include <functional>
#include <string>
#include <stack> // .pop .push .size .top .empty
#include <math.h> // cos, sin, tan, acos, asin, atan2, exp, log, log10, log2, pow, sqrt, hypot, cell, floor, round, fabs, abs
#include <unordered_map>
using namespace std;
#define ll long long int
#define fo(i,n) for(int i=0;i<n;i++)
#define fab(i,a,b) for(int i=a;i<b;i++)
#define rfo(i,n) for(int i=n;i>0;i--)
//pair
#define pii pair<int,int>
#define F first
#define S second
// vector
#define pb(x) push_back(x)
typedef pair<int, int> PII; // first, second
typedef vector<char> VC;
typedef vector<VC> VVC;
typedef vector<int> VI;
typedef vector<string> VS;
typedef vector<VI> VVI;
typedef map<int,int> MPII;
// build with: g++ main.cpp -o main -std=c++14
//./main > test.out
ll max_size=(1<<20)/4;
vector<int>t(100000,0);
// t0=0-2000, t1=2000*1-2000*2 , t2= 2000*2 .......
// vector<int>
vector<string> inst;
ll inst_size;
//map for memory
unordered_map<int,int> memory;
unordered_map<string,int> registers;
const string WS = " \t";
unordered_map<string,int> labels; // 'branch_mname -> line number
struct Instruction
{
/* data */
string kw;
vector<string>vars;
vector<int>args;
};
vector<Instruction> instruction_list;
// functions for map reference
// begin() – Returns an iterator to the first element in the map
// end() – Returns an iterator to the theoretical element that follows last element in the map
// size() – Returns the number of elements in the map
// max_size() – Returns the maximum number of elements that the map can hold
// empty() – Returns whether the map is empty
// pair insert(keyvalue, mapvalue) – Adds a new element to the map
// erase(iterator position) – Removes the element at the position pointed by the iterator
// erase(const g)– Removes the key value ‘g’ from the map
// clear() – Removes all the elements from the map
//write fucntions here
void memory_check(vector<Instruction> instruction_list){
ll size=0;
for(int i=0;i<instruction_list.size();i++){
Instruction temp = instruction_list[i];
string operation =temp.kw;
if (operation=="addi"){
// cout<<"addi he"<<endl;
size++;
}
else if(operation=="add"){
// cout<<"add bro"<<endl;
size++;
}
else if(operation=="sub"){
size++;
}
else if (operation=="mul"){
size++;
}
else if(operation=="beq"){
size++;
}
else if(operation=="bne"){
size++;
}
else if(operation=="slt"){
size++;
}
else if(operation=="j"){
size++;
}
else if(operation=="lw"){
size++;
}
else if(operation=="sw"){
size++;
}
}
if(size>max_size){
throw invalid_argument("memory exceeded : Too many Instructions");
}
}
string trimmed(string line){
size_t first = line.find_first_not_of(WS);
size_t last = line.find_last_not_of(WS);
string ans;
if (first==string::npos){
ans= "";
}
else {
ans= line.substr(first, last-first +1);
}
return ans;
}
// Instrction in
// kw
// vector<string> temp = in.vars
// var.get_key(temp[0])
// add $t0, $t0, $t1
// sub $t0, $t0, $t1
// mul $t0, $t0, $t1
// beq $t0, $t1, label
// bne $t0, $t1, label
// slt $t0, $t1, $t2
// j label -done -done
// lw $t0, 1000 -done
// sw $t0, 1000 -done
// addi $t0, $t0, 8 -done
// branch:
void parse(string line){
string keyword;
vector<string> variables;
vector<int> arguments;
size_t first = line.find(" ");
if (first == string::npos){
first = line.find("\t");
}
else if (line.find("\t")!= string::npos){
size_t first = min(first, line.find("\t"));
}
if (first == string::npos){
if(line.find(":") != string::npos){
keyword = line.substr(0, line.length() -1);
Instruction i = {keyword, variables, arguments};
instruction_list.push_back(i);
return;
}
else{
throw invalid_argument("syntax error at: "+line);
}
}
keyword = line.substr(0, first);
cout<<keyword<<"end"<<endl;
string remain = trimmed(line.substr(first));
vector<string> remains;
size_t end = remain.find(",");
while (end != std::string::npos)
{
remains.push_back(trimmed(remain.substr(0, end)));
cout<<remains[remains.size()-1]<<endl;
remain = remain.substr(end+1);
end = remain.find(",");
}
remains.push_back(trimmed(remain));
cout<<remains[remains.size()-1]<<endl;
if(keyword.compare("add") == 0 || keyword.compare("sub") == 0 || keyword.compare("mul") == 0 || keyword.compare("slt") == 0){
if (remains.size() != 3){
cout<<"PARSE ME HE"<<endl;
throw invalid_argument("syntax error in \"" + keyword + "\" instruction in: "+line);
}
if(registers.find(remains[0]) == registers.end() || registers.find(remains[1]) == registers.end() || registers.find(remains[2]) == registers.end() ){
cout<<"PARSE ME HE"<<endl;
throw invalid_argument("syntax error in \"" + keyword + "\" instruction in: "+line);
}
variables.push_back(remains[0]);
variables.push_back(remains[1]);
variables.push_back(remains[2]);
Instruction i = {keyword, variables, arguments};
instruction_list.push_back(i);
return;
}
else if(keyword == "j"){
if (remains.size() != 1){
cout<<"PARSE ME HE"<<endl;
throw invalid_argument("syntax error in \"" + keyword + "\" instruction in: "+line);
}
if(labels.find(remains[0]) == labels.end()){
cout<<"PARSE ME HE"<<endl;
throw invalid_argument("syntax error in \"" + keyword + "\" instruction in: "+line);
}
variables.push_back(remains[0]);
Instruction i = {keyword, variables, arguments};
instruction_list.push_back(i);
return;
}
else if(keyword == "beq" || keyword == "bne"){
if(remains.size() != 3){
cout<<"PARSE ME HE"<<endl;
throw invalid_argument("syntax error in \""+keyword+"\" instruction in: "+line);
}
if(registers.find(remains[0]) == registers.end() || registers.find(remains[1]) == registers.end() || labels.find(remains[2]) == labels.end()){
cout<<"PARSE ME HE"<<endl;
throw invalid_argument("syntax error in \""+keyword+"\" instruction in: "+line);
}
variables.push_back(remains[0]);
variables.push_back(remains[1]);
variables.push_back(remains[2]);
Instruction i = {keyword, variables, arguments};
instruction_list.push_back(i);
return;
}
else if(keyword =="lw" || keyword == "sw"){
if(remains.size() != 2){
cout<<"PARSE ME HE"<<endl;
throw invalid_argument("syntax error in \""+keyword+"\" instruction in: "+line);
}
if(registers.find(remains[0]) == registers.end()){
cout<<"PARSE ME HE"<<endl;
throw invalid_argument("syntax error in \""+keyword+"\" instruction in: "+line);
}
variables.push_back(remains[0]);
try{
arguments.push_back(stoi(remains[1]));
}
catch(invalid_argument){
cout<<"PARSE ME HE"<<endl;
throw invalid_argument("syntax error in \"" + keyword + "\" instruction in: "+line);
}
Instruction i = {keyword, variables, arguments};
instruction_list.push_back(i);
return;
}
else if (keyword == "addi"){
if (remains.size() != 3){
cout<<"PARSE ME HE"<<endl;
throw invalid_argument("syntax error in \"" + keyword + "\" instruction in: "+line);
}
if(registers.find(remains[0]) == registers.end() || registers.find(remains[1]) == registers.end() ){
cout<<"PARSE ME HE"<<endl;
throw invalid_argument("syntax error in \"" + keyword + "\" instruction in: "+line);
}
variables.push_back(remains[0]);
variables.push_back(remains[1]);
try{
cout<<"PARSE ME HE"<<endl;
arguments.push_back(stoi(remains[2]));
}
catch(invalid_argument){
cout<<"PARSE ME HE"<<endl;
throw invalid_argument("syntax error in \"" + keyword + "\" instruction in: "+line);
}
Instruction i = {keyword, variables, arguments};
instruction_list.push_back(i);
return;
}
else{
cout<<"PARSE ME HE"<<endl;
throw invalid_argument("syntax error in: "+line);
}
return;
}
void ADDI(Instruction I){
vector<string> vars=I.vars;
vector<int>args = I.args;
// cout<<"Addi "<<registers[vars[1]]<<" "<<args[0]<<endl;
registers[vars[0]]=registers[vars[1]]+args[0];
}
void ADD(Instruction I){
vector<string> vars = I.vars;
vector<int>args = I.args;
registers[vars[0]] = registers[vars[1]]+registers[vars[2]];
}
void SUB(Instruction I){
vector<string> vars = I.vars;
vector<int>args = I.args;
registers[vars[0]] = registers[vars[1]]-registers[vars[2]];
}
void MUL(Instruction I){
vector<string> vars = I.vars;
vector<int>args = I.args;
registers[vars[0]] = registers[vars[1]]*registers[vars[2]];
}
void BEQ(Instruction I,ll &PC){
vector<string> vars = I.vars;
if(registers[vars[0]] == registers[vars[1]]){
PC=labels[vars[2]]-1;
}
else{
PC++;
}
}
void BNE(Instruction I,ll &PC){
vector<string>vars = I.vars;
if(registers[vars[0]] == registers[vars[1]]){
PC++;
}
else{
PC = labels[vars[2]]-1;
}
}
void SLT(Instruction I){
vector<string> vars = I.vars;
registers[vars[0]] = registers[vars[1]] < registers[vars[2]] ? 1 : 0;
}
void JUMP(Instruction I,ll &PC){
vector<string> vars = I.vars;
PC = registers[vars[0]]-1;
}
void LW(Instruction I){
vector<string> vars = I.vars;
vector<int>args = I.args;
// cout<<vars.size()<<" "<<args.size()<<endl;
if(memory.find(args[0])==memory.end()){
cout<<"HELLO LW ME HE \n";
throw bad_alloc();
}
else{
registers[vars[0]]=memory[args[0]]+1;
}
}
void SW(Instruction I){
vector<string> vars = I.vars;
vector<int>args = I.args;
for(int i=-3;i<=3;i++){
if(i!=0){
if(memory.find(args[0])!=memory.end()){
//memory already occupied
cout<<"HELLO SW ME HE \n";
throw bad_alloc();
}
}
}
memory[args[0]]=registers[vars[0]];
}
int main() {
//Intialising all registers to 0;
registers.insert(make_pair("$zero",0));
for(int i=0;i<31;i++){
string s="$t";
s+=to_string(i);
registers.insert(make_pair(s,0));
}
// read input
// read input
ifstream file("test.in");
if (file.is_open())
{
string line, oline;
int line_num = 0;
while (getline(file, oline))
{
line = trimmed(oline);
if (line.compare("") != 0){
if (line.find(":") != string::npos){
if (line[line.length() -1] == ':'){
if (line.find(" ") != string::npos || line.find("\t") != string::npos){
throw invalid_argument("Syntax Error in Line: " + oline);
}
labels.insert(pair<string,int>(line.substr(0,line.length() - 1),line_num+1));
inst.push_back(line);
line_num += 1;
cout<<line<<endl;
}
else{
size_t ind = line.find(':');
string line1 = line.substr(0,ind+1);
string line2 = trimmed(line.substr(ind+1));
if(line2.find(':')!= string::npos){
throw ("Syntax Error in Line: " + oline);
}
if (line1.find(" ") != string::npos || line1.find("\t") != string::npos){
throw invalid_argument("Syntax Error in Line: " + oline);
}
labels.insert(pair<string,int>(line1.substr(0,line1.length() - 1),line_num+1));
inst.push_back(line1);
inst.push_back(line2);
line_num += 2;
cout<<line1<<endl;
cout<<line2<<endl;
}
}
else{
inst.push_back(line);
line_num += 1;
cout << line << endl;}
}
// cout << line << endl;
}
}
inst_size=inst.size();
int i=0;
while(i!=inst_size){
parse(inst[i]);
i++;
}
inst_size=instruction_list.size();
memory_check(instruction_list);
ll PC=0;
while(PC!=inst_size){
Instruction temp = instruction_list[PC];
string operation =temp.kw;
if (operation=="addi"){
// cout<<"addi he"<<endl;
ADDI(temp);
PC++;
}
else if(operation=="add"){
// cout<<"add bro"<<endl;
ADD(temp);
PC++;
}
else if(operation=="sub"){
SUB(temp);
PC++;
}
else if (operation=="mul"){
MUL(temp);
PC++;
}
else if(operation=="beq"){
BEQ(temp,PC);
}
else if(operation=="bne"){
BNE(temp,PC);
}
else if(operation=="slt"){
SLT(temp);
PC++;
}
else if(operation=="j"){
JUMP(temp,PC);
}
else if(operation=="lw"){
LW(temp);
PC++;
}
else if(operation=="sw"){
SW(temp);
PC++;
}
else{
PC++;
}
}
cout<<"PROGRAM ENDED \n";
for (auto& it: registers) {
// Do stuff
cout << it.first<<" "<<it.second<<"\n";
}
return 0;
} | [
"rahul220.iit@gmail.com"
] | rahul220.iit@gmail.com |
0a9dfb91c234a9af6f2bf610472773d7a66cefb2 | 6ddc3da81a1fc2d9a3c4905806252e88686c5fa8 | /Source/PickUpSystem/InventoryComponent.h | bab910ee86a912b493170f5220a84bbafdf34c8b | [
"MIT"
] | permissive | malachias13/PickUpSystem | 24f04f06cc5d292b1721f80660e7c4d983b22f38 | 2805d6dbacadb9fbc6416b706cf544b75cb6a239 | refs/heads/master | 2023-07-13T09:49:34.369584 | 2021-08-28T19:29:44 | 2021-08-28T19:29:44 | 400,872,950 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,463 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Components/ActorComponent.h"
#include "InventoryComponent.generated.h"
// Blueprints will bind to this to Update UI.
DECLARE_DYNAMIC_MULTICAST_DELEGATE(FInventoryUpdated);
UCLASS(ClassGroup = (Custom), meta = (BlueprintSpawnableComponent))
class PICKUPSYSTEM_API UInventoryComponent : public UActorComponent
{
GENERATED_BODY()
public:
// Sets default values for this component's properties
UInventoryComponent();
protected:
// Called when the game starts
virtual void BeginPlay() override;
UFUNCTION(BlueprintCallable, Category = "Item [Player]")
void UseItem(class UItemBase* Item);
public:
// Called every frame
//virtual void TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override;
// Inventory
UFUNCTION(BlueprintCallable, Category = "Inventory")
bool AddItem(class UItemBase* Item);
UFUNCTION(BlueprintCallable, Category = "Inventory")
bool RemoveItem(class UItemBase* Item);
UPROPERTY(EditDefaultsOnly, Instanced)
TArray<class UItemBase*> DefaultItems;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "Inventory")
TArray<class UItemBase*> Items;
UPROPERTY(EditDefaultsOnly, Category = "Inventory")
int32 Capacity;
// Event
UPROPERTY(BlueprintAssignable, Category = "Inventory")
FInventoryUpdated OnInventoryUpdated;
};
| [
"malachias3786689@gmail.com"
] | malachias3786689@gmail.com |
726bebe7d1391aac5d89a4f7db26950c13259b1c | b9a5aeb8a92876469eaa55ee3ee906ae23eec731 | /4/print_stats.cpp | 2d5391b901a752fcb6637ce2235c7933e9010a8a | [] | no_license | mmasniy/Cpp-Yellow-Belt | f006c56bb62593d20f486447e4a0905b149f89e4 | a358ddf0ceed023a6080de8fefa077169e93b078 | refs/heads/master | 2022-11-25T01:37:35.585594 | 2020-07-30T18:49:44 | 2020-07-30T18:49:44 | 276,877,826 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,619 | cpp | #include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
enum class Gender {
FEMALE,
MALE
};
struct Person {
int age; // возраст
Gender gender; // пол
bool is_employed; // имеет ли работу
};
// Это пример функции, его не нужно отправлять вместе с функцией PrintStats
template <typename InputIt>
int ComputeMedianAge(InputIt range_begin, InputIt range_end) {
if (range_begin == range_end) {
return 0;
}
vector<typename InputIt::value_type> range_copy(range_begin, range_end);
auto middle = begin(range_copy) + range_copy.size() / 2;
nth_element(
begin(range_copy), middle, end(range_copy),
[](const Person& lhs, const Person& rhs) {
return lhs.age < rhs.age;
}
);
return middle->age;
}
void PrintStats(vector<Person> persons) {
cout << "Median age = " << ComputeMedianAge(persons.begin(), persons.end()) << endl;
auto last = partition(persons.begin(), persons.end(),
[](const Person& person) {
return person.gender == Gender::FEMALE;
});
cout << "Median age for females = " << ComputeMedianAge(persons.begin(), last) << endl;
cout << "Median age for males = " << ComputeMedianAge(last, persons.end()) << endl;
auto last1 = partition(persons.begin(), persons.end(),
[](const Person& person) {
return person.is_employed;
});
cout << "Median age for employed females = " << ComputeMedianAge(persons.begin(), last1) << endl;
cout << "Median age for unemployed females = " << ComputeMedianAge(last1, last) << endl;
last1 = partition(last, persons.end(),
[](const Person& person) {
return person.is_employed;
});
cout << "Median age for employed males = " << ComputeMedianAge(last, last1) << endl;
cout << "Median age for unemployed males = " << ComputeMedianAge(last1, persons.end()) << endl;
}
int main() {
vector<Person> persons = {
{31, Gender::MALE, false},
{40, Gender::FEMALE, true},
{24, Gender::MALE, true},
{20, Gender::FEMALE, true},
{80, Gender::FEMALE, false},
{78, Gender::MALE, false},
{10, Gender::FEMALE, false},
{55, Gender::MALE, true},
};
PrintStats(persons);
return 0;
}
| [
"mmasniy@e1r3p8.unit.ua"
] | mmasniy@e1r3p8.unit.ua |
dd6f4972cebf62b58a53253b3276786c2687aea0 | ab004c11f6cfe81104384e373ced9f21c1420feb | /GeneratedFiles/qrc_LaserScanner.cpp | e22c2ba1122c4305a4c63925aedf5229f5e5bc49 | [] | no_license | eglrp/-Binocular-Laser-Scanner | 7a22b16e981a1205548dcf7f81aaa0501b78748f | c4fcca10bd9d7d7ed5fa912edff3d7b4d677716d | refs/heads/master | 2020-04-01T16:47:23.537489 | 2018-06-03T11:33:52 | 2018-06-03T11:33:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 461,175 | cpp | /****************************************************************************
** Resource object code
**
** Created by: The Resource Compiler for Qt version 5.8.0
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
static const unsigned char qt_resource_data[] = {
// F:/NewLaserScanner/NewLaserScanner/Resources/Start.png
0x0,0x0,0x68,0x9,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x78,0x0,0x0,0x0,0x78,0x8,0x6,0x0,0x0,0x0,0x39,0x64,0x36,0xd2,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,
0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x39,0xee,0x69,0x54,0x58,0x74,0x58,0x4d,0x4c,
0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x78,0x6d,0x70,0x0,0x0,
0x0,0x0,0x0,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20,0x62,0x65,0x67,
0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf,0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,
0x30,0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65,0x53,0x7a,0x4e,0x54,0x63,
0x7a,0x6b,0x63,0x39,0x64,0x22,0x3f,0x3e,0xa,0x3c,0x78,0x3a,0x78,0x6d,0x70,0x6d,
0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,
0x62,0x65,0x3a,0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20,0x78,0x3a,0x78,
0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,
0x43,0x6f,0x72,0x65,0x20,0x35,0x2e,0x36,0x2d,0x63,0x31,0x33,0x38,0x20,0x37,0x39,
0x2e,0x31,0x35,0x39,0x38,0x32,0x34,0x2c,0x20,0x32,0x30,0x31,0x36,0x2f,0x30,0x39,
0x2f,0x31,0x34,0x2d,0x30,0x31,0x3a,0x30,0x39,0x3a,0x30,0x31,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x22,0x3e,0xa,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52,
0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72,0x64,0x66,0x3d,0x22,0x68,0x74,
0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,
0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f,0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,
0x79,0x6e,0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0xa,0x20,0x20,0x20,0x20,
0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,
0x6f,0x6e,0x20,0x72,0x64,0x66,0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0xa,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3a,0x78,0x6d,0x70,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,
0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,
0x2e,0x30,0x2f,0x22,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x64,0x63,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x70,0x75,0x72,0x6c,0x2e,0x6f,0x72,0x67,0x2f,0x64,0x63,0x2f,0x65,0x6c,
0x65,0x6d,0x65,0x6e,0x74,0x73,0x2f,0x31,0x2e,0x31,0x2f,0x22,0xa,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x70,
0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x70,0x68,
0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,0xa,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,
0x78,0x6d,0x70,0x4d,0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,
0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,
0x2e,0x30,0x2f,0x6d,0x6d,0x2f,0x22,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x73,0x74,0x45,0x76,0x74,0x3d,
0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,
0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54,0x79,
0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x45,0x76,0x65,0x6e,0x74,
0x23,0x22,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x78,
0x6d,0x6c,0x6e,0x73,0x3a,0x74,0x69,0x66,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x74,
0x69,0x66,0x66,0x2f,0x31,0x2e,0x30,0x2f,0x22,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x65,0x78,0x69,0x66,
0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,
0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x65,0x78,0x69,0x66,0x2f,0x31,0x2e,0x30,0x2f,0x22,
0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x3a,
0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f,0x6c,0x3e,0x41,0x64,0x6f,0x62,
0x65,0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43,0x43,0x20,0x32,
0x30,0x31,0x37,0x20,0x28,0x57,0x69,0x6e,0x64,0x6f,0x77,0x73,0x29,0x3c,0x2f,0x78,
0x6d,0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f,0x6c,0x3e,0xa,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x3a,0x43,0x72,
0x65,0x61,0x74,0x65,0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31,0x37,0x2d,0x30,0x34,
0x2d,0x31,0x34,0x54,0x31,0x38,0x3a,0x32,0x32,0x3a,0x31,0x33,0x2b,0x30,0x38,0x3a,
0x30,0x30,0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x65,0x44,0x61,
0x74,0x65,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,
0x70,0x3a,0x4d,0x6f,0x64,0x69,0x66,0x79,0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31,
0x37,0x2d,0x30,0x34,0x2d,0x31,0x34,0x54,0x31,0x38,0x3a,0x32,0x34,0x3a,0x33,0x36,
0x2b,0x30,0x38,0x3a,0x30,0x30,0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x4d,0x6f,0x64,0x69,
0x66,0x79,0x44,0x61,0x74,0x65,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x3c,0x78,0x6d,0x70,0x3a,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x44,0x61,
0x74,0x65,0x3e,0x32,0x30,0x31,0x37,0x2d,0x30,0x34,0x2d,0x31,0x34,0x54,0x31,0x38,
0x3a,0x32,0x34,0x3a,0x33,0x36,0x2b,0x30,0x38,0x3a,0x30,0x30,0x3c,0x2f,0x78,0x6d,
0x70,0x3a,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x44,0x61,0x74,0x65,0x3e,0xa,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x63,0x3a,0x66,0x6f,0x72,
0x6d,0x61,0x74,0x3e,0x69,0x6d,0x61,0x67,0x65,0x2f,0x70,0x6e,0x67,0x3c,0x2f,0x64,
0x63,0x3a,0x66,0x6f,0x72,0x6d,0x61,0x74,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x3c,0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x3a,0x43,0x6f,
0x6c,0x6f,0x72,0x4d,0x6f,0x64,0x65,0x3e,0x33,0x3c,0x2f,0x70,0x68,0x6f,0x74,0x6f,
0x73,0x68,0x6f,0x70,0x3a,0x43,0x6f,0x6c,0x6f,0x72,0x4d,0x6f,0x64,0x65,0x3e,0xa,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a,
0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x78,0x6d,0x70,0x2e,0x69,
0x69,0x64,0x3a,0x64,0x63,0x65,0x33,0x34,0x66,0x38,0x37,0x2d,0x33,0x36,0x34,0x66,
0x2d,0x65,0x37,0x34,0x66,0x2d,0x62,0x33,0x33,0x31,0x2d,0x32,0x33,0x66,0x36,0x39,
0x34,0x34,0x32,0x38,0x31,0x63,0x33,0x3c,0x2f,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x49,
0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,
0x65,0x6e,0x74,0x49,0x44,0x3e,0x61,0x64,0x6f,0x62,0x65,0x3a,0x64,0x6f,0x63,0x69,
0x64,0x3a,0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x3a,0x38,0x39,0x37,0x63,
0x30,0x34,0x66,0x33,0x2d,0x32,0x30,0x66,0x63,0x2d,0x31,0x31,0x65,0x37,0x2d,0x39,
0x31,0x36,0x39,0x2d,0x61,0x66,0x37,0x39,0x63,0x61,0x30,0x35,0x63,0x64,0x66,0x30,
0x3c,0x2f,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,
0x49,0x44,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,
0x70,0x4d,0x4d,0x3a,0x4f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x44,0x6f,0x63,0x75,
0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x78,0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x61,
0x38,0x63,0x66,0x65,0x30,0x64,0x39,0x2d,0x66,0x36,0x35,0x32,0x2d,0x37,0x32,0x34,
0x39,0x2d,0x39,0x33,0x38,0x32,0x2d,0x33,0x37,0x30,0x65,0x31,0x37,0x34,0x63,0x63,
0x32,0x65,0x38,0x3c,0x2f,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x4f,0x72,0x69,0x67,0x69,
0x6e,0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0xa,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x48,
0x69,0x73,0x74,0x6f,0x72,0x79,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x53,0x65,0x71,0x3e,0xa,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,
0x66,0x3a,0x6c,0x69,0x20,0x72,0x64,0x66,0x3a,0x70,0x61,0x72,0x73,0x65,0x54,0x79,
0x70,0x65,0x3d,0x22,0x52,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x22,0x3e,0xa,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3e,0x63,
0x72,0x65,0x61,0x74,0x65,0x64,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x61,0x63,
0x74,0x69,0x6f,0x6e,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x69,
0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69,
0x64,0x3a,0x61,0x38,0x63,0x66,0x65,0x30,0x64,0x39,0x2d,0x66,0x36,0x35,0x32,0x2d,
0x37,0x32,0x34,0x39,0x2d,0x39,0x33,0x38,0x32,0x2d,0x33,0x37,0x30,0x65,0x31,0x37,
0x34,0x63,0x63,0x32,0x65,0x38,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x69,0x6e,
0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45,
0x76,0x74,0x3a,0x77,0x68,0x65,0x6e,0x3e,0x32,0x30,0x31,0x37,0x2d,0x30,0x34,0x2d,
0x31,0x34,0x54,0x31,0x38,0x3a,0x32,0x32,0x3a,0x31,0x33,0x2b,0x30,0x38,0x3a,0x30,
0x30,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x77,0x68,0x65,0x6e,0x3e,0xa,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,
0x41,0x67,0x65,0x6e,0x74,0x3e,0x41,0x64,0x6f,0x62,0x65,0x20,0x50,0x68,0x6f,0x74,
0x6f,0x73,0x68,0x6f,0x70,0x20,0x43,0x43,0x20,0x32,0x30,0x31,0x37,0x20,0x28,0x57,
0x69,0x6e,0x64,0x6f,0x77,0x73,0x29,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x73,
0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x41,0x67,0x65,0x6e,0x74,0x3e,0xa,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x72,
0x64,0x66,0x3a,0x6c,0x69,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x20,0x72,0x64,
0x66,0x3a,0x70,0x61,0x72,0x73,0x65,0x54,0x79,0x70,0x65,0x3d,0x22,0x52,0x65,0x73,
0x6f,0x75,0x72,0x63,0x65,0x22,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,
0x3a,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3e,0x73,0x61,0x76,0x65,0x64,0x3c,0x2f,0x73,
0x74,0x45,0x76,0x74,0x3a,0x61,0x63,0x74,0x69,0x6f,0x6e,0x3e,0xa,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,
0x73,0x74,0x45,0x76,0x74,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,
0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x64,0x63,0x65,0x33,0x34,0x66,0x38,
0x37,0x2d,0x33,0x36,0x34,0x66,0x2d,0x65,0x37,0x34,0x66,0x2d,0x62,0x33,0x33,0x31,
0x2d,0x32,0x33,0x66,0x36,0x39,0x34,0x34,0x32,0x38,0x31,0x63,0x33,0x3c,0x2f,0x73,
0x74,0x45,0x76,0x74,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,
0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x77,0x68,0x65,0x6e,0x3e,0x32,
0x30,0x31,0x37,0x2d,0x30,0x34,0x2d,0x31,0x34,0x54,0x31,0x38,0x3a,0x32,0x34,0x3a,
0x33,0x36,0x2b,0x30,0x38,0x3a,0x30,0x30,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,
0x77,0x68,0x65,0x6e,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x73,
0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x41,0x67,0x65,0x6e,0x74,0x3e,0x41,0x64,0x6f,
0x62,0x65,0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43,0x43,0x20,
0x32,0x30,0x31,0x37,0x20,0x28,0x57,0x69,0x6e,0x64,0x6f,0x77,0x73,0x29,0x3c,0x2f,
0x73,0x74,0x45,0x76,0x74,0x3a,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x41,0x67,
0x65,0x6e,0x74,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x63,0x68,
0x61,0x6e,0x67,0x65,0x64,0x3e,0x2f,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x63,
0x68,0x61,0x6e,0x67,0x65,0x64,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,
0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x72,
0x64,0x66,0x3a,0x53,0x65,0x71,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x3c,0x2f,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x48,0x69,0x73,0x74,0x6f,0x72,0x79,
0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x69,0x66,0x66,
0x3a,0x4f,0x72,0x69,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x3e,0x31,0x3c,0x2f,
0x74,0x69,0x66,0x66,0x3a,0x4f,0x72,0x69,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,
0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x69,0x66,0x66,
0x3a,0x58,0x52,0x65,0x73,0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0x37,0x32,0x30,
0x30,0x30,0x30,0x2f,0x31,0x30,0x30,0x30,0x30,0x3c,0x2f,0x74,0x69,0x66,0x66,0x3a,
0x58,0x52,0x65,0x73,0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0xa,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x69,0x66,0x66,0x3a,0x59,0x52,0x65,0x73,
0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0x37,0x32,0x30,0x30,0x30,0x30,0x2f,0x31,
0x30,0x30,0x30,0x30,0x3c,0x2f,0x74,0x69,0x66,0x66,0x3a,0x59,0x52,0x65,0x73,0x6f,
0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x3c,0x74,0x69,0x66,0x66,0x3a,0x52,0x65,0x73,0x6f,0x6c,0x75,0x74,0x69,0x6f,
0x6e,0x55,0x6e,0x69,0x74,0x3e,0x32,0x3c,0x2f,0x74,0x69,0x66,0x66,0x3a,0x52,0x65,
0x73,0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x55,0x6e,0x69,0x74,0x3e,0xa,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x65,0x78,0x69,0x66,0x3a,0x43,0x6f,0x6c,
0x6f,0x72,0x53,0x70,0x61,0x63,0x65,0x3e,0x36,0x35,0x35,0x33,0x35,0x3c,0x2f,0x65,
0x78,0x69,0x66,0x3a,0x43,0x6f,0x6c,0x6f,0x72,0x53,0x70,0x61,0x63,0x65,0x3e,0xa,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x65,0x78,0x69,0x66,0x3a,0x50,
0x69,0x78,0x65,0x6c,0x58,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x3e,0x31,
0x32,0x30,0x3c,0x2f,0x65,0x78,0x69,0x66,0x3a,0x50,0x69,0x78,0x65,0x6c,0x58,0x44,
0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x3c,0x65,0x78,0x69,0x66,0x3a,0x50,0x69,0x78,0x65,0x6c,0x59,0x44,
0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x3e,0x31,0x32,0x30,0x3c,0x2f,0x65,0x78,
0x69,0x66,0x3a,0x50,0x69,0x78,0x65,0x6c,0x59,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,
0x6f,0x6e,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,
0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0xa,0x20,0x20,0x20,
0x3c,0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0xa,0x3c,0x2f,0x78,0x3a,0x78,
0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,
0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x77,0x22,0x3f,0x3e,0xce,0x78,0x16,0xba,0x0,
0x0,0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x25,0x0,0x0,0x80,0x83,0x0,
0x0,0xf9,0xff,0x0,0x0,0x80,0xe9,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,
0x0,0x3a,0x98,0x0,0x0,0x17,0x6f,0x92,0x5f,0xc5,0x46,0x0,0x0,0x2d,0x95,0x49,
0x44,0x41,0x54,0x78,0xda,0xec,0xbd,0x69,0xb0,0x65,0x59,0x56,0xdf,0xf7,0x5b,0x6b,
0xef,0x33,0xdc,0xfb,0x5e,0x66,0x65,0x66,0x65,0xcd,0xd5,0x55,0xd5,0x73,0xd3,0x8d,
0x25,0x21,0xcc,0x60,0x10,0xa,0x10,0x98,0x6,0xe3,0x68,0x49,0xc8,0x16,0x96,0x6c,
0x14,0xc6,0xa2,0x43,0x4,0x6,0x1c,0xb2,0x1,0x7d,0xb0,0x18,0x8c,0x6c,0xe4,0xb0,
0x1d,0x21,0x59,0xa,0x4c,0x60,0xa3,0x8,0x3b,0x2,0x79,0x92,0xc3,0x2,0x81,0x5,
0x6d,0x61,0xd1,0xb4,0x24,0x3a,0x9a,0xa9,0xbb,0xa9,0x21,0x6b,0xca,0xca,0x79,0xac,
0xcc,0x7c,0xe3,0x9d,0xce,0x39,0x7b,0x2f,0x7f,0xd8,0xe7,0xdc,0x77,0xde,0xcd,0xfb,
0x32,0xdf,0xcb,0xce,0xcc,0xca,0xee,0xce,0x13,0x71,0xe3,0x65,0xde,0x77,0xdf,0x3d,
0xc3,0xda,0x6b,0xfa,0xaf,0xb5,0xfe,0x5b,0xcc,0x8c,0x87,0xc7,0x97,0xee,0xa1,0xf,
0x1f,0xc1,0x43,0x1,0x3f,0x3c,0x1e,0xa,0xf8,0xe1,0xf1,0x50,0xc0,0xf,0x8f,0x87,
0x2,0x7e,0x78,0xdc,0xfd,0xc3,0x2f,0x7b,0xf3,0x3b,0xbe,0xed,0x5b,0x6f,0xfb,0x87,
0x22,0x42,0xd3,0x34,0xcc,0x66,0x33,0x0,0xea,0xba,0xc6,0xcc,0x68,0x9a,0x26,0x7d,
0xb1,0xf7,0x88,0x8,0x66,0x46,0x96,0x65,0xa8,0x2a,0x9b,0x9b,0x9b,0xac,0xae,0xae,
0x32,0x9d,0xce,0x88,0xb1,0x61,0x65,0x65,0x95,0xe1,0x70,0x88,0xf7,0x9e,0xa6,0x69,
0x30,0x33,0x36,0x37,0x37,0x59,0x59,0x59,0x61,0x3a,0x9d,0x12,0x42,0xa0,0x2c,0x4b,
0xd6,0xd6,0xd6,0x28,0xcb,0x12,0x33,0x68,0x9a,0x86,0x23,0x47,0x8e,0x30,0x9b,0xcd,
0x74,0x34,0x1a,0x1d,0x2e,0xcb,0xe2,0xb8,0x88,0xbc,0x77,0x36,0xab,0xde,0x17,0x63,
0xf8,0x58,0x8,0xe1,0x6b,0x62,0x8c,0x75,0x8c,0x91,0x10,0x2,0x66,0xd6,0xfd,0x54,
0x60,0x26,0x22,0x13,0x40,0x54,0x15,0x11,0x19,0xa9,0xba,0x89,0x73,0x3a,0x76,0xce,
0x6d,0x8a,0xc8,0x86,0xaa,0xae,0x39,0xe7,0x2f,0xe,0x6,0xc3,0x33,0x21,0x84,0x13,
0xa3,0xd1,0xe8,0xf2,0x60,0x30,0x98,0x94,0x65,0xbe,0x5d,0x96,0xa5,0x1,0x8c,0x46,
0x23,0x86,0xc3,0x21,0x65,0x59,0x32,0x18,0x14,0x8c,0xc7,0x63,0xc6,0xe3,0x29,0x59,
0x96,0xb1,0xbe,0xbe,0x4e,0x96,0x65,0x98,0x19,0xe3,0xf1,0x88,0xa2,0x18,0x30,0x1e,
0x4f,0xc8,0xb2,0x8c,0x2c,0xcb,0x98,0x4c,0x26,0xc4,0x18,0xa9,0xeb,0x9a,0xa6,0xa9,
0xc8,0xf3,0x8c,0xd5,0xd5,0x43,0xf3,0x67,0x8,0xe0,0x9c,0xbb,0x23,0x61,0xfe,0xee,
0x1f,0x7e,0x76,0x7f,0x2,0x7e,0x10,0xf,0xe7,0x1c,0x66,0xc,0x43,0x8,0xcf,0xcd,
0x66,0xd5,0x1f,0xaf,0xeb,0xfa,0x4f,0x9b,0xd9,0x37,0xad,0xaf,0x6f,0x7c,0x24,0x84,
0xa0,0x31,0x46,0x44,0x84,0x18,0xd,0x11,0x30,0x33,0x62,0x8c,0xf3,0x9f,0x90,0xde,
0xeb,0x16,0x27,0x8,0x22,0x82,0x48,0x83,0x6a,0xf7,0x6f,0xc1,0x2c,0xfd,0x7e,0x73,
0x73,0xb,0xe7,0x1c,0x59,0x96,0x5d,0x6b,0x9a,0xe6,0xa5,0xba,0xd6,0x3f,0x72,0xae,
0xfe,0x43,0x55,0x3d,0xa1,0xaa,0x57,0x9c,0x73,0xd7,0xbc,0xd7,0x91,0xaa,0x2,0xc2,
0x83,0x9a,0x6e,0x3e,0xd0,0x2,0x16,0x11,0x9c,0x73,0xb9,0xf7,0xfe,0x8f,0x57,0x55,
0xf5,0x4d,0x31,0xda,0xb7,0x4d,0xa7,0xd3,0x3f,0xbd,0xb1,0xb1,0xb5,0x62,0x16,0x69,
0x9a,0x66,0x2e,0xbc,0x56,0x23,0xe7,0x42,0x4a,0xcf,0x5b,0xda,0xc5,0xb1,0x73,0x9b,
0x7d,0x41,0x74,0x9f,0x8d,0xd1,0x0,0xc3,0xcc,0xe6,0xbf,0x8f,0x31,0x74,0x7f,0x7b,
0xdc,0x7b,0xff,0xcd,0xde,0xbb,0x6f,0xf6,0xde,0x91,0x65,0x39,0x65,0x59,0x9c,0x55,
0xd5,0x13,0x22,0xf2,0xa6,0x88,0xbe,0x25,0x22,0xbf,0x2c,0x22,0x6f,0x3d,0x14,0xf0,
0x7e,0x3,0x3,0x55,0xb2,0x2c,0xfb,0xd0,0x74,0x3a,0xfd,0x8e,0xad,0xad,0xad,0x8f,
0x4e,0xa7,0xd3,0x6f,0x1e,0x8f,0xc7,0x65,0x5d,0xd7,0x88,0x24,0x8d,0x51,0x55,0x54,
0x75,0x6e,0xce,0x76,0xb4,0x8f,0x56,0x50,0x3b,0x82,0xef,0x5e,0x7d,0xd,0x36,0xb3,
0xf9,0xcf,0x4e,0xf0,0xfd,0x57,0x5a,0x30,0x20,0x92,0xfe,0x6e,0x36,0x9b,0x31,0x9d,
0x1a,0xb0,0x8d,0x88,0x3c,0x97,0x65,0xd9,0x73,0xc3,0xe1,0xf0,0xa3,0x2b,0x2b,0x2b,
0xc,0x87,0x83,0x8f,0x3b,0xe7,0x7f,0x58,0x55,0x7f,0xf3,0xa1,0x80,0x97,0x1c,0xdd,
0xc3,0x56,0xd5,0x43,0xce,0xb9,0x8f,0x6d,0x6e,0x6e,0x7e,0xf7,0x6c,0x36,0xfb,0xfa,
0xf1,0x78,0xfc,0xf4,0x74,0x3a,0x9d,0x3f,0xf4,0xf6,0x33,0xa8,0xba,0xf9,0xbf,0x93,
0xb9,0xed,0x34,0xd3,0x76,0x69,0x74,0x32,0x9f,0xbb,0xcd,0x75,0xf7,0xf9,0xbe,0x16,
0x2f,0xfe,0x3f,0xc6,0x8,0xad,0x5,0x48,0xbf,0x16,0x54,0x1d,0x21,0x44,0xcc,0x2,
0x4d,0xd3,0x10,0x42,0x43,0x8,0x81,0xe9,0x74,0xca,0xd6,0x56,0xfe,0xa1,0xe1,0x70,
0xf8,0x6b,0xc3,0xe1,0xf0,0xbf,0x76,0xce,0xfd,0x6d,0x60,0xf6,0x50,0xc0,0x3d,0x6d,
0x75,0xce,0x7d,0xd5,0x78,0x3c,0xfe,0xde,0xf1,0x78,0xfc,0x9d,0xdb,0xdb,0xdb,0x1f,
0x1c,0x8d,0x46,0x52,0xd7,0x35,0x9d,0x5f,0xf5,0xde,0x93,0xe7,0x39,0xde,0xfb,0xd6,
0xec,0xca,0x2e,0x73,0xdb,0x17,0x60,0x27,0xc4,0xd6,0xbc,0xcf,0x3,0xbf,0x10,0xc2,
0x5c,0x80,0x9d,0x50,0x17,0xff,0xdd,0x17,0x72,0x88,0x20,0x92,0x4c,0x82,0x68,0xfa,
0x2e,0xe7,0xc,0xf0,0x84,0x10,0x89,0x31,0x9,0x39,0xc6,0xc8,0x6c,0x36,0x63,0x34,
0xda,0x2e,0x8a,0xa2,0xf8,0xa9,0xe1,0x70,0xe5,0xa3,0x87,0xe,0x1d,0xfa,0xc1,0x18,
0xe3,0x67,0xbb,0xeb,0xfc,0x32,0x14,0xb0,0xb5,0xfe,0x4d,0xa9,0xaa,0xea,0x7b,0x37,
0x37,0x37,0xfe,0xe7,0x8d,0x8d,0x4d,0xdd,0xde,0xde,0x9e,0xb,0x22,0x9,0xb3,0x6f,
0x62,0xa5,0xe7,0x23,0xe5,0x26,0xd,0xec,0x4c,0x70,0x5f,0xe8,0x4d,0xd3,0xcc,0x35,
0x7d,0x99,0xf,0xbe,0xe5,0x83,0xf1,0x6e,0x7e,0x9d,0xfd,0x40,0xad,0x5b,0x38,0xce,
0x25,0x4d,0x8f,0x31,0x10,0xa3,0xd1,0x34,0x91,0xa6,0x19,0x53,0x55,0xf5,0xd7,0xcf,
0x66,0xb3,0xdf,0x19,0xe,0x87,0x3f,0xab,0xaa,0xff,0x5d,0x1b,0xb5,0x7f,0xf9,0x69,
0xb0,0xaa,0x52,0xd7,0xcd,0xb7,0xac,0xaf,0x6f,0xfe,0xc4,0x74,0x3a,0xd1,0xc9,0x64,
0x36,0x17,0x88,0xf7,0x1e,0xe7,0x1c,0x22,0x3a,0xf7,0xa9,0xc9,0xfc,0xda,0x92,0x68,
0x78,0xb7,0x79,0xed,0xfc,0x6a,0x5f,0xd8,0x7d,0x21,0xf7,0xdf,0x5f,0x74,0x13,0x8b,
0xdf,0x3,0x29,0x2a,0xc7,0xc,0xc3,0x16,0xb4,0x5c,0xdb,0xe8,0xbb,0x5b,0xb0,0xd6,
0x2e,0xaa,0xc0,0xd6,0xd6,0x76,0x39,0x9b,0xcd,0x7e,0x66,0x38,0x1c,0xfe,0x9b,0xde,
0xfb,0xbf,0x2e,0x22,0x7f,0xf0,0x65,0x23,0xe0,0x56,0x80,0xc7,0x27,0x93,0xf1,0x8f,
0x6e,0x6c,0x6c,0xfd,0x58,0x5d,0x37,0x9a,0xde,0x87,0x2c,0x2b,0x70,0x4e,0xda,0x40,
0x6a,0x51,0x80,0x32,0xd7,0xa8,0x9d,0x9f,0xb7,0x3e,0xcf,0x9d,0xfc,0x6e,0xd1,0xca,
0xa4,0x4b,0x91,0x25,0xb,0x62,0x7,0x2b,0x52,0xed,0x16,0x5,0x6d,0x4,0x6f,0xd4,
0x75,0x60,0x63,0x63,0xf3,0x9b,0x26,0x93,0xe9,0x6f,0x97,0xe5,0xe0,0xc7,0x8b,0xa2,
0xf8,0x1f,0x45,0xa4,0xf9,0x92,0x16,0xb0,0x73,0x8e,0xba,0xae,0xff,0xc4,0x78,0x3c,
0xfe,0xa5,0xad,0xad,0xed,0x8f,0x34,0x4d,0xb8,0x29,0x70,0x4a,0xc2,0xb5,0x7d,0x9,
0xaf,0x1f,0x5,0x2f,0xbe,0xbf,0x4c,0x3b,0xfb,0x3e,0x77,0xdf,0x2,0x66,0xb7,0x80,
0x97,0x9f,0x6f,0xf7,0xbf,0x3b,0xd,0x4f,0xfe,0xb9,0x5a,0x89,0xd1,0x7e,0x4e,0x55,
0xbf,0xa1,0x2c,0xcb,0xbf,0xae,0xaa,0x6f,0x77,0xe6,0xfe,0x4b,0x6,0xaa,0xec,0x5,
0x3c,0x3f,0x74,0xfd,0xfa,0xf5,0x7f,0x79,0xe3,0xc6,0xf5,0x8f,0x34,0x4d,0xdd,0x1,
0x9,0xb,0xd1,0xf0,0xce,0xcd,0x27,0x1f,0xb7,0xf3,0x5a,0xc,0xa2,0xfa,0x42,0xbb,
0x9d,0xc6,0xee,0x5f,0xb0,0x7d,0x8b,0x21,0x37,0x69,0xef,0xed,0xce,0xb7,0x93,0x66,
0x9,0xde,0xbb,0x6e,0x51,0xb3,0xbe,0xbe,0xfe,0xef,0xaf,0xaf,0xaf,0x7f,0xda,0xcc,
0xbe,0xa2,0x1f,0x13,0x7c,0xd1,0xb,0xb8,0x4d,0x3b,0x6,0x6b,0x6b,0x6b,0xff,0x60,
0x7d,0x7d,0xfd,0xef,0x4f,0x26,0x93,0x15,0x11,0xc5,0x39,0x8f,0x73,0x7a,0x53,0x10,
0xd4,0x17,0xec,0xa2,0xaf,0x5d,0xf4,0xb1,0xf,0x2a,0x38,0xb3,0x6c,0x41,0x34,0x4d,
0xc3,0xe6,0xe6,0xe6,0x7b,0x37,0x37,0x37,0x3f,0x19,0x63,0xfc,0xb3,0x7,0x5f,0x70,
0xf,0x98,0x80,0x7b,0x40,0xc2,0x73,0x37,0x6e,0xdc,0xf8,0xc7,0xd7,0xaf,0x5f,0xff,
0x8f,0xaa,0xaa,0x6a,0x53,0x9e,0xac,0xd,0xa2,0x64,0xe9,0xea,0x5f,0xf6,0x7a,0x90,
0x8f,0x65,0x41,0x5f,0x5f,0xd3,0xbb,0x4c,0x40,0x44,0x98,0xcd,0x66,0x8f,0x8f,0xc7,
0xe3,0x7f,0x18,0x63,0xfc,0x81,0xfb,0x91,0x46,0xf9,0x7b,0x75,0xc3,0xad,0x56,0x7e,
0x68,0x73,0x73,0xf3,0x97,0x36,0x36,0x36,0xbe,0x1a,0x20,0xcf,0x73,0xb2,0x2c,0x4b,
0x79,0x66,0x88,0x37,0xa5,0x3c,0x7b,0x69,0xc2,0xfd,0x5a,0xed,0x5f,0x88,0xd6,0x2e,
0xf3,0xcd,0xb,0xc8,0xdc,0x3c,0x2f,0xaf,0xeb,0x7a,0xa5,0xaa,0xaa,0x9f,0xcb,0xf3,
0xec,0x98,0x88,0xfe,0xac,0xaa,0xce,0xd3,0xc3,0x2f,0xa,0x1,0xb7,0xc2,0xfd,0x63,
0x1b,0x1b,0x1b,0xbf,0x36,0x1a,0x8d,0xde,0x95,0xf2,0xc6,0xf4,0xea,0xc0,0x8b,0x9b,
0x83,0x16,0xdb,0xb7,0xff,0x5c,0xfc,0x8e,0x7,0xe5,0xe8,0xae,0x6b,0x19,0x14,0xda,
0x7,0x5e,0x62,0x34,0xcc,0x82,0x56,0x55,0xf5,0x5f,0x39,0xa7,0xc3,0x10,0xc2,0xdf,
0xbc,0x57,0x7e,0x59,0xef,0x85,0x70,0x45,0xe4,0x1b,0xd7,0xd6,0xd6,0x7e,0x73,0x6b,
0x6b,0xeb,0x5d,0x5d,0xb9,0xd0,0x7b,0x3f,0x2f,0xdd,0xed,0x54,0x77,0xe8,0x5,0x4e,
0xec,0x32,0x69,0xcb,0x4,0xdb,0xf,0xb2,0x1e,0x24,0xed,0x5d,0x96,0x7b,0x2f,0x73,
0x3b,0x3b,0x82,0xd6,0xf9,0xf3,0xd8,0xdc,0xdc,0xfc,0xcf,0x37,0x37,0x37,0xff,0xfb,
0x9e,0x62,0x3c,0xb8,0x2,0x6e,0x1f,0xfc,0x77,0xdd,0xb8,0x71,0xe3,0x57,0x37,0x36,
0x36,0x1e,0xeb,0x84,0xdb,0xe1,0xbb,0xfd,0x8,0x58,0xb5,0x6f,0x82,0xe1,0x56,0xfe,
0xa8,0xb,0xba,0xbe,0x18,0x8e,0x3e,0x6c,0xba,0xd7,0x22,0xe8,0x84,0xe9,0x7d,0x32,
0xdb,0xdb,0xdb,0xdb,0x3f,0xb2,0xb6,0xb6,0xf6,0xa,0xf0,0x67,0xee,0xf6,0xe2,0xd5,
0xbb,0x75,0x53,0xed,0x85,0x7d,0xcf,0xfa,0xfa,0xfa,0x3f,0xdc,0xde,0xde,0x3e,0xaa,
0xaa,0x94,0x65,0x39,0x2f,0x7e,0xf7,0x71,0xe5,0xb4,0x52,0x6d,0x2e,0xe8,0xbd,0xf2,
0xd6,0xbd,0x2,0xaf,0x3b,0x4b,0x7b,0xee,0x9d,0x40,0xfb,0x85,0x90,0xbe,0x59,0x5e,
0x74,0x25,0xfd,0xc2,0x48,0x97,0x4a,0x15,0x45,0x81,0x99,0xb1,0xb1,0xb1,0xf1,0x15,
0x1b,0x1b,0x1b,0xff,0x27,0xf0,0xb5,0xf,0x9c,0x80,0x5b,0x1c,0xf8,0x3f,0x5c,0x5f,
0x5f,0xff,0xc5,0xd1,0x68,0xf4,0x88,0xaa,0x52,0x14,0x5,0x79,0x9e,0xdf,0x74,0x83,
0x5d,0x79,0x6f,0x27,0xc8,0xea,0x3c,0xb0,0x81,0x71,0x53,0xf9,0xe,0xd9,0x1d,0x91,
0xee,0xd6,0x84,0x4,0x21,0x2e,0xf5,0xdf,0xbb,0xde,0xb6,0x7d,0xbc,0xee,0x7e,0x9a,
0x74,0x2b,0x58,0xb4,0xb3,0x48,0x1d,0x16,0x0,0x30,0x1a,0x8d,0x1e,0xdd,0xde,0xde,
0xfe,0x79,0xe0,0x5d,0x1d,0x32,0xf6,0x8e,0xa,0xb8,0x8b,0x96,0xcd,0xec,0xfb,0x36,
0x36,0x36,0x7e,0x7e,0x7b,0x7b,0x7b,0xd5,0x7b,0xc7,0x60,0x50,0xe2,0x9c,0x6f,0xdb,
0x52,0x9a,0xfe,0x22,0xa0,0xae,0xeb,0xe5,0x11,0xa3,0xdd,0xde,0xcf,0x49,0xf,0x29,
0x7a,0xd0,0xa3,0xea,0xbd,0x4c,0x76,0xdf,0xfa,0xc4,0x98,0x9a,0x16,0xbc,0xf7,0xac,
0xae,0xae,0xe2,0xbd,0x67,0x3c,0x1e,0xff,0xc9,0xad,0xad,0xad,0xbf,0x63,0x66,0x3e,
0x61,0xef,0x72,0x80,0xd7,0x5d,0x8e,0xa2,0x5b,0xa1,0x7d,0xef,0xc6,0xc6,0xc6,0x2f,
0x8c,0x46,0xe3,0xc,0x4,0xef,0x73,0x9c,0xd3,0x56,0x4b,0x6d,0x6e,0x8a,0x3b,0x2c,
0xb9,0x2b,0x18,0x24,0x1f,0x9c,0xde,0x33,0x69,0x35,0x18,0x10,0x24,0x9,0x3b,0x82,
0x88,0x43,0x50,0x10,0xc1,0x30,0x9a,0x18,0x8,0xd6,0x20,0x6,0xde,0x25,0x53,0x2f,
0x80,0xcd,0x51,0xae,0xd8,0xbb,0xdf,0xb6,0x40,0x80,0x20,0xe6,0xda,0xb5,0xdc,0x69,
0x7c,0x87,0x6b,0x77,0x40,0x64,0xb7,0xba,0x62,0x6f,0xa5,0xe9,0xbe,0xdc,0xc0,0xee,
0x7a,0xf4,0x72,0x1,0xef,0x95,0x3e,0xed,0x98,0x77,0x6d,0x53,0xa9,0xa4,0x0,0xe3,
0xf1,0xf8,0x2f,0x80,0xfc,0x84,0xf7,0xd9,0x4f,0xd,0x6,0x83,0x79,0xf4,0x7d,0xd7,
0xd2,0xa4,0xfd,0x44,0x73,0xaa,0x4a,0x8c,0xf1,0xfb,0xd6,0xd6,0xd6,0x7e,0x61,0x6d,
0x6d,0x3d,0x53,0x75,0x64,0x59,0x41,0xaa,0xc0,0x2c,0x42,0x7e,0x7d,0x83,0x61,0xbb,
0x1e,0x2e,0x2,0xa2,0xe9,0xc1,0x9b,0x19,0x12,0x1d,0x62,0x82,0x33,0x45,0x2d,0x3,
0xf1,0x34,0x18,0x75,0xac,0xa9,0x62,0xa0,0xe,0xd,0x82,0x50,0x64,0x4a,0x86,0xc3,
0x89,0xb6,0xb,0x22,0xa4,0xaa,0x8f,0x18,0x38,0x23,0x12,0x31,0x22,0x82,0xe2,0x70,
0x8,0x82,0xb5,0xe7,0x8f,0xd8,0xbc,0x58,0x20,0x92,0x16,0x95,0x10,0xc1,0x22,0x58,
0x48,0xcb,0x4c,0x85,0x2f,0x14,0x88,0x58,0x56,0xc5,0xea,0xb,0x59,0x75,0xc7,0x5d,
0x85,0x10,0x71,0xce,0xe3,0xbd,0x50,0xd7,0x35,0xd3,0xe9,0xec,0xc7,0x57,0x56,0xfc,
0xef,0x8b,0xc8,0xaf,0xde,0xf5,0x3c,0x78,0x32,0xb9,0x7d,0x9,0x33,0xcb,0xb2,0xaf,
0xd9,0xde,0xde,0xfe,0xf9,0xad,0xad,0xad,0xac,0x33,0xd5,0x5d,0x64,0xbc,0x7b,0xb5,
0xc9,0x3c,0x25,0x4a,0xa9,0x10,0x60,0x3b,0x4d,0x6f,0x8,0x4,0x2,0xd1,0x8c,0xf4,
0x8c,0x85,0x8c,0x2c,0xf5,0x51,0x45,0x98,0x35,0x33,0x46,0xf5,0x98,0x69,0x9c,0x60,
0xe,0x32,0x37,0x20,0xc4,0xc8,0xda,0xd6,0x3a,0x1a,0x23,0x65,0x96,0xb1,0x32,0x2c,
0x28,0xf3,0x1c,0x51,0x47,0x8,0x35,0x4d,0x88,0x6d,0x43,0x86,0x2,0x3a,0xd7,0x6c,
0x71,0x8a,0xa,0x88,0x45,0x9a,0x56,0xe3,0xcd,0xc0,0x89,0xeb,0x5d,0x6b,0xd7,0x44,
0x77,0x30,0x77,0x70,0x3b,0x6d,0xbf,0x5d,0x27,0xc9,0x62,0x9c,0x12,0x63,0x2c,0xeb,
0xba,0xfe,0x6f,0xcc,0xec,0x73,0x22,0x72,0xee,0xae,0xa,0x78,0x3a,0x9d,0xde,0xd6,
0xf7,0x6e,0x6d,0x6d,0x4d,0xc7,0xe3,0xf1,0x76,0x8c,0xb1,0xf0,0xde,0xed,0x2a,0x18,
0xec,0x86,0xef,0xd8,0xf5,0x73,0x47,0xe6,0x9d,0x16,0xd9,0x8e,0x79,0x8d,0xad,0x36,
0xaa,0x60,0x2,0x8d,0x55,0x4c,0xe3,0x98,0x4a,0xc6,0xb8,0xd5,0xc8,0xea,0x91,0x55,
0x8e,0x1d,0x3e,0x46,0x53,0x47,0xd6,0x6f,0x5c,0x67,0x6b,0x63,0x93,0x6a,0x3a,0x43,
0x67,0xd,0xaa,0x46,0x91,0x15,0x28,0xe,0x45,0x71,0xd1,0x92,0x89,0x17,0x30,0xab,
0x5b,0xfb,0xe1,0x49,0x46,0x3d,0x22,0xa4,0xf6,0x9b,0x24,0xf9,0xf4,0x59,0x50,0xac,
0x2d,0x55,0x62,0xfd,0xc0,0x40,0xee,0x89,0x8f,0xee,0xa7,0x7e,0xad,0x45,0xec,0xf5,
0x83,0x9,0x4d,0xd3,0x7c,0x68,0x3a,0x9d,0xfe,0x64,0x59,0x96,0x1f,0xbf,0x6f,0x26,
0xba,0xbb,0xb8,0xd1,0x68,0xf4,0x27,0x36,0x37,0x37,0x1e,0x15,0x11,0x8a,0xa2,0x3c,
0xf0,0x8a,0xee,0x7c,0x9f,0xf5,0x3,0x9,0x55,0xd4,0x5a,0x38,0x2f,0x4,0xa6,0xcd,
0x84,0x98,0x4d,0x39,0x7c,0xcc,0xf3,0xe4,0xf3,0xc7,0x79,0xf6,0x85,0x27,0x78,0xfc,
0xf8,0x23,0x38,0x75,0xac,0x5f,0x7f,0x9a,0xb3,0x6f,0x5e,0xe6,0xec,0xc9,0xab,0xdc,
0xb8,0xba,0x4d,0xb5,0x35,0x66,0x98,0x2b,0x65,0x56,0xa2,0xea,0xf0,0x1a,0x71,0x2a,
0x98,0x4,0x9a,0x66,0x67,0x31,0x45,0x49,0x8b,0x49,0x89,0xc9,0x9c,0x63,0x8,0x6e,
0x9e,0x8b,0x9b,0x25,0x4f,0xad,0x72,0xcf,0xe4,0xbb,0x34,0x50,0xed,0xa3,0x5f,0xfd,
0xfc,0x7f,0x34,0x1a,0x7d,0xbf,0xaa,0xfe,0x9a,0xf7,0xfe,0x57,0xee,0x4,0xb,0xb8,
0xa3,0x20,0xab,0x69,0x9a,0x77,0x8d,0x46,0xa3,0x9f,0x69,0x9a,0xd0,0xa6,0x42,0x3b,
0x66,0x6d,0xaf,0x60,0x62,0xee,0x87,0xe6,0xbf,0x8f,0xbd,0xb4,0x48,0x50,0xf5,0x88,
0x2a,0x98,0xd2,0x34,0x10,0x9a,0x8a,0xca,0x2a,0x86,0x87,0x3d,0x2f,0x7c,0xf0,0x51,
0x3e,0xfc,0xaf,0xbf,0x9f,0xe7,0xdf,0xff,0x24,0xc3,0x61,0x8d,0x53,0xa5,0x1a,0x3f,
0xce,0x33,0xef,0x3e,0xce,0xe3,0xcf,0x5e,0xe1,0xcd,0x97,0x2f,0xf1,0xf6,0x85,0xd,
0xa6,0x9b,0x35,0xd5,0xc4,0xc8,0x7c,0x4e,0xee,0x1c,0xe2,0x85,0x64,0x93,0x33,0xb0,
0x48,0x68,0x92,0x40,0x9d,0x82,0x13,0x45,0x45,0x5a,0x7f,0x1c,0x53,0x40,0x28,0xa,
0xe2,0x53,0xa0,0xd7,0x45,0x7a,0xf7,0x50,0xba,0x7d,0x0,0xa8,0x8f,0x27,0x2c,0x46,
0xd9,0xd3,0xe9,0xf4,0xa7,0x86,0xc3,0xe1,0xa7,0x9d,0x73,0x57,0xef,0x8a,0x80,0x6f,
0x5,0x7c,0x8b,0x88,0x6c,0x6d,0x6d,0xfd,0x58,0x55,0x55,0x2f,0x74,0x10,0x64,0x67,
0xd3,0xe,0xa,0x3e,0x8,0xd6,0xea,0x6e,0xdb,0xa,0xdb,0xfe,0xf9,0x2c,0x46,0xaa,
0xa6,0x41,0xa,0xe1,0xd8,0x13,0x87,0xf9,0xc0,0xbf,0xf6,0x2c,0x1f,0xfe,0xea,0xe7,
0x79,0xfc,0x5d,0x8f,0x30,0x69,0xae,0x62,0xb1,0xe1,0x11,0x4a,0x8e,0x3e,0x79,0x84,
0xc7,0x9e,0x7d,0x8c,0xc7,0x9f,0x79,0x8c,0xd7,0x5f,0x3e,0xcf,0x99,0xd7,0x2f,0xb1,
0x76,0x79,0x8b,0xc9,0xb4,0xa2,0x89,0x39,0x75,0xf4,0xa9,0x26,0x2b,0x9e,0x48,0x24,
0x36,0x1,0xc5,0x10,0x27,0x64,0xde,0x81,0x42,0xb0,0x48,0x1d,0x2,0x21,0x6,0x10,
0x70,0xde,0x50,0xd1,0xb6,0x65,0xe3,0xde,0xe7,0x64,0xcb,0xcc,0xf5,0x62,0x11,0xa3,
0xae,0xeb,0xaf,0xa,0x21,0xfc,0xa0,0xf7,0xfe,0xa7,0xef,0x8a,0x80,0xf7,0xb2,0xf7,
0x22,0x42,0x5d,0xd7,0x5f,0x37,0x9d,0x4e,0x7f,0x40,0x44,0xda,0xa,0x49,0x17,0x19,
0xeb,0x4e,0xda,0x21,0xcb,0xbf,0x43,0x16,0x62,0x68,0x11,0x43,0x71,0x60,0x1e,0x93,
0x14,0xf5,0x42,0x68,0xf1,0x6a,0x61,0x65,0x50,0x72,0xfc,0xa9,0x23,0x3c,0xfd,0xde,
0xe3,0xac,0x1e,0xf7,0xcc,0xdc,0x88,0x51,0x55,0x11,0xea,0x9a,0x4c,0x85,0x6c,0x18,
0x38,0xf2,0x42,0xce,0x47,0x8e,0x3d,0xc9,0xe3,0xef,0x5e,0xe1,0xb9,0xd7,0x8e,0xf0,
0xfa,0x8b,0x67,0x38,0xf3,0xc6,0x55,0xd6,0xaf,0x6e,0x33,0xae,0x32,0x4a,0x6,0xc,
0xf3,0x12,0xaf,0x19,0x2a,0xae,0xcd,0xa0,0x22,0xa1,0xb6,0x94,0x4a,0xa9,0xc3,0xa9,
0x22,0xd2,0x41,0x26,0x81,0x60,0x11,0x77,0x1f,0x84,0xdb,0x2f,0x48,0x2c,0x36,0x12,
0x74,0x11,0x78,0xa7,0x40,0x55,0x55,0xfd,0xa7,0xde,0xfb,0xff,0x43,0x44,0x4e,0xdc,
0x33,0x1,0x3,0x6c,0x6f,0x6f,0xff,0xad,0xa6,0x69,0x32,0xe7,0xdc,0xfc,0xe4,0x21,
0x4,0xfa,0xc8,0xcb,0x5e,0x7f,0xde,0x77,0x69,0x29,0x68,0x36,0xc4,0xd2,0xe2,0x48,
0x41,0x4f,0x6b,0x16,0x23,0x44,0x13,0x7c,0x96,0x71,0xf8,0x91,0x21,0x47,0x8e,0xaf,
0x10,0xfd,0x94,0xed,0xed,0x31,0x93,0xca,0x68,0x6a,0x41,0x99,0x52,0x14,0xd,0x83,
0x72,0xc0,0xa1,0xa7,0x87,0xac,0x1c,0x3b,0xcc,0x91,0x27,0x33,0x8e,0x3e,0x55,0xf0,
0xe8,0xb3,0x87,0x38,0xf5,0xda,0x15,0xae,0x5e,0xdc,0x62,0xb2,0x35,0x66,0xbb,0xaa,
0xc9,0xd4,0x53,0xb8,0x9c,0xcc,0x79,0x4,0x87,0x35,0xe9,0x3c,0x44,0x10,0x7,0xce,
0x19,0x91,0x40,0x13,0x53,0xc4,0x6d,0x68,0x72,0x19,0xf7,0x11,0x10,0xe9,0x6b,0xf3,
0x4e,0xf7,0xa6,0x23,0x84,0xc0,0x6c,0x36,0x3b,0x24,0x22,0x7f,0xab,0x28,0x8a,0x7f,
0xe7,0x20,0x1,0xd7,0x81,0x4,0xdc,0x34,0xcd,0x9f,0xaf,0xaa,0xea,0x1b,0x3b,0xed,
0x9d,0x37,0x89,0x63,0xfb,0xb3,0x0,0x8b,0x45,0x84,0xd6,0x3c,0x1b,0x9a,0xf2,0x55,
0xd,0x8,0x9a,0x80,0x87,0x68,0xc4,0x98,0x52,0x9b,0x2c,0x57,0x9a,0x38,0x61,0x32,
0x9d,0x60,0xf1,0x11,0xc4,0x1c,0x91,0x8a,0x2a,0x1a,0x56,0xcd,0xa8,0xeb,0x19,0x6a,
0x8e,0xc1,0xb1,0x9c,0x8f,0x7c,0xed,0xf3,0x3c,0xff,0xbe,0xa7,0x38,0x73,0xf2,0x12,
0x2f,0x7d,0xfe,0x55,0xde,0x78,0xf9,0x1c,0x6f,0x9f,0x19,0x53,0x4d,0x1d,0x41,0x4a,
0x4a,0x2d,0xc9,0xb5,0x4c,0x8b,0xd3,0x4,0x42,0xa4,0x89,0xd,0x31,0x6,0x4c,0x3,
0x88,0xd1,0x65,0xc6,0xf7,0xab,0xaf,0xb9,0x5f,0x80,0x58,0x56,0xa4,0xe8,0x6,0xe9,
0xaa,0x59,0xf5,0xed,0x59,0x96,0x7d,0xb3,0xcb,0xdc,0x27,0xf7,0x8b,0xae,0xee,0x5b,
0xc0,0x6d,0x37,0xc2,0x7f,0x16,0x63,0x1c,0x74,0xdd,0x18,0x5d,0x95,0x67,0xa7,0x51,
0x6e,0x59,0x9a,0x24,0x7b,0x6a,0xf0,0x3c,0x55,0x6a,0x61,0x48,0x15,0x92,0xb8,0x45,
0x20,0x2a,0xa1,0x89,0xc4,0x26,0x26,0x88,0xa2,0xb5,0x18,0xb1,0x4a,0xfa,0x6e,0x9a,
0xa3,0xd1,0x88,0x55,0x64,0x66,0x1,0x91,0x48,0xe6,0x1b,0x7c,0x1e,0x58,0x7d,0xdc,
0xf3,0xee,0xfc,0x28,0x87,0x1e,0x7d,0xf,0xcf,0x3c,0xbf,0xca,0x1b,0x9f,0xdf,0xe0,
0xf2,0x99,0xd,0x36,0xae,0x6f,0xb3,0xb1,0x31,0x46,0xeb,0x9c,0xa1,0x1b,0x30,0xc8,
0x57,0xc9,0x7d,0x86,0x8b,0x60,0xd1,0x30,0x2,0xaa,0x6d,0xa5,0x2b,0xde,0x9f,0x28,
0x7a,0xd1,0xdf,0xde,0x4a,0x6,0x75,0x53,0x1f,0xaa,0xea,0xea,0xc7,0x57,0x8a,0x95,
0x4f,0xee,0x37,0xa2,0x5e,0x2a,0xe0,0xc5,0xf1,0x45,0x55,0x65,0x3a,0x9d,0x7e,0xf7,
0x64,0x32,0xf9,0xea,0x18,0xe3,0xfc,0xf7,0x8b,0x8d,0xe5,0xfd,0x68,0xf0,0x56,0x17,
0xda,0xd5,0x7f,0x77,0xc2,0xac,0xd6,0x7f,0x5b,0x6c,0x8b,0xe,0x3e,0x5,0x5e,0x41,
0xe6,0x42,0x76,0xea,0xc9,0x7d,0x4e,0x53,0xc5,0xf6,0x73,0xe,0x89,0x29,0xa3,0x35,
0x53,0x8c,0x48,0x1d,0x1a,0x36,0x67,0x1b,0x64,0x22,0xe4,0xa5,0xf2,0x9e,0xf,0x3c,
0xc9,0xd3,0x4f,0x3f,0xce,0x93,0x4f,0x6c,0xf3,0xd6,0x89,0xcb,0x9c,0x7a,0xed,0x2,
0x67,0x5f,0x7b,0x9b,0xcd,0x6b,0x33,0x26,0x95,0x81,0x39,0x30,0x49,0xbe,0x59,0x1c,
0x2a,0x69,0xa1,0xc8,0x12,0x78,0xfc,0xd6,0x32,0xde,0xfd,0xc9,0xfd,0xd4,0xac,0xf7,
0xaa,0x1d,0xef,0x55,0xa9,0xea,0x14,0xaa,0xaa,0xaa,0x3f,0x95,0xd7,0xf9,0x47,0x9d,
0x77,0x9f,0x88,0xfb,0x30,0xd5,0x7e,0x3f,0xa8,0x8b,0x6a,0x9a,0x40,0x98,0xcd,0x66,
0xe5,0xa2,0xf0,0x3b,0x1,0x2f,0xd6,0x40,0xf7,0x5b,0xeb,0x10,0x49,0xf,0x19,0x33,
0x9a,0x58,0x21,0x21,0xf9,0x46,0xa7,0x3,0xb2,0x2c,0x41,0x91,0xa1,0x89,0x34,0xb5,
0x11,0x1b,0x70,0x41,0x90,0xd0,0x4e,0xff,0x69,0xeb,0x2f,0xe7,0xb8,0x73,0xb2,0xb0,
0x86,0xd1,0x4,0xa3,0x9e,0x19,0x45,0x59,0xf0,0xfe,0xf,0x3f,0xc2,0x13,0x4f,0x1e,
0xe7,0xf9,0xe7,0x9f,0xe6,0xe4,0x53,0x97,0x38,0xf5,0xca,0x15,0x2e,0x9f,0x59,0x67,
0xb2,0x3e,0xa5,0x9a,0xd6,0xc,0xf2,0x92,0x62,0x90,0x6a,0xb3,0x51,0x22,0x66,0xb1,
0x8d,0xec,0xef,0x8f,0x79,0xee,0xb,0x70,0x31,0xf,0x5e,0x94,0x49,0x5d,0xd5,0x87,
0x66,0xd5,0xec,0x3f,0x58,0xc9,0x56,0x3e,0xb1,0x9f,0x40,0xd0,0x73,0x1b,0x6f,0xd9,
0xa,0xf7,0xdb,0xa7,0xd3,0xd9,0x77,0xa4,0x13,0xa5,0x1e,0xe6,0x4,0xe5,0x69,0xaf,
0x20,0xb5,0x83,0xc,0xdc,0x6a,0xf5,0x5a,0xcf,0xec,0x25,0xa3,0x1e,0x11,0xab,0xdb,
0x82,0x81,0x6b,0x71,0xec,0x80,0x93,0x3a,0xa5,0x2b,0xaa,0x4,0x8c,0xd0,0x8e,0x88,
0xb8,0xb6,0x34,0x20,0x6d,0xeb,0x8b,0x68,0x77,0xce,0x24,0xe0,0x14,0xc2,0x43,0x63,
0x10,0x66,0x81,0x22,0xf,0xac,0xc,0x1c,0xc7,0x9f,0x39,0xcc,0xca,0xa1,0x82,0xa3,
0xc7,0x87,0x3c,0xf6,0xec,0x21,0x4e,0xbe,0x7c,0x89,0x73,0x27,0xaf,0x72,0xfd,0xe2,
0x16,0x93,0x71,0x45,0x35,0xce,0x29,0xaa,0x1c,0xe7,0x15,0xef,0x4,0xcd,0xc,0x68,
0x88,0x21,0x5d,0xa5,0xb5,0xb0,0xea,0x1c,0x3f,0x6f,0x47,0x54,0x8d,0xd4,0xcb,0x3d,
0xcf,0x9d,0x65,0x79,0x1,0xe2,0x20,0x40,0xd0,0x62,0xea,0xd4,0x9f,0xb5,0x8a,0x31,
0xd2,0xd4,0xcd,0xbf,0x15,0x83,0xfd,0x1b,0x2b,0x83,0xc1,0xa7,0x55,0x6e,0x3d,0x9b,
0xbc,0x54,0xc0,0x55,0x55,0xed,0x32,0xd7,0xd3,0x69,0xf5,0x9d,0x75,0xdd,0x94,0xaa,
0xbe,0x9d,0xdc,0x57,0x76,0x26,0xef,0x8c,0x10,0x76,0x37,0x7f,0xef,0xa7,0x3e,0x69,
0x69,0xf5,0x40,0x6c,0x10,0xab,0x89,0xe6,0x9,0x7e,0x80,0xfa,0x6,0x74,0x6,0x71,
0x8c,0x45,0x68,0x24,0x12,0x32,0xa0,0x2d,0x8,0x5,0xb7,0xb3,0xfe,0x76,0x7b,0xfd,
0x1d,0xcb,0x12,0xe6,0xe5,0x28,0x63,0xda,0xd4,0xd4,0xdb,0x5b,0x64,0xde,0xe1,0x56,
0x84,0x27,0xbf,0x62,0xc8,0x23,0xcf,0x3d,0xc5,0xf1,0xf7,0x17,0x1c,0x7f,0x39,0xe7,
0xcd,0x3f,0xba,0xc4,0x85,0x37,0xd6,0x18,0x5d,0x9d,0x10,0x67,0x91,0x7c,0xb6,0x82,
0x16,0x8e,0x4c,0x2a,0xd0,0x6,0xa2,0xa5,0x22,0x85,0x8,0xb1,0x3d,0x4d,0x17,0x80,
0xc5,0xb6,0xc6,0xe1,0xd4,0x21,0xce,0x81,0xd5,0x73,0x8c,0x7d,0xd1,0x5d,0xf5,0xeb,
0xd8,0x8b,0x29,0x51,0xf7,0x99,0xce,0x3a,0x2e,0xfb,0xff,0xae,0x7a,0x78,0xb0,0x63,
0xa1,0x6e,0x7e,0xc5,0x4a,0xfb,0xa8,0x89,0x7c,0xd6,0xe,0xee,0x83,0xfd,0xfc,0xa2,
0x42,0x8,0xcf,0xcf,0x66,0xb3,0xef,0xdc,0x81,0xd4,0x74,0x5e,0x6c,0xdf,0x3d,0x4a,
0xb2,0x3f,0xd,0xee,0x1b,0x89,0x4e,0x83,0x77,0xd4,0x5a,0x5b,0x6d,0xa0,0x4d,0x9b,
0x22,0x62,0x71,0x5e,0x4,0x50,0x84,0xd8,0x2f,0xa,0x5b,0xd2,0x2a,0xe9,0xb9,0xc1,
0xb6,0x8e,0x31,0xbf,0xb2,0x60,0x46,0x13,0x1a,0xaa,0xd8,0xe0,0xc4,0x31,0xf0,0x19,
0xe5,0xd1,0x21,0xef,0x1a,0xe6,0xac,0x1e,0x19,0xf2,0xf8,0x93,0x47,0x39,0xfb,0xc2,
0x35,0x2e,0xbe,0xb6,0xc9,0xd5,0x33,0x63,0xd6,0x2f,0x4d,0x19,0x6d,0x46,0x86,0x53,
0x47,0x59,0x66,0x14,0x83,0xc,0xef,0x8d,0xc6,0x1a,0xea,0xa6,0xc6,0x22,0x88,0x3a,
0x50,0xc5,0x82,0x24,0xf7,0xe0,0x35,0x79,0x99,0xc6,0xc0,0x2,0x22,0x6e,0xa9,0x20,
0x97,0x35,0xef,0xef,0x35,0xdd,0xb8,0x4c,0xa3,0xe7,0xb,0x22,0x1a,0x55,0x55,0x3d,
0x16,0x42,0xf8,0x8b,0xaa,0xfa,0xd9,0x3,0x6b,0x70,0x59,0x96,0xf3,0x15,0x34,0x1e,
0x8f,0xbf,0xb1,0xaa,0xaa,0xf,0xf6,0x87,0xad,0xfb,0x1d,0x9,0x8b,0x33,0xba,0x7,
0x41,0xb3,0xa4,0xab,0xf8,0x88,0xf5,0xea,0xb2,0xd6,0xd5,0x10,0xdb,0xe1,0x33,0x45,
0x6e,0xaa,0xe0,0x2e,0x71,0x26,0xb2,0x2c,0x18,0x12,0xa2,0x25,0xfc,0x39,0x44,0x60,
0x1a,0x69,0x62,0xcd,0xa0,0x14,0xf2,0xdc,0xf3,0xc4,0xb3,0x47,0x38,0x7a,0x74,0x85,
0xa7,0x9f,0x3d,0xce,0x85,0x77,0x6d,0xf0,0xe6,0x4b,0x6f,0xf3,0xd6,0x89,0xab,0x5c,
0x3b,0xbf,0x4d,0xb5,0xa5,0x58,0x25,0x44,0xa7,0x14,0x24,0xb7,0xe4,0x44,0x30,0x42,
0x5b,0x55,0x8e,0xe0,0x92,0x8b,0x8a,0xe8,0x9c,0x51,0x40,0x7a,0x5,0x94,0xc5,0xe7,
0xd3,0x99,0xd8,0xc5,0x0,0xeb,0x20,0xcf,0xac,0x7b,0xf6,0x21,0x4,0xea,0xba,0xf9,
0x7a,0x33,0x3b,0x62,0x66,0xeb,0x77,0x54,0x4d,0x52,0x55,0x3f,0x99,0x4c,0xbe,0x2b,
0x84,0xb0,0x8b,0x54,0x65,0xaf,0x62,0xf7,0x3,0xd9,0xbf,0x2c,0xa4,0x52,0xa4,0x26,
0x55,0xaf,0x63,0x20,0x4c,0x47,0xf8,0xc6,0x28,0xbc,0xa3,0x5c,0x2d,0x78,0xf2,0xbd,
0xc7,0x38,0x7c,0xf4,0x11,0x8e,0x3c,0x71,0x94,0x27,0xde,0x7d,0x8c,0xb3,0xaf,0x5d,
0xe5,0xc2,0x89,0x35,0x6e,0x5c,0x1a,0xb1,0x3e,0xae,0xc8,0xc6,0x25,0x2b,0x45,0x49,
0x5e,0xe6,0xa0,0x53,0xcc,0x26,0x40,0x85,0x13,0x87,0xb8,0x82,0x2a,0x15,0xab,0xc8,
0x9d,0xe2,0x35,0x2d,0xd3,0xfe,0xc8,0x8d,0x73,0x6e,0xce,0x46,0xd0,0x9,0xf9,0x4e,
0x9b,0x8,0xbb,0x67,0x1c,0x42,0x60,0x56,0xcd,0xbe,0xc6,0xfb,0xe1,0xd3,0x4e,0x75,
0x7d,0x2f,0x2d,0xde,0x33,0x4d,0x6a,0xa3,0xba,0xf,0xcc,0x66,0xb3,0x3f,0xd7,0x77,
0xf6,0x8b,0x34,0x7,0x5f,0x4,0xd,0x34,0xa9,0x2c,0x2c,0xd6,0x7a,0xe7,0x90,0x3a,
0x43,0x66,0x46,0x6c,0x3c,0x31,0x38,0x6,0x79,0x46,0xf9,0x48,0xc6,0x33,0xef,0x3b,
0xcc,0x23,0x8f,0xb,0x4f,0xbe,0x2b,0xe7,0xdc,0x33,0x87,0x78,0xeb,0xe5,0x6b,0x9c,
0x79,0x73,0x8d,0x8d,0xcb,0x35,0xd5,0x18,0x86,0xa1,0xa0,0x2c,0x15,0x9f,0x79,0x54,
0x8d,0x68,0x82,0xc4,0xe4,0x93,0x93,0x27,0x89,0x98,0x93,0xa5,0x85,0xfe,0xbe,0x40,
0xfb,0x5a,0x7c,0xd0,0x67,0xd8,0xef,0x4b,0xb,0x4d,0x58,0x1,0x7b,0x41,0x44,0x5f,
0x39,0x70,0xb1,0xa1,0x4d,0x7d,0xbe,0xa1,0xae,0xeb,0xe1,0xb2,0x86,0xb7,0xbd,0x60,
0xb6,0x7,0x4f,0xbe,0x86,0x53,0x69,0xcb,0x84,0x75,0xca,0xbc,0x45,0x11,0xf3,0x84,
0xda,0x31,0xaa,0x8c,0xd9,0x74,0x4a,0xe1,0x85,0xb2,0x84,0x47,0xf,0x39,0x1e,0x79,
0xec,0x8,0x8f,0x3f,0xfd,0x8,0xc7,0x9f,0x39,0xcc,0xa1,0xc7,0x2f,0xf1,0xc6,0x1f,
0x5d,0xe7,0xc6,0xc5,0x9,0xb3,0x59,0x44,0x66,0xa,0x78,0x7c,0xe7,0x50,0xc,0x32,
0xb1,0x94,0x52,0xcf,0x9f,0x8d,0xdb,0x55,0x2,0xec,0x5e,0x5d,0x7f,0xda,0xa2,0xc5,
0x3b,0xb0,0x6b,0xeb,0x4,0x1c,0x2,0x75,0x13,0xbe,0x36,0xa8,0xfd,0xd3,0x3,0x69,
0x70,0xdb,0x94,0x7d,0x68,0x36,0x9b,0xfd,0xa5,0x9d,0x6e,0xd,0xbd,0x49,0xc0,0x8b,
0xf9,0xef,0x83,0xa8,0xd1,0x2,0x10,0xd,0xa1,0x1,0x89,0x88,0x2a,0x4e,0x3d,0xa2,
0x39,0x16,0x3c,0x4d,0x2d,0xc4,0xba,0x66,0x16,0x2b,0xcc,0x6a,0x82,0x5,0x9c,0x57,
0x86,0x4f,0xe,0x78,0xef,0xa1,0xc7,0x38,0xf6,0xae,0x43,0x3c,0xf7,0x81,0x1b,0x9c,
0x7a,0xe9,0x6d,0xce,0xbd,0x76,0x83,0xb5,0xcb,0x63,0xb6,0x46,0x86,0x43,0xc9,0x72,
0x4f,0x9e,0x39,0xf2,0xcc,0x10,0x15,0x1a,0xd3,0xb9,0x7f,0x5c,0xc,0xa0,0xfa,0x2,
0x58,0xe4,0xf,0x39,0xb0,0x6,0xb7,0xcf,0xbd,0x9,0x81,0xba,0x69,0xbe,0xd1,0xe7,
0x7e,0x15,0x6c,0x7b,0xdf,0x2,0x5e,0x5d,0x5d,0x25,0xc6,0xf8,0xdc,0xc6,0xc6,0xc6,
0xb7,0xf4,0xcd,0x48,0x5f,0x90,0xfd,0xe0,0xa1,0x8f,0x6e,0x3d,0x78,0xa,0x9c,0x12,
0x56,0x27,0x2,0x96,0xa1,0x68,0x42,0xb0,0xda,0x7c,0xdb,0xab,0x25,0x64,0x4c,0x20,
0x34,0xc2,0xb4,0x11,0xf0,0x11,0x29,0xa7,0x14,0xc7,0xa,0x9e,0x39,0xb2,0xc2,0xa3,
0x4f,0x16,0x3c,0xf5,0xdc,0x90,0x53,0xcf,0xad,0x72,0xea,0xa5,0xeb,0x5c,0x78,0x6b,
0x8b,0xad,0xb7,0x2b,0xaa,0xba,0x4e,0x69,0x5e,0x4,0x9f,0x39,0xd4,0xa5,0xe8,0x7a,
0x19,0xe8,0x73,0xab,0xd9,0xe5,0x3,0x59,0x3f,0x33,0x62,0x67,0xf6,0x2d,0xd2,0x34,
0xf5,0x37,0xe4,0x65,0x76,0x54,0xd5,0x6d,0x1f,0xc4,0x7,0xcb,0x74,0x3a,0xfb,0xf3,
0x21,0x4,0xe9,0x6b,0xe6,0x5e,0xd4,0x43,0x77,0xb2,0x12,0xef,0xb7,0x16,0xab,0x39,
0x44,0x33,0x30,0x21,0x36,0x91,0x10,0x66,0x44,0xa9,0x71,0xde,0xf0,0x79,0x8e,0xd3,
0xc,0xb,0x25,0x4d,0x5,0x55,0x98,0x11,0xd8,0xa4,0xa,0x23,0xa,0x37,0x60,0x70,
0x64,0xc0,0x7b,0xbe,0xf2,0x38,0x4f,0x3c,0x7d,0x9c,0x77,0xbd,0x7b,0x9d,0xd7,0x3e,
0x7f,0x99,0x93,0x2f,0x5d,0xe4,0xda,0xf9,0x75,0xaa,0xed,0x8a,0xd1,0xc,0x5c,0xe3,
0x29,0xca,0x12,0x75,0x37,0x6b,0x67,0x3f,0x86,0xe9,0x15,0x6e,0xee,0xcc,0xea,0x75,
0x96,0x21,0x46,0xa2,0x19,0x21,0x86,0x61,0x8,0xe1,0x2b,0xcd,0xec,0xdc,0x1,0xa0,
0x4a,0x7d,0xa2,0xaa,0xaa,0xbf,0xd4,0x99,0x9a,0xc5,0xb,0x5e,0x6,0x65,0x3e,0xb8,
0x13,0x80,0x9a,0x32,0x31,0x3a,0xb4,0x24,0x5,0x5d,0x4e,0x24,0x69,0xb5,0x44,0x2c,
0xd6,0x4,0x13,0x2c,0x78,0x62,0xcc,0x10,0xc,0x67,0x19,0x4,0xa8,0x6a,0xa3,0x99,
0xd5,0x94,0xde,0x53,0x1e,0x2d,0x78,0xe1,0x8f,0x3d,0xca,0x91,0x27,0xa,0x9e,0x7d,
0xf7,0xa,0xa7,0x4e,0x5c,0xe6,0xec,0x1b,0xd7,0xb8,0x72,0x6e,0x93,0xf1,0xe6,0x94,
0x7a,0x54,0xe3,0x7d,0x36,0xa7,0x2d,0x5c,0x56,0x48,0x58,0x1c,0x4c,0xbb,0xd3,0x29,
0xd,0x51,0x6d,0x3b,0x51,0x2,0xa1,0x9,0x5f,0x63,0x6a,0x9f,0x68,0xb,0x74,0xb7,
0x17,0x70,0x5d,0xcf,0x3e,0x56,0xd7,0xf5,0x7b,0x97,0xad,0xbc,0xdd,0x6c,0x70,0xf1,
0xa6,0xc8,0xee,0x7e,0xa5,0x4b,0x89,0xa1,0x4e,0x50,0xb5,0x44,0x77,0xb4,0xab,0x44,
0x10,0x77,0x2a,0x55,0x8,0xa6,0x2e,0xdd,0xf9,0xbc,0x25,0xd6,0xe6,0xc5,0x7f,0xcc,
0xd1,0xc4,0x4,0xaa,0x58,0xa8,0x52,0x57,0x87,0x82,0x52,0x42,0x28,0xa9,0x1b,0x61,
0x52,0x7,0xa6,0x3a,0x63,0x30,0x8,0x1c,0x5a,0xcd,0x79,0xea,0xf0,0x21,0x8e,0x3e,
0x51,0x72,0xfc,0x99,0x55,0x8e,0x3d,0x71,0x88,0x37,0x5e,0xbe,0xcc,0xe5,0x53,0x1b,
0x8c,0xae,0x36,0xd4,0x55,0x20,0x86,0x9a,0xd0,0x4,0xb2,0xcc,0xa3,0xce,0x21,0x2a,
0x48,0x94,0x79,0x6b,0x70,0xff,0x99,0xed,0xdb,0x4c,0x77,0x96,0x72,0x3e,0x0,0x20,
0x8,0x4a,0x34,0x88,0x31,0x7e,0x50,0x44,0x6,0xc0,0x68,0xbf,0x51,0xf4,0xbf,0x17,
0x42,0x53,0xdc,0x6e,0x4c,0x33,0xc6,0xf8,0x45,0x91,0x2a,0xd5,0x31,0x75,0x51,0xd2,
0x56,0x8a,0x52,0x8d,0x42,0x1,0x87,0x50,0xb4,0x4b,0x23,0x82,0x6b,0x30,0x1d,0x27,
0x38,0x6c,0x56,0x80,0x79,0x32,0x51,0xf0,0x91,0xe0,0x2,0x55,0xac,0x59,0x1b,0x6d,
0x91,0x67,0x30,0x18,0xc,0x78,0xe6,0x7d,0x8f,0x72,0xf4,0xd8,0x11,0x9e,0x7d,0xcf,
0x63,0x9c,0x7e,0x79,0x8d,0xd3,0xbf,0xbf,0xc5,0x95,0xf3,0x6b,0x6c,0x6e,0xdd,0x60,
0x3c,0x1a,0xe3,0x32,0xcf,0xca,0xca,0x90,0xc2,0x17,0xa8,0x57,0xea,0x50,0x13,0x9b,
0xdd,0x0,0xd1,0x9d,0xb8,0x36,0xe9,0x5a,0x24,0xc4,0x52,0xe3,0xa2,0xd9,0x7,0xb3,
0x2c,0xdf,0xbf,0x80,0x9b,0xa6,0xf9,0x5c,0x8,0xe1,0x5b,0xe,0x2,0x90,0xdf,0x9f,
0xa3,0x8d,0xe0,0xad,0x15,0x94,0xda,0x92,0xc9,0xc4,0x9d,0x51,0x8e,0x8e,0xf5,0x46,
0xda,0x19,0xa7,0x39,0xef,0x15,0x3b,0xcd,0x7e,0xf3,0x4e,0x94,0x79,0x10,0x14,0x3a,
0xc0,0xb9,0xa5,0x4f,0xa,0x68,0xdb,0x82,0x14,0x9a,0x48,0x65,0xd,0xa1,0x1,0x2d,
0x1a,0x7c,0x59,0x70,0xf8,0xa9,0x15,0xca,0xc3,0x19,0x87,0x8f,0x1f,0xe2,0xf8,0xd3,
0xdb,0x9c,0x3f,0x59,0x72,0xfa,0x64,0xe4,0xdc,0xc9,0xb7,0x19,0x5d,0x9f,0x11,0x36,
0x85,0xd5,0x12,0x6,0x83,0x82,0x4c,0x3d,0xa6,0x46,0x30,0xc3,0xa8,0x5b,0xa5,0xdc,
0x27,0x99,0xe9,0xa2,0x75,0x54,0x41,0x63,0xa2,0x79,0x8a,0xc1,0x9e,0xb3,0x68,0x87,
0x80,0x6b,0xfb,0x14,0x70,0x78,0xcd,0xcc,0x66,0xce,0xb9,0x62,0x2f,0x21,0xf7,0xe6,
0x92,0xee,0xb3,0xe0,0xe3,0x3e,0xaa,0xb4,0x3b,0xdd,0x18,0xaa,0x7d,0xd9,0xea,0xce,
0x5f,0x68,0xea,0xec,0xec,0x7a,0xa6,0x53,0x8b,0xa7,0x60,0x96,0x6,0xe6,0xcc,0x35,
0x98,0xb6,0xcd,0x78,0xed,0xb8,0x8d,0x37,0xf0,0x9a,0x23,0x26,0x34,0x53,0x63,0xbb,
0x99,0xe2,0x5d,0x83,0x2f,0x3d,0x8f,0xbe,0x6f,0x85,0x63,0xef,0x2f,0x78,0xea,0x8a,
0x72,0xec,0x25,0xa5,0xf8,0xb4,0x72,0xf6,0x73,0xeb,0x6c,0x5e,0x9,0x4c,0xa7,0x15,
0x12,0x23,0x65,0x51,0xe2,0xb3,0x2,0x95,0x48,0x65,0xd3,0x94,0x92,0x69,0xb1,0xeb,
0x3e,0xfa,0x10,0x70,0x87,0x47,0x2c,0x7b,0xbe,0xe,0x8,0xa4,0x61,0x8c,0x10,0x63,
0xd1,0x84,0xe6,0x3d,0xc0,0xa9,0xfd,0x76,0x74,0xbc,0x1b,0x28,0x6e,0xd5,0x9d,0xb1,
0x2c,0xc7,0xbb,0xd7,0xe6,0xda,0x5a,0xbf,0xda,0xb9,0xdc,0xbd,0xe7,0x8a,0x77,0x4f,
0xe6,0xcd,0x3f,0x66,0x37,0x3,0xd6,0x22,0xfd,0x79,0xa5,0x9d,0xd9,0x28,0x3,0xa2,
0x4,0x44,0xdb,0xf9,0xa6,0x96,0xe2,0x49,0x3b,0x7c,0xbb,0x65,0xbb,0xd,0xb1,0xa1,
0x89,0x1e,0x2f,0x5,0x79,0x51,0xf2,0xe8,0xe3,0x8f,0x31,0xf8,0xaa,0x21,0x8f,0x1d,
0x3e,0xc6,0xb9,0xe7,0x37,0x38,0xff,0xea,0x1a,0x17,0x4f,0x5f,0x65,0xed,0xea,0x26,
0xe3,0xad,0x19,0x99,0x5f,0x61,0x30,0x2c,0x71,0x79,0x8e,0x4a,0x83,0x45,0x99,0xf,
0xc2,0xef,0x95,0x3e,0x59,0x6f,0xcc,0x62,0x57,0x35,0x8e,0x79,0xfb,0x71,0x8e,0xc9,
0xf3,0xfb,0x8e,0xa2,0xcd,0xec,0x91,0xfe,0xc0,0xf6,0x5e,0x27,0xbf,0xdf,0x26,0x5b,
0x3a,0xa9,0xde,0xe9,0x79,0x65,0xf9,0x1b,0xb2,0x50,0xa9,0x98,0xc3,0x8a,0x6d,0xcd,
0x5b,0x44,0xd0,0x16,0x60,0x48,0xe0,0x76,0x98,0xf7,0x74,0x5b,0x30,0x62,0xa8,0x8,
0xb5,0x12,0x27,0x3,0x8a,0x22,0xe7,0xf0,0x23,0x91,0xd5,0xaf,0x2c,0x78,0xfc,0xa9,
0xa3,0x3c,0xfb,0xee,0x47,0x39,0xf9,0xca,0x90,0xd7,0x5f,0xbe,0xc0,0x85,0x37,0xb7,
0x98,0x6c,0x54,0xc4,0x99,0xb0,0xea,0x1d,0x3e,0xcb,0x9,0x4b,0x2,0xd9,0x5b,0xe5,
0xcd,0x7b,0xdc,0x4f,0x6,0x3c,0x79,0x0,0x1,0xc7,0x95,0x65,0xd0,0xd8,0xb2,0xe,
0x83,0x2f,0xc5,0x63,0xd9,0xbd,0x19,0x69,0x8a,0x71,0xaf,0xb2,0x5e,0x82,0xba,0x1b,
0xaa,0xd9,0x8c,0x3a,0x6c,0xa3,0x99,0xb2,0xf2,0x64,0xc9,0x7b,0x8e,0x3d,0xc9,0xd1,
0x67,0x8f,0xf2,0xe8,0xb3,0x8f,0xf1,0xe2,0x23,0x67,0x39,0xf9,0xe2,0x55,0xb6,0xae,
0x4f,0x71,0x95,0x63,0x28,0xd9,0x5d,0x19,0x4d,0x36,0x33,0x17,0x63,0x3c,0x76,0x10,
0xd,0x2e,0xfa,0x73,0x32,0xfd,0xf4,0x68,0xaf,0x89,0xf5,0x2f,0xe5,0x63,0x91,0x63,
0x63,0x1,0x33,0x48,0xd6,0xcc,0x22,0x66,0x23,0x62,0x9c,0x12,0x63,0x5,0xc1,0xe3,
0x7c,0xa4,0x58,0x81,0xa3,0x2f,0x1c,0x42,0x4b,0xa5,0x89,0x81,0xe9,0xa4,0xe2,0xd4,
0xec,0xa,0x71,0x16,0xa9,0xab,0x80,0xf7,0xe,0x71,0xd2,0x8e,0xf0,0xdc,0xf9,0xb5,
0x99,0xd9,0x70,0x39,0xa,0xb0,0x34,0xfd,0xd9,0x9b,0xf7,0x69,0x8f,0x2f,0xe7,0x4b,
0xfd,0xe8,0x57,0x85,0x96,0xe1,0xca,0xa2,0xa1,0x85,0x83,0xa7,0x44,0xa0,0x6a,0x3c,
0x5b,0xd3,0x86,0xeb,0x93,0x6d,0x2a,0x3f,0xe1,0xf0,0x53,0x8e,0xe7,0x3f,0x7c,0x84,
0x67,0xdf,0x7f,0x98,0xc3,0x47,0x3d,0x10,0x69,0xea,0xc8,0x5d,0x9c,0x9f,0x28,0xf,
0xa2,0xc1,0x4b,0xab,0x17,0x5f,0xe,0xe6,0x79,0x2f,0xcb,0xd4,0xf,0x20,0x17,0xd1,
0x28,0xb3,0xd4,0xc9,0xa1,0xda,0x10,0x2c,0x12,0x82,0x27,0x38,0x4f,0x15,0x8d,0x38,
0x9b,0x92,0x97,0x35,0x3e,0x77,0xac,0x3c,0x62,0x3c,0x72,0x2c,0x63,0x30,0xcc,0x18,
0x69,0x43,0x6c,0xba,0xf4,0xe7,0xf6,0xfc,0x9c,0xb7,0x63,0xd8,0xdd,0xeb,0xb,0xfc,
0xde,0x18,0xbd,0xdd,0xb6,0x87,0xa8,0x6d,0xe9,0x79,0xb0,0xcb,0x85,0x7,0xd4,0xd2,
0xfe,0x43,0xbc,0x55,0x56,0x70,0x53,0x27,0xa9,0x9,0x50,0x12,0x62,0x4d,0x30,0x43,
0x34,0xa2,0xa4,0xc6,0x3d,0x67,0x6d,0xf5,0xc9,0x29,0x5e,0x1c,0x2a,0xe,0x8d,0x4a,
0xc,0xd2,0xfe,0xdd,0x9d,0xb3,0xe7,0xde,0xce,0x82,0xee,0x31,0x3e,0x2a,0xd5,0xf2,
0x59,0xdf,0x9b,0x9,0xc9,0xbe,0x1c,0x8e,0x9b,0x1f,0xa0,0x2c,0xd1,0x74,0x4f,0xb4,
0x92,0x68,0x63,0x62,0x1c,0xe3,0xac,0xa2,0x70,0xe0,0x55,0x59,0xf5,0x3,0xb2,0x3a,
0x67,0x6b,0xa3,0x62,0xba,0x66,0x34,0x5b,0x11,0x42,0x8b,0x85,0xa7,0x6c,0xfc,0xb,
0xb2,0x36,0xed,0x4b,0xe,0xa0,0xc1,0x32,0xfa,0xa2,0x68,0xc7,0xb9,0x47,0xc2,0xbc,
0xa9,0xc9,0xed,0x26,0x2d,0xb1,0x39,0xa7,0x75,0x5b,0xe0,0xc1,0x70,0x69,0x4c,0x55,
0x3c,0x4e,0x20,0x53,0x63,0x90,0x17,0xc,0xb2,0x1,0x79,0x2c,0xd8,0xbe,0x3a,0xe3,
0xcc,0xcb,0xd7,0x39,0x7d,0xe2,0x2a,0x6b,0x57,0x47,0xb8,0xe8,0xc9,0x8b,0x3c,0xe1,
0xa6,0x5f,0x20,0xff,0x75,0x7b,0x4c,0xf6,0x2d,0x60,0x11,0xd9,0x5a,0x6,0x86,0xef,
0x55,0x74,0xb8,0x2b,0xc2,0xbf,0xa5,0xa9,0xb1,0xf9,0xef,0xe7,0xa8,0xe3,0xbe,0xc1,
0x91,0xdd,0xcf,0x6f,0xf7,0xa5,0xda,0x2,0x68,0xc0,0xf2,0xbc,0x7f,0x89,0x25,0x33,
0x8b,0x3b,0x42,0x36,0xda,0x26,0xbc,0x9a,0xcc,0x5b,0x22,0x5c,0x75,0x8e,0xcc,0x32,
0x6c,0xa4,0x5c,0xbf,0xb6,0xcd,0xd9,0x57,0xaf,0x71,0xe2,0x33,0x67,0xb9,0x74,0x72,
0x8d,0x66,0x6c,0x94,0xa5,0xa7,0xc8,0x95,0x4a,0x52,0xd9,0x6f,0xe7,0x36,0x97,0x4f,
0x85,0xdc,0xe6,0x19,0x47,0xe0,0xed,0x83,0x98,0xe8,0xeb,0x32,0x7,0x65,0xbf,0x7c,
0xf,0xbb,0xcd,0x8c,0xf0,0x3c,0xb2,0xe,0x11,0xd3,0xa,0xd1,0x9a,0x62,0xc5,0xb1,
0x52,0xe,0xb0,0x99,0xb2,0x7d,0xa5,0xe6,0xd2,0xc9,0xeb,0x9c,0x7c,0xf9,0x3c,0xa7,
0x5e,0xba,0xc4,0x95,0x93,0x13,0x9a,0xad,0x82,0xc3,0xc3,0xa3,0x14,0x39,0xc0,0x5d,
0x23,0x80,0x97,0xbd,0x32,0xa2,0xbd,0x82,0xac,0x2b,0x40,0x2d,0x22,0xee,0x56,0x33,
0x34,0x5d,0x10,0x72,0xa7,0xbe,0x38,0xb1,0xea,0xec,0xa8,0xd6,0x4d,0x26,0x51,0x7a,
0x63,0x10,0xb2,0x43,0xda,0x32,0x67,0x12,0xb8,0x3d,0x36,0x9f,0x26,0x1e,0xc4,0xe6,
0x50,0x65,0x34,0x7a,0x84,0x4d,0xed,0xde,0x48,0xd6,0x82,0xba,0x2d,0x75,0x43,0xdb,
0x14,0xdb,0xf6,0x5c,0x6b,0x5b,0x7d,0xd4,0x34,0xcb,0x2c,0x29,0x74,0xaa,0x9b,0x1a,
0x93,0x80,0x66,0x86,0x2b,0xa0,0x2c,0x72,0x6,0x79,0x89,0x44,0x61,0xfb,0xf2,0x8c,
0x6b,0xa7,0xb7,0x38,0xff,0xea,0x35,0x4e,0x9f,0xb8,0xc2,0xf9,0x37,0xaf,0x70,0xe3,
0xca,0x36,0x56,0x67,0x14,0x7e,0x80,0x2b,0x85,0x8a,0x86,0xd8,0xa,0x58,0x96,0x42,
0xa8,0x72,0xdb,0xe0,0x8a,0x1d,0xcb,0x2a,0x22,0xf2,0x6d,0xc0,0x4f,0xee,0xd7,0x44,
0xbf,0x65,0x66,0x95,0x99,0x95,0x37,0xd3,0xef,0xed,0x14,0x18,0xba,0xd9,0xd5,0x3b,
0x8d,0xa2,0x77,0x52,0xc,0x10,0x95,0x34,0xaa,0xd2,0xbe,0x1f,0xcd,0xe6,0xdc,0x59,
0x5d,0x77,0x7b,0x27,0xe0,0x83,0x11,0x2b,0x18,0x42,0x4c,0x89,0x88,0x38,0xa2,0xa4,
0xb2,0xf0,0xfc,0x1e,0xc4,0x21,0x12,0xb1,0x98,0x3a,0x24,0x55,0xc,0x14,0x4c,0x1b,
0xcc,0xe9,0xe,0x31,0x8c,0x29,0x22,0xa9,0x23,0x24,0x58,0x62,0x5,0x12,0x2f,0x64,
0xa5,0x23,0x2b,0x84,0x32,0x2b,0xc9,0xab,0x15,0xae,0x9d,0xdd,0xe6,0x8d,0x17,0xaf,
0x71,0xf2,0x73,0x17,0x38,0xfb,0xca,0x55,0xae,0x5d,0xd8,0xa4,0x99,0x4,0x7c,0x36,
0x60,0xb8,0x52,0x22,0x39,0x4c,0xd8,0xa6,0xc6,0x10,0x13,0x4a,0x1c,0x1a,0x65,0x3e,
0x7f,0xb7,0x1f,0x1a,0xe5,0x79,0x86,0xd3,0x29,0x46,0x7a,0x73,0xfd,0x0,0x3e,0x58,
0xdf,0x54,0xd5,0x2d,0xe0,0xf0,0x32,0x62,0x90,0xfe,0xbf,0x1f,0x78,0xb2,0xee,0x8,
0x21,0x82,0xa9,0x20,0xae,0x1b,0x3a,0x9,0xbb,0x28,0x10,0x45,0x1c,0xe2,0x1d,0x56,
0x47,0x9a,0x10,0x53,0xf5,0x28,0x33,0x68,0x20,0x4,0xc1,0x34,0x91,0xae,0xd5,0x56,
0x51,0x37,0x53,0x90,0x9a,0xc1,0x20,0x67,0x75,0x65,0x95,0x22,0x1b,0x52,0x4d,0x22,
0xd7,0x2f,0x6c,0x71,0xf9,0xe4,0x79,0x4e,0xbe,0x72,0x91,0x53,0x27,0x2e,0xf3,0xf6,
0xe9,0x6d,0x26,0x6b,0x11,0x57,0xe7,0x94,0xf9,0x80,0xac,0xf0,0xa8,0x42,0x13,0x6a,
0x1a,0x2,0x38,0xc5,0xa9,0x2e,0xe9,0xc1,0xb8,0x83,0x43,0xb5,0x12,0xe7,0x7e,0x6d,
0xdf,0x2,0x9e,0xcd,0x66,0x9b,0xce,0xb9,0xcf,0x89,0xc8,0x33,0x8b,0x25,0xab,0x65,
0x9b,0x51,0x2d,0x46,0x9f,0x7,0xb,0xf1,0x6d,0x77,0x24,0xd3,0xbe,0xaf,0x22,0x3d,
0x32,0x94,0xdb,0xd4,0xc,0x96,0x3a,0xa5,0xb6,0xeb,0x4,0x1,0xd3,0xd4,0xc3,0x6c,
0x89,0xf0,0x4c,0xbb,0xc9,0x31,0x62,0xcb,0x34,0xa0,0x98,0x9,0x88,0x23,0x4a,0x86,
0x48,0xc4,0xcd,0x83,0xba,0xd4,0x35,0x61,0x1a,0x30,0x57,0xe3,0xb2,0x9a,0xdc,0x19,
0x2b,0xb9,0xc3,0x37,0xca,0xe8,0x5a,0xc5,0x95,0xb3,0x5b,0xbc,0xf5,0xfa,0x45,0x5e,
0x3f,0x71,0x8a,0x73,0x6f,0x5d,0x61,0xed,0xca,0x36,0x71,0xe2,0x29,0xf5,0x30,0x83,
0x95,0x15,0x32,0x9f,0xa3,0x12,0x68,0x2c,0x51,0x53,0x24,0xae,0xae,0xf6,0x67,0x6f,
0x7a,0xf6,0xc0,0x40,0x4c,0x8c,0x68,0x6a,0xa9,0xda,0x76,0xaa,0xff,0xea,0x20,0x51,
0xf4,0xa6,0x73,0xee,0xb7,0x80,0xef,0xda,0x6f,0xd8,0x7e,0xbf,0x5b,0x76,0xf6,0x15,
0x3d,0x77,0xd7,0xe5,0x7d,0x6b,0xca,0x42,0x17,0xf2,0xee,0x34,0xf8,0x98,0x11,0x63,
0x45,0xc4,0x3,0x19,0x92,0x79,0x54,0x22,0x62,0x55,0x9a,0x15,0xd6,0x26,0xe1,0xc4,
0xa,0x45,0x21,0xc,0x8a,0x55,0x32,0x71,0x84,0xed,0xc8,0xe5,0x33,0xeb,0x9c,0x7d,
0x79,0x8d,0x93,0x2f,0x5f,0xe5,0xfc,0xa9,0x2b,0x5c,0xbd,0xb6,0xc1,0x78,0x54,0x41,
0x18,0x32,0xcc,0x56,0x19,0x16,0xab,0x64,0xae,0x48,0xdb,0xe1,0xb5,0x2e,0x47,0x45,
0xd2,0xa0,0x5a,0x7f,0x80,0xea,0xe,0x32,0x8e,0x3e,0xb3,0x9c,0x8a,0x9c,0x2,0x2e,
0xec,0x5b,0xc0,0x65,0x59,0xd2,0x34,0xcd,0x27,0x97,0x6d,0x1,0x77,0x87,0x39,0xda,
0x3b,0x15,0x6,0x27,0xee,0xad,0xee,0xfa,0xad,0x3f,0xb9,0xdf,0x6,0x8a,0xd2,0xf2,
0x73,0x9,0x4,0x22,0x91,0x8a,0x68,0xd,0xd1,0xa6,0x40,0x40,0x9c,0x63,0x30,0xc8,
0x29,0xcb,0x92,0xdc,0xe5,0xd4,0x93,0xc8,0xdb,0x97,0xb7,0xb8,0xf0,0xc6,0x55,0xce,
0xbc,0x78,0x8d,0xb,0xaf,0x6f,0x72,0xfd,0xfc,0x88,0xf1,0xe6,0x8c,0x18,0x33,0x6,
0x52,0x92,0xe5,0x25,0x79,0x56,0xb6,0x43,0x7c,0xd6,0x91,0x27,0xee,0x3c,0xcb,0x45,
0x75,0x95,0x3b,0xb9,0xb5,0xf4,0x8d,0xed,0x14,0xca,0x67,0x9a,0xa6,0xd9,0xda,0xb7,
0x80,0xa7,0xd3,0x29,0x31,0xc6,0x6b,0xfd,0xbe,0xa1,0xfe,0xd6,0x71,0xdd,0xfb,0xfd,
0x6,0xef,0x7,0xd3,0x17,0x4b,0xb,0x4a,0xd8,0x7c,0xb0,0x2d,0x22,0x98,0x68,0x1b,
0xa0,0xb7,0x74,0xd,0x2,0x41,0x1a,0x8c,0x9a,0x10,0x23,0x22,0x1,0xf1,0xd,0x4e,
0x21,0xf3,0x9e,0x41,0x96,0xe3,0x43,0xce,0x64,0xdd,0xb8,0x74,0x6a,0x83,0x37,0xff,
0xe8,0x2,0x6f,0xbc,0x78,0x91,0x2b,0x6f,0xad,0x33,0x5d,0x8b,0x50,0x7b,0x32,0x19,
0x32,0x28,0x3c,0x3e,0x4b,0x6c,0x1,0x41,0x20,0xc4,0x86,0x68,0x1,0xd2,0x98,0x73,
0x22,0x55,0x6d,0x5d,0xff,0x2e,0x6,0x10,0x39,0x98,0x60,0xbb,0xe5,0xd9,0x63,0xc8,
0xff,0xe7,0xaa,0x3a,0xdb,0xb7,0x80,0xc7,0xe3,0x31,0x22,0x32,0xf1,0xde,0x9f,0xae,
0xeb,0xfa,0x85,0xfd,0x50,0xe9,0x2f,0x9b,0x50,0x7f,0x10,0xe4,0x9b,0x44,0x5c,0xcf,
0x41,0x12,0x70,0xa8,0x7a,0x9c,0x28,0xd1,0x42,0xdb,0x91,0x31,0x23,0x50,0x63,0x6a,
0xe0,0x22,0x99,0x77,0x94,0xc5,0x80,0xdc,0x17,0x68,0x2c,0xa8,0xd6,0x8d,0x8b,0x67,
0xd7,0x39,0x7d,0x22,0x91,0xae,0x5d,0x78,0xf3,0x6,0xdb,0xd7,0x6a,0xac,0xce,0xf0,
0xae,0x48,0xf3,0xc4,0x2a,0x14,0xa9,0xef,0x9d,0x26,0xd6,0x84,0xa6,0xa2,0xb6,0x86,
0x28,0xe0,0x9d,0x43,0xbc,0x47,0x4c,0x88,0x41,0x7a,0x7b,0x1b,0xcb,0x9d,0x95,0x92,
0x7a,0x29,0x92,0x73,0x6e,0xe4,0x9c,0xfb,0xdd,0xbd,0x9e,0xfb,0x52,0x1,0xb7,0x44,
0xde,0x9b,0x21,0x84,0xdf,0x3,0x5e,0x58,0xd4,0xd4,0x4e,0x90,0xcb,0xf6,0x35,0x7a,
0xa0,0xa4,0x6b,0x80,0x44,0xb0,0xa6,0xd,0x8,0xdb,0xc1,0x75,0x1c,0x2d,0xb5,0xb,
0xb1,0x1d,0x4f,0xf6,0xaa,0x78,0xf,0x59,0x99,0x91,0x65,0x39,0xca,0x90,0xc9,0x26,
0xdc,0xb8,0xb4,0xc5,0xe5,0x57,0x37,0x38,0x73,0xe2,0x6d,0xce,0xbe,0x76,0x95,0xeb,
0x17,0x36,0x99,0x6e,0x36,0x64,0x2e,0xa3,0x28,0x3c,0x2e,0x6b,0x53,0x2f,0xda,0xbd,
0x28,0x2,0xe0,0x2,0x42,0x83,0xc6,0x66,0xe,0x34,0x85,0x98,0x78,0x6f,0xfb,0x96,
0xd0,0x62,0x6c,0xfd,0xf1,0x1,0x35,0x58,0x12,0xe3,0x80,0xaa,0xe2,0x55,0xff,0xdf,
0x18,0xc2,0xb5,0x3,0x15,0x1b,0x5a,0x8a,0xa4,0xa9,0xaa,0x7e,0x46,0x55,0xff,0xdd,
0xa6,0x69,0xf6,0x34,0xc1,0xf,0x74,0x3d,0xb8,0xd,0xc2,0xdb,0x9d,0x10,0x9,0x66,
0x44,0x69,0x12,0xa6,0x91,0x8,0xa9,0x51,0x51,0xca,0x6c,0x48,0xe6,0x85,0xdc,0xb,
0xde,0x19,0xa1,0x72,0x6c,0xac,0x45,0xce,0xbe,0x71,0x83,0x37,0x3e,0x7f,0x91,0xb7,
0x5e,0xbc,0xc6,0x8d,0xb3,0x63,0xaa,0xcd,0x80,0x37,0xcf,0xe1,0x22,0x27,0x2b,0x5,
0x5c,0xa0,0x8e,0x13,0x1a,0x3,0x89,0x46,0x6c,0x2,0xde,0x2b,0x2e,0x13,0x7c,0x26,
0x38,0x73,0x84,0x90,0xf8,0x42,0x42,0x68,0x52,0x4f,0xb3,0x73,0x38,0xe7,0x9,0xa1,
0xbe,0xb3,0x96,0xd9,0xae,0x54,0xd9,0xc6,0xf,0xea,0xfd,0xaf,0x8b,0xc8,0xe4,0x40,
0xc3,0x67,0x1d,0x15,0x7f,0x8,0xe1,0xf7,0xbc,0x4f,0xcc,0xed,0xb7,0x1a,0x51,0x79,
0xd0,0xf6,0x51,0xe8,0x47,0xd2,0xa9,0x89,0xce,0xe3,0x30,0xc4,0x19,0xb5,0xa5,0x21,
0xf0,0x10,0x6b,0xbc,0xcb,0x28,0xca,0x1,0xab,0x83,0x55,0x32,0x73,0xd4,0xe3,0x19,
0x5b,0xd7,0xb6,0xb8,0x72,0xf1,0x1a,0x6f,0xbd,0x76,0x83,0xb7,0x5e,0xb9,0xc2,0xb9,
0x93,0x37,0xd8,0xbe,0x1a,0xd1,0xba,0x60,0xe0,0x57,0xc8,0x5c,0x44,0xb5,0x2,0xad,
0x30,0x4d,0x9c,0xcf,0x1a,0xda,0x26,0xbd,0x4c,0x69,0xa4,0x9d,0xd5,0x22,0x82,0xa,
0x4e,0x53,0xc4,0xdc,0x34,0x82,0x5,0x88,0x44,0xda,0xb7,0x90,0xbb,0xd3,0xa3,0xf8,
0x7b,0xb7,0x7a,0xee,0xb7,0x2c,0xf8,0x8b,0xc8,0x29,0xef,0xfd,0xeb,0xaa,0xfa,0x81,
0xbd,0xf6,0xb,0xbc,0xa3,0x3c,0x38,0xb1,0xa8,0xa4,0xc8,0x52,0xfa,0x44,0xa5,0xed,
0x76,0x3b,0x1d,0xc5,0x70,0x4,0xb3,0x76,0x22,0xa0,0x47,0xe2,0x8d,0x2d,0x94,0x9,
0x64,0x6f,0xff,0x4b,0x14,0x24,0xb6,0x2c,0x2,0xd2,0xa6,0x49,0x3e,0x8d,0x94,0xe6,
0xb9,0x23,0xcb,0x73,0x4,0xcf,0x68,0xa3,0xe1,0xea,0xd9,0xd,0x2e,0x9e,0xbe,0xc8,
0xd9,0xd7,0xaf,0x70,0xfa,0xb5,0x35,0xae,0x9e,0xdf,0x64,0xbc,0x59,0x93,0xeb,0x80,
0xc1,0xc0,0x31,0x28,0x85,0x44,0xb5,0x58,0xd1,0x48,0x40,0x70,0x5d,0x9a,0x82,0x89,
0x60,0xed,0x98,0x2a,0x4,0x62,0x30,0x34,0x1a,0x4e,0x1d,0x9e,0xc,0x15,0xa5,0x26,
0x99,0xe5,0xa8,0xb1,0xbd,0x9e,0xde,0xfd,0x88,0xdd,0x1c,0x5d,0xdf,0x26,0xd0,0x52,
0xd5,0x4f,0x86,0xba,0x3e,0xdd,0x1c,0xb4,0x1e,0xdc,0x1b,0x8c,0x3a,0x97,0xe7,0xf9,
0xaf,0x8f,0xc7,0xe3,0xf,0x74,0x29,0x85,0x2d,0xf1,0xb7,0xf,0x3c,0x9a,0x15,0x94,
0x18,0x3,0x8d,0x44,0xa4,0x80,0xc1,0x4a,0x46,0x3e,0x28,0xc8,0xb4,0xa0,0x99,0xc0,
0x95,0x2b,0xd7,0xb9,0xf0,0xea,0xdb,0xbc,0xf9,0xe2,0x79,0x4e,0xbf,0x7a,0x9e,0xb5,
0xf3,0x23,0xe2,0xc6,0x0,0x17,0x4a,0x8e,0x94,0x5,0x3e,0x17,0xc4,0x4d,0xa9,0x6c,
0x2b,0xf9,0xf4,0xcc,0xe1,0x34,0xc7,0xa2,0x12,0x83,0x4b,0x70,0x66,0x9a,0x31,0xc0,
0xb9,0x44,0xf7,0x10,0xea,0x48,0xdd,0xa4,0xa9,0xc5,0x5c,0x1d,0x5e,0xb3,0x34,0x4b,
0x64,0x75,0x8a,0xac,0xbb,0x29,0x8b,0x2f,0xc4,0x3,0x89,0xfc,0x3f,0xa2,0xba,0xce,
0x41,0x5,0x9c,0xe7,0xf9,0xbc,0x98,0x60,0x16,0x3f,0xe5,0xbd,0xfb,0x4f,0x9a,0x26,
0x0,0x71,0x6e,0x72,0x16,0xb9,0x30,0x4c,0xe,0x60,0x38,0x5,0xcc,0x52,0x13,0x7a,
0x88,0xe,0x43,0x13,0x9d,0x30,0x46,0xc,0xd,0x6a,0x8a,0xa9,0xa1,0x3e,0xa2,0x12,
0xd1,0x0,0x6a,0xa,0x9a,0xc8,0x50,0x84,0x96,0x27,0x53,0xa5,0x65,0xe1,0x5f,0xa8,
0x7,0xb6,0xf4,0x46,0xa9,0x5e,0x13,0xa8,0xdd,0x14,0x29,0xa0,0xc8,0x73,0x56,0x6,
0x5,0x45,0x96,0x13,0x6a,0x63,0xe3,0xea,0x36,0x17,0x4f,0xad,0x71,0xee,0xc4,0x15,
0xce,0xbc,0xfe,0x36,0x97,0xce,0x6c,0xb2,0xfe,0xf6,0x84,0x38,0x56,0x86,0xea,0x28,
0x8a,0xc,0x5f,0x80,0x78,0x6b,0x73,0x63,0x1,0x3c,0x6a,0x1e,0x89,0x89,0xa,0x51,
0xac,0x9d,0xa0,0x98,0x33,0xe7,0x5a,0x8b,0x98,0x79,0x9c,0x46,0xc4,0x4,0x93,0x48,
0x24,0xcc,0xbb,0x3c,0xac,0x27,0xda,0x18,0x63,0xea,0xf0,0x10,0x4d,0x4d,0xf6,0x76,
0xf3,0xc6,0x1d,0x3b,0xb2,0x68,0xd1,0x43,0xc,0x9f,0xf9,0xda,0x79,0xf7,0xaf,0xd2,
0xce,0xe8,0x1c,0x4c,0xc0,0x75,0x5d,0xf5,0xb5,0xf4,0xf,0xca,0xb2,0x78,0x6d,0x7b,
0x7b,0xeb,0x83,0x21,0xd8,0xe,0x84,0x28,0x89,0xdb,0x39,0xd1,0xc,0xed,0xdf,0x3c,
0xef,0x66,0x7,0x54,0xcc,0x94,0x60,0x8a,0x8a,0xe2,0x24,0xa4,0xf9,0xb0,0x20,0xa0,
0xe,0xc4,0x50,0x8b,0xf8,0x98,0x0,0xf9,0xce,0x88,0xab,0xb4,0xa6,0xdd,0x16,0x69,
0x7f,0x65,0xe,0xf2,0x74,0x64,0xdf,0xc1,0x47,0xaa,0xbc,0x6e,0xf7,0x4d,0x1c,0xe2,
0xad,0x64,0xb6,0x16,0xb9,0x7e,0x66,0x8d,0x53,0x2f,0x9d,0xe7,0xf5,0x17,0xcf,0x72,
0xfe,0x8d,0xab,0xac,0x5f,0x9b,0x12,0xaa,0x9c,0xcc,0xad,0x90,0xd,0x72,0x8a,0xcc,
0x10,0xd7,0x96,0x2a,0xc,0x84,0x1c,0x2f,0x19,0xfd,0x6a,0x87,0x58,0xcb,0xc3,0xd2,
0x7,0x94,0x43,0xba,0xe,0x2f,0xae,0xbd,0x87,0xb4,0x65,0x1,0x84,0xb9,0xdb,0x48,
0x73,0x51,0x9a,0xcc,0x35,0x3d,0xf3,0xbc,0x20,0xa8,0x8e,0xcb,0x63,0xde,0xd9,0x1a,
0x77,0xb6,0x1a,0xf2,0x99,0xff,0x47,0xea,0xf5,0xd3,0x16,0x6f,0x5d,0x20,0xdf,0x63,
0xc2,0x7f,0x27,0x74,0x77,0xce,0x9d,0x1,0xfb,0xc4,0x78,0x3c,0xfe,0x60,0xb7,0x25,
0x8e,0x77,0x3e,0xd,0x22,0xc7,0x30,0x2f,0xbc,0xdd,0x49,0x8,0xe4,0x24,0xf9,0xa2,
0x86,0x48,0x8c,0x69,0x66,0x87,0x18,0x9,0x2d,0x3d,0x41,0x8,0x9,0x4b,0x16,0xf1,
0x34,0x31,0xd2,0x58,0xa0,0xf4,0x25,0x56,0xc3,0x6c,0x52,0x11,0xa3,0xe0,0x5c,0x86,
0xf7,0x59,0xe2,0xb1,0xb2,0x40,0xa0,0x6,0x1a,0x44,0x12,0x35,0x71,0xee,0x3d,0x87,
0x56,0x1f,0xc1,0x91,0x53,0x6f,0x1a,0x17,0x2f,0xdc,0xe0,0xc2,0x6b,0xd7,0x39,0xfd,
0xd2,0x79,0xce,0xbe,0x7e,0x99,0xeb,0x17,0x37,0xa8,0xc6,0x46,0x26,0x25,0x83,0x32,
0x47,0x5d,0xea,0x90,0x14,0xa7,0x3d,0x52,0xcd,0xee,0xfe,0x74,0x31,0x8,0xb8,0x7d,
0x14,0x7f,0x9b,0xf,0x74,0xac,0xf7,0x69,0x11,0xec,0x33,0xb7,0x77,0x82,0xa8,0xfc,
0xc6,0x7e,0xce,0xb1,0x27,0x85,0xc3,0x4e,0xa1,0x42,0xc9,0xb2,0xec,0xd7,0x8b,0xa2,
0xf8,0x81,0xba,0xae,0xf3,0x10,0xd,0xe7,0x5a,0x7f,0xdc,0x52,0xff,0xa6,0xf9,0xdb,
0xfd,0xa,0x59,0x76,0x9a,0x10,0x24,0x20,0x4a,0x6a,0x40,0xb3,0x44,0x44,0x2a,0x92,
0x66,0x5f,0xd3,0x78,0x48,0xcb,0x65,0xe9,0x92,0xc9,0x26,0x48,0x32,0xdf,0x51,0xd0,
0x16,0xb8,0x68,0xf7,0xf2,0x48,0x28,0x95,0xa6,0x5,0x22,0xce,0xc8,0xbc,0x90,0x65,
0x1e,0xef,0x72,0x74,0xe4,0xd8,0xba,0x36,0xe1,0xfc,0xc9,0x6b,0x9c,0x3e,0x71,0x95,
0x33,0xaf,0x5e,0xe7,0xea,0xe9,0x4d,0x46,0xd7,0x67,0x9,0xac,0xf0,0x39,0x65,0x9e,
0x91,0x67,0x60,0xd2,0xb4,0x7c,0x99,0x39,0xd6,0xb6,0xcd,0xdd,0x44,0xa7,0x2a,0xb7,
0x90,0xa4,0x2c,0x17,0xe3,0xb2,0x20,0x89,0x76,0xc7,0x97,0xc5,0x31,0xdc,0x65,0xa4,
0x69,0x66,0x3b,0x96,0xd2,0x7b,0xff,0xbb,0x82,0xfc,0x5f,0x5d,0xac,0x74,0x60,0x1,
0x87,0x26,0xf4,0x2c,0x4e,0x40,0x55,0x7f,0x23,0xcf,0xf3,0x7f,0xa1,0xaa,0xdf,0x3a,
0x8f,0x9a,0xdb,0x8b,0xa3,0x83,0xe0,0xee,0x0,0x52,0x8d,0xb1,0x6,0x14,0x75,0x1e,
0x2c,0x95,0xf0,0xd4,0x39,0x7c,0x26,0x4,0x15,0x70,0x3b,0xb8,0x9e,0x66,0x8a,0x6,
0xa1,0x99,0x46,0x5c,0xcc,0x29,0x8b,0x9c,0x28,0x91,0xda,0x1a,0x1a,0x9b,0xb6,0xa8,
0xe,0xb8,0x2c,0x31,0xbc,0x67,0xaa,0x64,0x99,0xa7,0xde,0x8a,0x5c,0x7c,0xf3,0x6,
0xa7,0x4f,0x5c,0xe2,0xe4,0xab,0xe7,0x39,0xfb,0xfa,0x75,0x36,0xaf,0x45,0xb2,0x7a,
0x95,0x15,0x7d,0x94,0x7c,0x98,0x83,0x18,0x91,0x19,0xa1,0x9e,0x80,0x6b,0xd2,0x96,
0x3a,0x62,0xdc,0x4f,0xba,0xd9,0xc5,0xbd,0x1b,0xf6,0xa,0x64,0x45,0x5,0xe7,0xdc,
0x49,0x33,0x9b,0x18,0x77,0x48,0x46,0x1a,0x42,0xb3,0x20,0x8,0xc5,0x7b,0xff,0x4f,
0xf3,0x3c,0xfb,0xd6,0xaa,0xaa,0x76,0xa,0xf1,0xdd,0x7c,0xe6,0x1,0xa4,0x2b,0xf3,
0xf9,0x9f,0xc4,0x8d,0xa1,0xa2,0xa8,0x4b,0x10,0x9e,0xb4,0xc5,0x81,0x2e,0x85,0xb2,
0xde,0x7e,0x1d,0xd6,0x32,0xdf,0x61,0x4a,0x42,0x96,0x3,0x51,0x6b,0x2c,0x4e,0x89,
0xd4,0xa8,0x8,0x99,0x5f,0xe1,0xf0,0xf0,0x30,0xce,0xa,0xb6,0x6f,0x4c,0xb8,0x70,
0xf2,0x1a,0xe7,0xde,0xb8,0xc2,0xb9,0x17,0xaf,0x71,0xe5,0xcc,0x1a,0x9b,0x37,0xc6,
0x4c,0xd7,0x8d,0xac,0xce,0x29,0x5c,0x4e,0xee,0x3c,0x4e,0x13,0x53,0xad,0x98,0x62,
0x92,0x13,0x97,0x50,0x23,0xdf,0xb,0x61,0xf6,0x3b,0x62,0x96,0x1,0x19,0xfd,0xcc,
0xa4,0x3f,0x27,0xe6,0x9c,0xab,0x9d,0x73,0xff,0x24,0x81,0x1d,0x77,0x4a,0x46,0xba,
0x38,0xc1,0x80,0x51,0x94,0xc5,0x2f,0xe,0x9a,0xe1,0xc7,0x9b,0x18,0x3f,0x14,0x2d,
0xb5,0x7d,0xa6,0xad,0x68,0x6c,0xbe,0xef,0xe0,0x7e,0x2,0xad,0xfe,0x76,0x3b,0x62,
0x2e,0xed,0x78,0x62,0x9a,0xa8,0x14,0x44,0x13,0x1f,0x25,0x46,0x1d,0x1a,0x72,0x4b,
0x1c,0x91,0x4e,0x65,0xae,0xcc,0xe6,0x20,0xd0,0x10,0xe2,0xc,0xb4,0x41,0x7c,0xa0,
0x50,0xc8,0xf0,0x64,0xe6,0xb1,0xb1,0xb2,0xb9,0x56,0x71,0xf6,0xf5,0x75,0x4e,0x7c,
0xfe,0x34,0x27,0x5f,0x39,0xc7,0xda,0x5b,0x63,0xea,0xa9,0x25,0x78,0x51,0x7,0x64,
0x65,0x96,0xb2,0x1,0xab,0x8,0x56,0x27,0x57,0x23,0x82,0x38,0x8f,0x4a,0x62,0x9c,
0xbd,0x1f,0x9b,0x72,0xec,0xae,0x8b,0xcb,0x6e,0x18,0x73,0x81,0x85,0x36,0xc6,0x88,
0xf7,0x1e,0xe7,0xdc,0x3f,0x73,0xea,0xfe,0xf7,0xfd,0xa6,0xa6,0xcb,0xd3,0xa4,0xb2,
0x58,0x5a,0x23,0x2e,0x87,0xc3,0xdf,0x9c,0xce,0x66,0x1f,0x9a,0x4e,0x26,0x44,0x22,
0x59,0x96,0xc6,0x36,0x82,0xc5,0x5d,0x1d,0x81,0xfb,0xdb,0x52,0x47,0x51,0x2d,0x10,
0x53,0x9a,0x20,0xc4,0xa8,0x38,0x97,0x18,0xe9,0x62,0xcb,0x3d,0x91,0x2,0x44,0xc1,
0xe1,0x28,0xc4,0x31,0xf3,0xd3,0xb4,0xf1,0x55,0x8c,0x98,0x34,0x78,0x11,0xca,0xbc,
0x64,0x50,0xc,0x91,0x3a,0x67,0xfb,0x5a,0xcd,0xd9,0x37,0x2f,0xf2,0xe6,0xcb,0x97,
0x79,0xeb,0x95,0x2b,0x5c,0x39,0xb7,0xc1,0x74,0x3d,0xe2,0xeb,0x43,0xe4,0x8,0x1a,
0xc2,0x9c,0xbc,0x3c,0x52,0x13,0x35,0x69,0x46,0x4a,0x3c,0x14,0x13,0x9f,0x28,0x14,
0x51,0xc4,0xc2,0x3d,0xdb,0x27,0x71,0xb1,0x79,0xa2,0xd3,0xe4,0x45,0xed,0x5d,0xec,
0x6c,0x55,0xd5,0x35,0xef,0xfc,0x4f,0x1c,0x64,0x8e,0xc9,0x1f,0xc4,0xac,0x94,0x65,
0xf9,0x77,0x8b,0xb2,0xfc,0x9e,0xe9,0x74,0xfa,0x58,0x13,0x22,0xde,0xd2,0x86,0x7,
0x72,0xc0,0xaa,0x48,0xca,0x4,0x35,0x21,0x41,0xa6,0x73,0x8,0x4f,0xcc,0x50,0x53,
0xbc,0x73,0x78,0xf5,0x58,0x1d,0x19,0x6d,0x4c,0xd8,0xba,0x36,0x66,0xf5,0xd1,0x63,
0x1c,0x2a,0x95,0x9,0xdb,0x38,0x5f,0xe3,0x65,0x98,0x86,0xb1,0xa3,0x67,0x72,0xd,
0xae,0x5f,0xd8,0xe4,0xec,0xeb,0x57,0x78,0xf3,0xc5,0xb,0x9c,0x7d,0xfd,0x3a,0x1b,
0x57,0x66,0xc4,0x99,0x23,0x97,0x92,0x22,0x2b,0x53,0x9f,0x95,0x35,0xa8,0x33,0xcc,
0xb5,0xfb,0x27,0xb5,0x34,0x87,0x46,0x4c,0xbf,0x27,0x10,0x2d,0xa6,0xbd,0x11,0xb1,
0x3b,0xcc,0xe,0xee,0xec,0x58,0x46,0x55,0xd5,0x17,0xb8,0x73,0xe,0x9f,0xf9,0x5f,
0x52,0xd5,0x3f,0xfc,0x82,0xf7,0x6c,0x60,0xef,0x6d,0xd7,0x4e,0x96,0x65,0xf9,0xcf,
0xc6,0x79,0xfe,0x97,0xe3,0x6c,0x96,0x22,0xd8,0x3b,0xe2,0x98,0x68,0xab,0xb3,0xd1,
0xba,0xc1,0xfb,0xd6,0x27,0x37,0x38,0x94,0x22,0xcb,0x89,0x39,0x34,0xd5,0x88,0x1b,
0x97,0xd6,0x39,0xfb,0xc6,0x25,0x56,0x8e,0xac,0x72,0xf4,0x99,0x55,0xa2,0x6f,0xc8,
0xc4,0xe3,0xac,0x24,0x4c,0x3d,0x1b,0x57,0x67,0x9c,0x7b,0xf3,0x1a,0x27,0x5f,0x3a,
0xcb,0x5b,0xaf,0x5c,0xe0,0xed,0xf3,0x9b,0xd4,0x23,0xa3,0xd4,0x15,0x8a,0xa2,0xdd,
0xd8,0x91,0x1a,0x93,0xae,0x9b,0x42,0x13,0x40,0x62,0x46,0xb4,0x44,0x6d,0x68,0xa2,
0x6d,0xcd,0x38,0x76,0x89,0x2c,0x90,0xed,0xda,0xdf,0xf0,0x7e,0x4,0x59,0xcb,0x34,
0xbc,0xb,0xbe,0xbc,0xf7,0x6f,0x65,0x3e,0xfb,0xd9,0x83,0x4e,0x21,0xfa,0x83,0x5e,
0xc4,0x60,0x30,0xf8,0x85,0xd5,0xd5,0xd5,0x7f,0xdb,0xe0,0x70,0x6c,0x22,0x1c,0x94,
0x88,0x65,0x9e,0x25,0xa5,0xd,0x24,0x41,0xdb,0x4d,0xa2,0x13,0x1f,0x6,0xb1,0xc1,
0x69,0x46,0x99,0x95,0x6c,0x4d,0x27,0x5c,0x3d,0xbf,0xce,0xcb,0x9f,0x3d,0xd,0xbe,
0xe4,0x85,0xe9,0xb3,0xac,0x1e,0x75,0x44,0x13,0x46,0x37,0x66,0x5c,0x39,0x7b,0x95,
0xb3,0xaf,0x5d,0xe5,0xcc,0xab,0x57,0xb8,0x72,0x6e,0x9d,0xd1,0xfa,0xc,0xab,0x32,
0x6,0x9a,0x91,0xe7,0x39,0x79,0x26,0xa0,0x91,0x28,0xd,0xd1,0x22,0x31,0x40,0x8c,
0x6e,0x7e,0xdb,0xd6,0x96,0xc,0x2d,0x86,0x14,0xcb,0x39,0xc3,0xb7,0x48,0x58,0xa,
0xa2,0xe5,0x9e,0x9a,0xe8,0x45,0xe,0xd0,0xbd,0x4,0xec,0xbd,0x27,0xcf,0xf3,0x9f,
0x6,0x2e,0x1f,0xf4,0x5c,0xfe,0xe0,0x17,0xc7,0xa7,0x56,0x56,0x56,0x3e,0x16,0x82,
0xfd,0x9d,0xad,0xad,0xed,0xaf,0x6a,0x62,0xc4,0x77,0x41,0xc2,0xb2,0xc1,0xe9,0xc5,
0x99,0xe2,0x8e,0xd3,0xa6,0xa3,0xce,0x6f,0x37,0x8d,0xf4,0xb4,0x34,0xb9,0xb1,0xc6,
0x49,0x89,0xd7,0x82,0x8c,0x1,0x93,0xcd,0x4d,0x4e,0xbd,0x76,0x99,0x3a,0x38,0xae,
0x5f,0x9b,0x70,0xec,0x89,0x1,0x20,0xac,0x5f,0x1d,0x73,0xf1,0x8d,0xab,0x5c,0x78,
0xf3,0x1a,0x6b,0x97,0xb6,0x89,0x53,0xa1,0xc8,0x6,0x14,0x79,0x81,0xf3,0x2,0xda,
0x10,0x74,0xd6,0xee,0x98,0x17,0x21,0x86,0x84,0x1a,0xb5,0x26,0x58,0x3a,0xa2,0x95,
0x9d,0x30,0x3d,0x4d,0x91,0x88,0xc0,0x7d,0xc2,0xd6,0x3b,0x86,0xfa,0xc5,0x3c,0xb8,
0x1b,0x6c,0xeb,0xa2,0x67,0xe7,0xdc,0xff,0xa2,0xaa,0xff,0xeb,0x9d,0x9c,0xc3,0x1f,
0xdc,0x94,0x80,0xaa,0xfe,0xf6,0x70,0x38,0xf8,0xa1,0xc9,0x64,0xfa,0xa9,0xd9,0x64,
0xea,0xc2,0x1c,0xfd,0x3a,0xe0,0x8a,0x17,0xc3,0x68,0x88,0xa6,0x38,0x1f,0x11,0x15,
0x62,0xdd,0xa4,0x52,0x9e,0xc,0x19,0x16,0x87,0xc0,0x22,0x9b,0xd7,0xd7,0x79,0x6d,
0x7c,0x96,0x33,0xa7,0xde,0xa6,0x5c,0x49,0xa4,0x25,0xb3,0xed,0x86,0x6a,0xad,0x21,
0x8c,0x1a,0x7c,0x93,0x51,0x96,0x3,0x6,0x79,0xf2,0xb5,0x35,0x15,0x95,0xcd,0x92,
0x66,0xba,0x4,0xa4,0xf4,0x1,0x29,0x23,0xcc,0x21,0xc3,0x44,0xb0,0xe3,0x50,0x4b,
0x6d,0xb2,0x66,0x4d,0x7f,0x13,0xd2,0xfb,0x53,0xc,0xe9,0x8f,0xa9,0xba,0x44,0x89,
0x98,0x36,0x7,0x8b,0x88,0xc8,0x9,0x55,0xfd,0x49,0x11,0x9,0x77,0x52,0xd4,0xd9,
0xd7,0xa6,0x1c,0x7b,0xe0,0xc9,0xbf,0x33,0x1c,0x14,0x3f,0x11,0x43,0xfd,0xb3,0x4d,
0x55,0x13,0xb5,0xdb,0x73,0xf7,0xe6,0xf0,0x7f,0x59,0x73,0x40,0x47,0x5d,0x94,0xb6,
0x95,0x35,0x2c,0x68,0x7b,0x39,0x8a,0xb5,0xc0,0x83,0x64,0x42,0x16,0x3c,0x4d,0x28,
0xa9,0xb7,0x2a,0xb6,0xb6,0x67,0x6c,0x4b,0xd5,0x56,0x88,0xc,0xd7,0x38,0xbc,0x38,
0xf2,0x32,0xc7,0x67,0xe,0x7c,0xdb,0xe0,0x16,0x6c,0x7,0x56,0x9c,0xb3,0xeb,0x74,
0x5b,0xe7,0xe9,0x4e,0xb3,0xb8,0xd8,0x12,0xa4,0x69,0x27,0xf,0x96,0x3,0xf6,0x4a,
0xed,0x37,0x8b,0x98,0x9b,0xe0,0x5,0xed,0xed,0xb4,0x39,0x51,0x14,0x46,0x54,0xb5,
0x52,0xe7,0x7e,0x58,0x44,0xce,0xde,0xe9,0xe2,0x59,0x5e,0x2e,0xec,0x18,0xae,0xf7,
0xbc,0x99,0x54,0x15,0x59,0x19,0xc,0xff,0xb6,0x98,0x7d,0xdd,0x66,0xb3,0xf9,0x67,
0x2d,0xc6,0xf9,0xd6,0xac,0x7b,0x15,0xff,0x6f,0xde,0x57,0x58,0x76,0xfa,0x97,0x1b,
0x69,0xab,0x2a,0xe9,0xc6,0x1b,0x5a,0x52,0x72,0x31,0x6,0x6e,0x48,0x19,0x4b,0x42,
0x88,0x69,0xf3,0xe,0xc,0x71,0x8a,0xcb,0x75,0x6e,0xd2,0x82,0x6,0xa2,0xa5,0xd6,
0xa2,0xa0,0xed,0x46,0xd3,0x38,0x24,0xb6,0xf0,0x9f,0x2e,0x8b,0xf4,0x77,0xf8,0xb3,
0x4c,0x3a,0x51,0xeb,0x5d,0xd7,0xca,0x85,0x1a,0xfb,0xee,0x16,0xa7,0xde,0xfe,0xbb,
0x6,0xf3,0x49,0x11,0x15,0xc1,0xe5,0xf9,0x8f,0x12,0xe3,0xff,0xf7,0x85,0x94,0x63,
0xf7,0x80,0x2a,0x9b,0xdb,0xfa,0xe,0x11,0x41,0x9d,0x32,0x18,0xc,0x7e,0x30,0x84,
0xf8,0xfe,0xf1,0x78,0xfc,0xe1,0xa6,0x69,0x70,0xce,0xcf,0x37,0x8a,0xee,0xa3,0x30,
0xfb,0xcd,0x8f,0xf7,0xf4,0x55,0xd6,0x75,0x40,0xba,0x39,0x64,0x77,0x93,0x85,0x60,
0x67,0x66,0xe7,0x9d,0x38,0xee,0xe4,0xfe,0xfa,0x83,0xe4,0x5d,0xaf,0x5b,0x1b,0x35,
0xff,0xdd,0xcc,0xfb,0xbf,0x6f,0x66,0x69,0xc1,0x87,0x70,0x47,0xd7,0xa4,0xb7,0x42,
0x56,0xf6,0x7a,0xb1,0x3b,0xa,0xbc,0x38,0x1c,0xe,0xfe,0xe3,0x2c,0xcb,0xd6,0x76,
0x17,0x4,0xf7,0xd7,0xaf,0xb5,0xb3,0x9a,0xd9,0xb5,0xef,0x82,0xf4,0xb6,0x97,0xb3,
0x76,0xeb,0xf6,0x6e,0x51,0xb9,0xde,0x86,0xd4,0xf3,0x6b,0xb2,0x3d,0xce,0xd7,0xd6,
0x6a,0x6f,0xb1,0x54,0x77,0x9d,0xed,0xb,0x45,0xa3,0x64,0x8f,0x86,0x88,0x5d,0x8b,
0x71,0x89,0x36,0xf7,0x47,0x82,0xbc,0xf7,0xff,0x5b,0x96,0x65,0x7f,0x23,0x2d,0x64,
0xdd,0x59,0xbc,0xb7,0x79,0xed,0x5b,0xc0,0x77,0x70,0x73,0x9f,0x1c,0xc,0x6,0x7f,
0x23,0xcf,0xf3,0xd8,0xc1,0x6d,0xfd,0xa1,0xb4,0x83,0x36,0xce,0x2f,0x23,0x77,0xe9,
0x47,0x98,0xcb,0x8,0xca,0x6f,0xf7,0xf0,0xef,0x75,0x73,0xe0,0xe2,0x35,0xef,0x35,
0xdb,0x2b,0x22,0x73,0x4b,0xb3,0xf8,0xf9,0x36,0x62,0xfe,0x84,0x73,0xee,0x87,0xcc,
0xac,0xea,0x2f,0x86,0xbb,0x6a,0xa2,0xf,0xf2,0x9d,0x89,0x46,0x8,0x86,0xc3,0xe1,
0xff,0xe4,0x9c,0x7f,0x66,0x32,0x99,0xfc,0xd4,0x74,0x3a,0xa5,0x69,0x1a,0xbc,0xf7,
0xf4,0x77,0x6b,0xb9,0xdd,0x8e,0x23,0x7b,0xf5,0x75,0xed,0x17,0xe3,0x5e,0xb6,0x8b,
0xf6,0x3b,0xd1,0x8,0xb8,0x6c,0xcf,0xa4,0xbd,0x62,0x92,0xd8,0xc3,0x9d,0xbd,0xf7,
0xbf,0xed,0x9c,0xfb,0xcb,0xc0,0x8d,0xbb,0x75,0x2d,0xfe,0x6e,0xde,0xd8,0x70,0x38,
0xfc,0x69,0xe0,0x58,0x5d,0xd7,0x3f,0xbc,0xac,0xd5,0xf6,0x56,0x1c,0xc9,0x7d,0xa0,
0x7d,0xf1,0xf3,0xb7,0xb,0x60,0x6e,0x5,0xfd,0x1d,0xe4,0x6f,0xee,0x96,0x50,0x6f,
0xd7,0x27,0xde,0x99,0x63,0x23,0x21,0x81,0xad,0xcf,0xfd,0x3,0xef,0xfd,0x5f,0x34,
0xb3,0x1b,0x77,0xf3,0xba,0xfc,0xdd,0xbc,0xc1,0x18,0x23,0x45,0x51,0xfc,0xc8,0xca,
0xca,0xca,0x10,0xf8,0xab,0x9d,0x99,0xee,0x76,0x14,0xbf,0xc9,0x54,0xd9,0xfe,0xa8,
0x83,0xf6,0x32,0xb5,0x7b,0x71,0x67,0xbe,0x13,0xda,0xba,0xf8,0x5e,0x7f,0xab,0xd8,
0x45,0xcb,0xb2,0x78,0x1f,0xaa,0xfa,0x79,0xe7,0xdc,0x77,0x1,0x57,0xef,0x36,0x63,
0x91,0xbf,0x17,0x37,0x3c,0x18,0xc,0xbe,0x5f,0x55,0xe3,0x68,0x34,0xfa,0x78,0xd3,
0x34,0x73,0x1,0x2f,0xee,0xf5,0xb0,0x6c,0xdc,0xa5,0xff,0x30,0x16,0x11,0x9e,0xbd,
0x1e,0xe8,0x5e,0x3e,0x7c,0xaf,0x7c,0xfc,0x5e,0x46,0xd0,0xfd,0xe,0x8c,0xc5,0xfd,
0x80,0x17,0x99,0x10,0x5a,0xfe,0xcb,0xdf,0x77,0xce,0x7d,0xc,0xb8,0x72,0x2f,0xac,
0x8c,0xde,0xb,0x1,0xb7,0x95,0xa7,0xbf,0xb6,0xb2,0xb2,0xf2,0x3f,0x74,0xed,0x3f,
0x7b,0x5,0x39,0xb7,0xd2,0xc2,0x65,0x1,0xda,0x5e,0xa4,0x9d,0xcb,0x4c,0xe5,0x3b,
0xd1,0xce,0x7b,0xfb,0xfc,0xbf,0x17,0x30,0x3a,0xf7,0x2f,0x9c,0xf7,0xdf,0xd,0x5c,
0xba,0x57,0xd7,0xe3,0xef,0xa1,0xd9,0xb2,0xa2,0x28,0x7e,0x8,0x18,0x3b,0xe7,0x7e,
0xb4,0xaa,0xaa,0x7d,0x35,0xc9,0xef,0xc7,0x74,0x1f,0xc4,0x1c,0xbf,0x13,0x33,0xcb,
0xb7,0x12,0x72,0x67,0xc1,0x54,0xf5,0x13,0xa2,0xfa,0x57,0xa3,0xd9,0x85,0x7b,0x79,
0x2d,0xfe,0x5e,0xdd,0x60,0xab,0x41,0x56,0x96,0xe5,0x8f,0x89,0xc8,0x55,0x55,0xfd,
0xe9,0xd9,0x6c,0x36,0x5c,0x66,0x76,0x97,0x99,0xe7,0x45,0xaa,0xc0,0xbd,0xf6,0x20,
0x5a,0x26,0xc4,0xdb,0x69,0xf9,0xbd,0x10,0xe6,0xa2,0xf9,0x5d,0x66,0x49,0x7a,0x20,
0xc6,0x3f,0x11,0x91,0xbf,0x12,0x63,0xdc,0xb8,0xd7,0x8b,0xed,0x9e,0x6f,0xb8,0xd0,
0xa,0xe7,0xbf,0x1d,0xc,0xca,0xef,0x2d,0x8a,0xfc,0x4a,0xf7,0x30,0x62,0xbc,0xb7,
0x26,0x74,0x3f,0xf9,0xf7,0xbd,0x38,0x62,0x6c,0xe1,0xd4,0x76,0x7a,0x70,0xf1,0x9a,
0xbc,0xf7,0x9f,0xf2,0xde,0x7f,0x1f,0xb0,0x71,0x3f,0x1c,0x88,0xbf,0x1f,0x37,0xdd,
0xf2,0x4d,0xfd,0xdf,0x83,0xc1,0xe0,0x75,0xef,0xfd,0xaf,0x4c,0x26,0xb3,0xf7,0x84,
0x50,0xd3,0xa7,0x2c,0x5e,0xd6,0x93,0xb4,0xac,0x39,0xed,0x56,0xb4,0xc6,0xfb,0x49,
0xad,0x96,0xcd,0x54,0xed,0x27,0x68,0xdb,0xcb,0x3d,0xec,0x8a,0x94,0x3b,0xa8,0xb7,
0xff,0x9d,0x2,0x2e,0x69,0x2d,0xde,0xfb,0x93,0xe2,0xe4,0x47,0x2c,0xde,0xdd,0x54,
0xe8,0x1d,0xd5,0xe0,0x9d,0x87,0x14,0x11,0x91,0x97,0x56,0x57,0x57,0xff,0xd4,0xa1,
0x43,0x2b,0x9f,0x2a,0x8a,0xbc,0x2d,0xf4,0xcb,0x2d,0xd1,0xab,0x65,0x42,0xdf,0xf,
0x4f,0xf5,0xe2,0xdf,0x2c,0xfb,0xfe,0xdb,0x5,0x64,0xb7,0xb,0xd4,0xf6,0xfa,0xde,
0xd8,0xbe,0x52,0xc3,0xa0,0x23,0xcb,0xf3,0x33,0x3e,0xf7,0x1f,0x77,0xde,0xfd,0x49,
0x45,0x3f,0xcf,0x7d,0x8c,0xfd,0xfc,0xfd,0x3b,0x55,0xa2,0xff,0x33,0x8b,0x97,0x86,
0xc3,0xf2,0x63,0xce,0xe9,0xdf,0x53,0x9d,0xfc,0x95,0xaa,0xaa,0xe7,0xfb,0xfd,0xf5,
0x37,0xe2,0xea,0x6f,0x95,0xd7,0xfd,0x6e,0x19,0x80,0x71,0x3b,0xdf,0xb8,0x5f,0x37,
0x70,0x2b,0x73,0xbe,0xdf,0x60,0xae,0x6b,0x5f,0x12,0x12,0x77,0x86,0x3a,0xb7,0xe9,
0x9d,0xfb,0x39,0xe7,0xf5,0xe7,0xb0,0x78,0xe1,0x9d,0x88,0xea,0xfd,0xfd,0x3e,0x61,
0x7b,0x93,0x1b,0x83,0x41,0xf9,0xd7,0x44,0xf4,0x9c,0xf7,0xd5,0x53,0x4d,0xd3,0x8c,
0x9a,0xa6,0xf9,0xfe,0xaa,0xaa,0x6,0xc9,0x8f,0xa5,0x96,0xd5,0x54,0x95,0xda,0xbd,
0x5d,0xeb,0xb2,0x1a,0xf3,0xb2,0x20,0xed,0x56,0xa9,0xca,0xed,0x34,0xf3,0x56,0xc,
0x42,0x37,0xa1,0x51,0x4b,0xbe,0xc7,0x7b,0x1f,0x9c,0x73,0xff,0xc8,0x7b,0xff,0x33,
0x66,0x76,0x82,0x77,0xf0,0xf0,0xef,0xc4,0x49,0x5b,0xbe,0x8c,0xa9,0x88,0xfc,0xcd,
0xae,0xe7,0x28,0xcb,0xb2,0x7f,0xa0,0xaa,0xff,0x45,0xd3,0x34,0xdf,0x5e,0xd7,0xf5,
0xa0,0x69,0x52,0xd1,0x5d,0x35,0xbd,0x6e,0x97,0x4f,0x2f,0xc3,0x80,0x6f,0x95,0x5a,
0xdd,0x8e,0xf6,0x69,0x2f,0x57,0xb0,0xc,0x67,0xee,0x60,0x47,0x27,0x52,0x8b,0xea,
0x3f,0xcf,0xb2,0xec,0x67,0x80,0xdf,0x79,0x10,0xc6,0x6a,0x3d,0xf,0xc8,0x61,0x66,
0x9f,0xcf,0xb2,0xec,0xcf,0x79,0xef,0xbe,0x2e,0xcb,0xfc,0xf,0x36,0x4d,0xfd,0xed,
0x75,0x5d,0x3f,0x19,0x63,0x97,0x2e,0xed,0x6c,0x74,0xb5,0x17,0x88,0xbf,0x17,0x59,
0xcc,0x62,0x44,0xdd,0xe7,0x18,0xb9,0x55,0xde,0xbd,0x54,0xb0,0x31,0xf6,0x36,0xd1,
0x12,0xd4,0x39,0x9c,0xea,0x5,0x44,0x7e,0xb,0x91,0x5f,0x4,0x7e,0xfb,0x41,0x22,
0x48,0x7f,0x60,0x4,0xdc,0x13,0xd0,0x67,0xb2,0xcc,0x7f,0xc6,0x39,0xfd,0x8a,0x3c,
0xcf,0xff,0x42,0x5d,0xd7,0xdf,0x13,0x63,0xfc,0xca,0x84,0x75,0xb3,0x2b,0xbd,0xba,
0x15,0xc2,0xb5,0x18,0x85,0x2f,0xee,0xa0,0x7a,0xab,0x88,0x3b,0xb6,0x42,0x9c,0xa7,
0x39,0xb2,0x53,0x2b,0x96,0x9d,0x3a,0xb4,0x79,0xef,0x3f,0x6d,0xf0,0x8f,0x9d,0xea,
0xaf,0x22,0xf2,0x5a,0x8,0x61,0xbe,0xb7,0xe0,0x83,0x72,0x3c,0x50,0x2,0x5e,0xd0,
0x96,0x13,0x65,0x59,0xfc,0x97,0x22,0xf2,0xf7,0x62,0x8c,0x7f,0x6,0xf8,0xd6,0xa6,
0x9,0xdf,0x11,0x42,0x78,0x5f,0x8c,0xb6,0xd4,0x17,0xee,0x45,0xe0,0xdd,0x9f,0xed,
0xd9,0x6b,0x7b,0xdc,0x9b,0xd8,0xec,0x6d,0xa7,0x4d,0x40,0x65,0x87,0xed,0x56,0x55,
0x5f,0x75,0xce,0xfd,0x3a,0x66,0xbf,0x21,0xaa,0xff,0x52,0x62,0x1c,0x5b,0x8c,0x2d,
0x11,0xd6,0x83,0x77,0x3c,0x90,0x2,0x4e,0xf,0xbf,0x8b,0x9e,0xe3,0xa6,0x73,0xfa,
0xcb,0x22,0xf2,0xcb,0x31,0xda,0x53,0x59,0x96,0x7f,0xc8,0xcc,0xbe,0xd6,0xcc,0xbe,
0x2e,0xc6,0xf8,0x75,0x21,0x84,0xa7,0xfb,0x7b,0x3a,0x2d,0x96,0x24,0x17,0x39,0x35,
0xfb,0xc5,0x8d,0x45,0x6d,0xde,0x55,0x28,0xd8,0xf9,0xff,0x19,0x55,0xfd,0x3d,0x55,
0xfd,0x8c,0x88,0xfc,0x6e,0x88,0xf1,0x35,0x55,0xbd,0x32,0x7,0x32,0x1e,0xf0,0xfd,
0x2a,0x1e,0x58,0x1,0xef,0x98,0xde,0x4e,0xa3,0xd,0xb0,0x4b,0xaa,0x7a,0xc9,0xcc,
0x7e,0xcb,0xcc,0x4a,0x33,0x3b,0x54,0x14,0xc5,0x63,0xc0,0x7b,0x42,0x8,0xcf,0x9a,
0xd9,0x63,0x66,0x76,0xcc,0xcc,0xe,0x3,0x47,0x44,0x64,0xd5,0xcc,0xca,0x10,0xc2,
0xd0,0xcc,0x6,0xc0,0xaa,0xaa,0xe,0x45,0x64,0x2,0x6c,0x98,0x59,0x2d,0x22,0x53,
0x60,0xa4,0xaa,0xeb,0x22,0xb2,0x21,0x22,0x37,0x44,0xe4,0x12,0xaa,0x67,0x62,0x8c,
0x6f,0x84,0x10,0x2e,0x8b,0xea,0x96,0xaa,0xce,0xa4,0x5,0x31,0xfa,0xbe,0xfe,0x41,
0xe7,0x27,0x91,0x2f,0x87,0x3d,0x8f,0xbe,0x9c,0xf,0x7d,0xf8,0x8,0x1e,0xa,0xf8,
0xe1,0xf1,0x50,0xc0,0xf,0x8f,0x87,0x2,0x7e,0x78,0x3c,0x14,0xf0,0xc3,0xe3,0xee,
0x1f,0xff,0xff,0x0,0xf,0x6c,0xf0,0xc,0x55,0xeb,0xd5,0x51,0x0,0x0,0x0,0x0,
0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// F:/NewLaserScanner/NewLaserScanner/Resources/FILE.ico
0x0,0x1,0x8,0x3e,
0x0,
0x0,0x1,0x0,0x1,0x0,0x80,0x80,0x0,0x0,0x1,0x0,0x20,0x0,0x28,0x8,0x1,
0x0,0x16,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x1,0x0,
0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x1,0x1,0x1,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x2,0x4,0x4,0x4,0x4,0x2,0x2,0x2,0x2,0x1,0x2,0x2,0x4,0x0,0x1,0x2,
0xe,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,
0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,
0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,
0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,
0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,
0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,
0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,
0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,
0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,
0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,0x12,0x0,0x0,0x1,
0x12,0x0,0x0,0x1,0x12,0x0,0x2,0x3,0x10,0x4,0x6,0x3,0x6,0x4,0x4,0x2,
0x6,0x3,0x3,0x4,0x6,0x2,0x2,0x2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x9,0x9,
0x4,0x0,0x0,0x0,0x2,0x16,0x39,0x3f,0x30,0x41,0xbc,0xd1,0xc6,0x2e,0xba,0xd2,
0xdc,0x2d,0xba,0xd2,0xda,0x2d,0xba,0xd3,0xdc,0x2d,0xba,0xd3,0xdc,0x2d,0xba,0xd3,
0xdc,0x2d,0xba,0xd3,0xdc,0x2d,0xba,0xd3,0xdc,0x2d,0xba,0xd3,0xdc,0x2d,0xba,0xd3,
0xdc,0x2d,0xba,0xd2,0xdc,0x2d,0xba,0xd2,0xdc,0x2e,0xba,0xd2,0xdc,0x2e,0xba,0xd2,
0xdc,0x2e,0xba,0xd2,0xdc,0x2e,0xba,0xd2,0xdc,0x2e,0xba,0xd2,0xdc,0x2f,0xba,0xd2,
0xdc,0x2f,0xbb,0xd2,0xdc,0x2f,0xbb,0xd2,0xdc,0x30,0xbb,0xd2,0xdc,0x30,0xbb,0xd2,
0xdc,0x31,0xbb,0xd3,0xdc,0x31,0xbb,0xd3,0xdc,0x31,0xbb,0xd3,0xdc,0x32,0xbc,0xd3,
0xdc,0x32,0xbc,0xd3,0xdc,0x33,0xbc,0xd3,0xdc,0x33,0xbc,0xd3,0xdc,0x33,0xbc,0xd3,
0xdc,0x34,0xbc,0xd3,0xdc,0x34,0xbd,0xd3,0xdc,0x35,0xbd,0xd3,0xdc,0x36,0xbd,0xd3,
0xdc,0x37,0xbd,0xd3,0xdc,0x37,0xbd,0xd3,0xdc,0x38,0xbd,0xd3,0xdc,0x39,0xbd,0xd4,
0xdc,0x38,0xbd,0xd4,0xdc,0x39,0xbe,0xd4,0xdc,0x3a,0xbe,0xd4,0xdc,0x3a,0xbe,0xd4,
0xdc,0x3b,0xbe,0xd4,0xdc,0x3b,0xbe,0xd4,0xdc,0x3c,0xbe,0xd4,0xdc,0x3e,0xbf,0xd4,
0xdc,0x3f,0xbf,0xd4,0xdc,0x3f,0xbf,0xd4,0xdc,0x40,0xbf,0xd5,0xdc,0x41,0xbf,0xd5,
0xdc,0x41,0xc0,0xd5,0xdc,0x43,0xc0,0xd5,0xdc,0x44,0xc0,0xd5,0xdc,0x44,0xc1,0xd5,
0xdc,0x44,0xc1,0xd5,0xdc,0x46,0xc1,0xd5,0xdc,0x47,0xc1,0xd5,0xdc,0x49,0xc1,0xd5,
0xdc,0x49,0xc1,0xd5,0xdc,0x4a,0xc2,0xd5,0xdc,0x4b,0xc2,0xd5,0xdc,0x4c,0xc2,0xd5,
0xdc,0x4c,0xc2,0xd5,0xdc,0x4d,0xc3,0xd5,0xdc,0x4e,0xc3,0xd5,0xdc,0x4f,0xc3,0xd5,
0xdc,0x50,0xc3,0xd5,0xdc,0x51,0xc4,0xd5,0xdc,0x52,0xc4,0xd5,0xdc,0x52,0xc4,0xd5,
0xdc,0x54,0xc5,0xd5,0xdc,0x55,0xc4,0xd5,0xdc,0x56,0xc5,0xd5,0xdc,0x57,0xc5,0xd5,
0xdc,0x58,0xc5,0xd5,0xdc,0x59,0xc5,0xd5,0xdc,0x5a,0xc5,0xd6,0xdc,0x5c,0xc5,0xd6,
0xdc,0x5d,0xc5,0xd6,0xdc,0x5e,0xc6,0xd6,0xdc,0x5e,0xc6,0xd6,0xdc,0x5f,0xc6,0xd6,
0xdc,0x60,0xc6,0xd6,0xdc,0x61,0xc6,0xd6,0xdc,0x62,0xc7,0xd6,0xdc,0x62,0xc7,0xd6,
0xdc,0x63,0xc7,0xd6,0xdc,0x64,0xc7,0xd6,0xdc,0x65,0xc7,0xd6,0xdc,0x66,0xc8,0xd7,
0xdc,0x67,0xc8,0xd7,0xdc,0x67,0xc8,0xd7,0xdc,0x68,0xc8,0xd7,0xdc,0x69,0xc8,0xd7,
0xdc,0x6a,0xc9,0xd7,0xdc,0x6a,0xc9,0xd7,0xdc,0x6b,0xc8,0xd7,0xdc,0x6b,0xc9,0xd7,
0xdc,0x6f,0xc9,0xd5,0xdc,0x54,0xc0,0xd4,0xe2,0x1,0x2a,0x87,0xb6,0x0,0x0,0xc,
0x22,0x0,0x1,0x0,0xe,0x2,0x2,0x3,0xa,0x7,0x7,0x7,0x4,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x1,0x4,0x4,
0x8,0x0,0x0,0x0,0x0,0x30,0x82,0x8e,0x7a,0x61,0xfd,0xff,0xff,0x65,0xe2,0xf6,
0xfc,0x79,0xe6,0xf7,0xff,0x78,0xe7,0xf8,0xff,0x78,0xe7,0xf8,0xff,0x77,0xe7,0xf8,
0xff,0x77,0xe7,0xf8,0xff,0x77,0xe7,0xf8,0xff,0x77,0xe7,0xf8,0xff,0x77,0xe7,0xf8,
0xff,0x77,0xe7,0xf8,0xff,0x77,0xe7,0xf8,0xff,0x78,0xe7,0xf8,0xff,0x78,0xe7,0xf8,
0xff,0x79,0xe7,0xf8,0xff,0x79,0xe7,0xf8,0xff,0x7a,0xe8,0xf8,0xff,0x7a,0xe8,0xf8,
0xff,0x7b,0xe8,0xf8,0xff,0x7c,0xe8,0xf8,0xff,0x7c,0xe8,0xf8,0xff,0x7d,0xe8,0xf8,
0xff,0x7d,0xe8,0xf8,0xff,0x7e,0xe8,0xf8,0xff,0x7e,0xe8,0xf8,0xff,0x7f,0xe8,0xf8,
0xff,0x7f,0xe8,0xf8,0xff,0x80,0xe8,0xf8,0xff,0x80,0xe9,0xf8,0xff,0x81,0xe9,0xf8,
0xff,0x82,0xe9,0xf8,0xff,0x83,0xe9,0xf8,0xff,0x84,0xe9,0xf8,0xff,0x85,0xe9,0xf8,
0xff,0x86,0xe9,0xf8,0xff,0x87,0xe9,0xf8,0xff,0x87,0xe9,0xf8,0xff,0x88,0xea,0xf8,
0xff,0x87,0xea,0xf8,0xff,0x88,0xea,0xf8,0xff,0x8a,0xea,0xf9,0xff,0x8a,0xea,0xf9,
0xff,0x8b,0xea,0xf9,0xff,0x8c,0xeb,0xf9,0xff,0x8d,0xeb,0xf9,0xff,0x8e,0xeb,0xf9,
0xff,0x8e,0xeb,0xf9,0xff,0x8f,0xeb,0xf9,0xff,0x90,0xeb,0xf9,0xff,0x90,0xeb,0xf9,
0xff,0x91,0xeb,0xf9,0xff,0x92,0xec,0xf9,0xff,0x93,0xec,0xf9,0xff,0x94,0xec,0xf9,
0xff,0x94,0xec,0xf9,0xff,0x95,0xec,0xf9,0xff,0x96,0xec,0xf9,0xff,0x97,0xec,0xf9,
0xff,0x98,0xec,0xf9,0xff,0x98,0xed,0xf9,0xff,0x99,0xed,0xf9,0xff,0x9a,0xed,0xf9,
0xff,0x9b,0xed,0xf9,0xff,0x9c,0xed,0xf9,0xff,0x9d,0xed,0xf9,0xff,0x9e,0xed,0xf9,
0xff,0x9e,0xed,0xf9,0xff,0x9e,0xed,0xf9,0xff,0x9f,0xed,0xf9,0xff,0xa0,0xee,0xf9,
0xff,0xa1,0xee,0xf9,0xff,0xa2,0xee,0xf9,0xff,0xa2,0xee,0xf9,0xff,0xa4,0xef,0xf9,
0xff,0xa4,0xef,0xf9,0xff,0xa5,0xef,0xf9,0xff,0xa6,0xef,0xf9,0xff,0xa7,0xef,0xf9,
0xff,0xa8,0xef,0xf9,0xff,0xa8,0xef,0xf9,0xff,0xa9,0xf0,0xf9,0xff,0xaa,0xf0,0xf9,
0xff,0xab,0xf0,0xfa,0xff,0xab,0xf0,0xfa,0xff,0xac,0xf0,0xfa,0xff,0xac,0xf0,0xfa,
0xff,0xad,0xf0,0xfa,0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,0xff,0xaf,0xf0,0xfa,
0xff,0xaf,0xf0,0xfa,0xff,0xb0,0xf1,0xfa,0xff,0xb1,0xf0,0xfa,0xff,0xb1,0xf0,0xfa,
0xff,0xb2,0xf0,0xfa,0xff,0xb3,0xf1,0xfa,0xff,0xb3,0xf1,0xfa,0xff,0xb0,0xef,0xf8,
0xff,0xc8,0xfb,0xfd,0xff,0xbd,0xf9,0xfd,0xfc,0x16,0x52,0xc1,0xff,0x0,0x1,0x40,
0x76,0x0,0x0,0x0,0x16,0x0,0x0,0x2,0x16,0x1,0x1,0x1,0xa,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x2,0x2,
0xa,0x0,0x0,0x0,0x4,0x37,0x95,0xa5,0x9a,0x5c,0xee,0xff,0xff,0x39,0xc2,0xdd,
0xfa,0x2b,0xb9,0xd6,0xfc,0x2f,0xbc,0xd8,0xfc,0x2e,0xbb,0xd8,0xfc,0x2e,0xbb,0xd8,
0xfc,0x2e,0xbb,0xd8,0xfc,0x2e,0xbc,0xd8,0xfc,0x2f,0xbc,0xd8,0xfc,0x2f,0xbc,0xd8,
0xfc,0x30,0xbc,0xd8,0xfc,0x30,0xbc,0xd8,0xfc,0x31,0xbc,0xd8,0xfc,0x32,0xbc,0xd8,
0xfc,0x32,0xbc,0xd9,0xfc,0x33,0xbd,0xd9,0xfc,0x33,0xbd,0xd9,0xfc,0x34,0xbd,0xd9,
0xfc,0x35,0xbd,0xd9,0xfc,0x36,0xbd,0xd9,0xfc,0x37,0xbd,0xd9,0xfc,0x37,0xbe,0xd9,
0xfc,0x38,0xbe,0xd9,0xfc,0x39,0xbe,0xd9,0xfc,0x39,0xbe,0xd9,0xfc,0x3b,0xbe,0xd9,
0xfc,0x3c,0xbf,0xd9,0xfc,0x3e,0xbf,0xd9,0xfc,0x3f,0xbf,0xda,0xfc,0x40,0xbf,0xda,
0xfc,0x41,0xbf,0xda,0xfc,0x41,0xbf,0xda,0xfc,0x42,0xc0,0xda,0xfc,0x43,0xc0,0xda,
0xfc,0x44,0xc0,0xda,0xfc,0x44,0xc0,0xda,0xfc,0x45,0xc0,0xda,0xfc,0x46,0xc1,0xda,
0xfc,0x48,0xc1,0xda,0xfc,0x49,0xc1,0xda,0xfc,0x4a,0xc1,0xda,0xfc,0x4b,0xc1,0xda,
0xfc,0x4c,0xc1,0xda,0xfc,0x4d,0xc2,0xda,0xfc,0x4e,0xc2,0xda,0xfc,0x4f,0xc2,0xda,
0xfc,0x50,0xc2,0xda,0xfc,0x51,0xc2,0xda,0xfc,0x52,0xc3,0xda,0xfc,0x53,0xc3,0xda,
0xfc,0x54,0xc3,0xda,0xfc,0x56,0xc3,0xda,0xfc,0x56,0xc3,0xda,0xfc,0x57,0xc4,0xda,
0xfc,0x58,0xc4,0xda,0xfc,0x59,0xc4,0xda,0xfc,0x5a,0xc4,0xda,0xfc,0x5b,0xc4,0xdb,
0xfc,0x5d,0xc5,0xdb,0xfc,0x5d,0xc5,0xdb,0xfc,0x5f,0xc5,0xdb,0xfc,0x60,0xc5,0xdb,
0xfc,0x60,0xc5,0xdb,0xfc,0x61,0xc5,0xdb,0xfc,0x62,0xc6,0xdb,0xfc,0x63,0xc6,0xdb,
0xfc,0x64,0xc6,0xdb,0xfc,0x65,0xc6,0xdb,0xfc,0x66,0xc7,0xdc,0xfc,0x68,0xc7,0xdc,
0xfc,0x69,0xc7,0xdc,0xfc,0x6a,0xc7,0xdc,0xfc,0x6a,0xc7,0xdc,0xfc,0x6b,0xc8,0xdc,
0xfc,0x6c,0xc8,0xdc,0xfc,0x6d,0xc8,0xdc,0xfc,0x6e,0xc8,0xdc,0xfc,0x6f,0xc9,0xdc,
0xfc,0x6f,0xc9,0xdc,0xfc,0x70,0xc9,0xdc,0xfc,0x72,0xc9,0xdd,0xfc,0x72,0xc9,0xdd,
0xfc,0x73,0xc9,0xdd,0xfc,0x74,0xc9,0xdd,0xfc,0x74,0xca,0xdd,0xfc,0x75,0xca,0xdd,
0xfc,0x75,0xca,0xdd,0xfc,0x76,0xca,0xdd,0xfc,0x77,0xca,0xdd,0xfc,0x78,0xca,0xdd,
0xfc,0x79,0xca,0xdd,0xfc,0x7a,0xca,0xdd,0xfc,0x7b,0xca,0xdd,0xfc,0x7b,0xcb,0xdd,
0xfc,0x7c,0xcb,0xdd,0xfc,0x7c,0xcc,0xdd,0xfc,0x7f,0xcd,0xde,0xfc,0x73,0xc4,0xd8,
0xfc,0xa4,0xe6,0xed,0xfc,0xa0,0xe1,0xf2,0xfa,0x2e,0x6b,0xc6,0xff,0x7,0xb,0x4c,
0x92,0x0,0x0,0x0,0x2a,0x0,0x0,0x2,0x26,0x0,0x0,0x0,0x12,0x3,0x3,0x3,
0x8,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xa,0x44,0xb4,0xc7,0xba,0x50,0xe2,0xfc,0xff,0x52,0xc8,0xdf,
0xfc,0x5d,0xd0,0xe4,0xff,0x59,0xcf,0xe4,0xff,0x5a,0xcf,0xe4,0xff,0x5b,0xcf,0xe4,
0xff,0x5c,0xcf,0xe5,0xff,0x5d,0xcf,0xe5,0xff,0x5d,0xcf,0xe5,0xff,0x5e,0xcf,0xe5,
0xff,0x5f,0xcf,0xe5,0xff,0x60,0xcf,0xe5,0xff,0x60,0xd0,0xe5,0xff,0x62,0xd0,0xe5,
0xff,0x62,0xd0,0xe5,0xff,0x62,0xd0,0xe5,0xff,0x63,0xd0,0xe5,0xff,0x63,0xd0,0xe5,
0xff,0x64,0xd0,0xe5,0xff,0x64,0xd1,0xe5,0xff,0x65,0xd1,0xe5,0xff,0x67,0xd1,0xe5,
0xff,0x68,0xd1,0xe5,0xff,0x68,0xd1,0xe6,0xff,0x69,0xd1,0xe6,0xff,0x6a,0xd2,0xe6,
0xff,0x6b,0xd2,0xe6,0xff,0x6c,0xd2,0xe6,0xff,0x6c,0xd2,0xe6,0xff,0x6d,0xd2,0xe6,
0xff,0x6d,0xd2,0xe6,0xff,0x6e,0xd2,0xe6,0xff,0x70,0xd2,0xe6,0xff,0x70,0xd2,0xe6,
0xff,0x70,0xd3,0xe6,0xff,0x72,0xd3,0xe6,0xff,0x73,0xd3,0xe6,0xff,0x73,0xd3,0xe6,
0xff,0x74,0xd3,0xe6,0xff,0x75,0xd3,0xe6,0xff,0x76,0xd3,0xe6,0xff,0x77,0xd4,0xe6,
0xff,0x77,0xd4,0xe6,0xff,0x78,0xd4,0xe6,0xff,0x79,0xd4,0xe6,0xff,0x7a,0xd5,0xe6,
0xff,0x7b,0xd5,0xe6,0xff,0x7b,0xd5,0xe6,0xff,0x7d,0xd5,0xe6,0xff,0x7e,0xd5,0xe6,
0xff,0x7e,0xd5,0xe6,0xff,0x7f,0xd5,0xe7,0xff,0x80,0xd6,0xe7,0xff,0x81,0xd6,0xe7,
0xff,0x82,0xd6,0xe7,0xff,0x82,0xd6,0xe7,0xff,0x83,0xd6,0xe7,0xff,0x84,0xd6,0xe7,
0xff,0x84,0xd7,0xe7,0xff,0x85,0xd7,0xe7,0xff,0x85,0xd7,0xe7,0xff,0x87,0xd7,0xe7,
0xff,0x88,0xd7,0xe7,0xff,0x89,0xd7,0xe7,0xff,0x89,0xd7,0xe7,0xff,0x8a,0xd8,0xe8,
0xff,0x8c,0xd8,0xe8,0xff,0x8c,0xd8,0xe8,0xff,0x8d,0xd8,0xe8,0xff,0x8e,0xd8,0xe8,
0xff,0x8e,0xd8,0xe8,0xff,0x8f,0xd8,0xe8,0xff,0x90,0xd9,0xe8,0xff,0x91,0xd9,0xe8,
0xff,0x91,0xd9,0xe8,0xff,0x91,0xd9,0xe8,0xff,0x92,0xd9,0xe8,0xff,0x93,0xd9,0xe8,
0xff,0x93,0xda,0xe8,0xff,0x94,0xda,0xe8,0xff,0x95,0xda,0xe8,0xff,0x95,0xda,0xe8,
0xff,0x96,0xda,0xe8,0xff,0x97,0xda,0xe8,0xff,0x97,0xda,0xe8,0xff,0x98,0xda,0xe8,
0xff,0x99,0xda,0xe8,0xff,0x99,0xda,0xe8,0xff,0x9a,0xdb,0xe8,0xff,0x9a,0xdb,0xe8,
0xff,0x9b,0xdb,0xe8,0xff,0x9b,0xdb,0xe8,0xff,0x9b,0xdb,0xe8,0xff,0x9c,0xdb,0xe8,
0xff,0x9c,0xdb,0xe8,0xff,0x9c,0xdb,0xe8,0xff,0x9b,0xdb,0xe7,0xff,0xa0,0xdc,0xe9,
0xff,0xc7,0xff,0xff,0xff,0x85,0xc9,0xe6,0xfc,0x4c,0x89,0xd3,0xff,0x9,0x1d,0x57,
0xa4,0x0,0x0,0x0,0x3c,0x0,0x1,0x3,0x34,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,
0x10,0x3,0x3,0x3,0x6,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x8,0x8,0x2,0x0,0x0,0x0,
0x6,0x7,0x10,0x12,0x10,0x4e,0xce,0xe4,0xd4,0x5c,0xe2,0xfa,0xff,0x45,0xc8,0xe1,
0xfc,0x44,0xca,0xe3,0xff,0x45,0xca,0xe3,0xff,0x45,0xca,0xe4,0xff,0x46,0xca,0xe4,
0xff,0x47,0xca,0xe4,0xff,0x47,0xcb,0xe4,0xff,0x48,0xcb,0xe4,0xff,0x48,0xcb,0xe4,
0xff,0x49,0xcb,0xe4,0xff,0x4a,0xcb,0xe4,0xff,0x4a,0xcb,0xe4,0xff,0x4b,0xcc,0xe4,
0xff,0x4c,0xcc,0xe4,0xff,0x4c,0xcc,0xe4,0xff,0x4e,0xcc,0xe4,0xff,0x4f,0xcc,0xe4,
0xff,0x50,0xcc,0xe5,0xff,0x51,0xcd,0xe5,0xff,0x53,0xcd,0xe5,0xff,0x54,0xcd,0xe5,
0xff,0x54,0xcd,0xe5,0xff,0x55,0xcd,0xe5,0xff,0x55,0xcd,0xe5,0xff,0x56,0xcd,0xe5,
0xff,0x56,0xce,0xe5,0xff,0x58,0xce,0xe5,0xff,0x58,0xce,0xe5,0xff,0x5a,0xce,0xe5,
0xff,0x5a,0xce,0xe5,0xff,0x5c,0xce,0xe5,0xff,0x5d,0xce,0xe5,0xff,0x5e,0xcf,0xe5,
0xff,0x5f,0xcf,0xe5,0xff,0x5f,0xcf,0xe5,0xff,0x60,0xcf,0xe5,0xff,0x61,0xd0,0xe5,
0xff,0x62,0xd0,0xe5,0xff,0x63,0xd0,0xe5,0xff,0x64,0xd0,0xe5,0xff,0x65,0xd0,0xe5,
0xff,0x66,0xd1,0xe5,0xff,0x67,0xd1,0xe5,0xff,0x68,0xd1,0xe5,0xff,0x69,0xd1,0xe5,
0xff,0x6a,0xd1,0xe5,0xff,0x6b,0xd2,0xe5,0xff,0x6c,0xd2,0xe6,0xff,0x6d,0xd2,0xe6,
0xff,0x6e,0xd2,0xe6,0xff,0x6f,0xd3,0xe6,0xff,0x70,0xd3,0xe6,0xff,0x71,0xd3,0xe6,
0xff,0x71,0xd3,0xe6,0xff,0x72,0xd3,0xe6,0xff,0x72,0xd3,0xe6,0xff,0x74,0xd3,0xe6,
0xff,0x74,0xd3,0xe6,0xff,0x76,0xd4,0xe6,0xff,0x77,0xd4,0xe7,0xff,0x78,0xd4,0xe7,
0xff,0x7a,0xd5,0xe7,0xff,0x7a,0xd5,0xe7,0xff,0x7b,0xd5,0xe7,0xff,0x7c,0xd5,0xe7,
0xff,0x7d,0xd5,0xe7,0xff,0x7d,0xd5,0xe7,0xff,0x7e,0xd6,0xe7,0xff,0x7f,0xd6,0xe7,
0xff,0x80,0xd6,0xe7,0xff,0x81,0xd6,0xe7,0xff,0x81,0xd6,0xe7,0xff,0x82,0xd7,0xe8,
0xff,0x83,0xd7,0xe8,0xff,0x84,0xd7,0xe8,0xff,0x84,0xd7,0xe8,0xff,0x85,0xd7,0xe8,
0xff,0x85,0xd7,0xe8,0xff,0x86,0xd7,0xe8,0xff,0x87,0xd7,0xe8,0xff,0x88,0xd7,0xe8,
0xff,0x89,0xd7,0xe8,0xff,0x89,0xd7,0xe8,0xff,0x8a,0xd8,0xe8,0xff,0x8b,0xd8,0xe8,
0xff,0x8b,0xd8,0xe8,0xff,0x8c,0xd9,0xe8,0xff,0x8c,0xd8,0xe8,0xff,0x8c,0xd8,0xe8,
0xff,0x8d,0xd8,0xe8,0xff,0x8d,0xd8,0xe8,0xff,0x8e,0xd8,0xe8,0xff,0x8e,0xd8,0xe8,
0xff,0x8e,0xd9,0xe7,0xff,0x8e,0xd9,0xe7,0xff,0x8f,0xd9,0xe7,0xff,0x88,0xd4,0xe5,
0xff,0xc4,0xff,0xff,0xff,0x75,0xae,0xde,0xfc,0x68,0xaa,0xe0,0xff,0x9,0x26,0x5d,
0xb2,0x0,0x0,0x0,0x4a,0x0,0x1,0x3,0x44,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,
0x1a,0x1,0x1,0x1,0xe,0x0,0x0,0x0,0x6,0x8,0x8,0x8,0x2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x29,0x2a,0x2,0x0,0x0,0x0,
0x2,0x10,0x25,0x29,0x1e,0x59,0xdf,0xf7,0xea,0x44,0xc7,0xe2,0xff,0x4f,0xc2,0xd9,
0xff,0x51,0xc6,0xdc,0xff,0x52,0xc5,0xdc,0xff,0x53,0xc5,0xdc,0xff,0x53,0xc5,0xdc,
0xff,0x54,0xc6,0xdc,0xff,0x54,0xc6,0xdc,0xff,0x55,0xc6,0xdc,0xff,0x56,0xc6,0xdc,
0xff,0x56,0xc6,0xdc,0xff,0x58,0xc6,0xdc,0xff,0x59,0xc6,0xdd,0xff,0x5a,0xc7,0xdd,
0xff,0x5b,0xc7,0xdd,0xff,0x5c,0xc7,0xdd,0xff,0x5c,0xc7,0xdd,0xff,0x5d,0xc7,0xdd,
0xff,0x5e,0xc7,0xdd,0xff,0x5e,0xc7,0xdd,0xff,0x5f,0xc8,0xdd,0xff,0x5f,0xc8,0xdd,
0xff,0x60,0xc8,0xdd,0xff,0x61,0xc8,0xdd,0xff,0x63,0xc8,0xde,0xff,0x64,0xc8,0xde,
0xff,0x64,0xc8,0xde,0xff,0x66,0xc9,0xde,0xff,0x66,0xc9,0xde,0xff,0x68,0xc9,0xde,
0xff,0x68,0xc9,0xde,0xff,0x69,0xc9,0xde,0xff,0x6a,0xc9,0xde,0xff,0x6b,0xca,0xde,
0xff,0x6b,0xca,0xde,0xff,0x6c,0xca,0xde,0xff,0x6e,0xca,0xde,0xff,0x6f,0xca,0xde,
0xff,0x6f,0xca,0xde,0xff,0x70,0xcb,0xde,0xff,0x71,0xcb,0xde,0xff,0x72,0xcb,0xde,
0xff,0x73,0xcb,0xde,0xff,0x74,0xcb,0xde,0xff,0x75,0xcc,0xde,0xff,0x76,0xcc,0xde,
0xff,0x77,0xcc,0xde,0xff,0x78,0xcc,0xde,0xff,0x78,0xcc,0xde,0xff,0x79,0xcc,0xde,
0xff,0x7a,0xcc,0xde,0xff,0x7a,0xcd,0xde,0xff,0x7b,0xcd,0xdf,0xff,0x7c,0xcd,0xdf,
0xff,0x7d,0xcd,0xdf,0xff,0x7e,0xcd,0xdf,0xff,0x7f,0xcd,0xdf,0xff,0x80,0xce,0xdf,
0xff,0x81,0xce,0xdf,0xff,0x82,0xce,0xdf,0xff,0x82,0xce,0xdf,0xff,0x83,0xce,0xdf,
0xff,0x84,0xce,0xdf,0xff,0x85,0xcf,0xdf,0xff,0x86,0xcf,0xdf,0xff,0x86,0xcf,0xe0,
0xff,0x87,0xcf,0xe0,0xff,0x87,0xcf,0xe0,0xff,0x88,0xcf,0xe0,0xff,0x89,0xd0,0xe0,
0xff,0x89,0xd0,0xe0,0xff,0x8a,0xd0,0xe0,0xff,0x8a,0xd0,0xe0,0xff,0x8b,0xd0,0xe0,
0xff,0x8c,0xd0,0xe0,0xff,0x8c,0xd0,0xe0,0xff,0x8d,0xd0,0xe0,0xff,0x8e,0xd0,0xe0,
0xff,0x8f,0xd0,0xe0,0xff,0x8f,0xd1,0xe0,0xff,0x90,0xd1,0xe0,0xff,0x90,0xd1,0xe0,
0xff,0x91,0xd1,0xe0,0xff,0x91,0xd1,0xe0,0xff,0x91,0xd1,0xe0,0xff,0x91,0xd1,0xe0,
0xff,0x91,0xd1,0xe0,0xff,0x92,0xd2,0xe0,0xff,0x92,0xd2,0xe0,0xff,0x93,0xd2,0xe0,
0xff,0x93,0xd2,0xe0,0xff,0x93,0xd2,0xe0,0xff,0x94,0xd2,0xe0,0xff,0x94,0xd2,0xe0,
0xff,0x95,0xd2,0xe0,0xff,0x96,0xd3,0xe0,0xff,0x92,0xcf,0xde,0xff,0xaa,0xe3,0xef,
0xff,0xca,0xff,0xff,0xff,0x5f,0x9f,0xd7,0xfc,0x84,0xc2,0xe7,0xff,0xd,0x27,0x67,
0xc0,0x0,0x0,0x0,0x54,0x1,0x2,0x2,0x50,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,
0x26,0x0,0x0,0x0,0x16,0x2,0x2,0x2,0xa,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x4d,0x4e,0x2,0x0,0x0,0x0,
0x0,0x1e,0x46,0x4e,0x32,0x62,0xec,0xff,0xfc,0x48,0xd1,0xeb,0xff,0x3e,0xcd,0xe8,
0xff,0x42,0xcf,0xea,0xff,0x42,0xcf,0xea,0xff,0x43,0xcf,0xea,0xff,0x43,0xcf,0xea,
0xff,0x45,0xd0,0xea,0xff,0x46,0xd0,0xea,0xff,0x47,0xd0,0xea,0xff,0x49,0xd0,0xeb,
0xff,0x4a,0xd0,0xeb,0xff,0x4b,0xd1,0xeb,0xff,0x4c,0xd1,0xeb,0xff,0x4d,0xd1,0xeb,
0xff,0x4d,0xd1,0xeb,0xff,0x4e,0xd1,0xeb,0xff,0x4f,0xd2,0xeb,0xff,0x4f,0xd2,0xeb,
0xff,0x50,0xd2,0xeb,0xff,0x52,0xd2,0xeb,0xff,0x53,0xd2,0xeb,0xff,0x54,0xd3,0xeb,
0xff,0x55,0xd3,0xeb,0xff,0x56,0xd3,0xeb,0xff,0x57,0xd3,0xeb,0xff,0x58,0xd3,0xeb,
0xff,0x59,0xd3,0xeb,0xff,0x59,0xd4,0xeb,0xff,0x5a,0xd4,0xeb,0xff,0x5b,0xd4,0xeb,
0xff,0x5c,0xd4,0xeb,0xff,0x5e,0xd5,0xeb,0xff,0x5f,0xd5,0xeb,0xff,0x60,0xd5,0xeb,
0xff,0x60,0xd5,0xeb,0xff,0x61,0xd6,0xeb,0xff,0x62,0xd6,0xeb,0xff,0x63,0xd6,0xeb,
0xff,0x64,0xd6,0xeb,0xff,0x66,0xd6,0xec,0xff,0x66,0xd7,0xec,0xff,0x67,0xd7,0xec,
0xff,0x68,0xd7,0xec,0xff,0x69,0xd7,0xec,0xff,0x6a,0xd7,0xec,0xff,0x6b,0xd7,0xec,
0xff,0x6c,0xd7,0xec,0xff,0x6c,0xd8,0xec,0xff,0x6d,0xd8,0xec,0xff,0x6e,0xd8,0xec,
0xff,0x70,0xd8,0xec,0xff,0x71,0xd9,0xec,0xff,0x72,0xd9,0xec,0xff,0x73,0xd9,0xec,
0xff,0x73,0xd9,0xec,0xff,0x74,0xda,0xec,0xff,0x75,0xda,0xec,0xff,0x76,0xda,0xec,
0xff,0x77,0xda,0xed,0xff,0x78,0xdb,0xed,0xff,0x79,0xdb,0xed,0xff,0x7a,0xdb,0xed,
0xff,0x7a,0xdb,0xed,0xff,0x7b,0xdb,0xed,0xff,0x7c,0xdb,0xed,0xff,0x7d,0xdb,0xed,
0xff,0x7e,0xdb,0xed,0xff,0x7e,0xdb,0xed,0xff,0x7f,0xdc,0xed,0xff,0x80,0xdc,0xed,
0xff,0x81,0xdc,0xed,0xff,0x81,0xdc,0xed,0xff,0x82,0xdc,0xed,0xff,0x83,0xdc,0xed,
0xff,0x84,0xdc,0xed,0xff,0x84,0xdc,0xed,0xff,0x85,0xdd,0xed,0xff,0x86,0xdd,0xed,
0xff,0x86,0xdd,0xed,0xff,0x87,0xdd,0xed,0xff,0x87,0xdd,0xed,0xff,0x88,0xdd,0xed,
0xff,0x88,0xdd,0xed,0xff,0x88,0xdd,0xed,0xff,0x89,0xdd,0xed,0xff,0x89,0xde,0xed,
0xff,0x89,0xde,0xed,0xff,0x8a,0xde,0xed,0xff,0x8a,0xde,0xed,0xff,0x8b,0xde,0xed,
0xff,0x8b,0xde,0xed,0xff,0x8c,0xde,0xed,0xff,0x8c,0xde,0xed,0xff,0x8d,0xde,0xed,
0xff,0x8d,0xde,0xee,0xff,0x8e,0xdf,0xee,0xff,0x8b,0xdc,0xeb,0xff,0x98,0xe6,0xf4,
0xff,0xc8,0xff,0xff,0xff,0x53,0x89,0xcf,0xfc,0x9f,0xd9,0xf0,0xff,0x15,0x2c,0x78,
0xcc,0x0,0x0,0x0,0x58,0x1,0x2,0x2,0x58,0x0,0x0,0x0,0x46,0x0,0x0,0x0,
0x34,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x12,0x4,0x4,0x4,0x8,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x7b,0x7b,0x4,0x0,0x0,0x0,
0x0,0x2e,0x69,0x74,0x4a,0x65,0xf1,0xff,0xff,0x61,0xe0,0xf7,0xfc,0x65,0xe5,0xfb,
0xff,0x65,0xe5,0xfb,0xff,0x67,0xe5,0xfb,0xff,0x68,0xe5,0xfc,0xff,0x6a,0xe5,0xfc,
0xff,0x6b,0xe6,0xfc,0xff,0x6b,0xe6,0xfc,0xff,0x6c,0xe6,0xfc,0xff,0x6d,0xe6,0xfc,
0xff,0x6d,0xe6,0xfc,0xff,0x6e,0xe7,0xfc,0xff,0x6e,0xe7,0xfc,0xff,0x6f,0xe7,0xfc,
0xff,0x70,0xe7,0xfc,0xff,0x71,0xe8,0xfc,0xff,0x72,0xe8,0xfc,0xff,0x73,0xe8,0xfc,
0xff,0x74,0xe8,0xfc,0xff,0x75,0xe8,0xfc,0xff,0x75,0xe8,0xfc,0xff,0x76,0xe8,0xfc,
0xff,0x77,0xe8,0xfc,0xff,0x78,0xe8,0xfc,0xff,0x78,0xe9,0xfc,0xff,0x79,0xe9,0xfc,
0xff,0x7a,0xe9,0xfc,0xff,0x7b,0xe9,0xfc,0xff,0x7c,0xe9,0xfc,0xff,0x7d,0xea,0xfc,
0xff,0x7d,0xea,0xfc,0xff,0x7e,0xea,0xfc,0xff,0x7f,0xea,0xfc,0xff,0x7f,0xeb,0xfc,
0xff,0x80,0xeb,0xfc,0xff,0x81,0xeb,0xfc,0xff,0x82,0xeb,0xfc,0xff,0x83,0xeb,0xfd,
0xff,0x84,0xeb,0xfd,0xff,0x85,0xec,0xfd,0xff,0x85,0xec,0xfd,0xff,0x86,0xec,0xfd,
0xff,0x86,0xec,0xfd,0xff,0x87,0xec,0xfd,0xff,0x88,0xec,0xfd,0xff,0x89,0xec,0xfd,
0xff,0x8a,0xed,0xfd,0xff,0x8b,0xed,0xfd,0xff,0x8c,0xed,0xfd,0xff,0x8d,0xed,0xfd,
0xff,0x8e,0xee,0xfd,0xff,0x8e,0xee,0xfd,0xff,0x8f,0xee,0xfd,0xff,0x8f,0xee,0xfd,
0xff,0x91,0xef,0xfd,0xff,0x91,0xef,0xfd,0xff,0x92,0xef,0xfd,0xff,0x93,0xef,0xfe,
0xff,0x94,0xef,0xfe,0xff,0x94,0xef,0xfe,0xff,0x95,0xef,0xfe,0xff,0x96,0xef,0xfe,
0xff,0x96,0xf0,0xfe,0xff,0x97,0xf0,0xfe,0xff,0x98,0xf0,0xfe,0xff,0x99,0xf0,0xfe,
0xff,0x99,0xf0,0xfe,0xff,0x9a,0xf0,0xfe,0xff,0x9b,0xf0,0xfe,0xff,0x9b,0xf0,0xfe,
0xff,0x9c,0xf0,0xfe,0xff,0x9d,0xf1,0xfe,0xff,0x9d,0xf1,0xfe,0xff,0x9e,0xf1,0xfe,
0xff,0x9e,0xf1,0xfe,0xff,0x9e,0xf1,0xfe,0xff,0x9f,0xf1,0xfe,0xff,0x9f,0xf1,0xfe,
0xff,0xa0,0xf1,0xfe,0xff,0xa0,0xf1,0xfe,0xff,0xa0,0xf1,0xfe,0xff,0xa0,0xf1,0xfe,
0xff,0xa1,0xf1,0xfe,0xff,0xa1,0xf1,0xfe,0xff,0xa2,0xf1,0xfe,0xff,0xa2,0xf1,0xfe,
0xff,0xa3,0xf1,0xfe,0xff,0xa3,0xf2,0xfe,0xff,0xa4,0xf2,0xfe,0xff,0xa4,0xf2,0xfe,
0xff,0xa5,0xf2,0xfe,0xff,0xa5,0xf2,0xfe,0xff,0xa5,0xf2,0xfe,0xff,0xa5,0xf2,0xfe,
0xff,0xa6,0xf2,0xfe,0xff,0xa6,0xf2,0xfe,0xff,0xa6,0xf1,0xfe,0xff,0xaa,0xf3,0xfd,
0xff,0xbf,0xfb,0xff,0xff,0x46,0x86,0xcc,0xfc,0xac,0xed,0xf6,0xff,0x14,0x40,0x83,
0xd2,0x0,0x0,0x0,0x5a,0x1,0x3,0x2,0x5a,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,
0x40,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0xe,0x4,0x4,0x4,
0x6,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xab,0xac,0x4,0x0,0x0,0x0,
0x0,0x3c,0x87,0x94,0x6a,0x6a,0xf2,0xff,0xff,0x61,0xde,0xf4,0xfa,0x63,0xe1,0xf8,
0xff,0x64,0xe2,0xf9,0xff,0x65,0xe2,0xf9,0xff,0x66,0xe2,0xf9,0xff,0x66,0xe2,0xf9,
0xff,0x67,0xe2,0xf9,0xff,0x68,0xe3,0xf8,0xff,0x68,0xe3,0xf8,0xff,0x69,0xe3,0xf8,
0xff,0x6a,0xe3,0xf8,0xff,0x6b,0xe3,0xf9,0xff,0x6c,0xe3,0xf9,0xff,0x6d,0xe3,0xf9,
0xff,0x6e,0xe3,0xf9,0xff,0x6f,0xe3,0xf9,0xff,0x70,0xe4,0xf9,0xff,0x71,0xe4,0xf9,
0xff,0x71,0xe4,0xf9,0xff,0x72,0xe4,0xf9,0xff,0x73,0xe5,0xf9,0xff,0x74,0xe5,0xf9,
0xff,0x75,0xe5,0xf9,0xff,0x76,0xe5,0xf9,0xff,0x76,0xe6,0xf8,0xff,0x77,0xe6,0xf8,
0xff,0x78,0xe6,0xf8,0xff,0x79,0xe6,0xf8,0xff,0x7a,0xe6,0xf9,0xff,0x7b,0xe7,0xf9,
0xff,0x7c,0xe7,0xf9,0xff,0x7c,0xe7,0xf9,0xff,0x7d,0xe7,0xf9,0xff,0x7e,0xe7,0xfa,
0xff,0x7f,0xe7,0xfa,0xff,0x80,0xe7,0xfa,0xff,0x80,0xe7,0xfa,0xff,0x81,0xe8,0xfa,
0xff,0x81,0xe8,0xfa,0xff,0x82,0xe8,0xfa,0xff,0x83,0xe8,0xfa,0xff,0x85,0xe9,0xfa,
0xff,0x86,0xe9,0xfa,0xff,0x87,0xe9,0xfa,0xff,0x88,0xe9,0xfa,0xff,0x88,0xe9,0xf9,
0xff,0x89,0xea,0xf9,0xff,0x89,0xea,0xf9,0xff,0x8a,0xea,0xfa,0xff,0x8b,0xea,0xfa,
0xff,0x8c,0xeb,0xfa,0xff,0x8d,0xeb,0xfa,0xff,0x8e,0xeb,0xfa,0xff,0x8f,0xeb,0xfa,
0xff,0x8f,0xeb,0xfb,0xff,0x90,0xeb,0xfb,0xff,0x91,0xeb,0xfb,0xff,0x91,0xeb,0xfb,
0xff,0x92,0xec,0xfb,0xff,0x93,0xec,0xfb,0xff,0x93,0xec,0xfb,0xff,0x94,0xec,0xfb,
0xff,0x95,0xec,0xfb,0xff,0x96,0xec,0xfb,0xff,0x96,0xec,0xfb,0xff,0x97,0xec,0xfb,
0xff,0x98,0xec,0xfb,0xff,0x98,0xed,0xfb,0xff,0x99,0xed,0xfb,0xff,0x99,0xed,0xfb,
0xff,0x9a,0xed,0xfb,0xff,0x9a,0xed,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,
0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9c,0xed,0xfb,0xff,0x9c,0xed,0xfb,
0xff,0x9c,0xed,0xfb,0xff,0x9d,0xed,0xfb,0xff,0x9d,0xed,0xfb,0xff,0x9e,0xed,0xfb,
0xff,0x9f,0xee,0xfb,0xff,0x9f,0xee,0xfb,0xff,0xa0,0xee,0xfb,0xff,0xa0,0xee,0xfb,
0xff,0xa0,0xee,0xfb,0xff,0xa0,0xee,0xfb,0xff,0xa1,0xee,0xfb,0xff,0xa1,0xee,0xfb,
0xff,0xa2,0xee,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa3,0xee,0xfb,
0xff,0xa3,0xee,0xfb,0xff,0xa3,0xee,0xfb,0xff,0xa1,0xed,0xfa,0xff,0xb1,0xf7,0xfe,
0xff,0xb3,0xec,0xf9,0xff,0x47,0x7c,0xc7,0xfc,0xb4,0xfa,0xfb,0xff,0x18,0x46,0x88,
0xd8,0x0,0x0,0x0,0x58,0x1,0x3,0x1,0x5a,0x0,0x0,0x0,0x52,0x0,0x0,0x0,
0x48,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x18,0x0,0x0,0x0,
0xc,0x3,0x3,0x3,0x4,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0xd9,0xd9,0x4,0x0,0x0,0x0,
0x0,0x4a,0xa6,0xb7,0x8e,0x6e,0xf0,0xff,0xff,0x65,0xe0,0xf6,0xfa,0x67,0xe3,0xf9,
0xff,0x68,0xe3,0xf9,0xff,0x68,0xe3,0xf9,0xff,0x6a,0xe3,0xf9,0xff,0x6a,0xe4,0xf9,
0xff,0x6b,0xe4,0xf9,0xff,0x6c,0xe4,0xf9,0xff,0x6d,0xe4,0xf9,0xff,0x6f,0xe4,0xf9,
0xff,0x6f,0xe4,0xf9,0xff,0x70,0xe4,0xf9,0xff,0x71,0xe4,0xf9,0xff,0x72,0xe5,0xf9,
0xff,0x72,0xe5,0xf9,0xff,0x73,0xe5,0xf9,0xff,0x74,0xe5,0xf9,0xff,0x74,0xe5,0xf9,
0xff,0x75,0xe6,0xf9,0xff,0x76,0xe6,0xf9,0xff,0x77,0xe6,0xf9,0xff,0x78,0xe6,0xf9,
0xff,0x79,0xe7,0xf9,0xff,0x7a,0xe7,0xf9,0xff,0x7a,0xe7,0xf9,0xff,0x7b,0xe7,0xf9,
0xff,0x7c,0xe8,0xf9,0xff,0x7d,0xe8,0xfa,0xff,0x7e,0xe8,0xfa,0xff,0x7f,0xe8,0xfa,
0xff,0x80,0xe8,0xfa,0xff,0x80,0xe8,0xfa,0xff,0x81,0xe8,0xfa,0xff,0x82,0xe8,0xfa,
0xff,0x83,0xe8,0xfa,0xff,0x84,0xe9,0xfa,0xff,0x84,0xe9,0xfa,0xff,0x85,0xe9,0xfa,
0xff,0x87,0xe9,0xfa,0xff,0x88,0xea,0xfa,0xff,0x88,0xea,0xfa,0xff,0x89,0xea,0xfa,
0xff,0x8a,0xea,0xfa,0xff,0x8a,0xeb,0xfa,0xff,0x8b,0xeb,0xfa,0xff,0x8c,0xeb,0xfa,
0xff,0x8d,0xeb,0xfa,0xff,0x8e,0xeb,0xfb,0xff,0x8e,0xec,0xfb,0xff,0x8f,0xec,0xfb,
0xff,0x90,0xec,0xfb,0xff,0x91,0xec,0xfb,0xff,0x91,0xec,0xfb,0xff,0x92,0xec,0xfb,
0xff,0x93,0xec,0xfb,0xff,0x94,0xec,0xfb,0xff,0x94,0xec,0xfb,0xff,0x95,0xec,0xfb,
0xff,0x96,0xec,0xfb,0xff,0x96,0xec,0xfb,0xff,0x97,0xec,0xfb,0xff,0x98,0xed,0xfb,
0xff,0x98,0xed,0xfb,0xff,0x99,0xed,0xfb,0xff,0x99,0xee,0xfb,0xff,0x9a,0xee,0xfb,
0xff,0x9a,0xee,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,
0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9d,0xee,0xfb,
0xff,0x9d,0xee,0xfb,0xff,0x9e,0xee,0xfb,0xff,0x9e,0xee,0xfb,0xff,0x9f,0xee,0xfb,
0xff,0x9f,0xee,0xfb,0xff,0xa0,0xee,0xfb,0xff,0xa0,0xef,0xfb,0xff,0xa1,0xef,0xfb,
0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xee,0xfb,0xff,0xa2,0xee,0xfb,
0xff,0xa2,0xee,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa5,0xef,0xfb,
0xff,0xa5,0xef,0xfb,0xff,0xa6,0xf0,0xfb,0xff,0xa2,0xee,0xfa,0xff,0xbd,0xfe,0xff,
0xff,0xa1,0xda,0xf2,0xff,0x46,0x85,0xc8,0xfc,0xb9,0xff,0xfb,0xff,0x1f,0x4c,0x8d,
0xdc,0x0,0x0,0x0,0x56,0x2,0x3,0x1,0x56,0x0,0x0,0x0,0x52,0x0,0x0,0x0,
0x4c,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x20,0x0,0x0,0x0,
0x14,0x1,0x1,0x1,0xa,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xf1,0xf0,0x2,0x0,0x0,0x0,
0x0,0x51,0xb8,0xca,0xae,0x70,0xee,0xff,0xff,0x69,0xe2,0xf7,0xfc,0x6b,0xe4,0xf9,
0xff,0x6c,0xe4,0xf9,0xff,0x6d,0xe4,0xf9,0xff,0x6e,0xe4,0xf9,0xff,0x6f,0xe4,0xf9,
0xff,0x70,0xe4,0xf9,0xff,0x71,0xe4,0xf9,0xff,0x71,0xe4,0xf9,0xff,0x72,0xe5,0xf9,
0xff,0x73,0xe5,0xf9,0xff,0x73,0xe5,0xf9,0xff,0x74,0xe5,0xf9,0xff,0x75,0xe6,0xf9,
0xff,0x76,0xe6,0xf9,0xff,0x77,0xe6,0xf9,0xff,0x78,0xe6,0xf9,0xff,0x79,0xe7,0xf9,
0xff,0x79,0xe7,0xf9,0xff,0x7a,0xe7,0xf9,0xff,0x7b,0xe7,0xf9,0xff,0x7c,0xe7,0xf9,
0xff,0x7d,0xe8,0xfa,0xff,0x7e,0xe8,0xfa,0xff,0x7f,0xe8,0xfa,0xff,0x80,0xe8,0xfa,
0xff,0x80,0xe8,0xfa,0xff,0x81,0xe8,0xfa,0xff,0x82,0xe8,0xfa,0xff,0x82,0xe8,0xfa,
0xff,0x83,0xe9,0xfa,0xff,0x84,0xe9,0xfa,0xff,0x85,0xe9,0xfa,0xff,0x86,0xe9,0xfa,
0xff,0x87,0xea,0xfa,0xff,0x88,0xea,0xfa,0xff,0x88,0xea,0xfa,0xff,0x89,0xea,0xfa,
0xff,0x8a,0xea,0xfa,0xff,0x8b,0xeb,0xfa,0xff,0x8b,0xeb,0xfa,0xff,0x8c,0xeb,0xfa,
0xff,0x8d,0xeb,0xfa,0xff,0x8e,0xec,0xfb,0xff,0x8f,0xec,0xfb,0xff,0x90,0xec,0xfb,
0xff,0x90,0xec,0xfb,0xff,0x91,0xec,0xfb,0xff,0x92,0xec,0xfb,0xff,0x93,0xec,0xfb,
0xff,0x93,0xec,0xfb,0xff,0x94,0xec,0xfb,0xff,0x95,0xec,0xfb,0xff,0x95,0xec,0xfb,
0xff,0x96,0xec,0xfb,0xff,0x97,0xec,0xfb,0xff,0x98,0xec,0xfb,0xff,0x98,0xed,0xfb,
0xff,0x99,0xed,0xfb,0xff,0x99,0xee,0xfb,0xff,0x9a,0xee,0xfb,0xff,0x9a,0xee,0xfb,
0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9c,0xed,0xfb,
0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9d,0xee,0xfb,
0xff,0x9d,0xee,0xfb,0xff,0x9e,0xee,0xfb,0xff,0x9f,0xee,0xfb,0xff,0x9f,0xee,0xfb,
0xff,0xa0,0xee,0xfb,0xff,0xa0,0xee,0xfb,0xff,0xa0,0xef,0xfb,0xff,0xa1,0xef,0xfb,
0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa2,0xee,0xfb,
0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa5,0xef,0xfb,
0xff,0xa6,0xef,0xfb,0xff,0xa6,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa2,0xed,0xfa,0xff,0xc4,0xff,0xff,
0xff,0x8e,0xc6,0xea,0xff,0x50,0x8b,0xca,0xff,0xbb,0xff,0xfa,0xff,0x31,0x55,0x9d,
0xe8,0x0,0x0,0x1,0x58,0x2,0x3,0x0,0x50,0x0,0x0,0x1,0x50,0x0,0x0,0x0,
0x4c,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,
0x1c,0x0,0x0,0x0,0x10,0x3,0x3,0x3,0x6,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x53,0xbb,0xcd,0xce,0x75,0xef,0xff,0xff,0x6e,0xe2,0xf7,0xfc,0x6f,0xe4,0xf9,
0xff,0x70,0xe4,0xf9,0xff,0x71,0xe4,0xf9,0xff,0x72,0xe5,0xf9,0xff,0x72,0xe5,0xf9,
0xff,0x73,0xe5,0xf9,0xff,0x74,0xe5,0xf9,0xff,0x74,0xe5,0xf9,0xff,0x75,0xe6,0xf9,
0xff,0x76,0xe6,0xf9,0xff,0x77,0xe6,0xf9,0xff,0x78,0xe6,0xf9,0xff,0x79,0xe7,0xf9,
0xff,0x7a,0xe7,0xf9,0xff,0x7a,0xe7,0xf9,0xff,0x7b,0xe7,0xf9,0xff,0x7c,0xe8,0xf9,
0xff,0x7d,0xe8,0xfa,0xff,0x7e,0xe8,0xfa,0xff,0x7f,0xe8,0xfa,0xff,0x80,0xe8,0xfa,
0xff,0x80,0xe8,0xfa,0xff,0x81,0xe8,0xfa,0xff,0x82,0xe8,0xfa,0xff,0x83,0xe8,0xfa,
0xff,0x84,0xe9,0xfa,0xff,0x84,0xe9,0xfa,0xff,0x85,0xe9,0xfa,0xff,0x87,0xe9,0xfa,
0xff,0x88,0xea,0xfa,0xff,0x88,0xea,0xfa,0xff,0x89,0xea,0xfa,0xff,0x8a,0xea,0xfa,
0xff,0x8a,0xeb,0xfa,0xff,0x8b,0xeb,0xfa,0xff,0x8c,0xeb,0xfa,0xff,0x8d,0xeb,0xfa,
0xff,0x8e,0xeb,0xfb,0xff,0x8e,0xec,0xfb,0xff,0x8f,0xec,0xfb,0xff,0x90,0xec,0xfb,
0xff,0x91,0xec,0xfb,0xff,0x91,0xec,0xfb,0xff,0x92,0xec,0xfb,0xff,0x93,0xec,0xfb,
0xff,0x94,0xec,0xfb,0xff,0x94,0xec,0xfb,0xff,0x95,0xec,0xfb,0xff,0x96,0xec,0xfb,
0xff,0x96,0xec,0xfb,0xff,0x97,0xec,0xfb,0xff,0x98,0xed,0xfb,0xff,0x98,0xed,0xfb,
0xff,0x99,0xed,0xfb,0xff,0x99,0xee,0xfb,0xff,0x9a,0xee,0xfb,0xff,0x9a,0xee,0xfb,
0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9c,0xee,0xfb,
0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9d,0xee,0xfb,0xff,0x9d,0xee,0xfb,
0xff,0x9e,0xee,0xfb,0xff,0x9e,0xee,0xfb,0xff,0x9f,0xee,0xfb,0xff,0x9f,0xee,0xfb,
0xff,0xa0,0xee,0xfb,0xff,0xa0,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,
0xff,0xa1,0xef,0xfb,0xff,0xa1,0xee,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa2,0xee,0xfb,
0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa5,0xef,0xfb,0xff,0xa5,0xef,0xfb,
0xff,0xa6,0xef,0xfb,0xff,0xa6,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa8,0xf0,0xfb,0xff,0xa9,0xf1,0xfc,0xff,0xa3,0xed,0xfb,0xff,0xcf,0xff,0xff,
0xff,0x79,0xad,0xe3,0xff,0x59,0x9b,0xd0,0xff,0xb9,0xff,0xf8,0xff,0x3f,0x76,0xb2,
0xf0,0x0,0x0,0x6,0x58,0x3,0x4,0x0,0x48,0x0,0x0,0x1,0x4c,0x0,0x0,0x0,
0x4a,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x32,0x0,0x0,0x0,
0x24,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0xc,0x4,0x4,0x4,0x6,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x8b,0x8e,
0xe,0x5f,0xd3,0xe8,0xe8,0x76,0xe9,0xfe,0xff,0x71,0xe4,0xf8,0xff,0x73,0xe5,0xf9,
0xff,0x73,0xe5,0xf9,0xff,0x74,0xe5,0xf9,0xff,0x75,0xe6,0xf9,0xff,0x76,0xe6,0xf9,
0xff,0x77,0xe6,0xf9,0xff,0x78,0xe6,0xf9,0xff,0x79,0xe7,0xf9,0xff,0x79,0xe7,0xf9,
0xff,0x7a,0xe7,0xf9,0xff,0x7b,0xe7,0xf9,0xff,0x7c,0xe7,0xf9,0xff,0x7d,0xe8,0xfa,
0xff,0x7e,0xe8,0xfa,0xff,0x7f,0xe8,0xfa,0xff,0x80,0xe8,0xfa,0xff,0x80,0xe8,0xfa,
0xff,0x81,0xe8,0xfa,0xff,0x82,0xe8,0xfa,0xff,0x82,0xe8,0xfa,0xff,0x83,0xe9,0xfa,
0xff,0x84,0xe9,0xfa,0xff,0x85,0xe9,0xfa,0xff,0x86,0xe9,0xfa,0xff,0x87,0xea,0xfa,
0xff,0x88,0xea,0xfa,0xff,0x88,0xea,0xfa,0xff,0x89,0xea,0xfa,0xff,0x8a,0xea,0xfa,
0xff,0x8b,0xeb,0xfa,0xff,0x8b,0xeb,0xfa,0xff,0x8c,0xeb,0xfa,0xff,0x8d,0xeb,0xfa,
0xff,0x8e,0xec,0xfb,0xff,0x8f,0xec,0xfb,0xff,0x90,0xec,0xfb,0xff,0x90,0xec,0xfb,
0xff,0x91,0xec,0xfb,0xff,0x92,0xec,0xfb,0xff,0x93,0xec,0xfb,0xff,0x93,0xec,0xfb,
0xff,0x94,0xec,0xfb,0xff,0x95,0xec,0xfb,0xff,0x95,0xec,0xfb,0xff,0x96,0xec,0xfb,
0xff,0x97,0xec,0xfb,0xff,0x98,0xec,0xfb,0xff,0x98,0xed,0xfb,0xff,0x99,0xed,0xfb,
0xff,0x99,0xee,0xfb,0xff,0x9a,0xee,0xfb,0xff,0x9a,0xee,0xfb,0xff,0x9b,0xed,0xfb,
0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9c,0xed,0xfb,0xff,0x9c,0xee,0xfb,
0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9d,0xee,0xfb,0xff,0x9d,0xee,0xfb,
0xff,0x9e,0xee,0xfb,0xff,0x9f,0xee,0xfb,0xff,0x9f,0xee,0xfb,0xff,0xa0,0xee,0xfb,
0xff,0xa0,0xee,0xfb,0xff,0xa0,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,
0xff,0xa1,0xef,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa3,0xef,0xfb,
0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa5,0xef,0xfb,0xff,0xa6,0xef,0xfb,
0xff,0xa6,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa8,0xf0,0xfb,
0xff,0xa8,0xf1,0xfc,0xff,0xa9,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xa6,0xee,0xfb,0xff,0xd2,0xff,0xff,
0xff,0x67,0xa1,0xdc,0xff,0x66,0xa9,0xd2,0xff,0xb3,0xfb,0xf5,0xff,0x43,0x82,0xb9,
0xf4,0x0,0x0,0xe,0x5a,0x3,0x4,0x0,0x40,0x0,0x0,0x1,0x46,0x0,0x0,0x0,
0x44,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x36,0x0,0x0,0x0,
0x2a,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0xa,0x4,0x4,0x4,
0x4,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xfc,0xfe,0xfe,0x2,0x0,0x0,0x0,0x0,0xb8,0xd4,0xd9,
0x24,0x66,0xdb,0xef,0xfc,0x78,0xe9,0xfc,0xff,0x75,0xe6,0xf9,0xff,0x76,0xe6,0xf9,
0xff,0x77,0xe6,0xf9,0xff,0x78,0xe6,0xf9,0xff,0x79,0xe7,0xf9,0xff,0x7a,0xe7,0xf9,
0xff,0x7a,0xe7,0xf9,0xff,0x7b,0xe7,0xf9,0xff,0x7c,0xe8,0xf9,0xff,0x7d,0xe8,0xfa,
0xff,0x7e,0xe8,0xfa,0xff,0x7f,0xe8,0xfa,0xff,0x80,0xe8,0xfa,0xff,0x80,0xe8,0xfa,
0xff,0x81,0xe8,0xfa,0xff,0x82,0xe8,0xfa,0xff,0x83,0xe8,0xfa,0xff,0x84,0xe9,0xfa,
0xff,0x84,0xe9,0xfa,0xff,0x85,0xe9,0xfa,0xff,0x87,0xe9,0xfa,0xff,0x88,0xea,0xfa,
0xff,0x88,0xea,0xfa,0xff,0x89,0xea,0xfa,0xff,0x8a,0xea,0xfa,0xff,0x8a,0xeb,0xfa,
0xff,0x8b,0xeb,0xfa,0xff,0x8c,0xeb,0xfa,0xff,0x8d,0xeb,0xfa,0xff,0x8e,0xeb,0xfb,
0xff,0x8e,0xec,0xfb,0xff,0x8f,0xec,0xfb,0xff,0x90,0xec,0xfb,0xff,0x91,0xec,0xfb,
0xff,0x91,0xec,0xfb,0xff,0x92,0xec,0xfb,0xff,0x93,0xec,0xfb,0xff,0x94,0xec,0xfb,
0xff,0x94,0xec,0xfb,0xff,0x95,0xec,0xfb,0xff,0x96,0xec,0xfb,0xff,0x96,0xec,0xfb,
0xff,0x97,0xec,0xfb,0xff,0x98,0xed,0xfb,0xff,0x98,0xed,0xfb,0xff,0x99,0xed,0xfb,
0xff,0x99,0xee,0xfb,0xff,0x9a,0xee,0xfb,0xff,0x9a,0xee,0xfb,0xff,0x9b,0xed,0xfb,
0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,
0xff,0x9c,0xee,0xfb,0xff,0x9d,0xee,0xfb,0xff,0x9d,0xee,0xfb,0xff,0x9e,0xee,0xfb,
0xff,0x9e,0xee,0xfb,0xff,0x9f,0xee,0xfb,0xff,0x9f,0xee,0xfb,0xff,0xa0,0xee,0xfb,
0xff,0xa0,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,
0xff,0xa1,0xee,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa3,0xef,0xfb,
0xff,0xa3,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa5,0xef,0xfb,0xff,0xa5,0xef,0xfb,0xff,0xa6,0xef,0xfb,
0xff,0xa6,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa8,0xf0,0xfb,
0xff,0xa8,0xf1,0xfc,0xff,0xa9,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xac,0xf1,0xfc,
0xff,0xac,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xaa,0xef,0xfb,0xff,0xd3,0xff,0xff,
0xff,0x57,0x88,0xd3,0xff,0x73,0xb9,0xd7,0xff,0xad,0xf6,0xf3,0xff,0x47,0x86,0xbc,
0xf8,0x0,0x0,0x13,0x5a,0x3,0x4,0x0,0x3a,0x0,0x0,0x1,0x40,0x0,0x0,0x0,
0x3e,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x36,0x0,0x0,0x0,
0x2e,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0xe,0x0,0x0,0x0,
0x8,0x1,0x1,0x1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xfd,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xcc,0xf9,0xfe,
0x46,0x70,0xe7,0xf9,0xff,0x7b,0xe7,0xf9,0xfc,0x79,0xe7,0xf9,0xff,0x7a,0xe7,0xf9,
0xff,0x7b,0xe7,0xf9,0xff,0x7c,0xe7,0xf9,0xff,0x7d,0xe8,0xfa,0xff,0x7e,0xe8,0xfa,
0xff,0x7f,0xe8,0xfa,0xff,0x80,0xe8,0xfa,0xff,0x80,0xe8,0xfa,0xff,0x81,0xe8,0xfa,
0xff,0x82,0xe8,0xfa,0xff,0x82,0xe8,0xfa,0xff,0x83,0xe9,0xfa,0xff,0x84,0xe9,0xfa,
0xff,0x85,0xe9,0xfa,0xff,0x86,0xe9,0xfa,0xff,0x87,0xea,0xfa,0xff,0x88,0xea,0xfa,
0xff,0x88,0xea,0xfa,0xff,0x89,0xea,0xfa,0xff,0x8a,0xea,0xfa,0xff,0x8b,0xeb,0xfa,
0xff,0x8b,0xeb,0xfa,0xff,0x8c,0xeb,0xfa,0xff,0x8d,0xeb,0xfa,0xff,0x8e,0xec,0xfb,
0xff,0x8f,0xec,0xfb,0xff,0x90,0xec,0xfb,0xff,0x90,0xec,0xfb,0xff,0x91,0xec,0xfb,
0xff,0x92,0xec,0xfb,0xff,0x93,0xec,0xfb,0xff,0x93,0xec,0xfb,0xff,0x94,0xec,0xfb,
0xff,0x95,0xec,0xfb,0xff,0x95,0xec,0xfb,0xff,0x96,0xec,0xfb,0xff,0x97,0xec,0xfb,
0xff,0x98,0xec,0xfb,0xff,0x98,0xed,0xfb,0xff,0x99,0xed,0xfb,0xff,0x99,0xee,0xfb,
0xff,0x9a,0xee,0xfb,0xff,0x9a,0xee,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,
0xff,0x9b,0xed,0xfb,0xff,0x9c,0xed,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,
0xff,0x9c,0xee,0xfb,0xff,0x9d,0xee,0xfb,0xff,0x9d,0xee,0xfb,0xff,0x9e,0xee,0xfb,
0xff,0x9f,0xee,0xfb,0xff,0x9f,0xee,0xfb,0xff,0xa0,0xee,0xfb,0xff,0xa0,0xee,0xfb,
0xff,0xa0,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,
0xff,0xa2,0xee,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,
0xff,0xa3,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa5,0xef,0xfb,0xff,0xa6,0xef,0xfb,0xff,0xa6,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa8,0xf0,0xfb,0xff,0xa8,0xf1,0xfc,
0xff,0xa9,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,
0xff,0xac,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xad,0xf0,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xcc,0xfe,0xff,
0xff,0x49,0x88,0xcf,0xff,0x7d,0xc4,0xda,0xff,0xa9,0xf1,0xf0,0xff,0x57,0x8a,0xc1,
0xff,0x0,0x0,0x19,0x5c,0x3,0x4,0x0,0x30,0x0,0x0,0x1,0x3a,0x0,0x0,0x0,
0x38,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x34,0x0,0x0,0x0,
0x30,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x14,0x0,0x0,0x0,
0xc,0x3,0x3,0x3,0x6,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xfd,0xff,0xff,0x4,0x0,0x0,0x0,0x0,0xb7,0xf1,0xfb,
0x66,0x74,0xe7,0xf9,0xff,0x7f,0xe8,0xfa,0xfa,0x7d,0xe8,0xfa,0xff,0x7e,0xe8,0xfa,
0xff,0x7f,0xe8,0xfa,0xff,0x80,0xe8,0xfa,0xff,0x80,0xe8,0xfa,0xff,0x81,0xe8,0xfa,
0xff,0x82,0xe8,0xfa,0xff,0x83,0xe8,0xfa,0xff,0x84,0xe9,0xfa,0xff,0x84,0xe9,0xfa,
0xff,0x85,0xe9,0xfa,0xff,0x87,0xe9,0xfa,0xff,0x88,0xea,0xfa,0xff,0x88,0xea,0xfa,
0xff,0x89,0xea,0xfa,0xff,0x8a,0xea,0xfa,0xff,0x8a,0xeb,0xfa,0xff,0x8b,0xeb,0xfa,
0xff,0x8c,0xeb,0xfa,0xff,0x8d,0xeb,0xfa,0xff,0x8e,0xeb,0xfb,0xff,0x8e,0xec,0xfb,
0xff,0x8f,0xec,0xfb,0xff,0x90,0xec,0xfb,0xff,0x91,0xec,0xfb,0xff,0x91,0xec,0xfb,
0xff,0x92,0xec,0xfb,0xff,0x93,0xec,0xfb,0xff,0x94,0xec,0xfb,0xff,0x94,0xec,0xfb,
0xff,0x95,0xec,0xfb,0xff,0x96,0xec,0xfb,0xff,0x96,0xec,0xfb,0xff,0x97,0xec,0xfb,
0xff,0x98,0xed,0xfb,0xff,0x98,0xed,0xfb,0xff,0x99,0xed,0xfb,0xff,0x99,0xee,0xfb,
0xff,0x9a,0xee,0xfb,0xff,0x9a,0xee,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,
0xff,0x9b,0xed,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,
0xff,0x9d,0xee,0xfb,0xff,0x9d,0xee,0xfb,0xff,0x9e,0xee,0xfb,0xff,0x9e,0xee,0xfb,
0xff,0x9f,0xee,0xfb,0xff,0x9f,0xee,0xfb,0xff,0xa0,0xee,0xfb,0xff,0xa0,0xef,0xfb,
0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xee,0xfb,
0xff,0xa2,0xee,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa5,0xef,0xfb,0xff,0xa5,0xef,0xfb,0xff,0xa6,0xef,0xfb,0xff,0xa6,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa8,0xf0,0xfb,0xff,0xa8,0xf1,0xfc,
0xff,0xa9,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,
0xff,0xac,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,
0xff,0xaf,0xf1,0xfc,0xff,0xad,0xf0,0xfc,0xff,0xb8,0xf8,0xfe,0xff,0xc2,0xef,0xfb,
0xff,0x45,0x7a,0xc9,0xff,0x84,0xcf,0xde,0xff,0xa2,0xe9,0xec,0xff,0x67,0xa3,0xd3,
0xff,0x0,0x0,0x21,0x60,0x3,0x2,0x0,0x2a,0x0,0x0,0x2,0x34,0x0,0x0,0x0,
0x32,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x30,0x0,0x0,0x0,
0x2e,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x18,0x0,0x0,0x0,
0x10,0x0,0x0,0x0,0x8,0x2,0x2,0x2,0x4,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xfd,0xff,0xff,0x4,0x0,0x0,0x0,0x0,0xa7,0xef,0xfb,
0x8c,0x79,0xe8,0xfa,0xff,0x82,0xe8,0xfa,0xfa,0x81,0xe8,0xfa,0xff,0x82,0xe8,0xfa,
0xff,0x82,0xe8,0xfa,0xff,0x83,0xe9,0xfa,0xff,0x84,0xe9,0xfa,0xff,0x85,0xe9,0xfa,
0xff,0x86,0xe9,0xfa,0xff,0x87,0xea,0xfa,0xff,0x88,0xea,0xfa,0xff,0x88,0xea,0xfa,
0xff,0x89,0xea,0xfa,0xff,0x8a,0xea,0xfa,0xff,0x8b,0xeb,0xfa,0xff,0x8b,0xeb,0xfa,
0xff,0x8c,0xeb,0xfa,0xff,0x8d,0xeb,0xfa,0xff,0x8e,0xec,0xfb,0xff,0x8f,0xec,0xfb,
0xff,0x90,0xec,0xfb,0xff,0x90,0xec,0xfb,0xff,0x91,0xec,0xfb,0xff,0x92,0xec,0xfb,
0xff,0x93,0xec,0xfb,0xff,0x93,0xec,0xfb,0xff,0x94,0xec,0xfb,0xff,0x95,0xec,0xfb,
0xff,0x95,0xec,0xfb,0xff,0x96,0xec,0xfb,0xff,0x97,0xec,0xfb,0xff,0x98,0xec,0xfb,
0xff,0x98,0xed,0xfb,0xff,0x99,0xed,0xfb,0xff,0x99,0xee,0xfb,0xff,0x9a,0xee,0xfb,
0xff,0x9a,0xee,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,
0xff,0x9c,0xed,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,
0xff,0x9d,0xee,0xfb,0xff,0x9d,0xee,0xfb,0xff,0x9e,0xee,0xfb,0xff,0x9f,0xee,0xfb,
0xff,0x9f,0xee,0xfb,0xff,0xa0,0xee,0xfb,0xff,0xa0,0xee,0xfb,0xff,0xa0,0xef,0xfb,
0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa2,0xee,0xfb,
0xff,0xa2,0xee,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa5,0xef,0xfb,0xff,0xa6,0xef,0xfb,0xff,0xa6,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa8,0xf0,0xfb,0xff,0xa8,0xf1,0xfc,0xff,0xa9,0xf1,0xfc,
0xff,0xaa,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,
0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xae,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,
0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,
0xff,0xb1,0xf2,0xfc,0xff,0xae,0xf0,0xfb,0xff,0xc4,0xfd,0xff,0xff,0xaf,0xe0,0xf5,
0xff,0x44,0x87,0xcb,0xff,0x89,0xd4,0xdf,0xff,0x9d,0xe4,0xe9,0xfc,0x6d,0xb7,0xdb,
0xff,0x0,0x0,0x30,0x6c,0x3,0x1,0x0,0x20,0x0,0x0,0x2,0x30,0x0,0x0,0x0,
0x2c,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,
0x2a,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,
0x14,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x6,0x2,0x2,0x2,0x2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x95,0xec,0xfb,
0xac,0x80,0xe9,0xfa,0xff,0x84,0xe9,0xfa,0xfc,0x84,0xe9,0xfa,0xff,0x85,0xe9,0xfa,
0xff,0x87,0xe9,0xfa,0xff,0x88,0xea,0xfa,0xff,0x88,0xea,0xfa,0xff,0x89,0xea,0xfa,
0xff,0x8a,0xea,0xfa,0xff,0x8a,0xeb,0xfa,0xff,0x8b,0xeb,0xfa,0xff,0x8c,0xeb,0xfa,
0xff,0x8d,0xeb,0xfa,0xff,0x8e,0xeb,0xfb,0xff,0x8e,0xec,0xfb,0xff,0x8f,0xec,0xfb,
0xff,0x90,0xec,0xfb,0xff,0x91,0xec,0xfb,0xff,0x91,0xec,0xfb,0xff,0x92,0xec,0xfb,
0xff,0x93,0xec,0xfb,0xff,0x94,0xec,0xfb,0xff,0x94,0xec,0xfb,0xff,0x95,0xec,0xfb,
0xff,0x96,0xec,0xfb,0xff,0x96,0xec,0xfb,0xff,0x97,0xec,0xfb,0xff,0x98,0xed,0xfb,
0xff,0x98,0xed,0xfb,0xff,0x99,0xed,0xfb,0xff,0x99,0xee,0xfb,0xff,0x9a,0xee,0xfb,
0xff,0x9a,0xee,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,
0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9d,0xee,0xfb,
0xff,0x9d,0xee,0xfb,0xff,0x9e,0xee,0xfb,0xff,0x9e,0xee,0xfb,0xff,0x9f,0xee,0xfb,
0xff,0x9f,0xee,0xfb,0xff,0xa0,0xee,0xfb,0xff,0xa0,0xef,0xfb,0xff,0xa1,0xef,0xfb,
0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xee,0xfb,0xff,0xa2,0xee,0xfb,
0xff,0xa2,0xee,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa5,0xef,0xfb,
0xff,0xa5,0xef,0xfb,0xff,0xa6,0xef,0xfb,0xff,0xa6,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa8,0xf0,0xfb,0xff,0xa8,0xf1,0xfc,0xff,0xa9,0xf1,0xfc,
0xff,0xaa,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,
0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xae,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,
0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,
0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,
0xff,0xb2,0xf2,0xfc,0xff,0xae,0xef,0xfb,0xff,0xce,0xff,0xff,0xff,0x9b,0xc9,0xef,
0xff,0x4c,0x88,0xcd,0xff,0x89,0xd7,0xdf,0xff,0x99,0xe0,0xe8,0xfc,0x74,0xbc,0xdb,
0xff,0x0,0x0,0x37,0x74,0x2,0x0,0x0,0x18,0x0,0x0,0x2,0x28,0x0,0x0,0x0,
0x26,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x26,0x0,0x0,0x0,
0x26,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,
0x16,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0xa,0x3,0x3,0x3,0x4,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xeb,0xfb,
0xcc,0x86,0xea,0xfb,0xff,0x88,0xea,0xfa,0xfc,0x88,0xea,0xfa,0xff,0x89,0xea,0xfa,
0xff,0x8a,0xea,0xfa,0xff,0x8b,0xeb,0xfa,0xff,0x8b,0xeb,0xfa,0xff,0x8c,0xeb,0xfa,
0xff,0x8d,0xeb,0xfa,0xff,0x8e,0xec,0xfb,0xff,0x8f,0xec,0xfb,0xff,0x90,0xec,0xfb,
0xff,0x90,0xec,0xfb,0xff,0x91,0xec,0xfb,0xff,0x92,0xec,0xfb,0xff,0x93,0xec,0xfb,
0xff,0x93,0xec,0xfb,0xff,0x94,0xec,0xfb,0xff,0x95,0xec,0xfb,0xff,0x95,0xec,0xfb,
0xff,0x96,0xec,0xfb,0xff,0x97,0xec,0xfb,0xff,0x98,0xec,0xfb,0xff,0x98,0xed,0xfb,
0xff,0x99,0xed,0xfb,0xff,0x99,0xee,0xfb,0xff,0x9a,0xee,0xfb,0xff,0x9a,0xee,0xfb,
0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9c,0xed,0xfb,
0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9d,0xee,0xfb,
0xff,0x9d,0xee,0xfb,0xff,0x9e,0xee,0xfb,0xff,0x9f,0xee,0xfb,0xff,0x9f,0xee,0xfb,
0xff,0xa0,0xee,0xfb,0xff,0xa0,0xee,0xfb,0xff,0xa0,0xef,0xfb,0xff,0xa1,0xef,0xfb,
0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa2,0xee,0xfb,
0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa5,0xef,0xfb,
0xff,0xa6,0xef,0xfb,0xff,0xa6,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa8,0xf0,0xfb,0xff,0xa8,0xf1,0xfc,0xff,0xa9,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,
0xff,0xaa,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xad,0xf1,0xfc,
0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,
0xff,0xaf,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,
0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,
0xff,0xb2,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb4,0xf3,0xfc,
0xff,0xb5,0xf3,0xfc,0xff,0xaf,0xef,0xfb,0xff,0xd8,0xff,0xff,0xff,0x82,0xb3,0xe7,
0xff,0x56,0x9a,0xcf,0xff,0x88,0xd4,0xde,0xff,0x96,0xdf,0xe7,0xfc,0x7d,0xbd,0xdc,
0xff,0x0,0x0,0x3c,0x7c,0x2,0x0,0x0,0x12,0x0,0x0,0x2,0x24,0x0,0x0,0x0,
0x20,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x0,0x0,0x0,
0x20,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,
0x18,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x6,0x4,0x4,0x4,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xfb,0xfe,0x10,0x88,0xea,0xfa,
0xe6,0x8c,0xec,0xfa,0xff,0x8b,0xeb,0xfa,0xff,0x8c,0xeb,0xfa,0xff,0x8d,0xeb,0xfa,
0xff,0x8e,0xeb,0xfb,0xff,0x8e,0xec,0xfb,0xff,0x8f,0xec,0xfb,0xff,0x90,0xec,0xfb,
0xff,0x91,0xec,0xfb,0xff,0x91,0xec,0xfb,0xff,0x92,0xec,0xfb,0xff,0x93,0xec,0xfb,
0xff,0x94,0xec,0xfb,0xff,0x94,0xec,0xfb,0xff,0x95,0xec,0xfb,0xff,0x96,0xec,0xfb,
0xff,0x96,0xec,0xfb,0xff,0x97,0xec,0xfb,0xff,0x98,0xed,0xfb,0xff,0x98,0xed,0xfb,
0xff,0x99,0xed,0xfb,0xff,0x99,0xee,0xfb,0xff,0x9a,0xee,0xfb,0xff,0x9a,0xee,0xfb,
0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9c,0xee,0xfb,
0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9d,0xee,0xfb,0xff,0x9d,0xee,0xfb,
0xff,0x9e,0xee,0xfb,0xff,0x9e,0xee,0xfb,0xff,0x9f,0xee,0xfb,0xff,0x9f,0xee,0xfb,
0xff,0xa0,0xee,0xfb,0xff,0xa0,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,
0xff,0xa1,0xef,0xfb,0xff,0xa1,0xee,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa2,0xee,0xfb,
0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa5,0xef,0xfb,0xff,0xa5,0xef,0xfb,
0xff,0xa6,0xef,0xfb,0xff,0xa6,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa8,0xf0,0xfb,0xff,0xa8,0xf1,0xfc,0xff,0xa9,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xad,0xf1,0xfc,
0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,
0xff,0xaf,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,
0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,
0xff,0xb3,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,
0xff,0xb4,0xf3,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb1,0xef,0xfb,0xff,0xdd,0xff,0xff,0xff,0x6c,0xa4,0xe0,
0xff,0x63,0xa7,0xd1,0xff,0x85,0xd2,0xde,0xff,0x92,0xdb,0xe4,0xfc,0x85,0xcb,0xe7,
0xff,0x0,0x9,0x48,0x82,0x1,0x0,0x0,0xa,0x0,0x1,0x2,0x1e,0x0,0x0,0x0,
0x1a,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,
0x1a,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x18,0x0,0x0,0x0,
0x16,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x8,0x1,0x1,0x1,
0x4,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xfd,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xdc,0xf9,0xfd,0x24,0x89,0xeb,0xfb,
0xfa,0x90,0xec,0xfb,0xff,0x8f,0xec,0xfb,0xff,0x90,0xec,0xfb,0xff,0x90,0xec,0xfb,
0xff,0x91,0xec,0xfb,0xff,0x92,0xec,0xfb,0xff,0x93,0xec,0xfb,0xff,0x93,0xec,0xfb,
0xff,0x94,0xec,0xfb,0xff,0x95,0xec,0xfb,0xff,0x95,0xec,0xfb,0xff,0x96,0xec,0xfb,
0xff,0x97,0xec,0xfb,0xff,0x98,0xec,0xfb,0xff,0x98,0xed,0xfb,0xff,0x99,0xed,0xfb,
0xff,0x99,0xee,0xfb,0xff,0x9a,0xee,0xfb,0xff,0x9a,0xee,0xfb,0xff,0x9b,0xed,0xfb,
0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9c,0xed,0xfb,0xff,0x9c,0xee,0xfb,
0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9d,0xee,0xfb,0xff,0x9d,0xee,0xfb,
0xff,0x9e,0xee,0xfb,0xff,0x9f,0xee,0xfb,0xff,0x9f,0xee,0xfb,0xff,0xa0,0xee,0xfb,
0xff,0xa0,0xee,0xfb,0xff,0xa0,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,
0xff,0xa1,0xef,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa3,0xef,0xfb,
0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa5,0xef,0xfb,0xff,0xa6,0xef,0xfb,
0xff,0xa6,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa8,0xf0,0xfb,
0xff,0xa8,0xf1,0xfc,0xff,0xa9,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xac,0xf1,0xfc,
0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,
0xff,0xad,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf2,0xfc,
0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,
0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,
0xff,0xb3,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,
0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb7,0xf2,0xfc,
0xff,0xb7,0xf3,0xfc,0xff,0xb4,0xf1,0xfc,0xff,0xde,0xff,0xff,0xff,0x59,0x94,0xd8,
0xff,0x6e,0xb8,0xd4,0xff,0x82,0xcf,0xdc,0xff,0x8d,0xd6,0xe1,0xfa,0x8b,0xda,0xeb,
0xff,0x0,0x17,0x57,0x8e,0x0,0x0,0x0,0x6,0x0,0x1,0x2,0x18,0x0,0x0,0x0,
0x14,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x14,0x0,0x0,0x0,
0x14,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x14,0x0,0x0,0x0,
0x12,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xa,0x0,0x0,0x0,
0x6,0x3,0x3,0x3,0x4,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xfd,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xd1,0xf7,0xfd,0x46,0x8a,0xeb,0xfb,
0xff,0x94,0xed,0xfb,0xfc,0x92,0xec,0xfb,0xff,0x93,0xec,0xfb,0xff,0x94,0xec,0xfb,
0xff,0x94,0xec,0xfb,0xff,0x95,0xec,0xfb,0xff,0x96,0xec,0xfb,0xff,0x96,0xec,0xfb,
0xff,0x97,0xec,0xfb,0xff,0x98,0xed,0xfb,0xff,0x98,0xed,0xfb,0xff,0x99,0xed,0xfb,
0xff,0x99,0xee,0xfb,0xff,0x9a,0xee,0xfb,0xff,0x9a,0xee,0xfb,0xff,0x9b,0xed,0xfb,
0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,
0xff,0x9c,0xee,0xfb,0xff,0x9d,0xee,0xfb,0xff,0x9d,0xee,0xfb,0xff,0x9e,0xee,0xfb,
0xff,0x9e,0xee,0xfb,0xff,0x9f,0xee,0xfb,0xff,0x9f,0xee,0xfb,0xff,0xa0,0xee,0xfb,
0xff,0xa0,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,
0xff,0xa1,0xee,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa3,0xef,0xfb,
0xff,0xa3,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa5,0xef,0xfb,0xff,0xa5,0xef,0xfb,0xff,0xa6,0xef,0xfb,
0xff,0xa6,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa8,0xf0,0xfb,
0xff,0xa8,0xf1,0xfc,0xff,0xa9,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xac,0xf1,0xfc,
0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,
0xff,0xad,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,
0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf2,0xfc,
0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,
0xff,0xb1,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,
0xff,0xb3,0xf2,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,
0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb7,0xf2,0xfc,0xff,0xb7,0xf3,0xfc,
0xff,0xb7,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,
0xff,0xb8,0xf3,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xd7,0xff,0xff,0xff,0x49,0x8b,0xd3,
0xff,0x7a,0xc3,0xd6,0xff,0x7f,0xcc,0xdb,0xff,0x89,0xd3,0xe0,0xfc,0x91,0xdf,0xeb,
0xff,0x5,0x1c,0x63,0xa0,0x0,0x0,0x0,0x0,0x0,0x2,0x1,0x12,0x0,0x0,0x0,
0x10,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x0,0x0,0x0,
0x10,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x0,0x0,0x0,
0x10,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xa,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xfd,0xff,0xff,0x4,0x0,0x0,0x0,0x0,0xbd,0xf3,0xfc,0x66,0x8e,0xec,0xfb,
0xff,0x97,0xec,0xfb,0xfc,0x95,0xec,0xfb,0xff,0x96,0xec,0xfb,0xff,0x97,0xec,0xfb,
0xff,0x98,0xec,0xfb,0xff,0x98,0xed,0xfb,0xff,0x99,0xed,0xfb,0xff,0x99,0xee,0xfb,
0xff,0x9a,0xee,0xfb,0xff,0x9a,0xee,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,
0xff,0x9b,0xed,0xfb,0xff,0x9c,0xed,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,
0xff,0x9c,0xee,0xfb,0xff,0x9d,0xee,0xfb,0xff,0x9d,0xee,0xfb,0xff,0x9e,0xee,0xfb,
0xff,0x9f,0xee,0xfb,0xff,0x9f,0xee,0xfb,0xff,0xa0,0xee,0xfb,0xff,0xa0,0xee,0xfb,
0xff,0xa0,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,
0xff,0xa2,0xee,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,
0xff,0xa3,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa5,0xef,0xfb,0xff,0xa6,0xef,0xfb,0xff,0xa6,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa8,0xf0,0xfb,0xff,0xa8,0xf1,0xfc,
0xff,0xa9,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,
0xff,0xac,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,
0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,
0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,
0xff,0xb1,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,
0xff,0xb3,0xf2,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb5,0xf2,0xfc,
0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb7,0xf2,0xfc,0xff,0xb7,0xf3,0xfc,
0xff,0xb7,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,
0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,
0xff,0xb8,0xf2,0xfc,0xff,0xc3,0xf9,0xfe,0xff,0xcc,0xf3,0xfd,0xff,0x44,0x87,0xcd,
0xff,0x80,0xcc,0xd8,0xff,0x7d,0xca,0xda,0xff,0x85,0xd1,0xdf,0xfc,0x99,0xe1,0xed,
0xff,0xd,0x1f,0x70,0xae,0x0,0x0,0x0,0x0,0x1,0x2,0x1,0xe,0x0,0x0,0x0,
0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,
0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,
0xc,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xfe,0xff,0xff,0x4,0x0,0x0,0x0,0x0,0xb2,0xf1,0xfc,0x8a,0x93,0xed,0xfb,
0xff,0x99,0xed,0xfb,0xfa,0x98,0xed,0xfb,0xff,0x99,0xed,0xfb,0xff,0x99,0xee,0xfb,
0xff,0x9a,0xee,0xfb,0xff,0x9a,0xee,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,
0xff,0x9b,0xed,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,
0xff,0x9d,0xee,0xfb,0xff,0x9d,0xee,0xfb,0xff,0x9e,0xee,0xfb,0xff,0x9e,0xee,0xfb,
0xff,0x9f,0xee,0xfb,0xff,0x9f,0xee,0xfb,0xff,0xa0,0xee,0xfb,0xff,0xa0,0xef,0xfb,
0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xee,0xfb,
0xff,0xa2,0xee,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa5,0xef,0xfb,0xff,0xa5,0xef,0xfb,0xff,0xa6,0xef,0xfb,0xff,0xa6,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa8,0xf0,0xfb,0xff,0xa8,0xf1,0xfc,
0xff,0xa9,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,
0xff,0xac,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,
0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,
0xff,0xb0,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,
0xff,0xb2,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,
0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb5,0xf2,0xfc,
0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb7,0xf2,0xfc,0xff,0xb7,0xf3,0xfc,0xff,0xb7,0xf3,0xfc,
0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,
0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xba,0xf3,0xfc,
0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,
0xff,0xb7,0xf2,0xfb,0xff,0xce,0xfe,0xff,0xff,0xb6,0xe5,0xf8,0xff,0x40,0x8d,0xcc,
0xff,0x86,0xcf,0xda,0xff,0x7b,0xc8,0xda,0xff,0x83,0xcf,0xde,0xfc,0x99,0xe7,0xef,
0xff,0x10,0x34,0x83,0xb6,0x0,0x0,0x0,0x0,0x1,0x2,0x0,0xa,0x0,0x0,0x0,
0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
0x8,0x1,0x1,0x1,0x8,0x4,0x4,0x4,0x6,0x4,0x4,0x4,0x6,0x4,0x4,0x4,
0x6,0x4,0x4,0x4,0x4,0x4,0x4,0x4,0x2,0x4,0x4,0x4,0x2,0x0,0x0,0x0,
0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xa4,0xf0,0xfc,0xac,0x98,0xee,0xfb,
0xff,0x9a,0xee,0xfb,0xfc,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,0xff,0x9b,0xed,0xfb,
0xff,0x9c,0xed,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,
0xff,0x9d,0xee,0xfb,0xff,0x9d,0xee,0xfb,0xff,0x9e,0xee,0xfb,0xff,0x9f,0xee,0xfb,
0xff,0x9f,0xee,0xfb,0xff,0xa0,0xee,0xfb,0xff,0xa0,0xee,0xfb,0xff,0xa0,0xef,0xfb,
0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa2,0xee,0xfb,
0xff,0xa2,0xee,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa5,0xef,0xfb,0xff,0xa6,0xef,0xfb,0xff,0xa6,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa8,0xf0,0xfb,0xff,0xa8,0xf1,0xfc,0xff,0xa9,0xf1,0xfc,
0xff,0xaa,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,
0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xae,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,
0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,
0xff,0xb0,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,
0xff,0xb2,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,
0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,
0xff,0xb5,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb7,0xf2,0xfc,0xff,0xb7,0xf3,0xfc,0xff,0xb7,0xf3,0xfc,
0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,
0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xba,0xf3,0xfc,
0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,
0xff,0xba,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbc,0xf4,0xfc,
0xff,0xb7,0xf1,0xfb,0xff,0xd7,0xff,0xff,0xff,0xa4,0xd1,0xf2,0xff,0x47,0x8f,0xcd,
0xff,0x86,0xd2,0xda,0xff,0x7b,0xc8,0xd9,0xff,0x7f,0xcc,0xdc,0xfc,0x9c,0xeb,0xef,
0xff,0x17,0x43,0x8d,0xbe,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x4,0x0,0x0,0x1,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0xee,0xfb,0xca,0x9c,0xee,0xfb,
0xff,0x9c,0xed,0xfb,0xfc,0x9c,0xee,0xfb,0xff,0x9c,0xee,0xfb,0xff,0x9d,0xee,0xfb,
0xff,0x9d,0xee,0xfb,0xff,0x9e,0xee,0xfb,0xff,0x9e,0xee,0xfb,0xff,0x9f,0xee,0xfb,
0xff,0x9f,0xee,0xfb,0xff,0xa0,0xee,0xfb,0xff,0xa0,0xef,0xfb,0xff,0xa1,0xef,0xfb,
0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xee,0xfb,0xff,0xa2,0xee,0xfb,
0xff,0xa2,0xee,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa5,0xef,0xfb,
0xff,0xa5,0xef,0xfb,0xff,0xa6,0xef,0xfb,0xff,0xa6,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa8,0xf0,0xfb,0xff,0xa8,0xf1,0xfc,0xff,0xa9,0xf1,0xfc,
0xff,0xaa,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,
0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xae,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,
0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,
0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,
0xff,0xb2,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb4,0xf3,0xfc,
0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,
0xff,0xb5,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,
0xff,0xb7,0xf2,0xfc,0xff,0xb7,0xf3,0xfc,0xff,0xb7,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,
0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,
0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,
0xff,0xba,0xf3,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,
0xff,0xbb,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbc,0xf4,0xfc,
0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,
0xff,0xb7,0xf0,0xfb,0xff,0xe1,0xff,0xff,0xff,0x87,0xc3,0xeb,0xff,0x4e,0x9e,0xcd,
0xff,0x85,0xd0,0xda,0xff,0x7b,0xc9,0xd9,0xff,0x7c,0xca,0xdb,0xfc,0x9b,0xed,0xef,
0xff,0x1d,0x4a,0x93,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xec,0xfc,0xfe,0x10,0x9a,0xee,0xfb,0xe6,0x9e,0xef,0xfb,
0xff,0x9d,0xee,0xfb,0xff,0x9e,0xee,0xfb,0xff,0x9f,0xee,0xfb,0xff,0x9f,0xee,0xfb,
0xff,0xa0,0xee,0xfb,0xff,0xa0,0xee,0xfb,0xff,0xa0,0xef,0xfb,0xff,0xa1,0xef,0xfb,
0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa2,0xee,0xfb,
0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa5,0xef,0xfb,
0xff,0xa6,0xef,0xfb,0xff,0xa6,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa8,0xf0,0xfb,0xff,0xa8,0xf1,0xfc,0xff,0xa9,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,
0xff,0xaa,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xad,0xf1,0xfc,
0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,
0xff,0xaf,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,
0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,
0xff,0xb2,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb4,0xf3,0xfc,
0xff,0xb4,0xf3,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,
0xff,0xb7,0xf2,0xfc,0xff,0xb7,0xf3,0xfc,0xff,0xb7,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,
0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,
0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,
0xff,0xba,0xf3,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,
0xff,0xbb,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbc,0xf4,0xfc,0xff,0xbc,0xf4,0xfc,
0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,
0xff,0xbe,0xf3,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,
0xff,0xb9,0xf1,0xfb,0xff,0xe6,0xff,0xff,0xff,0x73,0xb1,0xe4,0xff,0x5c,0xa8,0xce,
0xff,0x82,0xce,0xd9,0xff,0x7b,0xc8,0xd9,0xff,0x78,0xc7,0xda,0xfc,0x9f,0xed,0xef,
0xff,0x31,0x55,0x9f,0xde,0x0,0x0,0xa,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xff,0xff,
0x2,0x0,0x0,0x0,0x0,0xda,0xf8,0xfe,0x26,0x99,0xee,0xfb,0xf8,0xa1,0xef,0xfb,
0xff,0xa0,0xee,0xfb,0xff,0xa0,0xef,0xfb,0xff,0xa1,0xef,0xfb,0xff,0xa1,0xef,0xfb,
0xff,0xa1,0xef,0xfb,0xff,0xa1,0xee,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa2,0xee,0xfb,
0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa5,0xef,0xfb,0xff,0xa5,0xef,0xfb,
0xff,0xa6,0xef,0xfb,0xff,0xa6,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa8,0xf0,0xfb,0xff,0xa8,0xf1,0xfc,0xff,0xa9,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xad,0xf1,0xfc,
0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,
0xff,0xaf,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,
0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,
0xff,0xb3,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,
0xff,0xb4,0xf3,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb7,0xf2,0xfc,
0xff,0xb7,0xf3,0xfc,0xff,0xb7,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,
0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,
0xff,0xb9,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,
0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,
0xff,0xbb,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbc,0xf4,0xfc,0xff,0xbd,0xf3,0xfc,
0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,
0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,
0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,
0xff,0xbd,0xf3,0xfc,0xff,0xe7,0xff,0xff,0xff,0x5b,0xa0,0xdc,0xff,0x67,0xb4,0xd0,
0xff,0x7e,0xcb,0xd8,0xff,0x7a,0xc8,0xd9,0xff,0x78,0xc7,0xd9,0xff,0xa2,0xf0,0xf1,
0xff,0x24,0x5f,0xa0,0xe8,0x7d,0x78,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xff,0xff,
0x2,0x0,0x0,0x0,0x0,0xd3,0xf7,0xfd,0x42,0x9b,0xef,0xfc,0xff,0xa3,0xf0,0xfb,
0xfc,0xa1,0xef,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa2,0xee,0xfb,0xff,0xa3,0xef,0xfb,
0xff,0xa3,0xef,0xfb,0xff,0xa3,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa5,0xef,0xfb,0xff,0xa6,0xef,0xfb,
0xff,0xa6,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa8,0xf0,0xfb,
0xff,0xa8,0xf1,0xfc,0xff,0xa9,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xac,0xf1,0xfc,
0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,
0xff,0xad,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf2,0xfc,
0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,
0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,
0xff,0xb3,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,
0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb7,0xf2,0xfc,
0xff,0xb7,0xf3,0xfc,0xff,0xb7,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,
0xff,0xb8,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,
0xff,0xb9,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,
0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,
0xff,0xbb,0xf4,0xfc,0xff,0xbc,0xf4,0xfc,0xff,0xbc,0xf4,0xfc,0xff,0xbd,0xf3,0xfc,
0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbe,0xf3,0xfc,
0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,
0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,
0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,
0xff,0xc3,0xf5,0xfc,0xff,0xe0,0xff,0xff,0xff,0x4c,0x9a,0xd6,0xff,0x72,0xbd,0xd2,
0xff,0x7b,0xc8,0xd8,0xff,0x7a,0xc8,0xd9,0xff,0x76,0xc6,0xd9,0xff,0xa0,0xef,0xf0,
0xff,0x27,0x67,0xa1,0xee,0x95,0x90,0xba,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xff,0xff,
0x4,0x0,0x0,0x0,0x0,0xc0,0xf4,0xfc,0x64,0x9e,0xef,0xfc,0xff,0xa4,0xef,0xfb,
0xfc,0xa3,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,0xff,0xa4,0xef,0xfb,
0xff,0xa4,0xef,0xfb,0xff,0xa5,0xef,0xfb,0xff,0xa5,0xef,0xfb,0xff,0xa6,0xef,0xfb,
0xff,0xa6,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa8,0xf0,0xfb,
0xff,0xa8,0xf1,0xfc,0xff,0xa9,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xac,0xf1,0xfc,
0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,
0xff,0xad,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,
0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf2,0xfc,
0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,
0xff,0xb1,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,
0xff,0xb3,0xf2,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,
0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb7,0xf2,0xfc,0xff,0xb7,0xf3,0xfc,
0xff,0xb7,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,
0xff,0xb8,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,
0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf4,0xfc,
0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,
0xff,0xbb,0xf4,0xfc,0xff,0xbc,0xf4,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,
0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbe,0xf4,0xfc,
0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,
0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,
0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,
0xff,0xc1,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,0xff,0xc0,0xf3,0xfc,
0xff,0xcb,0xf9,0xfe,0xff,0xd5,0xf6,0xfe,0xff,0x43,0x94,0xd1,0xff,0x79,0xc5,0xd5,
0xff,0x78,0xc6,0xd7,0xff,0x79,0xc8,0xd9,0xff,0x74,0xc5,0xd7,0xff,0x9d,0xed,0xf0,
0xff,0x2e,0x70,0xa4,0xf6,0x91,0x8d,0xb8,0x20,0x0,0x0,0x0,0x0,0xf9,0xf9,0xfb,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xff,0xff,
0x4,0x0,0x0,0x0,0x0,0xba,0xf3,0xfc,0x86,0xa1,0xef,0xfc,0xff,0xa5,0xef,0xfb,
0xfa,0xa4,0xef,0xfb,0xff,0xa5,0xef,0xfb,0xff,0xa6,0xef,0xfb,0xff,0xa6,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa8,0xf0,0xfb,0xff,0xa8,0xf1,0xfc,
0xff,0xa9,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,
0xff,0xac,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,
0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,
0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,
0xff,0xb1,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,
0xff,0xb3,0xf2,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb5,0xf2,0xfc,
0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb7,0xf2,0xfc,0xff,0xb7,0xf3,0xfc,
0xff,0xb7,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,
0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,
0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf4,0xfc,
0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,
0xff,0xbc,0xf4,0xfc,0xff,0xbc,0xf4,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,
0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbe,0xf3,0xfc,0xff,0xbe,0xf4,0xfc,
0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,
0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,
0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,
0xff,0xc1,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,
0xff,0xc2,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,0xff,0xc3,0xf4,0xfc,0xff,0xc0,0xf2,0xfc,
0xff,0xd6,0xfd,0xff,0xff,0xbf,0xea,0xf9,0xff,0x3f,0x94,0xce,0xff,0x7e,0xc9,0xd6,
0xff,0x76,0xc5,0xd6,0xff,0x78,0xc7,0xd8,0xff,0x73,0xc4,0xd7,0xff,0x9a,0xec,0xef,
0xff,0x3c,0x76,0xa8,0xff,0x93,0x8f,0xba,0x2a,0x0,0x0,0x0,0x0,0xfb,0xfb,0xfd,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,
0x2,0x0,0x0,0x0,0x0,0xad,0xf1,0xfc,0xac,0xa5,0xf0,0xfc,0xff,0xa6,0xf0,0xfb,
0xfc,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,
0xff,0xa7,0xf0,0xfb,0xff,0xa7,0xf0,0xfb,0xff,0xa8,0xf0,0xfb,0xff,0xa8,0xf1,0xfc,
0xff,0xa9,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,
0xff,0xac,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,
0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,
0xff,0xb0,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,
0xff,0xb2,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,
0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb5,0xf2,0xfc,
0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb7,0xf2,0xfc,0xff,0xb7,0xf3,0xfc,0xff,0xb7,0xf3,0xfc,
0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,
0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xba,0xf3,0xfc,
0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,
0xff,0xba,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,
0xff,0xbc,0xf4,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,
0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,
0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,
0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,
0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,
0xff,0xc1,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,
0xff,0xc2,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,0xff,0xc3,0xf4,0xfc,0xff,0xc3,0xf4,0xfc,
0xff,0xc3,0xf4,0xfc,0xff,0xc3,0xf4,0xfc,0xff,0xc4,0xf4,0xfc,0xff,0xbf,0xf2,0xfb,
0xff,0xdf,0xff,0xff,0xff,0xad,0xd9,0xf2,0xff,0x45,0x97,0xcc,0xff,0x80,0xcc,0xd7,
0xff,0x76,0xc5,0xd6,0xff,0x78,0xc7,0xd8,0xff,0x73,0xc4,0xd7,0xff,0x97,0xe7,0xeb,
0xff,0x4c,0x8d,0xbb,0xff,0x6c,0x6d,0xa6,0x3c,0x0,0x0,0x0,0x0,0xfb,0xfb,0xfd,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xa5,0xf0,0xfc,0xc8,0xa9,0xf1,0xfc,0xff,0xa7,0xf0,0xfb,
0xfc,0xa7,0xf0,0xfb,0xff,0xa8,0xf0,0xfb,0xff,0xa8,0xf1,0xfc,0xff,0xa9,0xf1,0xfc,
0xff,0xaa,0xf1,0xfc,0xff,0xaa,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,
0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xae,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,
0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,
0xff,0xb0,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,
0xff,0xb2,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,
0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,
0xff,0xb5,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb7,0xf2,0xfc,0xff,0xb7,0xf3,0xfc,0xff,0xb7,0xf3,0xfc,
0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,
0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xba,0xf3,0xfc,
0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,
0xff,0xba,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbc,0xf4,0xfc,
0xff,0xbc,0xf4,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,
0xff,0xbd,0xf3,0xfc,0xff,0xbe,0xf3,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,
0xff,0xbe,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,
0xff,0xbf,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,
0xff,0xc0,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,
0xff,0xc1,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,
0xff,0xc2,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,0xff,0xc3,0xf4,0xfc,0xff,0xc3,0xf4,0xfc,
0xff,0xc3,0xf4,0xfc,0xff,0xc3,0xf4,0xfc,0xff,0xc4,0xf4,0xfc,0xff,0xc4,0xf4,0xfc,
0xff,0xc4,0xf4,0xfc,0xff,0xc4,0xf5,0xfc,0xff,0xc5,0xf5,0xfc,0xff,0xbf,0xf3,0xfb,
0xff,0xe8,0xff,0xff,0xff,0x8d,0xcb,0xec,0xff,0x4b,0xa3,0xcd,0xff,0x7f,0xcb,0xd6,
0xff,0x75,0xc4,0xd6,0xff,0x77,0xc7,0xd8,0xff,0x72,0xc5,0xd7,0xff,0x95,0xe4,0xea,
0xfc,0x4a,0x9c,0xc0,0xff,0x54,0x5a,0x96,0x4c,0x0,0x0,0x0,0x0,0xfb,0xfb,0xfd,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xeb,0xfb,0xfe,0xc,0xa5,0xf0,0xfc,0xe4,0xaa,0xf2,0xfc,0xff,0xa9,0xf1,0xfc,
0xfc,0xaa,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xab,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,
0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xae,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,
0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,
0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,
0xff,0xb2,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb4,0xf3,0xfc,
0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,
0xff,0xb5,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,
0xff,0xb7,0xf2,0xfc,0xff,0xb7,0xf3,0xfc,0xff,0xb7,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,
0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,
0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,
0xff,0xba,0xf3,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,
0xff,0xbb,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbc,0xf4,0xfc,
0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,
0xff,0xbd,0xf3,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,
0xff,0xbe,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,
0xff,0xbf,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,
0xff,0xc0,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,
0xff,0xc1,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,
0xff,0xc2,0xf4,0xfc,0xff,0xc3,0xf4,0xfc,0xff,0xc3,0xf4,0xfc,0xff,0xc3,0xf4,0xfc,
0xff,0xc3,0xf4,0xfc,0xff,0xc3,0xf4,0xfc,0xff,0xc4,0xf4,0xfc,0xff,0xc4,0xf4,0xfc,
0xff,0xc4,0xf4,0xfc,0xff,0xc4,0xf5,0xfc,0xff,0xc5,0xf5,0xfc,0xff,0xc5,0xf6,0xfc,
0xff,0xc5,0xf6,0xfc,0xff,0xc5,0xf6,0xfc,0xff,0xc6,0xf6,0xfc,0xff,0xc1,0xf3,0xfc,
0xff,0xed,0xff,0xff,0xff,0x7a,0xb9,0xe7,0xff,0x57,0xa9,0xcf,0xff,0x7c,0xca,0xd6,
0xff,0x74,0xc5,0xd6,0xff,0x76,0xc7,0xd8,0xff,0x72,0xc5,0xd7,0xff,0x91,0xe2,0xea,
0xfc,0x52,0xa4,0xc3,0xff,0x55,0x5c,0x9a,0x58,0x0,0x0,0x0,0x0,0xfb,0xfb,0xfd,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xda,0xf9,0xfe,0x24,0xa5,0xf0,0xfc,0xf8,0xae,0xf2,0xfc,0xff,0xab,0xf1,0xfc,
0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xac,0xf1,0xfc,0xff,0xad,0xf1,0xfc,
0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,
0xff,0xaf,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,
0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,
0xff,0xb2,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb4,0xf3,0xfc,
0xff,0xb4,0xf3,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,
0xff,0xb7,0xf2,0xfc,0xff,0xb7,0xf3,0xfc,0xff,0xb7,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,
0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,
0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,
0xff,0xba,0xf3,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,
0xff,0xbb,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbc,0xf4,0xfc,0xff,0xbc,0xf4,0xfc,
0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,
0xff,0xbe,0xf3,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,
0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,
0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,
0xff,0xc1,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,
0xff,0xc2,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,
0xff,0xc3,0xf4,0xfc,0xff,0xc3,0xf4,0xfc,0xff,0xc3,0xf4,0xfc,0xff,0xc3,0xf4,0xfc,
0xff,0xc4,0xf4,0xfc,0xff,0xc4,0xf4,0xfc,0xff,0xc4,0xf4,0xfc,0xff,0xc4,0xf4,0xfc,
0xff,0xc4,0xf5,0xfc,0xff,0xc4,0xf5,0xfc,0xff,0xc5,0xf5,0xfc,0xff,0xc5,0xf6,0xfc,
0xff,0xc5,0xf6,0xfc,0xff,0xc6,0xf6,0xfc,0xff,0xc6,0xf6,0xfd,0xff,0xc7,0xf5,0xfd,
0xff,0xc7,0xf5,0xfd,0xff,0xc7,0xf5,0xfd,0xff,0xc7,0xf5,0xfd,0xff,0xc5,0xf4,0xfd,
0xff,0xef,0xff,0xff,0xff,0x5e,0xa9,0xe0,0xff,0x62,0xb4,0xd1,0xff,0x79,0xc8,0xd6,
0xff,0x75,0xc5,0xd7,0xff,0x76,0xc7,0xd8,0xff,0x72,0xc4,0xd8,0xff,0x8d,0xdf,0xe9,
0xfc,0x5b,0xa8,0xc6,0xff,0x52,0x58,0x98,0x64,0x0,0x0,0x0,0x0,0xfb,0xfc,0xfd,
0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xd2,0xf7,0xfe,0x40,0xa7,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xad,0xf1,0xfc,
0xff,0xad,0xf1,0xfc,0xff,0xad,0xf1,0xfc,0xff,0xae,0xf1,0xfc,0xff,0xae,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,
0xff,0xaf,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,
0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,
0xff,0xb3,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,
0xff,0xb4,0xf3,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb7,0xf2,0xfc,
0xff,0xb7,0xf3,0xfc,0xff,0xb7,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,
0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,
0xff,0xb9,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,
0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,
0xff,0xbb,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbc,0xf4,0xfc,0xff,0xbd,0xf3,0xfc,
0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,
0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,
0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xbe,0xf3,0xfc,
0xff,0xbe,0xf3,0xfc,0xff,0xbe,0xf3,0xfc,0xff,0xbf,0xf3,0xfc,0xff,0xbf,0xf3,0xfc,
0xff,0xbf,0xf3,0xfc,0xff,0xbf,0xf3,0xfc,0xff,0xbf,0xf3,0xfc,0xff,0xc0,0xf3,0xfc,
0xff,0xc0,0xf3,0xfc,0xff,0xc0,0xf3,0xfc,0xff,0xc0,0xf3,0xfc,0xff,0xc1,0xf3,0xfc,
0xff,0xc1,0xf3,0xfc,0xff,0xc1,0xf3,0xfc,0xff,0xc2,0xf3,0xfc,0xff,0xc2,0xf3,0xfc,
0xff,0xc2,0xf3,0xfc,0xff,0xc2,0xf3,0xfc,0xff,0xc2,0xf3,0xfc,0xff,0xc2,0xf4,0xfc,
0xff,0xc3,0xf4,0xfc,0xff,0xc3,0xf5,0xfc,0xff,0xc3,0xf5,0xfc,0xff,0xc3,0xf5,0xfc,
0xff,0xc4,0xf5,0xfc,0xff,0xc4,0xf5,0xfc,0xff,0xc5,0xf5,0xfc,0xff,0xc5,0xf4,0xfd,
0xff,0xc5,0xf4,0xfd,0xff,0xc6,0xf4,0xfd,0xff,0xc6,0xf4,0xfd,0xff,0xc6,0xf4,0xfd,
0xff,0xc6,0xf4,0xfd,0xff,0xc6,0xf4,0xfd,0xff,0xc5,0xf3,0xfd,0xff,0xca,0xf5,0xfd,
0xff,0xe6,0xff,0xff,0xff,0x4f,0xa2,0xda,0xff,0x6e,0xbc,0xd2,0xff,0x77,0xc7,0xd7,
0xff,0x74,0xc6,0xd7,0xff,0x75,0xc7,0xd9,0xff,0x72,0xc5,0xd8,0xff,0x87,0xdb,0xe5,
0xfa,0x6a,0xb6,0xd2,0xff,0x50,0x5a,0x9d,0x72,0x0,0x0,0x0,0x0,0xfc,0xfd,0xfe,
0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xc4,0xf5,0xfd,0x62,0xaa,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xfa,0xae,0xf1,0xfc,
0xff,0xae,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf1,0xfc,0xff,0xaf,0xf2,0xfc,
0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,
0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,
0xff,0xb3,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,
0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb7,0xf2,0xfc,
0xff,0xb7,0xf3,0xfc,0xff,0xb7,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,
0xff,0xb8,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,
0xff,0xb9,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,
0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,
0xff,0xbb,0xf4,0xfc,0xff,0xbc,0xf4,0xfc,0xff,0xbc,0xf4,0xfc,0xff,0xbd,0xf3,0xfc,
0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbe,0xf3,0xfc,
0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,
0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,
0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc8,0xf7,0xfd,
0xff,0xca,0xf8,0xfe,0xff,0xc9,0xf8,0xfe,0xff,0xc9,0xf8,0xfe,0xff,0xc9,0xf8,0xfe,
0xff,0xc9,0xf8,0xfe,0xff,0xca,0xf8,0xfe,0xff,0xca,0xf8,0xfe,0xff,0xca,0xf8,0xfe,
0xff,0xca,0xf8,0xfe,0xff,0xca,0xf8,0xfe,0xff,0xcb,0xf8,0xfe,0xff,0xcb,0xf8,0xfe,
0xff,0xcb,0xf8,0xfe,0xff,0xcb,0xf8,0xfe,0xff,0xcc,0xf8,0xfe,0xff,0xcc,0xf8,0xfe,
0xff,0xcc,0xf8,0xfe,0xff,0xcc,0xf8,0xfe,0xff,0xcc,0xf9,0xfe,0xff,0xcd,0xf9,0xfe,
0xff,0xcd,0xf9,0xfe,0xff,0xcd,0xf9,0xfe,0xff,0xce,0xf9,0xfe,0xff,0xce,0xf8,0xfe,
0xff,0xcf,0xf8,0xfe,0xff,0xcf,0xf8,0xfe,0xff,0xcf,0xf8,0xfe,0xff,0xcf,0xf8,0xfe,
0xff,0xcf,0xf8,0xfe,0xff,0xd0,0xf8,0xfe,0xff,0xd0,0xf8,0xfe,0xff,0xd0,0xf9,0xfe,
0xff,0xd0,0xf9,0xfe,0xff,0xd1,0xf9,0xfe,0xff,0xcf,0xf8,0xfe,0xff,0xda,0xfd,0xff,
0xff,0xe1,0xf7,0xfe,0xff,0x43,0x9a,0xd4,0xff,0x75,0xc5,0xd4,0xff,0x74,0xc5,0xd7,
0xff,0x74,0xc6,0xd8,0xff,0x74,0xc7,0xd9,0xff,0x72,0xc7,0xd9,0xff,0x84,0xd7,0xe4,
0xfa,0x70,0xc6,0xd8,0xff,0x5c,0x73,0xa4,0x88,0x0,0x0,0x0,0x0,0xfc,0xfd,0xfd,
0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xb6,0xf3,0xfc,0x84,0xae,0xf2,0xfc,0xff,0xaf,0xf1,0xfc,0xfa,0xaf,0xf2,0xfc,
0xff,0xb0,0xf2,0xfc,0xff,0xb0,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,0xff,0xb1,0xf2,0xfc,
0xff,0xb1,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,
0xff,0xb3,0xf2,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb4,0xf3,0xfc,
0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb7,0xf2,0xfc,0xff,0xb7,0xf3,0xfc,
0xff,0xb7,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,
0xff,0xb8,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,
0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf4,0xfc,
0xff,0xba,0xf4,0xfc,0xff,0xba,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,
0xff,0xbb,0xf4,0xfc,0xff,0xbc,0xf4,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,
0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbe,0xf4,0xfc,
0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbe,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,
0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,
0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,
0xff,0xc1,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xd3,0xfc,0xff,0xff,0xc3,0xf9,0xfe,
0xff,0xbe,0xf5,0xfc,0xff,0xc7,0xf6,0xfc,0xff,0xc6,0xf6,0xfc,0xff,0xc6,0xf6,0xfc,
0xff,0xc7,0xf7,0xfc,0xff,0xc7,0xf7,0xfc,0xff,0xc7,0xf7,0xfc,0xff,0xc7,0xf6,0xfc,
0xff,0xc8,0xf6,0xfc,0xff,0xc8,0xf6,0xfc,0xff,0xc8,0xf6,0xfc,0xff,0xc8,0xf7,0xfc,
0xff,0xc8,0xf7,0xfc,0xff,0xc8,0xf7,0xfc,0xff,0xc8,0xf8,0xfc,0xff,0xc9,0xf8,0xfc,
0xff,0xc9,0xf8,0xfc,0xff,0xc9,0xf7,0xfd,0xff,0xca,0xf7,0xfd,0xff,0xca,0xf7,0xfd,
0xff,0xca,0xf7,0xfd,0xff,0xcb,0xf7,0xfd,0xff,0xcb,0xf7,0xfd,0xff,0xcb,0xf7,0xfd,
0xff,0xcb,0xf7,0xfd,0xff,0xcb,0xf7,0xfd,0xff,0xcb,0xf7,0xfd,0xff,0xcb,0xf7,0xfd,
0xff,0xcc,0xf7,0xfd,0xff,0xcc,0xf7,0xfd,0xff,0xcc,0xf7,0xfd,0xff,0xcc,0xf7,0xfd,
0xff,0xcc,0xf7,0xfd,0xff,0xcc,0xf8,0xfd,0xff,0xca,0xf6,0xfd,0xff,0xd6,0xfa,0xfe,
0xff,0xa9,0xe9,0xf8,0xff,0x4a,0xa9,0xd4,0xff,0x7a,0xc8,0xd7,0xff,0x73,0xc5,0xd8,
0xff,0x74,0xc7,0xd8,0xff,0x74,0xc8,0xda,0xff,0x72,0xc8,0xda,0xff,0x82,0xd4,0xe3,
0xfa,0x75,0xd0,0xdd,0xff,0x32,0x4c,0x89,0x98,0x0,0x0,0x0,0x0,0xff,0xff,0xff,
0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xb4,0xf3,0xfc,0xa8,0xb1,0xf3,0xfc,0xff,0xb1,0xf2,0xfc,0xfa,0xb2,0xf2,0xfc,
0xff,0xb2,0xf2,0xfc,0xff,0xb2,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,0xff,0xb3,0xf2,0xfc,
0xff,0xb4,0xf2,0xfc,0xff,0xb4,0xf3,0xfc,0xff,0xb5,0xf3,0xfc,0xff,0xb5,0xf3,0xfc,
0xff,0xb5,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb7,0xf2,0xfc,0xff,0xb7,0xf2,0xfc,0xff,0xb7,0xf3,0xfc,
0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,
0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xba,0xf3,0xfc,
0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf3,0xfc,0xff,0xba,0xf4,0xfc,
0xff,0xba,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbb,0xf4,0xfc,0xff,0xbc,0xf4,0xfc,
0xff,0xbc,0xf4,0xfc,0xff,0xbd,0xf4,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,
0xff,0xbd,0xf3,0xfc,0xff,0xbe,0xf3,0xfc,0xff,0xbe,0xf3,0xfc,0xff,0xbe,0xf4,0xfc,
0xff,0xbe,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,0xff,0xbf,0xf4,0xfc,
0xff,0xbf,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,0xff,0xc0,0xf4,0xfc,
0xff,0xc0,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,0xff,0xc1,0xf4,0xfc,
0xff,0xc1,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,0xff,0xc2,0xf4,0xfc,
0xff,0xc1,0xf4,0xfc,0xff,0xc5,0xf5,0xfd,0xff,0xe0,0xff,0xff,0xff,0x56,0xad,0xdd,
0xff,0x80,0xc4,0xd4,0xff,0x8a,0xcb,0xd8,0xff,0x88,0xc9,0xd7,0xff,0x87,0xca,0xd8,
0xff,0x87,0xc9,0xd8,0xff,0x87,0xc9,0xd8,0xff,0x87,0xc9,0xd8,0xff,0x87,0xc9,0xd8,
0xff,0x86,0xc9,0xd8,0xff,0x86,0xc9,0xd8,0xff,0x86,0xc9,0xd9,0xff,0x85,0xca,0xd9,
0xff,0x85,0xca,0xd9,0xff,0x85,0xca,0xd9,0xff,0x84,0xca,0xd9,0xff,0x84,0xca,0xd9,
0xff,0x84,0xca,0xd9,0xff,0x84,0xca,0xda,0xff,0x83,0xcb,0xda,0xff,0x83,0xca,0xda,
0xff,0x82,0xca,0xda,0xff,0x82,0xcb,0xda,0xff,0x82,0xcb,0xda,0xff,0x81,0xcb,0xda,
0xff,0x81,0xcb,0xda,0xff,0x80,0xcb,0xda,0xff,0x80,0xcb,0xda,0xff,0x7f,0xcb,0xda,
0xff,0x7e,0xcb,0xda,0xff,0x7e,0xca,0xda,0xff,0x7e,0xca,0xdb,0xff,0x7d,0xca,0xdb,
0xff,0x7d,0xca,0xda,0xff,0x7c,0xca,0xda,0xff,0x7c,0xca,0xda,0xff,0x7b,0xca,0xdb,
0xff,0x74,0xc9,0xda,0xff,0x75,0xc8,0xd8,0xff,0x74,0xc6,0xd8,0xff,0x74,0xc7,0xd8,
0xff,0x74,0xc8,0xda,0xff,0x74,0xc9,0xdb,0xff,0x72,0xc9,0xdb,0xff,0x7d,0xd3,0xe2,
0xfc,0x7f,0xd6,0xe3,0xff,0x2d,0x43,0x84,0xa4,0x0,0x0,0x0,0x0,0xff,0xff,0xff,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xad,0xf2,0xfc,0xc6,0xb3,0xf2,0xfd,0xff,0xb1,0xf1,0xfc,0xfa,0xb2,0xf2,0xfc,
0xfc,0xb3,0xf2,0xfc,0xfc,0xb3,0xf2,0xfc,0xfc,0xb3,0xf2,0xfc,0xfc,0xb4,0xf2,0xfc,
0xfc,0xb4,0xf2,0xfc,0xfc,0xb4,0xf1,0xfc,0xfc,0xb4,0xf1,0xfc,0xff,0xb4,0xf1,0xfc,
0xff,0xb4,0xf1,0xfc,0xff,0xb5,0xf1,0xfc,0xff,0xb5,0xf2,0xfc,0xff,0xb5,0xf2,0xfc,
0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,0xff,0xb6,0xf2,0xfc,
0xff,0xb7,0xf2,0xfc,0xff,0xb7,0xf2,0xfc,0xff,0xb7,0xf2,0xfc,0xff,0xb8,0xf2,0xfc,
0xff,0xb8,0xf2,0xfc,0xff,0xb8,0xf2,0xfc,0xff,0xb8,0xf3,0xfc,0xff,0xb8,0xf3,0xfc,
0xff,0xb8,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,0xff,0xb9,0xf3,0xfc,
0xff,0xba,0xf3,0xfc,0xff,0xbb,0xf2,0xfc,0xff,0xbb,0xf2,0xfc,0xff,0xbb,0xf2,0xfc,
0xff,0xbb,0xf2,0xfc,0xff,0xbb,0xf2,0xfc,0xff,0xbc,0xf2,0xfc,0xff,0xbc,0xf3,0xfc,
0xff,0xbc,0xf3,0xfc,0xff,0xbc,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,
0xff,0xbd,0xf3,0xfc,0xff,0xbd,0xf3,0xfc,0xff,0xbe,0xf3,0xfc,0xff,0xbe,0xf3,0xfc,
0xff,0xbe,0xf3,0xfc,0xff,0xbe,0xf3,0xfc,0xff,0xbf,0xf3,0xfc,0xff,0xbf,0xf3,0xfc,
0xff,0xbf,0xf3,0xfc,0xff,0xbf,0xf3,0xfc,0xff,0xc0,0xf3,0xfc,0xff,0xc0,0xf3,0xfc,
0xff,0xc0,0xf3,0xfc,0xff,0xc0,0xf3,0xfc,0xff,0xc1,0xf3,0xfc,0xff,0xc1,0xf3,0xfc,
0xff,0xbf,0xf2,0xfc,0xff,0xcc,0xf9,0xfe,0xff,0xd3,0xf4,0xfd,0xff,0x49,0x8f,0xcd,
0xff,0x88,0xc6,0xd1,0xff,0x84,0xc4,0xd2,0xff,0x84,0xc4,0xd2,0xff,0x83,0xc3,0xd2,
0xff,0x83,0xc3,0xd2,0xff,0x82,0xc4,0xd3,0xff,0x82,0xc4,0xd3,0xff,0x81,0xc4,0xd3,
0xff,0x81,0xc4,0xd3,0xff,0x81,0xc4,0xd3,0xff,0x80,0xc4,0xd3,0xff,0x80,0xc4,0xd3,
0xff,0x80,0xc5,0xd4,0xff,0x7f,0xc5,0xd4,0xff,0x7f,0xc4,0xd4,0xff,0x7f,0xc5,0xd4,
0xff,0x7e,0xc5,0xd4,0xff,0x7e,0xc5,0xd5,0xff,0x7d,0xc5,0xd5,0xff,0x7d,0xc5,0xd5,
0xff,0x7d,0xc5,0xd5,0xff,0x7c,0xc6,0xd5,0xff,0x7b,0xc6,0xd5,0xff,0x7b,0xc5,0xd5,
0xff,0x7a,0xc5,0xd6,0xff,0x7a,0xc5,0xd6,0xff,0x79,0xc5,0xd6,0xff,0x78,0xc5,0xd6,
0xff,0x78,0xc5,0xd6,0xff,0x77,0xc5,0xd6,0xff,0x77,0xc5,0xd6,0xff,0x76,0xc5,0xd6,
0xff,0x75,0xc5,0xd6,0xff,0x75,0xc5,0xd6,0xff,0x74,0xc5,0xd6,0xff,0x74,0xc6,0xd7,
0xff,0x75,0xc6,0xd7,0xff,0x74,0xc6,0xd8,0xff,0x74,0xc7,0xd9,0xff,0x74,0xc8,0xda,
0xff,0x74,0xc9,0xda,0xff,0x74,0xca,0xdb,0xff,0x73,0xca,0xdc,0xff,0x7b,0xd1,0xe1,
0xfc,0x89,0xdf,0xeb,0xff,0x22,0x3e,0x8b,0xb0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0xfc,0xfe,
0xc,0xb1,0xf3,0xfd,0xe4,0xbe,0xf8,0xfe,0xff,0xbd,0xf7,0xfe,0xfc,0xbd,0xf7,0xfe,
0xff,0xbe,0xf7,0xfe,0xff,0xbe,0xf7,0xfe,0xff,0xbe,0xf7,0xfe,0xff,0xbf,0xf7,0xfe,
0xff,0xbf,0xf7,0xfe,0xff,0xbf,0xf7,0xfe,0xff,0xc2,0xf8,0xff,0xff,0xc3,0xf9,0xff,
0xff,0xc3,0xf9,0xff,0xff,0xc4,0xf9,0xff,0xff,0xc4,0xf9,0xff,0xff,0xc4,0xf9,0xff,
0xff,0xc5,0xf9,0xff,0xff,0xc5,0xf9,0xff,0xff,0xc5,0xf9,0xff,0xff,0xc6,0xf9,0xff,
0xff,0xc6,0xf9,0xff,0xff,0xc6,0xf9,0xff,0xff,0xc6,0xf9,0xff,0xff,0xc6,0xfa,0xff,
0xff,0xc7,0xfa,0xff,0xff,0xc7,0xfa,0xff,0xff,0xc8,0xfa,0xff,0xff,0xc8,0xfa,0xff,
0xff,0xc9,0xfa,0xff,0xff,0xc9,0xfa,0xff,0xff,0xc9,0xfa,0xff,0xff,0xca,0xfa,0xff,
0xff,0xca,0xfa,0xff,0xff,0xca,0xfa,0xff,0xff,0xca,0xfa,0xff,0xff,0xca,0xfa,0xff,
0xff,0xcb,0xfa,0xff,0xff,0xcb,0xfa,0xff,0xff,0xcb,0xfa,0xff,0xff,0xcb,0xfa,0xff,
0xff,0xcc,0xfa,0xff,0xff,0xcc,0xfa,0xff,0xff,0xcc,0xfa,0xff,0xff,0xcd,0xfa,0xff,
0xff,0xcd,0xfa,0xff,0xff,0xcd,0xfa,0xff,0xff,0xcd,0xfa,0xff,0xff,0xce,0xfa,0xff,
0xff,0xce,0xfa,0xff,0xff,0xce,0xfa,0xff,0xff,0xce,0xfa,0xff,0xff,0xce,0xfa,0xff,
0xff,0xcf,0xfa,0xff,0xff,0xcf,0xfa,0xff,0xff,0xcf,0xfa,0xff,0xff,0xcf,0xfa,0xff,
0xff,0xd0,0xfa,0xff,0xff,0xd0,0xfa,0xff,0xff,0xd0,0xfa,0xff,0xff,0xd1,0xfb,0xff,
0xff,0xcd,0xfa,0xff,0xff,0xe6,0xff,0xff,0xff,0xb8,0xe5,0xf8,0xff,0x42,0x98,0xce,
0xff,0x90,0xcd,0xd6,0xff,0x84,0xc5,0xd5,0xff,0x85,0xc6,0xd5,0xff,0x85,0xc6,0xd5,
0xff,0x84,0xc6,0xd5,0xff,0x84,0xc6,0xd5,0xff,0x84,0xc7,0xd5,0xff,0x83,0xc6,0xd5,
0xff,0x83,0xc6,0xd5,0xff,0x82,0xc6,0xd5,0xff,0x82,0xc7,0xd5,0xff,0x82,0xc7,0xd5,
0xff,0x81,0xc7,0xd6,0xff,0x81,0xc7,0xd6,0xff,0x81,0xc8,0xd6,0xff,0x80,0xc8,0xd7,
0xff,0x80,0xc9,0xd7,0xff,0x80,0xc8,0xd8,0xff,0x7f,0xc8,0xd8,0xff,0x7f,0xc9,0xd8,
0xff,0x7e,0xc9,0xd8,0xff,0x7e,0xc9,0xd8,0xff,0x7d,0xc9,0xd9,0xff,0x7d,0xc9,0xd9,
0xff,0x7c,0xc9,0xd9,0xff,0x7c,0xc9,0xd9,0xff,0x7b,0xc9,0xd9,0xff,0x7b,0xc8,0xd9,
0xff,0x7a,0xc8,0xd9,0xff,0x79,0xc9,0xda,0xff,0x79,0xc8,0xd9,0xff,0x78,0xc8,0xd9,
0xff,0x78,0xc8,0xd9,0xff,0x77,0xc8,0xd9,0xff,0x76,0xc8,0xd9,0xff,0x76,0xc8,0xd9,
0xff,0x75,0xc8,0xda,0xff,0x75,0xc8,0xda,0xff,0x74,0xc9,0xda,0xff,0x74,0xca,0xdb,
0xff,0x74,0xca,0xdc,0xff,0x74,0xcc,0xdd,0xff,0x73,0xcb,0xde,0xff,0x79,0xd0,0xe1,
0xfc,0x8b,0xe6,0xee,0xff,0x27,0x55,0x94,0xbe,0x0,0x0,0x0,0x0,0xff,0xff,0xff,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0xfd,0xff,
0x8,0xc0,0xf5,0xfc,0xaa,0xc1,0xf5,0xfd,0xda,0xbf,0xf5,0xfd,0xd2,0xc0,0xf5,0xfd,
0xd4,0xc0,0xf5,0xfd,0xd4,0xc0,0xf6,0xfd,0xd4,0xc0,0xf6,0xfd,0xd4,0xc1,0xf6,0xfd,
0xd4,0xc1,0xf6,0xfd,0xd4,0xbf,0xf6,0xfd,0xd6,0xb4,0xf2,0xfa,0xfa,0xb4,0xf1,0xfa,
0xff,0xb4,0xf1,0xfa,0xff,0xb4,0xf1,0xfa,0xff,0xb4,0xf0,0xf9,0xff,0xb4,0xf0,0xf9,
0xff,0xb4,0xef,0xf9,0xff,0xb3,0xef,0xf8,0xff,0xb4,0xef,0xf8,0xff,0xb3,0xef,0xf8,
0xff,0xb3,0xef,0xf7,0xff,0xb3,0xef,0xf7,0xff,0xb3,0xef,0xf7,0xff,0xb4,0xee,0xf7,
0xff,0xb4,0xee,0xf7,0xff,0xb5,0xee,0xf7,0xff,0xb5,0xee,0xf7,0xff,0xb5,0xed,0xf6,
0xff,0xb5,0xee,0xf6,0xff,0xb5,0xee,0xf6,0xff,0xb6,0xee,0xf6,0xff,0xb6,0xee,0xf6,
0xff,0xb6,0xee,0xf6,0xff,0xb6,0xee,0xf6,0xff,0xb7,0xee,0xf6,0xff,0xb7,0xee,0xf6,
0xff,0xb7,0xee,0xf6,0xff,0xb7,0xee,0xf6,0xff,0xb7,0xee,0xf6,0xff,0xb8,0xee,0xf6,
0xff,0xb8,0xee,0xf6,0xff,0xb8,0xee,0xf6,0xff,0xb8,0xee,0xf6,0xff,0xb8,0xee,0xf6,
0xff,0xb9,0xee,0xf6,0xff,0xb9,0xee,0xf6,0xff,0xb9,0xee,0xf6,0xff,0xb9,0xee,0xf6,
0xff,0xb9,0xee,0xf6,0xff,0xb9,0xee,0xf6,0xff,0xb9,0xee,0xf6,0xff,0xb9,0xee,0xf6,
0xff,0xb9,0xee,0xf6,0xff,0xb9,0xee,0xf6,0xff,0xba,0xee,0xf6,0xff,0xba,0xee,0xf6,
0xff,0xba,0xee,0xf6,0xff,0xba,0xee,0xf6,0xff,0xba,0xee,0xf6,0xff,0xba,0xef,0xf6,
0xff,0xb9,0xee,0xf6,0xff,0xc3,0xf3,0xf8,0xff,0x83,0xd3,0xeb,0xff,0x69,0xb3,0xd1,
0xff,0x8c,0xcb,0xd6,0xff,0x84,0xc6,0xd5,0xff,0x85,0xc7,0xd5,0xff,0x85,0xc7,0xd5,
0xff,0x84,0xc7,0xd5,0xff,0x84,0xc7,0xd5,0xff,0x84,0xc7,0xd5,0xff,0x83,0xc7,0xd5,
0xff,0x82,0xc7,0xd5,0xff,0x82,0xc8,0xd6,0xff,0x82,0xc8,0xd6,0xff,0x82,0xc8,0xd7,
0xff,0x81,0xc8,0xd7,0xff,0x81,0xc9,0xd8,0xff,0x81,0xc9,0xd8,0xff,0x80,0xca,0xd9,
0xff,0x80,0xca,0xd9,0xff,0x80,0xca,0xda,0xff,0x80,0xca,0xda,0xff,0x7f,0xcb,0xda,
0xff,0x7e,0xcb,0xda,0xff,0x7e,0xca,0xda,0xff,0x7e,0xcb,0xda,0xff,0x7d,0xcb,0xda,
0xff,0x7c,0xcb,0xda,0xff,0x7c,0xcb,0xdb,0xff,0x7b,0xcb,0xdb,0xff,0x7b,0xcb,0xdb,
0xff,0x7a,0xcb,0xdb,0xff,0x79,0xcb,0xda,0xff,0x79,0xca,0xda,0xff,0x78,0xca,0xda,
0xff,0x78,0xca,0xda,0xff,0x77,0xca,0xda,0xff,0x77,0xca,0xdb,0xff,0x76,0xca,0xdb,
0xff,0x75,0xca,0xdb,0xff,0x75,0xcb,0xdc,0xff,0x75,0xcb,0xdd,0xff,0x75,0xcb,0xdd,
0xff,0x74,0xcc,0xdd,0xff,0x74,0xcc,0xdf,0xff,0x74,0xcd,0xdf,0xff,0x76,0xce,0xe1,
0xfc,0x8b,0xe8,0xef,0xff,0x3e,0x6f,0xa0,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xee,0xfa,0xfd,0x8,0xa2,0xe5,0xf2,0xde,0xa0,0xe3,0xf0,
0xff,0x9e,0xe0,0xed,0xfc,0x9c,0xde,0xeb,0xff,0x9a,0xdc,0xe9,0xff,0x98,0xd9,0xe7,
0xff,0x97,0xd8,0xe5,0xff,0x95,0xd5,0xe3,0xff,0x93,0xd4,0xe1,0xff,0x92,0xd2,0xdf,
0xff,0x91,0xd0,0xde,0xff,0x90,0xce,0xdd,0xff,0x8f,0xcd,0xdb,0xff,0x8e,0xcc,0xda,
0xff,0x8e,0xcb,0xda,0xff,0x8d,0xcb,0xd9,0xff,0x8d,0xcb,0xd8,0xff,0x8c,0xca,0xd8,
0xff,0x8c,0xca,0xd7,0xff,0x8c,0xc9,0xd7,0xff,0x8c,0xc9,0xd7,0xff,0x8c,0xc9,0xd7,
0xff,0x8b,0xc9,0xd7,0xff,0x8b,0xc9,0xd7,0xff,0x8b,0xc9,0xd6,0xff,0x8b,0xc9,0xd6,
0xff,0x8b,0xc9,0xd6,0xff,0x8b,0xc9,0xd6,0xff,0x8b,0xc9,0xd6,0xff,0x8b,0xc9,0xd6,
0xff,0x8b,0xc9,0xd6,0xff,0x8b,0xc9,0xd6,0xff,0x8b,0xc9,0xd6,0xff,0x8b,0xc9,0xd6,
0xff,0x8b,0xc9,0xd6,0xff,0x8b,0xc9,0xd6,0xff,0x8b,0xc9,0xd6,0xff,0x8a,0xc9,0xd6,
0xff,0x8a,0xc9,0xd6,0xff,0x89,0xc9,0xd6,0xff,0x89,0xc8,0xd6,0xff,0x89,0xc8,0xd6,
0xff,0x88,0xc8,0xd6,0xff,0x88,0xc8,0xd6,0xff,0x87,0xc8,0xd6,0xff,0x87,0xc8,0xd6,
0xff,0x86,0xc8,0xd5,0xff,0x86,0xc8,0xd5,0xff,0x86,0xc8,0xd5,0xff,0x85,0xc8,0xd5,
0xff,0x85,0xc8,0xd6,0xff,0x83,0xc7,0xd6,0xff,0x87,0xca,0xd6,0xff,0x8a,0xcc,0xd7,
0xff,0x85,0xc7,0xd6,0xff,0x86,0xc8,0xd6,0xff,0x85,0xc8,0xd6,0xff,0x85,0xc9,0xd7,
0xff,0x85,0xc9,0xd7,0xff,0x84,0xc8,0xd7,0xff,0x84,0xc8,0xd6,0xff,0x83,0xc9,0xd7,
0xff,0x83,0xc9,0xd7,0xff,0x83,0xca,0xd8,0xff,0x82,0xca,0xd8,0xff,0x82,0xca,0xd9,
0xff,0x82,0xca,0xd9,0xff,0x82,0xcb,0xda,0xff,0x81,0xcb,0xda,0xff,0x81,0xcb,0xda,
0xff,0x81,0xcb,0xdb,0xff,0x80,0xcb,0xda,0xff,0x80,0xcc,0xdb,0xff,0x7f,0xcc,0xdb,
0xff,0x7f,0xcc,0xdc,0xff,0x7f,0xcc,0xdc,0xff,0x7e,0xcc,0xdd,0xff,0x7e,0xcc,0xdd,
0xff,0x7d,0xcc,0xdd,0xff,0x7d,0xcc,0xdd,0xff,0x7c,0xcc,0xdd,0xff,0x7b,0xcc,0xdd,
0xff,0x7b,0xcc,0xdd,0xff,0x7a,0xcc,0xdd,0xff,0x79,0xcc,0xdd,0xff,0x79,0xcc,0xdd,
0xff,0x78,0xcc,0xdd,0xff,0x77,0xcc,0xdd,0xff,0x77,0xcc,0xdd,0xff,0x77,0xcc,0xde,
0xff,0x76,0xcc,0xde,0xff,0x75,0xcc,0xde,0xff,0x75,0xcc,0xde,0xff,0x75,0xcc,0xdf,
0xff,0x75,0xcd,0xdf,0xff,0x75,0xce,0xe0,0xff,0x75,0xcf,0xe1,0xff,0x72,0xcd,0xe1,
0xfc,0x96,0xf2,0xf6,0xff,0x25,0x50,0x92,0xdc,0xd0,0xc9,0xdb,0x6,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xf1,0xfb,0xfd,0x2,0xa6,0xe6,0xf2,0xd2,0xa4,0xe5,0xf1,
0xff,0xa2,0xe2,0xee,0xfc,0xa0,0xe0,0xec,0xff,0x9e,0xdf,0xeb,0xff,0x9d,0xdc,0xe9,
0xff,0x9b,0xda,0xe7,0xff,0x99,0xd8,0xe5,0xff,0x98,0xd5,0xe3,0xff,0x96,0xd5,0xe1,
0xff,0x95,0xd3,0xdf,0xff,0x94,0xd1,0xde,0xff,0x93,0xd0,0xdd,0xff,0x92,0xcf,0xdc,
0xff,0x92,0xce,0xdb,0xff,0x91,0xcd,0xda,0xff,0x91,0xcd,0xda,0xff,0x91,0xcd,0xda,
0xff,0x91,0xcc,0xda,0xff,0x90,0xcc,0xd9,0xff,0x90,0xcc,0xd9,0xff,0x90,0xcc,0xd9,
0xff,0x90,0xcc,0xd9,0xff,0x90,0xcc,0xd9,0xff,0x90,0xcc,0xd9,0xff,0x90,0xcc,0xd9,
0xff,0x90,0xcc,0xd9,0xff,0x90,0xcc,0xd9,0xff,0x90,0xcc,0xd9,0xff,0x90,0xcc,0xd9,
0xff,0x90,0xcc,0xd9,0xff,0x90,0xcc,0xd9,0xff,0x90,0xcc,0xd9,0xff,0x90,0xcc,0xd9,
0xff,0x90,0xcc,0xd9,0xff,0x90,0xcc,0xd9,0xff,0x8f,0xcc,0xd9,0xff,0x8f,0xcc,0xd9,
0xff,0x8e,0xcc,0xd9,0xff,0x8e,0xcb,0xd9,0xff,0x8d,0xcb,0xd9,0xff,0x8d,0xcb,0xd9,
0xff,0x8c,0xcb,0xd9,0xff,0x8c,0xcb,0xd9,0xff,0x8b,0xcb,0xd8,0xff,0x8b,0xcb,0xd8,
0xff,0x8b,0xca,0xd8,0xff,0x8a,0xca,0xd8,0xff,0x8a,0xca,0xd8,0xff,0x89,0xca,0xd8,
0xff,0x89,0xca,0xd8,0xff,0x89,0xca,0xd8,0xff,0x87,0xca,0xd8,0xff,0x86,0xc9,0xd8,
0xff,0x87,0xca,0xd8,0xff,0x86,0xca,0xd8,0xff,0x86,0xca,0xd8,0xff,0x85,0xca,0xd9,
0xff,0x85,0xca,0xd8,0xff,0x85,0xca,0xd8,0xff,0x84,0xca,0xd8,0xff,0x84,0xca,0xd9,
0xff,0x83,0xca,0xd9,0xff,0x83,0xcb,0xda,0xff,0x83,0xcb,0xda,0xff,0x82,0xcb,0xda,
0xff,0x82,0xcc,0xdb,0xff,0x82,0xcc,0xdb,0xff,0x82,0xcc,0xdc,0xff,0x81,0xcc,0xdd,
0xff,0x81,0xcc,0xdd,0xff,0x81,0xcd,0xdd,0xff,0x80,0xcd,0xde,0xff,0x80,0xcd,0xde,
0xff,0x80,0xce,0xde,0xff,0x7f,0xce,0xdf,0xff,0x7f,0xce,0xdf,0xff,0x7e,0xce,0xdf,
0xff,0x7e,0xce,0xe0,0xff,0x7d,0xce,0xe0,0xff,0x7d,0xce,0xdf,0xff,0x7c,0xce,0xdf,
0xff,0x7b,0xce,0xdf,0xff,0x7b,0xce,0xdf,0xff,0x7a,0xce,0xdf,0xff,0x7a,0xce,0xdf,
0xff,0x79,0xcd,0xe0,0xff,0x78,0xcd,0xe0,0xff,0x77,0xcd,0xe0,0xff,0x77,0xce,0xe0,
0xff,0x77,0xcd,0xe0,0xff,0x76,0xcd,0xe0,0xff,0x76,0xce,0xe0,0xff,0x75,0xcf,0xe1,
0xff,0x75,0xcf,0xe1,0xff,0x75,0xd0,0xe2,0xff,0x75,0xd0,0xe3,0xff,0x72,0xcf,0xe3,
0xfc,0x98,0xf4,0xf8,0xff,0x2b,0x63,0xa6,0xe4,0xcf,0xc9,0xdc,0xe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0xe7,0xf3,0xca,0xa5,0xe6,0xf1,
0xff,0xa1,0xe3,0xef,0xfc,0xa0,0xe1,0xed,0xff,0x9e,0xdf,0xeb,0xff,0x9d,0xdd,0xea,
0xff,0x9b,0xda,0xe8,0xff,0x9a,0xda,0xe6,0xff,0x98,0xd7,0xe4,0xff,0x97,0xd5,0xe2,
0xff,0x96,0xd5,0xe1,0xff,0x95,0xd3,0xdf,0xff,0x94,0xd2,0xdf,0xff,0x93,0xd0,0xde,
0xff,0x92,0xcf,0xdd,0xff,0x92,0xcf,0xdc,0xff,0x92,0xce,0xdc,0xff,0x91,0xce,0xdb,
0xff,0x91,0xce,0xdb,0xff,0x91,0xcd,0xdb,0xff,0x91,0xcd,0xda,0xff,0x91,0xcd,0xda,
0xff,0x91,0xcd,0xda,0xff,0x91,0xcd,0xda,0xff,0x91,0xcd,0xda,0xff,0x91,0xcd,0xda,
0xff,0x91,0xcd,0xda,0xff,0x91,0xcd,0xda,0xff,0x91,0xcd,0xda,0xff,0x91,0xcd,0xda,
0xff,0x91,0xcd,0xda,0xff,0x91,0xcd,0xda,0xff,0x91,0xcd,0xda,0xff,0x91,0xcd,0xda,
0xff,0x90,0xcd,0xda,0xff,0x90,0xcd,0xda,0xff,0x90,0xcd,0xda,0xff,0x8f,0xcd,0xda,
0xff,0x8f,0xcc,0xda,0xff,0x8f,0xcc,0xda,0xff,0x8e,0xcc,0xda,0xff,0x8e,0xcc,0xda,
0xff,0x8c,0xcc,0xda,0xff,0x8c,0xcc,0xda,0xff,0x8c,0xcc,0xda,0xff,0x8b,0xcc,0xda,
0xff,0x8b,0xcc,0xda,0xff,0x8a,0xcc,0xda,0xff,0x8a,0xcc,0xda,0xff,0x89,0xcc,0xda,
0xff,0x89,0xcc,0xda,0xff,0x89,0xcc,0xda,0xff,0x88,0xcb,0xda,0xff,0x88,0xcb,0xda,
0xff,0x87,0xcb,0xda,0xff,0x87,0xcb,0xda,0xff,0x86,0xcb,0xda,0xff,0x86,0xcb,0xda,
0xff,0x86,0xcb,0xda,0xff,0x85,0xcb,0xda,0xff,0x85,0xcc,0xda,0xff,0x85,0xcc,0xda,
0xff,0x84,0xcc,0xdb,0xff,0x84,0xcc,0xdb,0xff,0x83,0xcc,0xdc,0xff,0x83,0xcd,0xdd,
0xff,0x83,0xcd,0xdd,0xff,0x83,0xcd,0xde,0xff,0x82,0xce,0xde,0xff,0x82,0xce,0xde,
0xff,0x82,0xcf,0xdf,0xff,0x81,0xcf,0xdf,0xff,0x81,0xcf,0xe0,0xff,0x81,0xd0,0xe0,
0xff,0x81,0xd0,0xe1,0xff,0x80,0xd0,0xe1,0xff,0x7f,0xd0,0xe1,0xff,0x7f,0xd0,0xe1,
0xff,0x7f,0xd1,0xe2,0xff,0x7e,0xd1,0xe2,0xff,0x7d,0xd1,0xe1,0xff,0x7d,0xd0,0xe2,
0xff,0x7c,0xd0,0xe2,0xff,0x7b,0xd0,0xe2,0xff,0x7b,0xd0,0xe2,0xff,0x7a,0xd0,0xe2,
0xff,0x7a,0xd0,0xe2,0xff,0x79,0xd0,0xe2,0xff,0x78,0xd0,0xe2,0xff,0x77,0xd0,0xe2,
0xff,0x77,0xd0,0xe2,0xff,0x77,0xd0,0xe2,0xff,0x76,0xd1,0xe3,0xff,0x76,0xd1,0xe3,
0xff,0x75,0xd1,0xe3,0xff,0x75,0xd2,0xe4,0xff,0x75,0xd3,0xe4,0xff,0x71,0xd0,0xe4,
0xff,0x9d,0xf9,0xfc,0xff,0x20,0x67,0xa3,0xec,0x9b,0x95,0xba,0x14,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xab,0xe9,0xf4,0xbc,0xa4,0xe6,0xf2,
0xff,0xa3,0xe4,0xf0,0xfc,0xa1,0xe2,0xee,0xff,0x9f,0xe0,0xec,0xff,0x9e,0xdf,0xeb,
0xff,0x9c,0xdc,0xe9,0xff,0x9b,0xda,0xe8,0xff,0x99,0xd9,0xe6,0xff,0x98,0xd7,0xe4,
0xff,0x97,0xd5,0xe2,0xff,0x96,0xd5,0xe1,0xff,0x95,0xd4,0xe0,0xff,0x95,0xd3,0xdf,
0xff,0x94,0xd2,0xde,0xff,0x94,0xd1,0xde,0xff,0x93,0xd0,0xdd,0xff,0x93,0xd0,0xdd,
0xff,0x92,0xcf,0xdd,0xff,0x92,0xcf,0xdd,0xff,0x92,0xcf,0xdc,0xff,0x92,0xcf,0xdc,
0xff,0x92,0xce,0xdc,0xff,0x92,0xce,0xdc,0xff,0x92,0xce,0xdc,0xff,0x92,0xce,0xdc,
0xff,0x92,0xce,0xdc,0xff,0x92,0xce,0xdc,0xff,0x92,0xce,0xdc,0xff,0x92,0xce,0xdc,
0xff,0x92,0xce,0xdc,0xff,0x92,0xce,0xdc,0xff,0x92,0xce,0xdc,0xff,0x92,0xce,0xdc,
0xff,0x91,0xce,0xdc,0xff,0x91,0xce,0xdc,0xff,0x90,0xce,0xdc,0xff,0x90,0xce,0xdc,
0xff,0x90,0xce,0xdc,0xff,0x8f,0xce,0xdc,0xff,0x8f,0xce,0xdc,0xff,0x8f,0xce,0xdc,
0xff,0x8f,0xce,0xdb,0xff,0x8e,0xce,0xdb,0xff,0x8e,0xce,0xdb,0xff,0x8d,0xcd,0xdb,
0xff,0x8c,0xcd,0xdb,0xff,0x8b,0xcd,0xdb,0xff,0x8a,0xcd,0xdb,0xff,0x8a,0xcd,0xdb,
0xff,0x8a,0xcd,0xdb,0xff,0x89,0xcc,0xdb,0xff,0x89,0xcd,0xdb,0xff,0x89,0xcd,0xdc,
0xff,0x88,0xcd,0xdc,0xff,0x87,0xcd,0xdc,0xff,0x87,0xcc,0xdb,0xff,0x87,0xcd,0xdb,
0xff,0x86,0xcd,0xdc,0xff,0x86,0xcd,0xdc,0xff,0x86,0xcd,0xdc,0xff,0x85,0xcd,0xdd,
0xff,0x85,0xcd,0xdd,0xff,0x84,0xce,0xde,0xff,0x84,0xcf,0xdf,0xff,0x84,0xcf,0xdf,
0xff,0x84,0xcf,0xe0,0xff,0x83,0xcf,0xe0,0xff,0x83,0xd0,0xe0,0xff,0x83,0xd1,0xe0,
0xff,0x83,0xd1,0xe1,0xff,0x82,0xd1,0xe1,0xff,0x82,0xd2,0xe2,0xff,0x82,0xd2,0xe2,
0xff,0x81,0xd3,0xe2,0xff,0x81,0xd3,0xe3,0xff,0x80,0xd3,0xe3,0xff,0x80,0xd3,0xe3,
0xff,0x7f,0xd4,0xe3,0xff,0x7f,0xd3,0xe3,0xff,0x7e,0xd3,0xe3,0xff,0x7d,0xd3,0xe3,
0xff,0x7d,0xd3,0xe3,0xff,0x7c,0xd3,0xe4,0xff,0x7c,0xd3,0xe4,0xff,0x7b,0xd3,0xe4,
0xff,0x7a,0xd3,0xe4,0xff,0x7a,0xd3,0xe4,0xff,0x79,0xd2,0xe4,0xff,0x78,0xd2,0xe4,
0xff,0x78,0xd3,0xe4,0xff,0x77,0xd3,0xe4,0xff,0x77,0xd3,0xe4,0xff,0x76,0xd3,0xe5,
0xff,0x76,0xd4,0xe5,0xff,0x76,0xd4,0xe6,0xff,0x76,0xd5,0xe7,0xff,0x71,0xd1,0xe5,
0xff,0x9a,0xf8,0xfd,0xff,0x30,0x7b,0xa9,0xf4,0xb6,0xb1,0xc9,0x1c,0x0,0x0,0x0,
0x0,0xfc,0xfc,0xfd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xb4,0xec,0xf5,0xae,0xa3,0xe6,0xf2,
0xff,0xa4,0xe5,0xf1,0xfc,0xa2,0xe3,0xef,0xff,0xa0,0xe1,0xed,0xff,0x9f,0xe0,0xec,
0xff,0x9d,0xde,0xea,0xff,0x9c,0xdc,0xe9,0xff,0x9b,0xda,0xe8,0xff,0x9a,0xd9,0xe6,
0xff,0x99,0xd8,0xe4,0xff,0x98,0xd6,0xe3,0xff,0x97,0xd5,0xe2,0xff,0x96,0xd5,0xe1,
0xff,0x95,0xd4,0xe0,0xff,0x95,0xd3,0xe0,0xff,0x95,0xd3,0xdf,0xff,0x94,0xd2,0xdf,
0xff,0x94,0xd2,0xdf,0xff,0x94,0xd2,0xde,0xff,0x94,0xd1,0xde,0xff,0x94,0xd1,0xde,
0xff,0x94,0xd1,0xde,0xff,0x94,0xd1,0xde,0xff,0x94,0xd1,0xde,0xff,0x94,0xd1,0xde,
0xff,0x94,0xd1,0xde,0xff,0x94,0xd1,0xde,0xff,0x94,0xd1,0xde,0xff,0x94,0xd1,0xde,
0xff,0x94,0xd1,0xde,0xff,0x94,0xd1,0xde,0xff,0x93,0xd1,0xde,0xff,0x93,0xd1,0xde,
0xff,0x92,0xd1,0xde,0xff,0x92,0xd0,0xde,0xff,0x92,0xd0,0xde,0xff,0x91,0xd0,0xde,
0xff,0x91,0xd0,0xde,0xff,0x91,0xd0,0xde,0xff,0x90,0xd0,0xde,0xff,0x90,0xd0,0xde,
0xff,0x8f,0xd0,0xde,0xff,0x8f,0xcf,0xde,0xff,0x8f,0xcf,0xde,0xff,0x8e,0xcf,0xde,
0xff,0x8d,0xcf,0xde,0xff,0x8d,0xcf,0xde,0xff,0x8b,0xcf,0xde,0xff,0x8b,0xcf,0xde,
0xff,0x8b,0xcf,0xde,0xff,0x8a,0xcf,0xde,0xff,0x8a,0xcf,0xde,0xff,0x89,0xcf,0xde,
0xff,0x89,0xcf,0xde,0xff,0x88,0xce,0xde,0xff,0x88,0xce,0xde,0xff,0x87,0xcf,0xde,
0xff,0x87,0xcf,0xde,0xff,0x87,0xcf,0xde,0xff,0x86,0xcf,0xdf,0xff,0x86,0xcf,0xdf,
0xff,0x85,0xd0,0xe0,0xff,0x85,0xd0,0xe0,0xff,0x85,0xd1,0xe0,0xff,0x85,0xd1,0xe1,
0xff,0x84,0xd1,0xe1,0xff,0x84,0xd2,0xe2,0xff,0x84,0xd3,0xe2,0xff,0x84,0xd3,0xe2,
0xff,0x83,0xd3,0xe3,0xff,0x83,0xd4,0xe3,0xff,0x83,0xd4,0xe4,0xff,0x83,0xd5,0xe4,
0xff,0x82,0xd5,0xe5,0xff,0x82,0xd5,0xe5,0xff,0x81,0xd5,0xe6,0xff,0x81,0xd5,0xe6,
0xff,0x80,0xd5,0xe5,0xff,0x80,0xd5,0xe6,0xff,0x7f,0xd5,0xe6,0xff,0x7e,0xd5,0xe6,
0xff,0x7e,0xd5,0xe6,0xff,0x7d,0xd5,0xe6,0xff,0x7c,0xd5,0xe6,0xff,0x7c,0xd5,0xe6,
0xff,0x7b,0xd5,0xe6,0xff,0x7a,0xd5,0xe6,0xff,0x7a,0xd5,0xe6,0xff,0x79,0xd5,0xe6,
0xff,0x79,0xd5,0xe6,0xff,0x78,0xd5,0xe6,0xff,0x77,0xd5,0xe7,0xff,0x77,0xd5,0xe7,
0xff,0x76,0xd5,0xe7,0xff,0x76,0xd6,0xe8,0xff,0x77,0xd6,0xe9,0xff,0x70,0xd2,0xe7,
0xff,0x99,0xfa,0xfe,0xff,0x3b,0x81,0xac,0xff,0x9f,0x9a,0xba,0x2a,0x0,0x0,0x0,
0x0,0xfb,0xfb,0xfd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xb4,0xec,0xf6,0x98,0xa4,0xe8,0xf3,
0xff,0xa5,0xe5,0xf1,0xfa,0xa3,0xe4,0xf0,0xff,0xa1,0xe2,0xee,0xff,0xa0,0xe1,0xed,
0xff,0x9f,0xdf,0xeb,0xff,0x9d,0xde,0xea,0xff,0x9c,0xdc,0xe9,0xff,0x9b,0xda,0xe8,
0xff,0x9a,0xda,0xe6,0xff,0x99,0xd9,0xe5,0xff,0x98,0xd7,0xe4,0xff,0x98,0xd6,0xe3,
0xff,0x97,0xd5,0xe2,0xff,0x96,0xd5,0xe2,0xff,0x96,0xd5,0xe1,0xff,0x96,0xd5,0xe1,
0xff,0x96,0xd4,0xe1,0xff,0x96,0xd4,0xe1,0xff,0x95,0xd4,0xe0,0xff,0x95,0xd4,0xe0,
0xff,0x95,0xd4,0xe0,0xff,0x95,0xd4,0xe0,0xff,0x95,0xd4,0xe0,0xff,0x95,0xd4,0xe0,
0xff,0x95,0xd4,0xe0,0xff,0x95,0xd4,0xe0,0xff,0x95,0xd4,0xe0,0xff,0x95,0xd4,0xe0,
0xff,0x95,0xd4,0xe0,0xff,0x95,0xd4,0xe0,0xff,0x94,0xd4,0xe0,0xff,0x94,0xd4,0xe0,
0xff,0x94,0xd4,0xe0,0xff,0x94,0xd3,0xe0,0xff,0x93,0xd3,0xe0,0xff,0x93,0xd3,0xe0,
0xff,0x92,0xd3,0xe0,0xff,0x92,0xd3,0xe0,0xff,0x91,0xd3,0xe0,0xff,0x91,0xd3,0xe0,
0xff,0x91,0xd2,0xe0,0xff,0x90,0xd2,0xe0,0xff,0x90,0xd2,0xe0,0xff,0x8f,0xd2,0xe0,
0xff,0x8f,0xd2,0xe0,0xff,0x8e,0xd2,0xe0,0xff,0x8d,0xd1,0xe0,0xff,0x8d,0xd1,0xe0,
0xff,0x8c,0xd1,0xe0,0xff,0x8b,0xd1,0xe0,0xff,0x8b,0xd1,0xe0,0xff,0x8a,0xd1,0xe0,
0xff,0x8a,0xd0,0xe0,0xff,0x89,0xd1,0xe0,0xff,0x89,0xd1,0xe0,0xff,0x88,0xd1,0xe0,
0xff,0x88,0xd1,0xe0,0xff,0x88,0xd1,0xe0,0xff,0x87,0xd1,0xe1,0xff,0x87,0xd2,0xe1,
0xff,0x86,0xd2,0xe1,0xff,0x86,0xd3,0xe2,0xff,0x86,0xd3,0xe2,0xff,0x86,0xd4,0xe3,
0xff,0x85,0xd4,0xe3,0xff,0x85,0xd5,0xe3,0xff,0x85,0xd5,0xe4,0xff,0x85,0xd5,0xe4,
0xff,0x84,0xd5,0xe5,0xff,0x84,0xd6,0xe6,0xff,0x84,0xd6,0xe6,0xff,0x83,0xd6,0xe7,
0xff,0x83,0xd7,0xe7,0xff,0x83,0xd7,0xe8,0xff,0x82,0xd8,0xe8,0xff,0x81,0xd7,0xe8,
0xff,0x81,0xd8,0xe8,0xff,0x81,0xd8,0xe8,0xff,0x80,0xd8,0xe8,0xff,0x7f,0xd8,0xe8,
0xff,0x7e,0xd7,0xe9,0xff,0x7e,0xd8,0xe9,0xff,0x7d,0xd8,0xe9,0xff,0x7d,0xd8,0xe9,
0xff,0x7c,0xd7,0xe9,0xff,0x7b,0xd7,0xe8,0xff,0x7a,0xd7,0xe8,0xff,0x7a,0xd7,0xe8,
0xff,0x79,0xd7,0xe9,0xff,0x79,0xd6,0xe9,0xff,0x78,0xd7,0xe9,0xff,0x77,0xd7,0xe9,
0xff,0x77,0xd8,0xea,0xff,0x76,0xd8,0xea,0xff,0x76,0xd8,0xeb,0xff,0x71,0xd4,0xe9,
0xff,0x99,0xf9,0xfd,0xff,0x43,0x91,0xc1,0xff,0x93,0x94,0xb7,0x3e,0x0,0x0,0x0,
0x0,0xfb,0xfb,0xfc,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xff,0xff,0xff,0x4,0x0,0x0,0x0,0x0,0xb4,0xec,0xf6,0x8a,0xa5,0xe9,0xf4,
0xff,0xa6,0xe7,0xf3,0xfa,0xa4,0xe5,0xf1,0xff,0xa2,0xe4,0xf0,0xff,0xa1,0xe2,0xee,
0xff,0xa0,0xe1,0xed,0xff,0x9f,0xe0,0xec,0xff,0x9e,0xdf,0xeb,0xff,0x9d,0xdd,0xe9,
0xff,0x9c,0xdb,0xe8,0xff,0x9b,0xda,0xe7,0xff,0x9a,0xda,0xe6,0xff,0x99,0xd9,0xe6,
0xff,0x99,0xd8,0xe5,0xff,0x98,0xd7,0xe4,0xff,0x98,0xd7,0xe4,0xff,0x98,0xd6,0xe3,
0xff,0x98,0xd6,0xe3,0xff,0x97,0xd6,0xe3,0xff,0x97,0xd6,0xe3,0xff,0x97,0xd6,0xe3,
0xff,0x97,0xd6,0xe3,0xff,0x97,0xd6,0xe3,0xff,0x97,0xd6,0xe3,0xff,0x97,0xd6,0xe3,
0xff,0x97,0xd6,0xe3,0xff,0x97,0xd6,0xe3,0xff,0x97,0xd6,0xe3,0xff,0x97,0xd6,0xe3,
0xff,0x96,0xd6,0xe3,0xff,0x96,0xd6,0xe3,0xff,0x96,0xd6,0xe3,0xff,0x95,0xd5,0xe3,
0xff,0x95,0xd5,0xe3,0xff,0x95,0xd5,0xe3,0xff,0x95,0xd5,0xe3,0xff,0x94,0xd5,0xe3,
0xff,0x94,0xd5,0xe2,0xff,0x93,0xd5,0xe2,0xff,0x93,0xd5,0xe2,0xff,0x92,0xd5,0xe2,
0xff,0x92,0xd5,0xe2,0xff,0x91,0xd5,0xe2,0xff,0x91,0xd5,0xe2,0xff,0x90,0xd5,0xe2,
0xff,0x90,0xd5,0xe2,0xff,0x8f,0xd4,0xe2,0xff,0x8f,0xd4,0xe2,0xff,0x8e,0xd4,0xe2,
0xff,0x8e,0xd4,0xe2,0xff,0x8c,0xd4,0xe2,0xff,0x8c,0xd4,0xe2,0xff,0x8b,0xd3,0xe1,
0xff,0x8b,0xd4,0xe2,0xff,0x8a,0xd4,0xe2,0xff,0x8a,0xd4,0xe2,0xff,0x89,0xd4,0xe2,
0xff,0x89,0xd4,0xe2,0xff,0x89,0xd4,0xe2,0xff,0x88,0xd4,0xe3,0xff,0x88,0xd4,0xe3,
0xff,0x88,0xd5,0xe3,0xff,0x87,0xd5,0xe4,0xff,0x87,0xd5,0xe4,0xff,0x86,0xd5,0xe5,
0xff,0x86,0xd6,0xe5,0xff,0x86,0xd6,0xe6,0xff,0x86,0xd6,0xe6,0xff,0x85,0xd7,0xe7,
0xff,0x85,0xd8,0xe8,0xff,0x85,0xd9,0xe8,0xff,0x85,0xd9,0xe9,0xff,0x84,0xd9,0xe9,
0xff,0x84,0xda,0xea,0xff,0x83,0xda,0xea,0xff,0x83,0xda,0xea,0xff,0x82,0xda,0xea,
0xff,0x82,0xda,0xea,0xff,0x81,0xda,0xeb,0xff,0x81,0xda,0xeb,0xff,0x80,0xda,0xeb,
0xff,0x7f,0xda,0xeb,0xff,0x7e,0xda,0xeb,0xff,0x7e,0xda,0xeb,0xff,0x7d,0xd9,0xeb,
0xff,0x7d,0xd9,0xeb,0xff,0x7c,0xd9,0xeb,0xff,0x7b,0xd9,0xeb,0xff,0x7a,0xd9,0xeb,
0xff,0x7a,0xd9,0xeb,0xff,0x79,0xd9,0xeb,0xff,0x78,0xd9,0xeb,0xff,0x78,0xd9,0xeb,
0xff,0x77,0xd9,0xec,0xff,0x77,0xd9,0xec,0xff,0x77,0xda,0xec,0xff,0x71,0xd7,0xea,
0xff,0x9a,0xf7,0xfd,0xfc,0x49,0xa4,0xc9,0xff,0x6c,0x71,0xa0,0x48,0x0,0x0,0x0,
0x0,0xfb,0xfb,0xfd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xff,0xff,0xff,0x4,0x0,0x0,0x0,0x0,0xb9,0xee,0xf7,0x80,0xa5,0xe9,0xf4,
0xff,0xa7,0xe8,0xf3,0xfa,0xa5,0xe6,0xf2,0xff,0xa4,0xe5,0xf1,0xff,0xa2,0xe4,0xf0,
0xff,0xa1,0xe2,0xee,0xff,0xa0,0xe1,0xed,0xff,0x9f,0xe0,0xec,0xff,0x9e,0xdf,0xeb,
0xff,0x9d,0xde,0xea,0xff,0x9c,0xdc,0xe9,0xff,0x9c,0xdb,0xe9,0xff,0x9b,0xda,0xe8,
0xff,0x9a,0xda,0xe7,0xff,0x9a,0xda,0xe7,0xff,0x9a,0xda,0xe6,0xff,0x9a,0xd9,0xe6,
0xff,0x99,0xd9,0xe6,0xff,0x99,0xd9,0xe5,0xff,0x99,0xd9,0xe5,0xff,0x99,0xd9,0xe5,
0xff,0x99,0xd9,0xe5,0xff,0x99,0xd9,0xe5,0xff,0x99,0xd9,0xe5,0xff,0x99,0xd9,0xe5,
0xff,0x99,0xd9,0xe5,0xff,0x99,0xd9,0xe5,0xff,0x99,0xd9,0xe5,0xff,0x98,0xd9,0xe5,
0xff,0x98,0xd9,0xe5,0xff,0x98,0xd9,0xe5,0xff,0x97,0xd8,0xe5,0xff,0x97,0xd8,0xe5,
0xff,0x97,0xd8,0xe5,0xff,0x97,0xd8,0xe5,0xff,0x96,0xd8,0xe5,0xff,0x96,0xd8,0xe5,
0xff,0x95,0xd8,0xe4,0xff,0x95,0xd7,0xe4,0xff,0x94,0xd7,0xe4,0xff,0x94,0xd7,0xe4,
0xff,0x93,0xd7,0xe4,0xff,0x93,0xd7,0xe4,0xff,0x92,0xd7,0xe4,0xff,0x92,0xd7,0xe4,
0xff,0x92,0xd6,0xe4,0xff,0x91,0xd6,0xe4,0xff,0x90,0xd6,0xe4,0xff,0x8f,0xd6,0xe4,
0xff,0x8f,0xd6,0xe4,0xff,0x8f,0xd5,0xe4,0xff,0x8e,0xd5,0xe4,0xff,0x8d,0xd5,0xe4,
0xff,0x8c,0xd5,0xe4,0xff,0x8b,0xd6,0xe4,0xff,0x8b,0xd5,0xe4,0xff,0x8a,0xd5,0xe4,
0xff,0x8a,0xd5,0xe4,0xff,0x89,0xd6,0xe5,0xff,0x89,0xd6,0xe5,0xff,0x89,0xd6,0xe6,
0xff,0x88,0xd6,0xe6,0xff,0x88,0xd7,0xe6,0xff,0x88,0xd7,0xe6,0xff,0x88,0xd8,0xe7,
0xff,0x87,0xd8,0xe8,0xff,0x87,0xd9,0xe8,0xff,0x87,0xd9,0xe9,0xff,0x86,0xda,0xe9,
0xff,0x86,0xda,0xea,0xff,0x86,0xda,0xeb,0xff,0x86,0xdb,0xeb,0xff,0x85,0xdb,0xec,
0xff,0x85,0xdb,0xec,0xff,0x84,0xdb,0xec,0xff,0x84,0xdc,0xec,0xff,0x83,0xdc,0xec,
0xff,0x82,0xdc,0xec,0xff,0x82,0xdc,0xed,0xff,0x81,0xdc,0xed,0xff,0x81,0xdc,0xed,
0xff,0x80,0xdc,0xed,0xff,0x7f,0xdc,0xed,0xff,0x7e,0xdb,0xed,0xff,0x7e,0xdc,0xed,
0xff,0x7d,0xdc,0xed,0xff,0x7c,0xdc,0xed,0xff,0x7c,0xdb,0xed,0xff,0x7b,0xdb,0xed,
0xff,0x7a,0xdb,0xed,0xff,0x7a,0xdb,0xed,0xff,0x79,0xdb,0xed,0xff,0x78,0xdb,0xed,
0xff,0x78,0xdb,0xed,0xff,0x77,0xdb,0xed,0xff,0x78,0xdc,0xed,0xff,0x71,0xd8,0xec,
0xff,0x98,0xf7,0xfe,0xfc,0x4c,0xab,0xcc,0xff,0x53,0x5b,0x8d,0x52,0x0,0x0,0x0,
0x0,0xfb,0xfb,0xfd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xfe,0xff,0xff,0x4,0x0,0x0,0x0,0x0,0xc9,0xf2,0xf9,0x74,0xa4,0xea,0xf5,
0xff,0xa8,0xe9,0xf4,0xfa,0xa6,0xe8,0xf3,0xff,0xa5,0xe6,0xf2,0xff,0xa4,0xe5,0xf1,
0xff,0xa2,0xe4,0xf0,0xff,0xa1,0xe3,0xef,0xff,0xa1,0xe1,0xed,0xff,0xa0,0xe0,0xec,
0xff,0x9f,0xe0,0xec,0xff,0x9e,0xdf,0xeb,0xff,0x9d,0xde,0xea,0xff,0x9d,0xdd,0xea,
0xff,0x9d,0xdd,0xe9,0xff,0x9c,0xdc,0xe9,0xff,0x9c,0xdb,0xe9,0xff,0x9c,0xdb,0xe8,
0xff,0x9b,0xdb,0xe8,0xff,0x9b,0xdb,0xe8,0xff,0x9b,0xdb,0xe8,0xff,0x9b,0xdb,0xe8,
0xff,0x9b,0xdb,0xe8,0xff,0x9b,0xdb,0xe8,0xff,0x9b,0xdb,0xe8,0xff,0x9b,0xdb,0xe8,
0xff,0x9b,0xdb,0xe8,0xff,0x9b,0xdb,0xe8,0xff,0x9a,0xdb,0xe8,0xff,0x9a,0xda,0xe8,
0xff,0x9a,0xdb,0xe8,0xff,0x99,0xda,0xe8,0xff,0x99,0xda,0xe8,0xff,0x98,0xda,0xe8,
0xff,0x98,0xda,0xe8,0xff,0x98,0xda,0xe8,0xff,0x98,0xda,0xe7,0xff,0x97,0xda,0xe7,
0xff,0x97,0xda,0xe7,0xff,0x96,0xd9,0xe7,0xff,0x96,0xd9,0xe7,0xff,0x95,0xd9,0xe7,
0xff,0x95,0xd9,0xe7,0xff,0x94,0xd9,0xe7,0xff,0x94,0xd9,0xe7,0xff,0x93,0xd9,0xe7,
0xff,0x92,0xd9,0xe7,0xff,0x92,0xd9,0xe7,0xff,0x91,0xd9,0xe7,0xff,0x91,0xd9,0xe7,
0xff,0x90,0xd9,0xe7,0xff,0x90,0xd8,0xe6,0xff,0x8f,0xd8,0xe6,0xff,0x8f,0xd8,0xe6,
0xff,0x8e,0xd8,0xe6,0xff,0x8d,0xd8,0xe7,0xff,0x8c,0xd8,0xe7,0xff,0x8b,0xd8,0xe7,
0xff,0x8b,0xd8,0xe7,0xff,0x8b,0xd9,0xe7,0xff,0x8a,0xd9,0xe8,0xff,0x8a,0xd9,0xe8,
0xff,0x89,0xd9,0xe8,0xff,0x89,0xd9,0xe8,0xff,0x89,0xda,0xe9,0xff,0x89,0xda,0xe9,
0xff,0x88,0xda,0xea,0xff,0x88,0xdb,0xeb,0xff,0x87,0xdb,0xeb,0xff,0x87,0xdb,0xec,
0xff,0x87,0xdc,0xec,0xff,0x86,0xdd,0xed,0xff,0x86,0xdd,0xed,0xff,0x86,0xde,0xed,
0xff,0x85,0xde,0xed,0xff,0x85,0xde,0xed,0xff,0x84,0xde,0xee,0xff,0x84,0xde,0xee,
0xff,0x83,0xde,0xee,0xff,0x82,0xde,0xee,0xff,0x82,0xde,0xef,0xff,0x81,0xde,0xee,
0xff,0x80,0xde,0xef,0xff,0x80,0xde,0xee,0xff,0x7f,0xde,0xee,0xff,0x7e,0xde,0xee,
0xff,0x7e,0xde,0xee,0xff,0x7d,0xdd,0xee,0xff,0x7c,0xdd,0xee,0xff,0x7b,0xdd,0xee,
0xff,0x7b,0xdd,0xee,0xff,0x7a,0xdd,0xee,0xff,0x79,0xdd,0xef,0xff,0x79,0xdd,0xef,
0xff,0x78,0xdd,0xef,0xff,0x78,0xde,0xef,0xff,0x77,0xde,0xef,0xff,0x73,0xda,0xee,
0xff,0x92,0xf5,0xfe,0xfc,0x5a,0xb6,0xd1,0xff,0x55,0x5c,0x92,0x5e,0x0,0x0,0x0,
0x0,0xfb,0xfb,0xfd,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xfe,0xff,0xff,0x4,0x0,0x0,0x0,0x0,0xc8,0xf2,0xf9,0x60,0xa4,0xea,0xf6,
0xff,0xa9,0xea,0xf5,0xfc,0xa7,0xe9,0xf4,0xff,0xa6,0xe8,0xf3,0xff,0xa5,0xe6,0xf2,
0xff,0xa4,0xe5,0xf1,0xff,0xa3,0xe5,0xf0,0xff,0xa2,0xe3,0xef,0xff,0xa1,0xe2,0xee,
0xff,0xa1,0xe1,0xed,0xff,0xa0,0xe1,0xed,0xff,0x9f,0xe0,0xec,0xff,0x9f,0xe0,0xec,
0xff,0x9e,0xdf,0xeb,0xff,0x9e,0xdf,0xeb,0xff,0x9e,0xdf,0xeb,0xff,0x9d,0xde,0xea,
0xff,0x9d,0xde,0xea,0xff,0x9d,0xde,0xea,0xff,0x9d,0xde,0xea,0xff,0x9d,0xde,0xea,
0xff,0x9d,0xde,0xea,0xff,0x9d,0xde,0xea,0xff,0x9d,0xde,0xea,0xff,0x9d,0xde,0xea,
0xff,0x9d,0xde,0xea,0xff,0x9c,0xdd,0xea,0xff,0x9c,0xdd,0xea,0xff,0x9c,0xdd,0xea,
0xff,0x9b,0xdd,0xea,0xff,0x9b,0xdc,0xea,0xff,0x9a,0xdc,0xea,0xff,0x9a,0xdc,0xea,
0xff,0x99,0xdc,0xea,0xff,0x99,0xdc,0xea,0xff,0x99,0xdc,0xe9,0xff,0x98,0xdc,0xe9,
0xff,0x98,0xdb,0xe9,0xff,0x97,0xdb,0xe9,0xff,0x97,0xdb,0xe9,0xff,0x97,0xdb,0xe9,
0xff,0x96,0xdb,0xe9,0xff,0x95,0xdb,0xe9,0xff,0x95,0xda,0xe9,0xff,0x94,0xdb,0xe9,
0xff,0x94,0xdb,0xea,0xff,0x94,0xdb,0xea,0xff,0x93,0xdb,0xea,0xff,0x92,0xda,0xe9,
0xff,0x91,0xda,0xe9,0xff,0x91,0xda,0xe9,0xff,0x90,0xda,0xe9,0xff,0x90,0xda,0xe9,
0xff,0x8f,0xda,0xe9,0xff,0x8f,0xda,0xe9,0xff,0x8e,0xda,0xe9,0xff,0x8d,0xda,0xe9,
0xff,0x8c,0xda,0xea,0xff,0x8c,0xda,0xea,0xff,0x8b,0xda,0xea,0xff,0x8b,0xdb,0xea,
0xff,0x8a,0xdb,0xea,0xff,0x8a,0xdb,0xeb,0xff,0x89,0xdb,0xeb,0xff,0x89,0xdc,0xec,
0xff,0x89,0xdd,0xec,0xff,0x89,0xdd,0xec,0xff,0x88,0xde,0xed,0xff,0x88,0xde,0xed,
0xff,0x87,0xde,0xee,0xff,0x87,0xdf,0xee,0xff,0x86,0xdf,0xee,0xff,0x86,0xdf,0xee,
0xff,0x86,0xdf,0xef,0xff,0x85,0xe0,0xef,0xff,0x85,0xe0,0xef,0xff,0x84,0xe0,0xf0,
0xff,0x84,0xe0,0xf0,0xff,0x83,0xe0,0xf0,0xff,0x82,0xe0,0xf0,0xff,0x82,0xe0,0xf0,
0xff,0x81,0xe0,0xf0,0xff,0x80,0xe0,0xf0,0xff,0x7f,0xe0,0xf0,0xff,0x7e,0xe0,0xf0,
0xff,0x7e,0xdf,0xf0,0xff,0x7d,0xdf,0xf0,0xff,0x7d,0xdf,0xf0,0xff,0x7c,0xdf,0xf0,
0xff,0x7b,0xdf,0xf0,0xff,0x7a,0xdf,0xf0,0xff,0x7a,0xdf,0xf0,0xff,0x79,0xdf,0xf0,
0xff,0x79,0xdf,0xf0,0xff,0x78,0xdf,0xf0,0xff,0x78,0xdf,0xf1,0xff,0x73,0xdc,0xf0,
0xff,0x8e,0xf2,0xfc,0xfa,0x66,0xc1,0xe0,0xff,0x58,0x64,0x9f,0x72,0x0,0x0,0x0,
0x0,0xfb,0xfc,0xfd,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xfe,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xd3,0xf6,0xfb,0x4a,0xa6,0xeb,0xf6,
0xff,0xaa,0xea,0xf6,0xfc,0xa8,0xea,0xf5,0xff,0xa7,0xe9,0xf4,0xff,0xa6,0xe8,0xf3,
0xff,0xa5,0xe7,0xf3,0xff,0xa4,0xe6,0xf2,0xff,0xa4,0xe5,0xf1,0xff,0xa3,0xe4,0xf0,
0xff,0xa2,0xe4,0xef,0xff,0xa2,0xe3,0xef,0xff,0xa1,0xe2,0xee,0xff,0xa1,0xe1,0xed,
0xff,0xa0,0xe1,0xed,0xff,0xa0,0xe1,0xed,0xff,0xa0,0xe0,0xec,0xff,0xa0,0xe0,0xec,
0xff,0x9f,0xe0,0xec,0xff,0x9f,0xe0,0xec,0xff,0x9f,0xe0,0xec,0xff,0x9f,0xe0,0xec,
0xff,0x9f,0xe0,0xec,0xff,0x9f,0xe0,0xec,0xff,0x9f,0xe0,0xec,0xff,0x9f,0xe0,0xec,
0xff,0x9e,0xe0,0xec,0xff,0x9e,0xe0,0xec,0xff,0x9e,0xe0,0xec,0xff,0x9d,0xdf,0xec,
0xff,0x9d,0xdf,0xec,0xff,0x9c,0xdf,0xec,0xff,0x9c,0xdf,0xec,0xff,0x9c,0xdf,0xec,
0xff,0x9b,0xdf,0xec,0xff,0x9b,0xdf,0xeb,0xff,0x9a,0xdf,0xeb,0xff,0x9a,0xde,0xeb,
0xff,0x9a,0xde,0xeb,0xff,0x99,0xde,0xeb,0xff,0x98,0xde,0xeb,0xff,0x98,0xde,0xeb,
0xff,0x97,0xde,0xeb,0xff,0x97,0xde,0xeb,0xff,0x96,0xde,0xeb,0xff,0x96,0xde,0xeb,
0xff,0x95,0xde,0xeb,0xff,0x94,0xde,0xec,0xff,0x94,0xde,0xeb,0xff,0x93,0xdd,0xeb,
0xff,0x93,0xdd,0xeb,0xff,0x92,0xdd,0xeb,0xff,0x92,0xdd,0xeb,0xff,0x91,0xdd,0xeb,
0xff,0x90,0xdc,0xeb,0xff,0x90,0xdc,0xeb,0xff,0x8f,0xdd,0xeb,0xff,0x8f,0xdd,0xeb,
0xff,0x8e,0xdd,0xec,0xff,0x8d,0xdd,0xec,0xff,0x8c,0xdd,0xec,0xff,0x8b,0xdd,0xec,
0xff,0x8b,0xde,0xec,0xff,0x8b,0xde,0xed,0xff,0x8b,0xde,0xed,0xff,0x8a,0xde,0xed,
0xff,0x8a,0xdf,0xee,0xff,0x89,0xdf,0xee,0xff,0x89,0xdf,0xee,0xff,0x88,0xdf,0xef,
0xff,0x88,0xe0,0xf0,0xff,0x88,0xe0,0xf0,0xff,0x87,0xe1,0xf0,0xff,0x87,0xe1,0xf0,
0xff,0x86,0xe1,0xf1,0xff,0x86,0xe2,0xf1,0xff,0x85,0xe1,0xf1,0xff,0x84,0xe1,0xf1,
0xff,0x84,0xe1,0xf1,0xff,0x83,0xe2,0xf2,0xff,0x83,0xe2,0xf2,0xff,0x82,0xe1,0xf2,
0xff,0x81,0xe1,0xf1,0xff,0x81,0xe1,0xf2,0xff,0x80,0xe1,0xf1,0xff,0x7f,0xe1,0xf2,
0xff,0x7e,0xe0,0xf1,0xff,0x7d,0xe0,0xf1,0xff,0x7d,0xe1,0xf2,0xff,0x7c,0xe0,0xf2,
0xff,0x7b,0xe0,0xf2,0xff,0x7b,0xe0,0xf2,0xff,0x7a,0xe0,0xf1,0xff,0x79,0xe0,0xf1,
0xff,0x79,0xe0,0xf2,0xff,0x78,0xe0,0xf2,0xff,0x78,0xe0,0xf2,0xff,0x74,0xde,0xf1,
0xff,0x8a,0xef,0xfa,0xfa,0x71,0xd7,0xec,0xff,0x53,0x6e,0xa3,0x88,0x0,0x0,0x0,
0x0,0xfc,0xfd,0xfe,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xfe,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xd7,0xf7,0xfb,0x3e,0xa5,0xeb,0xf7,
0xff,0xab,0xec,0xf6,0xff,0xa9,0xea,0xf6,0xff,0xa8,0xea,0xf5,0xff,0xa7,0xe9,0xf4,
0xff,0xa6,0xe8,0xf4,0xff,0xa6,0xe8,0xf3,0xff,0xa5,0xe7,0xf2,0xff,0xa4,0xe6,0xf1,
0xff,0xa4,0xe5,0xf1,0xff,0xa3,0xe5,0xf0,0xff,0xa3,0xe4,0xf0,0xff,0xa2,0xe4,0xf0,
0xff,0xa2,0xe3,0xef,0xff,0xa2,0xe3,0xef,0xff,0xa2,0xe3,0xef,0xff,0xa1,0xe3,0xef,
0xff,0xa1,0xe2,0xee,0xff,0xa1,0xe2,0xee,0xff,0xa1,0xe2,0xee,0xff,0xa1,0xe2,0xee,
0xff,0xa1,0xe2,0xee,0xff,0xa1,0xe2,0xee,0xff,0xa1,0xe2,0xee,0xff,0xa0,0xe2,0xee,
0xff,0xa0,0xe2,0xee,0xff,0x9f,0xe2,0xee,0xff,0x9f,0xe1,0xee,0xff,0x9f,0xe1,0xee,
0xff,0x9e,0xe1,0xee,0xff,0x9e,0xe1,0xee,0xff,0x9d,0xe1,0xee,0xff,0x9d,0xe1,0xee,
0xff,0x9d,0xe1,0xed,0xff,0x9c,0xe1,0xed,0xff,0x9b,0xe0,0xed,0xff,0x9b,0xe0,0xed,
0xff,0x9a,0xe0,0xed,0xff,0x9a,0xe0,0xed,0xff,0x99,0xe0,0xed,0xff,0x99,0xe0,0xed,
0xff,0x99,0xe0,0xed,0xff,0x98,0xe0,0xed,0xff,0x97,0xe0,0xed,0xff,0x97,0xe0,0xed,
0xff,0x96,0xe0,0xed,0xff,0x95,0xdf,0xed,0xff,0x95,0xdf,0xec,0xff,0x94,0xdf,0xec,
0xff,0x94,0xdf,0xed,0xff,0x93,0xdf,0xed,0xff,0x93,0xdf,0xed,0xff,0x92,0xdf,0xed,
0xff,0x91,0xdf,0xed,0xff,0x91,0xdf,0xed,0xff,0x90,0xdf,0xed,0xff,0x90,0xdf,0xed,
0xff,0x8f,0xdf,0xed,0xff,0x8e,0xdf,0xed,0xff,0x8d,0xdf,0xed,0xff,0x8d,0xdf,0xee,
0xff,0x8c,0xdf,0xee,0xff,0x8c,0xdf,0xee,0xff,0x8b,0xe0,0xee,0xff,0x8b,0xe0,0xef,
0xff,0x8a,0xe0,0xef,0xff,0x8a,0xe1,0xf0,0xff,0x8a,0xe1,0xf0,0xff,0x89,0xe2,0xf1,
0xff,0x89,0xe2,0xf1,0xff,0x88,0xe2,0xf1,0xff,0x88,0xe2,0xf1,0xff,0x87,0xe2,0xf2,
0xff,0x87,0xe2,0xf2,0xff,0x86,0xe2,0xf3,0xff,0x85,0xe2,0xf3,0xff,0x85,0xe3,0xf3,
0xff,0x84,0xe3,0xf3,0xff,0x83,0xe3,0xf3,0xff,0x83,0xe2,0xf3,0xff,0x82,0xe3,0xf3,
0xff,0x81,0xe3,0xf3,0xff,0x81,0xe3,0xf3,0xff,0x80,0xe2,0xf3,0xff,0x7f,0xe2,0xf3,
0xff,0x7e,0xe2,0xf3,0xff,0x7e,0xe2,0xf3,0xff,0x7d,0xe2,0xf3,0xff,0x7c,0xe2,0xf3,
0xff,0x7c,0xe2,0xf3,0xff,0x7b,0xe2,0xf3,0xff,0x7a,0xe2,0xf3,0xff,0x79,0xe2,0xf3,
0xff,0x79,0xe2,0xf3,0xff,0x78,0xe2,0xf3,0xff,0x78,0xe2,0xf3,0xff,0x75,0xe0,0xf3,
0xff,0x83,0xea,0xf9,0xfa,0x80,0xe6,0xf3,0xff,0x28,0x43,0x83,0x92,0x0,0x0,0x0,
0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xfe,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xde,0xf8,0xfc,0x36,0xa6,0xec,0xf7,
0xff,0xac,0xed,0xf7,0xff,0xa9,0xec,0xf6,0xff,0xa9,0xea,0xf6,0xff,0xa8,0xea,0xf5,
0xff,0xa8,0xea,0xf5,0xff,0xa7,0xe9,0xf4,0xff,0xa6,0xe8,0xf4,0xff,0xa6,0xe8,0xf3,
0xff,0xa5,0xe7,0xf3,0xff,0xa5,0xe6,0xf2,0xff,0xa5,0xe6,0xf2,0xff,0xa4,0xe5,0xf1,
0xff,0xa4,0xe5,0xf1,0xff,0xa4,0xe5,0xf1,0xff,0xa3,0xe5,0xf1,0xff,0xa3,0xe5,0xf0,
0xff,0xa3,0xe5,0xf0,0xff,0xa3,0xe4,0xf0,0xff,0xa3,0xe4,0xf0,0xff,0xa3,0xe4,0xf0,
0xff,0xa3,0xe4,0xf0,0xff,0xa3,0xe4,0xf0,0xff,0xa2,0xe4,0xf0,0xff,0xa2,0xe4,0xf0,
0xff,0xa1,0xe4,0xf0,0xff,0xa1,0xe4,0xf0,0xff,0xa1,0xe4,0xf0,0xff,0xa0,0xe4,0xf0,
0xff,0xa0,0xe4,0xf0,0xff,0x9f,0xe4,0xf0,0xff,0x9f,0xe4,0xf0,0xff,0x9e,0xe4,0xef,
0xff,0x9e,0xe4,0xef,0xff,0x9d,0xe3,0xef,0xff,0x9d,0xe3,0xef,0xff,0x9c,0xe3,0xef,
0xff,0x9c,0xe3,0xef,0xff,0x9c,0xe3,0xef,0xff,0x9b,0xe3,0xef,0xff,0x9a,0xe2,0xef,
0xff,0x9a,0xe2,0xef,0xff,0x99,0xe2,0xef,0xff,0x98,0xe2,0xef,0xff,0x98,0xe2,0xf0,
0xff,0x97,0xe2,0xef,0xff,0x97,0xe1,0xef,0xff,0x96,0xe1,0xef,0xff,0x95,0xe1,0xef,
0xff,0x95,0xe1,0xef,0xff,0x94,0xe1,0xef,0xff,0x93,0xe1,0xef,0xff,0x93,0xe1,0xef,
0xff,0x92,0xe1,0xef,0xff,0x92,0xe1,0xef,0xff,0x91,0xe1,0xef,0xff,0x90,0xe1,0xef,
0xff,0x90,0xe1,0xef,0xff,0x8f,0xe1,0xef,0xff,0x8e,0xe1,0xef,0xff,0x8e,0xe1,0xef,
0xff,0x8d,0xe1,0xf0,0xff,0x8c,0xe1,0xf0,0xff,0x8c,0xe2,0xf0,0xff,0x8b,0xe2,0xf1,
0xff,0x8b,0xe2,0xf1,0xff,0x8a,0xe2,0xf1,0xff,0x8a,0xe2,0xf2,0xff,0x89,0xe3,0xf2,
0xff,0x89,0xe2,0xf2,0xff,0x88,0xe3,0xf3,0xff,0x88,0xe4,0xf3,0xff,0x87,0xe4,0xf3,
0xff,0x87,0xe4,0xf4,0xff,0x86,0xe4,0xf4,0xff,0x86,0xe5,0xf4,0xff,0x85,0xe5,0xf4,
0xff,0x84,0xe5,0xf4,0xff,0x83,0xe4,0xf4,0xff,0x83,0xe5,0xf4,0xff,0x82,0xe5,0xf4,
0xff,0x81,0xe4,0xf4,0xff,0x80,0xe4,0xf4,0xff,0x80,0xe4,0xf4,0xff,0x7f,0xe4,0xf4,
0xff,0x7e,0xe4,0xf4,0xff,0x7e,0xe3,0xf4,0xff,0x7d,0xe3,0xf4,0xff,0x7c,0xe3,0xf4,
0xff,0x7c,0xe3,0xf4,0xff,0x7b,0xe3,0xf4,0xff,0x7a,0xe2,0xf4,0xff,0x7a,0xe2,0xf4,
0xff,0x79,0xe2,0xf4,0xff,0x78,0xe2,0xf4,0xff,0x78,0xe2,0xf4,0xff,0x75,0xe1,0xf4,
0xff,0x81,0xe9,0xf9,0xfa,0x80,0xe9,0xf4,0xff,0x28,0x45,0x86,0x9e,0x0,0x0,0x0,
0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xfe,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xde,0xf8,0xfc,0x2c,0xa7,0xed,0xf8,
0xfc,0xad,0xed,0xf7,0xff,0xaa,0xec,0xf7,0xff,0xaa,0xec,0xf6,0xff,0xa9,0xeb,0xf6,
0xff,0xa9,0xea,0xf6,0xff,0xa8,0xea,0xf5,0xff,0xa8,0xea,0xf5,0xff,0xa7,0xe9,0xf4,
0xff,0xa7,0xe9,0xf4,0xff,0xa6,0xe8,0xf4,0xff,0xa6,0xe8,0xf3,0xff,0xa6,0xe7,0xf3,
0xff,0xa5,0xe7,0xf3,0xff,0xa5,0xe7,0xf3,0xff,0xa5,0xe7,0xf2,0xff,0xa5,0xe6,0xf2,
0xff,0xa5,0xe6,0xf2,0xff,0xa5,0xe6,0xf2,0xff,0xa5,0xe6,0xf2,0xff,0xa5,0xe6,0xf2,
0xff,0xa4,0xe6,0xf2,0xff,0xa4,0xe6,0xf2,0xff,0xa4,0xe6,0xf2,0xff,0xa3,0xe6,0xf2,
0xff,0xa3,0xe5,0xf2,0xff,0xa2,0xe5,0xf2,0xff,0xa2,0xe5,0xf2,0xff,0xa2,0xe5,0xf2,
0xff,0xa1,0xe5,0xf2,0xff,0xa1,0xe5,0xf1,0xff,0xa0,0xe5,0xf1,0xff,0xa0,0xe5,0xf1,
0xff,0x9f,0xe5,0xf1,0xff,0x9f,0xe5,0xf1,0xff,0x9e,0xe5,0xf1,0xff,0x9e,0xe5,0xf1,
0xff,0x9d,0xe5,0xf1,0xff,0x9c,0xe5,0xf1,0xff,0x9c,0xe4,0xf1,0xff,0x9b,0xe4,0xf1,
0xff,0x9b,0xe4,0xf1,0xff,0x9a,0xe4,0xf1,0xff,0x99,0xe4,0xf1,0xff,0x99,0xe4,0xf1,
0xff,0x98,0xe3,0xf1,0xff,0x98,0xe4,0xf1,0xff,0x97,0xe4,0xf1,0xff,0x96,0xe4,0xf1,
0xff,0x95,0xe3,0xf1,0xff,0x95,0xe3,0xf1,0xff,0x94,0xe3,0xf1,0xff,0x94,0xe3,0xf1,
0xff,0x93,0xe3,0xf1,0xff,0x92,0xe2,0xf1,0xff,0x92,0xe2,0xf1,0xff,0x91,0xe3,0xf1,
0xff,0x90,0xe3,0xf1,0xff,0x90,0xe2,0xf1,0xff,0x8f,0xe2,0xf1,0xff,0x8e,0xe2,0xf1,
0xff,0x8e,0xe3,0xf1,0xff,0x8d,0xe3,0xf2,0xff,0x8c,0xe3,0xf2,0xff,0x8c,0xe3,0xf2,
0xff,0x8b,0xe3,0xf3,0xff,0x8b,0xe4,0xf3,0xff,0x8a,0xe4,0xf3,0xff,0x8a,0xe4,0xf3,
0xff,0x89,0xe5,0xf4,0xff,0x89,0xe5,0xf4,0xff,0x88,0xe5,0xf4,0xff,0x88,0xe5,0xf4,
0xff,0x87,0xe5,0xf5,0xff,0x87,0xe5,0xf5,0xff,0x86,0xe5,0xf5,0xff,0x85,0xe5,0xf5,
0xff,0x84,0xe5,0xf5,0xff,0x84,0xe5,0xf5,0xff,0x83,0xe5,0xf5,0xff,0x82,0xe5,0xf5,
0xff,0x82,0xe5,0xf5,0xff,0x81,0xe5,0xf5,0xff,0x80,0xe5,0xf5,0xff,0x7f,0xe5,0xf5,
0xff,0x7e,0xe4,0xf5,0xff,0x7e,0xe4,0xf5,0xff,0x7d,0xe4,0xf5,0xff,0x7c,0xe4,0xf5,
0xff,0x7b,0xe4,0xf5,0xff,0x7b,0xe3,0xf5,0xff,0x7a,0xe3,0xf5,0xff,0x79,0xe3,0xf5,
0xff,0x79,0xe3,0xf5,0xff,0x78,0xe3,0xf5,0xff,0x77,0xe3,0xf5,0xff,0x75,0xe2,0xf4,
0xff,0x7f,0xe9,0xf7,0xfc,0x87,0xec,0xfb,0xff,0x2e,0x4c,0x95,0xac,0x0,0x0,0x0,
0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xfe,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xe7,0xfa,0xfd,0x1c,0xaa,0xee,0xf8,
0xf2,0xad,0xef,0xf8,0xff,0xab,0xed,0xf7,0xff,0xaa,0xec,0xf7,0xff,0xaa,0xec,0xf7,
0xff,0xaa,0xec,0xf6,0xff,0xa9,0xeb,0xf6,0xff,0xa9,0xea,0xf6,0xff,0xa9,0xea,0xf6,
0xff,0xa8,0xea,0xf5,0xff,0xa8,0xea,0xf5,0xff,0xa8,0xea,0xf5,0xff,0xa7,0xe9,0xf4,
0xff,0xa7,0xe9,0xf4,0xff,0xa7,0xe9,0xf4,0xff,0xa6,0xe9,0xf4,0xff,0xa6,0xe9,0xf4,
0xff,0xa6,0xe8,0xf4,0xff,0xa6,0xe8,0xf4,0xff,0xa6,0xe8,0xf4,0xff,0xa6,0xe8,0xf4,
0xff,0xa5,0xe8,0xf4,0xff,0xa5,0xe8,0xf4,0xff,0xa5,0xe8,0xf4,0xff,0xa4,0xe7,0xf4,
0xff,0xa4,0xe7,0xf4,0xff,0xa3,0xe7,0xf4,0xff,0xa3,0xe7,0xf4,0xff,0xa3,0xe7,0xf4,
0xff,0xa3,0xe7,0xf3,0xff,0xa2,0xe7,0xf3,0xff,0xa1,0xe7,0xf3,0xff,0xa1,0xe7,0xf3,
0xff,0xa0,0xe7,0xf3,0xff,0xa0,0xe7,0xf3,0xff,0x9f,0xe7,0xf3,0xff,0x9e,0xe7,0xf3,
0xff,0x9e,0xe6,0xf3,0xff,0x9d,0xe6,0xf3,0xff,0x9d,0xe6,0xf3,0xff,0x9c,0xe6,0xf3,
0xff,0x9c,0xe6,0xf3,0xff,0x9b,0xe6,0xf3,0xff,0x9a,0xe5,0xf3,0xff,0x9a,0xe5,0xf2,
0xff,0x99,0xe5,0xf2,0xff,0x98,0xe5,0xf2,0xff,0x98,0xe5,0xf2,0xff,0x97,0xe5,0xf2,
0xff,0x96,0xe4,0xf2,0xff,0x96,0xe4,0xf2,0xff,0x95,0xe4,0xf2,0xff,0x94,0xe5,0xf3,
0xff,0x94,0xe4,0xf3,0xff,0x93,0xe4,0xf3,0xff,0x93,0xe4,0xf2,0xff,0x92,0xe4,0xf2,
0xff,0x91,0xe4,0xf2,0xff,0x90,0xe4,0xf2,0xff,0x90,0xe4,0xf3,0xff,0x8f,0xe4,0xf3,
0xff,0x8f,0xe5,0xf3,0xff,0x8e,0xe5,0xf3,0xff,0x8c,0xe4,0xf4,0xff,0x8c,0xe5,0xf4,
0xff,0x8b,0xe5,0xf4,0xff,0x8b,0xe5,0xf4,0xff,0x8a,0xe5,0xf4,0xff,0x8a,0xe5,0xf4,
0xff,0x89,0xe5,0xf5,0xff,0x88,0xe5,0xf5,0xff,0x88,0xe5,0xf5,0xff,0x88,0xe5,0xf5,
0xff,0x87,0xe6,0xf5,0xff,0x86,0xe6,0xf5,0xff,0x85,0xe5,0xf5,0xff,0x85,0xe6,0xf5,
0xff,0x84,0xe6,0xf5,0xff,0x84,0xe6,0xf5,0xff,0x83,0xe6,0xf5,0xff,0x82,0xe5,0xf5,
0xff,0x82,0xe5,0xf5,0xff,0x81,0xe5,0xf5,0xff,0x80,0xe5,0xf5,0xff,0x7f,0xe5,0xf5,
0xff,0x7e,0xe5,0xf5,0xff,0x7e,0xe5,0xf5,0xff,0x7d,0xe5,0xf5,0xff,0x7c,0xe5,0xf5,
0xff,0x7b,0xe5,0xf5,0xff,0x7b,0xe5,0xf5,0xff,0x7a,0xe5,0xf5,0xff,0x79,0xe5,0xf5,
0xff,0x79,0xe5,0xf5,0xff,0x78,0xe4,0xf5,0xff,0x77,0xe4,0xf5,0xff,0x76,0xe3,0xf5,
0xff,0x7b,0xe7,0xf6,0xfc,0x8d,0xf7,0xff,0xff,0x38,0x6b,0xa0,0xbe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xfc,0xfe,0x10,0xae,0xef,0xf9,
0xe8,0xad,0xee,0xf8,0xff,0xac,0xee,0xf8,0xff,0xac,0xee,0xf8,0xff,0xab,0xed,0xf7,
0xff,0xaa,0xec,0xf7,0xff,0xaa,0xec,0xf7,0xff,0xaa,0xec,0xf6,0xff,0xaa,0xec,0xf6,
0xff,0xa9,0xeb,0xf6,0xff,0xa9,0xeb,0xf6,0xff,0xa9,0xea,0xf6,0xff,0xa9,0xea,0xf6,
0xff,0xa8,0xea,0xf5,0xff,0xa8,0xea,0xf5,0xff,0xa8,0xea,0xf5,0xff,0xa8,0xea,0xf5,
0xff,0xa8,0xea,0xf5,0xff,0xa8,0xea,0xf5,0xff,0xa7,0xea,0xf5,0xff,0xa7,0xea,0xf5,
0xff,0xa7,0xea,0xf5,0xff,0xa6,0xea,0xf5,0xff,0xa6,0xe9,0xf5,0xff,0xa6,0xe9,0xf5,
0xff,0xa5,0xe9,0xf5,0xff,0xa5,0xe9,0xf5,0xff,0xa4,0xe9,0xf5,0xff,0xa4,0xe9,0xf4,
0xff,0xa3,0xe9,0xf4,0xff,0xa3,0xe9,0xf4,0xff,0xa2,0xe8,0xf4,0xff,0xa1,0xe8,0xf4,
0xff,0xa1,0xe8,0xf4,0xff,0xa0,0xe8,0xf4,0xff,0xa0,0xe8,0xf4,0xff,0x9f,0xe8,0xf4,
0xff,0x9f,0xe8,0xf4,0xff,0x9e,0xe8,0xf4,0xff,0x9e,0xe8,0xf4,0xff,0x9d,0xe8,0xf4,
0xff,0x9c,0xe8,0xf4,0xff,0x9c,0xe7,0xf4,0xff,0x9b,0xe7,0xf4,0xff,0x9a,0xe7,0xf4,
0xff,0x9a,0xe7,0xf4,0xff,0x99,0xe7,0xf4,0xff,0x98,0xe7,0xf4,0xff,0x97,0xe6,0xf4,
0xff,0x97,0xe6,0xf4,0xff,0x96,0xe6,0xf4,0xff,0x96,0xe7,0xf4,0xff,0x95,0xe6,0xf4,
0xff,0x94,0xe6,0xf4,0xff,0x93,0xe6,0xf4,0xff,0x93,0xe6,0xf4,0xff,0x92,0xe6,0xf4,
0xff,0x91,0xe5,0xf4,0xff,0x91,0xe5,0xf4,0xff,0x90,0xe6,0xf4,0xff,0x8f,0xe6,0xf4,
0xff,0x8f,0xe5,0xf4,0xff,0x8e,0xe6,0xf5,0xff,0x8d,0xe6,0xf5,0xff,0x8c,0xe6,0xf5,
0xff,0x8b,0xe6,0xf5,0xff,0x8b,0xe5,0xf5,0xff,0x8a,0xe6,0xf5,0xff,0x8a,0xe6,0xf5,
0xff,0x89,0xe6,0xf5,0xff,0x88,0xe6,0xf5,0xff,0x88,0xe6,0xf5,0xff,0x87,0xe7,0xf6,
0xff,0x87,0xe7,0xf6,0xff,0x86,0xe7,0xf6,0xff,0x85,0xe7,0xf6,0xff,0x84,0xe7,0xf6,
0xff,0x84,0xe7,0xf6,0xff,0x83,0xe7,0xf6,0xff,0x82,0xe7,0xf6,0xff,0x81,0xe7,0xf6,
0xff,0x81,0xe7,0xf6,0xff,0x80,0xe7,0xf6,0xff,0x7f,0xe6,0xf6,0xff,0x7e,0xe6,0xf6,
0xff,0x7e,0xe6,0xf6,0xff,0x7d,0xe6,0xf6,0xff,0x7c,0xe6,0xf6,0xff,0x7b,0xe5,0xf6,
0xff,0x7b,0xe5,0xf6,0xff,0x7a,0xe5,0xf6,0xff,0x7a,0xe5,0xf6,0xff,0x79,0xe5,0xf6,
0xff,0x79,0xe5,0xf6,0xff,0x78,0xe5,0xf6,0xff,0x77,0xe5,0xf6,0xff,0x76,0xe5,0xf6,
0xff,0x76,0xe3,0xf5,0xfc,0x96,0xff,0xff,0xff,0x2b,0x61,0x92,0xce,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xfc,0xfe,0x8,0xae,0xef,0xf9,
0xdc,0xae,0xef,0xf9,0xff,0xad,0xef,0xf9,0xfc,0xac,0xee,0xf8,0xff,0xac,0xee,0xf8,
0xff,0xac,0xee,0xf8,0xff,0xab,0xed,0xf7,0xff,0xab,0xed,0xf7,0xff,0xaa,0xec,0xf7,
0xff,0xaa,0xec,0xf7,0xff,0xaa,0xec,0xf7,0xff,0xaa,0xec,0xf6,0xff,0xaa,0xeb,0xf6,
0xff,0xaa,0xeb,0xf6,0xff,0xa9,0xeb,0xf6,0xff,0xa9,0xeb,0xf6,0xff,0xa9,0xeb,0xf6,
0xff,0xa9,0xeb,0xf6,0xff,0xa8,0xeb,0xf6,0xff,0xa8,0xeb,0xf6,0xff,0xa8,0xeb,0xf6,
0xff,0xa7,0xeb,0xf6,0xff,0xa7,0xea,0xf6,0xff,0xa6,0xea,0xf6,0xff,0xa6,0xea,0xf6,
0xff,0xa6,0xea,0xf6,0xff,0xa5,0xea,0xf6,0xff,0xa5,0xea,0xf6,0xff,0xa4,0xea,0xf6,
0xff,0xa4,0xea,0xf6,0xff,0xa4,0xea,0xf6,0xff,0xa3,0xea,0xf6,0xff,0xa2,0xea,0xf6,
0xff,0xa2,0xea,0xf6,0xff,0xa1,0xea,0xf6,0xff,0xa1,0xe9,0xf6,0xff,0xa0,0xe9,0xf6,
0xff,0x9f,0xe9,0xf6,0xff,0x9f,0xe9,0xf6,0xff,0x9e,0xe9,0xf6,0xff,0x9d,0xe9,0xf6,
0xff,0x9d,0xe8,0xf5,0xff,0x9c,0xe8,0xf5,0xff,0x9b,0xe8,0xf5,0xff,0x9b,0xe8,0xf5,
0xff,0x9a,0xe8,0xf5,0xff,0x99,0xe8,0xf5,0xff,0x99,0xe8,0xf5,0xff,0x98,0xe8,0xf5,
0xff,0x97,0xe8,0xf5,0xff,0x97,0xe8,0xf5,0xff,0x96,0xe7,0xf5,0xff,0x95,0xe7,0xf5,
0xff,0x95,0xe7,0xf5,0xff,0x94,0xe7,0xf5,0xff,0x93,0xe7,0xf5,0xff,0x92,0xe7,0xf5,
0xff,0x92,0xe7,0xf5,0xff,0x91,0xe7,0xf5,0xff,0x90,0xe7,0xf5,0xff,0x8f,0xe6,0xf5,
0xff,0x8f,0xe6,0xf5,0xff,0x8e,0xe7,0xf6,0xff,0x8d,0xe7,0xf5,0xff,0x8c,0xe7,0xf5,
0xff,0x8b,0xe7,0xf5,0xff,0x8b,0xe7,0xf5,0xff,0x8a,0xe7,0xf5,0xff,0x8a,0xe8,0xf6,
0xff,0x89,0xe7,0xf6,0xff,0x88,0xe8,0xf6,0xff,0x88,0xe8,0xf6,0xff,0x87,0xe8,0xf6,
0xff,0x86,0xe8,0xf6,0xff,0x85,0xe8,0xf6,0xff,0x85,0xe8,0xf6,0xff,0x84,0xe8,0xf6,
0xff,0x83,0xe8,0xf6,0xff,0x83,0xe8,0xf6,0xff,0x82,0xe8,0xf7,0xff,0x81,0xe8,0xf7,
0xff,0x81,0xe8,0xf7,0xff,0x80,0xe7,0xf7,0xff,0x7f,0xe7,0xf7,0xff,0x7e,0xe7,0xf6,
0xff,0x7e,0xe7,0xf6,0xff,0x7d,0xe7,0xf6,0xff,0x7c,0xe6,0xf6,0xff,0x7b,0xe6,0xf6,
0xff,0x7a,0xe6,0xf6,0xff,0x7a,0xe6,0xf6,0xff,0x79,0xe6,0xf6,0xff,0x79,0xe5,0xf6,
0xff,0x78,0xe5,0xf6,0xff,0x77,0xe5,0xf6,0xff,0x76,0xe5,0xf6,0xff,0x76,0xe5,0xf6,
0xff,0x74,0xe2,0xf4,0xfc,0x98,0xff,0xff,0xff,0x1e,0x55,0x8c,0xd8,0xd1,0xc8,0xd5,
0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xfc,0xfe,0x2,0xae,0xf0,0xf9,
0xd4,0xae,0xf0,0xfa,0xff,0xad,0xef,0xf9,0xfc,0xad,0xef,0xf9,0xff,0xad,0xef,0xf9,
0xff,0xac,0xee,0xf8,0xff,0xac,0xee,0xf8,0xff,0xac,0xee,0xf8,0xff,0xac,0xee,0xf8,
0xff,0xac,0xee,0xf8,0xff,0xab,0xed,0xf7,0xff,0xab,0xed,0xf7,0xff,0xab,0xed,0xf7,
0xff,0xab,0xed,0xf7,0xff,0xaa,0xec,0xf7,0xff,0xaa,0xec,0xf7,0xff,0xaa,0xec,0xf7,
0xff,0xa9,0xec,0xf7,0xff,0xa9,0xec,0xf7,0xff,0xa9,0xec,0xf7,0xff,0xa8,0xec,0xf7,
0xff,0xa8,0xec,0xf7,0xff,0xa8,0xec,0xf7,0xff,0xa8,0xec,0xf7,0xff,0xa7,0xec,0xf7,
0xff,0xa7,0xec,0xf7,0xff,0xa6,0xec,0xf6,0xff,0xa6,0xec,0xf6,0xff,0xa5,0xeb,0xf6,
0xff,0xa5,0xeb,0xf6,0xff,0xa4,0xeb,0xf6,0xff,0xa4,0xeb,0xf6,0xff,0xa3,0xeb,0xf6,
0xff,0xa2,0xeb,0xf6,0xff,0xa2,0xea,0xf6,0xff,0xa1,0xea,0xf6,0xff,0xa0,0xea,0xf6,
0xff,0xa0,0xea,0xf6,0xff,0x9f,0xea,0xf6,0xff,0x9e,0xea,0xf6,0xff,0x9e,0xea,0xf6,
0xff,0x9d,0xe9,0xf6,0xff,0x9c,0xea,0xf6,0xff,0x9c,0xea,0xf6,0xff,0x9b,0xea,0xf6,
0xff,0x9a,0xe9,0xf6,0xff,0x99,0xe9,0xf6,0xff,0x99,0xe9,0xf6,0xff,0x98,0xe9,0xf6,
0xff,0x98,0xe9,0xf6,0xff,0x97,0xe8,0xf6,0xff,0x96,0xe8,0xf6,0xff,0x96,0xe8,0xf6,
0xff,0x95,0xe8,0xf6,0xff,0x94,0xe8,0xf6,0xff,0x93,0xe8,0xf6,0xff,0x93,0xe8,0xf6,
0xff,0x92,0xe8,0xf6,0xff,0x91,0xe8,0xf6,0xff,0x90,0xe8,0xf6,0xff,0x90,0xe7,0xf6,
0xff,0x8f,0xe8,0xf6,0xff,0x8e,0xe8,0xf6,0xff,0x8d,0xe8,0xf6,0xff,0x8c,0xe8,0xf6,
0xff,0x8b,0xe8,0xf6,0xff,0x8b,0xe8,0xf6,0xff,0x8a,0xe8,0xf6,0xff,0x89,0xe8,0xf6,
0xff,0x89,0xe8,0xf6,0xff,0x88,0xe8,0xf7,0xff,0x87,0xe8,0xf7,0xff,0x87,0xe8,0xf7,
0xff,0x86,0xe8,0xf7,0xff,0x85,0xe8,0xf7,0xff,0x85,0xe8,0xf7,0xff,0x84,0xe8,0xf7,
0xff,0x83,0xe8,0xf7,0xff,0x82,0xe8,0xf7,0xff,0x82,0xe8,0xf7,0xff,0x81,0xe8,0xf7,
0xff,0x80,0xe7,0xf7,0xff,0x7f,0xe7,0xf7,0xff,0x7e,0xe7,0xf7,0xff,0x7e,0xe7,0xf7,
0xff,0x7d,0xe7,0xf7,0xff,0x7c,0xe6,0xf7,0xff,0x7b,0xe6,0xf7,0xff,0x7b,0xe6,0xf7,
0xff,0x7a,0xe6,0xf7,0xff,0x79,0xe6,0xf7,0xff,0x78,0xe5,0xf7,0xff,0x78,0xe5,0xf7,
0xff,0x77,0xe5,0xf7,0xff,0x76,0xe5,0xf7,0xff,0x76,0xe5,0xf6,0xff,0x75,0xe5,0xf6,
0xff,0x73,0xe2,0xf4,0xfc,0x9a,0xff,0xff,0xff,0x27,0x5f,0xa6,0xe0,0xd0,0xc8,0xd7,
0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0xf0,0xfa,
0xca,0xaf,0xf0,0xfa,0xff,0xad,0xef,0xf9,0xfc,0xad,0xef,0xf9,0xff,0xad,0xef,0xf9,
0xff,0xad,0xef,0xf9,0xff,0xad,0xef,0xf9,0xff,0xad,0xef,0xf9,0xff,0xac,0xee,0xf8,
0xff,0xac,0xee,0xf8,0xff,0xac,0xee,0xf8,0xff,0xac,0xee,0xf8,0xff,0xac,0xee,0xf8,
0xff,0xac,0xee,0xf8,0xff,0xac,0xee,0xf8,0xff,0xac,0xee,0xf8,0xff,0xab,0xee,0xf8,
0xff,0xab,0xee,0xf8,0xff,0xaa,0xee,0xf8,0xff,0xaa,0xed,0xf8,0xff,0xaa,0xed,0xf8,
0xff,0xa9,0xed,0xf8,0xff,0xa9,0xed,0xf8,0xff,0xa8,0xed,0xf8,0xff,0xa8,0xed,0xf8,
0xff,0xa7,0xed,0xf7,0xff,0xa7,0xed,0xf7,0xff,0xa6,0xec,0xf7,0xff,0xa6,0xec,0xf7,
0xff,0xa5,0xec,0xf7,0xff,0xa4,0xec,0xf7,0xff,0xa4,0xec,0xf7,0xff,0xa3,0xec,0xf7,
0xff,0xa3,0xec,0xf7,0xff,0xa2,0xec,0xf7,0xff,0xa1,0xec,0xf7,0xff,0xa1,0xec,0xf7,
0xff,0xa0,0xec,0xf7,0xff,0x9f,0xeb,0xf7,0xff,0x9f,0xeb,0xf7,0xff,0x9e,0xeb,0xf7,
0xff,0x9d,0xeb,0xf7,0xff,0x9d,0xeb,0xf7,0xff,0x9c,0xea,0xf7,0xff,0x9b,0xea,0xf7,
0xff,0x9a,0xea,0xf7,0xff,0x9a,0xea,0xf7,0xff,0x99,0xea,0xf7,0xff,0x99,0xea,0xf7,
0xff,0x98,0xea,0xf7,0xff,0x97,0xea,0xf6,0xff,0x96,0xea,0xf6,0xff,0x95,0xea,0xf6,
0xff,0x95,0xe9,0xf6,0xff,0x94,0xe9,0xf6,0xff,0x93,0xe9,0xf6,0xff,0x93,0xe9,0xf6,
0xff,0x92,0xe9,0xf6,0xff,0x91,0xe8,0xf6,0xff,0x90,0xe8,0xf6,0xff,0x90,0xe8,0xf6,
0xff,0x8f,0xe9,0xf6,0xff,0x8e,0xe8,0xf6,0xff,0x8d,0xe8,0xf6,0xff,0x8c,0xe8,0xf6,
0xff,0x8b,0xe9,0xf7,0xff,0x8a,0xe8,0xf7,0xff,0x8a,0xe8,0xf7,0xff,0x89,0xe8,0xf7,
0xff,0x88,0xe8,0xf7,0xff,0x88,0xe8,0xf7,0xff,0x87,0xe8,0xf7,0xff,0x86,0xe8,0xf7,
0xff,0x86,0xe8,0xf7,0xff,0x85,0xe8,0xf7,0xff,0x84,0xe8,0xf7,0xff,0x83,0xe8,0xf7,
0xff,0x82,0xe8,0xf7,0xff,0x81,0xe8,0xf7,0xff,0x81,0xe8,0xf7,0xff,0x80,0xe7,0xf7,
0xff,0x7f,0xe7,0xf7,0xff,0x7f,0xe7,0xf7,0xff,0x7e,0xe7,0xf7,0xff,0x7d,0xe7,0xf7,
0xff,0x7c,0xe6,0xf7,0xff,0x7c,0xe6,0xf7,0xff,0x7b,0xe6,0xf7,0xff,0x7a,0xe6,0xf7,
0xff,0x7a,0xe6,0xf7,0xff,0x79,0xe5,0xf7,0xff,0x78,0xe5,0xf7,0xff,0x77,0xe5,0xf7,
0xff,0x77,0xe5,0xf7,0xff,0x76,0xe5,0xf7,0xff,0x76,0xe5,0xf7,0xff,0x75,0xe5,0xf7,
0xff,0x72,0xe2,0xf5,0xff,0x9a,0xff,0xff,0xff,0x2f,0x7a,0xb0,0xea,0xcf,0xc8,0xd7,
0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xb9,0xf2,0xfb,
0xbe,0xad,0xf0,0xfa,0xff,0xae,0xf0,0xfa,0xfc,0xae,0xf0,0xfa,0xff,0xad,0xef,0xf9,
0xff,0xad,0xef,0xf9,0xff,0xad,0xef,0xf9,0xff,0xad,0xef,0xf9,0xff,0xad,0xef,0xf9,
0xff,0xad,0xef,0xf9,0xff,0xad,0xef,0xf9,0xff,0xad,0xef,0xf9,0xff,0xad,0xef,0xf9,
0xff,0xac,0xee,0xf8,0xff,0xac,0xee,0xf8,0xff,0xac,0xee,0xf8,0xff,0xab,0xee,0xf8,
0xff,0xab,0xee,0xf8,0xff,0xaa,0xee,0xf8,0xff,0xaa,0xee,0xf8,0xff,0xaa,0xee,0xf8,
0xff,0xa9,0xee,0xf8,0xff,0xa9,0xee,0xf8,0xff,0xa8,0xee,0xf8,0xff,0xa8,0xee,0xf8,
0xff,0xa7,0xee,0xf8,0xff,0xa7,0xed,0xf8,0xff,0xa6,0xed,0xf8,0xff,0xa5,0xed,0xf8,
0xff,0xa5,0xed,0xf8,0xff,0xa4,0xed,0xf8,0xff,0xa4,0xed,0xf8,0xff,0xa3,0xec,0xf8,
0xff,0xa2,0xec,0xf8,0xff,0xa2,0xec,0xf8,0xff,0xa1,0xec,0xf8,0xff,0xa1,0xec,0xf8,
0xff,0xa0,0xec,0xf8,0xff,0x9f,0xec,0xf7,0xff,0x9f,0xec,0xf7,0xff,0x9e,0xec,0xf7,
0xff,0x9d,0xec,0xf7,0xff,0x9c,0xec,0xf7,0xff,0x9c,0xeb,0xf7,0xff,0x9b,0xeb,0xf7,
0xff,0x9a,0xeb,0xf7,0xff,0x9a,0xeb,0xf7,0xff,0x99,0xeb,0xf7,0xff,0x99,0xea,0xf7,
0xff,0x98,0xea,0xf7,0xff,0x97,0xea,0xf7,0xff,0x96,0xea,0xf7,0xff,0x95,0xea,0xf7,
0xff,0x95,0xea,0xf7,0xff,0x94,0xea,0xf7,0xff,0x93,0xea,0xf7,0xff,0x92,0xea,0xf7,
0xff,0x92,0xe9,0xf7,0xff,0x91,0xe9,0xf7,0xff,0x90,0xea,0xf7,0xff,0x8f,0xea,0xf7,
0xff,0x8e,0xe9,0xf7,0xff,0x8e,0xe9,0xf7,0xff,0x8c,0xe9,0xf7,0xff,0x8b,0xe9,0xf7,
0xff,0x8b,0xe9,0xf7,0xff,0x8a,0xe8,0xf7,0xff,0x8a,0xe8,0xf7,0xff,0x89,0xe8,0xf7,
0xff,0x88,0xe8,0xf7,0xff,0x87,0xe8,0xf7,0xff,0x86,0xe8,0xf7,0xff,0x85,0xe8,0xf7,
0xff,0x85,0xe8,0xf7,0xff,0x84,0xe8,0xf7,0xff,0x83,0xe8,0xf7,0xff,0x83,0xe8,0xf7,
0xff,0x82,0xe8,0xf8,0xff,0x81,0xe8,0xf8,0xff,0x81,0xe8,0xf8,0xff,0x80,0xe8,0xf8,
0xff,0x7f,0xe8,0xf8,0xff,0x7f,0xe8,0xf7,0xff,0x7e,0xe8,0xf7,0xff,0x7d,0xe7,0xf7,
0xff,0x7c,0xe7,0xf7,0xff,0x7c,0xe7,0xf7,0xff,0x7b,0xe7,0xf7,0xff,0x7a,0xe6,0xf7,
0xff,0x79,0xe6,0xf7,0xff,0x79,0xe6,0xf7,0xff,0x78,0xe6,0xf7,0xff,0x77,0xe6,0xf7,
0xff,0x77,0xe6,0xf7,0xff,0x76,0xe5,0xf7,0xff,0x75,0xe5,0xf7,0xff,0x75,0xe5,0xf7,
0xff,0x6f,0xe1,0xf4,0xff,0x99,0xff,0xff,0xff,0x38,0x86,0xaf,0xf4,0xb7,0xb1,0xc7,
0x1c,0x0,0x0,0x0,0x0,0xfc,0xfc,0xfd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xbb,0xf3,0xfb,
0xa8,0xad,0xf1,0xfa,0xff,0xae,0xf0,0xfa,0xfc,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,
0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,0xff,0xad,0xef,0xf9,0xff,0xad,0xef,0xf9,
0xff,0xad,0xef,0xf9,0xff,0xad,0xef,0xf9,0xff,0xad,0xef,0xf9,0xff,0xad,0xef,0xf9,
0xff,0xad,0xef,0xf9,0xff,0xac,0xef,0xf9,0xff,0xac,0xef,0xf9,0xff,0xac,0xef,0xf9,
0xff,0xab,0xee,0xf9,0xff,0xab,0xee,0xf9,0xff,0xaa,0xee,0xf9,0xff,0xaa,0xee,0xf9,
0xff,0xa9,0xee,0xf9,0xff,0xa9,0xee,0xf9,0xff,0xa8,0xee,0xf8,0xff,0xa8,0xee,0xf8,
0xff,0xa7,0xee,0xf8,0xff,0xa7,0xee,0xf8,0xff,0xa6,0xee,0xf8,0xff,0xa6,0xee,0xf8,
0xff,0xa5,0xee,0xf8,0xff,0xa5,0xee,0xf8,0xff,0xa4,0xed,0xf8,0xff,0xa3,0xed,0xf8,
0xff,0xa3,0xed,0xf8,0xff,0xa2,0xed,0xf8,0xff,0xa1,0xed,0xf8,0xff,0xa0,0xed,0xf8,
0xff,0xa0,0xec,0xf8,0xff,0x9f,0xec,0xf8,0xff,0x9f,0xec,0xf8,0xff,0x9e,0xec,0xf8,
0xff,0x9d,0xec,0xf8,0xff,0x9c,0xec,0xf8,0xff,0x9c,0xec,0xf8,0xff,0x9b,0xec,0xf8,
0xff,0x9b,0xec,0xf8,0xff,0x9a,0xec,0xf8,0xff,0x99,0xeb,0xf8,0xff,0x98,0xeb,0xf8,
0xff,0x98,0xeb,0xf7,0xff,0x97,0xeb,0xf7,0xff,0x96,0xea,0xf7,0xff,0x95,0xea,0xf7,
0xff,0x94,0xea,0xf7,0xff,0x94,0xea,0xf7,0xff,0x93,0xea,0xf7,0xff,0x92,0xea,0xf7,
0xff,0x91,0xea,0xf8,0xff,0x91,0xea,0xf8,0xff,0x90,0xea,0xf7,0xff,0x8f,0xe9,0xf7,
0xff,0x8f,0xe9,0xf7,0xff,0x8e,0xe9,0xf7,0xff,0x8c,0xe9,0xf7,0xff,0x8b,0xe9,0xf7,
0xff,0x8a,0xe8,0xf7,0xff,0x89,0xe9,0xf8,0xff,0x89,0xe9,0xf8,0xff,0x88,0xe9,0xf8,
0xff,0x87,0xe8,0xf8,0xff,0x86,0xe8,0xf7,0xff,0x86,0xe8,0xf7,0xff,0x85,0xe8,0xf8,
0xff,0x85,0xe8,0xf8,0xff,0x84,0xe8,0xf8,0xff,0x83,0xe8,0xf8,0xff,0x82,0xe8,0xf8,
0xff,0x82,0xe8,0xf8,0xff,0x81,0xe8,0xf8,0xff,0x80,0xe8,0xf8,0xff,0x7f,0xe8,0xf7,
0xff,0x7e,0xe8,0xf7,0xff,0x7e,0xe8,0xf7,0xff,0x7d,0xe7,0xf7,0xff,0x7c,0xe7,0xf7,
0xff,0x7b,0xe7,0xf7,0xff,0x7b,0xe7,0xf7,0xff,0x7a,0xe6,0xf7,0xff,0x79,0xe6,0xf7,
0xff,0x79,0xe6,0xf7,0xff,0x78,0xe6,0xf7,0xff,0x77,0xe6,0xf7,0xff,0x77,0xe5,0xf7,
0xff,0x76,0xe5,0xf7,0xff,0x75,0xe5,0xf7,0xff,0x75,0xe5,0xf7,0xff,0x74,0xe5,0xf7,
0xff,0x6e,0xe0,0xf4,0xff,0x99,0xff,0xff,0xff,0x32,0x82,0xaf,0xfc,0x93,0x8e,0xad,
0x2c,0x0,0x0,0x0,0x0,0xfb,0xfb,0xfc,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xbb,0xf3,0xfb,
0x98,0xad,0xf1,0xfa,0xff,0xae,0xf0,0xfa,0xfa,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,
0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,
0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,
0xff,0xac,0xef,0xf9,0xff,0xac,0xef,0xf9,0xff,0xac,0xef,0xf9,0xff,0xab,0xef,0xf9,
0xff,0xab,0xee,0xf9,0xff,0xaa,0xee,0xf9,0xff,0xaa,0xee,0xf9,0xff,0xaa,0xee,0xf9,
0xff,0xa9,0xee,0xf9,0xff,0xa9,0xee,0xf9,0xff,0xa8,0xee,0xf9,0xff,0xa7,0xee,0xf9,
0xff,0xa7,0xee,0xf9,0xff,0xa6,0xee,0xf9,0xff,0xa6,0xee,0xf9,0xff,0xa5,0xee,0xf9,
0xff,0xa5,0xee,0xf9,0xff,0xa4,0xed,0xf9,0xff,0xa3,0xed,0xf9,0xff,0xa3,0xed,0xf9,
0xff,0xa2,0xed,0xf9,0xff,0xa1,0xed,0xf9,0xff,0xa1,0xed,0xf9,0xff,0xa0,0xec,0xf8,
0xff,0x9f,0xec,0xf8,0xff,0x9f,0xec,0xf8,0xff,0x9e,0xec,0xf8,0xff,0x9d,0xec,0xf8,
0xff,0x9d,0xec,0xf8,0xff,0x9c,0xec,0xf8,0xff,0x9b,0xec,0xf8,0xff,0x9b,0xec,0xf8,
0xff,0x9a,0xec,0xf8,0xff,0x9a,0xeb,0xf8,0xff,0x99,0xeb,0xf8,0xff,0x98,0xeb,0xf8,
0xff,0x97,0xeb,0xf8,0xff,0x97,0xeb,0xf8,0xff,0x96,0xea,0xf8,0xff,0x95,0xea,0xf8,
0xff,0x94,0xea,0xf8,0xff,0x93,0xea,0xf8,0xff,0x93,0xea,0xf8,0xff,0x92,0xea,0xf8,
0xff,0x91,0xea,0xf8,0xff,0x90,0xea,0xf8,0xff,0x8f,0xea,0xf8,0xff,0x8e,0xea,0xf8,
0xff,0x8d,0xea,0xf8,0xff,0x8c,0xea,0xf8,0xff,0x8b,0xea,0xf8,0xff,0x8a,0xe9,0xf8,
0xff,0x89,0xe9,0xf8,0xff,0x89,0xe9,0xf8,0xff,0x88,0xe9,0xf8,0xff,0x88,0xe9,0xf8,
0xff,0x87,0xe9,0xf8,0xff,0x86,0xe9,0xf8,0xff,0x86,0xe9,0xf8,0xff,0x85,0xe8,0xf8,
0xff,0x84,0xe8,0xf8,0xff,0x83,0xe8,0xf8,0xff,0x82,0xe8,0xf8,0xff,0x82,0xe8,0xf8,
0xff,0x81,0xe8,0xf8,0xff,0x80,0xe8,0xf8,0xff,0x7f,0xe8,0xf7,0xff,0x7e,0xe8,0xf7,
0xff,0x7e,0xe7,0xf7,0xff,0x7d,0xe7,0xf7,0xff,0x7c,0xe7,0xf7,0xff,0x7b,0xe7,0xf7,
0xff,0x7b,0xe7,0xf7,0xff,0x7a,0xe6,0xf7,0xff,0x79,0xe6,0xf7,0xff,0x79,0xe6,0xf7,
0xff,0x78,0xe6,0xf7,0xff,0x77,0xe6,0xf7,0xff,0x76,0xe6,0xf7,0xff,0x76,0xe5,0xf7,
0xff,0x75,0xe5,0xf7,0xff,0x74,0xe5,0xf7,0xff,0x74,0xe5,0xf7,0xff,0x74,0xe5,0xf7,
0xff,0x6d,0xe0,0xf5,0xff,0x98,0xff,0xff,0xff,0x3f,0x93,0xc8,0xff,0x94,0x93,0xb7,
0x3a,0x0,0x0,0x0,0x0,0xfb,0xfb,0xfc,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x4,0x0,0x0,0x0,0x0,0xba,0xf3,0xfb,
0x8c,0xad,0xf0,0xfb,0xff,0xaf,0xf0,0xfa,0xfa,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,
0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,
0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,0xff,0xad,0xf0,0xfa,
0xff,0xad,0xf0,0xfa,0xff,0xad,0xf0,0xfa,0xff,0xac,0xef,0xfa,0xff,0xac,0xef,0xfa,
0xff,0xab,0xef,0xfa,0xff,0xab,0xef,0xfa,0xff,0xaa,0xef,0xfa,0xff,0xaa,0xef,0xfa,
0xff,0xa9,0xef,0xf9,0xff,0xa9,0xef,0xf9,0xff,0xa8,0xee,0xf9,0xff,0xa8,0xee,0xf9,
0xff,0xa7,0xee,0xf9,0xff,0xa7,0xee,0xf9,0xff,0xa6,0xee,0xf9,0xff,0xa5,0xee,0xf9,
0xff,0xa5,0xee,0xf9,0xff,0xa4,0xee,0xf9,0xff,0xa4,0xee,0xf9,0xff,0xa3,0xee,0xf9,
0xff,0xa2,0xee,0xf9,0xff,0xa2,0xee,0xf9,0xff,0xa1,0xed,0xf9,0xff,0xa0,0xed,0xf9,
0xff,0x9f,0xed,0xf9,0xff,0x9f,0xed,0xf9,0xff,0x9e,0xed,0xf9,0xff,0x9d,0xec,0xf9,
0xff,0x9d,0xec,0xf9,0xff,0x9c,0xec,0xf9,0xff,0x9b,0xec,0xf9,0xff,0x9a,0xec,0xf9,
0xff,0x99,0xec,0xf9,0xff,0x99,0xec,0xf9,0xff,0x98,0xec,0xf8,0xff,0x97,0xec,0xf8,
0xff,0x96,0xeb,0xf8,0xff,0x96,0xeb,0xf8,0xff,0x95,0xeb,0xf8,0xff,0x94,0xeb,0xf8,
0xff,0x93,0xeb,0xf8,0xff,0x92,0xea,0xf8,0xff,0x92,0xea,0xf8,0xff,0x91,0xea,0xf8,
0xff,0x90,0xea,0xf8,0xff,0x8f,0xea,0xf8,0xff,0x8e,0xea,0xf8,0xff,0x8e,0xea,0xf8,
0xff,0x8c,0xea,0xf8,0xff,0x8b,0xea,0xf8,0xff,0x8b,0xe9,0xf8,0xff,0x8a,0xea,0xf8,
0xff,0x89,0xea,0xf8,0xff,0x89,0xea,0xf8,0xff,0x88,0xe9,0xf8,0xff,0x87,0xe9,0xf8,
0xff,0x86,0xe9,0xf8,0xff,0x85,0xe9,0xf8,0xff,0x85,0xe8,0xf8,0xff,0x84,0xe8,0xf8,
0xff,0x83,0xe8,0xf8,0xff,0x82,0xe8,0xf8,0xff,0x81,0xe8,0xf8,0xff,0x81,0xe8,0xf8,
0xff,0x80,0xe8,0xf8,0xff,0x7f,0xe8,0xf8,0xff,0x7e,0xe8,0xf8,0xff,0x7e,0xe8,0xf8,
0xff,0x7d,0xe8,0xf8,0xff,0x7c,0xe8,0xf8,0xff,0x7b,0xe8,0xf8,0xff,0x7b,0xe8,0xf8,
0xff,0x7a,0xe7,0xf8,0xff,0x79,0xe7,0xf8,0xff,0x78,0xe7,0xf8,0xff,0x78,0xe7,0xf8,
0xff,0x77,0xe7,0xf8,0xff,0x76,0xe6,0xf7,0xff,0x76,0xe6,0xf7,0xff,0x75,0xe6,0xf7,
0xff,0x74,0xe6,0xf7,0xff,0x74,0xe6,0xf7,0xff,0x73,0xe6,0xf7,0xff,0x73,0xe5,0xf7,
0xff,0x6d,0xe1,0xf5,0xff,0x96,0xff,0xff,0xfc,0x44,0xa7,0xce,0xff,0x5d,0x61,0x92,
0x44,0x0,0x0,0x0,0x0,0xfb,0xfb,0xfc,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xfe,0xff,0xff,0x4,0x0,0x0,0x0,0x0,0xc6,0xf5,0xfb,
0x80,0xab,0xf0,0xfa,0xff,0xaf,0xf0,0xfa,0xfa,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,
0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,
0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,0xff,0xad,0xf0,0xfa,0xff,0xad,0xf0,0xfa,
0xff,0xad,0xf0,0xfa,0xff,0xac,0xf0,0xfa,0xff,0xac,0xf0,0xfa,0xff,0xab,0xf0,0xfa,
0xff,0xab,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,
0xff,0xa9,0xef,0xfa,0xff,0xa8,0xef,0xfa,0xff,0xa8,0xef,0xfa,0xff,0xa7,0xef,0xfa,
0xff,0xa7,0xef,0xfa,0xff,0xa6,0xef,0xfa,0xff,0xa5,0xee,0xfa,0xff,0xa5,0xee,0xfa,
0xff,0xa4,0xee,0xfa,0xff,0xa4,0xee,0xfa,0xff,0xa3,0xee,0xfa,0xff,0xa2,0xee,0xfa,
0xff,0xa2,0xee,0xf9,0xff,0xa1,0xee,0xf9,0xff,0xa0,0xee,0xf9,0xff,0x9f,0xee,0xf9,
0xff,0x9f,0xee,0xf9,0xff,0x9e,0xed,0xf9,0xff,0x9d,0xed,0xf9,0xff,0x9d,0xed,0xf9,
0xff,0x9c,0xed,0xf9,0xff,0x9c,0xed,0xf9,0xff,0x9b,0xec,0xf9,0xff,0x9a,0xec,0xf9,
0xff,0x99,0xec,0xf9,0xff,0x99,0xec,0xf9,0xff,0x98,0xec,0xf9,0xff,0x97,0xec,0xf9,
0xff,0x96,0xec,0xf9,0xff,0x95,0xec,0xf9,0xff,0x95,0xec,0xf9,0xff,0x94,0xeb,0xf9,
0xff,0x93,0xeb,0xf9,0xff,0x92,0xeb,0xf9,0xff,0x92,0xeb,0xf9,0xff,0x91,0xeb,0xf8,
0xff,0x90,0xea,0xf8,0xff,0x8f,0xea,0xf8,0xff,0x8f,0xea,0xf8,0xff,0x8e,0xea,0xf8,
0xff,0x8c,0xea,0xf8,0xff,0x8b,0xea,0xf8,0xff,0x8a,0xea,0xf8,0xff,0x89,0xea,0xf8,
0xff,0x89,0xea,0xf8,0xff,0x88,0xe9,0xf8,0xff,0x87,0xe9,0xf8,0xff,0x86,0xe9,0xf8,
0xff,0x85,0xe9,0xf8,0xff,0x85,0xe8,0xf8,0xff,0x84,0xe8,0xf8,0xff,0x83,0xe8,0xf8,
0xff,0x82,0xe9,0xf8,0xff,0x81,0xe8,0xf8,0xff,0x81,0xe8,0xf8,0xff,0x80,0xe8,0xf8,
0xff,0x7f,0xe8,0xf8,0xff,0x7e,0xe8,0xf8,0xff,0x7e,0xe8,0xf8,0xff,0x7d,0xe8,0xf8,
0xff,0x7c,0xe8,0xf8,0xff,0x7b,0xe8,0xf8,0xff,0x7b,0xe8,0xf8,0xff,0x7a,0xe7,0xf8,
0xff,0x79,0xe7,0xf8,0xff,0x78,0xe7,0xf8,0xff,0x78,0xe7,0xf8,0xff,0x77,0xe7,0xf8,
0xff,0x76,0xe6,0xf7,0xff,0x76,0xe6,0xf7,0xff,0x75,0xe6,0xf7,0xff,0x74,0xe6,0xf7,
0xff,0x74,0xe6,0xf7,0xff,0x73,0xe6,0xf7,0xff,0x73,0xe5,0xf7,0xff,0x72,0xe5,0xf7,
0xff,0x6c,0xe1,0xf5,0xff,0x90,0xfe,0xff,0xfc,0x50,0xb3,0xd1,0xff,0x54,0x5a,0x89,
0x4e,0x0,0x0,0x0,0x0,0xfb,0xfb,0xfc,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xfe,0xff,0xff,0x4,0x0,0x0,0x0,0x0,0xcd,0xf6,0xfc,
0x72,0xab,0xf1,0xfb,0xff,0xb0,0xf1,0xfa,0xfa,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,
0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,
0xff,0xae,0xf0,0xfa,0xff,0xad,0xf0,0xfa,0xff,0xad,0xf0,0xfa,0xff,0xac,0xf0,0xfa,
0xff,0xac,0xf0,0xfa,0xff,0xac,0xf0,0xfa,0xff,0xab,0xf0,0xfa,0xff,0xab,0xf0,0xfa,
0xff,0xaa,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,
0xff,0xa8,0xef,0xfa,0xff,0xa8,0xef,0xfa,0xff,0xa7,0xef,0xfa,0xff,0xa7,0xef,0xfa,
0xff,0xa6,0xef,0xfa,0xff,0xa5,0xef,0xfa,0xff,0xa5,0xee,0xfa,0xff,0xa4,0xee,0xfa,
0xff,0xa3,0xee,0xfa,0xff,0xa3,0xee,0xfa,0xff,0xa2,0xee,0xfa,0xff,0xa1,0xee,0xfa,
0xff,0xa1,0xee,0xf9,0xff,0xa0,0xee,0xf9,0xff,0x9f,0xee,0xf9,0xff,0x9f,0xee,0xf9,
0xff,0x9e,0xee,0xf9,0xff,0x9d,0xed,0xf9,0xff,0x9d,0xed,0xf9,0xff,0x9c,0xed,0xf9,
0xff,0x9c,0xed,0xf9,0xff,0x9b,0xec,0xf9,0xff,0x9a,0xec,0xf9,0xff,0x9a,0xec,0xf9,
0xff,0x99,0xec,0xf9,0xff,0x98,0xec,0xf9,0xff,0x97,0xec,0xf9,0xff,0x97,0xec,0xf9,
0xff,0x96,0xec,0xf9,0xff,0x95,0xec,0xf9,0xff,0x94,0xec,0xf9,0xff,0x93,0xeb,0xf9,
0xff,0x93,0xeb,0xf9,0xff,0x92,0xeb,0xf9,0xff,0x91,0xeb,0xf8,0xff,0x90,0xea,0xf8,
0xff,0x8f,0xea,0xf8,0xff,0x8f,0xea,0xf8,0xff,0x8d,0xea,0xf8,0xff,0x8c,0xea,0xf8,
0xff,0x8b,0xea,0xf8,0xff,0x8a,0xea,0xf8,0xff,0x89,0xea,0xf8,0xff,0x89,0xea,0xf8,
0xff,0x88,0xe9,0xf8,0xff,0x87,0xe9,0xf8,0xff,0x86,0xe9,0xf8,0xff,0x85,0xe9,0xf8,
0xff,0x85,0xe9,0xf8,0xff,0x84,0xe9,0xf8,0xff,0x83,0xe9,0xf8,0xff,0x82,0xe9,0xf8,
0xff,0x81,0xe9,0xf8,0xff,0x81,0xe8,0xf8,0xff,0x80,0xe8,0xf8,0xff,0x7f,0xe8,0xf8,
0xff,0x7e,0xe8,0xf8,0xff,0x7e,0xe8,0xf8,0xff,0x7d,0xe8,0xf8,0xff,0x7c,0xe8,0xf8,
0xff,0x7b,0xe8,0xf8,0xff,0x7b,0xe8,0xf8,0xff,0x7a,0xe7,0xf8,0xff,0x79,0xe7,0xf8,
0xff,0x78,0xe7,0xf8,0xff,0x78,0xe7,0xf8,0xff,0x77,0xe7,0xf8,0xff,0x76,0xe6,0xf7,
0xff,0x76,0xe6,0xf7,0xff,0x75,0xe6,0xf7,0xff,0x74,0xe6,0xf7,0xff,0x74,0xe6,0xf7,
0xff,0x73,0xe6,0xf7,0xff,0x72,0xe5,0xf7,0xff,0x72,0xe5,0xf7,0xff,0x72,0xe5,0xf7,
0xff,0x6c,0xe1,0xf5,0xff,0x8b,0xfb,0xff,0xfc,0x57,0xba,0xd5,0xff,0x54,0x5b,0x8d,
0x5e,0x0,0x0,0x0,0x0,0xfb,0xfb,0xfd,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xfe,0xff,0xff,0x4,0x0,0x0,0x0,0x0,0xcd,0xf6,0xfc,
0x5a,0xab,0xf1,0xfb,0xff,0xb0,0xf1,0xfa,0xfc,0xaf,0xf1,0xfa,0xff,0xaf,0xf1,0xfa,
0xff,0xaf,0xf1,0xfa,0xff,0xaf,0xf1,0xfa,0xff,0xae,0xf0,0xfa,0xff,0xae,0xf0,0xfa,
0xff,0xad,0xf0,0xfa,0xff,0xad,0xf0,0xfa,0xff,0xac,0xf0,0xfa,0xff,0xac,0xf0,0xfa,
0xff,0xac,0xf0,0xfa,0xff,0xab,0xf0,0xfa,0xff,0xab,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,
0xff,0xaa,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,0xff,0xa8,0xef,0xfa,
0xff,0xa8,0xef,0xfa,0xff,0xa7,0xef,0xfa,0xff,0xa6,0xef,0xfa,0xff,0xa6,0xef,0xfa,
0xff,0xa5,0xef,0xfa,0xff,0xa5,0xee,0xfa,0xff,0xa4,0xee,0xfa,0xff,0xa3,0xee,0xfa,
0xff,0xa3,0xee,0xfa,0xff,0xa2,0xee,0xfa,0xff,0xa1,0xee,0xfa,0xff,0xa1,0xee,0xf9,
0xff,0xa0,0xee,0xf9,0xff,0x9f,0xee,0xf9,0xff,0x9f,0xee,0xf9,0xff,0x9e,0xee,0xf9,
0xff,0x9d,0xed,0xf9,0xff,0x9c,0xed,0xf9,0xff,0x9c,0xed,0xf9,0xff,0x9c,0xed,0xf9,
0xff,0x9b,0xec,0xf9,0xff,0x9a,0xec,0xf9,0xff,0x9a,0xec,0xf9,0xff,0x99,0xec,0xf9,
0xff,0x98,0xec,0xf9,0xff,0x97,0xec,0xf9,0xff,0x97,0xec,0xf9,0xff,0x96,0xec,0xf9,
0xff,0x95,0xec,0xf9,0xff,0x94,0xeb,0xf9,0xff,0x93,0xeb,0xf9,0xff,0x93,0xeb,0xf9,
0xff,0x92,0xeb,0xf9,0xff,0x91,0xeb,0xf8,0xff,0x90,0xea,0xf8,0xff,0x8f,0xea,0xf8,
0xff,0x8e,0xea,0xf8,0xff,0x8d,0xea,0xf8,0xff,0x8c,0xea,0xf8,0xff,0x8b,0xea,0xf8,
0xff,0x8a,0xea,0xf8,0xff,0x89,0xea,0xf8,0xff,0x89,0xea,0xf8,0xff,0x88,0xe9,0xf8,
0xff,0x87,0xea,0xf8,0xff,0x86,0xea,0xf8,0xff,0x85,0xea,0xf8,0xff,0x84,0xe9,0xf8,
0xff,0x84,0xe9,0xf8,0xff,0x83,0xe9,0xf8,0xff,0x82,0xe9,0xf8,0xff,0x81,0xe9,0xf8,
0xff,0x81,0xe8,0xf8,0xff,0x80,0xe8,0xf8,0xff,0x7f,0xe8,0xf8,0xff,0x7e,0xe8,0xf8,
0xff,0x7d,0xe8,0xf8,0xff,0x7d,0xe8,0xf8,0xff,0x7c,0xe8,0xf8,0xff,0x7b,0xe8,0xf8,
0xff,0x7a,0xe8,0xf8,0xff,0x7a,0xe7,0xf8,0xff,0x79,0xe7,0xf8,0xff,0x78,0xe7,0xf8,
0xff,0x78,0xe7,0xf8,0xff,0x77,0xe7,0xf8,0xff,0x76,0xe6,0xf7,0xff,0x76,0xe6,0xf7,
0xff,0x75,0xe6,0xf7,0xff,0x74,0xe6,0xf7,0xff,0x74,0xe6,0xf7,0xff,0x73,0xe6,0xf7,
0xff,0x72,0xe5,0xf7,0xff,0x72,0xe5,0xf7,0xff,0x71,0xe5,0xf7,0xff,0x71,0xe5,0xf7,
0xff,0x6c,0xe2,0xf6,0xff,0x87,0xf7,0xff,0xfa,0x60,0xc7,0xe7,0xff,0x58,0x66,0x9e,
0x76,0x0,0x0,0x0,0x0,0xfb,0xfc,0xfd,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xfe,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xcb,0xf6,0xfc,
0x4a,0xab,0xf1,0xfb,0xff,0xb0,0xf1,0xfa,0xfc,0xaf,0xf1,0xfa,0xff,0xaf,0xf1,0xfa,
0xff,0xaf,0xf1,0xfa,0xff,0xaf,0xf1,0xfa,0xff,0xaf,0xf1,0xfa,0xff,0xae,0xf1,0xfa,
0xff,0xae,0xf1,0xfa,0xff,0xad,0xf1,0xfa,0xff,0xad,0xf0,0xfa,0xff,0xac,0xf0,0xfa,
0xff,0xac,0xf0,0xfa,0xff,0xac,0xf0,0xfa,0xff,0xab,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,
0xff,0xaa,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,0xff,0xa8,0xf0,0xfa,
0xff,0xa8,0xf0,0xfa,0xff,0xa7,0xf0,0xfa,0xff,0xa7,0xf0,0xfa,0xff,0xa6,0xef,0xfa,
0xff,0xa5,0xef,0xfa,0xff,0xa5,0xef,0xfa,0xff,0xa4,0xef,0xfa,0xff,0xa3,0xef,0xfa,
0xff,0xa3,0xef,0xfa,0xff,0xa2,0xee,0xfa,0xff,0xa1,0xee,0xfa,0xff,0xa1,0xee,0xfa,
0xff,0xa0,0xee,0xfa,0xff,0x9f,0xee,0xfa,0xff,0x9e,0xee,0xfa,0xff,0x9e,0xee,0xfa,
0xff,0x9d,0xee,0xfa,0xff,0x9c,0xee,0xfa,0xff,0x9c,0xee,0xfa,0xff,0x9b,0xed,0xfa,
0xff,0x9a,0xed,0xfa,0xff,0x9a,0xed,0xf9,0xff,0x99,0xed,0xf9,0xff,0x98,0xec,0xf9,
0xff,0x97,0xec,0xf9,0xff,0x96,0xec,0xf9,0xff,0x96,0xec,0xf9,0xff,0x95,0xec,0xf9,
0xff,0x94,0xec,0xf9,0xff,0x93,0xec,0xf9,0xff,0x92,0xec,0xf9,0xff,0x92,0xec,0xf9,
0xff,0x91,0xeb,0xf9,0xff,0x90,0xeb,0xf9,0xff,0x8f,0xeb,0xf9,0xff,0x8e,0xeb,0xf9,
0xff,0x8d,0xeb,0xf9,0xff,0x8c,0xea,0xf9,0xff,0x8b,0xea,0xf9,0xff,0x8a,0xea,0xf9,
0xff,0x89,0xea,0xf9,0xff,0x88,0xea,0xf9,0xff,0x88,0xea,0xf8,0xff,0x87,0xea,0xf8,
0xff,0x86,0xea,0xf8,0xff,0x85,0xea,0xf8,0xff,0x84,0xe9,0xf8,0xff,0x84,0xe9,0xf8,
0xff,0x83,0xe9,0xf8,0xff,0x82,0xe9,0xf8,0xff,0x81,0xe8,0xf8,0xff,0x80,0xe8,0xf8,
0xff,0x80,0xe8,0xf8,0xff,0x7f,0xe8,0xf8,0xff,0x7e,0xe8,0xf8,0xff,0x7d,0xe8,0xf8,
0xff,0x7d,0xe8,0xf8,0xff,0x7c,0xe8,0xf8,0xff,0x7b,0xe8,0xf8,0xff,0x7a,0xe8,0xf8,
0xff,0x7a,0xe7,0xf8,0xff,0x79,0xe7,0xf8,0xff,0x78,0xe7,0xf8,0xff,0x78,0xe7,0xf8,
0xff,0x77,0xe7,0xf8,0xff,0x76,0xe6,0xf7,0xff,0x76,0xe6,0xf7,0xff,0x75,0xe6,0xf7,
0xff,0x74,0xe6,0xf7,0xff,0x74,0xe6,0xf7,0xff,0x73,0xe6,0xf7,0xff,0x72,0xe5,0xf7,
0xff,0x72,0xe5,0xf7,0xff,0x71,0xe5,0xf7,0xff,0x71,0xe5,0xf7,0xff,0x70,0xe5,0xf7,
0xff,0x6d,0xe3,0xf6,0xff,0x7f,0xf0,0xfd,0xfa,0x73,0xe0,0xf1,0xff,0x3b,0x53,0x83,
0x84,0x0,0x0,0x0,0x0,0xfe,0xff,0xff,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xfe,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xd4,0xf7,0xfc,
0x40,0xab,0xf1,0xfa,0xff,0xb1,0xf1,0xfa,0xff,0xaf,0xf1,0xfa,0xff,0xaf,0xf1,0xfa,
0xff,0xaf,0xf1,0xfa,0xff,0xaf,0xf1,0xfa,0xff,0xae,0xf1,0xfa,0xff,0xae,0xf1,0xfa,
0xff,0xad,0xf1,0xfa,0xff,0xad,0xf0,0xfa,0xff,0xad,0xf0,0xfa,0xff,0xac,0xf0,0xfa,
0xff,0xac,0xf0,0xfa,0xff,0xab,0xf0,0xfa,0xff,0xab,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,
0xff,0xaa,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,0xff,0xa8,0xf0,0xfa,
0xff,0xa7,0xf0,0xfa,0xff,0xa7,0xf0,0xfa,0xff,0xa6,0xf0,0xfa,0xff,0xa6,0xef,0xfa,
0xff,0xa5,0xef,0xfa,0xff,0xa4,0xef,0xfa,0xff,0xa4,0xef,0xfa,0xff,0xa3,0xef,0xfa,
0xff,0xa2,0xee,0xfa,0xff,0xa2,0xee,0xfa,0xff,0xa1,0xee,0xfa,0xff,0xa0,0xee,0xfa,
0xff,0xa0,0xee,0xfa,0xff,0x9f,0xee,0xfa,0xff,0x9e,0xee,0xfa,0xff,0x9d,0xee,0xfa,
0xff,0x9d,0xee,0xfa,0xff,0x9c,0xee,0xfa,0xff,0x9b,0xed,0xfa,0xff,0x9a,0xed,0xfa,
0xff,0x9a,0xed,0xf9,0xff,0x99,0xed,0xf9,0xff,0x98,0xed,0xf9,0xff,0x97,0xec,0xf9,
0xff,0x96,0xec,0xf9,0xff,0x96,0xec,0xf9,0xff,0x95,0xec,0xf9,0xff,0x94,0xec,0xf9,
0xff,0x93,0xec,0xf9,0xff,0x92,0xec,0xf9,0xff,0x92,0xec,0xf9,0xff,0x91,0xec,0xf9,
0xff,0x90,0xeb,0xf9,0xff,0x8f,0xeb,0xf9,0xff,0x8e,0xeb,0xf9,0xff,0x8d,0xeb,0xf9,
0xff,0x8c,0xea,0xf9,0xff,0x8b,0xea,0xf9,0xff,0x8a,0xea,0xf9,0xff,0x89,0xea,0xf9,
0xff,0x88,0xea,0xf9,0xff,0x88,0xea,0xf8,0xff,0x87,0xea,0xf8,0xff,0x86,0xea,0xf8,
0xff,0x85,0xea,0xf8,0xff,0x84,0xe9,0xf8,0xff,0x84,0xe9,0xf8,0xff,0x83,0xe9,0xf8,
0xff,0x82,0xe9,0xf8,0xff,0x81,0xe8,0xf8,0xff,0x80,0xe8,0xf8,0xff,0x80,0xe8,0xf8,
0xff,0x7f,0xe8,0xf8,0xff,0x7e,0xe8,0xf8,0xff,0x7d,0xe8,0xf8,0xff,0x7d,0xe8,0xf8,
0xff,0x7c,0xe8,0xf8,0xff,0x7b,0xe8,0xf8,0xff,0x7a,0xe8,0xf8,0xff,0x7a,0xe7,0xf8,
0xff,0x79,0xe7,0xf8,0xff,0x78,0xe7,0xf8,0xff,0x78,0xe7,0xf8,0xff,0x77,0xe7,0xf8,
0xff,0x76,0xe6,0xf7,0xff,0x76,0xe6,0xf7,0xff,0x75,0xe6,0xf7,0xff,0x74,0xe6,0xf7,
0xff,0x74,0xe6,0xf7,0xff,0x73,0xe5,0xf7,0xff,0x72,0xe5,0xf7,0xff,0x72,0xe5,0xf7,
0xff,0x71,0xe5,0xf7,0xff,0x71,0xe5,0xf7,0xff,0x70,0xe5,0xf7,0xff,0x70,0xe5,0xf7,
0xff,0x6d,0xe3,0xf6,0xff,0x7b,0xed,0xfc,0xfa,0x78,0xe7,0xf5,0xff,0x27,0x42,0x71,
0x90,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xfe,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xe1,0xfa,0xfd,
0x36,0xab,0xf1,0xfa,0xff,0xb1,0xf1,0xfa,0xff,0xaf,0xf1,0xfa,0xff,0xaf,0xf1,0xfa,
0xff,0xaf,0xf1,0xfa,0xff,0xae,0xf1,0xfa,0xff,0xae,0xf1,0xfa,0xff,0xad,0xf1,0xfa,
0xff,0xad,0xf0,0xfa,0xff,0xad,0xf0,0xfa,0xff,0xac,0xf0,0xfa,0xff,0xac,0xf0,0xfa,
0xff,0xab,0xf0,0xfa,0xff,0xab,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,
0xff,0xa9,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,0xff,0xa8,0xf0,0xfa,0xff,0xa7,0xf0,0xfa,
0xff,0xa7,0xf0,0xfa,0xff,0xa6,0xf0,0xfa,0xff,0xa6,0xef,0xfa,0xff,0xa5,0xef,0xfa,
0xff,0xa4,0xef,0xfa,0xff,0xa4,0xef,0xfa,0xff,0xa3,0xef,0xfa,0xff,0xa2,0xee,0xfa,
0xff,0xa2,0xee,0xfa,0xff,0xa1,0xee,0xfa,0xff,0xa0,0xee,0xfa,0xff,0x9f,0xee,0xfa,
0xff,0x9f,0xee,0xfa,0xff,0x9e,0xee,0xfa,0xff,0x9d,0xee,0xfa,0xff,0x9d,0xee,0xfa,
0xff,0x9c,0xee,0xfa,0xff,0x9b,0xed,0xfa,0xff,0x9a,0xed,0xfa,0xff,0x99,0xed,0xf9,
0xff,0x99,0xed,0xf9,0xff,0x98,0xed,0xf9,0xff,0x97,0xec,0xf9,0xff,0x96,0xec,0xf9,
0xff,0x96,0xec,0xf9,0xff,0x95,0xec,0xf9,0xff,0x94,0xec,0xf9,0xff,0x93,0xec,0xf9,
0xff,0x92,0xec,0xf9,0xff,0x92,0xec,0xf9,0xff,0x91,0xec,0xf9,0xff,0x90,0xeb,0xf9,
0xff,0x8f,0xeb,0xf9,0xff,0x8e,0xeb,0xf9,0xff,0x8d,0xeb,0xf9,0xff,0x8c,0xea,0xf9,
0xff,0x8b,0xea,0xf9,0xff,0x8a,0xea,0xf9,0xff,0x89,0xea,0xf9,0xff,0x88,0xea,0xf9,
0xff,0x88,0xea,0xf8,0xff,0x87,0xea,0xf8,0xff,0x86,0xea,0xf8,0xff,0x85,0xea,0xf8,
0xff,0x84,0xe9,0xf8,0xff,0x84,0xe9,0xf8,0xff,0x83,0xe9,0xf8,0xff,0x82,0xe9,0xf8,
0xff,0x81,0xe8,0xf8,0xff,0x80,0xe8,0xf8,0xff,0x80,0xe8,0xf8,0xff,0x7f,0xe8,0xf8,
0xff,0x7e,0xe8,0xf8,0xff,0x7d,0xe8,0xf8,0xff,0x7d,0xe8,0xf8,0xff,0x7c,0xe8,0xf8,
0xff,0x7b,0xe8,0xf8,0xff,0x7a,0xe8,0xf8,0xff,0x7a,0xe7,0xf8,0xff,0x79,0xe7,0xf8,
0xff,0x78,0xe7,0xf8,0xff,0x77,0xe7,0xf8,0xff,0x77,0xe7,0xf8,0xff,0x76,0xe6,0xf7,
0xff,0x75,0xe6,0xf7,0xff,0x75,0xe6,0xf7,0xff,0x74,0xe6,0xf7,0xff,0x74,0xe6,0xf7,
0xff,0x73,0xe5,0xf7,0xff,0x72,0xe5,0xf7,0xff,0x72,0xe5,0xf7,0xff,0x71,0xe5,0xf7,
0xff,0x71,0xe5,0xf7,0xff,0x70,0xe5,0xf7,0xff,0x6f,0xe5,0xf7,0xff,0x6f,0xe5,0xf7,
0xff,0x6c,0xe4,0xf6,0xff,0x79,0xec,0xfb,0xfa,0x79,0xea,0xf5,0xff,0x29,0x46,0x74,
0x9c,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xfe,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xe1,0xfa,0xfd,
0x2a,0xab,0xf1,0xfa,0xfc,0xb1,0xf1,0xfa,0xff,0xaf,0xf1,0xfa,0xff,0xae,0xf1,0xfa,
0xff,0xae,0xf1,0xfa,0xff,0xae,0xf1,0xfa,0xff,0xad,0xf1,0xfa,0xff,0xad,0xf0,0xfa,
0xff,0xad,0xf0,0xfa,0xff,0xac,0xf0,0xfa,0xff,0xac,0xf0,0xfa,0xff,0xab,0xf0,0xfa,
0xff,0xab,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,
0xff,0xa8,0xf0,0xfa,0xff,0xa8,0xf0,0xfa,0xff,0xa7,0xf0,0xfa,0xff,0xa7,0xf0,0xfa,
0xff,0xa6,0xf0,0xfa,0xff,0xa5,0xef,0xfa,0xff,0xa5,0xef,0xfa,0xff,0xa4,0xef,0xfa,
0xff,0xa4,0xef,0xfa,0xff,0xa3,0xef,0xfa,0xff,0xa2,0xee,0xfa,0xff,0xa2,0xee,0xfa,
0xff,0xa1,0xee,0xfa,0xff,0xa0,0xee,0xfa,0xff,0x9f,0xee,0xfa,0xff,0x9f,0xee,0xfa,
0xff,0x9e,0xee,0xfa,0xff,0x9d,0xee,0xfa,0xff,0x9c,0xee,0xfa,0xff,0x9c,0xee,0xfa,
0xff,0x9b,0xed,0xfa,0xff,0x9a,0xed,0xfa,0xff,0x99,0xed,0xf9,0xff,0x99,0xed,0xf9,
0xff,0x98,0xed,0xf9,0xff,0x97,0xec,0xf9,0xff,0x96,0xec,0xf9,0xff,0x95,0xec,0xf9,
0xff,0x95,0xec,0xf9,0xff,0x94,0xec,0xf9,0xff,0x93,0xec,0xf9,0xff,0x92,0xec,0xf9,
0xff,0x91,0xec,0xf9,0xff,0x91,0xec,0xf9,0xff,0x90,0xeb,0xf9,0xff,0x8f,0xeb,0xf9,
0xff,0x8e,0xeb,0xf9,0xff,0x8d,0xeb,0xf9,0xff,0x8c,0xea,0xf9,0xff,0x8b,0xea,0xf9,
0xff,0x8a,0xea,0xf9,0xff,0x89,0xea,0xf9,0xff,0x88,0xea,0xf9,0xff,0x87,0xea,0xf8,
0xff,0x87,0xea,0xf8,0xff,0x86,0xea,0xf8,0xff,0x85,0xea,0xf8,0xff,0x84,0xe9,0xf8,
0xff,0x83,0xe9,0xf8,0xff,0x83,0xe9,0xf8,0xff,0x82,0xe9,0xf8,0xff,0x81,0xe8,0xf8,
0xff,0x80,0xe8,0xf8,0xff,0x80,0xe8,0xf8,0xff,0x7f,0xe8,0xf8,0xff,0x7e,0xe8,0xf8,
0xff,0x7d,0xe8,0xf8,0xff,0x7c,0xe8,0xf8,0xff,0x7c,0xe8,0xf8,0xff,0x7b,0xe8,0xf8,
0xff,0x7a,0xe8,0xf8,0xff,0x7a,0xe7,0xf8,0xff,0x79,0xe7,0xf8,0xff,0x78,0xe7,0xf8,
0xff,0x77,0xe7,0xf8,0xff,0x77,0xe7,0xf7,0xff,0x76,0xe6,0xf7,0xff,0x75,0xe6,0xf7,
0xff,0x75,0xe6,0xf7,0xff,0x74,0xe6,0xf7,0xff,0x73,0xe6,0xf7,0xff,0x73,0xe5,0xf7,
0xff,0x72,0xe5,0xf7,0xff,0x72,0xe5,0xf7,0xff,0x71,0xe5,0xf7,0xff,0x71,0xe5,0xf7,
0xff,0x70,0xe5,0xf7,0xff,0x6f,0xe5,0xf7,0xff,0x6f,0xe5,0xf7,0xff,0x6e,0xe5,0xf7,
0xff,0x6d,0xe4,0xf6,0xff,0x76,0xea,0xf9,0xfc,0x7d,0xee,0xfd,0xff,0x2d,0x4e,0x8a,
0xac,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xfe,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xf0,0xfc,0xfe,
0x1c,0xb0,0xf2,0xfb,0xf4,0xb0,0xf1,0xfa,0xff,0xae,0xf1,0xfa,0xff,0xae,0xf1,0xfa,
0xff,0xae,0xf1,0xfa,0xff,0xad,0xf1,0xfa,0xff,0xad,0xf0,0xfa,0xff,0xac,0xf0,0xfa,
0xff,0xac,0xf0,0xfa,0xff,0xac,0xf0,0xfa,0xff,0xab,0xf0,0xfa,0xff,0xab,0xf0,0xfa,
0xff,0xaa,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,0xff,0xa8,0xf0,0xfa,
0xff,0xa8,0xf0,0xfa,0xff,0xa7,0xf0,0xfa,0xff,0xa7,0xf0,0xfa,0xff,0xa6,0xf0,0xfa,
0xff,0xa5,0xef,0xfa,0xff,0xa5,0xef,0xfa,0xff,0xa4,0xef,0xfa,0xff,0xa3,0xef,0xfa,
0xff,0xa3,0xef,0xfa,0xff,0xa2,0xee,0xfa,0xff,0xa1,0xee,0xfa,0xff,0xa1,0xee,0xfa,
0xff,0xa0,0xee,0xfa,0xff,0x9f,0xee,0xfa,0xff,0x9f,0xee,0xfa,0xff,0x9e,0xee,0xfa,
0xff,0x9d,0xee,0xfa,0xff,0x9c,0xee,0xfa,0xff,0x9c,0xee,0xfa,0xff,0x9b,0xed,0xfa,
0xff,0x9a,0xed,0xfa,0xff,0x99,0xed,0xf9,0xff,0x99,0xed,0xf9,0xff,0x98,0xed,0xf9,
0xff,0x97,0xec,0xf9,0xff,0x96,0xec,0xf9,0xff,0x95,0xec,0xf9,0xff,0x95,0xec,0xf9,
0xff,0x94,0xec,0xf9,0xff,0x93,0xec,0xf9,0xff,0x92,0xec,0xf9,0xff,0x91,0xec,0xf9,
0xff,0x91,0xec,0xf9,0xff,0x90,0xeb,0xf9,0xff,0x8f,0xeb,0xf9,0xff,0x8e,0xeb,0xf9,
0xff,0x8d,0xeb,0xf9,0xff,0x8c,0xea,0xf9,0xff,0x8b,0xea,0xf9,0xff,0x8a,0xea,0xf9,
0xff,0x89,0xea,0xf9,0xff,0x88,0xea,0xf9,0xff,0x87,0xea,0xf8,0xff,0x87,0xea,0xf8,
0xff,0x86,0xea,0xf8,0xff,0x85,0xea,0xf8,0xff,0x84,0xe9,0xf8,0xff,0x83,0xe9,0xf8,
0xff,0x83,0xe9,0xf8,0xff,0x82,0xe9,0xf8,0xff,0x81,0xe8,0xf8,0xff,0x80,0xe8,0xf8,
0xff,0x7f,0xe8,0xf8,0xff,0x7f,0xe8,0xf8,0xff,0x7e,0xe8,0xf8,0xff,0x7d,0xe8,0xf8,
0xff,0x7c,0xe8,0xf8,0xff,0x7c,0xe8,0xf8,0xff,0x7b,0xe8,0xf8,0xff,0x7a,0xe8,0xf8,
0xff,0x79,0xe7,0xf8,0xff,0x79,0xe7,0xf8,0xff,0x78,0xe7,0xf8,0xff,0x77,0xe7,0xf8,
0xff,0x77,0xe7,0xf7,0xff,0x76,0xe6,0xf7,0xff,0x75,0xe6,0xf7,0xff,0x75,0xe6,0xf7,
0xff,0x74,0xe6,0xf7,0xff,0x73,0xe6,0xf7,0xff,0x73,0xe5,0xf7,0xff,0x72,0xe5,0xf7,
0xff,0x72,0xe5,0xf7,0xff,0x71,0xe5,0xf7,0xff,0x70,0xe5,0xf7,0xff,0x70,0xe5,0xf7,
0xff,0x6f,0xe5,0xf7,0xff,0x6f,0xe5,0xf7,0xff,0x6e,0xe5,0xf7,0xff,0x6e,0xe5,0xf7,
0xff,0x6d,0xe5,0xf7,0xff,0x70,0xe6,0xf7,0xfc,0x87,0xf9,0xff,0xff,0x36,0x67,0x98,
0xbe,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xfd,0xfe,
0x10,0xb0,0xf1,0xfa,0xe6,0xaf,0xf1,0xfa,0xff,0xae,0xf1,0xfa,0xff,0xae,0xf1,0xfa,
0xff,0xad,0xf1,0xfa,0xff,0xad,0xf0,0xfa,0xff,0xac,0xf0,0xfa,0xff,0xac,0xf0,0xfa,
0xff,0xab,0xf0,0xfa,0xff,0xab,0xf0,0xfa,0xff,0xab,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,
0xff,0xa9,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,0xff,0xa8,0xf0,0xfa,0xff,0xa8,0xf0,0xfa,
0xff,0xa7,0xf0,0xfa,0xff,0xa7,0xf0,0xfa,0xff,0xa6,0xef,0xfa,0xff,0xa5,0xef,0xfa,
0xff,0xa5,0xef,0xfa,0xff,0xa4,0xef,0xfa,0xff,0xa3,0xef,0xfa,0xff,0xa3,0xef,0xfa,
0xff,0xa2,0xee,0xfa,0xff,0xa1,0xee,0xfa,0xff,0xa1,0xee,0xfa,0xff,0xa0,0xee,0xfa,
0xff,0x9f,0xee,0xfa,0xff,0x9f,0xee,0xfa,0xff,0x9e,0xee,0xfa,0xff,0x9d,0xee,0xfa,
0xff,0x9c,0xee,0xfa,0xff,0x9c,0xee,0xfa,0xff,0x9b,0xed,0xfa,0xff,0x9a,0xed,0xfa,
0xff,0x99,0xed,0xf9,0xff,0x99,0xed,0xf9,0xff,0x98,0xed,0xf9,0xff,0x97,0xec,0xf9,
0xff,0x96,0xec,0xf9,0xff,0x95,0xec,0xf9,0xff,0x95,0xec,0xf9,0xff,0x94,0xec,0xf9,
0xff,0x93,0xec,0xf9,0xff,0x92,0xec,0xf9,0xff,0x91,0xec,0xf9,0xff,0x91,0xeb,0xf9,
0xff,0x90,0xeb,0xf9,0xff,0x8f,0xeb,0xf9,0xff,0x8e,0xeb,0xf9,0xff,0x8c,0xeb,0xf9,
0xff,0x8b,0xea,0xf9,0xff,0x8b,0xea,0xf9,0xff,0x8a,0xea,0xf9,0xff,0x89,0xea,0xf9,
0xff,0x88,0xea,0xf9,0xff,0x87,0xea,0xf8,0xff,0x87,0xea,0xf8,0xff,0x86,0xea,0xf8,
0xff,0x85,0xea,0xf8,0xff,0x84,0xe9,0xf8,0xff,0x83,0xe9,0xf8,0xff,0x83,0xe9,0xf8,
0xff,0x82,0xe9,0xf8,0xff,0x81,0xe8,0xf8,0xff,0x80,0xe8,0xf8,0xff,0x7f,0xe8,0xf8,
0xff,0x7f,0xe8,0xf8,0xff,0x7e,0xe8,0xf8,0xff,0x7d,0xe8,0xf8,0xff,0x7c,0xe8,0xf8,
0xff,0x7c,0xe8,0xf8,0xff,0x7b,0xe8,0xf8,0xff,0x7a,0xe8,0xf8,0xff,0x79,0xe7,0xf8,
0xff,0x79,0xe7,0xf8,0xff,0x78,0xe7,0xf8,0xff,0x77,0xe7,0xf8,0xff,0x77,0xe7,0xf7,
0xff,0x76,0xe6,0xf7,0xff,0x75,0xe6,0xf7,0xff,0x75,0xe6,0xf7,0xff,0x74,0xe6,0xf7,
0xff,0x73,0xe6,0xf7,0xff,0x73,0xe5,0xf7,0xff,0x72,0xe5,0xf7,0xff,0x72,0xe5,0xf7,
0xff,0x71,0xe5,0xf7,0xff,0x70,0xe5,0xf7,0xff,0x70,0xe5,0xf7,0xff,0x6f,0xe5,0xf7,
0xff,0x6f,0xe5,0xf7,0xff,0x6e,0xe5,0xf7,0xff,0x6e,0xe5,0xf7,0xff,0x6d,0xe5,0xf7,
0xff,0x6d,0xe5,0xf7,0xff,0x6c,0xe3,0xf5,0xfc,0x8f,0xff,0xff,0xff,0x1a,0x50,0x80,
0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xfd,0xfe,
0xa,0xaf,0xf1,0xfa,0xde,0xaf,0xf1,0xfb,0xff,0xae,0xf1,0xfa,0xfc,0xad,0xf1,0xfa,
0xff,0xad,0xf0,0xfa,0xff,0xac,0xf0,0xfa,0xff,0xac,0xf0,0xfa,0xff,0xab,0xf0,0xfa,
0xff,0xab,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,
0xff,0xa9,0xf0,0xfa,0xff,0xa8,0xf0,0xfa,0xff,0xa8,0xf0,0xfa,0xff,0xa7,0xf0,0xfa,
0xff,0xa7,0xf0,0xfa,0xff,0xa6,0xef,0xfa,0xff,0xa5,0xef,0xfa,0xff,0xa5,0xef,0xfa,
0xff,0xa4,0xef,0xfa,0xff,0xa3,0xef,0xfa,0xff,0xa3,0xef,0xfa,0xff,0xa2,0xee,0xfa,
0xff,0xa1,0xee,0xfa,0xff,0xa1,0xee,0xfa,0xff,0xa0,0xee,0xfa,0xff,0x9f,0xee,0xfa,
0xff,0x9f,0xee,0xfa,0xff,0x9e,0xee,0xfa,0xff,0x9d,0xee,0xfa,0xff,0x9c,0xee,0xfa,
0xff,0x9c,0xee,0xfa,0xff,0x9b,0xed,0xfa,0xff,0x9a,0xed,0xfa,0xff,0x99,0xed,0xf9,
0xff,0x98,0xed,0xf9,0xff,0x98,0xec,0xf9,0xff,0x97,0xec,0xf9,0xff,0x96,0xec,0xf9,
0xff,0x95,0xec,0xf9,0xff,0x95,0xec,0xf9,0xff,0x94,0xec,0xf9,0xff,0x93,0xec,0xf9,
0xff,0x92,0xec,0xf9,0xff,0x91,0xec,0xf9,0xff,0x90,0xeb,0xf9,0xff,0x90,0xeb,0xf9,
0xff,0x8f,0xeb,0xf9,0xff,0x8e,0xeb,0xf9,0xff,0x8c,0xeb,0xf9,0xff,0x8b,0xea,0xf9,
0xff,0x8b,0xea,0xf9,0xff,0x8a,0xea,0xf9,0xff,0x89,0xea,0xf9,0xff,0x88,0xea,0xf9,
0xff,0x87,0xea,0xf8,0xff,0x86,0xea,0xf8,0xff,0x86,0xea,0xf8,0xff,0x85,0xea,0xf8,
0xff,0x84,0xe9,0xf8,0xff,0x83,0xe9,0xf8,0xff,0x82,0xe9,0xf8,0xff,0x82,0xe9,0xf8,
0xff,0x81,0xe8,0xf8,0xff,0x80,0xe8,0xf8,0xff,0x7f,0xe8,0xf8,0xff,0x7f,0xe8,0xf8,
0xff,0x7e,0xe8,0xf8,0xff,0x7d,0xe8,0xf8,0xff,0x7c,0xe8,0xf8,0xff,0x7c,0xe8,0xf8,
0xff,0x7b,0xe8,0xf8,0xff,0x7a,0xe7,0xf8,0xff,0x79,0xe7,0xf8,0xff,0x79,0xe7,0xf8,
0xff,0x78,0xe7,0xf8,0xff,0x77,0xe7,0xf8,0xff,0x77,0xe7,0xf7,0xff,0x76,0xe6,0xf7,
0xff,0x75,0xe6,0xf7,0xff,0x75,0xe6,0xf7,0xff,0x74,0xe6,0xf7,0xff,0x73,0xe6,0xf7,
0xff,0x73,0xe5,0xf7,0xff,0x72,0xe5,0xf7,0xff,0x72,0xe5,0xf7,0xff,0x71,0xe5,0xf7,
0xff,0x70,0xe5,0xf7,0xff,0x70,0xe5,0xf7,0xff,0x6f,0xe5,0xf7,0xff,0x6f,0xe5,0xf7,
0xff,0x6e,0xe5,0xf7,0xff,0x6e,0xe5,0xf7,0xff,0x6d,0xe5,0xf7,0xff,0x6d,0xe5,0xf7,
0xff,0x6b,0xe5,0xf7,0xff,0x6b,0xe2,0xf5,0xfc,0x8f,0xff,0xff,0xff,0x1c,0x54,0x84,
0xd6,0xd2,0xc8,0xd5,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xfd,0xfe,
0x4,0xae,0xf1,0xfa,0xd4,0xaf,0xf2,0xfb,0xff,0xad,0xf1,0xfa,0xfc,0xad,0xf0,0xfa,
0xff,0xac,0xf0,0xfa,0xff,0xac,0xf0,0xfa,0xff,0xab,0xf0,0xfa,0xff,0xab,0xf0,0xfa,
0xff,0xaa,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,
0xff,0xa8,0xf0,0xfa,0xff,0xa8,0xf0,0xfa,0xff,0xa7,0xf0,0xfa,0xff,0xa7,0xf0,0xfa,
0xff,0xa6,0xef,0xfa,0xff,0xa5,0xef,0xfa,0xff,0xa5,0xef,0xfa,0xff,0xa4,0xef,0xfa,
0xff,0xa3,0xef,0xfa,0xff,0xa3,0xef,0xfa,0xff,0xa2,0xee,0xfa,0xff,0xa1,0xee,0xfa,
0xff,0xa1,0xee,0xfa,0xff,0xa0,0xee,0xfa,0xff,0x9f,0xee,0xfa,0xff,0x9e,0xee,0xfa,
0xff,0x9e,0xee,0xfa,0xff,0x9d,0xee,0xfa,0xff,0x9c,0xee,0xfa,0xff,0x9b,0xee,0xfa,
0xff,0x9b,0xed,0xfa,0xff,0x9a,0xed,0xfa,0xff,0x99,0xed,0xf9,0xff,0x98,0xed,0xf9,
0xff,0x98,0xec,0xf9,0xff,0x97,0xec,0xf9,0xff,0x96,0xec,0xf9,0xff,0x95,0xec,0xf9,
0xff,0x94,0xec,0xf9,0xff,0x94,0xec,0xf9,0xff,0x93,0xec,0xf9,0xff,0x92,0xec,0xf9,
0xff,0x91,0xec,0xf9,0xff,0x90,0xeb,0xf9,0xff,0x90,0xeb,0xf9,0xff,0x8f,0xeb,0xf9,
0xff,0x8e,0xeb,0xf9,0xff,0x8c,0xeb,0xf9,0xff,0x8b,0xea,0xf9,0xff,0x8a,0xea,0xf9,
0xff,0x8a,0xea,0xf9,0xff,0x89,0xea,0xf9,0xff,0x88,0xea,0xf9,0xff,0x87,0xea,0xf8,
0xff,0x86,0xea,0xf8,0xff,0x86,0xea,0xf8,0xff,0x85,0xe9,0xf8,0xff,0x84,0xe9,0xf8,
0xff,0x83,0xe9,0xf8,0xff,0x82,0xe9,0xf8,0xff,0x82,0xe9,0xf8,0xff,0x81,0xe8,0xf8,
0xff,0x80,0xe8,0xf8,0xff,0x7f,0xe8,0xf8,0xff,0x7f,0xe8,0xf8,0xff,0x7e,0xe8,0xf8,
0xff,0x7d,0xe8,0xf8,0xff,0x7c,0xe8,0xf8,0xff,0x7c,0xe8,0xf8,0xff,0x7b,0xe8,0xf8,
0xff,0x7a,0xe7,0xf8,0xff,0x79,0xe7,0xf8,0xff,0x79,0xe7,0xf8,0xff,0x78,0xe7,0xf8,
0xff,0x77,0xe7,0xf8,0xff,0x77,0xe6,0xf7,0xff,0x76,0xe6,0xf7,0xff,0x75,0xe6,0xf7,
0xff,0x75,0xe6,0xf7,0xff,0x74,0xe6,0xf7,0xff,0x73,0xe6,0xf7,0xff,0x73,0xe5,0xf7,
0xff,0x72,0xe5,0xf7,0xff,0x71,0xe5,0xf7,0xff,0x71,0xe5,0xf7,0xff,0x70,0xe5,0xf7,
0xff,0x70,0xe5,0xf7,0xff,0x6f,0xe5,0xf7,0xff,0x6f,0xe5,0xf7,0xff,0x6e,0xe5,0xf7,
0xff,0x6e,0xe5,0xf7,0xff,0x6d,0xe5,0xf7,0xff,0x6d,0xe5,0xf7,0xff,0x6b,0xe5,0xf7,
0xff,0x6b,0xe5,0xf7,0xff,0x6a,0xe1,0xf5,0xfc,0x8f,0xff,0xff,0xff,0x1f,0x59,0x9c,
0xe0,0xd1,0xc8,0xd4,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xb6,0xf3,0xfb,0xcc,0xac,0xf1,0xfb,0xff,0xad,0xf0,0xfa,0xfc,0xac,0xf0,0xfa,
0xff,0xac,0xf0,0xfa,0xff,0xab,0xf0,0xfa,0xff,0xab,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,
0xff,0xaa,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,0xff,0xa8,0xf0,0xfa,
0xff,0xa8,0xf0,0xfa,0xff,0xa7,0xf0,0xfa,0xff,0xa6,0xf0,0xfa,0xff,0xa6,0xef,0xfa,
0xff,0xa5,0xef,0xfa,0xff,0xa5,0xef,0xfa,0xff,0xa4,0xef,0xfa,0xff,0xa3,0xef,0xfa,
0xff,0xa3,0xef,0xfa,0xff,0xa2,0xee,0xfa,0xff,0xa1,0xee,0xfa,0xff,0xa1,0xee,0xfa,
0xff,0xa0,0xee,0xfa,0xff,0x9f,0xee,0xfa,0xff,0x9e,0xee,0xfa,0xff,0x9e,0xee,0xfa,
0xff,0x9d,0xee,0xfa,0xff,0x9c,0xee,0xfa,0xff,0x9b,0xee,0xfa,0xff,0x9b,0xed,0xfa,
0xff,0x9a,0xed,0xfa,0xff,0x99,0xed,0xf9,0xff,0x98,0xed,0xf9,0xff,0x98,0xec,0xf9,
0xff,0x97,0xec,0xf9,0xff,0x96,0xec,0xf9,0xff,0x95,0xec,0xf9,0xff,0x94,0xec,0xf9,
0xff,0x94,0xec,0xf9,0xff,0x93,0xec,0xf9,0xff,0x92,0xec,0xf9,0xff,0x91,0xec,0xf9,
0xff,0x90,0xeb,0xf9,0xff,0x90,0xeb,0xf9,0xff,0x8f,0xeb,0xf9,0xff,0x8e,0xeb,0xf9,
0xff,0x8c,0xeb,0xf9,0xff,0x8b,0xea,0xf9,0xff,0x8a,0xea,0xf9,0xff,0x8a,0xea,0xf9,
0xff,0x89,0xea,0xf9,0xff,0x88,0xea,0xf9,0xff,0x87,0xea,0xf8,0xff,0x86,0xea,0xf8,
0xff,0x86,0xea,0xf8,0xff,0x85,0xe9,0xf8,0xff,0x84,0xe9,0xf8,0xff,0x83,0xe9,0xf8,
0xff,0x82,0xe9,0xf8,0xff,0x82,0xe9,0xf8,0xff,0x81,0xe8,0xf8,0xff,0x80,0xe8,0xf8,
0xff,0x7f,0xe8,0xf8,0xff,0x7e,0xe8,0xf8,0xff,0x7e,0xe8,0xf8,0xff,0x7d,0xe8,0xf8,
0xff,0x7c,0xe8,0xf8,0xff,0x7b,0xe8,0xf8,0xff,0x7b,0xe8,0xf8,0xff,0x7a,0xe7,0xf8,
0xff,0x79,0xe7,0xf8,0xff,0x79,0xe7,0xf8,0xff,0x78,0xe7,0xf8,0xff,0x77,0xe7,0xf8,
0xff,0x77,0xe6,0xf7,0xff,0x76,0xe6,0xf7,0xff,0x75,0xe6,0xf7,0xff,0x75,0xe6,0xf7,
0xff,0x74,0xe6,0xf7,0xff,0x73,0xe6,0xf7,0xff,0x73,0xe5,0xf7,0xff,0x72,0xe5,0xf7,
0xff,0x71,0xe5,0xf7,0xff,0x71,0xe5,0xf7,0xff,0x70,0xe5,0xf7,0xff,0x70,0xe5,0xf7,
0xff,0x6f,0xe5,0xf7,0xff,0x6f,0xe5,0xf7,0xff,0x6e,0xe5,0xf7,0xff,0x6e,0xe5,0xf7,
0xff,0x6d,0xe5,0xf7,0xff,0x6d,0xe5,0xf7,0xff,0x6b,0xe5,0xf7,0xff,0x6b,0xe5,0xf7,
0xff,0x6b,0xe4,0xf7,0xff,0x67,0xe0,0xf5,0xff,0x8f,0xff,0xff,0xff,0x30,0x78,0xab,
0xea,0xcf,0xc7,0xd4,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,
0x0,0xba,0xf3,0xfb,0xba,0xab,0xf0,0xfa,0xff,0xad,0xf0,0xfa,0xfc,0xac,0xf0,0xfa,
0xff,0xab,0xf0,0xfa,0xff,0xab,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,
0xff,0xa9,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,0xff,0xa8,0xf0,0xfa,0xff,0xa8,0xf0,0xfa,
0xff,0xa7,0xf0,0xfa,0xff,0xa6,0xf0,0xfa,0xff,0xa6,0xef,0xfa,0xff,0xa5,0xef,0xfa,
0xff,0xa5,0xef,0xfa,0xff,0xa4,0xef,0xfa,0xff,0xa3,0xef,0xfa,0xff,0xa3,0xef,0xfa,
0xff,0xa2,0xee,0xfa,0xff,0xa1,0xee,0xfa,0xff,0xa1,0xee,0xfa,0xff,0xa0,0xee,0xfa,
0xff,0x9f,0xee,0xfa,0xff,0x9e,0xee,0xfa,0xff,0x9e,0xee,0xfa,0xff,0x9d,0xee,0xfa,
0xff,0x9c,0xee,0xfa,0xff,0x9b,0xee,0xfa,0xff,0x9b,0xed,0xfa,0xff,0x9a,0xed,0xfa,
0xff,0x99,0xed,0xf9,0xff,0x98,0xed,0xf9,0xff,0x98,0xec,0xf9,0xff,0x97,0xec,0xf9,
0xff,0x96,0xec,0xf9,0xff,0x95,0xec,0xf9,0xff,0x94,0xec,0xf9,0xff,0x94,0xec,0xf9,
0xff,0x93,0xec,0xf9,0xff,0x92,0xec,0xf9,0xff,0x91,0xec,0xf9,0xff,0x90,0xeb,0xf9,
0xff,0x8f,0xeb,0xf9,0xff,0x8f,0xeb,0xf9,0xff,0x8e,0xeb,0xf9,0xff,0x8c,0xeb,0xf9,
0xff,0x8b,0xea,0xf9,0xff,0x8a,0xea,0xf9,0xff,0x8a,0xea,0xf9,0xff,0x89,0xea,0xf9,
0xff,0x88,0xea,0xf9,0xff,0x87,0xea,0xf8,0xff,0x86,0xea,0xf8,0xff,0x86,0xea,0xf8,
0xff,0x85,0xe9,0xf8,0xff,0x84,0xe9,0xf8,0xff,0x83,0xe9,0xf8,0xff,0x82,0xe9,0xf8,
0xff,0x82,0xe9,0xf8,0xff,0x81,0xe8,0xf8,0xff,0x80,0xe8,0xf8,0xff,0x7f,0xe8,0xf8,
0xff,0x7e,0xe8,0xf8,0xff,0x7e,0xe8,0xf8,0xff,0x7d,0xe8,0xf8,0xff,0x7c,0xe8,0xf8,
0xff,0x7b,0xe8,0xf8,0xff,0x7b,0xe8,0xf8,0xff,0x7a,0xe7,0xf8,0xff,0x79,0xe7,0xf8,
0xff,0x79,0xe7,0xf8,0xff,0x78,0xe7,0xf8,0xff,0x77,0xe7,0xf8,0xff,0x76,0xe6,0xf7,
0xff,0x76,0xe6,0xf7,0xff,0x75,0xe6,0xf7,0xff,0x74,0xe6,0xf7,0xff,0x74,0xe6,0xf7,
0xff,0x73,0xe6,0xf7,0xff,0x73,0xe5,0xf7,0xff,0x72,0xe5,0xf7,0xff,0x71,0xe5,0xf7,
0xff,0x71,0xe5,0xf7,0xff,0x70,0xe5,0xf7,0xff,0x70,0xe5,0xf7,0xff,0x6f,0xe5,0xf7,
0xff,0x6f,0xe5,0xf7,0xff,0x6e,0xe5,0xf7,0xff,0x6e,0xe5,0xf7,0xff,0x6d,0xe5,0xf7,
0xff,0x6d,0xe5,0xf7,0xff,0x6b,0xe5,0xf7,0xff,0x6b,0xe5,0xf7,0xff,0x6a,0xe4,0xf7,
0xff,0x6a,0xe4,0xf7,0xff,0x65,0xdf,0xf4,0xff,0x91,0xff,0xff,0xff,0x2d,0x7d,0xa4,
0xf4,0x9c,0x96,0xae,0x1e,0x0,0x0,0x0,0x0,0xfb,0xfb,0xfc,0x2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,
0x0,0xba,0xf3,0xfb,0xa8,0xab,0xf1,0xfb,0xff,0xac,0xf0,0xfa,0xfa,0xab,0xf0,0xfa,
0xff,0xab,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,
0xff,0xa9,0xf0,0xfa,0xff,0xa8,0xf0,0xfa,0xff,0xa8,0xf0,0xfa,0xff,0xa7,0xf0,0xfa,
0xff,0xa6,0xf0,0xfa,0xff,0xa6,0xef,0xfa,0xff,0xa5,0xef,0xfa,0xff,0xa5,0xef,0xfa,
0xff,0xa4,0xef,0xfa,0xff,0xa3,0xef,0xfa,0xff,0xa3,0xef,0xfa,0xff,0xa2,0xee,0xfa,
0xff,0xa1,0xee,0xfa,0xff,0xa0,0xee,0xfa,0xff,0xa0,0xee,0xfa,0xff,0x9f,0xee,0xfa,
0xff,0x9e,0xee,0xfa,0xff,0x9e,0xee,0xfa,0xff,0x9d,0xee,0xfa,0xff,0x9c,0xee,0xfa,
0xff,0x9b,0xee,0xfa,0xff,0x9b,0xed,0xfa,0xff,0x9a,0xed,0xfa,0xff,0x99,0xed,0xf9,
0xff,0x98,0xed,0xf9,0xff,0x97,0xec,0xf9,0xff,0x97,0xec,0xf9,0xff,0x96,0xec,0xf9,
0xff,0x95,0xec,0xf9,0xff,0x94,0xec,0xf9,0xff,0x93,0xec,0xf9,0xff,0x93,0xec,0xf9,
0xff,0x92,0xec,0xf9,0xff,0x91,0xec,0xf9,0xff,0x90,0xeb,0xf9,0xff,0x8f,0xeb,0xf9,
0xff,0x8f,0xeb,0xf9,0xff,0x8e,0xeb,0xf9,0xff,0x8c,0xea,0xf9,0xff,0x8b,0xea,0xf9,
0xff,0x8a,0xea,0xf9,0xff,0x8a,0xea,0xf9,0xff,0x89,0xea,0xf9,0xff,0x88,0xea,0xf9,
0xff,0x87,0xea,0xf8,0xff,0x86,0xea,0xf8,0xff,0x85,0xea,0xf8,0xff,0x85,0xe9,0xf8,
0xff,0x84,0xe9,0xf8,0xff,0x83,0xe9,0xf8,0xff,0x82,0xe9,0xf8,0xff,0x81,0xe9,0xf8,
0xff,0x81,0xe8,0xf8,0xff,0x82,0xe8,0xf8,0xff,0x81,0xe8,0xf8,0xff,0x80,0xe8,0xf8,
0xff,0x80,0xe8,0xf8,0xff,0x7f,0xe8,0xf8,0xff,0x7e,0xe8,0xf8,0xff,0x7d,0xe8,0xf8,
0xff,0x7d,0xe8,0xf8,0xff,0x7c,0xe7,0xf8,0xff,0x7b,0xe7,0xf8,0xff,0x7a,0xe7,0xf8,
0xff,0x7a,0xe7,0xf8,0xff,0x79,0xe7,0xf8,0xff,0x79,0xe7,0xf7,0xff,0x78,0xe6,0xf7,
0xff,0x77,0xe6,0xf7,0xff,0x77,0xe6,0xf7,0xff,0x76,0xe6,0xf7,0xff,0x75,0xe6,0xf7,
0xff,0x75,0xe5,0xf7,0xff,0x74,0xe5,0xf7,0xff,0x74,0xe5,0xf7,0xff,0x73,0xe5,0xf7,
0xff,0x72,0xe5,0xf7,0xff,0x72,0xe4,0xf5,0xff,0x71,0xe4,0xf5,0xff,0x70,0xe4,0xf5,
0xff,0x70,0xe4,0xf5,0xff,0x6f,0xe4,0xf5,0xff,0x6f,0xe4,0xf5,0xff,0x6e,0xe4,0xf5,
0xff,0x6d,0xe4,0xf5,0xff,0x6c,0xe4,0xf6,0xff,0x6a,0xe4,0xf7,0xff,0x6a,0xe4,0xf7,
0xff,0x6a,0xe4,0xf7,0xff,0x64,0xdf,0xf4,0xff,0x90,0xff,0xff,0xff,0x2f,0x82,0xab,
0xff,0x94,0x8e,0xa9,0x2e,0x0,0x0,0x0,0x0,0xfb,0xfb,0xfc,0x2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,
0x0,0xb8,0xf2,0xfb,0x9a,0xab,0xf0,0xfa,0xff,0xac,0xf0,0xfa,0xfa,0xab,0xf0,0xfa,
0xff,0xaa,0xf0,0xfa,0xff,0xaa,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,
0xff,0xa8,0xf0,0xfa,0xff,0xa8,0xf0,0xfa,0xff,0xa7,0xf0,0xfa,0xff,0xa6,0xf0,0xfa,
0xff,0xa6,0xef,0xfa,0xff,0xa5,0xef,0xfa,0xff,0xa4,0xef,0xfa,0xff,0xa4,0xef,0xfa,
0xff,0xa3,0xef,0xfa,0xff,0xa2,0xef,0xfa,0xff,0xa2,0xee,0xfa,0xff,0xa1,0xee,0xfa,
0xff,0xa0,0xee,0xfa,0xff,0xa0,0xee,0xfa,0xff,0x9f,0xee,0xfa,0xff,0x9e,0xee,0xfa,
0xff,0x9e,0xee,0xfa,0xff,0x9d,0xee,0xfa,0xff,0x9c,0xee,0xfa,0xff,0x9b,0xed,0xfa,
0xff,0x9b,0xed,0xfa,0xff,0x9a,0xed,0xf9,0xff,0x99,0xed,0xf9,0xff,0x98,0xed,0xf9,
0xff,0x97,0xec,0xf9,0xff,0x97,0xec,0xf9,0xff,0x96,0xec,0xf9,0xff,0x95,0xec,0xf9,
0xff,0x94,0xec,0xf9,0xff,0x93,0xec,0xf9,0xff,0x93,0xec,0xf9,0xff,0x92,0xec,0xf9,
0xff,0x91,0xec,0xf9,0xff,0x90,0xeb,0xf9,0xff,0x8f,0xeb,0xf9,0xff,0x8f,0xeb,0xf9,
0xff,0x8d,0xeb,0xf9,0xff,0x8c,0xea,0xf9,0xff,0x8b,0xea,0xf9,0xff,0x8a,0xea,0xf9,
0xff,0x89,0xea,0xf9,0xff,0x89,0xea,0xf9,0xff,0x88,0xea,0xf9,0xff,0x87,0xea,0xf8,
0xff,0x86,0xea,0xf8,0xff,0x85,0xea,0xf8,0xff,0x85,0xe9,0xf8,0xff,0x84,0xe9,0xf8,
0xff,0x83,0xe9,0xf8,0xff,0x82,0xe9,0xf8,0xff,0x81,0xe9,0xf8,0xff,0x81,0xe8,0xf8,
0xff,0x80,0xe8,0xf8,0xff,0x77,0xe6,0xf7,0xff,0x75,0xe6,0xf7,0xff,0x75,0xe6,0xf7,
0xff,0x74,0xe6,0xf7,0xff,0x73,0xe6,0xf7,0xff,0x72,0xe6,0xf7,0xff,0x71,0xe6,0xf7,
0xff,0x71,0xe5,0xf7,0xff,0x70,0xe5,0xf7,0xff,0x6f,0xe5,0xf7,0xff,0x6e,0xe5,0xf7,
0xff,0x6e,0xe5,0xf7,0xff,0x6d,0xe4,0xf6,0xff,0x6c,0xe4,0xf6,0xff,0x6b,0xe4,0xf6,
0xff,0x6b,0xe4,0xf6,0xff,0x6a,0xe4,0xf6,0xff,0x69,0xe4,0xf6,0xff,0x69,0xe3,0xf6,
0xff,0x68,0xe3,0xf6,0xff,0x67,0xe3,0xf6,0xff,0x67,0xe3,0xf6,0xff,0x66,0xe3,0xf6,
0xff,0x65,0xe3,0xf5,0xff,0x67,0xe6,0xfc,0xff,0x67,0xe8,0xff,0xff,0x66,0xe8,0xff,
0xff,0x66,0xe8,0xff,0xff,0x65,0xe8,0xff,0xff,0x65,0xe8,0xff,0xff,0x63,0xe8,0xff,
0xff,0x62,0xe7,0xff,0xff,0x67,0xe5,0xfa,0xff,0x6b,0xe4,0xf6,0xff,0x6a,0xe4,0xf7,
0xff,0x6a,0xe4,0xf7,0xff,0x64,0xdf,0xf5,0xff,0x8f,0xff,0xff,0xff,0x36,0x8d,0xc3,
0xff,0x7c,0x79,0x9f,0x38,0x0,0x0,0x0,0x0,0xfb,0xfb,0xfc,0x2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x4,0x0,0x0,0x0,
0x0,0xbb,0xf3,0xfb,0x8e,0xa9,0xf0,0xfa,0xff,0xac,0xf0,0xfa,0xfa,0xaa,0xf0,0xfa,
0xff,0xaa,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,0xff,0xa9,0xf0,0xfa,0xff,0xa8,0xf0,0xfa,
0xff,0xa8,0xf0,0xfa,0xff,0xa7,0xf0,0xfa,0xff,0xa6,0xf0,0xfa,0xff,0xa6,0xef,0xfa,
0xff,0xa5,0xef,0xfa,0xff,0xa4,0xef,0xfa,0xff,0xa4,0xef,0xfa,0xff,0xa3,0xef,0xfa,
0xff,0xa2,0xee,0xfa,0xff,0xa2,0xee,0xfa,0xff,0xa1,0xee,0xfa,0xff,0xa0,0xee,0xfa,
0xff,0x9f,0xee,0xfa,0xff,0x9f,0xee,0xfa,0xff,0x9e,0xee,0xfa,0xff,0x9d,0xee,0xfa,
0xff,0x9d,0xee,0xfa,0xff,0x9c,0xee,0xfa,0xff,0x9b,0xed,0xfa,0xff,0x9a,0xed,0xfa,
0xff,0x99,0xed,0xf9,0xff,0x99,0xed,0xf9,0xff,0x98,0xed,0xf9,0xff,0x97,0xec,0xf9,
0xff,0x97,0xec,0xf9,0xff,0x96,0xec,0xf9,0xff,0x95,0xec,0xf9,0xff,0x94,0xec,0xf9,
0xff,0x93,0xec,0xf9,0xff,0x93,0xec,0xf9,0xff,0x92,0xec,0xf9,0xff,0x91,0xec,0xf9,
0xff,0x90,0xeb,0xf9,0xff,0x8f,0xeb,0xf9,0xff,0x8e,0xeb,0xf9,0xff,0x8d,0xeb,0xf9,
0xff,0x8c,0xea,0xf9,0xff,0x8b,0xea,0xf9,0xff,0x8a,0xea,0xf9,0xff,0x89,0xea,0xf9,
0xff,0x89,0xea,0xf9,0xff,0x88,0xea,0xf8,0xff,0x87,0xea,0xf8,0xff,0x86,0xea,0xf8,
0xff,0x85,0xea,0xf8,0xff,0x85,0xe9,0xf8,0xff,0x84,0xe9,0xf8,0xff,0x83,0xe9,0xf8,
0xff,0x82,0xe9,0xf8,0xff,0x81,0xe9,0xf8,0xff,0x81,0xe8,0xf8,0xff,0x80,0xe8,0xf8,
0xff,0x7f,0xe8,0xf8,0xff,0xa7,0xef,0xfa,0xff,0xb0,0xf1,0xfb,0xff,0xad,0xf1,0xfb,
0xff,0xad,0xf1,0xfb,0xff,0xad,0xf1,0xfb,0xff,0xac,0xf1,0xfb,0xff,0xac,0xf0,0xfb,
0xff,0xab,0xf0,0xfb,0xff,0xab,0xf0,0xfb,0xff,0xaa,0xf0,0xfb,0xff,0xaa,0xf0,0xfb,
0xff,0xa9,0xef,0xfa,0xff,0xa9,0xef,0xfa,0xff,0xa9,0xef,0xfa,0xff,0xa8,0xef,0xfa,
0xff,0xa8,0xef,0xfa,0xff,0xa7,0xef,0xfa,0xff,0xa7,0xef,0xfa,0xff,0xa7,0xef,0xfa,
0xff,0xa6,0xef,0xfa,0xff,0xa6,0xef,0xfa,0xff,0xa6,0xef,0xfa,0xff,0xa5,0xef,0xf9,
0xff,0xa6,0xf1,0xfe,0xff,0x9c,0xdf,0xd3,0xff,0x96,0xd4,0xba,0xff,0x97,0xd6,0xbf,
0xff,0x96,0xd6,0xbe,0xff,0x97,0xd6,0xbe,0xff,0x95,0xd6,0xbe,0xff,0x95,0xd6,0xbf,
0xff,0x98,0xd5,0xba,0xff,0x7b,0xde,0xe1,0xff,0x67,0xe5,0xfb,0xff,0x6a,0xe4,0xf6,
0xff,0x6a,0xe4,0xf7,0xff,0x64,0xe0,0xf5,0xff,0x8c,0xff,0xff,0xfc,0x40,0xa3,0xca,
0xff,0x54,0x56,0x7f,0x42,0x0,0x0,0x0,0x0,0xfb,0xfb,0xfc,0x2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xff,0xff,0x4,0x0,0x0,0x0,
0x0,0xca,0xf5,0xfc,0x84,0xa9,0xf1,0xfb,0xff,0xae,0xf0,0xfa,0xf6,0xac,0xf0,0xfa,
0xfa,0xab,0xf0,0xfa,0xfa,0xaa,0xf0,0xfa,0xfa,0xaa,0xf0,0xfa,0xfa,0xa9,0xf0,0xfa,
0xfa,0xa9,0xf0,0xfa,0xfa,0xa8,0xf0,0xfa,0xfa,0xa7,0xef,0xfa,0xfa,0xa7,0xef,0xfa,
0xfa,0xa6,0xef,0xfa,0xfa,0xa6,0xef,0xfa,0xfa,0xa5,0xef,0xfa,0xfa,0xa4,0xef,0xfa,
0xfa,0xa4,0xef,0xfa,0xfa,0xa3,0xef,0xfa,0xfa,0xa2,0xef,0xfa,0xfa,0xa2,0xef,0xfa,
0xfa,0xa1,0xee,0xfa,0xfa,0xa0,0xee,0xfa,0xfa,0x9f,0xee,0xfa,0xfa,0x9f,0xee,0xfa,
0xfa,0x9e,0xee,0xfa,0xfa,0x9d,0xee,0xfa,0xfa,0x9c,0xed,0xfa,0xfa,0x9c,0xed,0xfa,
0xfa,0x9b,0xed,0xf9,0xfa,0x9a,0xed,0xf9,0xfa,0x9a,0xed,0xf9,0xfa,0x99,0xed,0xf9,
0xfa,0x98,0xed,0xf9,0xfa,0x97,0xed,0xf9,0xfa,0x96,0xec,0xf9,0xfa,0x96,0xec,0xf9,
0xfa,0x95,0xec,0xf9,0xfa,0x94,0xec,0xf9,0xfa,0x93,0xec,0xf9,0xfa,0x92,0xeb,0xf9,
0xfa,0x91,0xeb,0xf9,0xfa,0x91,0xeb,0xf9,0xfa,0x90,0xeb,0xf9,0xfa,0x8e,0xeb,0xf9,
0xfa,0x8e,0xeb,0xf9,0xfa,0x8d,0xeb,0xf9,0xfa,0x8c,0xeb,0xf9,0xfa,0x8b,0xeb,0xf9,
0xfa,0x8a,0xeb,0xf9,0xfa,0x89,0xeb,0xf8,0xfa,0x89,0xeb,0xf8,0xfa,0x88,0xeb,0xf8,
0xfa,0x87,0xea,0xf8,0xfa,0x86,0xe9,0xf8,0xfa,0x85,0xea,0xf8,0xfa,0x84,0xea,0xf8,
0xfa,0x84,0xe9,0xf8,0xfa,0x83,0xe9,0xf8,0xfa,0x80,0xe8,0xf8,0xff,0x7f,0xe8,0xf8,
0xff,0x7c,0xe7,0xf8,0xff,0xe4,0xfa,0xfd,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfc,
0xff,0xff,0xff,0xff,0xff,0xef,0xd7,0x9a,0xff,0xe1,0xb5,0x48,0xff,0xe4,0xbb,0x58,
0xff,0xe4,0xbb,0x55,0xff,0xe5,0xbb,0x55,0xff,0xe5,0xbb,0x56,0xff,0xe3,0xbd,0x58,
0xff,0xee,0xb9,0x4b,0xff,0xa4,0xd2,0xae,0xff,0x61,0xe7,0xff,0xff,0x6a,0xe3,0xf4,
0xff,0x6a,0xe2,0xf5,0xff,0x68,0xe1,0xf5,0xfa,0x8b,0xfd,0xff,0xf8,0x57,0xb7,0xd0,
0xff,0x56,0x5b,0x83,0x50,0x0,0x0,0x0,0x0,0xfb,0xfb,0xfc,0x2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xff,0xff,0x2,0x0,0x0,0x0,
0x0,0xcc,0xf6,0xfc,0x60,0xa5,0xf1,0xfb,0xff,0xb2,0xf6,0xfd,0xfc,0xaf,0xf5,0xfc,
0xff,0xae,0xf5,0xfc,0xff,0xae,0xf5,0xfc,0xff,0xad,0xf5,0xfc,0xff,0xad,0xf5,0xfc,
0xff,0xac,0xf5,0xfc,0xff,0xab,0xf4,0xfc,0xff,0xaa,0xf4,0xfc,0xff,0xaa,0xf4,0xfc,
0xff,0xa9,0xf4,0xfc,0xff,0xa8,0xf4,0xfc,0xff,0xa8,0xf4,0xfc,0xff,0xa7,0xf4,0xfc,
0xff,0xa6,0xf4,0xfc,0xff,0xa5,0xf4,0xfc,0xff,0xa5,0xf4,0xfc,0xff,0xa4,0xf4,0xfc,
0xff,0xa3,0xf3,0xfc,0xff,0xa2,0xf3,0xfc,0xff,0xa1,0xf3,0xfc,0xff,0xa0,0xf3,0xfc,
0xff,0xa0,0xf3,0xfc,0xff,0x9f,0xf3,0xfc,0xff,0x9e,0xf3,0xfc,0xff,0x9d,0xf3,0xfc,
0xff,0x9c,0xf3,0xfc,0xff,0x9b,0xf2,0xfc,0xff,0x9b,0xf2,0xfc,0xff,0x9a,0xf2,0xfc,
0xff,0x99,0xf2,0xfc,0xff,0x98,0xf2,0xfc,0xff,0x97,0xf2,0xfc,0xff,0x96,0xf2,0xfc,
0xff,0x95,0xf2,0xfc,0xff,0x95,0xf1,0xfc,0xff,0x94,0xf1,0xfc,0xff,0x93,0xf1,0xfc,
0xff,0x92,0xf1,0xfc,0xff,0x91,0xf1,0xfc,0xff,0x90,0xf0,0xfc,0xff,0x8f,0xf0,0xfc,
0xff,0x8e,0xf0,0xfc,0xff,0x8d,0xf0,0xfc,0xff,0x8c,0xf0,0xfc,0xff,0x8b,0xf0,0xfb,
0xff,0x8b,0xf0,0xfb,0xff,0x8a,0xf0,0xfb,0xff,0x89,0xf0,0xfb,0xff,0x88,0xef,0xfb,
0xff,0x87,0xef,0xfb,0xff,0x86,0xef,0xfb,0xff,0x85,0xef,0xfb,0xff,0x84,0xef,0xfb,
0xff,0x83,0xee,0xfb,0xff,0x82,0xed,0xfb,0xff,0x82,0xeb,0xf9,0xff,0x80,0xe8,0xf8,
0xff,0x76,0xe7,0xf8,0xff,0xce,0xf6,0xfc,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,
0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,
0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,
0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,
0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,
0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfc,0xfe,0xfc,
0xff,0xfe,0xff,0xff,0xff,0xed,0xe1,0xb5,0xff,0xd9,0xba,0x56,0xff,0xdd,0xc0,0x66,
0xff,0xdc,0xbf,0x63,0xff,0xdc,0xc0,0x63,0xff,0xdd,0xc0,0x63,0xff,0xdb,0xc0,0x65,
0xff,0xe5,0xbe,0x59,0xff,0xae,0xd0,0xa2,0xff,0x60,0xe6,0xff,0xff,0x74,0xe8,0xf7,
0xff,0x75,0xf6,0xfe,0xff,0x66,0xe8,0xf9,0xff,0x81,0xff,0xff,0xfc,0x33,0xa1,0xc7,
0xff,0x60,0x61,0x87,0x52,0x0,0x0,0x0,0x0,0xfb,0xfb,0xfc,0x2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xf7,0xfe,0xfe,0x4,0xcb,0xf6,0xfc,0x68,0xc2,0xf4,0xfb,0x8a,0xc1,0xf4,0xfb,
0x84,0xc0,0xf4,0xfb,0x86,0xc0,0xf4,0xfb,0x86,0xc0,0xf4,0xfb,0x86,0xbf,0xf4,0xfb,
0x86,0xbe,0xf4,0xfb,0x86,0xbe,0xf4,0xfb,0x86,0xbd,0xf4,0xfb,0x86,0xbd,0xf4,0xfb,
0x86,0xbc,0xf4,0xfb,0x86,0xbc,0xf3,0xfb,0x86,0xbc,0xf3,0xfb,0x86,0xbb,0xf3,0xfb,
0x86,0xba,0xf3,0xfb,0x86,0xba,0xf3,0xfb,0x86,0xba,0xf3,0xfb,0x86,0xb9,0xf2,0xfb,
0x86,0xb8,0xf3,0xfb,0x86,0xb8,0xf3,0xfb,0x86,0xb7,0xf3,0xfb,0x86,0xb6,0xf3,0xfb,
0x86,0xb6,0xf2,0xfb,0x86,0xb6,0xf2,0xfb,0x86,0xb5,0xf2,0xfb,0x86,0xb4,0xf2,0xfb,
0x86,0xb4,0xf2,0xfb,0x86,0xb3,0xf2,0xfb,0x86,0xb3,0xf2,0xfb,0x86,0xb2,0xf2,0xfb,
0x86,0xb1,0xf1,0xfb,0x86,0xb1,0xf1,0xfb,0x86,0xb0,0xf1,0xfb,0x86,0xb0,0xf1,0xfb,
0x86,0xaf,0xf1,0xfb,0x86,0xaf,0xf1,0xfb,0x86,0xae,0xf1,0xfb,0x86,0xae,0xf1,0xfb,
0x86,0xac,0xf1,0xfb,0x86,0xac,0xf0,0xfb,0x86,0xab,0xf0,0xfb,0x86,0xab,0xf0,0xfb,
0x86,0xaa,0xf0,0xfb,0x86,0xaa,0xf0,0xfb,0x86,0xa9,0xf0,0xfa,0x86,0xa9,0xf0,0xfa,
0x86,0xa8,0xf0,0xfa,0x86,0xa7,0xf0,0xfa,0x86,0xa7,0xef,0xfa,0x86,0xa6,0xef,0xfa,
0x86,0xa5,0xef,0xfa,0x86,0xa5,0xef,0xfa,0x86,0xa4,0xef,0xfa,0x86,0xa4,0xef,0xfa,
0x86,0xa3,0xef,0xfa,0x86,0xa7,0xef,0xfa,0x84,0x85,0xea,0xf9,0xe8,0x7f,0xe9,0xf8,
0xff,0x74,0xe6,0xf7,0xff,0xc2,0xf4,0xfc,0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfd,
0xff,0xff,0xff,0xff,0xff,0xf3,0xe8,0xc4,0xff,0xdd,0xba,0x54,0xff,0xe0,0xc0,0x63,
0xff,0xdf,0xc0,0x60,0xff,0xdf,0xc0,0x60,0xff,0xdf,0xc0,0x61,0xff,0xde,0xc1,0x63,
0xff,0xe7,0xbf,0x58,0xff,0xbb,0xcc,0x93,0xff,0x66,0xe6,0xff,0xfc,0x85,0xf7,0xff,
0xff,0x28,0x9e,0xca,0xd8,0x7d,0xd9,0xee,0x7e,0x91,0xf5,0xff,0x8c,0x66,0xbb,0xe3,
0x6c,0xda,0xd5,0xe8,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0xe9,0xf8,0xc8,0x7f,0xe9,0xf9,
0xff,0x73,0xe6,0xf7,0xfc,0xb0,0xf1,0xfb,0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfd,
0xff,0xff,0xff,0xff,0xff,0xf7,0xee,0xd4,0xff,0xdd,0xbd,0x58,0xff,0xe0,0xc1,0x63,
0xff,0xe0,0xc1,0x61,0xff,0xe0,0xc1,0x61,0xff,0xe0,0xc1,0x61,0xff,0xe0,0xc2,0x62,
0xff,0xe6,0xc1,0x5b,0xff,0xc9,0xc8,0x80,0xff,0x6e,0xe7,0xf9,0xfc,0x86,0xfb,0xff,
0xff,0xb,0x39,0x73,0xb2,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xfe,0xff,0xff,0x4,0xfe,0xff,0xff,0x4,0xfe,0xff,0xff,
0x4,0xfe,0xff,0xff,0x4,0xfe,0xff,0xff,0x4,0xfe,0xff,0xff,0x4,0xfe,0xff,0xff,
0x4,0xfe,0xff,0xff,0x4,0xfe,0xff,0xff,0x4,0xfe,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfc,0xff,0xff,
0x4,0xff,0xff,0xff,0x4,0x0,0x0,0x0,0x0,0x7c,0xe8,0xf8,0xc2,0x80,0xe9,0xf9,
0xff,0x7b,0xe8,0xf8,0xf8,0x83,0xe9,0xf8,0xfa,0x91,0xeb,0xf9,0xfa,0x8e,0xeb,0xf9,
0xfa,0x8e,0xeb,0xf9,0xfa,0x8d,0xeb,0xf9,0xfa,0x8d,0xea,0xf8,0xfa,0x8c,0xea,0xf8,
0xfa,0x8c,0xea,0xf8,0xfa,0x8b,0xea,0xf8,0xfa,0x8b,0xea,0xf8,0xfa,0x8a,0xea,0xf8,
0xfa,0x8a,0xe9,0xf8,0xfa,0x89,0xe9,0xf8,0xfa,0x89,0xe9,0xf8,0xfa,0x88,0xe9,0xf8,
0xfa,0x88,0xe9,0xf8,0xfa,0x87,0xe9,0xf8,0xfa,0x87,0xe9,0xf8,0xfa,0x87,0xe9,0xf8,
0xfa,0x86,0xe9,0xf8,0xfa,0x86,0xe9,0xf8,0xfa,0x85,0xe9,0xf8,0xfa,0x85,0xe9,0xf8,
0xfa,0x84,0xe9,0xf9,0xfa,0x82,0xe7,0xf3,0xfa,0x7e,0xdf,0xdf,0xfa,0x7e,0xdf,0xe0,
0xfa,0x7e,0xdf,0xe0,0xfa,0x7d,0xdf,0xe0,0xfa,0x7d,0xdf,0xe0,0xfa,0x7d,0xdf,0xe0,
0xfa,0x7e,0xdf,0xe0,0xfa,0x7a,0xdf,0xe3,0xfa,0x6d,0xe4,0xf6,0xf8,0x92,0xff,0xff,
0xff,0x1a,0x4e,0x81,0xc2,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x4,0xf9,0xfb,0xfd,
0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x7d,0xe8,0xf8,0xaa,0x78,0xeb,0xfa,
0xff,0x7e,0xee,0xfb,0xfc,0x7a,0xec,0xfb,0xff,0x76,0xec,0xfb,0xff,0x76,0xec,0xfb,
0xff,0x75,0xec,0xfb,0xff,0x74,0xec,0xfb,0xff,0x73,0xeb,0xfa,0xff,0x73,0xeb,0xfa,
0xff,0x72,0xeb,0xfa,0xff,0x71,0xeb,0xfa,0xff,0x71,0xeb,0xfa,0xff,0x70,0xea,0xfa,
0xff,0x6f,0xea,0xfa,0xff,0x6f,0xea,0xfa,0xff,0x6e,0xea,0xfa,0xff,0x6d,0xea,0xfa,
0xff,0x6d,0xea,0xfa,0xff,0x6c,0xea,0xfa,0xff,0x6b,0xea,0xfa,0xff,0x6b,0xea,0xfa,
0xff,0x6a,0xea,0xfa,0xff,0x69,0xea,0xfa,0xff,0x69,0xea,0xfa,0xff,0x68,0xea,0xfa,
0xff,0x68,0xea,0xfa,0xff,0x67,0xe9,0xfb,0xff,0x68,0xeb,0xff,0xff,0x68,0xeb,0xff,
0xff,0x67,0xeb,0xff,0xff,0x66,0xeb,0xff,0xff,0x66,0xeb,0xff,0xff,0x66,0xeb,0xff,
0xff,0x66,0xeb,0xff,0xff,0x66,0xea,0xfe,0xff,0x6f,0xeb,0xf9,0xfc,0x79,0xf9,0xff,
0xff,0xd,0x3d,0x74,0xc4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xfe,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0xcf,0xf7,0xfc,0x26,0xa5,0xef,0xfa,
0x9a,0xa2,0xef,0xfa,0x9e,0xa1,0xef,0xfa,0x9c,0xa1,0xef,0xfa,0x9e,0xa0,0xef,0xfa,
0x9e,0xa0,0xef,0xfa,0x9e,0xa0,0xee,0xfa,0x9e,0x9f,0xee,0xfa,0x9e,0x9e,0xee,0xfa,
0x9e,0x9e,0xee,0xfa,0x9e,0x9e,0xee,0xfa,0x9e,0x9d,0xee,0xfa,0x9e,0x9d,0xee,0xfa,
0x9e,0x9d,0xee,0xfa,0x9e,0x9c,0xee,0xfa,0x9e,0x9b,0xee,0xfa,0x9e,0x9b,0xee,0xfa,
0x9e,0x9a,0xed,0xfa,0x9e,0x9a,0xed,0xfa,0x9e,0x99,0xed,0xfa,0x9e,0x99,0xed,0xf9,
0x9e,0x99,0xed,0xf9,0x9e,0x98,0xed,0xf9,0x9e,0x98,0xed,0xf9,0x9e,0x97,0xed,0xf9,
0x9e,0x97,0xed,0xf9,0x9e,0x96,0xed,0xf9,0x9e,0x96,0xec,0xf8,0x9e,0x96,0xec,0xf8,
0x9e,0x95,0xec,0xf8,0x9e,0x95,0xec,0xf8,0x9e,0x95,0xec,0xf8,0x9e,0x95,0xec,0xf8,
0x9e,0x95,0xec,0xf8,0x9e,0x94,0xec,0xf8,0x9e,0x99,0xef,0xf9,0x9c,0x77,0xe0,0xf8,
0xa2,0x7c,0x9a,0xc8,0x44,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xff,0xff,0x2,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,
0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfd,0xff,0xff,0x4,0xfc,0xff,0xff,
0x4,0xfb,0xfc,0xfd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xfe,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xfc,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xfc,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xfc,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xfc,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xfc,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xfc,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xfc,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xf8,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xf8,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xf8,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xf8,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xf8,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xf8,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xf8,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xf0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xf0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xf0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xf0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xc0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xc0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xc0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xc0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xc0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xc0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xc0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0x80,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0x80,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0x80,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0x80,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0x80,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xfc,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xfe,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xfe,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xfe,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xfe,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
};
static const unsigned char qt_resource_name[] = {
// ???
0x0,0x3,
0x0,0x6b,0x53,0xd0,
0x65,0xb0,
0x52,0x4d,0x7f,0x0,
// Resources
0x0,0x9,
0xa,0x6c,0x38,0x43,
0x0,0x52,
0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x63,0x0,0x65,0x0,0x73,
// Start.png
0x0,0x9,
0x8,0x97,0xe2,0x7,
0x0,0x53,
0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// FILE.ico
0x0,0x8,
0xe,0x8,0x46,0xdf,
0x0,0x46,
0x0,0x49,0x0,0x4c,0x0,0x45,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f,
};
static const unsigned char qt_resource_struct[] = {
// :
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/???
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/???/Resources
0x0,0x0,0x0,0xc,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/???/Resources/Start.png
0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
0x0,0x0,0x1,0x5b,0x6b,0xfe,0x46,0x70,
// :/???/Resources/FILE.ico
0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x68,0xd,
0x0,0x0,0x1,0x5b,0x5b,0xc4,0xf4,0x70,
};
#ifdef QT_NAMESPACE
# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name
# define QT_RCC_MANGLE_NAMESPACE0(x) x
# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b
# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b)
# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \
QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE))
#else
# define QT_RCC_PREPEND_NAMESPACE(name) name
# define QT_RCC_MANGLE_NAMESPACE(name) name
#endif
#ifdef QT_NAMESPACE
namespace QT_NAMESPACE {
#endif
bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
#ifdef QT_NAMESPACE
}
#endif
int QT_RCC_MANGLE_NAMESPACE(qInitResources_LaserScanner)();
int QT_RCC_MANGLE_NAMESPACE(qInitResources_LaserScanner)()
{
QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData)
(0x02, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_LaserScanner)();
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_LaserScanner)()
{
QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData)
(0x02, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
namespace {
struct initializer {
initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_LaserScanner)(); }
~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_LaserScanner)(); }
} dummy;
}
| [
"294296108@qq.com"
] | 294296108@qq.com |
41c98e688ea4bf099316072792532a67ffc2efc3 | c209a641046953f75444c7a044cc332cb1ffc112 | /examples/cxx-api.cxx | ac338ad24f2fc44532026ead641037b5159ef84d | [] | no_license | rapour/cb-cli | 65da0a2e59f4614fdb5e383a64eb9deff1204d4f | 6a8a09305bc9982d47c5ed8b6624b144bc5d9458 | refs/heads/master | 2023-01-07T19:52:11.510037 | 2018-06-09T07:43:34 | 2018-06-09T07:43:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,505 | cxx | #include <regex>
#include <string>
#include <vector>
#include <cctype>
#include <utility>
#include <iomanip>
#include <iostream>
#include "replxx.hxx"
#include "../cpp-readline/src/Console.hpp"
using Replxx = replxx::Replxx;
namespace cr = CppReadline;
using ret = cr::Console::ReturnCode;
// prototypes
Replxx::completions_t hook_completion(std::string const& context, int index, void* user_data);
Replxx::hints_t hook_hint(std::string const& context, int index, Replxx::Color& color, void* user_data);
void hook_color(std::string const& str, Replxx::colors_t& colors, void* user_data);
Replxx::completions_t hook_completion(std::string const& context, int index, void* user_data) {
auto* examples = static_cast<std::vector<std::string>*>(user_data);
Replxx::completions_t completions;
std::string prefix {context.substr(index)};
for (auto const& e : *examples) {
if (e.compare(0, prefix.size(), prefix) == 0) {
completions.emplace_back(e.c_str());
}
}
return completions;
}
Replxx::hints_t hook_hint(std::string const& context, int index, Replxx::Color& color, void* user_data) {
auto* examples = static_cast<std::vector<std::string>*>(user_data);
Replxx::hints_t hints;
// only show hint if prefix is at least 'n' chars long
// or if prefix begins with a specific character
std::string prefix {context.substr(index)};
if (prefix.size() >= 2 || (! prefix.empty() && prefix.at(0) == '.')) {
for (auto const& e : *examples) {
if (e.compare(0, prefix.size(), prefix) == 0) {
hints.emplace_back(e.substr(prefix.size()).c_str());
}
}
}
// set hint color to green if single match found
if (hints.size() == 1) {
color = Replxx::Color::GREEN;
}
return hints;
}
void hook_color(std::string const& context, Replxx::colors_t& colors, void* user_data) {
auto* regex_color = static_cast<std::vector<std::pair<std::string, Replxx::Color>>*>(user_data);
// highlight matching regex sequences
for (auto const& e : *regex_color) {
size_t pos {0};
std::string str = context;
std::smatch match;
while(std::regex_search(str, match, std::regex(e.first))) {
std::string c {match[0]};
pos += std::string(match.prefix()).size();
for (size_t i = 0; i < c.size(); ++i) {
colors.at(pos + i) = e.second;
}
pos += c.size();
str = match.suffix();
}
}
}
unsigned info(const std::vector<std::string> &) {
std::cout << "Welcome to the example console. This command does not really\n"
<< "do anything aside from printing this statement. Thus it does\n"
<< "not need to look into the arguments that are passed to it.\n";
return ret::Ok;
}
int main() {
cr::Console c("\x1b[1;32mcb-cli\x1b[0m> ");
// registering commands
c.registerCommand(".info", info, "this command shows the manual for this application.");
// words to be completed
std::vector<std::string> examples;
// highlight specific words
// a regex string, and a color
// the order matters, the last match will take precedence
using cl = Replxx::Color;
std::vector<std::pair<std::string, cl>> regex_color {
// single chars
{"\\`", cl::BRIGHTCYAN},
{"\\'", cl::BRIGHTBLUE},
{"\\\"", cl::BRIGHTBLUE},
{"\\-", cl::BRIGHTBLUE},
{"\\+", cl::BRIGHTBLUE},
{"\\=", cl::BRIGHTBLUE},
{"\\/", cl::BRIGHTBLUE},
{"\\*", cl::BRIGHTBLUE},
{"\\^", cl::BRIGHTBLUE},
{"\\.", cl::BRIGHTMAGENTA},
{"\\(", cl::BRIGHTMAGENTA},
{"\\)", cl::BRIGHTMAGENTA},
{"\\[", cl::BRIGHTMAGENTA},
{"\\]", cl::BRIGHTMAGENTA},
{"\\{", cl::BRIGHTMAGENTA},
{"\\}", cl::BRIGHTMAGENTA},
// color keywords
{"color_black", cl::BLACK},
{"color_red", cl::RED},
{"color_green", cl::GREEN},
{"color_brown", cl::BROWN},
{"color_blue", cl::BLUE},
{"color_magenta", cl::MAGENTA},
{"color_cyan", cl::CYAN},
{"color_lightgray", cl::LIGHTGRAY},
{"color_gray", cl::GRAY},
{"color_brightred", cl::BRIGHTRED},
{"color_brightgreen", cl::BRIGHTGREEN},
{"color_yellow", cl::YELLOW},
{"color_brightblue", cl::BRIGHTBLUE},
{"color_brightmagenta", cl::BRIGHTMAGENTA},
{"color_brightcyan", cl::BRIGHTCYAN},
{"color_white", cl::WHITE},
{"color_normal", cl::NORMAL},
// commands
{"\\.help", cl::BRIGHTMAGENTA},
{"\\.history", cl::BRIGHTMAGENTA},
{"\\.quit", cl::BRIGHTMAGENTA},
{"\\.exit", cl::BRIGHTMAGENTA},
{"\\.clear", cl::BRIGHTMAGENTA},
{"\\.prompt", cl::BRIGHTMAGENTA},
// numbers
{"[\\-|+]{0,1}[0-9]+", cl::YELLOW}, // integers
{"[\\-|+]{0,1}[0-9]*\\.[0-9]+", cl::YELLOW}, // decimals
{"[\\-|+]{0,1}[0-9]+e[\\-|+]{0,1}[0-9]+", cl::YELLOW}, // scientific notation
// strings
{"\".*?\"", cl::BRIGHTGREEN}, // double quotes
{"\'.*?\'", cl::BRIGHTGREEN}, // single quotes
};
for(auto k: c.getRegisteredCommands()) {
examples.push_back(k);
regex_color.push_back({k, cl::BRIGHTMAGENTA});
}
// init the repl
Replxx rx;
rx.install_window_change_handler();
// the path to the history file
std::string history_file {"./replxx_history.txt"};
// load the history file if it exists
rx.history_load(history_file);
// set the max history size
rx.set_max_history_size(12);
// set the max input line size
rx.set_max_line_size(128);
// set the max number of hint rows to show
rx.set_max_hint_rows(8);
// set the callbacks
rx.set_completion_callback(hook_completion, static_cast<void*>(&examples));
rx.set_highlighter_callback(hook_color, static_cast<void*>(®ex_color));
rx.set_hint_callback(hook_hint, static_cast<void*>(&examples));
// display initial welcome message
std::cout
<< "Welcome to confidential-bank client\n"
<< "version[confidential-bank]:CB-0.0.1\n"
<< "Press 'tab' to view autocompletions\n"
<< "Type '.help' for help \n"
<< "Type '.quit' or '.exit' to exit\n\n";
// set the repl prompt
std::string prompt {"\x1b[1;32mcb-cli\x1b[0m> "};
int retCode;
// main repl loop
for (;;) {
// display the prompt and retrieve input from the user
char const* cinput = rx.input(prompt);
if (cinput == nullptr) {
// reached EOF
std::cout << "\n";
break;
}
retCode = c.readLine(cinput);
if(retCode == ret::Quit) {
rx.history_add(std::string{cinput});
break;
} else
{
if(retCode >= 1)
std::cout << "Error in reading commands. use '.help' command for more information." << std::endl;
rx.history_add(std::string{cinput});
continue;
}
}
// save the history
rx.history_save(history_file);
std::cout << "\nExiting cb-cli\n";
}
| [
"icdct1994@gmail.com"
] | icdct1994@gmail.com |
3aeb39b41876d699f8360ac68b9fd3a0c7f4fc27 | a1a518ba04855820f531c705c36028e4d7435a86 | /src/relay/backend/contrib/cutlass/codegen.cc | f154f8641a645a6b7a040eb0f737e298793affac | [
"Apache-2.0",
"BSD-3-Clause",
"Zlib",
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"Unlicense",
"BSD-2-Clause"
] | permissive | ZQPei/tvm | b47f7a3f16400774eefb5ca882a0053e46176a52 | 6c32f976522aa1d923fcfe364f05a7860cb346b4 | refs/heads/main | 2021-12-10T22:33:44.248391 | 2021-11-30T23:58:05 | 2021-11-30T23:58:05 | 203,511,290 | 0 | 1 | Apache-2.0 | 2021-11-25T09:28:32 | 2019-08-21T05:17:34 | Python | UTF-8 | C++ | false | false | 21,062 | cc | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
/*!
* \file src/relay/backend/contrib/cutlass/codegen.cc
* \brief Implementation of CUTLASS codegen.
*/
#include <tvm/relay/attrs/nn.h>
#include <tvm/relay/expr_functor.h>
#include <tvm/relay/transform.h>
#include <tvm/relay/type.h>
#include <tvm/runtime/module.h>
#include <tvm/runtime/registry.h>
#include <fstream>
#include <numeric>
#include <sstream>
#include "../../utils.h"
#include "../codegen_c/codegen_c.h"
namespace tvm {
namespace relay {
namespace contrib {
using namespace backend;
using Str2StrMap = std::unordered_map<std::string, std::string>;
static Str2StrMap dtype_map = {{"float16", "cutlass::half_t"}, {"float32", "float"}};
constexpr const char* kAnyDim = "Any";
std::string GetDimAsStr(ObjectRef dim) {
if (auto d = dim.as<IntImmNode>()) {
return std::to_string(d->value);
}
return kAnyDim;
}
inline void CutlassPrint(std::ostringstream& os, const std::string& stmt, int indent = 2) {
for (int i = 0; i < indent; ++i) {
os << " ";
}
os << stmt;
}
Str2StrMap GemmArgsCommon(const Map<String, ObjectRef>& attrs) {
Str2StrMap args;
auto arg0_dtype = std::string(attrs["arg0_dtype"].as<StringObj>()->data);
auto arg1_dtype = std::string(attrs["arg1_dtype"].as<StringObj>()->data);
auto ret_dtype = std::string(attrs["ret_dtype"].as<StringObj>()->data);
args["ElementInputA"] = dtype_map.at(arg0_dtype);
args["ElementInputB"] = dtype_map.at(arg1_dtype);
args["ElementOutput"] = dtype_map.at(ret_dtype);
args["op_def"] = std::string(attrs["cutlass_op_def"].as<StringObj>()->data);
args["op_name"] = std::string(attrs["cutlass_op_name"].as<StringObj>()->data);
args["op_type"] = std::string(attrs["op_type"].as<StringObj>()->data);
args["lda"] = std::string(attrs["lda"].as<StringObj>()->data);
args["ldb"] = std::string(attrs["ldb"].as<StringObj>()->data);
args["ldc"] = std::string(attrs["ldc"].as<StringObj>()->data);
return args;
}
Str2StrMap DenseArgs(const Map<String, ObjectRef>& attrs) {
Str2StrMap args = GemmArgsCommon(attrs);
auto arg0_shape = attrs["arg0_shape"].as<ArrayNode>();
auto arg1_shape = attrs["arg1_shape"].as<ArrayNode>();
args["M"] = GetDimAsStr(arg0_shape->at(0));
args["K"] = GetDimAsStr(arg0_shape->at(1));
args["N"] = GetDimAsStr(arg1_shape->at(0));
return args;
}
Str2StrMap BatchMatmulArgs(const Map<String, ObjectRef>& attrs) {
Str2StrMap args = GemmArgsCommon(attrs);
args["batch"] = GetDimAsStr(attrs["batch"]);
args["batch_stride_A"] = GetDimAsStr(attrs["batch_stride_A"]);
args["batch_stride_B"] = GetDimAsStr(attrs["batch_stride_B"]);
args["batch_stride_C"] = GetDimAsStr(attrs["batch_stride_C"]);
auto arg0_shape = attrs["arg0_shape"].as<ArrayNode>();
auto arg1_shape = attrs["arg1_shape"].as<ArrayNode>();
args["M"] = GetDimAsStr(arg0_shape->at(1));
args["K"] = GetDimAsStr(arg0_shape->at(2));
args["N"] = GetDimAsStr(arg1_shape->at(1));
return args;
}
void AppendPrologue(std::ostringstream& gemm_decl, const Str2StrMap& attrs,
const std::vector<std::string>& func_args, const std::string& kernel,
bool has_bias, bool is_gelu, int m_axis_idx, int n_axis_idx, int k_axis_idx) {
CutlassPrint(gemm_decl, "using ElementInputA = " + attrs.at("ElementInputA") + ";\n");
CutlassPrint(gemm_decl, "using ElementInputB = " + attrs.at("ElementInputB") + ";\n");
CutlassPrint(gemm_decl, "using ElementOutput = " + attrs.at("ElementOutput") + ";\n");
CutlassPrint(gemm_decl, "using ElementComputeEpilogue = " + attrs.at("ElementOutput") + ";\n");
CutlassPrint(gemm_decl, attrs.at("op_def"));
CutlassPrint(gemm_decl, "using Gemm = Operation_" + attrs.at("op_name") + ";\n");
auto get_dim = [&attrs, &func_args](const std::string& axis, int arg_idx, int axis_idx) {
if (attrs.at(axis) == kAnyDim) {
return func_args[arg_idx] + "->shape[" + std::to_string(axis_idx) + "]";
} else {
return attrs.at(axis);
}
};
CutlassPrint(gemm_decl, "int M = " + get_dim("M", 0, m_axis_idx) + ";\n");
CutlassPrint(gemm_decl, "int N = " + get_dim("N", 1, n_axis_idx) + ";\n");
CutlassPrint(gemm_decl, "int K = " + get_dim("K", 0, k_axis_idx) + ";\n");
CutlassPrint(gemm_decl, "cutlass::gemm::GemmCoord problem_size(M, N, K);\n");
CutlassPrint(gemm_decl, "ElementComputeEpilogue alpha = ElementComputeEpilogue(1);\n");
if (is_gelu) {
// GeLU epilogue does not compile with NoBetaScaling, so we explicitly specify the scale.
CutlassPrint(gemm_decl, "ElementComputeEpilogue beta = ElementComputeEpilogue(1);\n");
} else {
CutlassPrint(gemm_decl, "ElementComputeEpilogue beta = ElementComputeEpilogue(0);\n");
}
ICHECK(func_args.size() >= 2);
CutlassPrint(gemm_decl, "void* ptr_a = (void*)(" + func_args[0] + "->data);\n");
CutlassPrint(gemm_decl, "void* ptr_b = (void*)(" + func_args[1] + "->data);\n");
if (has_bias) {
ICHECK(func_args.size() >= 3);
CutlassPrint(gemm_decl, "void* ptr_c_bias = (void*)(" + func_args[2] + "->data);\n");
}
CutlassPrint(gemm_decl, "void* ptr_out = (void*)(out0);\n");
CutlassPrint(gemm_decl, "using " + kernel + " = Operation_" + attrs.at("op_name") + ";\n");
CutlassPrint(gemm_decl, "typename " + kernel + "::Arguments arguments{\n");
CutlassPrint(gemm_decl, " problem_size,\n");
}
void AppendGemmExecute(std::ostringstream& gemm_decl, const std::string& kernel) {
// Using the arguments, query for extra workspace required for matrix multiplication computation
CutlassPrint(gemm_decl,
"size_t workspace_size = " + kernel + "::get_workspace_size(arguments);\n");
// Allocate workspace memory
CutlassPrint(gemm_decl,
"cutlass::device_memory::allocation<uint8_t> workspace(workspace_size);\n");
// Instantiate CUTLASS kernel depending on template
CutlassPrint(gemm_decl, kernel + " gemm_op;\n");
// Check the problem size is supported or not
CutlassPrint(gemm_decl, "cutlass::Status status = gemm_op.can_implement(arguments);\n");
CutlassPrint(gemm_decl, "CHECK(status == cutlass::Status::kSuccess);\n");
// Initialize CUTLASS kernel with arguments and workspace pointer
CutlassPrint(gemm_decl, "status = gemm_op.initialize(arguments, workspace.get());\n");
CutlassPrint(gemm_decl, "CHECK(status == cutlass::Status::kSuccess);\n");
// Launch initialized CUTLASS kernel
CutlassPrint(gemm_decl, "status = gemm_op();\n");
CutlassPrint(gemm_decl, "CHECK(status == cutlass::Status::kSuccess);\n");
}
std::string DenseOp(std::string id, const Str2StrMap& attrs,
const std::vector<std::string>& func_args) {
bool has_bias = false;
bool is_gelu =
attrs.at("op_type").find("cutlass.dense_bias_gelu") != std::string::npos; // fp32 or fp16
if (attrs.at("op_type") == "cutlass.dense_bias" ||
attrs.at("op_type") == "cutlass.dense_bias_relu" || is_gelu) {
has_bias = true;
}
std::ostringstream gemm_decl;
AppendPrologue(gemm_decl, attrs, func_args, "Gemm", has_bias, is_gelu, 0, 0, 1);
CutlassPrint(gemm_decl, " {static_cast<ElementInputA*>(ptr_a), " + attrs.at("lda") + "},\n");
CutlassPrint(gemm_decl, " {static_cast<ElementInputB*>(ptr_b), " + attrs.at("ldb") + "},\n");
if (has_bias) {
CutlassPrint(gemm_decl, " {static_cast<ElementOutput*>(ptr_c_bias), 0},\n");
} else {
CutlassPrint(gemm_decl, " {static_cast<ElementOutput*>(ptr_out), " + attrs.at("ldc") + "},\n");
}
CutlassPrint(gemm_decl, " {static_cast<ElementOutput*>(ptr_out), " + attrs.at("ldc") + "},\n");
if (has_bias && !is_gelu) {
CutlassPrint(gemm_decl, " {alpha},\n");
} else {
// For GeLU, we explicitly specify the scale.
CutlassPrint(gemm_decl, " {alpha, beta},\n");
}
CutlassPrint(gemm_decl, " 1};\n"); // split_k_slices
AppendGemmExecute(gemm_decl, "Gemm");
return gemm_decl.str();
}
std::string BatchMatmulOp(std::string id, const Str2StrMap& attrs,
const std::vector<std::string>& func_args) {
std::ostringstream gemm_decl;
AppendPrologue(gemm_decl, attrs, func_args, "BatchedGemm", false, false, 1, 1, 2);
auto get_batch_stride = [&attrs, &func_args](const std::string& name, int arg0_idx, int arg1_idx,
int arg0_axis_idx, int arg1_axis_idx) {
if (attrs.at(name) == kAnyDim) {
return func_args[arg0_idx] + "->shape[" + std::to_string(arg0_axis_idx) + "] * " +
func_args[arg1_idx] + "->shape[" + std::to_string(arg1_axis_idx) + "]";
} else {
return attrs.at(name);
}
};
CutlassPrint(gemm_decl, " {static_cast<ElementInputA*>(ptr_a), " + attrs.at("lda") + "},\n");
CutlassPrint(gemm_decl, get_batch_stride("batch_stride_A", 0, 0, 1, 2) + ",\n");
CutlassPrint(gemm_decl, " {static_cast<ElementInputB*>(ptr_b), " + attrs.at("ldb") + "},\n");
CutlassPrint(gemm_decl, get_batch_stride("batch_stride_B", 1, 1, 1, 2) + ",\n");
CutlassPrint(gemm_decl, " {static_cast<ElementOutput*>(ptr_out), " + attrs.at("ldc") + "},\n");
CutlassPrint(gemm_decl, get_batch_stride("batch_stride_C", 0, 1, 1, 1) + ",\n");
CutlassPrint(gemm_decl, " {static_cast<ElementOutput*>(ptr_out), " + attrs.at("ldc") + "},\n");
CutlassPrint(gemm_decl, get_batch_stride("batch_stride_C", 0, 1, 1, 1) + ",\n");
CutlassPrint(gemm_decl, " {alpha, beta},\n");
if (attrs.at("batch") == kAnyDim) {
CutlassPrint(gemm_decl, func_args[0] + "->shape[0]" + "};\n");
} else {
CutlassPrint(gemm_decl, attrs.at("batch") + "};\n");
}
AppendGemmExecute(gemm_decl, "BatchedGemm");
return gemm_decl.str();
}
class CodegenCutlass : public MemoizedExprTranslator<std::vector<Output>>, public CodegenCBase {
public:
CodegenCutlass(const std::string& id, const Map<String, ObjectRef>& attrs) {
this->ext_func_id_ = id;
this->attrs_ = attrs;
}
std::vector<Output> VisitExprDefault_(const Object* op) final {
LOG(FATAL) << "Cutlass codegen doesn't support: " << op->GetTypeKey();
return {};
}
std::vector<Output> VisitExpr_(const VarNode* node) final {
ext_func_args_.push_back(GetRef<Var>(node));
Output output;
output.name = node->name_hint();
return {output};
}
std::vector<Output> VisitExpr_(const CallNode* call) final {
const auto* func = call->op.as<FunctionNode>();
ICHECK(func) << "Only composite function is supported for CUTLASS.";
GenerateBodyOutput ret = GenerateCompositeFunctionCall(func, call);
ext_func_body_.push_back(ret.decl);
return ret.outputs;
}
std::string JIT(const std::vector<Output>& out) {
code_stream_ << "void " << ext_func_id_ << "_(";
for (const auto& arg : ext_func_args_) {
code_stream_ << "DLTensor* " << arg->name_hint() << ", ";
}
for (size_t i = 0; i < out.size() - 1; ++i) {
code_stream_ << out[i].dtype << "* out" << i << ", ";
}
code_stream_ << out.back().dtype << "* out" << out.size() - 1 << ") {\n";
this->EnterScope();
// Function body
for (auto decl : buf_decl_) {
this->PrintIndents();
code_stream_ << decl << "\n";
}
code_stream_ << "\n";
for (auto stmt : ext_func_body_) {
this->PrintIndents();
code_stream_ << stmt << "\n";
}
this->ExitScope();
code_stream_ << "}\n";
this->GenerateBackendCFunc(ext_func_id_, ext_func_args_, const_array_name_, out, true);
return code_stream_.str();
}
private:
std::vector<std::string> GetArgumentNames(const CallNode* call) {
std::vector<std::string> arg_names;
for (size_t i = 0; i < call->args.size(); ++i) {
auto res = VisitExpr(call->args[i]);
for (const auto& out : res) {
arg_names.push_back(out.name);
}
}
return arg_names;
}
GenerateBodyOutput GenerateCompositeFunctionCall(const FunctionNode* callee,
const CallNode* caller) {
const auto pattern_name = callee->GetAttr<runtime::String>(attr::kComposite);
ICHECK(pattern_name.defined()) << "Only functions with composite attribute are supported.";
if (pattern_name == "cutlass.dense") {
const auto* dense_call = GetRootCall(callee->body.as<CallNode>(), 0, {"nn.dense"});
return GenerateBody(dense_call, "cutlass_dense", GetArgumentNames(caller),
DenseArgs(std::ref(attrs_)));
} else if (pattern_name == "cutlass.dense_bias") {
const CallNode* current_call = callee->body.as<CallNode>();
std::string add_or_bias_add = current_call->op.as<OpNode>()->name;
const auto* dense_call =
GetRootCall(callee->body.as<CallNode>(), 1, {"nn.dense", add_or_bias_add});
return GenerateBody(dense_call, "cutlass_dense_bias", GetArgumentNames(caller),
DenseArgs(std::ref(attrs_)));
} else if (pattern_name == "cutlass.dense_bias_relu") {
const CallNode* current_call = callee->body.as<CallNode>();
std::string add_or_bias_add = current_call->args[0].as<CallNode>()->op.as<OpNode>()->name;
const auto* dense_call =
GetRootCall(callee->body.as<CallNode>(), 2, {"nn.dense", add_or_bias_add, "nn.relu"});
return GenerateBody(dense_call, "cutlass_dense_bias_relu", GetArgumentNames(caller),
DenseArgs(std::ref(attrs_)));
} else if (pattern_name == "cutlass.dense_bias_gelu_fp16") {
const CallNode* current_call = callee->body.as<CallNode>();
std::string add_or_bias_add = current_call->args[1].as<CallNode>()->op.as<OpNode>()->name;
const auto* dense_call = GetRootCall(callee->body.as<CallNode>(), 8,
{"nn.dense", add_or_bias_add, "multiply", "cast", "erf",
"cast", "multiply", "add", "multiply"});
return GenerateBody(dense_call, "cutlass_dense_bias_gelu", GetArgumentNames(caller),
DenseArgs(std::ref(attrs_)));
} else if (pattern_name == "cutlass.dense_bias_gelu_fp32") {
const CallNode* current_call = callee->body.as<CallNode>();
std::string add_or_bias_add = current_call->args[1].as<CallNode>()->op.as<OpNode>()->name;
const auto* dense_call = GetRootCall(
callee->body.as<CallNode>(), 6,
{"nn.dense", add_or_bias_add, "multiply", "erf", "multiply", "add", "multiply"});
return GenerateBody(dense_call, "cutlass_dense_bias_gelu", GetArgumentNames(caller),
DenseArgs(std::ref(attrs_)));
} else if (pattern_name == "cutlass.batch_matmul") {
const auto* batch_matmul_call =
GetRootCall(callee->body.as<CallNode>(), 0, {"nn.batch_matmul"});
return GenerateBody(batch_matmul_call, "cutlass_batch_matmul", GetArgumentNames(caller),
BatchMatmulArgs(std::ref(attrs_)));
}
LOG(FATAL) << "Unknown composite function: " << pattern_name;
return {};
}
GenerateBodyOutput GenerateBody(const CallNode* root_call, const std::string& func_name,
const std::vector<std::string>& func_args,
const Str2StrMap& attribute_args) {
// Make function call with input buffers when visiting arguements
ICHECK_GT(func_args.size(), 0);
std::ostringstream decl_stream;
decl_stream << "(" << func_args[0];
for (size_t i = 1; i < func_args.size(); ++i) {
decl_stream << ", " << func_args[i];
}
// Analyze the output buffers
std::vector<Type> out_types;
if (root_call->checked_type()->IsInstance<TupleTypeNode>()) {
auto type_node = root_call->checked_type().as<TupleTypeNode>();
for (auto field : type_node->fields) {
ICHECK(field->IsInstance<TensorTypeNode>());
out_types.push_back(field);
}
} else if (root_call->checked_type()->IsInstance<TensorTypeNode>()) {
ICHECK(root_call->checked_type()->IsInstance<TensorTypeNode>());
out_types.push_back(root_call->checked_type());
} else {
LOG(FATAL) << "Unrecognized type node: " << AsText(root_call->checked_type(), false);
}
GenerateBodyOutput ret;
for (const auto& out_type : out_types) {
const std::string out = "out" + std::to_string(buf_idx_++);
decl_stream << ", " << out;
Output output;
output.name = out;
output.dtype = GetDtypeString(out_type.as<TensorTypeNode>());
output.need_copy = false;
ret.outputs.push_back(output);
}
decl_stream << ");";
if (func_name == "cutlass_dense" || func_name == "cutlass_dense_bias" ||
func_name == "cutlass_dense_bias_relu" || func_name == "cutlass_dense_bias_gelu") {
ret.decl = DenseOp(ext_func_id_, attribute_args, func_args);
} else if (func_name == "cutlass_batch_matmul") {
ret.decl = BatchMatmulOp(ext_func_id_, attribute_args, func_args);
}
return ret;
}
/*! \brief The id of the external cutlass ext_func. */
std::string ext_func_id_{""};
/*! \brief The attrs of the external cutlass ext_func. */
Map<String, ObjectRef> attrs_;
/*!
* \brief The index to track the output buffer. Each kernel will redirect the
* output to a buffer that may be consumed by other kernels.
*/
int buf_idx_{0};
/*! \brief The arguments used by a wrapped function that calls CUTLASS kernels. */
Array<Var> ext_func_args_;
/*! \brief Statement of the function that will be compiled using CUTLASS kernels. */
std::vector<std::string> ext_func_body_;
/*! \brief The array declared to store the constant values. */
std::string const_array_name_;
/*! \brief The declaration of intermediate buffers. */
std::vector<std::string> buf_decl_;
}; // class CodegenCutlass
class CutlassModuleCodegen : public CSourceModuleCodegenBase {
public:
std::pair<std::string, Array<String>> GenCutlassFunc(const Function& func) {
ICHECK(func.defined()) << "Input error: expect a Relay function.";
// Record the external symbol for runtime lookup.
auto sid = GetExtSymbol(func);
const auto* attrs = func->attrs.as<DictAttrsNode>();
ICHECK(attrs != nullptr);
const auto dict = attrs->dict;
CodegenCutlass builder(sid, dict);
auto out = builder.VisitExpr(func->body);
code_stream_ << builder.JIT(out);
return {sid, {}};
}
runtime::Module CreateCSourceModule(const ObjectRef& ref) override {
// create header
code_stream_ << "#include <cstdint>\n";
code_stream_ << "#include <cstdlib>\n";
code_stream_ << "#include <cstring>\n";
code_stream_ << "#include <vector>\n";
code_stream_ << "#include <tvm/runtime/c_runtime_api.h>\n";
code_stream_ << "#include <tvm/runtime/packed_func.h>\n";
code_stream_ << "#include <dlpack/dlpack.h>\n";
// cutlass header
code_stream_ << "#include <cuda_fp16.h>\n";
code_stream_ << "#include <cutlass/cutlass.h>\n";
code_stream_ << "#include <cutlass/util/host_tensor.h>\n";
code_stream_ << "#include <cutlass/util/reference/host/tensor_fill.h>\n";
code_stream_ << "#include <cutlass/gemm/device/gemm.h>\n";
code_stream_ << "#include <cutlass/gemm/device/gemm_batched.h>\n";
code_stream_ << "#include <cutlass/epilogue/thread/linear_combination_bias_relu.h>\n";
code_stream_ << "#include <cutlass/epilogue/thread/linear_combination_gelu.h>\n";
ICHECK(ref->IsInstance<FunctionNode>());
auto res = GenCutlassFunc(Downcast<Function>(ref));
std::string code = code_stream_.str();
String sym = std::get<0>(res);
Array<String> variables = std::get<1>(res);
// Create a CSource module
const auto* pf = runtime::Registry::Get("runtime.CSourceModuleCreate");
ICHECK(pf != nullptr) << "Cannot find CSource module to create the external runtime module";
return (*pf)(code, "cu", Array<String>{sym}, variables);
}
private:
/*! \brief The code stream that will be compiled by NVCC */
std::ostringstream code_stream_;
}; // CutlassModuleCodegen
/*!
* \brief The external cutlass compiler/codegen tool. It takes a Relay
* expression/module and compile it into a runtime module.
*/
runtime::Module CutlassCompiler(const ObjectRef& ref) {
CutlassModuleCodegen cutlass;
return cutlass.CreateCSourceModule(ref);
}
TVM_REGISTER_GLOBAL("relay.ext.cutlass").set_body_typed(CutlassCompiler);
} // namespace contrib
} // namespace relay
} // namespace tvm
| [
"noreply@github.com"
] | ZQPei.noreply@github.com |
0bb7014d694a8abcbe2b3a3af5b50b1ec308c407 | 733d0fc2c854accf7ff5fe4796387f77cefda8c1 | /cpp/include/cudf/ast/detail/linearizer.hpp | 166a0408703c5abaf27cd2914fa7351bbb2c397b | [
"Apache-2.0"
] | permissive | ajschmidt8/cudf | d6a199b724b8836ebf83a65fac7b564c55fd1510 | 3ed87f3cf3fc4c5039301c57c28bd64b062b862a | refs/heads/branch-21.08 | 2023-07-22T16:55:54.199271 | 2021-07-13T14:06:43 | 2021-07-13T14:06:43 | 241,452,538 | 0 | 0 | Apache-2.0 | 2021-02-24T15:20:32 | 2020-02-18T19:47:11 | Cuda | UTF-8 | C++ | false | false | 7,601 | hpp | /*
* Copyright (c) 2020-2021, NVIDIA CORPORATION.
*
* 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.
*/
#pragma once
#include <cudf/ast/operators.hpp>
#include <cudf/scalar/scalar.hpp>
#include <cudf/scalar/scalar_device_view.cuh>
#include <cudf/table/table_view.hpp>
#include <cudf/types.hpp>
#include <cudf/utilities/error.hpp>
namespace cudf {
namespace ast {
// Forward declaration
enum class table_reference;
class literal;
class column_reference;
class expression;
namespace detail {
/**
* @brief Enum defining data reference types used by a node.
*
* This enum is device-specific. For instance, intermediate data references are generated by the
* linearization process but cannot be explicitly created by the user.
*/
enum class device_data_reference_type {
COLUMN, // A value in a table column
LITERAL, // A literal value
INTERMEDIATE // An internal temporary value
};
/**
* @brief A device data reference describes a source of data used by a node.
*
* This is a POD class used to create references describing data type and locations for consumption
* by the `row_evaluator`.
*/
struct alignas(8) device_data_reference {
device_data_reference(device_data_reference_type reference_type,
cudf::data_type data_type,
cudf::size_type data_index,
table_reference table_source);
device_data_reference(device_data_reference_type reference_type,
cudf::data_type data_type,
cudf::size_type data_index);
const device_data_reference_type reference_type; // Source of data
const cudf::data_type data_type; // Type of data
const cudf::size_type data_index; // The column index of a table, index of a
// literal, or index of an intermediate
const table_reference table_source;
inline bool operator==(const device_data_reference& rhs) const
{
return std::tie(data_index, reference_type, table_source) ==
std::tie(rhs.data_index, rhs.reference_type, rhs.table_source);
}
};
// Forward declaration
class linearizer;
/**
* @brief A generic node that can be evaluated to return a value.
*
* This class is a part of a "visitor" pattern with the `linearizer` class.
* Nodes inheriting from this class can accept visitors.
*/
struct node {
virtual cudf::size_type accept(detail::linearizer& visitor) const = 0;
};
/**
* @brief The linearizer traverses an abstract syntax tree to prepare for execution on the device.
*
* This class is part of a "visitor" pattern with the `node` class.
*
* This class does pre-processing work on the host, validating operators and operand data types. It
* traverses downward from a root node in a depth-first fashion, capturing information about
* the nodes and constructing vectors of information that are later used by the device for
* evaluating the abstract syntax tree as a "linear" list of operators whose input dependencies are
* resolved into intermediate data storage in shared memory.
*/
class linearizer {
public:
/**
* @brief Construct a new linearizer object
*
* @param table The table used for evaluating the abstract syntax tree.
*/
linearizer(detail::node const& expr, cudf::table_view table)
: _table(table), _node_count(0), _intermediate_counter()
{
expr.accept(*this);
}
/**
* @brief Get the root data type of the abstract syntax tree.
*
* @return cudf::data_type
*/
cudf::data_type root_data_type() const;
/**
* @brief Get the maximum number of intermediates stored by the abstract syntax tree.
*
* @return cudf::size_type
*/
cudf::size_type intermediate_count() const { return _intermediate_counter.get_max_used(); }
/**
* @brief Get the device data references.
*
* @return std::vector<detail::device_data_reference>
*/
std::vector<detail::device_data_reference> const& data_references() const
{
return _data_references;
}
/**
* @brief Get the operators.
*
* @return std::vector<ast_operator>
*/
std::vector<ast_operator> const& operators() const { return _operators; }
/**
* @brief Get the operator source indices.
*
* @return std::vector<cudf::size_type>
*/
std::vector<cudf::size_type> const& operator_source_indices() const
{
return _operator_source_indices;
}
/**
* @brief Get the literal device views.
*
* @return std::vector<cudf::detail::fixed_width_scalar_device_view_base>
*/
std::vector<cudf::detail::fixed_width_scalar_device_view_base> const& literals() const
{
return _literals;
}
/**
* @brief Visit a literal node.
*
* @param expr Literal node.
* @return cudf::size_type Index of device data reference for the node.
*/
cudf::size_type visit(literal const& expr);
/**
* @brief Visit a column reference node.
*
* @param expr Column reference node.
* @return cudf::size_type Index of device data reference for the node.
*/
cudf::size_type visit(column_reference const& expr);
/**
* @brief Visit an expression node.
*
* @param expr Expression node.
* @return cudf::size_type Index of device data reference for the node.
*/
cudf::size_type visit(expression const& expr);
/**
* @brief Internal class used to track the utilization of intermediate storage locations.
*
* As nodes are being evaluated, they may generate "intermediate" data that is immediately
* consumed. Rather than manifesting this data in global memory, we can store intermediates of any
* fixed width type (up to 8 bytes) by placing them in shared memory. This class helps to track
* the number and indices of intermediate data in shared memory using a give-take model. Locations
* in shared memory can be "taken" and used for storage, "given back," and then later re-used.
* This aims to minimize the maximum amount of shared memory needed at any point during the
* evaluation.
*
*/
class intermediate_counter {
public:
intermediate_counter() : used_values(), max_used(0) {}
cudf::size_type take();
void give(cudf::size_type value);
cudf::size_type get_max_used() const { return max_used; }
private:
cudf::size_type find_first_missing() const;
std::vector<cudf::size_type> used_values;
cudf::size_type max_used;
};
private:
std::vector<cudf::size_type> visit_operands(
std::vector<std::reference_wrapper<const node>> operands);
cudf::size_type add_data_reference(detail::device_data_reference data_ref);
// State information about the "linearized" GPU execution plan
cudf::table_view _table;
cudf::size_type _node_count;
intermediate_counter _intermediate_counter;
std::vector<detail::device_data_reference> _data_references;
std::vector<ast_operator> _operators;
std::vector<cudf::size_type> _operator_source_indices;
std::vector<cudf::detail::fixed_width_scalar_device_view_base> _literals;
};
} // namespace detail
} // namespace ast
} // namespace cudf
| [
"noreply@github.com"
] | ajschmidt8.noreply@github.com |
a46e26363b3fd5e04f65829c541b2d741592efbe | df2b387f79df2f5c36cb4d85d4c2f5f389d945b0 | /matrix3.h | b4bfc2debb47e62a1a818e40a263a92c39136362 | [
"BSD-2-Clause"
] | permissive | chenyangchenyang/jmath | 81c31bfbc4a3f2b04a3eb51b222ecb65d414004a | 8ef797346fe2334769bd2b97873b560879ee0301 | refs/heads/master | 2020-07-28T01:41:18.075779 | 2019-07-26T18:09:45 | 2019-07-26T18:09:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,129 | h | /*
//
// Copyright (c) 1998-2019 Joe Bertolami. All Right Reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * 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, CLUDG, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, DIRECT, CIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (CLUDG, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
// GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSESS TERRUPTION)
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER CONTRACT, STRICT
// LIABILITY, OR TORT (CLUDG NEGLIGENCE OR OTHERWISE) ARISG ANY WAY OF THE
// USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Additional Information:
//
// For more information, visit http://www.bertolami.com.
//
*/
#ifndef __MATRIX3_H__
#define __MATRIX3_H__
#include "base.h"
#include "matrix2.h"
#include "solver.h"
#include "vector3.h"
namespace base {
typedef struct matrix3 {
public:
// Column Major:
//
// 3x3 = | 0 3 6 |
// | 1 4 7 |
// | 2 5 8 |
union {
struct {
float32 m00;
float32 m10;
float32 m20;
float32 m01;
float32 m11;
float32 m21;
float32 m02;
float32 m12;
float32 m22;
};
float32 m[9];
};
public:
matrix3();
matrix3(const matrix2& rhs);
matrix3(const matrix3& rhs);
matrix3(float32 _m00, float32 _m10, float32 _m20, float32 _m01, float32 _m11,
float32 _m21, float32 _m02, float32 _m12, float32 _m22);
~matrix3();
operator matrix2();
inline const matrix3& clear();
inline const matrix3& identity();
inline matrix3 inverse() const;
inline matrix3 transpose() const;
inline float32 determinant() const;
inline matrix3 inverse_transpose() const;
inline float32 trace() const;
inline vector3 eigenvalues() const;
inline matrix3 eigenvectors() const;
inline bool is_diagonal() const;
inline bool is_invertible() const;
float32 minor(uint8 i, uint8 j) const;
inline float32 cofactor(uint8 i, uint8 j) const;
inline matrix3 scale(float32 sx, float32 sy,
float32 sz) const; // creates a scaling matrix
inline matrix3 rotation(
float32 rad, const vector3& axis) const; // creates a rotation matrix
inline matrix3 rotation_x(float32 rad) const;
inline matrix3 rotation_y(float32 rad) const;
inline matrix3 rotation_z(float32 rad) const;
inline const matrix3& orient(const vector3& xaxis, const vector3& yaxis,
const vector3& zaxis);
inline const matrix3& set(matrix3& rhs);
inline const matrix3& set(float32 _m00, float32 _m10, float32 _m20,
float32 _m01, float32 _m11, float32 _m21,
float32 _m02, float32 _m12, float32 _m22);
inline const matrix3& operator=(const matrix3& rhs);
inline const matrix3& operator-=(const matrix3& rhs);
inline const matrix3& operator+=(const matrix3& rhs);
inline const matrix3& operator*=(const matrix3& rhs);
inline const matrix3& operator/=(const matrix3& rhs);
inline bool operator==(const matrix3& rhs) const;
inline bool operator!=(const matrix3& rhs) const;
inline matrix3 operator-(const matrix3& rhs) const;
inline matrix3 operator+(const matrix3& rhs) const;
inline matrix3 operator*(const matrix3& rhs) const;
inline vector3 operator*(const vector3& rhs) const;
inline matrix3 operator*(float32 rhs) const;
inline matrix3 operator/(const matrix3& rhs) const;
// Here we define two variants of our bracket operator. The first
// operator handles the lvalue case:
//
// matrix[0] = ...
//
// The second operator passes a const this pointer, and is useful
// when operating on const references (e.g. any of our other
// operators that receive const CMatrix3 & rhs as a parameter.)
inline float32& operator[](int32 i);
inline const float32& operator[](int32 i) const;
} matrix3;
inline float32 matrix3::cofactor(uint8 i, uint8 j) const {
if (0 == ((i + j) % 2)) {
// Even -- our base is positive
return minor(i, j);
}
// Odd -- our base is negative
return -1.0f * minor(i, j);
}
inline float32 matrix3::trace() const { return (m[0] + m[4] + m[8]); }
inline bool matrix3::is_diagonal() const {
for (uint8 i = 0; i < 9; i++) {
uint8 r = i % 3;
uint8 c = i / 3;
if (m[i] != 0 && r != c) return false;
}
return true;
}
inline bool matrix3::is_invertible() const { return (0 != determinant()); }
inline vector3 matrix3::eigenvalues() const {
// Solve det( M - lamda * Identity ) = 0
// Determinant of a 3xx3:
//
// | a b c |
// | d e f | => aei + bfg + cdh - ceg - bdi - afh
// | g h i |
//
// The characteristic polynomial is defined as:
//
// (a - lambda)(e - lambda)(i - lambda) + bfg + cdh - c(e - lambda)g - bd(i -
// lambda) - (a - lambda)fh
//
// or
//
// -lambda^3 + trace() * lambda ^ 2 - c2 * lambda + determinant()
float32 c2 = 0.0f;
// c2 is the sum of the principal minors of our matrix
for (uint8 i = 0; i < 3; i++) {
c2 += minor(i, i);
}
float32 a = -1;
float32 b = trace();
float32 c = -c2;
float32 d = determinant();
vector3 output;
BASE_SOLVER_SOLUTION solution = {0};
solve_cubic(a, b, c, d, &solution);
output.x = solution.t[0];
output.y = solution.t[1];
output.z = solution.t[2];
return output;
}
inline matrix3 matrix3::eigenvectors() const {
// Solve det( M - lamda * Identity ) * Vi = 0
// We should have one eigenvector per eigen value
matrix3 output;
vector3 values = eigenvalues();
matrix3 i = (*this);
matrix3 m = (*this);
i.identity();
// z = ( m[1] * m[3] - m[4] * ( -1.0 * m[0] ) ) / ( m[7] * m[3] - m[4] * (
// -1.0 * m[6] ) ) y = ( -1.0 * m[0] - m[6] * z ) / m[3] x = 1
//
// First eigen value calculation
matrix3 o1 = m - i * values.x;
float32 z1_denom = (o1.m[7] * o1.m[3] - o1.m[4] * (-1.0 * o1.m[6]));
float32 z1 = (o1.m[1] * o1.m[3] - o1.m[4] * (-1.0 * o1.m[0])) / z1_denom;
float32 y1 = (-1.0 * o1.m[0] - o1.m[6] * z1) / o1.m[3];
float32 x1 = 1.0;
output.m[0] = x1;
output.m[3] = y1;
output.m[6] = z1;
// Second eigen value calculation
matrix3 o2 = m - i * values.y;
float32 z2_denom = (o2.m[7] * o2.m[3] - o2.m[4] * (-1.0 * o2.m[6]));
float32 z2 = (o2.m[1] * o2.m[3] - o2.m[4] * (-1.0 * o2.m[0])) / z2_denom;
float32 y2 = (-1.0 * o2.m[0] - o2.m[6] * z2) / o2.m[3];
float32 x2 = 1.0;
output.m[1] = x2;
output.m[4] = y2;
output.m[7] = z2;
// Third eigen value calculation
matrix3 o3 = m - i * values.z;
float32 z3_denom = (o3.m[7] * o3.m[3] - o3.m[4] * (-1.0 * o3.m[6]));
float32 z3 = (o3.m[1] * o3.m[3] - o3.m[4] * (-1.0 * o3.m[0])) / z3_denom;
float32 y3 = (-1.0 * o3.m[0] - o3.m[6] * z3) / o3.m[3];
float32 x3 = 1.0;
output.m[2] = x3;
output.m[5] = y3;
output.m[8] = z3;
return output;
}
inline const matrix3& matrix3::clear() {
memset(m, 0, 9 * sizeof(float32));
return (*this);
}
inline const matrix3& matrix3::set(matrix3& rhs) { return (*this) = rhs; }
inline const matrix3& matrix3::set(float32 _m00, float32 _m10, float32 _m20,
float32 _m01, float32 _m11, float32 _m21,
float32 _m02, float32 _m12, float32 _m22) {
m[0] = _m00;
m[3] = _m01;
m[6] = _m02;
m[1] = _m10;
m[4] = _m11;
m[7] = _m12;
m[2] = _m20;
m[5] = _m21;
m[8] = _m22;
return (*this);
}
inline const matrix3& matrix3::identity() {
m[0] = m[3] = m[6] = 0;
m[1] = m[4] = m[7] = 0;
m[2] = m[5] = m[8] = 0;
m[0] = m[4] = m[8] = 1.0;
return (*this);
}
inline matrix3 matrix3::transpose() const {
matrix3 output;
output[0] = m[0];
output[3] = m[1];
output[6] = m[2];
output[1] = m[3];
output[4] = m[4];
output[7] = m[5];
output[2] = m[6];
output[5] = m[7];
output[8] = m[8];
return output;
}
inline float32 matrix3::determinant() const {
return m[0] * (m[4] * m[8] - m[5] * m[7]) -
m[3] * (m[1] * m[8] - m[2] * m[7]) +
m[6] * (m[1] * m[5] - m[4] * m[2]);
}
inline matrix3 matrix3::inverse() const {
matrix3 adj;
matrix3 adjT;
matrix3 output;
float32 inv_det = 0;
float32 det = determinant();
if (0 == det) {
return matrix3();
}
inv_det = 1.0f / det;
// calculate adjoint matrix then transpose it
adj[0] = (m[4] * m[8] - m[5] * m[7]);
adj[1] = -1 * (m[3] * m[8] - m[5] * m[6]);
adj[2] = (m[3] * m[7] - m[6] * m[4]);
adj[3] = -1 * (m[1] * m[8] - m[2] * m[7]);
adj[4] = (m[0] * m[8] - m[6] * m[2]);
adj[5] = -1 * (m[0] * m[7] - m[6] * m[1]);
adj[6] = (m[1] * m[5] - m[2] * m[4]);
adj[7] = -1 * (m[0] * m[5] - m[3] * m[2]);
adj[8] = (m[0] * m[4] - m[1] * m[3]);
adjT = adj.transpose();
// now multiply all values by inv_det
for (uint32 i = 0; i < 9; i++) output[i] = adjT[i] * inv_det;
return output;
}
inline matrix3 matrix3::scale(float32 sx, float32 sy, float32 sz) const {
matrix3 output;
output = output.identity();
output[0] = sx;
output[4] = sy;
output[8] = sz;
return output;
}
inline matrix3 matrix3::rotation(float32 rad, const vector3& axis) const {
float32 x, y, z;
float32 c = cos(rad);
float32 s = sin(rad);
float32 t = 1.0f - c;
matrix3 output;
vector3 temp_axis = axis.normalize();
x = temp_axis[0];
y = temp_axis[1];
z = temp_axis[2];
output[0] = t * x * x + c;
output[3] = t * x * y - s * z;
output[6] = t * x * z + s * y;
output[1] = t * x * y + s * z;
output[4] = t * y * y + c;
output[7] = t * y * z - s * x;
output[2] = t * x * z - s * y;
output[5] = t * y * z + s * x;
output[8] = t * z * z + c;
return output;
}
inline matrix3 matrix3::rotation_x(float32 rad) const {
matrix3 output;
output = output.identity();
// This produces the same result as rotation( rad, BASE_X_AXIS )
// without the extra call
output[4] = cos(rad);
output[5] = sin(rad);
output[7] = -sin(rad);
output[8] = cos(rad);
return output;
}
inline matrix3 matrix3::rotation_y(float32 rad) const {
matrix3 output;
output = output.identity();
// This produces the same result as rotation( rad, BASE_Y_AXIS )
// without the extra call
output[0] = cos(rad);
output[2] = sin(rad);
output[6] = -sin(rad);
output[8] = cos(rad);
return output;
}
inline matrix3 matrix3::rotation_z(float32 rad) const {
matrix3 output;
output = output.identity();
// This produces the same result as rotation( rad, BASE_Z_AXIS )
// without the extra call
output[0] = cos(rad);
output[1] = sin(rad);
output[3] = -sin(rad);
output[4] = cos(rad);
return output;
}
inline const matrix3& matrix3::orient(const vector3& xaxis,
const vector3& yaxis,
const vector3& zaxis) {
m[0] = xaxis[0];
m[3] = xaxis[1];
m[6] = xaxis[2];
m[1] = yaxis[0];
m[4] = yaxis[1];
m[7] = yaxis[2];
m[2] = zaxis[0];
m[5] = zaxis[1];
m[8] = zaxis[2];
return (*this);
}
inline matrix3 matrix3::inverse_transpose() const {
matrix3 output = (*this);
output = output.inverse();
output = output.transpose();
return output;
}
inline const matrix3& matrix3::operator=(const matrix3& rhs) {
m[0] = rhs[0];
m[3] = rhs[3];
m[6] = rhs[6];
m[1] = rhs[1];
m[4] = rhs[4];
m[7] = rhs[7];
m[2] = rhs[2];
m[5] = rhs[5];
m[8] = rhs[8];
return (*this);
}
inline bool matrix3::operator==(const matrix3& rhs) const {
for (unsigned char i = 0; i < 9; i++) {
if (m[i] != rhs[i]) return false;
}
return true;
}
inline bool matrix3::operator!=(const matrix3& rhs) const {
return !((*this) == rhs);
}
inline matrix3 matrix3::operator-(const matrix3& rhs) const {
matrix3 output;
for (unsigned char i = 0; i < 9; i++) {
output[i] = m[i] - rhs[i];
}
return output;
}
inline matrix3 matrix3::operator+(const matrix3& rhs) const {
matrix3 output;
for (unsigned char i = 0; i < 9; i++) {
output[i] = m[i] + rhs[i];
}
return output;
}
inline const matrix3& matrix3::operator-=(const matrix3& rhs) {
for (uint8 i = 0; i < 9; i++) {
m[i] = m[i] - rhs[i];
}
return (*this);
}
inline const matrix3& matrix3::operator+=(const matrix3& rhs) {
for (uint8 i = 0; i < 9; i++) {
m[i] = m[i] + rhs[i];
}
return (*this);
}
inline matrix3 matrix3::operator*(const matrix3& rhs) const {
matrix3 output;
uint32 r;
uint32 c;
for (uint32 k = 0; k < 9; k++) {
r = k % 3;
c = (int32)(k / 3);
output[k] = 0.0;
for (int32 i = 0; i < 3; i++) {
output[k] += m[r + (i * 3)] * rhs[(c * 3) + i];
}
}
return output;
}
inline matrix3 matrix3::operator*(float32 rhs) const {
matrix3 out = (*this);
for (uint8 i = 0; i < 9; i++) {
out.m[i] *= rhs;
}
return out;
}
inline const matrix3& matrix3::operator*=(const matrix3& rhs) {
return ((*this) = (*this) * rhs);
}
inline vector3 matrix3::operator*(const vector3& rhs) const {
return vector3(rhs.x * m[0] + rhs.y * m[3] + rhs.z * m[6],
rhs.x * m[1] + rhs.y * m[4] + rhs.z * m[7],
rhs.x * m[2] + rhs.y * m[5] + rhs.z * m[8]);
}
inline matrix3 matrix3::operator/(const matrix3& rhs) const {
if (BASE_PARAM_CHECK) {
for (uint32 i = 0; i < 9; i++) {
if (0 == rhs[i]) {
return matrix3();
}
}
}
matrix3 temp;
for (uint32 i = 0; i < 9; i++) {
temp[i] = 1.0f / rhs[i];
}
return (*this) * temp;
}
inline const matrix3& matrix3::operator/=(const matrix3& rhs) {
return (*this) = (*this) / rhs;
}
inline float32& matrix3::operator[](int32 i) {
if (i > 8) return m[0];
return m[i];
}
inline const float32& matrix3::operator[](int32 i) const {
if (i > 8) return m[0];
return m[i];
}
} // namespace base
#endif // __MATRIX3_H__
| [
"noreply@github.com"
] | chenyangchenyang.noreply@github.com |
bfe01a3606afe3b612ad54872672e86f3457302b | 26d3df4594960f2d12d4c674310e87e70c2b3389 | /sprout/operation/realign_to.hpp | 43f5ef5535283e63f90ec80a3d873cb0bcd718fb | [
"BSL-1.0"
] | permissive | VD-15/Sprout | e2ff06c2ec6515ea70dee0d410955db8cd1d9dc9 | f85f3de543353e746f5c1440e909488592b37ae7 | refs/heads/master | 2022-12-22T05:05:15.528416 | 2020-09-28T13:40:42 | 2020-09-28T13:40:42 | 298,625,230 | 0 | 0 | null | 2020-09-25T16:29:32 | 2020-09-25T16:29:32 | null | UTF-8 | C++ | false | false | 670 | hpp | /*=============================================================================
Copyright (c) 2011-2019 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
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)
=============================================================================*/
#ifndef SPROUT_OPERATION_REALIGN_TO_HPP
#define SPROUT_OPERATION_REALIGN_TO_HPP
#include <sprout/config.hpp>
#include <sprout/operation/fixed/realign_to.hpp>
#include <sprout/operation/fit/realign_to.hpp>
#endif // #ifndef SPROUT_OPERATION_REALIGN_TO_HPP
| [
"bolero.murakami@gmail.com"
] | bolero.murakami@gmail.com |
b07dbbd12a8b33e50122ecafbca4dd0f62422269 | c317a56a5a0eb5afce7a60db6d0b4d51617bc552 | /Source/Rade/Weapon/ConstructorWeapon.h | 6ab437bfd3ae2fec2ea622b752e0154bcc13946d | [
"Apache-2.0"
] | permissive | zhaishengfu/Rade | 8d3dd5c0bdb4c00be07275cd1d2aac8e742940cc | bab9fb61a056ba0dddf222b9223ab2007dc90ab7 | refs/heads/master | 2020-05-30T14:47:01.581040 | 2016-08-18T20:15:47 | 2016-08-18T20:15:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,835 | h | // Copyright 2015-2016 Vagen Ayrapetyan
#pragma once
#include "Weapon/Weapon.h"
#include "ConstructorWeapon.generated.h"
// Base for Constructor Weapon (Minecraft Weapon)
UCLASS()
class RADE_API AConstructorWeapon : public AWeapon
{
GENERATED_BODY()
public:
AConstructorWeapon(const FObjectInitializer& ObjectInitializer);
virtual void BeginPlay()override;
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// Draw Box Properties and Events
// Box Draw Size
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "DrawBox")
float BoxDrawSize = 50;
// Box Draw Update Speed
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "DrawBox")
float BoxDrawUpdate = 0.2f;
// Box Draw Color
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "DrawBox")
FColor DrawBoxColor = FColor::White;
// Box Draw thickness
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "DrawBox")
float DrawBoxThickness = 4;
// Cube Draw Timer Handle
FTimerHandle DrawCubeHandle;
// Enable Draw box on client
UFUNCTION(Client, Reliable)
void Client_EnableDrawBox();
virtual void Client_EnableDrawBox_Implementation();
// Disable Draw box on client
UFUNCTION(Client, Reliable)
void Client_DisableDrawBox();
virtual void Client_DisableDrawBox_Implementation();
private:
// Draw Box Event
virtual void DrawBox();
public:
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// Level Block Properties
// Level Block Archetype
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Constructor Weapon")
TSubclassOf <class ALevelBlock> BlockArchetype;
// The Level Block Constructor
UPROPERTY()
class ALevelBlockConstructor* TheLevelBlockConstructor;
// Auto Destroy Block?
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Constructor Weapon")
bool bAutoDestroyBlocks = false;
// Auto Destroy Time
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Constructor Weapon")
float BlockRestoreTime = 3;
// restore Ammo after block Destroyed?
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Constructor Weapon")
bool bRestoreAmmoAfterBlockDestroy = false;
// Restore Ammo with time
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Constructor Weapon")
bool bRestoreAmmo = false;
// Restore Amoo Speed
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Constructor Weapon")
float AmmoRestoreTime = 0.4f;
// Restore Ammo value
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Constructor Weapon")
float AmmoRestoreValue = 1;
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// Fire Events
// The Fire Event
virtual void Fire()override;
// The Alt Fire Event
virtual void AltFire()override;
// Eqquip End
virtual void EquipEnd()override;
// Equip Start
virtual void UnEquipStart()override;
private:
// Ammo restore Event
void AmmoRestore();
// Ammo Restore Timerhandle
FTimerHandle AmmoRestoreHandle;
public:
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// Bluerpint Events
// Blueprint Event: Fire
UFUNCTION(BlueprintImplementableEvent, Category = "Constructor Weapon")
void BP_BlockSpawned();
// Blueprint Event: Fire
UFUNCTION(BlueprintImplementableEvent, Category = "Constructor Weapon")
void BP_BlockDestroyed();
};
| [
"vagenv@gmail.com"
] | vagenv@gmail.com |
27a9bed6f3fac4c97debd983a02922b935344ad7 | af11a8464bf9fbf9edbffd94be191044578a0395 | /lydsy/1725.cpp | 2907dd86ccacb854fad59f2d0e8739646c5b38db | [] | no_license | fjzls2000/MyOICodes | 270f4cc5b7dcacfe1fb5385b31574f912a67aef4 | 639ac2b940a0c3c4ab0275d8cdbe002543848c22 | refs/heads/master | 2020-09-03T06:43:32.783581 | 2020-06-28T18:47:16 | 2020-06-28T18:47:16 | 219,408,729 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,498 | cpp | /**************************************************************
Problem: 1725
User: ZLSer_2015
Language: C++
Result: Accepted
Time:4 ms
Memory:1736 kb
****************************************************************/
#include <iostream>
#include <stdio.h>
#include <algorithm>
#include <memory.h>
#define inf 2147483647
using namespace std;
const int mod = 100000000;
const int Maxn = 1<<13;
int n , m , f[14][Maxn] , ans , mp[14] , ed;
#define getch() getchar()
inline int F() { register int aa , bb , ch;
while(ch = getch() , (ch<'0'||ch>'9') && ch != '-'); ch == '-' ? aa=bb=0 : (aa=ch-'0',bb=1);
while(ch = getch() , ch>='0'&&ch<='9') aa = aa*10 + ch-'0'; return bb ? aa : -aa;
}
int main() {
n = F(); m = F();
for(int i=1; i<=n; ++i)
for(int j=1; j<=m; ++j) {
int tmp = F();
mp[i]<<=1; mp[i]+=tmp;
}
ed = (1<<m)-1;
for(int i=0; i<=ed; ++i) {
if((i & (i>>1)) == 0 && (i | mp[1]) == mp[1])
f[1][i] = 1;
}
for(int i=2; i<=n; ++i) {
for(int j=0; j<=ed; ++j) {
if(f[i-1][j]) {
for(int k=0; k<=ed; ++k) {
if(((j&k) == 0) && ((k|mp[i]) == mp[i]) && ((k & (k>>1)) == 0))
f[i][k] = (f[i][k] + f[i-1][j]) % mod;
}
}
}
}
for(int i=0; i<=ed; ++i) {
ans = (ans + f[n][i]) % mod;
}
printf("%d\n", ans);
} | [
"noreply@github.com"
] | fjzls2000.noreply@github.com |
b6b6d30f773d3b170a16209e4ef74ea4cdef5009 | b7a8af37a67828695c847250fb8918408c502719 | /thirdparty/spdlog_setup/details/third_party/cpptoml.h | 8a0e2ae884792fbc9071c7318f7ec1956c1beb00 | [
"MIT"
] | permissive | Twinkle1087/asyncflow | 48efb799fd0859cb475e59a7656a02dec4d95374 | 7a30b419ebc2df8f14aea086730ed565b55e2fe2 | refs/heads/main | 2023-07-03T10:02:02.459504 | 2021-08-06T02:41:15 | 2021-08-06T02:41:15 | 381,218,140 | 0 | 1 | MIT | 2021-06-29T02:39:39 | 2021-06-29T02:39:39 | null | UTF-8 | C++ | false | false | 91,185 | h | /**
* @file cpptoml.h
* @author Chase Geigle
* @date May 2013
*/
#ifndef CPPTOML_H
#define CPPTOML_H
#include <algorithm>
#include <cassert>
#include <clocale>
#include <cstdint>
#include <cstring>
#include <fstream>
#include <iomanip>
#include <map>
#include <memory>
#include <sstream>
#include <stdexcept>
#include <string>
#include <unordered_map>
#include <vector>
#if __cplusplus > 201103L
#define CPPTOML_DEPRECATED(reason) [[deprecated(reason)]]
#elif defined(__clang__)
#define CPPTOML_DEPRECATED(reason) __attribute__((deprecated(reason)))
#elif defined(__GNUG__)
#define CPPTOML_DEPRECATED(reason) __attribute__((deprecated))
#elif defined(_MSC_VER)
#if _MSC_VER < 1910
#define CPPTOML_DEPRECATED(reason) __declspec(deprecated)
#else
#define CPPTOML_DEPRECATED(reason) [[deprecated(reason)]]
#endif
#endif
namespace cpptoml {
class writer; // forward declaration
class base; // forward declaration
#if defined(CPPTOML_USE_MAP)
// a std::map will ensure that entries a sorted, albeit at a slight
// performance penalty relative to the (default) unordered_map
using string_to_base_map = std::map<std::string, std::shared_ptr<base>>;
#else
// by default an unordered_map is used for best performance as the
// toml specification does not require entries to be sorted
using string_to_base_map =
std::unordered_map<std::string, std::shared_ptr<base>>;
#endif
// if defined, `base` will retain type information in form of an enum class
// such that static_cast can be used instead of dynamic_cast
// #define CPPTOML_NO_RTTI
template <class T> class option {
public:
option() : empty_{true} {
// nothing
}
option(T value) : empty_{false}, value_(std::move(value)) {
// nothing
}
explicit operator bool() const { return !empty_; }
const T &operator*() const { return value_; }
const T *operator->() const { return &value_; }
template <class U> T value_or(U &&alternative) const {
if (!empty_)
return value_;
return static_cast<T>(std::forward<U>(alternative));
}
private:
bool empty_;
T value_;
};
struct local_date {
int year = 0;
int month = 0;
int day = 0;
};
struct local_time {
int hour = 0;
int minute = 0;
int second = 0;
int microsecond = 0;
};
struct zone_offset {
int hour_offset = 0;
int minute_offset = 0;
};
struct local_datetime : local_date, local_time {};
struct offset_datetime : local_datetime, zone_offset {
static inline struct offset_datetime from_zoned(const struct tm &t) {
offset_datetime dt;
dt.year = t.tm_year + 1900;
dt.month = t.tm_mon + 1;
dt.day = t.tm_mday;
dt.hour = t.tm_hour;
dt.minute = t.tm_min;
dt.second = t.tm_sec;
char buf[16];
strftime(buf, 16, "%z", &t);
int offset = std::stoi(buf);
dt.hour_offset = offset / 100;
dt.minute_offset = offset % 100;
return dt;
}
CPPTOML_DEPRECATED("from_local has been renamed to from_zoned")
static inline struct offset_datetime from_local(const struct tm &t) {
return from_zoned(t);
}
static inline struct offset_datetime from_utc(const struct tm &t) {
offset_datetime dt;
dt.year = t.tm_year + 1900;
dt.month = t.tm_mon + 1;
dt.day = t.tm_mday;
dt.hour = t.tm_hour;
dt.minute = t.tm_min;
dt.second = t.tm_sec;
return dt;
}
};
CPPTOML_DEPRECATED("datetime has been renamed to offset_datetime")
typedef offset_datetime datetime;
class fill_guard {
public:
fill_guard(std::ostream &os) : os_(os), fill_{os.fill()} {
// nothing
}
~fill_guard() { os_.fill(fill_); }
private:
std::ostream &os_;
std::ostream::char_type fill_;
};
inline std::ostream &operator<<(std::ostream &os, const local_date &dt) {
fill_guard g{os};
os.fill('0');
using std::setw;
os << setw(4) << dt.year << "-" << setw(2) << dt.month << "-" << setw(2)
<< dt.day;
return os;
}
inline std::ostream &operator<<(std::ostream &os, const local_time <ime) {
fill_guard g{os};
os.fill('0');
using std::setw;
os << setw(2) << ltime.hour << ":" << setw(2) << ltime.minute << ":"
<< setw(2) << ltime.second;
if (ltime.microsecond > 0) {
os << ".";
int power = 100000;
for (int curr_us = ltime.microsecond; curr_us; power /= 10) {
auto num = curr_us / power;
os << num;
curr_us -= num * power;
}
}
return os;
}
inline std::ostream &operator<<(std::ostream &os, const zone_offset &zo) {
fill_guard g{os};
os.fill('0');
using std::setw;
if (zo.hour_offset != 0 || zo.minute_offset != 0) {
if (zo.hour_offset > 0) {
os << "+";
} else {
os << "-";
}
os << setw(2) << std::abs(zo.hour_offset) << ":" << setw(2)
<< std::abs(zo.minute_offset);
} else {
os << "Z";
}
return os;
}
inline std::ostream &operator<<(std::ostream &os, const local_datetime &dt) {
return os << static_cast<const local_date &>(dt) << "T"
<< static_cast<const local_time &>(dt);
}
inline std::ostream &operator<<(std::ostream &os, const offset_datetime &dt) {
return os << static_cast<const local_datetime &>(dt)
<< static_cast<const zone_offset &>(dt);
}
template <class T, class... Ts> struct is_one_of;
template <class T, class V> struct is_one_of<T, V> : std::is_same<T, V> {};
template <class T, class V, class... Ts> struct is_one_of<T, V, Ts...> {
const static bool value =
std::is_same<T, V>::value || is_one_of<T, Ts...>::value;
};
template <class T> class value;
template <class T>
struct valid_value : is_one_of<
T,
std::string,
int64_t,
double,
bool,
local_date,
local_time,
local_datetime,
offset_datetime> {};
template <class T, class Enable = void> struct value_traits;
template <class T> struct valid_value_or_string_convertible {
const static bool value =
valid_value<typename std::decay<T>::type>::value ||
std::is_convertible<T, std::string>::value;
};
template <class T>
struct value_traits<
T,
typename std::enable_if<
valid_value_or_string_convertible<T>::value>::type> {
using value_type = typename std::conditional<
valid_value<typename std::decay<T>::type>::value,
typename std::decay<T>::type,
std::string>::type;
using type = value<value_type>;
static value_type construct(T &&val) { return value_type(val); }
};
template <class T>
struct value_traits<
T,
typename std::enable_if<
!valid_value_or_string_convertible<T>::value &&
std::is_floating_point<typename std::decay<T>::type>::value>::type> {
using value_type = typename std::decay<T>::type;
using type = value<double>;
static value_type construct(T &&val) { return value_type(val); }
};
template <class T>
struct value_traits<
T,
typename std::enable_if<
!valid_value_or_string_convertible<T>::value &&
!std::is_floating_point<typename std::decay<T>::type>::value &&
std::is_signed<typename std::decay<T>::type>::value>::type> {
using value_type = int64_t;
using type = value<int64_t>;
static value_type construct(T &&val) {
if (val < (std::numeric_limits<int64_t>::min)())
throw std::underflow_error{"constructed value cannot be "
"represented by a 64-bit signed "
"integer"};
if (val > (std::numeric_limits<int64_t>::max)())
throw std::overflow_error{"constructed value cannot be represented "
"by a 64-bit signed integer"};
return static_cast<int64_t>(val);
}
};
template <class T>
struct value_traits<
T,
typename std::enable_if<
!valid_value_or_string_convertible<T>::value &&
std::is_unsigned<typename std::decay<T>::type>::value>::type> {
using value_type = int64_t;
using type = value<int64_t>;
static value_type construct(T &&val) {
if (val > static_cast<uint64_t>((std::numeric_limits<int64_t>::max)()))
throw std::overflow_error{"constructed value cannot be represented "
"by a 64-bit signed integer"};
return static_cast<int64_t>(val);
}
};
class array;
class table;
class table_array;
template <class T> struct array_of_trait {
using return_type = option<std::vector<T>>;
};
template <> struct array_of_trait<array> {
using return_type = option<std::vector<std::shared_ptr<array>>>;
};
template <class T>
inline std::shared_ptr<typename value_traits<T>::type> make_value(T &&val);
inline std::shared_ptr<array> make_array();
namespace detail {
template <class T> inline std::shared_ptr<T> make_element();
}
inline std::shared_ptr<table> make_table();
inline std::shared_ptr<table_array> make_table_array(bool is_inline = false);
#if defined(CPPTOML_NO_RTTI)
/// Base type used to store underlying data type explicitly if RTTI is disabled
enum class base_type {
NONE,
STRING,
LOCAL_TIME,
LOCAL_DATE,
LOCAL_DATETIME,
OFFSET_DATETIME,
INT,
FLOAT,
BOOL,
TABLE,
ARRAY,
TABLE_ARRAY
};
/// Type traits class to convert C++ types to enum member
template <class T> struct base_type_traits;
template <> struct base_type_traits<std::string> {
static const base_type type = base_type::STRING;
};
template <> struct base_type_traits<local_time> {
static const base_type type = base_type::LOCAL_TIME;
};
template <> struct base_type_traits<local_date> {
static const base_type type = base_type::LOCAL_DATE;
};
template <> struct base_type_traits<local_datetime> {
static const base_type type = base_type::LOCAL_DATETIME;
};
template <> struct base_type_traits<offset_datetime> {
static const base_type type = base_type::OFFSET_DATETIME;
};
template <> struct base_type_traits<int64_t> {
static const base_type type = base_type::INT;
};
template <> struct base_type_traits<double> {
static const base_type type = base_type::FLOAT;
};
template <> struct base_type_traits<bool> {
static const base_type type = base_type::BOOL;
};
template <> struct base_type_traits<table> {
static const base_type type = base_type::TABLE;
};
template <> struct base_type_traits<array> {
static const base_type type = base_type::ARRAY;
};
template <> struct base_type_traits<table_array> {
static const base_type type = base_type::TABLE_ARRAY;
};
#endif
/**
* A generic base TOML value used for type erasure.
*/
class base : public std::enable_shared_from_this<base> {
public:
virtual ~base() = default;
virtual std::shared_ptr<base> clone() const = 0;
/**
* Determines if the given TOML element is a value.
*/
virtual bool is_value() const { return false; }
/**
* Determines if the given TOML element is a table.
*/
virtual bool is_table() const { return false; }
/**
* Converts the TOML element into a table.
*/
std::shared_ptr<table> as_table() {
if (is_table())
return std::static_pointer_cast<table>(shared_from_this());
return nullptr;
}
/**
* Determines if the TOML element is an array of "leaf" elements.
*/
virtual bool is_array() const { return false; }
/**
* Converts the TOML element to an array.
*/
std::shared_ptr<array> as_array() {
if (is_array())
return std::static_pointer_cast<array>(shared_from_this());
return nullptr;
}
/**
* Determines if the given TOML element is an array of tables.
*/
virtual bool is_table_array() const { return false; }
/**
* Converts the TOML element into a table array.
*/
std::shared_ptr<table_array> as_table_array() {
if (is_table_array())
return std::static_pointer_cast<table_array>(shared_from_this());
return nullptr;
}
/**
* Attempts to coerce the TOML element into a concrete TOML value
* of type T.
*/
template <class T> std::shared_ptr<value<T>> as();
template <class T> std::shared_ptr<const value<T>> as() const;
template <class Visitor, class... Args>
void accept(Visitor &&visitor, Args &&... args) const;
#if defined(CPPTOML_NO_RTTI)
base_type type() const { return type_; }
protected:
base(const base_type t) : type_(t) {
// nothing
}
private:
const base_type type_ = base_type::NONE;
#else
protected:
base() {
// nothing
}
#endif
};
/**
* A concrete TOML value representing the "leaves" of the "tree".
*/
template <class T> class value : public base {
struct make_shared_enabler {
// nothing; this is a private key accessible only to friends
};
template <class U>
friend std::shared_ptr<typename value_traits<U>::type>
cpptoml::make_value(U &&val);
public:
static_assert(valid_value<T>::value, "invalid value type");
std::shared_ptr<base> clone() const override;
value(const make_shared_enabler &, const T &val) : value(val) {
// nothing; note that users cannot actually invoke this function
// because they lack access to the make_shared_enabler.
}
bool is_value() const override { return true; }
/**
* Gets the data associated with this value.
*/
T &get() { return data_; }
/**
* Gets the data associated with this value. Const version.
*/
const T &get() const { return data_; }
private:
T data_;
/**
* Constructs a value from the given data.
*/
#if defined(CPPTOML_NO_RTTI)
value(const T &val) : base(base_type_traits<T>::type), data_(val) {}
#else
value(const T &val) : data_(val) {}
#endif
value(const value &val) = delete;
value &operator=(const value &val) = delete;
};
template <class T>
std::shared_ptr<typename value_traits<T>::type> make_value(T &&val) {
using value_type = typename value_traits<T>::type;
using enabler = typename value_type::make_shared_enabler;
return std::make_shared<value_type>(
enabler{}, value_traits<T>::construct(std::forward<T>(val)));
}
template <class T> inline std::shared_ptr<value<T>> base::as() {
#if defined(CPPTOML_NO_RTTI)
if (type() == base_type_traits<T>::type)
return std::static_pointer_cast<value<T>>(shared_from_this());
else
return nullptr;
#else
return std::dynamic_pointer_cast<value<T>>(shared_from_this());
#endif
}
// special case value<double> to allow getting an integer parameter as a
// double value
template <> inline std::shared_ptr<value<double>> base::as() {
#if defined(CPPTOML_NO_RTTI)
if (type() == base_type::FLOAT)
return std::static_pointer_cast<value<double>>(shared_from_this());
if (type() == base_type::INT) {
auto v = std::static_pointer_cast<value<int64_t>>(shared_from_this());
return make_value<double>(static_cast<double>(v->get()));
}
#else
if (auto v = std::dynamic_pointer_cast<value<double>>(shared_from_this()))
return v;
if (auto v = std::dynamic_pointer_cast<value<int64_t>>(shared_from_this()))
return make_value<double>(static_cast<double>(v->get()));
#endif
return nullptr;
}
template <class T> inline std::shared_ptr<const value<T>> base::as() const {
#if defined(CPPTOML_NO_RTTI)
if (type() == base_type_traits<T>::type)
return std::static_pointer_cast<const value<T>>(shared_from_this());
else
return nullptr;
#else
return std::dynamic_pointer_cast<const value<T>>(shared_from_this());
#endif
}
// special case value<double> to allow getting an integer parameter as a
// double value
template <> inline std::shared_ptr<const value<double>> base::as() const {
#if defined(CPPTOML_NO_RTTI)
if (type() == base_type::FLOAT)
return std::static_pointer_cast<const value<double>>(
shared_from_this());
if (type() == base_type::INT) {
auto v = as<int64_t>();
// the below has to be a non-const value<double> due to a bug in
// libc++: https://llvm.org/bugs/show_bug.cgi?id=18843
return make_value<double>(static_cast<double>(v->get()));
}
#else
if (auto v =
std::dynamic_pointer_cast<const value<double>>(shared_from_this()))
return v;
if (auto v = as<int64_t>()) {
// the below has to be a non-const value<double> due to a bug in
// libc++: https://llvm.org/bugs/show_bug.cgi?id=18843
return make_value<double>(static_cast<double>(v->get()));
}
#endif
return nullptr;
}
/**
* Exception class for array insertion errors.
*/
class array_exception : public std::runtime_error {
public:
array_exception(const std::string &err) : std::runtime_error{err} {}
};
class array : public base {
public:
friend std::shared_ptr<array> make_array();
std::shared_ptr<base> clone() const override;
virtual bool is_array() const override { return true; }
using size_type = std::size_t;
/**
* arrays can be iterated over
*/
using iterator = std::vector<std::shared_ptr<base>>::iterator;
/**
* arrays can be iterated over. Const version.
*/
using const_iterator = std::vector<std::shared_ptr<base>>::const_iterator;
iterator begin() { return values_.begin(); }
const_iterator begin() const { return values_.begin(); }
iterator end() { return values_.end(); }
const_iterator end() const { return values_.end(); }
/**
* Obtains the array (vector) of base values.
*/
std::vector<std::shared_ptr<base>> &get() { return values_; }
/**
* Obtains the array (vector) of base values. Const version.
*/
const std::vector<std::shared_ptr<base>> &get() const { return values_; }
std::shared_ptr<base> at(size_t idx) const { return values_.at(idx); }
/**
* Obtains an array of value<T>s. Note that elements may be
* nullptr if they cannot be converted to a value<T>.
*/
template <class T> std::vector<std::shared_ptr<value<T>>> array_of() const {
std::vector<std::shared_ptr<value<T>>> result(values_.size());
std::transform(
values_.begin(),
values_.end(),
result.begin(),
[&](std::shared_ptr<base> v) { return v->as<T>(); });
return result;
}
/**
* Obtains a option<vector<T>>. The option will be empty if the array
* contains values that are not of type T.
*/
template <class T>
inline typename array_of_trait<T>::return_type get_array_of() const {
std::vector<T> result;
result.reserve(values_.size());
for (const auto &val : values_) {
if (auto v = val->as<T>())
result.push_back(v->get());
else
return {};
}
return {std::move(result)};
}
/**
* Obtains an array of arrays. Note that elements may be nullptr
* if they cannot be converted to a array.
*/
std::vector<std::shared_ptr<array>> nested_array() const {
std::vector<std::shared_ptr<array>> result(values_.size());
std::transform(
values_.begin(),
values_.end(),
result.begin(),
[&](std::shared_ptr<base> v) -> std::shared_ptr<array> {
if (v->is_array())
return std::static_pointer_cast<array>(v);
return std::shared_ptr<array>{};
});
return result;
}
/**
* Add a value to the end of the array
*/
template <class T> void push_back(const std::shared_ptr<value<T>> &val) {
if (values_.empty() || values_[0]->as<T>()) {
values_.push_back(val);
} else {
throw array_exception{"Arrays must be homogenous."};
}
}
/**
* Add an array to the end of the array
*/
void push_back(const std::shared_ptr<array> &val) {
if (values_.empty() || values_[0]->is_array()) {
values_.push_back(val);
} else {
throw array_exception{"Arrays must be homogenous."};
}
}
/**
* Convenience function for adding a simple element to the end
* of the array.
*/
template <class T>
void push_back(T &&val, typename value_traits<T>::type * = 0) {
push_back(make_value(std::forward<T>(val)));
}
/**
* Insert a value into the array
*/
template <class T>
iterator insert(iterator position, const std::shared_ptr<value<T>> &value) {
if (values_.empty() || values_[0]->as<T>()) {
return values_.insert(position, value);
} else {
throw array_exception{"Arrays must be homogenous."};
}
}
/**
* Insert an array into the array
*/
iterator insert(iterator position, const std::shared_ptr<array> &value) {
if (values_.empty() || values_[0]->is_array()) {
return values_.insert(position, value);
} else {
throw array_exception{"Arrays must be homogenous."};
}
}
/**
* Convenience function for inserting a simple element in the array
*/
template <class T>
iterator
insert(iterator position, T &&val, typename value_traits<T>::type * = 0) {
return insert(position, make_value(std::forward<T>(val)));
}
/**
* Erase an element from the array
*/
iterator erase(iterator position) { return values_.erase(position); }
/**
* Clear the array
*/
void clear() { values_.clear(); }
/**
* Reserve space for n values.
*/
void reserve(size_type n) { values_.reserve(n); }
private:
#if defined(CPPTOML_NO_RTTI)
array() : base(base_type::ARRAY) {
// empty
}
#else
array() = default;
#endif
template <class InputIterator>
array(InputIterator begin, InputIterator end) : values_{begin, end} {
// nothing
}
array(const array &obj) = delete;
array &operator=(const array &obj) = delete;
std::vector<std::shared_ptr<base>> values_;
};
inline std::shared_ptr<array> make_array() {
struct make_shared_enabler : public array {
make_shared_enabler() {
// nothing
}
};
return std::make_shared<make_shared_enabler>();
}
namespace detail {
template <> inline std::shared_ptr<array> make_element<array>() {
return make_array();
}
} // namespace detail
/**
* Obtains a option<vector<T>>. The option will be empty if the array
* contains values that are not of type T.
*/
template <>
inline typename array_of_trait<array>::return_type
array::get_array_of<array>() const {
std::vector<std::shared_ptr<array>> result;
result.reserve(values_.size());
for (const auto &val : values_) {
if (auto v = val->as_array())
result.push_back(v);
else
return {};
}
return {std::move(result)};
}
class table;
class table_array : public base {
friend class table;
friend std::shared_ptr<table_array> make_table_array(bool);
public:
std::shared_ptr<base> clone() const override;
using size_type = std::size_t;
/**
* arrays can be iterated over
*/
using iterator = std::vector<std::shared_ptr<table>>::iterator;
/**
* arrays can be iterated over. Const version.
*/
using const_iterator = std::vector<std::shared_ptr<table>>::const_iterator;
iterator begin() { return array_.begin(); }
const_iterator begin() const { return array_.begin(); }
iterator end() { return array_.end(); }
const_iterator end() const { return array_.end(); }
virtual bool is_table_array() const override { return true; }
std::vector<std::shared_ptr<table>> &get() { return array_; }
const std::vector<std::shared_ptr<table>> &get() const { return array_; }
/**
* Add a table to the end of the array
*/
void push_back(const std::shared_ptr<table> &val) { array_.push_back(val); }
/**
* Insert a table into the array
*/
iterator insert(iterator position, const std::shared_ptr<table> &value) {
return array_.insert(position, value);
}
/**
* Erase an element from the array
*/
iterator erase(iterator position) { return array_.erase(position); }
/**
* Clear the array
*/
void clear() { array_.clear(); }
/**
* Reserve space for n tables.
*/
void reserve(size_type n) { array_.reserve(n); }
/**
* Whether or not the table array is declared inline. This mostly
* matters for parsing, where statically defined arrays cannot be
* appended to using the array-of-table syntax.
*/
bool is_inline() const { return is_inline_; }
private:
#if defined(CPPTOML_NO_RTTI)
table_array(bool is_inline = false)
: base(base_type::TABLE_ARRAY), is_inline_(is_inline) {
// nothing
}
#else
table_array(bool is_inline = false) : is_inline_(is_inline) {
// nothing
}
#endif
table_array(const table_array &obj) = delete;
table_array &operator=(const table_array &rhs) = delete;
std::vector<std::shared_ptr<table>> array_;
const bool is_inline_ = false;
};
inline std::shared_ptr<table_array> make_table_array(bool is_inline) {
struct make_shared_enabler : public table_array {
make_shared_enabler(bool mse_is_inline) : table_array(mse_is_inline) {
// nothing
}
};
return std::make_shared<make_shared_enabler>(is_inline);
}
namespace detail {
template <> inline std::shared_ptr<table_array> make_element<table_array>() {
return make_table_array(true);
}
} // namespace detail
// The below are overloads for fetching specific value types out of a value
// where special casting behavior (like bounds checking) is desired
template <class T>
typename std::enable_if<
!std::is_floating_point<T>::value && std::is_signed<T>::value,
option<T>>::type
get_impl(const std::shared_ptr<base> &elem) {
if (auto v = elem->as<int64_t>()) {
if (v->get() < (std::numeric_limits<T>::min)())
throw std::underflow_error{
"T cannot represent the value requested in get"};
if (v->get() > (std::numeric_limits<T>::max)())
throw std::overflow_error{
"T cannot represent the value requested in get"};
return {static_cast<T>(v->get())};
} else {
return {};
}
}
template <class T>
typename std::enable_if<
!std::is_same<T, bool>::value && std::is_unsigned<T>::value,
option<T>>::type
get_impl(const std::shared_ptr<base> &elem) {
if (auto v = elem->as<int64_t>()) {
if (v->get() < 0)
throw std::underflow_error{"T cannot store negative value in get"};
if (static_cast<uint64_t>(v->get()) > (std::numeric_limits<T>::max)())
throw std::overflow_error{
"T cannot represent the value requested in get"};
return {static_cast<T>(v->get())};
} else {
return {};
}
}
template <class T>
typename std::enable_if<
!std::is_integral<T>::value || std::is_same<T, bool>::value,
option<T>>::type
get_impl(const std::shared_ptr<base> &elem) {
if (auto v = elem->as<T>()) {
return {v->get()};
} else {
return {};
}
}
/**
* Represents a TOML keytable.
*/
class table : public base {
public:
friend class table_array;
friend std::shared_ptr<table> make_table();
std::shared_ptr<base> clone() const override;
/**
* tables can be iterated over.
*/
using iterator = string_to_base_map::iterator;
/**
* tables can be iterated over. Const version.
*/
using const_iterator = string_to_base_map::const_iterator;
iterator begin() { return map_.begin(); }
const_iterator begin() const { return map_.begin(); }
iterator end() { return map_.end(); }
const_iterator end() const { return map_.end(); }
bool is_table() const override { return true; }
bool empty() const { return map_.empty(); }
/**
* Determines if this key table contains the given key.
*/
bool contains(const std::string &key) const {
return map_.find(key) != map_.end();
}
/**
* Determines if this key table contains the given key. Will
* resolve "qualified keys". Qualified keys are the full access
* path separated with dots like "grandparent.parent.child".
*/
bool contains_qualified(const std::string &key) const {
return resolve_qualified(key);
}
/**
* Obtains the base for a given key.
* @throw std::out_of_range if the key does not exist
*/
std::shared_ptr<base> get(const std::string &key) const {
return map_.at(key);
}
/**
* Obtains the base for a given key. Will resolve "qualified
* keys". Qualified keys are the full access path separated with
* dots like "grandparent.parent.child".
*
* @throw std::out_of_range if the key does not exist
*/
std::shared_ptr<base> get_qualified(const std::string &key) const {
std::shared_ptr<base> p;
resolve_qualified(key, &p);
return p;
}
/**
* Obtains a table for a given key, if possible.
*/
std::shared_ptr<table> get_table(const std::string &key) const {
if (contains(key) && get(key)->is_table())
return std::static_pointer_cast<table>(get(key));
return nullptr;
}
/**
* Obtains a table for a given key, if possible. Will resolve
* "qualified keys".
*/
std::shared_ptr<table> get_table_qualified(const std::string &key) const {
if (contains_qualified(key) && get_qualified(key)->is_table())
return std::static_pointer_cast<table>(get_qualified(key));
return nullptr;
}
/**
* Obtains an array for a given key.
*/
std::shared_ptr<array> get_array(const std::string &key) const {
if (!contains(key))
return nullptr;
return get(key)->as_array();
}
/**
* Obtains an array for a given key. Will resolve "qualified keys".
*/
std::shared_ptr<array> get_array_qualified(const std::string &key) const {
if (!contains_qualified(key))
return nullptr;
return get_qualified(key)->as_array();
}
/**
* Obtains a table_array for a given key, if possible.
*/
std::shared_ptr<table_array> get_table_array(const std::string &key) const {
if (!contains(key))
return nullptr;
return get(key)->as_table_array();
}
/**
* Obtains a table_array for a given key, if possible. Will resolve
* "qualified keys".
*/
std::shared_ptr<table_array>
get_table_array_qualified(const std::string &key) const {
if (!contains_qualified(key))
return nullptr;
return get_qualified(key)->as_table_array();
}
/**
* Helper function that attempts to get a value corresponding
* to the template parameter from a given key.
*/
template <class T> option<T> get_as(const std::string &key) const {
try {
return get_impl<T>(get(key));
} catch (const std::out_of_range &) {
return {};
}
}
/**
* Helper function that attempts to get a value corresponding
* to the template parameter from a given key. Will resolve "qualified
* keys".
*/
template <class T>
option<T> get_qualified_as(const std::string &key) const {
try {
return get_impl<T>(get_qualified(key));
} catch (const std::out_of_range &) {
return {};
}
}
/**
* Helper function that attempts to get an array of values of a given
* type corresponding to the template parameter for a given key.
*
* If the key doesn't exist, doesn't exist as an array type, or one or
* more keys inside the array type are not of type T, an empty option
* is returned. Otherwise, an option containing a vector of the values
* is returned.
*/
template <class T>
inline typename array_of_trait<T>::return_type
get_array_of(const std::string &key) const {
if (auto v = get_array(key)) {
std::vector<T> result;
result.reserve(v->get().size());
for (const auto &b : v->get()) {
if (auto val = b->as<T>())
result.push_back(val->get());
else
return {};
}
return {std::move(result)};
}
return {};
}
/**
* Helper function that attempts to get an array of values of a given
* type corresponding to the template parameter for a given key. Will
* resolve "qualified keys".
*
* If the key doesn't exist, doesn't exist as an array type, or one or
* more keys inside the array type are not of type T, an empty option
* is returned. Otherwise, an option containing a vector of the values
* is returned.
*/
template <class T>
inline typename array_of_trait<T>::return_type
get_qualified_array_of(const std::string &key) const {
if (auto v = get_array_qualified(key)) {
std::vector<T> result;
result.reserve(v->get().size());
for (const auto &b : v->get()) {
if (auto val = b->as<T>())
result.push_back(val->get());
else
return {};
}
return {std::move(result)};
}
return {};
}
/**
* Adds an element to the keytable.
*/
void insert(const std::string &key, const std::shared_ptr<base> &value) {
map_[key] = value;
}
/**
* Convenience shorthand for adding a simple element to the
* keytable.
*/
template <class T>
void insert(
const std::string &key, T &&val, typename value_traits<T>::type * = 0) {
insert(key, make_value(std::forward<T>(val)));
}
/**
* Removes an element from the table.
*/
void erase(const std::string &key) { map_.erase(key); }
private:
#if defined(CPPTOML_NO_RTTI)
table() : base(base_type::TABLE) {
// nothing
}
#else
table() {
// nothing
}
#endif
table(const table &obj) = delete;
table &operator=(const table &rhs) = delete;
std::vector<std::string>
split(const std::string &value, char separator) const {
std::vector<std::string> result;
std::string::size_type p = 0;
std::string::size_type q;
while ((q = value.find(separator, p)) != std::string::npos) {
result.emplace_back(value, p, q - p);
p = q + 1;
}
result.emplace_back(value, p);
return result;
}
// If output parameter p is specified, fill it with the pointer to the
// specified entry and throw std::out_of_range if it couldn't be found.
//
// Otherwise, just return true if the entry could be found or false
// otherwise and do not throw.
bool resolve_qualified(
const std::string &key, std::shared_ptr<base> *p = nullptr) const {
auto parts = split(key, '.');
auto last_key = parts.back();
parts.pop_back();
auto cur_table = this;
for (const auto &part : parts) {
cur_table = cur_table->get_table(part).get();
if (!cur_table) {
if (!p)
return false;
throw std::out_of_range{key + " is not a valid key"};
}
}
if (!p)
return cur_table->map_.count(last_key) != 0;
*p = cur_table->map_.at(last_key);
return true;
}
string_to_base_map map_;
};
/**
* Helper function that attempts to get an array of arrays for a given
* key.
*
* If the key doesn't exist, doesn't exist as an array type, or one or
* more keys inside the array type are not of type T, an empty option
* is returned. Otherwise, an option containing a vector of the values
* is returned.
*/
template <>
inline typename array_of_trait<array>::return_type
table::get_array_of<array>(const std::string &key) const {
if (auto v = get_array(key)) {
std::vector<std::shared_ptr<array>> result;
result.reserve(v->get().size());
for (const auto &b : v->get()) {
if (auto val = b->as_array())
result.push_back(val);
else
return {};
}
return {std::move(result)};
}
return {};
}
/**
* Helper function that attempts to get an array of arrays for a given
* key. Will resolve "qualified keys".
*
* If the key doesn't exist, doesn't exist as an array type, or one or
* more keys inside the array type are not of type T, an empty option
* is returned. Otherwise, an option containing a vector of the values
* is returned.
*/
template <>
inline typename array_of_trait<array>::return_type
table::get_qualified_array_of<array>(const std::string &key) const {
if (auto v = get_array_qualified(key)) {
std::vector<std::shared_ptr<array>> result;
result.reserve(v->get().size());
for (const auto &b : v->get()) {
if (auto val = b->as_array())
result.push_back(val);
else
return {};
}
return {std::move(result)};
}
return {};
}
std::shared_ptr<table> make_table() {
struct make_shared_enabler : public table {
make_shared_enabler() {
// nothing
}
};
return std::make_shared<make_shared_enabler>();
}
namespace detail {
template <> inline std::shared_ptr<table> make_element<table>() {
return make_table();
}
} // namespace detail
template <class T> std::shared_ptr<base> value<T>::clone() const {
return make_value(data_);
}
inline std::shared_ptr<base> array::clone() const {
auto result = make_array();
result->reserve(values_.size());
for (const auto &ptr : values_)
result->values_.push_back(ptr->clone());
return result;
}
inline std::shared_ptr<base> table_array::clone() const {
auto result = make_table_array(is_inline());
result->reserve(array_.size());
for (const auto &ptr : array_)
result->array_.push_back(ptr->clone()->as_table());
return result;
}
inline std::shared_ptr<base> table::clone() const {
auto result = make_table();
for (const auto &pr : map_)
result->insert(pr.first, pr.second->clone());
return result;
}
/**
* Exception class for all TOML parsing errors.
*/
class parse_exception : public std::runtime_error {
public:
parse_exception(const std::string &err) : std::runtime_error{err} {}
parse_exception(const std::string &err, std::size_t line_number)
: std::runtime_error{err + " at line " + std::to_string(line_number)} {}
};
inline bool is_number(char c) { return c >= '0' && c <= '9'; }
inline bool is_hex(char c) {
return is_number(c) || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F');
}
/**
* Helper object for consuming expected characters.
*/
template <class OnError> class consumer {
public:
consumer(
std::string::iterator &it,
const std::string::iterator &end,
OnError &&on_error)
: it_(it), end_(end), on_error_(std::forward<OnError>(on_error)) {
// nothing
}
void operator()(char c) {
if (it_ == end_ || *it_ != c)
on_error_();
++it_;
}
template <std::size_t N> void operator()(const char (&str)[N]) {
std::for_each(
std::begin(str), std::end(str) - 1, [&](char c) { (*this)(c); });
}
void eat_or(char a, char b) {
if (it_ == end_ || (*it_ != a && *it_ != b))
on_error_();
++it_;
}
int eat_digits(int len) {
int val = 0;
for (int i = 0; i < len; ++i) {
if (!is_number(*it_) || it_ == end_)
on_error_();
val = 10 * val + (*it_++ - '0');
}
return val;
}
void error() { on_error_(); }
private:
std::string::iterator &it_;
const std::string::iterator &end_;
OnError on_error_;
};
template <class OnError>
consumer<OnError> make_consumer(
std::string::iterator &it,
const std::string::iterator &end,
OnError &&on_error) {
return consumer<OnError>(it, end, std::forward<OnError>(on_error));
}
// replacement for std::getline to handle incorrectly line-ended files
// https://stackoverflow.com/questions/6089231/getting-std-ifstream-to-handle-lf-cr-and-crlf
namespace detail {
inline std::istream &getline(std::istream &input, std::string &line) {
line.clear();
std::istream::sentry sentry{input, true};
auto sb = input.rdbuf();
while (true) {
auto c = sb->sbumpc();
if (c == '\r') {
if (sb->sgetc() == '\n')
c = sb->sbumpc();
}
if (c == '\n')
return input;
if (c == std::istream::traits_type::eof()) {
if (line.empty())
input.setstate(std::ios::eofbit);
return input;
}
line.push_back(static_cast<char>(c));
}
}
} // namespace detail
/**
* The parser class.
*/
class parser {
public:
/**
* Parsers are constructed from streams.
*/
parser(std::istream &stream) : input_(stream) {
// nothing
}
parser &operator=(const parser &parser) = delete;
/**
* Parses the stream this parser was created on until EOF.
* @throw parse_exception if there are errors in parsing
*/
std::shared_ptr<table> parse() {
std::shared_ptr<table> root = make_table();
table *curr_table = root.get();
while (detail::getline(input_, line_)) {
line_number_++;
auto it = line_.begin();
auto end = line_.end();
consume_whitespace(it, end);
if (it == end || *it == '#')
continue;
if (*it == '[') {
curr_table = root.get();
parse_table(it, end, curr_table);
} else {
parse_key_value(it, end, curr_table);
consume_whitespace(it, end);
eol_or_comment(it, end);
}
}
return root;
}
private:
#if defined _MSC_VER
__declspec(noreturn)
#elif defined __GNUC__
__attribute__((noreturn))
#endif
void throw_parse_exception(const std::string &err) {
throw parse_exception{err, line_number_};
}
void parse_table(
std::string::iterator &it,
const std::string::iterator &end,
table *&curr_table) {
// remove the beginning keytable marker
++it;
if (it == end)
throw_parse_exception("Unexpected end of table");
if (*it == '[')
parse_table_array(it, end, curr_table);
else
parse_single_table(it, end, curr_table);
}
void parse_single_table(
std::string::iterator &it,
const std::string::iterator &end,
table *&curr_table) {
if (it == end || *it == ']')
throw_parse_exception("Table name cannot be empty");
std::string full_table_name;
bool inserted = false;
auto key_end = [](char c) { return c == ']'; };
auto key_part_handler = [&](const std::string &part) {
if (part.empty())
throw_parse_exception("Empty component of table name");
if (!full_table_name.empty())
full_table_name += '.';
full_table_name += part;
if (curr_table->contains(part)) {
#if !defined(__PGI)
auto b = curr_table->get(part);
#else
// Workaround for PGI compiler
std::shared_ptr<base> b = curr_table->get(part);
#endif
if (b->is_table())
curr_table = static_cast<table *>(b.get());
else if (b->is_table_array())
curr_table = std::static_pointer_cast<table_array>(b)
->get()
.back()
.get();
else
throw_parse_exception(
"Key " + full_table_name + "already exists as a value");
} else {
inserted = true;
curr_table->insert(part, make_table());
curr_table = static_cast<table *>(curr_table->get(part).get());
}
};
key_part_handler(parse_key(it, end, key_end, key_part_handler));
if (it == end)
throw_parse_exception(
"Unterminated table declaration; did you forget a ']'?");
if (*it != ']') {
std::string errmsg{"Unexpected character in table definition: "};
errmsg += '"';
errmsg += *it;
errmsg += '"';
throw_parse_exception(errmsg);
}
// table already existed
if (!inserted) {
auto is_value = [](const std::pair<
const std::string &,
const std::shared_ptr<base> &> &p) {
return p.second->is_value();
};
// if there are any values, we can't add values to this table
// since it has already been defined. If there aren't any
// values, then it was implicitly created by something like
// [a.b]
if (curr_table->empty() ||
std::any_of(curr_table->begin(), curr_table->end(), is_value)) {
throw_parse_exception(
"Redefinition of table " + full_table_name);
}
}
++it;
consume_whitespace(it, end);
eol_or_comment(it, end);
}
void parse_table_array(
std::string::iterator &it,
const std::string::iterator &end,
table *&curr_table) {
++it;
if (it == end || *it == ']')
throw_parse_exception("Table array name cannot be empty");
auto key_end = [](char c) { return c == ']'; };
std::string full_ta_name;
auto key_part_handler = [&](const std::string &part) {
if (part.empty())
throw_parse_exception("Empty component of table array name");
if (!full_ta_name.empty())
full_ta_name += '.';
full_ta_name += part;
if (curr_table->contains(part)) {
#if !defined(__PGI)
auto b = curr_table->get(part);
#else
// Workaround for PGI compiler
std::shared_ptr<base> b = curr_table->get(part);
#endif
// if this is the end of the table array name, add an
// element to the table array that we just looked up,
// provided it was not declared inline
if (it != end && *it == ']') {
if (!b->is_table_array()) {
throw_parse_exception(
"Key " + full_ta_name + " is not a table array");
}
auto v = b->as_table_array();
if (v->is_inline()) {
throw_parse_exception(
"Static array " + full_ta_name +
" cannot be appended to");
}
v->get().push_back(make_table());
curr_table = v->get().back().get();
}
// otherwise, just keep traversing down the key name
else {
if (b->is_table())
curr_table = static_cast<table *>(b.get());
else if (b->is_table_array())
curr_table = std::static_pointer_cast<table_array>(b)
->get()
.back()
.get();
else
throw_parse_exception(
"Key " + full_ta_name +
" already exists as a value");
}
} else {
// if this is the end of the table array name, add a new
// table array and a new table inside that array for us to
// add keys to next
if (it != end && *it == ']') {
curr_table->insert(part, make_table_array());
auto arr = std::static_pointer_cast<table_array>(
curr_table->get(part));
arr->get().push_back(make_table());
curr_table = arr->get().back().get();
}
// otherwise, create the implicitly defined table and move
// down to it
else {
curr_table->insert(part, make_table());
curr_table =
static_cast<table *>(curr_table->get(part).get());
}
}
};
key_part_handler(parse_key(it, end, key_end, key_part_handler));
// consume the last "]]"
auto eat = make_consumer(it, end, [this]() {
throw_parse_exception("Unterminated table array name");
});
eat(']');
eat(']');
consume_whitespace(it, end);
eol_or_comment(it, end);
}
void parse_key_value(
std::string::iterator &it,
std::string::iterator &end,
table *curr_table) {
auto key_end = [](char c) { return c == '='; };
auto key_part_handler = [&](const std::string &part) {
// two cases: this key part exists already, in which case it must
// be a table, or it doesn't exist in which case we must create
// an implicitly defined table
if (curr_table->contains(part)) {
auto val = curr_table->get(part);
if (val->is_table()) {
curr_table = static_cast<table *>(val.get());
} else {
throw_parse_exception(
"Key " + part + " already exists as a value");
}
} else {
auto newtable = make_table();
curr_table->insert(part, newtable);
curr_table = newtable.get();
}
};
auto key = parse_key(it, end, key_end, key_part_handler);
if (curr_table->contains(key))
throw_parse_exception("Key " + key + " already present");
if (it == end || *it != '=')
throw_parse_exception("Value must follow after a '='");
++it;
consume_whitespace(it, end);
curr_table->insert(key, parse_value(it, end));
consume_whitespace(it, end);
}
template <class KeyEndFinder, class KeyPartHandler>
std::string parse_key(
std::string::iterator &it,
const std::string::iterator &end,
KeyEndFinder &&key_end,
KeyPartHandler &&key_part_handler) {
// parse the key as a series of one or more simple-keys joined with '.'
while (it != end && !key_end(*it)) {
auto part = parse_simple_key(it, end);
consume_whitespace(it, end);
if (it == end || key_end(*it)) {
return part;
}
if (*it != '.') {
std::string errmsg{"Unexpected character in key: "};
errmsg += '"';
errmsg += *it;
errmsg += '"';
throw_parse_exception(errmsg);
}
key_part_handler(part);
// consume the dot
++it;
}
throw_parse_exception("Unexpected end of key");
}
std::string parse_simple_key(
std::string::iterator &it, const std::string::iterator &end) {
consume_whitespace(it, end);
if (it == end)
throw_parse_exception("Unexpected end of key (blank key?)");
if (*it == '"' || *it == '\'') {
return string_literal(it, end, *it);
} else {
auto bke = std::find_if(it, end, [](char c) {
return c == '.' || c == '=' || c == ']';
});
return parse_bare_key(it, bke);
}
}
std::string parse_bare_key(
std::string::iterator &it, const std::string::iterator &end) {
if (it == end) {
throw_parse_exception("Bare key missing name");
}
auto key_end = end;
--key_end;
consume_backwards_whitespace(key_end, it);
++key_end;
std::string key{it, key_end};
if (std::find(it, key_end, '#') != key_end) {
throw_parse_exception("Bare key " + key + " cannot contain #");
}
if (std::find_if(it, key_end, [](char c) {
return c == ' ' || c == '\t';
}) != key_end) {
throw_parse_exception(
"Bare key " + key + " cannot contain whitespace");
}
if (std::find_if(it, key_end, [](char c) {
return c == '[' || c == ']';
}) != key_end) {
throw_parse_exception(
"Bare key " + key + " cannot contain '[' or ']'");
}
it = end;
return key;
}
enum class parse_type {
STRING = 1,
LOCAL_TIME,
LOCAL_DATE,
LOCAL_DATETIME,
OFFSET_DATETIME,
INT,
FLOAT,
BOOL,
ARRAY,
INLINE_TABLE
};
std::shared_ptr<base>
parse_value(std::string::iterator &it, std::string::iterator &end) {
parse_type type = determine_value_type(it, end);
switch (type) {
case parse_type::STRING:
return parse_string(it, end);
case parse_type::LOCAL_TIME:
return parse_time(it, end);
case parse_type::LOCAL_DATE:
case parse_type::LOCAL_DATETIME:
case parse_type::OFFSET_DATETIME:
return parse_date(it, end);
case parse_type::INT:
case parse_type::FLOAT:
return parse_number(it, end);
case parse_type::BOOL:
return parse_bool(it, end);
case parse_type::ARRAY:
return parse_array(it, end);
case parse_type::INLINE_TABLE:
return parse_inline_table(it, end);
default:
throw_parse_exception("Failed to parse value");
}
}
parse_type determine_value_type(
const std::string::iterator &it, const std::string::iterator &end) {
if (it == end) {
throw_parse_exception("Failed to parse value type");
}
if (*it == '"' || *it == '\'') {
return parse_type::STRING;
} else if (is_time(it, end)) {
return parse_type::LOCAL_TIME;
} else if (auto dtype = date_type(it, end)) {
return *dtype;
} else if (
is_number(*it) || *it == '-' || *it == '+' ||
(*it == 'i' && it + 1 != end && it[1] == 'n' && it + 2 != end &&
it[2] == 'f') ||
(*it == 'n' && it + 1 != end && it[1] == 'a' && it + 2 != end &&
it[2] == 'n')) {
return determine_number_type(it, end);
} else if (*it == 't' || *it == 'f') {
return parse_type::BOOL;
} else if (*it == '[') {
return parse_type::ARRAY;
} else if (*it == '{') {
return parse_type::INLINE_TABLE;
}
throw_parse_exception("Failed to parse value type");
}
parse_type determine_number_type(
const std::string::iterator &it, const std::string::iterator &end) {
// determine if we are an integer or a float
auto check_it = it;
if (*check_it == '-' || *check_it == '+')
++check_it;
if (check_it == end)
throw_parse_exception("Malformed number");
if (*check_it == 'i' || *check_it == 'n')
return parse_type::FLOAT;
while (check_it != end && is_number(*check_it))
++check_it;
if (check_it != end && *check_it == '.') {
++check_it;
while (check_it != end && is_number(*check_it))
++check_it;
return parse_type::FLOAT;
} else {
return parse_type::INT;
}
}
std::shared_ptr<value<std::string>>
parse_string(std::string::iterator &it, std::string::iterator &end) {
auto delim = *it;
assert(delim == '"' || delim == '\'');
// end is non-const here because we have to be able to potentially
// parse multiple lines in a string, not just one
auto check_it = it;
++check_it;
if (check_it != end && *check_it == delim) {
++check_it;
if (check_it != end && *check_it == delim) {
it = ++check_it;
return parse_multiline_string(it, end, delim);
}
}
return make_value<std::string>(string_literal(it, end, delim));
}
std::shared_ptr<value<std::string>> parse_multiline_string(
std::string::iterator &it, std::string::iterator &end, char delim) {
std::stringstream ss;
auto is_ws = [](char c) { return c == ' ' || c == '\t'; };
bool consuming = false;
std::shared_ptr<value<std::string>> ret;
auto handle_line = [&](std::string::iterator &local_it,
std::string::iterator &local_end) {
if (consuming) {
local_it = std::find_if_not(local_it, local_end, is_ws);
// whole line is whitespace
if (local_it == local_end)
return;
}
consuming = false;
while (local_it != local_end) {
// handle escaped characters
if (delim == '"' && *local_it == '\\') {
auto check = local_it;
// check if this is an actual escape sequence or a
// whitespace escaping backslash
++check;
consume_whitespace(check, local_end);
if (check == local_end) {
consuming = true;
break;
}
ss << parse_escape_code(local_it, local_end);
continue;
}
// if we can end the string
if (std::distance(local_it, local_end) >= 3) {
auto check = local_it;
// check for """
if (*check++ == delim && *check++ == delim &&
*check++ == delim) {
local_it = check;
ret = make_value<std::string>(ss.str());
break;
}
}
ss << *local_it++;
}
};
// handle the remainder of the current line
handle_line(it, end);
if (ret)
return ret;
// start eating lines
while (detail::getline(input_, line_)) {
++line_number_;
it = line_.begin();
end = line_.end();
handle_line(it, end);
if (ret)
return ret;
if (!consuming)
ss << std::endl;
}
throw_parse_exception("Unterminated multi-line basic string");
}
std::string string_literal(
std::string::iterator &it,
const std::string::iterator &end,
char delim) {
++it;
std::string val;
while (it != end) {
// handle escaped characters
if (delim == '"' && *it == '\\') {
val += parse_escape_code(it, end);
} else if (*it == delim) {
++it;
consume_whitespace(it, end);
return val;
} else {
val += *it++;
}
}
throw_parse_exception("Unterminated string literal");
}
std::string parse_escape_code(
std::string::iterator &it, const std::string::iterator &end) {
++it;
if (it == end)
throw_parse_exception("Invalid escape sequence");
char value;
if (*it == 'b') {
value = '\b';
} else if (*it == 't') {
value = '\t';
} else if (*it == 'n') {
value = '\n';
} else if (*it == 'f') {
value = '\f';
} else if (*it == 'r') {
value = '\r';
} else if (*it == '"') {
value = '"';
} else if (*it == '\\') {
value = '\\';
} else if (*it == 'u' || *it == 'U') {
return parse_unicode(it, end);
} else {
throw_parse_exception("Invalid escape sequence");
}
++it;
return std::string(1, value);
}
std::string
parse_unicode(std::string::iterator &it, const std::string::iterator &end) {
bool large = *it++ == 'U';
auto codepoint = parse_hex(it, end, large ? 0x10000000 : 0x1000);
if ((codepoint > 0xd7ff && codepoint < 0xe000) ||
codepoint > 0x10ffff) {
throw_parse_exception(
"Unicode escape sequence is not a Unicode scalar value");
}
std::string result;
// See Table 3-6 of the Unicode standard
if (codepoint <= 0x7f) {
// 1-byte codepoints: 00000000 0xxxxxxx
// repr: 0xxxxxxx
result += static_cast<char>(codepoint & 0x7f);
} else if (codepoint <= 0x7ff) {
// 2-byte codepoints: 00000yyy yyxxxxxx
// repr: 110yyyyy 10xxxxxx
//
// 0x1f = 00011111
// 0xc0 = 11000000
//
result += static_cast<char>(0xc0 | ((codepoint >> 6) & 0x1f));
//
// 0x80 = 10000000
// 0x3f = 00111111
//
result += static_cast<char>(0x80 | (codepoint & 0x3f));
} else if (codepoint <= 0xffff) {
// 3-byte codepoints: zzzzyyyy yyxxxxxx
// repr: 1110zzzz 10yyyyyy 10xxxxxx
//
// 0xe0 = 11100000
// 0x0f = 00001111
//
result += static_cast<char>(0xe0 | ((codepoint >> 12) & 0x0f));
result += static_cast<char>(0x80 | ((codepoint >> 6) & 0x1f));
result += static_cast<char>(0x80 | (codepoint & 0x3f));
} else {
// 4-byte codepoints: 000uuuuu zzzzyyyy yyxxxxxx
// repr: 11110uuu 10uuzzzz 10yyyyyy 10xxxxxx
//
// 0xf0 = 11110000
// 0x07 = 00000111
//
result += static_cast<char>(0xf0 | ((codepoint >> 18) & 0x07));
result += static_cast<char>(0x80 | ((codepoint >> 12) & 0x3f));
result += static_cast<char>(0x80 | ((codepoint >> 6) & 0x3f));
result += static_cast<char>(0x80 | (codepoint & 0x3f));
}
return result;
}
uint32_t parse_hex(
std::string::iterator &it,
const std::string::iterator &end,
uint32_t place) {
uint32_t value = 0;
while (place > 0) {
if (it == end)
throw_parse_exception("Unexpected end of unicode sequence");
if (!is_hex(*it))
throw_parse_exception("Invalid unicode escape sequence");
value += place * hex_to_digit(*it++);
place /= 16;
}
return value;
}
uint32_t hex_to_digit(char c) {
if (is_number(c))
return static_cast<uint32_t>(c - '0');
return 10 +
static_cast<uint32_t>(c - ((c >= 'a' && c <= 'f') ? 'a' : 'A'));
}
std::shared_ptr<base>
parse_number(std::string::iterator &it, const std::string::iterator &end) {
auto check_it = it;
auto check_end = find_end_of_number(it, end);
auto eat_sign = [&]() {
if (check_it != end && (*check_it == '-' || *check_it == '+'))
++check_it;
};
auto check_no_leading_zero = [&]() {
if (check_it != end && *check_it == '0' &&
check_it + 1 != check_end && check_it[1] != '.') {
throw_parse_exception("Numbers may not have leading zeros");
}
};
auto eat_digits = [&](bool (*check_char)(char)) {
auto beg = check_it;
while (check_it != end && check_char(*check_it)) {
++check_it;
if (check_it != end && *check_it == '_') {
++check_it;
if (check_it == end || !check_char(*check_it))
throw_parse_exception("Malformed number");
}
}
if (check_it == beg)
throw_parse_exception("Malformed number");
};
auto eat_hex = [&]() { eat_digits(&is_hex); };
auto eat_numbers = [&]() { eat_digits(&is_number); };
if (check_it != end && *check_it == '0' && check_it + 1 != check_end &&
(check_it[1] == 'x' || check_it[1] == 'o' || check_it[1] == 'b')) {
++check_it;
char base = *check_it;
++check_it;
if (base == 'x') {
eat_hex();
return parse_int(it, check_it, 16);
} else if (base == 'o') {
auto start = check_it;
eat_numbers();
auto val = parse_int(start, check_it, 8, "0");
it = start;
return val;
} else // if (base == 'b')
{
auto start = check_it;
eat_numbers();
auto val = parse_int(start, check_it, 2);
it = start;
return val;
}
}
eat_sign();
check_no_leading_zero();
if (check_it != end && check_it + 1 != end && check_it + 2 != end) {
if (check_it[0] == 'i' && check_it[1] == 'n' &&
check_it[2] == 'f') {
auto val = std::numeric_limits<double>::infinity();
if (*it == '-')
val = -val;
it = check_it + 3;
return make_value(val);
} else if (
check_it[0] == 'n' && check_it[1] == 'a' &&
check_it[2] == 'n') {
auto val = std::numeric_limits<double>::quiet_NaN();
if (*it == '-')
val = -val;
it = check_it + 3;
return make_value(val);
}
}
eat_numbers();
if (check_it != end &&
(*check_it == '.' || *check_it == 'e' || *check_it == 'E')) {
bool is_exp = *check_it == 'e' || *check_it == 'E';
++check_it;
if (check_it == end)
throw_parse_exception("Floats must have trailing digits");
auto eat_exp = [&]() {
eat_sign();
check_no_leading_zero();
eat_numbers();
};
if (is_exp)
eat_exp();
else
eat_numbers();
if (!is_exp && check_it != end &&
(*check_it == 'e' || *check_it == 'E')) {
++check_it;
eat_exp();
}
return parse_float(it, check_it);
} else {
return parse_int(it, check_it);
}
}
std::shared_ptr<value<int64_t>> parse_int(
std::string::iterator &it,
const std::string::iterator &end,
int base = 10,
const char *prefix = "") {
std::string v{it, end};
v = prefix + v;
v.erase(std::remove(v.begin(), v.end(), '_'), v.end());
it = end;
try {
return make_value<int64_t>(std::stoll(v, nullptr, base));
} catch (const std::invalid_argument &ex) {
throw_parse_exception(
"Malformed number (invalid argument: " +
std::string{ex.what()} + ")");
} catch (const std::out_of_range &ex) {
throw_parse_exception(
"Malformed number (out of range: " + std::string{ex.what()} +
")");
}
}
std::shared_ptr<value<double>>
parse_float(std::string::iterator &it, const std::string::iterator &end) {
std::string v{it, end};
v.erase(std::remove(v.begin(), v.end(), '_'), v.end());
it = end;
char decimal_point = std::localeconv()->decimal_point[0];
std::replace(v.begin(), v.end(), '.', decimal_point);
try {
return make_value<double>(std::stod(v));
} catch (const std::invalid_argument &ex) {
throw_parse_exception(
"Malformed number (invalid argument: " +
std::string{ex.what()} + ")");
} catch (const std::out_of_range &ex) {
throw_parse_exception(
"Malformed number (out of range: " + std::string{ex.what()} +
")");
}
}
std::shared_ptr<value<bool>>
parse_bool(std::string::iterator &it, const std::string::iterator &end) {
auto eat = make_consumer(it, end, [this]() {
throw_parse_exception("Attempted to parse invalid boolean value");
});
if (*it == 't') {
eat("true");
return make_value<bool>(true);
} else if (*it == 'f') {
eat("false");
return make_value<bool>(false);
}
eat.error();
return nullptr;
}
std::string::iterator
find_end_of_number(std::string::iterator it, std::string::iterator end) {
auto ret = std::find_if(it, end, [](char c) {
return !is_number(c) && c != '_' && c != '.' && c != 'e' &&
c != 'E' && c != '-' && c != '+' && c != 'x' && c != 'o' &&
c != 'b';
});
if (ret != end && ret + 1 != end && ret + 2 != end) {
if ((ret[0] == 'i' && ret[1] == 'n' && ret[2] == 'f') ||
(ret[0] == 'n' && ret[1] == 'a' && ret[2] == 'n')) {
ret = ret + 3;
}
}
return ret;
}
std::string::iterator
find_end_of_date(std::string::iterator it, std::string::iterator end) {
auto end_of_date = std::find_if(
it, end, [](char c) { return !is_number(c) && c != '-'; });
if (end_of_date != end && *end_of_date == ' ' &&
end_of_date + 1 != end && is_number(end_of_date[1]))
end_of_date++;
return std::find_if(end_of_date, end, [](char c) {
return !is_number(c) && c != 'T' && c != 'Z' && c != ':' &&
c != '-' && c != '+' && c != '.';
});
}
std::string::iterator
find_end_of_time(std::string::iterator it, std::string::iterator end) {
return std::find_if(it, end, [](char c) {
return !is_number(c) && c != ':' && c != '.';
});
}
local_time
read_time(std::string::iterator &it, const std::string::iterator &end) {
auto time_end = find_end_of_time(it, end);
auto eat = make_consumer(
it, time_end, [&]() { throw_parse_exception("Malformed time"); });
local_time ltime;
ltime.hour = eat.eat_digits(2);
eat(':');
ltime.minute = eat.eat_digits(2);
eat(':');
ltime.second = eat.eat_digits(2);
int power = 100000;
if (it != time_end && *it == '.') {
++it;
while (it != time_end && is_number(*it)) {
ltime.microsecond += power * (*it++ - '0');
power /= 10;
}
}
if (it != time_end)
throw_parse_exception("Malformed time");
return ltime;
}
std::shared_ptr<value<local_time>>
parse_time(std::string::iterator &it, const std::string::iterator &end) {
return make_value(read_time(it, end));
}
std::shared_ptr<base>
parse_date(std::string::iterator &it, const std::string::iterator &end) {
auto date_end = find_end_of_date(it, end);
auto eat = make_consumer(
it, date_end, [&]() { throw_parse_exception("Malformed date"); });
local_date ldate;
ldate.year = eat.eat_digits(4);
eat('-');
ldate.month = eat.eat_digits(2);
eat('-');
ldate.day = eat.eat_digits(2);
if (it == date_end)
return make_value(ldate);
eat.eat_or('T', ' ');
local_datetime ldt;
static_cast<local_date &>(ldt) = ldate;
static_cast<local_time &>(ldt) = read_time(it, date_end);
if (it == date_end)
return make_value(ldt);
offset_datetime dt;
static_cast<local_datetime &>(dt) = ldt;
int hoff = 0;
int moff = 0;
if (*it == '+' || *it == '-') {
auto plus = *it == '+';
++it;
hoff = eat.eat_digits(2);
dt.hour_offset = (plus) ? hoff : -hoff;
eat(':');
moff = eat.eat_digits(2);
dt.minute_offset = (plus) ? moff : -moff;
} else if (*it == 'Z') {
++it;
}
if (it != date_end)
throw_parse_exception("Malformed date");
return make_value(dt);
}
std::shared_ptr<base>
parse_array(std::string::iterator &it, std::string::iterator &end) {
// this gets ugly because of the "homogeneity" restriction:
// arrays can either be of only one type, or contain arrays
// (each of those arrays could be of different types, though)
//
// because of the latter portion, we don't really have a choice
// but to represent them as arrays of base values...
++it;
// ugh---have to read the first value to determine array type...
skip_whitespace_and_comments(it, end);
// edge case---empty array
if (*it == ']') {
++it;
return make_array();
}
auto val_end = std::find_if(
it, end, [](char c) { return c == ',' || c == ']' || c == '#'; });
parse_type type = determine_value_type(it, val_end);
switch (type) {
case parse_type::STRING:
return parse_value_array<std::string>(it, end);
case parse_type::LOCAL_TIME:
return parse_value_array<local_time>(it, end);
case parse_type::LOCAL_DATE:
return parse_value_array<local_date>(it, end);
case parse_type::LOCAL_DATETIME:
return parse_value_array<local_datetime>(it, end);
case parse_type::OFFSET_DATETIME:
return parse_value_array<offset_datetime>(it, end);
case parse_type::INT:
return parse_value_array<int64_t>(it, end);
case parse_type::FLOAT:
return parse_value_array<double>(it, end);
case parse_type::BOOL:
return parse_value_array<bool>(it, end);
case parse_type::ARRAY:
return parse_object_array<array>(
&parser::parse_array, '[', it, end);
case parse_type::INLINE_TABLE:
return parse_object_array<table_array>(
&parser::parse_inline_table, '{', it, end);
default:
throw_parse_exception("Unable to parse array");
}
}
template <class Value>
std::shared_ptr<array>
parse_value_array(std::string::iterator &it, std::string::iterator &end) {
auto arr = make_array();
while (it != end && *it != ']') {
auto val = parse_value(it, end);
if (auto v = val->as<Value>())
arr->get().push_back(val);
else
throw_parse_exception("Arrays must be homogeneous");
skip_whitespace_and_comments(it, end);
if (*it != ',')
break;
++it;
skip_whitespace_and_comments(it, end);
}
if (it != end)
++it;
return arr;
}
template <class Object, class Function>
std::shared_ptr<Object> parse_object_array(
Function &&fun,
char delim,
std::string::iterator &it,
std::string::iterator &end) {
auto arr = detail::make_element<Object>();
while (it != end && *it != ']') {
if (*it != delim)
throw_parse_exception("Unexpected character in array");
arr->get().push_back(((*this).*fun)(it, end));
skip_whitespace_and_comments(it, end);
if (it == end || *it != ',')
break;
++it;
skip_whitespace_and_comments(it, end);
}
if (it == end || *it != ']')
throw_parse_exception("Unterminated array");
++it;
return arr;
}
std::shared_ptr<table>
parse_inline_table(std::string::iterator &it, std::string::iterator &end) {
auto tbl = make_table();
do {
++it;
if (it == end)
throw_parse_exception("Unterminated inline table");
consume_whitespace(it, end);
if (it != end && *it != '}') {
parse_key_value(it, end, tbl.get());
consume_whitespace(it, end);
}
} while (*it == ',');
if (it == end || *it != '}')
throw_parse_exception("Unterminated inline table");
++it;
consume_whitespace(it, end);
return tbl;
}
void skip_whitespace_and_comments(
std::string::iterator &start, std::string::iterator &end) {
consume_whitespace(start, end);
while (start == end || *start == '#') {
if (!detail::getline(input_, line_))
throw_parse_exception("Unclosed array");
line_number_++;
start = line_.begin();
end = line_.end();
consume_whitespace(start, end);
}
}
void consume_whitespace(
std::string::iterator &it, const std::string::iterator &end) {
while (it != end && (*it == ' ' || *it == '\t'))
++it;
}
void consume_backwards_whitespace(
std::string::iterator &back, const std::string::iterator &front) {
while (back != front && (*back == ' ' || *back == '\t'))
--back;
}
void eol_or_comment(
const std::string::iterator &it, const std::string::iterator &end) {
if (it != end && *it != '#')
throw_parse_exception(
"Unidentified trailing character '" + std::string{*it} +
"'---did you forget a '#'?");
}
bool
is_time(const std::string::iterator &it, const std::string::iterator &end) {
auto time_end = find_end_of_time(it, end);
auto len = std::distance(it, time_end);
if (len < 8)
return false;
if (it[2] != ':' || it[5] != ':')
return false;
if (len > 8)
return it[8] == '.' && len > 9;
return true;
}
option<parse_type> date_type(
const std::string::iterator &it, const std::string::iterator &end) {
auto date_end = find_end_of_date(it, end);
auto len = std::distance(it, date_end);
if (len < 10)
return {};
if (it[4] != '-' || it[7] != '-')
return {};
if (len >= 19 && (it[10] == 'T' || it[10] == ' ') &&
is_time(it + 11, date_end)) {
// datetime type
auto time_end = find_end_of_time(it + 11, date_end);
if (time_end == date_end)
return {parse_type::LOCAL_DATETIME};
else
return {parse_type::OFFSET_DATETIME};
} else if (len == 10) {
// just a regular date
return {parse_type::LOCAL_DATE};
}
return {};
}
std::istream &input_;
std::string line_;
std::size_t line_number_ = 0;
};
/**
* Utility function to parse a file as a TOML file. Returns the root table.
* Throws a parse_exception if the file cannot be opened.
*/
inline std::shared_ptr<table> parse_file(const std::string &filename) {
#if defined(BOOST_NOWIDE_FSTREAM_INCLUDED_HPP)
boost::nowide::ifstream file{filename.c_str()};
#elif defined(NOWIDE_FSTREAM_INCLUDED_HPP)
nowide::ifstream file{filename.c_str()};
#else
std::ifstream file{filename};
#endif
if (!file.is_open())
{
std::istringstream is(filename);
parser p{ is };
return p.parse();
}
parser p{file};
return p.parse();
}
template <class... Ts> struct value_accept;
template <> struct value_accept<> {
template <class Visitor, class... Args>
static void accept(const base &, Visitor &&, Args &&...) {
// nothing
}
};
template <class T, class... Ts> struct value_accept<T, Ts...> {
template <class Visitor, class... Args>
static void accept(const base &b, Visitor &&visitor, Args &&... args) {
if (auto v = b.as<T>()) {
visitor.visit(*v, std::forward<Args>(args)...);
} else {
value_accept<Ts...>::accept(
b, std::forward<Visitor>(visitor), std::forward<Args>(args)...);
}
}
};
/**
* base implementation of accept() that calls visitor.visit() on the concrete
* class.
*/
template <class Visitor, class... Args>
void base::accept(Visitor &&visitor, Args &&... args) const {
if (is_value()) {
using value_acceptor = value_accept<
std::string,
int64_t,
double,
bool,
local_date,
local_time,
local_datetime,
offset_datetime>;
value_acceptor::accept(
*this, std::forward<Visitor>(visitor), std::forward<Args>(args)...);
} else if (is_table()) {
visitor.visit(
static_cast<const table &>(*this), std::forward<Args>(args)...);
} else if (is_array()) {
visitor.visit(
static_cast<const array &>(*this), std::forward<Args>(args)...);
} else if (is_table_array()) {
visitor.visit(
static_cast<const table_array &>(*this),
std::forward<Args>(args)...);
}
}
/**
* Writer that can be passed to accept() functions of cpptoml objects and
* will output valid TOML to a stream.
*/
class toml_writer {
public:
/**
* Construct a toml_writer that will write to the given stream
*/
toml_writer(std::ostream &s, const std::string &indent_space = "\t")
: stream_(s), indent_(indent_space), has_naked_endline_(false) {
// nothing
}
public:
/**
* Output a base value of the TOML tree.
*/
template <class T> void visit(const value<T> &v, bool = false) { write(v); }
/**
* Output a table element of the TOML tree
*/
void visit(const table &t, bool in_array = false) {
write_table_header(in_array);
std::vector<std::string> values;
std::vector<std::string> tables;
for (const auto &i : t) {
if (i.second->is_table() || i.second->is_table_array()) {
tables.push_back(i.first);
} else {
values.push_back(i.first);
}
}
for (unsigned int i = 0; i < values.size(); ++i) {
path_.push_back(values[i]);
if (i > 0)
endline();
write_table_item_header(*t.get(values[i]));
t.get(values[i])->accept(*this, false);
path_.pop_back();
}
for (unsigned int i = 0; i < tables.size(); ++i) {
path_.push_back(tables[i]);
if (values.size() > 0 || i > 0)
endline();
write_table_item_header(*t.get(tables[i]));
t.get(tables[i])->accept(*this, false);
path_.pop_back();
}
endline();
}
/**
* Output an array element of the TOML tree
*/
void visit(const array &a, bool = false) {
write("[");
for (unsigned int i = 0; i < a.get().size(); ++i) {
if (i > 0)
write(", ");
if (a.get()[i]->is_array()) {
a.get()[i]->as_array()->accept(*this, true);
} else {
a.get()[i]->accept(*this, true);
}
}
write("]");
}
/**
* Output a table_array element of the TOML tree
*/
void visit(const table_array &t, bool = false) {
for (unsigned int j = 0; j < t.get().size(); ++j) {
if (j > 0)
endline();
t.get()[j]->accept(*this, true);
}
endline();
}
/**
* Escape a string for output.
*/
static std::string escape_string(const std::string &str) {
std::string res;
for (auto it = str.begin(); it != str.end(); ++it) {
if (*it == '\b') {
res += "\\b";
} else if (*it == '\t') {
res += "\\t";
} else if (*it == '\n') {
res += "\\n";
} else if (*it == '\f') {
res += "\\f";
} else if (*it == '\r') {
res += "\\r";
} else if (*it == '"') {
res += "\\\"";
} else if (*it == '\\') {
res += "\\\\";
} else if (static_cast<uint32_t>(*it) <= UINT32_C(0x001f)) {
res += "\\u";
std::stringstream ss;
ss << std::hex << static_cast<uint32_t>(*it);
res += ss.str();
} else {
res += *it;
}
}
return res;
}
protected:
/**
* Write out a string.
*/
void write(const value<std::string> &v) {
write("\"");
write(escape_string(v.get()));
write("\"");
}
/**
* Write out a double.
*/
void write(const value<double> &v) {
std::stringstream ss;
ss << std::showpoint
<< std::setprecision(std::numeric_limits<double>::max_digits10)
<< v.get();
auto double_str = ss.str();
auto pos = double_str.find("e0");
if (pos != std::string::npos)
double_str.replace(pos, 2, "e");
pos = double_str.find("e-0");
if (pos != std::string::npos)
double_str.replace(pos, 3, "e-");
stream_ << double_str;
has_naked_endline_ = false;
}
/**
* Write out an integer, local_date, local_time, local_datetime, or
* offset_datetime.
*/
template <class T>
typename std::enable_if<is_one_of<
T,
int64_t,
local_date,
local_time,
local_datetime,
offset_datetime>::value>::type
write(const value<T> &v) {
write(v.get());
}
/**
* Write out a boolean.
*/
void write(const value<bool> &v) { write((v.get() ? "true" : "false")); }
/**
* Write out the header of a table.
*/
void write_table_header(bool in_array = false) {
if (!path_.empty()) {
indent();
write("[");
if (in_array) {
write("[");
}
for (unsigned int i = 0; i < path_.size(); ++i) {
if (i > 0) {
write(".");
}
if (path_[i].find_first_not_of("ABCDEFGHIJKLMNOPQRSTUVWXYZabcde"
"fghijklmnopqrstuvwxyz0123456789"
"_-") == std::string::npos) {
write(path_[i]);
} else {
write("\"");
write(escape_string(path_[i]));
write("\"");
}
}
if (in_array) {
write("]");
}
write("]");
endline();
}
}
/**
* Write out the identifier for an item in a table.
*/
void write_table_item_header(const base &b) {
if (!b.is_table() && !b.is_table_array()) {
indent();
if (path_.back().find_first_not_of("ABCDEFGHIJKLMNOPQRSTUVWXYZabcde"
"fghijklmnopqrstuvwxyz0123456789"
"_-") == std::string::npos) {
write(path_.back());
} else {
write("\"");
write(escape_string(path_.back()));
write("\"");
}
write(" = ");
}
}
private:
/**
* Indent the proper number of tabs given the size of
* the path.
*/
void indent() {
for (std::size_t i = 1; i < path_.size(); ++i)
write(indent_);
}
/**
* Write a value out to the stream.
*/
template <class T> void write(const T &v) {
stream_ << v;
has_naked_endline_ = false;
}
/**
* Write an endline out to the stream
*/
void endline() {
if (!has_naked_endline_) {
stream_ << "\n";
has_naked_endline_ = true;
}
}
private:
std::ostream &stream_;
const std::string indent_;
std::vector<std::string> path_;
bool has_naked_endline_;
};
inline std::ostream &operator<<(std::ostream &stream, const base &b) {
toml_writer writer{stream};
b.accept(writer);
return stream;
}
template <class T>
std::ostream &operator<<(std::ostream &stream, const value<T> &v) {
toml_writer writer{stream};
v.accept(writer);
return stream;
}
inline std::ostream &operator<<(std::ostream &stream, const table &t) {
toml_writer writer{stream};
t.accept(writer);
return stream;
}
inline std::ostream &operator<<(std::ostream &stream, const table_array &t) {
toml_writer writer{stream};
t.accept(writer);
return stream;
}
inline std::ostream &operator<<(std::ostream &stream, const array &a) {
toml_writer writer{stream};
a.accept(writer);
return stream;
}
} // namespace cpptoml
#endif // CPPTOML_H
| [
"asyncflow@163.com"
] | asyncflow@163.com |
9c7604971f8b94ee860d6baf00ec0d8888098987 | 224bb4c15505e0b494eec0b911ee3fc67e6935db | /SourceSDK/tier1/strtools.h | bf2acfadca85645c077e34fc72dec0b35afcea43 | [] | no_license | MoeMod/Thanatos-Launcher | 7b19dcb432172ee35f050b4f4f46e37a1e46c612 | 1f38c7cc1ebc911805ecf83222b5254d4b25a132 | refs/heads/master | 2021-12-27T15:27:02.097029 | 2021-09-09T17:05:04 | 2021-09-09T17:05:04 | 128,214,239 | 9 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 18,410 | h | //===== Copyright ?1996-2005, Valve Corporation, All rights reserved. ======//
//
// Purpose:
//
// $NoKeywords: $
//
//===========================================================================//
#ifndef TIER1_STRTOOLS_H
#define TIER1_STRTOOLS_H
#include <tier0/platform.h>
#ifdef _WIN32
#pragma once
#elif _LINUX
#include <ctype.h>
#include <wchar.h>
#endif
#include <string.h>
#include <stdlib.h>
template< class T, class I > class CUtlMemory;
template< class T, class A > class CUtlVector;
//-----------------------------------------------------------------------------
// Portable versions of standard string functions
//-----------------------------------------------------------------------------
void _V_memset ( const char* file, int line, void *dest, int fill, int count );
void _V_memcpy ( const char* file, int line, void *dest, const void *src, int count );
void _V_memmove ( const char* file, int line, void *dest, const void *src, int count );
int _V_memcmp ( const char* file, int line, const void *m1, const void *m2, int count );
int _V_strlen ( const char* file, int line, const char *str );
void _V_strcpy ( const char* file, int line, char *dest, const char *src );
char* _V_strrchr ( const char* file, int line, const char *s, char c );
int _V_strcmp ( const char* file, int line, const char *s1, const char *s2 );
int _V_wcscmp ( const char* file, int line, const wchar_t *s1, const wchar_t *s2 );
int _V_stricmp ( const char* file, int line, const char *s1, const char *s2 );
char* _V_strstr ( const char* file, int line, const char *s1, const char *search );
char* _V_strupr ( const char* file, int line, char *start );
char* _V_strlower ( const char* file, int line, char *start );
int _V_wcslen ( const char* file, int line, const wchar_t *pwch );
#ifdef _DEBUG
#define V_memset(dest, fill, count) _V_memset (__FILE__, __LINE__, (dest), (fill), (count))
#define V_memcpy(dest, src, count) _V_memcpy (__FILE__, __LINE__, (dest), (src), (count))
#define V_memmove(dest, src, count) _V_memmove (__FILE__, __LINE__, (dest), (src), (count))
#define V_memcmp(m1, m2, count) _V_memcmp (__FILE__, __LINE__, (m1), (m2), (count))
#define V_strlen(str) _V_strlen (__FILE__, __LINE__, (str))
#define V_strcpy(dest, src) _V_strcpy (__FILE__, __LINE__, (dest), (src))
#define V_strrchr(s, c) _V_strrchr (__FILE__, __LINE__, (s), (c))
#define V_strcmp(s1, s2) _V_strcmp (__FILE__, __LINE__, (s1), (s2))
#define V_wcscmp(s1, s2) _V_wcscmp (__FILE__, __LINE__, (s1), (s2))
#define V_stricmp(s1, s2 ) _V_stricmp (__FILE__, __LINE__, (s1), (s2) )
#define V_strstr(s1, search ) _V_strstr (__FILE__, __LINE__, (s1), (search) )
#define V_strupr(start) _V_strupr (__FILE__, __LINE__, (start))
#define V_strlower(start) _V_strlower (__FILE__, __LINE__, (start))
#define V_wcslen(pwch) _V_wcslen (__FILE__, __LINE__, (pwch))
#else
#ifdef _LINUX
inline char *strupr( char *start )
{
char *str = start;
while( str && *str )
{
*str = (char)toupper(*str);
str++;
}
return start;
}
inline char *strlwr( char *start )
{
char *str = start;
while( str && *str )
{
*str = (char)tolower(*str);
str++;
}
return start;
}
#endif // _LINUX
inline void V_memset (void *dest, int fill, int count) { memset( dest, fill, count ); }
inline void V_memcpy (void *dest, const void *src, int count) { memcpy( dest, src, count ); }
inline void V_memmove (void *dest, const void *src, int count) { memmove( dest, src, count ); }
inline int V_memcmp (const void *m1, const void *m2, int count){ return memcmp( m1, m2, count ); }
inline int V_strlen (const char *str) { return (int) strlen ( str ); }
inline void V_strcpy (char *dest, const char *src) { strcpy( dest, src ); }
inline int V_wcslen(const wchar_t *pwch) { return (int)wcslen(pwch); }
inline char* V_strrchr (const char *s, char c) { return (char*)strrchr( s, c ); }
inline int V_strcmp (const char *s1, const char *s2) { return strcmp( s1, s2 ); }
inline int V_wcscmp (const wchar_t *s1, const wchar_t *s2) { return wcscmp( s1, s2 ); }
inline int V_stricmp( const char *s1, const char *s2 ) { return stricmp( s1, s2 ); }
inline char* V_strstr( const char *s1, const char *search ) { return (char*)strstr( s1, search ); }
inline char* V_strupr (char *start) { return strupr( start ); }
inline char* V_strlower (char *start) { return strlwr( start ); }
#endif
int V_strncmp (const char *s1, const char *s2, int count);
int V_strcasecmp (const char *s1, const char *s2);
int V_strncasecmp (const char *s1, const char *s2, int n);
int V_strnicmp (const char *s1, const char *s2, int n);
int V_atoi (const char *str);
float V_atof (const char *str);
char* V_stristr( char* pStr, const char* pSearch );
const char* V_stristr( const char* pStr, const char* pSearch );
const char* V_strnistr( const char* pStr, const char* pSearch, int n );
const char* V_strnchr( const char* pStr, char c, int n );
// returns string immediately following prefix, (ie str+strlen(prefix)) or NULL if prefix not found
const char *StringAfterPrefix ( const char *str, const char *prefix );
const char *StringAfterPrefixCaseSensitive( const char *str, const char *prefix );
inline bool StringHasPrefix ( const char *str, const char *prefix ) { return StringAfterPrefix ( str, prefix ) != NULL; }
inline bool StringHasPrefixCaseSensitive( const char *str, const char *prefix ) { return StringAfterPrefixCaseSensitive( str, prefix ) != NULL; }
// Normalizes a float string in place.
// (removes leading zeros, trailing zeros after the decimal point, and the decimal point itself where possible)
void V_normalizeFloatString( char* pFloat );
// These are versions of functions that guarantee NULL termination.
//
// maxLen is the maximum number of bytes in the destination string.
// pDest[maxLen-1] is always NULL terminated if pSrc's length is >= maxLen.
//
// This means the last parameter can usually be a sizeof() of a string.
void V_strncpy( char *pDest, const char *pSrc, int maxLen );
int V_snprintf( char *pDest, int destLen, const char *pFormat, ... );
void V_wcsncpy( wchar_t *pDest, wchar_t const *pSrc, int maxLenInBytes );
#define COPY_ALL_CHARACTERS -1
char *V_strncat(char *, const char *, size_t destBufferSize, int max_chars_to_copy=COPY_ALL_CHARACTERS );
char *V_strnlwr(char *, size_t);
// UNDONE: Find a non-compiler-specific way to do this
#ifdef _WIN32
#ifndef _VA_LIST_DEFINED
#ifdef _M_ALPHA
struct va_list
{
char *a0; /* pointer to first homed integer argument */
int offset; /* byte offset of next parameter */
};
#else // !_M_ALPHA
typedef char * va_list;
#endif // !_M_ALPHA
#define _VA_LIST_DEFINED
#endif // _VA_LIST_DEFINED
#elif _LINUX
#include <stdarg.h>
#endif
#ifdef _WIN32
#define CORRECT_PATH_SEPARATOR '\\'
#define INCORRECT_PATH_SEPARATOR '/'
#elif _LINUX
#define CORRECT_PATH_SEPARATOR '/'
#define INCORRECT_PATH_SEPARATOR '\\'
#endif
int V_vsnprintf( char *pDest, int maxLen, const char *pFormat, va_list params );
// Prints out a pretified memory counter string value ( e.g., 7,233.27 Mb, 1,298.003 Kb, 127 bytes )
char *V_pretifymem( float value, int digitsafterdecimal = 2, bool usebinaryonek = false );
// Prints out a pretified integer with comma separators (eg, 7,233,270,000)
char *V_pretifynum( int64 value );
// conversion functions wchar_t <-> char, returning the number of characters converted
int V_UTF8ToUnicode( const char *pUTF8, wchar_t *pwchDest, int cubDestSizeInBytes );
int V_UnicodeToUTF8( const wchar_t *pUnicode, char *pUTF8, int cubDestSizeInBytes );
// Functions for converting hexidecimal character strings back into binary data etc.
//
// e.g.,
// int output;
// V_hextobinary( "ffffffff", 8, &output, sizeof( output ) );
// would make output == 0xfffffff or -1
// Similarly,
// char buffer[ 9 ];
// V_binarytohex( &output, sizeof( output ), buffer, sizeof( buffer ) );
// would put "ffffffff" into buffer (note null terminator!!!)
void V_hextobinary( char const *in, int numchars, byte *out, int maxoutputbytes );
void V_binarytohex( const byte *in, int inputbytes, char *out, int outsize );
// Tools for working with filenames
// Extracts the base name of a file (no path, no extension, assumes '/' or '\' as path separator)
void V_FileBase( const char *in, char *out,int maxlen );
// Remove the final characters of ppath if it's '\' or '/'.
void V_StripTrailingSlash( char *ppath );
// Remove any extension from in and return resulting string in out
void V_StripExtension( const char *in, char *out, int outLen );
// Make path end with extension if it doesn't already have an extension
void V_DefaultExtension( char *path, const char *extension, int pathStringLength );
// Strips any current extension from path and ensures that extension is the new extension
void V_SetExtension( char *path, const char *extension, int pathStringLength );
// Removes any filename from path ( strips back to previous / or \ character )
void V_StripFilename( char *path );
// Remove the final directory from the path
bool V_StripLastDir( char *dirName, int maxlen );
// Returns a pointer to the unqualified file name (no path) of a file name
const char * V_UnqualifiedFileName( const char * in );
// Given a path and a filename, composes "path\filename", inserting the (OS correct) separator if necessary
void V_ComposeFileName( const char *path, const char *filename, char *dest, int destSize );
// Copy out the path except for the stuff after the final pathseparator
bool V_ExtractFilePath( const char *path, char *dest, int destSize );
// Copy out the file extension into dest
void V_ExtractFileExtension( const char *path, char *dest, int destSize );
const char *V_GetFileExtension( const char * path );
// This removes "./" and "../" from the pathname. pFilename should be a full pathname.
// Returns false if it tries to ".." past the root directory in the drive (in which case
// it is an invalid path).
bool V_RemoveDotSlashes( char *pFilename, char separator = CORRECT_PATH_SEPARATOR );
// If pPath is a relative path, this function makes it into an absolute path
// using the current working directory as the base, or pStartingDir if it's non-NULL.
// Returns false if it runs out of room in the string, or if pPath tries to ".." past the root directory.
void V_MakeAbsolutePath( char *pOut, int outLen, const char *pPath, const char *pStartingDir = NULL );
// Creates a relative path given two full paths
// The first is the full path of the file to make a relative path for.
// The second is the full path of the directory to make the first file relative to
// Returns false if they can't be made relative (on separate drives, for example)
bool V_MakeRelativePath( const char *pFullPath, const char *pDirectory, char *pRelativePath, int nBufLen );
// Adds a path separator to the end of the string if there isn't one already. Returns false if it would run out of space.
void V_AppendSlash( char *pStr, int strSize );
// Returns true if the path is an absolute path.
bool V_IsAbsolutePath( const char *pPath );
// Scans pIn and replaces all occurences of pMatch with pReplaceWith.
// Writes the result to pOut.
// Returns true if it completed successfully.
// If it would overflow pOut, it fills as much as it can and returns false.
bool V_StrSubst( const char *pIn, const char *pMatch, const char *pReplaceWith,
char *pOut, int outLen, bool bCaseSensitive=false );
// Split the specified string on the specified separator.
// Returns a list of strings separated by pSeparator.
// You are responsible for freeing the contents of outStrings (call outStrings.PurgeAndDeleteElements).
void V_SplitString( const char *pString, const char *pSeparator, CUtlVector<char*, CUtlMemory<char*, int> > &outStrings );
// Just like V_SplitString, but it can use multiple possible separators.
void V_SplitString2( const char *pString, const char **pSeparators, int nSeparators, CUtlVector<char*, CUtlMemory<char*, int> > &outStrings );
// This function takes a slice out of pStr and stores it in pOut.
// It follows the Python slice convention:
// Negative numbers wrap around the string (-1 references the last character).
// Large numbers are clamped to the end of the string.
void V_StrSlice( const char *pStr, int firstChar, int lastCharNonInclusive, char *pOut, int outSize );
// Chop off the left nChars of a string.
void V_StrLeft( const char *pStr, int nChars, char *pOut, int outSize );
// Chop off the right nChars of a string.
void V_StrRight( const char *pStr, int nChars, char *pOut, int outSize );
// change "special" characters to have their c-style backslash sequence. like \n, \r, \t, ", etc.
// returns a pointer to a newly allocated string, which you must delete[] when finished with.
char *V_AddBackSlashesToSpecialChars( char const *pSrc );
// Force slashes of either type to be = separator character
void V_FixSlashes( char *pname, char separator = CORRECT_PATH_SEPARATOR );
// This function fixes cases of filenames like materials\\blah.vmt or somepath\otherpath\\ and removes the extra double slash.
void V_FixDoubleSlashes( char *pStr );
// Convert multibyte to wchar + back
// Specify -1 for nInSize for null-terminated string
void V_strtowcs( const char *pString, int nInSize, wchar_t *pWString, int nOutSize );
void V_wcstostr( const wchar_t *pWString, int nInSize, char *pString, int nOutSize );
// buffer-safe strcat
inline void V_strcat( char *dest, const char *src, int cchDest )
{
V_strncat( dest, src, cchDest, COPY_ALL_CHARACTERS );
}
//-----------------------------------------------------------------------------
// generic unique name helper functions
//-----------------------------------------------------------------------------
// returns startindex if none found, 2 if "prefix" found, and n+1 if "prefixn" found
template < class NameArray >
int V_GenerateUniqueNameIndex( const char *prefix, const NameArray &nameArray, int startindex = 0 )
{
if ( prefix == NULL )
return 0;
int freeindex = startindex;
int nNames = nameArray.Count();
for ( int i = 0; i < nNames; ++i )
{
const char *pName = nameArray[ i ];
if ( !pName )
continue;
const char *pIndexStr = StringAfterPrefix( pName, prefix );
if ( pIndexStr )
{
int index = *pIndexStr ? atoi( pIndexStr ) : 1;
if ( index >= freeindex )
{
// TODO - check that there isn't more junk after the index in pElementName
freeindex = index + 1;
}
}
}
return freeindex;
}
template < class NameArray >
bool V_GenerateUniqueName( char *name, int memsize, const char *prefix, const NameArray &nameArray )
{
if ( name == NULL || memsize == 0 )
return false;
if ( prefix == NULL )
{
name[ 0 ] = '\0';
return false;
}
int prefixLength = V_strlen( prefix );
if ( prefixLength + 1 > memsize )
{
name[ 0 ] = '\0';
return false;
}
int i = V_GenerateUniqueNameIndex( prefix, nameArray );
if ( i <= 0 )
{
V_strncpy( name, prefix, memsize );
return true;
}
int newlen = prefixLength + ( int )log10( ( float )i ) + 1;
if ( newlen + 1 > memsize )
{
V_strncpy( name, prefix, memsize );
return false;
}
V_snprintf( name, memsize, "%s%d", prefix, i );
return true;
}
// NOTE: This is for backward compatability!
// We need to DLL-export the Q methods in vstdlib but not link to them in other projects
#if !defined( VSTDLIB_BACKWARD_COMPAT )
#ifndef Q_memset
#define Q_memset V_memset
#endif
#ifndef Q_memcpy
#define Q_memcpy V_memcpy
#endif
#ifndef Q_memmove
#define Q_memmove V_memmove
#endif
#ifndef Q_memcmp
#define Q_memcmp V_memcmp
#endif
#ifndef _CRTLIB
#define Q_strlen V_strlen
#endif
#ifndef Q_strcpy
#define Q_strcpy V_strcpy
#endif
#ifndef _CRTLIB
#define Q_strrchr V_strrchr
#endif
#ifndef Q_strcmp
#define Q_strcmp V_strcmp
#endif
#define Q_wcscmp V_wcscmp
#ifndef Q_stricmp
#define Q_stricmp V_stricmp
#endif
#ifndef _CRTLIB
#define Q_strstr V_strstr
#endif
#ifndef Q_strupr
#define Q_strupr V_strupr
#endif
#define Q_strlower V_strlower
#define Q_wcslen V_wcslen
#ifndef _CRTLIB
#define Q_strncmp V_strncmp
#endif
#define Q_strcasecmp V_strcasecmp
#define Q_strncasecmp V_strncasecmp
#ifndef _CRTLIB
#define Q_strnicmp V_strnicmp
#define Q_atoi V_atoi
#define Q_atof V_atof
#define Q_stristr V_stristr
#endif
#define Q_strnistr V_strnistr
#define Q_strnchr V_strnchr
#define Q_normalizeFloatString V_normalizeFloatString
#ifndef _CRTLIB
#define Q_strncpy V_strncpy
#define Q_snprintf V_snprintf
#endif
#define Q_wcsncpy V_wcsncpy
#ifndef _CRTLIB
#define Q_strncat V_strncat
#define Q_strnlwr V_strnlwr
#endif
#define Q_vsnprintf V_vsnprintf
#ifndef _CRTLIB
#define Q_pretifymem V_pretifymem
#endif
#define Q_pretifynum V_pretifynum
#define Q_UTF8ToUnicode V_UTF8ToUnicode
#define Q_UnicodeToUTF8 V_UnicodeToUTF8
#define Q_hextobinary V_hextobinary
#define Q_binarytohex V_binarytohex
#define Q_FileBase V_FileBase
#define Q_StripTrailingSlash V_StripTrailingSlash
#define Q_StripExtension V_StripExtension
#define Q_DefaultExtension V_DefaultExtension
#define Q_SetExtension V_SetExtension
#define Q_StripFilename V_StripFilename
#define Q_StripLastDir V_StripLastDir
#define Q_UnqualifiedFileName V_UnqualifiedFileName
#define Q_ComposeFileName V_ComposeFileName
#define Q_ExtractFilePath V_ExtractFilePath
#define Q_ExtractFileExtension V_ExtractFileExtension
#define Q_GetFileExtension V_GetFileExtension
#define Q_RemoveDotSlashes V_RemoveDotSlashes
#define Q_MakeAbsolutePath V_MakeAbsolutePath
#define Q_AppendSlash V_AppendSlash
#define Q_IsAbsolutePath V_IsAbsolutePath
#define Q_StrSubst V_StrSubst
#define Q_SplitString V_SplitString
#define Q_SplitString2 V_SplitString2
#define Q_StrSlice V_StrSlice
#define Q_StrLeft V_StrLeft
#define Q_StrRight V_StrRight
#define Q_FixSlashes V_FixSlashes
#define Q_strtowcs V_strtowcs
#define Q_wcstostr V_wcstostr
#ifndef Q_strcat
#define Q_strcat V_strcat
#endif
#define Q_GenerateUniqueNameIndex V_GenerateUniqueNameIndex
#define Q_GenerateUniqueName V_GenerateUniqueName
#define Q_MakeRelativePath V_MakeRelativePath
#endif // !defined( VSTDLIB_DLL_EXPORT )
#endif // TIER1_STRTOOLS_H
| [
"824395314@qq.com"
] | 824395314@qq.com |
de74e67b004883dfd40fdb85301ec2d8cc5ffe35 | d5889c8ffa5f0d9369c5226205dccff7f5382379 | /programmers/월간 코드 챌린지 시즌1/트리 트리오 중간값.cpp | 8d7a05fd04b356ec2f006cf3c1aa033e50e694b1 | [
"MIT"
] | permissive | fpdjsns/Algorithm | 334457a0e18a28b51a54514b91daff798ed833fe | 1414d9368f4047b28808952efa2b0c68792c154c | refs/heads/master | 2023-05-04T16:55:43.599727 | 2023-04-18T14:27:50 | 2023-04-18T14:27:50 | 126,031,686 | 14 | 8 | MIT | 2021-12-06T07:30:28 | 2018-03-20T14:36:02 | C++ | UTF-8 | C++ | false | false | 1,892 | cpp | /**
* problem : https://programmers.co.kr/learn/courses/30/lessons/68937
* algorithm : dijkstra(bfs)
* time complexity : O(E)
*/
#include <string>
#include <algorithm>
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
int V;
// return (unique, (the longest edge from start edge, max dist))
pair<bool, pair<int, int>> dijkstra(vector<vector<int>>& edges, int start) {
queue<int> q;
vector<int> dist(V, 0);
vector<bool> visit(V, false);
dist[start] = 0; // set start edge dist
q.push(start);
visit[start] = true;
while(!q.empty()) {
int vertex = q.front(); q.pop();
for(auto nextVertex: edges[vertex]) {
if(visit[nextVertex]) continue;
visit[nextVertex] = true;
if(dist[nextVertex] < dist[vertex] + 1) {
dist[nextVertex] = dist[vertex] + 1;
q.push(nextVertex);
}
}
}
bool isUnique = true;
int lastEdge = 0;
for(int i=1; i<V; i++){
if(dist[lastEdge] < dist[i]) {
lastEdge = i;
isUnique = true;
} else if(dist[lastEdge] == dist[i]){
isUnique = false;
}
}
return {isUnique, {lastEdge, dist[lastEdge]}};
}
int solution(int n, vector<vector<int>> edges) {
vector<vector<int>> newEdges(n);
V = n;
for(int i = 0; i < edges.size(); i++) {
vector<int> edge = edges[i];
newEdges[edge[0]-1].push_back(edge[1]-1);
newEdges[edge[1]-1].push_back(edge[0]-1);
}
int edge = dijkstra(newEdges, 0).second.first;
auto first = dijkstra(newEdges, edge);
if(!first.first) return first.second.second;
auto answer = dijkstra(newEdges, first.second.first);
int maxDist = answer.second.second;
bool isUnique = answer.first;
return isUnique ? maxDist - 1 : maxDist;
}
| [
"noreply@github.com"
] | fpdjsns.noreply@github.com |
1e75f94a0e4a131932373e483ee4af3ba2f402b2 | 8af16d7b370dc4a5377bf51b328118d0cb69167f | /pallette/ThreadPool.h | dae8cd924cd7de43a5b6d7ffa8fc53bdd0d336b8 | [] | no_license | pengjunjie24/pallette | 0ff462bf98ba5583a93d6a829cb9f318b0923d83 | 466072bf83fa8a41fd4942a651d2352589f50de9 | refs/heads/master | 2021-06-11T05:57:50.365778 | 2021-03-18T06:59:14 | 2021-03-18T06:59:14 | 167,672,795 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,917 | h | /*************************************************************************
> File Name: ThreadPool.h
> Author: pengjunjie
> Mail: 1002398145@qq.com
> Created Time: 2018年12月23日 星期日 23时51分23秒
************************************************************************/
#ifndef PALLETTE_THREADPOOL_H
#define PALLETTE_THREADPOOL_H
#include <pallette/noncopyable.h>
#include <pallette/Thread.h>
#include <mutex>
#include <condition_variable>
#include <functional>
#include <vector>
#include <deque>
#include <memory>
namespace pallette
{
//线程池类
class ThreadPool : public noncopyable
{
public:
typedef std::function<void()> task;
explicit ThreadPool(const std::string& nameArg = std::string("ThreadPool"));
~ThreadPool();
void setMaxQueueSize(int maxSize) { maxQueueSize_ = maxSize; }//设置任务对列大小
void setThreadInitCallback(const task& cb) { threadInitCallback_ = cb; }//设置线程池初始化函数
const std::string& name() const { return name_; }
void start(int);//启动固定数量线程的线程池
void stop();
size_t queueSize() const;
void run(task);//将任务添加到线程池中运行
private:
bool isFull() const;
void runInThread();
task take();//从任务队列中取出任务
mutable std::mutex mutex_;
std::condition_variable notEmpty_;//容器非空条件变量
std::condition_variable notFull_;//容器非满的条件变量
std::string name_;//线程池名
task threadInitCallback_;//线程池初始化任务
std::vector<std::unique_ptr<pallette::Thread>> threads_;//存放线程容器
std::deque<task> queue_;//任务队列
size_t maxQueueSize_;//任务队列最大容量,超过最大容量则阻塞,为0则无上限
bool running_;
};
}
#endif
| [
"1002398145@qq.com"
] | 1002398145@qq.com |
0ce74db3b6cf2d245f93767c0d93bc6a5506ef5b | 349fa0e7a80bda77a7102da55f5bf055f9cd7a5e | /Programacion Competitiva/Halim - CS3233/uva/902/main.cpp | 6d858f413d15acc47488f6584cff91cef0979643 | [] | no_license | starsaminf/notas_uni | 8204dfd1362188177ba2b91614f2b2a19d6ab2ad | 3d8f5a8a5e9c4c8260bdb521537b0c79a06dde21 | refs/heads/master | 2022-04-19T04:42:13.136297 | 2020-04-20T01:17:21 | 2020-04-20T01:17:21 | 257,055,655 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 621 | cpp | #include <iostream>
#include <algorithm>
#include <map>
#include <string>
#include <cstdlib>
using namespace std;
int main() {
string cad,cad2,cad3;
int n,j,max;
while(cin>>n>>cad) {
j=0;
map<string,int>mapa;
for(int i=0; i<cad.length()-1; i++,j++) {
mapa[cad.substr(j,n)]++;
}
max=0;
for(map<string,int>::iterator i2=mapa.begin(); i2!=mapa.end(); i2++) {
if(i2->second>max) {
cad3=i2->first;
max=i2->second;
}
}
cout<<cad3<<endl;
mapa.clear();
}
return 0;
}
| [
"starsaminf@gmail.com"
] | starsaminf@gmail.com |
0106191384d90cc49655c6405f56d30f4abc8b31 | 19a408e6ea89de47a6c8c123c8d1631f51ef89be | /main.cpp | 3d1712c97b93833b696a18e56159b75849123dda | [] | no_license | lopesivan/cppPonto3d | c3957cb255582d2e0c5be1cb3554430640d58b0c | 84d8c7d0215ff9869ea26ccd523e2c4e9fc330f7 | refs/heads/master | 2022-06-28T09:43:25.878048 | 2022-05-23T10:04:39 | 2022-05-23T10:04:39 | 108,599,919 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 335 | cpp | #include <iostream>
#include "Ponto.h"
int main()
{
Ponto<int, 3> A;
int v[3] = {4,2,3};
Ponto<int, 3> B (v);
std::cout << "B = " << B << "\n";
A = B;
std::cout << "A = " << A << "\n";
float v2[4] = {4.1,2.2,3.3,4.4};
Ponto<float, 4> C (v2);
std::cout << "C = " << C << "\n";
return 0;
} | [
"ivan (at) 42algoritmos (dot) com (dot) br"
] | ivan (at) 42algoritmos (dot) com (dot) br |
777d1e1a631f10c8cb21cd8f20937c5edf9d3a40 | 4a9b250172bdae6946350893c246931ef89cd8a0 | /05-ScenceManager/NinjaBoomerang.cpp | f56cd3bc570e662856d57e9cddeed205cf075b77 | [] | no_license | krypton99/SuperMarioBros | bc687ddc4ceb51de932611554d657001fe394bb6 | ecfbd42110cbeca0c55ec90fe2fa73919484b5c5 | refs/heads/master | 2023-07-02T21:25:11.685532 | 2021-08-05T13:50:29 | 2021-08-05T13:50:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,398 | cpp | #include "NinjaBoomerang.h"
NinjaBoomerang::NinjaBoomerang(D3DXVECTOR2 position, int nx)
{
x = position.x;
y = position.y;
this->start_x = x;
this->nx = nx;
this->SetAnimationSet(CAnimationSets::GetInstance()->Get(11));
SetState(BOOMERANG_STATE_ACTIVE);
}
void NinjaBoomerang::Update(DWORD dt, vector<LPGAMEOBJECT>* coObjects)
{
CGameObject::Update(dt);
x += dx;
y += dy;
if (x > start_x + DISTANCE_TO_RETURN_X)
SetState(BOOMERANG_STATE_RETURN);
if (state == BOOMERANG_STATE_RETURN)
{
if (abs(vx) <= abs(nx * BOOMERANG_SPEED_X))
vx -= BOOMERANG_SPEED_X * float(nx) * 0.1f;
if (abs(vy) <= BOOMERANG_SPEED_X * 0.1)
vy += (BOOMERANG_GRAVITY * dt);
}
}
void NinjaBoomerang::GetBoundingBox(float& left, float& top, float& right, float& bottom)
{
if (state == STATE_DESTROYED) {
left = top = right = bottom = 0;
}
else {
left = x;
top = y;
right = x + BOOMERANG_BBOX_SIZE;
bottom = y + BOOMERANG_BBOX_SIZE;
}
}
void NinjaBoomerang::Render()
{
if (state == STATE_DESTROYED)
return;
int alpha = 255;
animation_set->at(0)->Render(x, y, alpha);
//RenderBoundingBox();
}
void NinjaBoomerang::SetState(int state)
{
CGameObject::SetState(state);
switch (state)
{
case STATE_DESTROYED:
vx = vy = 0;
break;
case BOOMERANG_STATE_ACTIVE:
vx = nx * BOOMERANG_SPEED_X;
vy = -BOOMERANG_SPEED_Y;
break;
case BOOMERANG_STATE_RETURN:
break;
}
}
| [
"17520691@gm.uit.edu.vn"
] | 17520691@gm.uit.edu.vn |
1357f60939ccba2fa61f37c69d41bbb3f7e631b2 | 2a7e77565c33e6b5d92ce6702b4a5fd96f80d7d0 | /fuzzedpackages/clere/src/Fit.h | 69a5675141fc18d13c0a858344a55a2063c0a05d | [] | no_license | akhikolla/testpackages | 62ccaeed866e2194652b65e7360987b3b20df7e7 | 01259c3543febc89955ea5b79f3a08d3afe57e95 | refs/heads/master | 2023-02-18T03:50:28.288006 | 2021-01-18T13:23:32 | 2021-01-18T13:23:32 | 329,981,898 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 253 | h | #ifndef FIT_H
#define FIT_H
#include "IO.h"
#include "Model.h"
using namespace std;
using namespace Eigen;
class Fit{
private:
IO *io;
Model model;
MatrixXd theta;
public:
Fit(IO *io);
~Fit(){};
void fitModel();
void output();
};
#endif
| [
"akhilakollasrinu424jf@gmail.com"
] | akhilakollasrinu424jf@gmail.com |
0cfe6b1fd1d1764e9ff6cd7ea1f316dba6cb580a | 2fc15a3faf57178f2923577a24f4fbb6685d399b | /Poker/table.cpp | 35305cc0ece8c48c6cd2a529c10035e771816bb4 | [
"MIT"
] | permissive | AnubisF/Poker_game | 932fbdc71343bb161e96f06120421bed47ba6ae9 | 1c143a263669be03dc89f013a773890ef45dd994 | refs/heads/master | 2023-03-10T17:12:00.401388 | 2021-02-25T06:33:36 | 2021-02-25T06:33:36 | 267,435,567 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,051 | cpp | #include "stdafx.h"
#include "Table.h"
#include <iostream>
#include "SFML/Audio.hpp"
using namespace std;
Table::Table()
{
Bank = Rate = PlayerRate = OponentRate = 0;
PlayerCash = OpponentCash = 1000;
gameOver.loadFromFile("images/GameOver.png");
pause.loadFromFile("images/Pause.png");
menu.loadFromFile("images/menu.png");
textTlo.loadFromFile("images/background.png");
tlo.setTexture(textTlo);
textPanel.loadFromFile("images/panel.png");
panel.setTexture(textPanel);
panel.setPosition(260, 640);
textChips.loadFromFile("images/chips.png");
chips[0].setTexture(textChips);
chips[0].setTextureRect(sf::IntRect(0, 0, 68, 68));
chips[0].setPosition(450, 500);
chips[1].setTexture(textChips);
chips[1].setTextureRect(sf::IntRect(0, 262, 68, 68));
chips[1].setPosition(530, 500);
chips[2].setTexture(textChips);
chips[2].setTextureRect(sf::IntRect(0, 372, 68, 68));
chips[2].setPosition(610, 500);
chips[3].setTexture(textChips);
chips[3].setTextureRect(sf::IntRect(0, 440, 68, 68));
chips[3].setPosition(690, 500);
}
Table::~Table()
{
}
void Table::AI_raiseBet(sf::RenderWindow& app, int howMuchToAdd) {
if (howMuchToAdd <= OpponentCash && howMuchToAdd > 0) {
OponentRate += howMuchToAdd;
OpponentCash -= howMuchToAdd;
Bank = PlayerRate + OponentRate;
sf::String title = "The opponent raises the bet on " + std::to_string(howMuchToAdd);
write(app, sf::Vector2f(370, 700), title);
app.display();
delay(1500);
}
}
void Table::toCall() {
// Need to calculate the difference and subtract from the bank
int difference = PlayerRate - OponentRate;
// std::cout << "difference = " << difference << "\n";
PlayerRate = OponentRate;
// std::cout << "difference = " << PlayerRate<< "\n";
// std::cout << "difference = " << OponentRate << "\n";
Bank = PlayerRate + OponentRate;
PlayerCash += difference;
}
void Table::addedToRate(int howMuchToAdd) {
PlayerRate += howMuchToAdd;
PlayerCash -= howMuchToAdd;
int difference = PlayerRate - OponentRate;
if (PlayerRate > OponentRate) {
PlayerRate = OponentRate;
PlayerCash += difference;
}
playSound("images/dieShuffle1.wav");
}
bool Table::AI_toCall() {
int howMuchToAdd = PlayerRate - OponentRate;
std::cout << "How much to add =" << howMuchToAdd << std::endl;
if (howMuchToAdd <= OpponentCash && howMuchToAdd >= 0) {
// OponentRate += howMuchToAdd;
OponentRate = PlayerRate;
OpponentCash -= howMuchToAdd;
Bank = PlayerRate + OponentRate;
return true;
}
return false;
}
void Table::addToRate(int howMuchToAdd) {
if (howMuchToAdd <= PlayerCash) {
playSound("images/dieShuffle1.wav");
PlayerRate += howMuchToAdd;
PlayerCash -= howMuchToAdd;
}
Bank = PlayerRate + OponentRate;
}
void Table::newDealCards() {
PlayerRate = OponentRate = 10;
PlayerCash -= 10;
OpponentCash -= 10;
Bank = PlayerRate + OponentRate;
}
void Table::foldCards(sf::RenderWindow& app) {
Bank = PlayerRate + OponentRate;
OpponentCash += Bank;
sf::String title = "You drop the cards. Opponent wins " + to_string(Bank);
write(app, sf::Vector2f(370, 700), title);
app.display();
// delay(2500);
}
void Table::AI_FoldCards(sf::RenderWindow& app) {
Bank = PlayerRate + OponentRate;
PlayerCash += Bank;
sf::String title = "The opponent drop the cards. You win " + to_string(Bank);
write(app, sf::Vector2f(370, 700), title);
app.display();
delay(500);
}
void Table::drawTable(sf::RenderWindow& app) {
app.draw(tlo);
app.draw(panel);
app.draw(chips[0]);
app.draw(chips[1]);
app.draw(chips[2]);
app.draw(chips[3]);
write(app, sf::Vector2f(475, 520), "5");
write(app, sf::Vector2f(555, 520), "10");
write(app, sf::Vector2f(630, 520), "20");
write(app, sf::Vector2f(710, 520), "50");
sf::String title;
title = "Bank " + to_string(Bank) + "\n You " + to_string(PlayerRate) + "\n AI " + to_string(OponentRate);
write(app, sf::Vector2f(150, 320), title);
title = "You " + to_string(PlayerCash) + "\nAi " + to_string(OpponentCash);
write(app, sf::Vector2f(900, 320), title);
Vector2i mx = Mouse::getPosition(app);
title = "x=" + std::to_string(mx.x) + " y=" + std::to_string(mx.y) + " ";
write(app, sf::Vector2f(50, 50), title);
}
void Table::spause(sf::RenderWindow& app) {
Util util;
sf::Sprite temp(pause);
temp.setPosition(250, 280);
app.draw(temp);
app.display();
util.delay(200);
do {} while (!sf::Keyboard::isKeyPressed(sf::Keyboard::P));
util.delay(200);
}
void Table::sgameOver(sf::RenderWindow& app) {
std::cout << "game over" << std::endl;
Util util;
sf::Sprite temp(gameOver);
temp.setPosition(325, 250);
app.draw(temp);
app.display();
util.delay(1500);
}
bool Table::setFont(sf::String fontname, int size, sf::Color color) {
if (!font.loadFromFile(fontname)) {
cout << "Failed to load font." << endl;
return false;
}
// selecting a font
text.setFont(font);
text.setCharacterSize(size); //in pixels!!!
text.setColor(color);
return true;
}
void Table::write(sf::RenderWindow& window, sf::Vector2f stringPosition, sf::String string) {
text.setPosition(stringPosition);
text.setString(string);
window.draw(text);
}
void Table::youwin(sf::RenderWindow& app) {
Bank = PlayerRate + OponentRate;
PlayerCash += Bank;
sf::String title = "You win " + to_string(Bank);
write(app, sf::Vector2f(370, 700), title);
app.display();
delay(2500);
}
void Table::youlose(sf::RenderWindow& app) {
Bank = PlayerRate + OponentRate;
OpponentCash += Bank;
sf::String title = "You lose " + to_string(Bank);
write(app, sf::Vector2f(370, 700), title);
app.display();
delay(2500);
}
void Table::draw(sf::RenderWindow& app) {
Bank = PlayerRate + OponentRate;
OpponentCash += OponentRate;
PlayerCash += PlayerRate;
sf::String title = "The bank returns to you " + std::to_string(PlayerRate) + " AI " + std::to_string(OponentRate);
write(app, sf::Vector2f(370, 700), title);
app.display();
delay(2500);
}
void Table::playSound(std::string plik) {
sf::SoundBuffer buffer;
buffer.loadFromFile(plik);
sf::Sound sound(buffer);
sound.play();
while (sound.getStatus() == sf::Sound::Playing)
{
}
} | [
"artem.vinogradov@hotmail.com"
] | artem.vinogradov@hotmail.com |
e472d7d68142cd7a1bd21629e73f4639cc38f4da | 1286c5b3d37b0785e99073c8234b44df47561f5a | /201510_201609/0320_chokudai001/A2.cpp | adb8bb01f6ba7f8eaed3b9466686c8eec0e16ab6 | [
"MIT"
] | permissive | kazunetakahashi/atcoder | 930cb5a0f4378914cc643de2f0596a5de7e4a417 | 16ce65829ccc180260b19316e276c2fcf6606c53 | refs/heads/master | 2022-02-15T19:12:10.224368 | 2022-01-29T06:38:42 | 2022-01-29T06:38:42 | 26,685,318 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,109 | cpp | #include <iostream>
#include <vector>
#include <algorithm>
#include <random>
using namespace std;
struct point {
int x, y;
point(int tx, int ty) {
x = tx;
y = ty;
}
bool operator==(const point& right) const {
return x == right.x && y == right.y;
}
};
struct pass {
vector<point> V;
int reduce;
int turn;
pass(vector<point> tV, int treduce, int tturn) {
V = tV;
reduce = treduce;
turn = tturn;
}
bool operator<(const pass& right) const {
return ((reduce - turn)/(int)V.size() )
< ((right.reduce - right.turn)/(int)right.V.size() );
}
};
const int infty = 1000000;
random_device rd;
mt19937 mt(rd());
const int dx[4] = {0, 1, 0, -1};
const int dy[4] = {1, 0, -1, 0};
int A[30][30];
int A_sum = 0;
int red_sum = 0;
vector<point> result;
vector<point> P;
int T[1000];
int G[1000];
int reduce;
int turn;
bool actual = false;
int count_sub(int l, int r) {
// cerr << "l = " << l << ", r = " << r << endl;
int mini = infty;
for (auto i = l; i < r; i++) {
mini = min(mini, T[i]-G[i]);
}
for (auto i = l; i < r; i++) {
G[i] += mini;
}
int ans = mini;
bool temp[1000];
temp[0] = false;
for (auto i = l; i < r; i++) {
temp[i-l+1] = (T[i] > G[i]);
}
temp[r-l+1] = false;
bool now = false;
int left, right;
for (auto i = 0; i < r-l+2; i++) {
if (!now && !temp[i]) {
continue;
} else if (!now && temp[i]) {
now = true;
left = l+i-1;
} else if (now && temp[i]) {
continue;
} else {
now = false;
right = l+i-1;
ans += count_sub(left, right);
}
}
// cerr << "ans = " << ans << endl;
if (actual) {
for (auto i = 0; i < mini; i++) {
for (auto j = l; j < r; j++) {
result.push_back(P[j]);
A[P[j].x][P[j].y]--;
red_sum++;
}
}
}
return ans;
}
bool count(int r) {
for (auto i = 0; i < r; i++) {
G[i] = r-1-i;
}
reduce = 0;
for (auto i = 0; i < r; i++) {
if (T[i] - G[i] < 0) return false;
reduce += T[i] - G[i];
}
turn = count_sub(0, r);
return true;
}
void count_test() {
int M;
cin >> M;
for (auto i = 0; i < M; i++) {
cin >> T[i];
}
if (count(M)) {
cerr << "reduce = " << reduce << ", turn = " << turn << endl;
} else {
cerr << "failed" << endl;
}
}
vector<pass> Passes[30][30];
bool visited[30][30];
bool valid(int i, int j) {
return 0 <= i && i < 30 && 0 <= j && j < 30 && !visited[i][j];
}
void make_pass(int i, int j) {
int M = mt()%5+1;
int now_i = i;
int now_j = j;
vector<point> V;
V.push_back(point(now_i, now_j));
for (auto k = 0; k < M-1; k++) {
int r = mt()%4;
now_i += dx[r];
now_j += dy[r];
if (!valid(now_i, now_j)) return;
point tp = point(now_i, now_j);
for (auto x : V) {
if (tp == x) {
return;
}
}
V.push_back(tp);
}
for (auto i = 0; i < M; i++) {
T[i] = A[V[i].x][V[i].y];
}
if (count(M)) {
Passes[i][j].push_back(pass(V, reduce, turn));
}
}
void input() {
for (auto i = 0; i < 30; i++) {
for (auto j = 0; j < 30; j++) {
cin >> A[i][j];
A_sum += A[i][j];
}
}
}
void output() {
for (auto p : result) {
cout << p.x+1 << " " << p.y+1 << endl;
}
}
void solve() {
while (A_sum > red_sum) {
int maxi = 0;
int max_i, max_j;
for (auto i = 0; i < 30; i++) {
for (auto j = 0; j < 30; j++) {
if (A[i][j] > maxi) {
maxi = A[i][j];
max_i = i;
max_j = j;
}
visited[i][j] = (A[i][j] == 0);
Passes[i][j].clear();
}
}
int now_i = max_i;
int now_j = max_j;
for (auto i = 0; i < 2000; i++) {
make_pass(now_i, now_j);
}
sort(Passes[now_i][now_j].begin(), Passes[now_i][now_j].end());
reverse(Passes[now_i][now_j].begin(), Passes[now_i][now_j].end());
actual = true;
P = (*(Passes[now_i][now_j].begin())).V;
for (auto i = 0; i < (int)P.size(); i++) {
T[i] = A[P[i].x][P[i].y];
}
count((int)P.size());
actual = false;
}
}
int main() {
input();
solve();
output();
}
| [
"kazunetakahashi@gmail.com"
] | kazunetakahashi@gmail.com |
01dfa3f3b75df0f850d86307640663636ef83aa5 | 30114f6730aac693971d826f58e46f6d158e6957 | /MFC/ole/TstCon/InsCtlDg.Cpp | 0354846ef9f8cbc86fdf1effd1da567686cd6242 | [] | no_license | oudream/vc_example_official | 67111751a416df93cdc4b9f1048d93f482819992 | 8075deebd4755b2a7531a8f918c19ad2e82e2b23 | refs/heads/master | 2020-06-14T08:00:01.267447 | 2019-07-03T01:03:59 | 2019-07-03T01:03:59 | 194,953,887 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 11,302 | cpp | // InsertControlDlg.Cpp : implementation file
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Classes Reference and related electronic
// documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft C++ Libraries products.
#include "StdAfx.H"
#include "TestCon.H"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CInsertControlDlg dialog
CInsertControlDlg::CInsertControlDlg( CWnd* pParent ) :
CDialog( CInsertControlDlg::IDD, pParent ),
m_clsid( CLSID_NULL )
{
//{{AFX_DATA_INIT(CInsertControlDlg)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CInsertControlDlg::DoDataExchange(CDataExchange* pDX)
{
int iItem;
POSITION posControl;
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CInsertControlDlg)
DDX_Control(pDX, IDC_SERVERPATH, m_staticServerPath);
DDX_Control(pDX, IDC_REQUIREDCATEGORIES, m_butRequiredCategories);
DDX_Control(pDX, IDC_IGNOREREQUIREDCATEGORIES, m_butIgnoreRequiredCategories);
DDX_Control(pDX, IDOK, m_butOK);
DDX_Control(pDX, IDC_CONTROLS, m_lbControls);
//}}AFX_DATA_MAP
if( pDX->m_bSaveAndValidate )
{
iItem = m_lbControls.GetCurSel();
if( iItem == LB_ERR )
{
m_clsid = CLSID_NULL;
}
else
{
posControl = POSITION( m_lbControls.GetItemDataPtr( iItem ) );
ASSERT( posControl != NULL );
m_clsid = m_lControls.GetAt( posControl );
}
}
}
BEGIN_MESSAGE_MAP(CInsertControlDlg, CDialog)
//{{AFX_MSG_MAP(CInsertControlDlg)
ON_BN_CLICKED(IDC_IMPLEMENTEDCATEGORIES, OnImplementedCategories)
ON_LBN_DBLCLK(IDC_CONTROLS, OnControlsDblClk)
ON_BN_CLICKED(IDC_REQUIREDCATEGORIES, OnRequiredCategories)
ON_LBN_SELCHANGE(IDC_CONTROLS, OnControlsSelChange)
ON_BN_CLICKED(IDC_IGNOREREQUIREDCATEGORIES, OnIgnoreRequiredCategories)
ON_WM_HELPINFO()
ON_WM_CONTEXTMENU()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CInsertControlDlg message handlers
BOOL CInsertControlDlg::OnInitDialog()
{
HRESULT hResult;
CATID catid;
hResult = m_pCatInfo.CreateInstance( CLSID_StdComponentCategoriesMgr, NULL,
CLSCTX_INPROC_SERVER );
if( FAILED( hResult ) )
{
TRACE( "Failed to create category manager\n" );
EndDialog( IDCANCEL );
return( TRUE );
}
CDialog::OnInitDialog();
catid = CATID_Control;
m_aImplementedCategories.Add( catid );
m_butIgnoreRequiredCategories.SetCheck( 0 );
m_lbControls.ModifyStyle( 0, WS_HSCROLL );
RefreshControlList();
m_lbControls.SetFocus();
return( FALSE );
}
void GetClassServerPath( REFCLSID clsid, CString& strServerPath )
{
HKEY hKey;
HKEY hServerKey;
OLECHAR szCLSID[64];
LONG nResult;
ULONG nBytes;
DWORD dwType;
LPTSTR pszServerPath;
StringFromGUID2( clsid, szCLSID, 64 );
hKey = NULL;
hServerKey = NULL;
try
{
nResult = RegOpenKeyEx( HKEY_CLASSES_ROOT, CString( "CLSID\\" )+CString(
szCLSID ), 0, KEY_READ, &hKey );
if( nResult != ERROR_SUCCESS )
{
throw( E_FAIL );
}
nResult = RegOpenKeyEx( hKey, _T( "InprocServer32" ), 0, KEY_READ,
&hServerKey );
if( nResult != ERROR_SUCCESS )
{
nResult = RegOpenKeyEx( hKey, _T( "InprocHandler32" ), 0, KEY_READ,
&hServerKey );
if( nResult != ERROR_SUCCESS )
{
nResult = RegOpenKeyEx( hKey, _T( "LocalServer32" ), 0, KEY_READ,
&hServerKey );
if( nResult != ERROR_SUCCESS )
{
throw( E_FAIL );
}
}
}
nBytes = 0;
nResult = RegQueryValueEx( hServerKey, NULL, NULL, &dwType, NULL,
&nBytes );
if( (nResult != ERROR_SUCCESS) || (dwType != REG_SZ) )
{
throw( E_FAIL );
}
pszServerPath = LPTSTR( _alloca( nBytes ) );
nResult = RegQueryValueEx( hServerKey, NULL, NULL, &dwType,
LPBYTE( pszServerPath ), &nBytes );
if( (nResult != ERROR_SUCCESS) || (dwType != REG_SZ) )
{
throw( E_FAIL );
}
strServerPath = pszServerPath;
RegCloseKey( hKey );
hKey = NULL;
RegCloseKey( hServerKey );
hServerKey = NULL;
}
catch( HRESULT )
{
if( hKey != NULL )
{
RegCloseKey( hKey );
}
if( hServerKey != NULL )
{
RegCloseKey( hServerKey );
}
LOAD_STRING_FROM_RESOURCE( strServerPath, IDS_SERVERNOTFOUND );
return;
}
}
void CInsertControlDlg::RefreshControlList()
{
BOOL tDone;
HRESULT hResult;
IEnumGUIDPtr pEnum;
ULONG nImplementedCategories;
CATID* pcatidImpl;
ULONG nRequiredCategories;
CATID* pcatidReq;
CLSID clsid;
LPOLESTR pszName;
CString strName;
ULONG iCategory;
int iItem;
POSITION posControl;
CString strServerPath;
CString strString;
m_lbControls.ResetContent();
m_lControls.RemoveAll();
nImplementedCategories = (ULONG)m_aImplementedCategories.GetSize();
if( nImplementedCategories == 0 )
{
nImplementedCategories = ULONG( -1 );
pcatidImpl = NULL;
}
else
{
pcatidImpl = (CATID*)_malloca( nImplementedCategories*sizeof( CATID ) );
for( iCategory = 0; iCategory < nImplementedCategories; iCategory++ )
{
pcatidImpl[iCategory] = m_aImplementedCategories[iCategory];
}
}
if( m_butIgnoreRequiredCategories.GetCheck() )
{
nRequiredCategories = ULONG( -1 );
pcatidReq = NULL;
}
else
{
nRequiredCategories = (ULONG)m_aRequiredCategories.GetSize();
if( nRequiredCategories == 0 )
{
pcatidReq = NULL;
}
else
{
pcatidReq = (CATID*)_malloca( nRequiredCategories*sizeof( CATID ) );
for( iCategory = 0; iCategory < nRequiredCategories; iCategory++ )
{
pcatidReq[iCategory] = m_aRequiredCategories[iCategory];
}
}
}
hResult = m_pCatInfo->EnumClassesOfCategories( nImplementedCategories,
pcatidImpl, nRequiredCategories, pcatidReq, &pEnum );
_freea(pcatidImpl);
_freea(pcatidReq);
if( FAILED( hResult ) )
{
return;
}
tDone = FALSE;
int nExtent = 0;
TEXTMETRIC tm;
::ZeroMemory(&tm, sizeof(TEXTMETRIC));
CFont *pFont = NULL;
CFont *pOldFont = NULL;
CDC *pDC = m_lbControls.GetDC();
ASSERT(pDC);
if (pDC)
{
pFont = m_lbControls.GetFont();
ASSERT(pFont);
if (pFont)
{
pOldFont = pDC->SelectObject(pFont);
VERIFY(pDC->GetTextMetrics(&tm));
}
}
while( !tDone )
{
hResult = pEnum->Next( 1, &clsid, NULL );
if( hResult == S_OK )
{
pszName = NULL;
hResult = OleRegGetUserType( clsid, USERCLASSTYPE_FULL, &pszName );
if( SUCCEEDED( hResult ) )
{
strName = pszName;
CoTaskMemFree( pszName );
pszName = NULL;
if (pDC && pFont)
{
CSize sz = pDC->GetTextExtent(strName);
if (sz.cx > nExtent)
nExtent = sz.cx;
}
iItem = m_lbControls.AddString( strName );
posControl = m_lControls.AddTail( clsid );
m_lbControls.SetItemDataPtr( iItem, posControl );
}
}
else
{
tDone = TRUE;
}
}
if (pDC && pFont)
{
pDC->SelectObject(pOldFont);
m_lbControls.SetHorizontalExtent(nExtent + tm.tmAveCharWidth);
}
OnControlsSelChange();
}
void CInsertControlDlg::OnImplementedCategories()
{
CComponentCategoriesDlg dlg( IDS_IMPLEMENTEDCATEGORIES );
int nResult;
int iCategory;
POSITION posCategory;
CATID catid;
for( iCategory = 0; iCategory < m_aImplementedCategories.GetSize();
iCategory++ )
{
dlg.m_lSelectedCategories.AddTail( m_aImplementedCategories[
iCategory] );
}
nResult = (int)dlg.DoModal();
if( nResult != IDOK )
{
return;
}
m_aImplementedCategories.RemoveAll();
posCategory = dlg.m_lSelectedCategories.GetHeadPosition();
while( posCategory != NULL )
{
catid = dlg.m_lSelectedCategories.GetNext( posCategory );
m_aImplementedCategories.Add( catid );
}
RefreshControlList();
}
void CInsertControlDlg::OnControlsDblClk()
{
OnOK();
}
void CInsertControlDlg::OnRequiredCategories()
{
CComponentCategoriesDlg dlg( IDS_REQUIREDCATEGORIES );
int nResult;
int iCategory;
POSITION posCategory;
CATID catid;
for( iCategory = 0; iCategory < m_aRequiredCategories.GetSize();
iCategory++ )
{
dlg.m_lSelectedCategories.AddTail( m_aRequiredCategories[iCategory] );
}
nResult = (int)dlg.DoModal();
if( nResult != IDOK )
{
return;
}
m_aRequiredCategories.RemoveAll();
posCategory = dlg.m_lSelectedCategories.GetHeadPosition();
while( posCategory != NULL )
{
catid = dlg.m_lSelectedCategories.GetNext( posCategory );
m_aRequiredCategories.Add( catid );
}
RefreshControlList();
}
void CInsertControlDlg::OnControlsSelChange()
{
int iItem;
POSITION posControl;
CString strServerPath;
CLSID clsid;
CDC dc;
CFont* pFont;
LPTSTR pszServerPath;
CRect rect;
CFont* pOldFont;
iItem = m_lbControls.GetCurSel();
if( iItem != LB_ERR )
{
m_butOK.EnableWindow( TRUE );
posControl = POSITION( m_lbControls.GetItemDataPtr( iItem ) );
clsid = m_lControls.GetAt( posControl );
GetClassServerPath( clsid, strServerPath );
dc.CreateCompatibleDC( NULL );
pFont = m_staticServerPath.GetFont();
pOldFont = dc.SelectObject( pFont );
// Workaround for SHLWAPI bug (in weird cases, PathCompactPath actually
// expands the pathname)
pszServerPath = strServerPath.GetBuffer( MAX_PATH+2 );
m_staticServerPath.GetWindowRect( &rect );
PathCompactPath( dc, pszServerPath, rect.Width() );
strServerPath.ReleaseBuffer();
dc.SelectObject( pOldFont );
m_staticServerPath.SetWindowText( strServerPath );
}
else
{
m_butOK.EnableWindow( FALSE );
m_staticServerPath.SetWindowText( NULL );
}
}
void CInsertControlDlg::OnIgnoreRequiredCategories()
{
RefreshControlList();
if( m_butIgnoreRequiredCategories.GetCheck() )
{
m_butRequiredCategories.EnableWindow( FALSE );
}
else
{
m_butRequiredCategories.EnableWindow( TRUE );
}
}
static DWORD rgmapCHID[] =
{
IDC_CONTROLS, HIDC_CONTROLS,
IDC_IMPLEMENTEDCATEGORIES, HIDC_IMPLEMENTEDCATEGORIES,
IDC_REQUIREDCATEGORIES, HIDC_REQUIREDCATEGORIES,
IDC_IGNOREREQUIREDCATEGORIES, HIDC_IGNOREREQUIREDCATEGORIES,
0, 0
};
BOOL CInsertControlDlg::OnHelpInfo( HELPINFO* pHelpInfo )
{
CString strPath = AfxGetApp()->m_pszHelpFilePath;
strPath += _T("::/popups.txt");
return ::HtmlHelp((HWND)pHelpInfo->hItemHandle, strPath, HH_TP_HELP_WM_HELP, DWORD(LPVOID(rgmapCHID))) != NULL;
}
void CInsertControlDlg::OnContextMenu( CWnd* pWnd, CPoint /* point */ )
{
CString strPath = AfxGetApp()->m_pszHelpFilePath;
strPath += _T("::/popups.txt");
::HtmlHelp((HWND)*pWnd, strPath, HH_TP_HELP_CONTEXTMENU, DWORD(LPVOID(rgmapCHID)));
}
| [
"oudream@126.com"
] | oudream@126.com |
950a0459f4eea7dd72382902ac64010df4d4ab69 | 987f1cca4e2b69b81a2651ff890773e255a73ae0 | /geometry/CircleCalculate.hpp | 33d8ab3278cf3183196c16cdea877ebf74275b5e | [] | no_license | jellyfish26/competitive-library | ee404f666b8b8c05f24568af2e5e63b6bd4b820a | 114ea48df4244ccd928b6c21d386f95bfc199bbc | refs/heads/master | 2023-03-26T23:11:55.850401 | 2021-01-10T09:01:56 | 2021-01-10T09:01:56 | 150,267,175 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 812 | hpp | #pragma once
#include <cmath>
// Last Update 2021-02-18
class CircleCalculate {
public:
static double radian_to_degree(double radian);
static double degree_to_radian(double degree);
// warn: theta is radian
static double calc_arc_length(double radius, double theta);
static double calc_chord_length(double radius, double theta);
};
double CircleCalculate::radian_to_degree(double radian) {
return radian * (180.0 / std::acos(01));
}
double CircleCalculate::degree_to_radian(double degree) {
return degree * (std::acos(-1) / 180.0);
}
// warn: theta is radian
double CircleCalculate::calc_arc_length(double radius, double theta) {
return radius * theta;
}
double CircleCalculate::calc_chord_length(double radius, double theta) {
return 2 * radius * std::sin(theta / 2);
} | [
"jellyfish0162@gmail.com"
] | jellyfish0162@gmail.com |
5690d973997987b849c0f8250706ca69fec28987 | a1210e6390d203b3642dd5d060fbe274e3f88386 | /HW10/reduce.cpp | b2f3d2e53ec1d52c755703bcbd63a66d1ce1c40c | [] | no_license | LiuJingJun15/ME759-sp21 | d9c9cd6855e564300fef03db9d583a41c9a76b7a | 25d7ffb4cf84f03d714a5fc54a3a179fc335c6fd | refs/heads/main | 2023-08-07T18:38:40.182164 | 2021-09-17T01:37:54 | 2021-09-17T01:37:54 | 406,360,217 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 321 | cpp | #include <cstdlib>
#include <iostream>
#include <omp.h>
#include "reduce.h"
float reduce(const float* arr, const size_t l, const size_t r) {
float count = 0;
#pragma omp parallel
{
#pragma omp for simd reduction(+:count)
for (size_t i = l; i < r; i++) {
count += arr[i];
}
}
return count;
}
| [
"jliu798@wisc.edu"
] | jliu798@wisc.edu |
ad830688a5d6d58ec2b8efa2bbc5836197cb2660 | 2c98a3f495306b68b27ba608a3f6e3d04c9b17a5 | /include/SpectralEvaluation/Fit/ParameterVector.h | aef0d54ba193c49a18333a645d7c6b9b4480b575 | [] | no_license | dlnorgaard/SpectralEvaluation | fa6a1951ad50fb75d7e84d3fdb658eb9b239a205 | cb4e398f5dc9530eab4dad1b14d08fd4033f0a14 | refs/heads/master | 2022-12-22T08:13:34.203915 | 2020-09-22T16:23:37 | 2020-09-22T16:23:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,558 | h | /**
* Contains a parameter vector object object.
*
* @author \URL[Stefan Kraus]{http://stefan@00kraus.de} @ \URL[IWR, Image Processing Group]{http://klimt.iwr.uni-heidelberg.de}
* @version 1.0 @ 2002/02/09
*/
#if !defined(PARAMETERVECTOR_H_20020209)
#define PARAMETERVECTOR_H_20020209
#include "Vector.h"
#include "Matrix.h"
#include "ParameterLinkItem.h"
namespace MathFit
{
/**
* Represents a parameter vector.
* Using this object, its possible to fix and/or link single parameters.
* The neccessary shrinking and expansion methods are implemented here.
* Also all other parameter types (error, correlation and covariance) are
* administered by this object.
* To achief this functionality two sets of parameter vectors are used. One parameter vector
* always stores the complete set of parameters regardless wheter they're linked or fixed. This
* vector is called the internal parameter vector. Any {\bf global} parameter IDs needed are the
* indicies of the parameter in this internal parameter vector. The second parameter vector is
* the so called exported parameter vector. This exported vector only consits of the freely
* modifiable parameters. No fixed or linked parameters are listed in this vector. If you do not
* need to known whetere parameters are fixed or not, you don't have to take care about the
* internal parameters.
*
* @author \URL[Stefan Kraus]{http://stefan@00kraus.de} @ \URL[IWR, Image Processing Group]{http://klimt.iwr.uni-heidelberg.de}
* @version 1.0 @ 2001/09/21
*/
class CParameterVector
{
public:
/**
* Constructs an empty parameter vector.
*/
CParameterVector()
{
mSize = mSizeInternal = 0;
mLink = nullptr;
}
/**
* Constructs a parameter vector with a specific size.
*
* @param iSize The number of parameters in the parameter vector.
*/
CParameterVector(int iSize)
{
SetSize(iSize);
}
/**
* Destructs the object.
* All allocated resources are released.
*/
~CParameterVector()
{
CParameterLinkItem* pItem = mLink;
while(pItem)
{
CParameterLinkItem* pNext = pItem->GetNextItem();
delete(pItem);
pItem = pNext;
}
}
/**
* Sets the number of parameter.
*
* @param iSize The number of parameters.
*
* @return TRUE if successful, FALSE otherwise.
*/
bool SetSize(int iSize)
{
mSize = mSizeInternal = iSize;
mIndex.clear(); // Was: delete mIndex; mIndex = nullptr;
mBackIndex.clear(); // Was: delete mBackIndex; mBackIndex = nullptr;
mLink = nullptr;
mParams.SetSize(iSize);
mParamsInternal.SetSize(iSize);
mParamsInternalLowLimit.SetSize(iSize);
mParamsInternalHighLimit.SetSize(iSize);
mParamsInternalFactorLimit.SetSize(iSize);
mDefaultParameter.SetSize(iSize);
mError.SetSize(iSize);
mErrorInternal.SetSize(iSize);
mCovar.SetSize(iSize, iSize);
mCovarInternal.SetSize(iSize, iSize);
mCorrel.SetSize(iSize, iSize);
mCorrelInternal.SetSize(iSize, iSize);
if(iSize > 0 )
{
mIndex.resize(iSize); // Was: mIndex = new int[iSize];
mBackIndex.resize(iSize); // Was: mBackIndex = new int[iSize];
// clear default parameters
mDefaultParameter.Zero();
const int iParamSize = mParams.GetSize();
int i;
for(i = 0; i < iParamSize; i++)
mIndex[i] = mBackIndex[i] = i;
}
return true;
}
/**
* Fixes the given parameter to a specific value.
* The parameter given will be set to the specified value and will be removed
* from the exported parameter list. The original parameter value will not be modified.
*
* @param iParamID The index of the parameter in regard to the whole number of parameters.
*
* @return TRUE if successful, FALSE otherwise.
*/
bool FixParameter(int iParamID)
{
const int iParamInternalSize = mParamsInternal.GetSize();
if(iParamID < 0 || iParamID >= iParamInternalSize)
return false;
// check wheter the parameter is already fixed (index == -1)
int iIndex = mIndex[iParamID];
if(iIndex != -1)
{
// no, its not, so prepare index
mIndex[iParamID] = -1;
// shift the upper indices downwards
int i;
for(i = iParamInternalSize - 1; i >= iParamID + 1; i--)
{
// correct neccessary indices
if(mIndex[i] != -1)
{
mIndex[i] -= 1;
mBackIndex[iIndex] = i;
}
}
// decrease the size of the fit parameter vector
mParams.SetSize(mParams.GetSize() - 1);
mSize--;
}
// clear the error, covariance and correlation values
ClearParameterLimits(iParamID);
mErrorInternal.SetAt(iParamID, 0);
int i, j;
for(i = 0; i < mSize; i++)
for(j = 0; j < mSize; j++)
{
mCovarInternal.SetAt(i, j, 0);
mCovarInternal.SetAt(j, i, 0);
mCorrelInternal.SetAt(i, j, 0);
mCorrelInternal.SetAt(j, i, 0);
}
return true;
}
/**
* Fixes the given parameter to a specific value.
* The parameter given will be set to the specified value and will be removed
* from the exported parameter list.
*
* @param iParamID The index of the parameter in regard to the whole number of parameters.
* @param fValue The value to what the parameter should be set.
*
* @return TRUE if successful, FALSE otherwise.
*/
bool FixParameter(int iParamID, TFitData fValue)
{
// fix the parameter
if(!FixParameter(iParamID))
return false;
// set the parameter to the desired value
mParamsInternal.SetAt(iParamID, fValue);
// update all linked object's parameters
CParameterLinkItem* pItem = mLink;
while(pItem)
{
// we only need to update the internal parameter list, since all linked parameters should be set to fixed mode.
if(pItem->GetSrcID() == iParamID)
pItem->GetTargetObj()->GetAllParameter().SetAt(pItem->GetTargetID(), mParamsInternal.GetAt(pItem->GetSrcID()));
pItem = pItem->GetNextItem();
}
return true;
}
/**
* Releases a fixed parameter.
* A fixed parameter will be added to the exported parameter vector
* and can therefore be modified again.
*
* @param iParamID The index of the parameter in regard to the whole number of parameters.
*
* @return TRUE if successful, FALSE otherwise.
*/
bool ReleaseParameter(int iParamID)
{
const int iParamInternalSize = mParamsInternal.GetSize();
if(iParamID < 0 || iParamID >= iParamInternalSize)
return false;
if(mIndex[iParamID] != -1)
return true;
// search for next available index
int iIndex = mParams.GetSize();
int i;
for(i = iParamInternalSize - 1; i >= iParamID + 1; i--)
if(mIndex[i] != -1)
iIndex = mIndex[i]++;
// set the new index
mIndex[iParamID] = iIndex;
mBackIndex[iIndex] = iParamID;
mSize++;
// increase fit parameter vector
mParams.SetSize(mParams.GetSize() + 1);
return true;
}
/**
* Check wheter a parameter if fixed or not.
*
* @param iParamID The index of the parameter in regard to the whole number of parameters.
*
* @return TRUE if the parameter if fixed, FALSE otherwise.
*/
bool IsParamFixed(int iParamID)
{
MATHFIT_ASSERT(iParamID >= 0 && iParamID < mParamsInternal.GetSize());
return mIndex[iParamID] == -1;
}
/**
* Converts the parameter index from the exported parameter ID to the real parameter ID.
* Normally the exported and real parameter IDs are the same. But if a parameter is fixed
* it's removed from the exported parameter vector. Therefore all parameter IDs that are
* above the fixed parameter ID will be decreased by one, since the whole size of the
* exportet vector also is decreased.
*
* @param iParamID The parameter index in the exported parameter vector.
*
* @return The parameter index in the whole parameter vector.
*/
int GetFixed2AllIndex(int iParamID)
{
MATHFIT_ASSERT(iParamID >= 0 && iParamID < mParams.GetSize());
return mBackIndex[iParamID];
}
/**
* Converts the real parameter ID to the exported parameter ID.
* Details about the dependence of exported and real parameter ID see at
* \Ref{GetFixed2AllIndex}.
*
* @param iParamID The parameter index in the whole parameter vector.
*
* @return The parameter index in the exported parameter vector.
*/
int GetAll2FixedIndex(int iParamID)
{
MATHFIT_ASSERT(iParamID >= 0 && iParamID < mParamsInternal.GetSize());
return mIndex[iParamID];
}
/**
* Returns the internal parameter vector.
*
* @return A reference to the internal parameter vector.
*/
CVector& GetAllParameter()
{
return mParamsInternal;
}
/**
* Sets the internal parameter vector.
*
* @param vParams The new internal parameter vector.
*
* @return TRUE if successful, FALSE otherwise.
*/
bool SetAllParameter(const CVector& vParams)
{
mParamsInternal.Copy(vParams);
return true;
}
CVector& GetAllDefaultParameter()
{
return mDefaultParameter;
}
bool SetAllDefaultParameters(const CVector& vDefData)
{
mDefaultParameter.Copy(vDefData);
// reset all parameter lists and update the parameter data
Reset();
return true;
}
bool SetAllDefaultParameter(int iParamID, TFitData fDefValue)
{
if(IsParamFixed(iParamID))
return false;
mDefaultParameter.SetAt(iParamID, fDefValue);
// reset all parameter lists and update the parameter data
Reset();
return true;
}
/**
* Returns the internal error vector.
*
* @return A reference to the internal error vector.
*/
CVector& GetAllError()
{
return mErrorInternal;
}
/**
* Sets the internal error vector.
*
* @param vError The new internal error vector.
*
* @return TRUE if successful, FALSE otherwise.
*/
bool SetAllError(const CVector& vError)
{
mErrorInternal.Copy(vError);
return true;
}
/**
* Returns the internal covariance matrix.
*
* @return A reference to the internal covariance matrix.
*/
CMatrix& GetAllCovarMatrix()
{
return mCovarInternal;
}
/**
* Sets the internal covariance matrix.
*
* @param mCovarMatrix The new internal covariance matrix.
*
* @return TRUE if successful, FALSE otherwise.
*/
bool SetAllCovarMatrix(const CMatrix& mCovarMatrix)
{
mCovarInternal.Copy(mCovarMatrix);
return true;
}
/**
* Returns the internal correlation matrix.
*
* @return A reference to the internal correlation matrix.
*/
CMatrix& GetAllCorrelMatrix()
{
return mCorrelInternal;
}
/**
* Sets the internal correlation matrix.
*
* @param mCorrelMatrix The new internal correlation matrix.
*
* @return TRUE if successful, FALSE otherwise.
*/
bool SetAllCorrelMatrix(const CMatrix& mCorrelMatrix)
{
mCorrelInternal.Copy(mCorrelMatrix);
return true;
}
/**
* Sets a single parameter value.
*
* @param iParamID The index of the parameter given as global parameter ID. (See \Ref{FixParameter})
* @param fValue The new value of the parameter.
*
* @return TRUE if successful, FALSE otherwise.
*/
bool SetParameter(int iParamID, TFitData fValue)
{
if(IsParamFixed(iParamID))
return false;
mParams.SetAt(GetAll2FixedIndex(iParamID), fValue);
mParamsInternal.SetAt(iParamID, fValue);
// update all linked object's parameters
CParameterLinkItem* pItem = mLink;
while(pItem)
{
// we only need to update the internal parameter list, since all linked parameters should be set to fixed mode.
if(pItem->GetSrcID() == iParamID)
pItem->GetTargetObj()->GetAllParameter().SetAt(pItem->GetTargetID(), mParamsInternal.GetAt(pItem->GetSrcID()));
pItem = pItem->GetNextItem();
}
return true;
}
/**
* Sets the exported parameter vector.
*
* @param vParams The new exported parameter vector.
*
* @return TRUE if successful, FALSE otherwise.
*/
bool SetParameters(const CVector& vParams)
{
// get local copy
mParams.Copy(vParams);
// process fixed parameters
const int iParamSize = mParams.GetSize();
if(mParamsInternal.GetSize() != iParamSize)
{
// copy all unfixed parameters in the internal list
int i;
for(i = 0; i < iParamSize; i++)
mParamsInternal.SetAt(mBackIndex[i], mParams.GetAt(i));
}
else
mParamsInternal.Copy(mParams);
// update all linked object's parameters
CParameterLinkItem* pItem = mLink;
while(pItem)
{
// we only need to update the internal parameter list, since all linked parameters should be set to fixed mode.
pItem->GetTargetObj()->GetAllParameter().SetAt(pItem->GetTargetID(), mParamsInternal.GetAt(pItem->GetSrcID()));
pItem = pItem->GetNextItem();
}
return true;
}
/**
* Returns the exported parameter vector.
* This vector does not contain any fixed parameters.
*
* @return A reference to the exported parameter vector.
*/
CVector& GetParameter()
{
const int iParamSize = mParams.GetSize();
if(mParamsInternal.GetSize() != iParamSize)
{
int i;
for(i = 0; i < iParamSize; i++)
mParams.SetAt(i, mParamsInternal.GetAt(mBackIndex[i]));
}
else
mParams.Copy(mParamsInternal);
return mParams;
}
/**
* Sets a single error value.
*
* @param iParamID The index of the parameter given as global parameter ID. (See \Ref{FixParameter})
* @param fValue The new error value.
*
* @return TRUE if successful, FALSE otherwise.
*/
bool SetError(int iParamID, TFitData fValue)
{
if(IsParamFixed(iParamID))
return false;
mError.SetAt(GetAll2FixedIndex(iParamID), fValue);
mErrorInternal.SetAt(iParamID, fValue);
// update all linked object's parameters
CParameterLinkItem* pItem = mLink;
while(pItem)
{
if(pItem->GetSrcID() == iParamID)
pItem->GetTargetObj()->GetAllError().SetAt(pItem->GetTargetID(), mErrorInternal.GetAt(pItem->GetSrcID()));
pItem = pItem->GetNextItem();
}
return true;
}
/**
* Sets the error vector of the exported parameters.
*
* @param vError The new error vector.
*
* @return TRUE if successful, FALSE otherwise.
*/
bool SetError(const CVector& vError)
{
// get local copy
mError.Copy(vError);
// process fixed parameters
const int iErrorSize = mError.GetSize();
if(mErrorInternal.GetSize() != iErrorSize)
{
// copy all unfixed parameters in the internal list
int i;
for(i = 0; i < iErrorSize; i++)
mErrorInternal.SetAt(mBackIndex[i], mError.GetAt(i));
}
else
mErrorInternal.Copy(mError);
// update all linked object's parameters
CParameterLinkItem* pItem = mLink;
while(pItem)
{
pItem->GetTargetObj()->GetAllError().SetAt(pItem->GetTargetID(), mErrorInternal.GetAt(pItem->GetSrcID()));
pItem = pItem->GetNextItem();
}
return true;
}
/**
* Returns the error vector of the exported parameters.
*
* @return A reference to the error vector of the exported parameters.
*/
CVector& GetError()
{
const int iErrorSize = mError.GetSize();
if(mErrorInternal.GetSize() != iErrorSize)
{
int i;
for(i = 0; i < iErrorSize; i++)
mError.SetAt(i, mErrorInternal.GetAt(mBackIndex[i]));
}
else
mError.Copy(mErrorInternal);
return mParams;
}
/**
* Sets the correlation matrix of the exported parameters.
*
* @param mCorrelMatrix The new correlation matrix.
*
* @return TRUE if successful, FALSE otherwise.
*/
bool SetCorrelMatrix(const CMatrix& mCorrelMatrix)
{
// get local copy
mCorrel.Copy(mCorrelMatrix);
// process fixed parameters
if(mCorrelInternal.GetNoRows() != mCorrel.GetNoRows())
{
// copy all unfixed parameters in the internal list
int i;
for(i = 0; i < mCorrel.GetNoRows(); i++)
{
int j;
for(j = 0; j < mCorrel.GetNoColumns(); j++)
{
mCorrelInternal.SetAt(mBackIndex[i], mBackIndex[j], mCorrel.GetAt(i, j));
mCorrelInternal.SetAt(mBackIndex[j], mBackIndex[i], mCorrel.GetAt(j, i));
}
}
}
else
mCorrelInternal.Copy(mCorrel);
// an update of the linked parameters correlation is not useful, since the real
// correlation of the linked object's parameters is unknown!
return true;
}
/**
* Returns the correlation matrix of the exported parameters.
*
* @return A reference to the correlation matrix of the exported parameters.
*/
CMatrix& GetCorrelMatrix()
{
if(mCorrelInternal.GetNoRows() != mCorrel.GetNoRows())
{
int i;
for(i = 0; i < mCorrel.GetNoRows(); i++)
{
int j;
for(j = 0; i < mCorrel.GetNoColumns(); j++)
{
mCorrel.SetAt(i, j, mCorrelInternal.GetAt(mBackIndex[i], mBackIndex[j]));
mCorrel.SetAt(j, i, mCorrelInternal.GetAt(mBackIndex[j], mBackIndex[i]));
}
}
}
else
mCorrel.Copy(mCorrelInternal);
return mCorrel;
}
/**
* Sets the new covariance matrix of the exported parameters.
*
* @param mCovarMatrix The new covariance matrix.
*
* @return TRUE if successful, FALSE otherwise.
*/
bool SetCovarMatrix(const CMatrix& mCovarMatrix)
{
// get local copy
mCovar.Copy(mCovarMatrix);
// process fixed parameters
if(mCovarInternal.GetNoRows() != mCovar.GetNoRows())
{
// copy all unfixed parameters in the internal list
int i;
for(i = 0; i < mCovar.GetNoRows(); i++)
{
int j;
for(j = 0; j < mCovar.GetNoColumns(); j++)
{
mCovarInternal.SetAt(mBackIndex[i], mBackIndex[j], mCovar.GetAt(i, j));
mCovarInternal.SetAt(mBackIndex[j], mBackIndex[i], mCovar.GetAt(j, i));
}
}
}
else
mCovarInternal.Copy(mCovar);
// an update of the linked parameters correlation is not useful, since the real
// correlation of the linked object's parameters is unknown!
return true;
}
/**
* Returns the covariance matrix of the exported parameters.
*
* @return A reference to the covariance matrix of the exported parameters.
*/
CMatrix& GetCovarMatrix()
{
if(mCovarInternal.GetNoRows() != mCovar.GetNoRows())
{
int i;
for(i = 0; i < mCovar.GetNoRows(); i++)
{
int j;
for(j = 0; i < mCovar.GetNoColumns(); j++)
{
mCovar.SetAt(i, j, mCovarInternal.GetAt(mBackIndex[i], mBackIndex[j]));
mCovar.SetAt(j, i, mCovarInternal.GetAt(mBackIndex[j], mBackIndex[i]));
}
}
}
else
mCovar.Copy(mCovarInternal);
return mCovar;
}
/**
* Returns the number of exported parameters.
*
* @return The number of exported parametes.
*/
int GetSize()
{
return mSize;
}
/**
* Returns the number of all parameters including fixed parameters.
*
* @return The number of all parameters.
*/
int GetAllSize()
{
return mSizeInternal;
}
/**
* Links two specified parameters together.
* A link between the given source and target parameter will be set, so any modification of the
* source parameter will be forwarded to the target parameter. The link needs to be established
* from the source's parameter vector object, so the source's parameter ID must be a valid global
* ID within the current object.
*
* @param iSrcID The global parameter ID of the link source's parameter within the current object. (See \Ref{FixParameter})
* @param pvTarget The parameter vector object belonging to the link target.
* @param iTargetID The global parameter ID of the link target's parameter within the \Ref{pvTarget} parameter object. (See \Ref{FixParameter})
*
* @return TRUE if successful, FALSE otherwise.
*/
bool LinkParameter(int iSrcID, CParameterVector& pvTarget, int iTargetID)
{
// validate parameters
if(iSrcID < 0 || iSrcID >= mParamsInternal.GetSize())
return false;
if(iTargetID < 0 || iTargetID >= pvTarget.GetAllSize())
return false;
// we can only link unfixed parameters
if(pvTarget.IsParamFixed(iTargetID))
return false;
// create chain item
CParameterLinkItem* pItem = new CParameterLinkItem(iSrcID, &pvTarget, iTargetID, NULL, mLink);
if(mLink)
mLink->SetPreviousItem(pItem);
mLink = pItem;
// set the parameter to fixed state
pvTarget.FixParameter(iTargetID, mParamsInternal.GetAt(iSrcID));
return true;
}
/**
* Releases the link between the two defined parameters.
*
* @param iSrcID The global parameter ID of the link source's parameter within the current object. (See \Ref{FixParameter})
* @param pvTarget The parameter vector object belonging to the link target.
* @param iTargetID The global parameter ID of the link target's parameter within the \Ref{pvTarget} parameter object. (See \Ref{FixParameter})
*
* @return TRUE if successful, FALSE otherwise.
*/
bool UnlinkParameter(int iSrcID, CParameterVector& pvTarget, int iTargetID)
{
if(iSrcID < 0 || iSrcID >= mParamsInternal.GetSize())
return false;
if(iTargetID < 0 || iTargetID >= pvTarget.GetAllSize())
return false;
CParameterLinkItem* pRem = new CParameterLinkItem(iSrcID, &pvTarget, iTargetID);
CParameterLinkItem* pItem = mLink;
// go through the whole list
while(pItem)
{
if(pRem->IsEqual(pItem))
{
CParameterLinkItem* pPrev = pItem->GetPreviousItem();
if(pPrev)
pPrev->SetNextItem(pItem->GetNextItem());
else
mLink = pItem->GetNextItem();
pItem->GetTargetObj()->ReleaseParameter(pItem->GetTargetID());
delete(pItem);
break;
}
pItem = pItem->GetNextItem();
}
delete(pRem);
return pItem ? true : false;
}
/**
* Resets the parameters to zero.
*/
void Reset()
{
// only reset the non fixed, non linked parameters
int i;
for(i = 0; i < GetSize(); i++)
SetParameter(i, mDefaultParameter.GetAt(GetFixed2AllIndex(i)));
}
/**
* Returns the global parameter ID of a linked parameter.
* This method can be used to check wheter a given parameter is linked to the specified
* source parameter. Succesive calls to this function with the last valid target parameter
* ID as last parameter can be used to find all linked parameter of the given source
* parameter.
*
\begin{verbatim}
Example:
while((iLastID = GetLinkTargetParamID(0, pvRef, iLastID) >= 0)
pvRef.SetParam(iLastID, 0);
\end{verbatim}
*
* This example sets all parameters of the parameter vector {\bf pvRef} to zero, if they're linked
* to parameter {\bf 0} of the current object.
*
* @param iSrcID The global parameter ID of the link source. (See \Ref{FixParameter})
* @param pvTarget The parameter vector object of the link targetto be checked for linked parameters.
* @param iLastTargetID The parameter ID of the last link target found. If set to {\bf -1} the first parameter ID found is returned.
*
* @return The next parameter ID found in \Ref{pvTarget} that is linked to the given source parameter after \Ref{iLastTargetID}. If no link target found {\bf -1} will be returned.
*/
int GetLinkTargetParamID(int iSrcID, CParameterVector& pvTarget, int iLastTargetID = -1)
{
bool bFoundLast = false;
if(iLastTargetID < 0)
bFoundLast = true;
CParameterLinkItem* pNext = mLink;
while(pNext)
{
if(pNext->IsLinked(iSrcID, &pvTarget))
{
if(bFoundLast)
return pNext->GetTargetID();
else
{
if(iLastTargetID == pNext->GetTargetID())
bFoundLast = true;
}
}
pNext = pNext->GetNextItem();
}
return -1;
}
TFitData GetPenalty(TFitData fChiSquare)
{
TFitData fSum = 0;
int i;
for(i = 0; i < mParamsInternal.GetSize(); i++)
{
TFitData fLow = mParamsInternalLowLimit.GetAt(i);
TFitData fHigh = mParamsInternalHighLimit.GetAt(i);
if(fLow != fHigh)
{
const TFitData fParam = mParamsInternal.GetAt(i);
const TFitData fFactor = mParamsInternalFactorLimit.GetAt(i);
if(fParam < fLow )
{
// if we have selected hard border, return FINITE
if(fFactor == 0)
return (TFitData)HUGE_VAL;
double fError = fabs(fLow - fParam) * fFactor;
fSum += (TFitData)(fChiSquare * exp(fError));
}
else if(fParam > fHigh)
{
// if we have selected hard border, return FINITE
if(fFactor == 0)
return (TFitData)HUGE_VAL;
double fError = fabs(fParam - fHigh) * fFactor;
fSum += (TFitData)(fChiSquare * exp(fError));
}
}
}
return fSum;
}
bool SetParameterLimits(int iParamID, TFitData fLowLimit, TFitData fHighLimit, TFitData fPenaltyFactor)
{
MATHFIT_ASSERT(iParamID >= 0 && iParamID < mParamsInternal.GetSize());
if(IsParamFixed(iParamID))
return false;
mParamsInternalLowLimit.SetAt(iParamID, fLowLimit);
mParamsInternalHighLimit.SetAt(iParamID, fHighLimit);
mParamsInternalFactorLimit.SetAt(iParamID, fPenaltyFactor);
return true;
}
bool ClearParameterLimits(int iParamID)
{
MATHFIT_ASSERT(iParamID >= 0 && iParamID < mParamsInternal.GetSize());
mParamsInternalLowLimit.SetAt(iParamID, 0);
mParamsInternalHighLimit.SetAt(iParamID, 0);
mParamsInternalFactorLimit.SetAt(iParamID, 1);
return true;
}
private:
/**
* Holds the exported parameters.
*/
CVector mParams;
/**
* Holds the internal parameters.
*/
CVector mParamsInternal;
CVector mParamsInternalLowLimit;
CVector mParamsInternalHighLimit;
CVector mParamsInternalFactorLimit;
/**
* The default parameters.
*/
CVector mDefaultParameter;
/**
* Holds the exported error values.
*/
CVector mError;
/**
* Holds the internal error values.
*/
CVector mErrorInternal;
/**
* Holds the exported covariance matrix.
*/
CMatrix mCovar;
/**
* Holds the internal covariance matrix.
*/
CMatrix mCovarInternal;
/**
* Holds the exported correlation matrix.
*/
CMatrix mCorrel;
/**
* Holds the internal correlation matrix.
*/
CMatrix mCorrelInternal;
/**
* Holds a list to map from global parameter IDs to exported parameter IDs.
*/
// int* mIndex;
std::vector<int> mIndex; // Type changed 2019-02-13 by MJ to avoid crash from not handling the allocated heap memory correctly
/**
* Holds a list to map from exported parameter IDs to global parameter IDs.
*/
// int* mBackIndex;
std::vector<int> mBackIndex; // Type changed 2019-02-13 by MJ to avoid crash from not handling the allocated heap memory correctly
/**
* Holds the number of exported parameters.
*/
int mSize;
/**
* Holds the number of all parameters used.
*/
int mSizeInternal;
/**
* Holds a list of linked parameter defintions used for forward updateing of linkes parameters.
*/
CParameterLinkItem* mLink;
};
}
#endif | [
"mattias42@gmail.com"
] | mattias42@gmail.com |
5f6b9a755f533bf00cf5cce71b4d9da13913d0f0 | 0aaeaded01facf0bebfa3755f989016cc6edf376 | /effect.cpp | 5c56e0a39858971f4eaa882979117f099dada6ea | [] | no_license | mindonghwi/BarrelGame | 1b00fc1049b76ec3c4c91a9d9b7e328de1dadaaa | ce1a864b5574a9f3043176bd94d0c5a7010cc656 | refs/heads/master | 2020-04-15T02:19:56.261599 | 2019-02-09T12:20:29 | 2019-02-09T12:20:29 | 164,310,801 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,763 | cpp | #include "stdafx.h"
#include "effect.h"
C_EFFECT::C_EFFECT() :
_fPosX(0.0f),
_fPosY(0.0f),
_pImg(nullptr),
_strImageKey(""),
_nCurrentFrameX(0),
_nMaxFrame(0),
_bIsRemove(false),
_nFrameCount(0),
_byteAlphaRander(0xff),
_nWidth(0),
_nHeight(0)
{
}
C_EFFECT::~C_EFFECT()
{
}
void C_EFFECT::init(float fPosX, float fPosY)
{
_fPosX = fPosX;
_fPosY = fPosY;
_strImageKey = "";
_pImg = nullptr;
_nMaxFrame = 0;
_nCurrentFrameX = 0;
_bIsRemove = false;
_nFrameCount = 0;
_byteAlphaRander = 0x00;
_nWidth = 0;
_nHeight = 0;
}
void C_EFFECT::release()
{
_pImg = nullptr;
}
void C_EFFECT::update()
{
_nFrameCount++;
if (_nFrameCount > 5)
{
_nCurrentFrameX++;
if (_nCurrentFrameX >= _nMaxFrame)
{
if (_strImageKey != "enemyEffectDeath" && _nCurrentFrameX >= _nMaxFrame)
{
_bIsRemove = true;
}
_nCurrentFrameX = _nMaxFrame - 1;
_byteAlphaRander -= 25;
if (_byteAlphaRander < 10)
{
_bIsRemove = true;
}
}
_nFrameCount = 0;
}
}
void C_EFFECT::render()
{
_pImg->alphaFrameRender(getMemDC(), _fPosX - _nWidth/2, _fPosY - _nHeight/2, _nCurrentFrameX, 0, _byteAlphaRander);
}
void C_EFFECT::create(float fPosX, float fPosY, const char * str)
{
_fPosX = fPosX;
_fPosY = fPosY;
_strImageKey = str;
_pImg = IMAGEMANAGER->findImage(_strImageKey);
_nMaxFrame = _pImg->getMaxFrameX();
_nCurrentFrameX = 0;
_bIsRemove = false;
_nFrameCount = 0;
_byteAlphaRander = 0xff;
_nWidth = _pImg->getFrameWidth();
_nHeight = _pImg->getFrameHeight();
}
void C_EFFECT::destroy()
{
_fPosX = -2000;
_fPosY = -2000;
_strImageKey = "";
_pImg = nullptr;
_nMaxFrame = 0;
_nCurrentFrameX = 0;
_bIsRemove = false;
_nFrameCount = 0;
_byteAlphaRander = 0x00;
_nWidth = 0;
_nHeight = 0;
}
| [
"mdh92706@gmail.com"
] | mdh92706@gmail.com |
bd6549577c2e02efbd998f9dc9be9af69625a699 | 0e6dac5951729fd63d5ae55ebfc278803b998c72 | /implementation/src/Graph.h | b704ba4d978485b36b06ca8c598b54ac83ba4e60 | [] | no_license | adisarip/DS_Project | eb050091840d82a7610abf325e5f2b2f747b94d9 | 508ad2633207df49266c9a4614b54059355dcbc7 | refs/heads/main | 2023-04-22T11:38:22.037357 | 2021-04-30T17:57:44 | 2021-04-30T17:57:44 | 351,282,607 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,102 | h |
#ifndef GRAPH_H
#define GRAPH_H
// Defining a Graph class
// Features supported:
// 1. Kruskals Algorithm to compute the Minimum Spanning Tree using union-find data structure
// 2. Spanning tree based termination detection
#include <vector>
#include <unordered_set>
#include <string>
using namespace std;
// A subset representation in Union-Find Data Structure
struct Subset
{
int rank;
int parent;
};
// Edge of a graph
struct Edge
{
Edge (){};
Edge (int _src, int _dest, int _weight):src(_src),dest(_dest),weight(_weight){};
int src; // Source Vertex
int dest; // Destination Vertex
int weight; // Edge Weight
};
// Graph Class - Declarations
class Graph
{
public:
Graph(int nodeCount);
Graph(string fileName);
~Graph();
// display functions
void displayMST();
void displayGraph();
void displayRoutingTable(int* routeMap1D);
// getter functions
int getLeafNodes(int* leafNodes); // return value = the count of leaf nodes
int getRootNode();
int getNodesCount();
vector<int>* getMSTAdjList();
// Spanning tree functions
bool isMSTValid();
void createAndConfigureSpanningTree();
// Create & fill a message routing array for each proces to send a message to another process
// (via the spanning tree paths) in O(1) time.
void fillMessageRoutingTable(int currentNode,
int parentNode,
int* routeMap1D);
protected:
void addEdge(const int u, const int v, const int w);
void parseInputData(string fileName);
// Implementing Union-Find data structure
// Find the subset of the element with index 'idx'
// using path-compression technique
int Find(Subset subsets[], int idx);
// A function that does union of two sets of x and y
// by using union by rank
void Union(Subset subsets[], int x, int y);
private:
int mNodesCount;
int mEdgesCount;
int mRootNode;
bool mIsMSTValid;
vector<Edge*> mEdgeList;
vector<int>* mMSTAdjList;
unordered_set<int> mNodes;
};
#endif
| [
"aditya.saripalli@students.iiit.ac.in"
] | aditya.saripalli@students.iiit.ac.in |
58f1e38ecc4dfbb3825cdf40b4c4cdca6bf97e80 | 48ef780da3632a94e8f55e3b0e21b284d4cb70bb | /App/creategroup.cpp | feb5a7558bb80c2b0ae23f9609042c917bb54616 | [] | no_license | zargarzadehm/SocialAPP | 514e7a548aeca8ba8fad1b711142823c4f058337 | c9357ed157b0f08a26bc74cdfba88c94e16b5445 | refs/heads/master | 2020-04-09T03:30:35.079595 | 2019-05-19T09:30:26 | 2019-05-19T09:30:26 | 159,985,403 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,161 | cpp | #include "creategroup.h"
#include "ui_creategroup.h"
#include "interface.h"
extern QString token;
creategroup::creategroup(QMainWindow *parent) :
QMainWindow(parent),
ui(new Ui::creategroup)
{
setWindowTitle("Messenger KING & KOALA");
this->setStyleSheet("background-color: rgb(211, 215, 207);");
ui->setupUi(this);
manager = new QNetworkAccessManager;
connect(manager,SIGNAL(finished(QNetworkReply*)),this,SLOT(manage(QNetworkReply*)));
this->setGeometry(QStyle::alignedRect(Qt::LeftToRight, Qt::AlignCenter, this->size(), qApp->desktop()->availableGeometry()));
}
creategroup::~creategroup()
{
delete ui;
}
// api = http://api.softserver.org:1104/creategroup?token=7a3c48f7c7939b7269d01443a431825f&group_name=ap&group_title=Advance-programming;
void creategroup::manage(QNetworkReply *rep){
QString data = rep->readAll();
QJsonDocument x = QJsonDocument::fromJson(data.toUtf8());
QJsonObject y = x.object();
if(y["code"]=="200"){
QMessageBox* z = new QMessageBox;
z->setText("group created successfully !");
z->show();
this->close();
}
else if(y["code"]=="204"){
QMessageBox* z = new QMessageBox;
z->setText("group name or title already exist\nplease try again");
z->show();
}
else if (y["code"]=="401"){
QMessageBox* z = new QMessageBox;
z->setText("a basical error!");
z->show();
}
}
void creategroup::on_create_group_clicked()
{
QMessageBox* z = new QMessageBox;
if(ui->lineEdit->text()==NULL){
z->setText("please enter the group name and try again");
z->show();
}
else if(ui->lineEdit_2->text()==NULL){
z->setText("please enter the group title and try again");
z->show();
}
else{
QString api = "http://api.softserver.org:1104/creategroup?token=" + token + "&group_name=" + ui->lineEdit->text() + "&group_title=" + ui->lineEdit_2->text();
request.setUrl(QUrl(api));
manager->get(request);
}
}
void creategroup::on_cancel_clicked()
{
this->close();
}
| [
"moein.zargarzadeh@gmail.com"
] | moein.zargarzadeh@gmail.com |
77f347fc758b3180f695cf237d65f87907e1b523 | d1caf0c064786a878a292fe12bf457a1fb50df25 | /DomainPTU/smartsoft/src/DomainPTU/CommPTUGoalEventResult.cc | b4329094165630f3f791395885b7799e22975f78 | [
"BSD-3-Clause"
] | permissive | Servicerobotics-Ulm/DomainModelsRepositories | 8dc395bf62fe386564ba56d8b52f7e5ee90f8d5e | f4d83111d435510a79f69acb78f14a23d2af5539 | refs/heads/master | 2022-05-19T00:55:15.782791 | 2022-05-04T16:14:21 | 2022-05-04T16:14:21 | 122,947,911 | 0 | 8 | BSD-3-Clause | 2021-02-10T11:54:39 | 2018-02-26T09:44:24 | C++ | UTF-8 | C++ | false | false | 1,674 | cc | //--------------------------------------------------------------------------
// Code generated by the SmartSoft MDSD Toolchain
// The SmartSoft Toolchain has been developed by:
//
// Service Robotics Research Center
// University of Applied Sciences Ulm
// Prittwitzstr. 10
// 89075 Ulm (Germany)
//
// Information about the SmartSoft MDSD Toolchain is available at:
// www.servicerobotik-ulm.de
//
// This file is generated once. Modify this file to your needs.
// If you want the toolchain to re-generate this file, please
// delete it before running the code generator.
//--------------------------------------------------------------------------
#include "DomainPTU/CommPTUGoalEventResult.hh"
using namespace DomainPTU;
CommPTUGoalEventResult::CommPTUGoalEventResult()
: CommPTUGoalEventResultCore()
{ }
/**
* Constructor to set all values.
* NOTE that you have to keep this constructor consistent with the model!
* Use at your own choice.
*
* The preferred way to set values for initialization is:
* CommRepository::MyCommObject obj;
* obj.setX(1).setY(2).setZ(3)...;
CommPTUGoalEventResult::CommPTUGoalEventResult(const DomainPTU::PTUMoveStatus &state)
: CommPTUGoalEventResultCore() // base constructor sets default values as defined in the model
{
setState(state);
}
*/
CommPTUGoalEventResult::CommPTUGoalEventResult(const CommPTUGoalEventResultCore &commPTUGoalEventResult)
: CommPTUGoalEventResultCore(commPTUGoalEventResult)
{ }
CommPTUGoalEventResult::CommPTUGoalEventResult(const DATATYPE &commPTUGoalEventResult)
: CommPTUGoalEventResultCore(commPTUGoalEventResult)
{ }
CommPTUGoalEventResult::~CommPTUGoalEventResult()
{ }
| [
"lotz@hs-ulm.de"
] | lotz@hs-ulm.de |
be23f68ee66af77c45ff2c3abc1feedf71ee0c26 | 03eab75deb71cb25ba18cfb22c20850bb1bb0305 | /LAHACK/MoveComponent.cpp | d70a12b0e6c61bd98d5955c884820cba5df1aa9d | [] | no_license | lahack/LAHacks | e35a03cac9f8905827adcf259bac4b39fd49950b | 6289d5dabe1ede2adf8504f3fa1345d01c683ac9 | refs/heads/master | 2022-01-08T00:48:39.010365 | 2019-04-01T06:14:04 | 2019-04-01T06:14:04 | 178,540,517 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 409 | cpp | #include "MoveComponent.h"
#include "Actor.h"
MoveComponent::MoveComponent(class Actor* owner)
:Component(owner, 50)
,mAngularSpeed(0.0f)
,mForwardSpeed(0.0f)
{
}
void MoveComponent::Update(float deltaTime)
{
// TODO: Implement in Part 2
mOwner->SetRotation(mOwner->GetRotation()+mAngularSpeed * deltaTime);
mOwner->SetPosition(mOwner->GetPosition() + mOwner->GetForward()*mForwardSpeed*deltaTime);
}
| [
"haoqinde@usc.edu"
] | haoqinde@usc.edu |
a1552fa355353de9fad3819b368cf12ef4c2e415 | 84684c50d4367005d1c50ba2a5a781b912d3d8fa | /inc/door.h | 7968ceb476d1131c20294d74fbec1b45ac9a864c | [] | no_license | Akamatsu21/CaveStoryRemake | 151aa7769bfbbd3c3aa9276abedcc8ba70acd81b | 62c375d7a6c16fc8f6611621c241a3a9075b9968 | refs/heads/master | 2020-06-25T11:37:55.900049 | 2018-08-04T18:58:48 | 2018-08-04T18:58:48 | 74,616,249 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 608 | h | #ifndef DOOR_H
#define DOOR_H
#include <string>
#include "rectangle.h"
// Class representing a door to a different level.
class Door: public Rectangle
{
std::string destination;
public:
// Default constructor.
Door():
Rectangle(), destination("")
{}
// Constructor.
Door(Rectangle r, std::string d):
Rectangle(r.leftBorder() * globals::SPRITE_SCALE, r.topBorder() * globals::SPRITE_SCALE,
r.getWidth() * globals::SPRITE_SCALE, r.getHeight() * globals::SPRITE_SCALE),
destination(d)
{}
// Getter for destination.
std::string getDestination()
{
return destination;
}
};
#endif | [
"kuba97@gmail.com"
] | kuba97@gmail.com |
07f8e883996903f762d295eaf5746a7ef0fbd76f | 5f975169aeb67c7cd0a08683e6b9eee253f84183 | /algorithms/medium/0817. Linked List Components.h | 8da8616b5d7ba4c1514781ef5fd04f7129aa7ccd | [
"MIT"
] | permissive | MultivacX/leetcode2020 | 6b743ffb0d731eea436d203ccb221be14f2346d3 | 83bfd675052de169ae9612d88378a704c80a50f1 | refs/heads/master | 2023-03-17T23:19:45.996836 | 2023-03-16T07:54:45 | 2023-03-16T07:54:45 | 231,091,990 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,061 | h | // 817. Linked List Components
// Runtime: 64 ms, faster than 33.43% of C++ online submissions for Linked List Components.
// Memory Usage: 21.6 MB, less than 5.26% of C++ online submissions for Linked List Components.
// Time Complexity: O(length(head)).
// Space Complexity: O(size(G)).
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution {
public:
int numComponents(ListNode* head, vector<int>& G) {
if (!head) return 0;
unordered_set<int> s(begin(G), end(G));
int ans = 0;
int cnt = 0;
auto p = head;
while (p) {
if (s.count(p->val)) {
++cnt;
} else {
if (cnt != 0) ++ans;
cnt = 0;
}
p = p->next;
}
if (cnt != 0) ++ans;
return ans;
}
}; | [
"MultivacX@2020.china"
] | MultivacX@2020.china |
4b93a233ba3cffa52aefab82556f01b21eb8a255 | d89333d3c1a63c9f7caf085d80b33fb3e7543a2f | /app/src/main/synthts_et/lib/etana/kchk30.cpp | 2a299ea83b312079df59fc270bb36446855fc8c9 | [] | no_license | Kaljurand/EKISpeak | b1c3f6f54c8e2318e21fc9ad34544e1c469e1c40 | 9bdb52b49a28311bbeebcd353539bb17f23cca00 | refs/heads/master | 2021-01-23T07:34:27.197992 | 2019-01-19T11:48:09 | 2019-01-19T14:00:39 | 33,014,685 | 12 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 3,666 | cpp |
/*
* kontrollib, kas on pref + tyvi
*/
#include "mrf-mrf.h"
int MORF0::kchk30(
VARIANTIDE_AHEL **variandid,
FSXSTRING *S6na, int S6naPikkus,
VARIANTIDE_AHEL **sobivad_variandid,
char *paha_koht,
const int paha_koha_suurus)
{
register int i, max;
VARIANTIDE_AHEL *sobiv_variant, *tmp, *variant, *pref_variant, *mille_taha, *vt_piir; //ok
CVARIANTIDE_AHEL cvahe_variant;
KOMPONENT *tt, *tyvi, *pref, *lopp, *essa;
int prnr;
int res;
FSXSTRING prefiks;
mille_taha = viimane_variant(*variandid); /* kuhu uus komponentide ahel paigutada */
vt_piir = mille_taha; /* ... ja millest tagapool olevaid ahelaid ei selles programmis ei vt */
max = S6naPikkus < PREFLEN ? S6naPikkus-2 : PREFLEN-1;
/* teen kindlaks k�ik selle s�na v�imalikud prefiksid; alustan pikematest */
for (i=max; i > 1; i--)
{
prefiks = (const FSxCHAR *)(S6na->Left(i));
prnr = preffnr( (const FSxCHAR *) prefiks );
if (prnr == -1) /* sellist prefiksit pole olemas */
continue; /* vt 1 t�he v�rra pikemat prefiksit */
/* lisan prefiksitega variandid ahelatesse */
for (variant=*variandid; variant; variant=variant->jargmine_variant)
{
if (variant->eelmine_variant == vt_piir) /* jo'udsime selles programmis lisatud variandini */
break;
tt = esimene_komp(variant); /* tt on ahela esimene komponent */
if (tt->k_pikkus <= i) /* sellel tyvele pref ette ei mahu */
continue;
/* teen uue variandi ja lisan ta ahelate hulka */
pref_variant = lisa_ahel(&mille_taha, variant);
if (!pref_variant)
return CRASH;
// mille_taha = pref_variant;
pref = esimene_komp(pref_variant);
tyvi = lisa_1komp(&pref);
if (!tyvi)
return CRASH;
nulli_1komp(pref);
lisa_min_info(pref, S6na, 0, i);
lisa_min_info(tyvi, S6na, i, tt->k_pikkus-i);
lisa_psl_info(pref, K_PREF, prnr);
/* kontr, kas uus variant on pref + ty + lp */
lopp = tyvi->komp_jargmine;
if (lopp->k_tyyp != K_LOPP)
continue;
/* tyvi+lp */
res = ty_lp(lopp, tyvi->nihe, tyvi->k_pikkus, &cvahe_variant.ptr, paha_koht,paha_koha_suurus);
if (res > ALL_RIGHT)
return res; /* viga! */
if (!cvahe_variant.ptr)
continue; /* tyve polnud */
for (tmp=cvahe_variant.ptr; tmp; tmp=tmp->jargmine_variant) /* vt neid juhte, kus ty+lp juba sobivad */
{ /* kopeeri sobivate hulka koik tyved, mis selle lopuga sobivad */
essa = esimene_komp(tmp);
if (sobib_p_t(pref, essa))
{
kopeeri_komp(tyvi, essa);
kopeeri_komp(lopp, essa->komp_jargmine);
sobiv_variant = lisa_ahel(sobivad_variandid, pref_variant);
if (!sobiv_variant)
return CRASH;
if(mrfFlags.Chk(MF_SPELL))
{
//ahelad_vabaks(&vahe_variant); //destruktoris
return ALL_RIGHT; /* 1. sobiv variant k�lbab */
}
}
}
ahelad_vabaks(&cvahe_variant.ptr);
}
if (*sobivad_variandid) /* rohkem prefe ei vt */
return ALL_RIGHT;
}
return ALL_RIGHT;
}
| [
"kaljurand@gmail.com"
] | kaljurand@gmail.com |
2a02b665b58971dae02957f125ed009a67165689 | 5b5baf77e2847ef1d5de6a01fa9f0dc64189540d | /cpp/imfixerinstaller.cpp | 2bc7d7232812d905a6aa5e7e8145c013b263b392 | [
"Apache-2.0"
] | permissive | fredldotme/qmlcreator | f27300f81e148fcf80fa248291fba9a1f19ca651 | 73097e62e4833c3a2fa4a935b635e2b350faa3ed | refs/heads/master | 2021-06-25T12:19:56.085583 | 2020-12-11T13:05:45 | 2020-12-11T13:05:45 | 168,859,531 | 4 | 1 | Apache-2.0 | 2019-08-10T12:12:50 | 2019-02-02T17:47:16 | QML | UTF-8 | C++ | false | false | 236 | cpp | #include "imfixerinstaller.h"
ImFixerInstaller::ImFixerInstaller(QObject *parent) : QObject(parent)
{
}
void ImFixerInstaller::setupImEventFilter(QQuickItem *item)
{
static ImEventFixer ief;
item->installEventFilter(&ief);
}
| [
"dev.beidl@gmail.com"
] | dev.beidl@gmail.com |
e8ad859933ce2c14bde96794f3ba8f25d14aacfa | 88ae8695987ada722184307301e221e1ba3cc2fa | /third_party/dawn/src/dawn/tests/ToggleParser.cpp | 997a1d43266ca8bdf00c0b8571160dd9ede3acfe | [
"BSD-3-Clause",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"LGPL-2.0-or-later",
"MIT",
"GPL-1.0-or-later"
] | permissive | iridium-browser/iridium-browser | 71d9c5ff76e014e6900b825f67389ab0ccd01329 | 5ee297f53dc7f8e70183031cff62f37b0f19d25f | refs/heads/master | 2023-08-03T16:44:16.844552 | 2023-07-20T15:17:00 | 2023-07-23T16:09:30 | 220,016,632 | 341 | 40 | BSD-3-Clause | 2021-08-13T13:54:45 | 2019-11-06T14:32:31 | null | UTF-8 | C++ | false | false | 1,905 | cpp | // Copyright 2021 The Dawn Authors
//
// 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 "dawn/tests/ToggleParser.h"
#include <cstring>
#include <sstream>
ToggleParser::ToggleParser() = default;
ToggleParser::~ToggleParser() = default;
bool ToggleParser::ParseEnabledToggles(char* arg) {
constexpr const char kEnableTogglesSwitch[] = "--enable-toggles=";
size_t argLen = sizeof(kEnableTogglesSwitch) - 1;
if (strncmp(arg, kEnableTogglesSwitch, argLen) == 0) {
std::string toggle;
std::stringstream toggles(arg + argLen);
while (getline(toggles, toggle, ',')) {
mEnabledToggles.push_back(toggle);
}
return true;
}
return false;
}
bool ToggleParser::ParseDisabledToggles(char* arg) {
constexpr const char kDisableTogglesSwitch[] = "--disable-toggles=";
size_t argLDis = sizeof(kDisableTogglesSwitch) - 1;
if (strncmp(arg, kDisableTogglesSwitch, argLDis) == 0) {
std::string toggle;
std::stringstream toggles(arg + argLDis);
while (getline(toggles, toggle, ',')) {
mDisabledToggles.push_back(toggle);
}
return true;
}
return false;
}
const std::vector<std::string>& ToggleParser::GetEnabledToggles() const {
return mEnabledToggles;
}
const std::vector<std::string>& ToggleParser::GetDisabledToggles() const {
return mDisabledToggles;
}
| [
"jengelh@inai.de"
] | jengelh@inai.de |
8bda739822352f0e0c3f33b1beebfec00064bad3 | e9e8599822914b4ed33ce0ca1bf1b92391a27003 | /h~m~s2.cpp | 4588aaba5abd3890f5fb0eec159f1f7c96d8c6af | [] | no_license | Kinice/PlyThings | d049d9196767ad6db33dba92e2be9efb72536116 | 11343664e95367f9e7144c1a1645d351ce91ee25 | refs/heads/master | 2023-01-24T07:42:38.911824 | 2020-11-09T06:38:27 | 2020-11-09T06:38:27 | 46,183,415 | 3 | 1 | null | 2023-01-12T09:55:28 | 2015-11-14T17:03:19 | HTML | UTF-8 | C++ | false | false | 176 | cpp | #include<iostream>
using namespace std;
int main(){
int h;
int m;
int s;
int n;
cin>>n;
m = n/60;
h = m/60;
s = n%60;
m = m%60;
cout<<h<<":"<<m<<":"<<s;
return 0;
}
| [
"szp93@126.com"
] | szp93@126.com |
d096cc40fa7efc8011e3dd96306e7a10e547c619 | b6648acd138bd3d7ab767cee3340e1516570fc0f | /src/lc_taskpool.cpp | bc93cee174e79afaf7ed7a07f2922c092615b8a0 | [] | no_license | meihouhao2017/timetask | 39fde0d789b58657f3f9b9292cde824e111b1fde | 1d0f65a04d4ce6054b6e61e3ba6dd27203c77c0b | refs/heads/master | 2020-03-10T01:02:04.394258 | 2018-04-11T15:11:58 | 2018-04-11T15:11:58 | 129,098,605 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,625 | cpp | #include "lc_taskpool.h"
#include "lc_threadpool.h"
#include <pthread.h>
#include <time.h>
#include <assert.h>
#include <errno.h>
#include <math.h>
void* manage_task_pool_thread(void *arg);
pthread_mutex_t TaskPool::m_mtx = PTHREAD_MUTEX_INITIALIZER;
pthread_cond_t TaskPool::m_cond = PTHREAD_COND_INITIALIZER;
TaskPool* TaskPool::m_instance = NULL;
void TaskPool::destroy_pool()
{
Task* t = NULL;
list<Task*>::iterator it , it1;
it = m_tlist.begin();
for (; it != m_tlist.end();)
{
it1 = it++;
t = *it1;
del_task_by_id(t->m_id);
}
m_instance = NULL; //not thread-safe
}
void TaskPool::show_task_list()
{
const char *type_str[] = {"time ", "normal"};
Task* t = NULL;
list<Task*>::iterator it = m_tlist.begin();
for (; it != m_tlist.end(); it++)
{
t = *it;
printf("task %d type %s start time %ld\n", t->m_id, type_str[t->get_type()], t->get_start_time());
}
printf("\n\n");
}
TaskPool* TaskPool::get_instance()
{
pthread_mutex_lock(&TaskPool::m_mtx);
if (m_instance == NULL)
m_instance = new TaskPool();
pthread_mutex_unlock(&TaskPool::m_mtx);
return m_instance;
};
int TaskPool::init()
{
m_tnum = m_num = m_total = 0;
m_start_failed = 0;
m_task_over_count = 0;
m_cur_task = NULL;
pthread_create(&m_tid, NULL, manage_task_pool_thread, NULL);
pthread_detach(m_tid);
return 0;
};
/*
add task to list, and sort by start time
*/
int TaskPool::add_task_inter(Task *t)
{
if (!t) return -1;
if (m_tlist.empty())
{
m_tlist.push_back(t);
return 0;
}
int64_t start_time = t->get_start_time();
int64_t next_time = start_time;
list<Task*>::iterator it = m_tlist.begin();
int count = 0;
for (;it != m_tlist.end(); ++it)
{
if (!(*it))
{
//abort();
return -2;
}
next_time = (*it)->get_start_time();
if (next_time > start_time)
{
m_tlist.insert(it, t);
return 0;;
}
}
m_tlist.push_back(t);
return 0;
};
int TaskPool::add_time_task(Event *e, int64_t start_ms, int64_t interval)
{
Task* task = new Task(e, TASK_TYPE_TIME_TASK, start_ms, interval);
pthread_mutex_lock(&TaskPool::m_mtx);
int ret = add_task_inter(task);
if (ret == 0) update_cur_task(true);
pthread_mutex_unlock(&TaskPool::m_mtx);
if (ret == 0)
{
m_total++;
m_tnum++;
}
printf( "ADD TIME TASK %s! %s\n", (ret == 0) ? " ok" : "fail", task->toString().c_str());
return ret ? ret : task->m_id;
};
int TaskPool::add_normal_task(Event *e, int64_t start_ms)
{
Task* task = new Task(e, TASK_TYPE_NORMAL, start_ms);
pthread_mutex_lock(&TaskPool::m_mtx);
int ret = add_task_inter(task);
if (ret == 0) update_cur_task(true);
pthread_mutex_unlock(&TaskPool::m_mtx);
if (ret == 0)
{
m_total++;
m_num++;
}
printf( "ADD NORMAL TASK %s! %s\n", (ret == 0) ? " ok": "fail", task->toString().c_str());
return ret ? ret : task->m_id;
};
/*
Simple Principle:
1.IDLE: delete directly
2.READY, IDLE, FIN: (handle by task type)
cycle task : set status to DEL, manage thread will recycling resource
normal task:work thread deal.
3.DEL: just ignore.
*/
int TaskPool::delete_task_operate(Task *t, list<Task*>::iterator& it)
{
int ret = 0;
bool is_time_task = true;
task_state s = t->set_state_for_del(is_time_task);
switch (s)
{
case TASK_IDLE:
m_tlist.erase(it);
delete t;
break;
case TASK_READY:
case TASK_RUN:
break;
case TASK_FIN:
if (is_time_task)
{
t->modify_start_time(timetask::get_cur_start_time());
m_tlist.erase(it);
add_task_inter(t);
}
break;
case TASK_DEL:
ret = -3;
break;
default:
printf("error! unkown task state!\n");
//abort();
ret = -3;
break;
}
if (ret == 0)
{
update_cur_task(true);
m_total--;
(is_time_task) ? m_tnum-- : m_num--;
}
return ret;
};
int TaskPool::del_task_by_id_inter(int id)
{
int ret = -1;
Task *t = NULL;
list<Task*>::iterator it = m_tlist.begin();
for (;it != m_tlist.end(); ++it)
{
t = *it;
if (t == NULL)
{
//abort();
ret = -2;
break;
}
if (t->m_id == id)
{
ret = 0;
break;
}
}
if (ret == 0)
{
ret = delete_task_operate(t, it);
}
return ret;
}
int TaskPool::del_task_by_id(int id)
{
int ret = 0;
const char *err_string[3] = {
"task not found by id!",
"found NULL pointer in m_tlist",
"set task state failed!"
};
pthread_mutex_lock(&TaskPool::m_mtx);
ret = del_task_by_id_inter(id);
pthread_mutex_unlock(&TaskPool::m_mtx);
if (ret != 0)
printf( "Delete Fail. [task %04d] [%s]\n", id, err_string[-ret - 1]);
return 0;
}
int TaskPool::del_task_by_event_inter(Event *e, int& id)
{
int ret = -1;
Task *t = NULL;
list<Task*>::iterator it = m_tlist.begin();
for (;it != m_tlist.end(); ++it)
{
t = *it;
if (t == NULL)
{
ret = -2;
break;
}
if (t->get_event() == e)
{
ret = 0;
break;
}
}
if (ret == 0)
{
id = t->m_id;
ret = delete_task_operate(t, it);
}
return 0;
}
int TaskPool::del_task_by_event(Event *e)
{
int ret = 0;
const char *err_string[3] = {
"task not found by event!",
"found NULL pointer in m_tlist",
"set task state failed!",
};
int id = -1;
pthread_mutex_lock(&TaskPool::m_mtx);
ret = del_task_by_event_inter(e, id);
pthread_mutex_unlock(&TaskPool::m_mtx);
if (ret != 0)
printf( "DELETE fail, [task %04d] [%s]", id, err_string[-ret - 1]);
return 0;
}
string TaskPool::get_task_pool_info()
{
char buf[1024] = {0};
sprintf(buf, "total task num:%d\ncycle task num:%d\nnormal task num:%d\n"
"overtime task count:%d\n start failed count:%ld\n"
,m_total, m_tnum, m_num,
m_task_over_count, m_start_failed);
return buf;
}
/* update head task */
void TaskPool::update_cur_task(bool isresume)
{
Task *old_task = m_cur_task;
if (m_tlist.empty()) m_cur_task = NULL;
m_cur_task = m_tlist.front();
//show_task_list();
if (old_task != m_cur_task)
if (isresume) pthread_cond_signal(&TaskPool::m_cond);
}
Task* TaskPool::get_cur_task()
{
return m_cur_task;
}
int64_t TaskPool::get_cur_time_us()
{
struct timeval time;
gettimeofday(&time, NULL);
return (time.tv_sec * 1000000 + time.tv_usec);
}
void TaskPool::pop_front()
{
m_tlist.pop_front();
update_cur_task(false);
}
void get_wait_time(struct timespec &time, int64_t start_us)
{
start_us = start_us;
time.tv_sec = (start_us/1000000);
time.tv_nsec = (start_us%1000000)*1000;
}
/* The task execution time in the queue is ranked from small to large.
then:
1.if get head task failed then suspend, wait user add task.
2.if get head task success, supend before time to start.
3.if head task changed, thread will be resumed. then jump to step 1st.
4.pop head and check task status, and take diffrent operate for diffrent status.
IDLE: run in an idle thread. if task type is cycle-task, then update next start time, push to task list again.
READY,WAIT,FIN: it means cycle-task overtime, print information then update next start time, push to task list again.
DEL: pop head and delete it
5.jump to step 1st
*/
void* manage_task_pool_thread(void *arg)
{
TaskPool *taskpool = TaskPool::get_instance();
ThreadPool *threadpool = ThreadPool::get_instance();
Task *task = NULL;
int64_t last_time, cur_time, sleep_time = 20000;
struct timespec wait_time;
while (1)
{
pthread_mutex_lock(&TaskPool::m_mtx);
task = taskpool->get_cur_task();
if (task == NULL)
{
/* task list is empty, wait user add task */
pthread_cond_wait(&TaskPool::m_cond, &TaskPool::m_mtx);
pthread_mutex_unlock(&TaskPool::m_mtx);
continue;
}
last_time = cur_time;
cur_time = taskpool->get_cur_time_us();
int64_t start_us = task->get_start_time();
/* get head success, wait to be resume */
get_wait_time(wait_time, start_us);
int ret = pthread_cond_timedwait(&TaskPool::m_cond, &TaskPool::m_mtx, &wait_time);
if (ret == 0)
{
//head task has changed
pthread_mutex_unlock(&TaskPool::m_mtx);
continue;
}
if (ret != ETIMEDOUT)
{
printf("error! pthread_cond_timedwait retrun %d\n", ret);
//abort();
}
/* update counter */
if (!task->is_time_task())
{
taskpool->m_num--;
taskpool->m_total--;
}
/* different process in different status */
task_state s = task->get_task_state();
switch (s)
{
case (TASK_DEL):
taskpool->pop_front();
delete task;
break;
case (TASK_IDLE):
task->set_task_state(TASK_READY);
if (threadpool->start_task(task))
{
//abort();
printf( "task[%s]! start failed!", task->toString().c_str());
taskpool->m_start_failed++;
task->set_task_state(TASK_IDLE);
}
taskpool->pop_front();
if (task->is_time_task())
{
task->update_start_time();
taskpool->add_task_inter(task);
taskpool->update_cur_task(false);
}
break;
case (TASK_READY):
case (TASK_RUN):
case (TASK_FIN):
if (task->is_time_task())
{
// cycle-task overtime, it might need a long period.
//abort();
printf("task[%s]! cost more than %ldus\n", task->toString().c_str(), task->get_interval());
task->update_start_time();
taskpool->m_task_over_count++;
taskpool->pop_front();
taskpool->add_task_inter(task);
taskpool->update_cur_task(false);
}
else
{
//abort();
}
break;
}
pthread_mutex_unlock(&TaskPool::m_mtx);
}
return (void *)0;
}
| [
"root@localhost.localdomain"
] | root@localhost.localdomain |
cc12522ed642ac71600ce0e29972bc2669f197d1 | 48b10d676385abf278a7350d69d8e06b3c947c80 | /AudioApplication- deprecated/Source/MainComponent.h | 33da416c5b204c08bc8833e858626a28df991ce6 | [] | no_license | fjpolo/myNoiseToaster | 8e4bcf1a20581030ea6cebbff688df3f27bf841d | 18c91909db0e89ed601a1d4c5ae3ffab409db421 | refs/heads/main | 2023-09-02T07:00:58.175551 | 2021-10-08T19:01:34 | 2021-10-08T19:01:34 | 405,078,686 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,788 | h | #pragma once
#include <JuceHeader.h>
//==============================================================================
/**
*
*/
class WaveVisualiser : public juce::AudioVisualiserComponent
{
public:
WaveVisualiser() : AudioVisualiserComponent(2)
{
setBufferSize(1 << 7);
setSamplesPerBlock(1 << 4);
setColours(juce::Colours::black, juce::Colours::red);
}
private:
};
//==============================================================================
/**
*
*/
class SineOscillator
{
public:
SineOscillator() {}
//...
void setFrequency(float frequency, float sampleRate)
{
auto cyclesPerSample = frequency / sampleRate;
angleDelta = cyclesPerSample * juce::MathConstants<float>::twoPi;
}
forcedinline void updateAngle() noexcept
{
currentAngle += angleDelta;
if (currentAngle >= juce::MathConstants<float>::twoPi)
currentAngle -= juce::MathConstants<float>::twoPi;
}
forcedinline float getNextSample() noexcept
{
auto currentSample = std::sin(currentAngle);
updateAngle();
return currentSample;
}
private:
float currentAngle = 0.0f;
float angleDelta = 0.0f;
};
class SquareOscillator
{
public:
SquareOscillator() {}
//...
void setFrequency(float frequency, float sampleRate)
{
auto cyclesPerSample = frequency / sampleRate;
angleDelta = cyclesPerSample * juce::MathConstants<float>::twoPi;
}
forcedinline void updateAngle() noexcept
{
currentAngle += angleDelta;
if (currentAngle >= juce::MathConstants<float>::twoPi)
currentAngle -= juce::MathConstants<float>::twoPi;
}
forcedinline float getNextSample() noexcept
{
auto currentSample = std::sin(currentAngle);
updateAngle();
return currentSample;
}
private:
float currentAngle = 0.0f;
float angleDelta = 0.0f;
};
//==============================================================================
/**
*
*/
class WavetableOscillator
{
public:
WavetableOscillator(const juce::AudioSampleBuffer& wavetableToUse)
: wavetable(wavetableToUse)
{
//jassert(wavetable.getNumChannels() == 1);
tableSize = wavetable.getNumSamples() - 1;
}
void setFrequency(float frequency, float sampleRate)
{
auto tableSizeOverSampleRate = (float)wavetable.getNumSamples() / sampleRate;
tableDelta = frequency * tableSizeOverSampleRate;
//auto tableSizeOverSampleRate = (float)tableSize / sampleRate;
//tableDelta = frequency * tableSizeOverSampleRate;
}
forcedinline float getNextSample() noexcept
{
auto tableSize = (unsigned int)wavetable.getNumSamples();
auto index0 = (unsigned int)currentIndex; // [6]
auto index1 = index0 == (tableSize - 1) ? (unsigned int)0 : index0 + 1;
//auto index0 = (unsigned int)currentIndex;
//auto index1 = index0 + 1;
auto frac = currentIndex - (float)index0; // [7]
auto* table = wavetable.getReadPointer(0); // [8]
auto value0 = table[index0];
auto value1 = table[index1];
auto currentSample = value0 + frac * (value1 - value0); // [9]
if ((currentIndex += tableDelta) > (float)tableSize) // [10]
currentIndex -= (float)tableSize;
return currentSample;
}
private:
const juce::AudioSampleBuffer& wavetable;
float currentIndex = 0.0f;
float tableDelta = 0.0f;
int tableSize;
};
//==============================================================================
/*
This component lives inside our window, and this is where you should put all
your controls and content.
*/
class MainComponent : public juce::AudioAppComponent,
public juce::Button::Listener,
public juce::Slider::Listener
{
public:
//==============================================================================
MainComponent();
~MainComponent() override;
//==============================================================================
void prepareToPlay (int samplesPerBlockExpected, double sampleRate) override;
void getNextAudioBlock (const juce::AudioSourceChannelInfo& bufferToFill) override;
void releaseResources() override;
void buttonClicked(juce::Button* button) override;
void sliderValueChanged(juce::Slider* slider) override;
//==============================================================================
void paint (juce::Graphics& g) override;
void resized() override;
private:
//==============================================================================
// Your private member variables go here...
/*Output*/
juce::Slider Output_volume_dial;
juce::dsp::Gain<float> Output_volume;
double Output_level;
/*INput*/
juce::Slider VCLPF_inputSelect_dial;
int VCLPF_inputSelect_state;
/*VCO*/
juce::Slider VCO_frequency_dial;
juce::Slider VCO_LFO_ModDepth_dial;
juce::Slider VCO_AR_ModDepth_dial;
juce::TextButton VCO_sync_toggleButton{};
bool VCO_syncState{ false };
juce::TextButton VCO_ARmod_toggleButton{};
bool VCO_ARmodState{ false };
//...
juce::Label cpuUsageLabel;
juce::Label cpuUsageText;
const unsigned int VCO_tableSize = 1 << 7; // [2]
float level = 0.0f;
juce::AudioSampleBuffer VCO_waveTable; // [1]
juce::OwnedArray<WavetableOscillator> oscillators;
double VCO_frequency;
WavetableOscillator* VCO_osc;
void VCO_createWavetable();
void VCO_setFrequencies();
/*VCLPF*/
juce::Slider VCLPF_cutoffFrequency_dial;
juce::Slider VCLPF_resonance_dial;
juce::Slider VCLPF_ModDepth_dial;
juce::TextButton VCLPF_whiteNoise_toggleButton{};
bool VCLPF_whiteNoiseState{ false };
juce::TextButton VCLPF_LFO_toggleButton{};
bool VCLPF_LFOState{ false };
/*AREG*/
juce::Slider AREG_attack_dial;
double AREG_attackValue;
juce::Slider AREG_release_dial;
double AREG_releaseValue;
juce::TextButton AREG_repeat_toggleButton{};
bool AREG_repeat_state{ false };
juce::TextButton AREG_manualGate_toggleButton{};
bool AREG_manualGate_state{ false };
bool AREG_manualGate_lastState{ false };
const unsigned int AREG_tableSize = 1 << 7;
juce::AudioSampleBuffer AREG_waveTable;
juce::OwnedArray<WavetableOscillator> AREG_oscillators;
double AREG_frequency;
void AREG_createWavetable();
void AREG_setFrequencies();
double AREG_manualCurrentAngle;
double AREG_manualCurrentValue;
double AREG_level;
double AREG_angleDelta;
/*LFO*/
juce::Slider LFO_rate_dial;
juce::TextButton LFO_integrate_toggleButton{};
bool LFO_integrate_state{ false };
juce::TextButton LFO_derivate_toggleButton{};
bool LFO_derivate_state{ false };
const unsigned int LFO_tableSize = 1 << 7;
double LFO_frequency;
double LFO_level;
juce::AudioSampleBuffer LFO_waveTable;
juce::OwnedArray<WavetableOscillator> LFO_oscillators;
void LFO_createWavetable();
void LFO_setFrequencies();
/*VCA*/
juce::TextButton VCA_toggleButton{};
bool VCA_state{ false };
/*POWER*/
juce::TextButton PWR_toggleButton{};
bool PWR_state{ false };
/**/
double samplerate;
/*Oscilloscope*/
WaveVisualiser oscilloscope;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MainComponent)
};
| [
"fjpolo@gmail.com"
] | fjpolo@gmail.com |
d20700c933da62e37f59e4eb9b7c1ce4fa08bd8e | 8df7ae2da1ef6b4f5b25589f744d60b673cb02bb | /nodemcuscaleTEST/nodemcuscaleTEST.ino | f0b7641c9df5d1763a0fc24af2a7397c7eae1f0b | [] | no_license | lucaslovato/arduinolucas | db3b0b59e618c35bdac8673c6be8794f2c467cac | 43b7df19092a20a846db2f82822282c13144868f | refs/heads/master | 2020-03-28T21:35:09.457791 | 2018-09-17T18:11:39 | 2018-09-17T18:11:39 | 149,167,246 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,041 | ino | #include "HX711.h"
//avaliando o teste em que o celular moto z play pesa em média 165g
/*
* teste 1 :
* com o valor de 231.15 ele me devolve -98 em média, para o motoz play obs: parafusos continuam não muito presos
*/
#define HX711_DATA 14
#define HX711_CLK 12
HX711 scale(HX711_DATA, HX711_CLK, 128);
ADC_MODE(ADC_VCC);
float calibration_factor;
float weight;
void setup(){
Serial.begin(115200);
scale.set_scale(-124.42);
scale.tare();
scale.read();
}
void loop() {
// Serial.println("5s para posicionar o celular");
// for(int i = 5; i >= 0; i--){
// Serial.println(i);
// delay(1000);
// }
// Serial.println("lendo....");
// delay(1000);
//para descobrir o peso preciso pegar esse valor que ira printar e dividir pelo peso conhecido (precisa mais precisao)
// Serial.println("\n\n");
Serial.println(scale.get_units());
// Serial.println("\n\n");
//-------------------------------------------
//testando se está lendo corretamente
// Serial.println(scale.get_units(10));
}
| [
"thiagobrez@gmail.com"
] | thiagobrez@gmail.com |
791d3d712c0ccb630cd10d812c2ee35b9e3f4e3b | 72ca3c783d4946c361c7adc1ee0e728a46337d5b | /configs/RscDisplaySetupServer.cpp | 075765b410bbcbfd44a1246c507a0bd3983788a4 | [] | no_license | pennyworth12345/ContactConfigCompare | bedad3c99a097509aa2fe676a07f6e3850b62aec | e871366e36c80ad339aaab512b87b69bfe323040 | refs/heads/master | 2020-07-03T17:49:12.394661 | 2019-08-12T19:15:33 | 2019-08-12T19:15:33 | 201,992,619 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 12,440 | cpp | class RscDisplaySetupServer: RscStandardDisplay
{
idd = 132;
onLoad = "[""onLoad"",_this,""RscDisplayHostSettings"",'GUI'] call (uinamespace getvariable 'BIS_fnc_initDisplay')";
onUnload = "[""onUnload"",_this,""RscDisplayHostSettings"",'GUI'] call (uinamespace getvariable 'BIS_fnc_initDisplay')";
scriptName = "RscDisplayHostSettings";
scriptPath = "GUI";
class controls
{
class ButtonBack: RscButtonMenuCancel
{
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
text = "Back";
w = "6.25 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "1 * ( ((safezoneW / safezoneH) min 1.2) / 40) + (SafezoneX)";
y = "SafezoneY + SafezoneH - (2 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25))";
};
class ButtonLauncherServerBrowser: RscButtonMenuOK
{
colorBackground[] = {0.0313726, 0.721569, 0.917647, 1};
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 168;
text = "Server Browser in Launcher";
w = "12.5 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "safezoneX + SafezoneW - (13.5 * ( ((safezoneW / safezoneH) min 1.2) / 40))";
y = "SafezoneY + SafezoneH - (2 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25))";
};
class Content: RscControlsGroupNoScrollbars
{
h = "13.5 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 2300;
w = "31 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "0.5 - 0.5 * 31 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
y = "0.5 - 0.5 * 12 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
class controls
{
class ButtonContinue: RscButtonMenuOK
{
colorBackground[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.13])", "(profilenamespace getvariable ['GUI_BCG_RGB_G',0.54])", "(profilenamespace getvariable ['GUI_BCG_RGB_B',0.21])", 1};
h = "2 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
text = "Host Server";
w = "15 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "8 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
y = "9.5 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
class Attributes
{
align = "center";
color = "#E5E5E5";
font = "PuristaLight";
shadow = "false";
};
class TextPos
{
bottom = 0;
left = "0.25 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
right = 0.005;
top = "0.5 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
};
};
class CA_TextMaxPlayers: CA_TextName
{
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 1005;
text = "Max. players:";
w = "8 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "0 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
y = "5 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
};
class CA_TextName: RscText
{
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 1002;
style = 1;
text = "Name:";
w = "8 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "0 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
y = "0.5 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
};
class CA_TextPassword: CA_TextName
{
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 1006;
text = "Password:";
w = "8 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "0 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
y = "6.5 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
};
class CA_TextPort: CA_TextName
{
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 1004;
text = "Port:";
w = "8 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "0 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
y = "3.5 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
};
class CA_TextPrivate: CA_TextName
{
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 1003;
text = "Host:";
w = "8 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "0 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
y = "2 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
};
class CA_ValueMaxPlayers: RscEdit
{
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 103;
w = "15 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "8 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
y = "5 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
};
class CA_ValueName: RscEdit
{
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 101;
w = "15 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "8 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
y = "0.5 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
};
class CA_ValuePassword: RscEdit
{
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 102;
w = "15 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "8 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
y = "6.5 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
};
class CA_ValuePort: RscEdit
{
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 105;
w = "15 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "8 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
y = "3.5 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
};
class CA_ValuePrivate: RscXListBox
{
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 104;
w = "15 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "8 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
y = "2 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
};
class TextPortWarning: RscStructuredText
{
colorBackground[] = {0, 0, 0, 0};
h = "2 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 106;
w = "14 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "9 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
y = "7.5 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
class Attributes
{
align = "left";
color = "#ffffff";
font = "RobotoCondensedLight";
shadow = 0;
size = 0.8;
};
};
class TextUPnP: CA_TextName
{
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 1007;
text = "UPnP:";
w = "8 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "0 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
y = "8 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
};
class ValueUPnP: RscCheckBox
{
checked = 0;
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 107;
tooltip = "Create a public server behind NAT (UPnP/IGD enabled router is required).";
w = "1 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "8 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
y = "8 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
};
};
};
class PlayersName: Title
{
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 1001;
shadow = 0;
style = 1;
w = "(27.5 * ( ((safezoneW / safezoneH) min 1.2) / 40)) + 0.55*(safezoneW - ((safezoneW / safezoneH) min 1.2))";
x = "safezoneX + (11.5 * ( ((safezoneW / safezoneH) min 1.2) / 40)) + 0.45*(safezoneW - ((safezoneW / safezoneH) min 1.2))";
y = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25) + (safezoneY)";
};
class TabDirectConnect: RscButtonMenuLegacy
{
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 166;
shortcuts[] = {};
text = "Direct Connect";
tooltip = "Connect to the server using its IP address and port.";
w = "7.5 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "16.2 * ( ((safezoneW / safezoneH) min 1.2) / 40) + (SafezoneX)";
y = "2.1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25) + (safezoneY)";
};
class TabQuickPlay: RscButtonMenuLegacy
{
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 164;
text = "Quick Play";
tooltip = "Quickly find the multiplayer game that suits you best.";
w = "7.5 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "1.2 * ( ((safezoneW / safezoneH) min 1.2) / 40) + (SafezoneX)";
y = "2.1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25) + (safezoneY)";
};
class TabServers: RscButtonMenuLegacy
{
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 165;
text = "Servers";
tooltip = "Browse the existing servers.";
w = "7.5 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "8.7 * ( ((safezoneW / safezoneH) min 1.2) / 40) + (SafezoneX)";
y = "2.1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25) + (safezoneY)";
};
class TabSetupServer: RscButtonMenuLegacy
{
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 167;
shortcuts[] = {"0x00050000 + 2"};
text = "Host Server";
tooltip = "Create a new server on Internet or LAN.";
w = "7.5 * ( ((safezoneW / safezoneH) min 1.2) / 40)";
x = "23.7 * ( ((safezoneW / safezoneH) min 1.2) / 40) + (SafezoneX)";
y = "2.1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25) + (safezoneY)";
};
class Title: RscTitle
{
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 1000;
shadow = 0;
style = 0;
text = "Server Browser";
w = "(10 * ( ((safezoneW / safezoneH) min 1.2) / 40)) + 0.45*(safezoneW - ((safezoneW / safezoneH) min 1.2))";
x = "1 * ( ((safezoneW / safezoneH) min 1.2) / 40) + (SafezoneX)";
y = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25) + (safezoneY)";
};
};
class controlsBackground
{
class MainBackground: RscText
{
colorBackground[] = {0, 0, 0, 0.7};
h = "SafezoneH - (5.3 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25))";
idc = 1081;
w = "SafezoneW - (2 * ( ((safezoneW / safezoneH) min 1.2) / 40))";
x = "1 * ( ((safezoneW / safezoneH) min 1.2) / 40) + (SafezoneX)";
y = "3.2 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25) + (safezoneY)";
};
class TabsBackground: RscText
{
colorBackground[] = {0, 0, 0, 1};
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 1082;
w = "SafezoneW - (2 * ( ((safezoneW / safezoneH) min 1.2) / 40))";
x = "1 * ( ((safezoneW / safezoneH) min 1.2) / 40) + (SafezoneX)";
y = "safezoneY + (2.1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25))";
};
class TileGroup: RscControlsGroupNoScrollbars
{
h = "safezoneH";
idc = 115099;
w = "safezoneWAbs";
x = "safezoneXAbs";
y = "safezoneY";
class Controls
{
class Background: RscText
{
colorBackground[] = {0, 0, 0, 0.5};
h = "safezoneH";
idc = 114999;
w = "safezoneWAbs";
x = 0;
y = 0;
};
};
};
class TitleBackground: RscText
{
colorBackground[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.13])", "(profilenamespace getvariable ['GUI_BCG_RGB_G',0.54])", "(profilenamespace getvariable ['GUI_BCG_RGB_B',0.21])", "(profilenamespace getvariable ['GUI_BCG_RGB_A',0.8])"};
h = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)";
idc = 1080;
w = "SafezoneW - (2 * ( ((safezoneW / safezoneH) min 1.2) / 40))";
x = "1 * ( ((safezoneW / safezoneH) min 1.2) / 40) + (SafezoneX)";
y = "1 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25) + (safezoneY)";
};
class Vignette: RscVignette
{
idc = 114998;
};
};
};
| [
"pennyworth12345@gmail.com"
] | pennyworth12345@gmail.com |
e9e833118f5ef06b50c223820822d0c6e5808694 | e3bba202cfa1a57f91262f67de7fa24c5db9aad4 | /BPiece.cpp | fc0f5209a4991097da56492a3306bd2a586bca41 | [] | no_license | MichaelBStearns/Checker | 238bcaad77d59ddd0babd0b41ac2e9b89d025ebf | ca2c5eee293fab2881d4651f02c8696b44bedf0e | refs/heads/master | 2020-05-15T14:11:41.437787 | 2019-04-27T18:38:49 | 2019-04-27T18:38:49 | 182,327,292 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 236 | cpp | #include "pch.h"
#include "BPiece.h"
#include "BKing.h"
BPiece::BPiece(){
}
BPiece::~BPiece(){
}
void BPiece::makeKing() {
CBoard[xposition][yposition] = "BlackKing";
delete this;
BKing(xposition, yposition);
} | [
"noreply@github.com"
] | MichaelBStearns.noreply@github.com |
b870d1daa98f5b0b6ee576bc8311254ae15de5e3 | 87f0f5291a7de99907e767b035df34c0a383b92b | /src/qt/sendcoinsentry.cpp | 8f577e2b4df16b2541da0322565a642a6603b423 | [
"MIT"
] | permissive | relaycoin/RELAY | bf94e06d93efc4149b6532e4cc85b7ae81ccdb1c | 79e4e31d48afd6e0001d68b57341e37bdeafc389 | refs/heads/master | 2020-03-19T04:18:19.972923 | 2018-06-06T02:37:58 | 2018-06-06T02:37:58 | 135,417,667 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,457 | cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The DASH developers
// Copyright (c) 2015-2017 The PIVX developers
// Copyright (c) 2018 The RELAY developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "sendcoinsentry.h"
#include "ui_sendcoinsentry.h"
#include "addressbookpage.h"
#include "addresstablemodel.h"
#include "guiutil.h"
#include "optionsmodel.h"
#include "walletmodel.h"
#include <QApplication>
#include <QClipboard>
SendCoinsEntry::SendCoinsEntry(QWidget* parent) : QStackedWidget(parent),
ui(new Ui::SendCoinsEntry),
model(0)
{
ui->setupUi(this);
setCurrentWidget(ui->SendCoins);
#ifdef Q_OS_MAC
ui->payToLayout->setSpacing(4);
#endif
#if QT_VERSION >= 0x040700
ui->addAsLabel->setPlaceholderText(tr("Enter a label for this address to add it to your address book"));
#endif
// normal rel address field
GUIUtil::setupAddressWidget(ui->payTo, this);
// just a label for displaying rel address(es)
ui->payTo_is->setFont(GUIUtil::bitcoinAddressFont());
// Connect signals
connect(ui->payAmount, SIGNAL(valueChanged()), this, SIGNAL(payAmountChanged()));
connect(ui->deleteButton, SIGNAL(clicked()), this, SLOT(deleteClicked()));
connect(ui->deleteButton_is, SIGNAL(clicked()), this, SLOT(deleteClicked()));
connect(ui->deleteButton_s, SIGNAL(clicked()), this, SLOT(deleteClicked()));
}
SendCoinsEntry::~SendCoinsEntry()
{
delete ui;
}
void SendCoinsEntry::on_pasteButton_clicked()
{
// Paste text from clipboard into recipient field
ui->payTo->setText(QApplication::clipboard()->text());
}
void SendCoinsEntry::on_addressBookButton_clicked()
{
if (!model)
return;
AddressBookPage dlg(AddressBookPage::ForSelection, AddressBookPage::SendingTab, this);
dlg.setModel(model->getAddressTableModel());
if (dlg.exec()) {
ui->payTo->setText(dlg.getReturnValue());
ui->payAmount->setFocus();
}
}
void SendCoinsEntry::on_payTo_textChanged(const QString& address)
{
updateLabel(address);
}
void SendCoinsEntry::setModel(WalletModel* model)
{
this->model = model;
if (model && model->getOptionsModel())
connect(model->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit()));
clear();
}
void SendCoinsEntry::clear()
{
// clear UI elements for normal payment
ui->payTo->clear();
ui->addAsLabel->clear();
ui->payAmount->clear();
ui->messageTextLabel->clear();
ui->messageTextLabel->hide();
ui->messageLabel->hide();
// clear UI elements for insecure payment request
ui->payTo_is->clear();
ui->memoTextLabel_is->clear();
ui->payAmount_is->clear();
// clear UI elements for secure payment request
ui->payTo_s->clear();
ui->memoTextLabel_s->clear();
ui->payAmount_s->clear();
// update the display unit, to not use the default ("BTC")
updateDisplayUnit();
}
void SendCoinsEntry::deleteClicked()
{
emit removeEntry(this);
}
bool SendCoinsEntry::validate()
{
if (!model)
return false;
// Check input validity
bool retval = true;
// Skip checks for payment request
if (recipient.paymentRequest.IsInitialized())
return retval;
if (!model->validateAddress(ui->payTo->text())) {
ui->payTo->setValid(false);
retval = false;
}
if (!ui->payAmount->validate()) {
retval = false;
}
// Sending a zero amount is invalid
if (ui->payAmount->value(0) <= 0) {
ui->payAmount->setValid(false);
retval = false;
}
// Reject dust outputs:
if (retval && GUIUtil::isDust(ui->payTo->text(), ui->payAmount->value())) {
ui->payAmount->setValid(false);
retval = false;
}
return retval;
}
SendCoinsRecipient SendCoinsEntry::getValue()
{
// Payment request
if (recipient.paymentRequest.IsInitialized())
return recipient;
// Normal payment
recipient.address = ui->payTo->text();
recipient.label = ui->addAsLabel->text();
recipient.amount = ui->payAmount->value();
recipient.message = ui->messageTextLabel->text();
return recipient;
}
QWidget* SendCoinsEntry::setupTabChain(QWidget* prev)
{
QWidget::setTabOrder(prev, ui->payTo);
QWidget::setTabOrder(ui->payTo, ui->addAsLabel);
QWidget* w = ui->payAmount->setupTabChain(ui->addAsLabel);
QWidget::setTabOrder(w, ui->addressBookButton);
QWidget::setTabOrder(ui->addressBookButton, ui->pasteButton);
QWidget::setTabOrder(ui->pasteButton, ui->deleteButton);
return ui->deleteButton;
}
void SendCoinsEntry::setValue(const SendCoinsRecipient& value)
{
recipient = value;
if (recipient.paymentRequest.IsInitialized()) // payment request
{
if (recipient.authenticatedMerchant.isEmpty()) // insecure
{
ui->payTo_is->setText(recipient.address);
ui->memoTextLabel_is->setText(recipient.message);
ui->payAmount_is->setValue(recipient.amount);
ui->payAmount_is->setReadOnly(true);
setCurrentWidget(ui->SendCoins_InsecurePaymentRequest);
} else // secure
{
ui->payTo_s->setText(recipient.authenticatedMerchant);
ui->memoTextLabel_s->setText(recipient.message);
ui->payAmount_s->setValue(recipient.amount);
ui->payAmount_s->setReadOnly(true);
setCurrentWidget(ui->SendCoins_SecurePaymentRequest);
}
} else // normal payment
{
// message
ui->messageTextLabel->setText(recipient.message);
ui->messageTextLabel->setVisible(!recipient.message.isEmpty());
ui->messageLabel->setVisible(!recipient.message.isEmpty());
ui->addAsLabel->clear();
ui->payTo->setText(recipient.address); // this may set a label from addressbook
if (!recipient.label.isEmpty()) // if a label had been set from the addressbook, dont overwrite with an empty label
ui->addAsLabel->setText(recipient.label);
ui->payAmount->setValue(recipient.amount);
}
}
void SendCoinsEntry::setAddress(const QString& address)
{
ui->payTo->setText(address);
ui->payAmount->setFocus();
}
bool SendCoinsEntry::isClear()
{
return ui->payTo->text().isEmpty() && ui->payTo_is->text().isEmpty() && ui->payTo_s->text().isEmpty();
}
void SendCoinsEntry::setFocus()
{
ui->payTo->setFocus();
}
void SendCoinsEntry::updateDisplayUnit()
{
if (model && model->getOptionsModel()) {
// Update payAmount with the current unit
ui->payAmount->setDisplayUnit(model->getOptionsModel()->getDisplayUnit());
ui->payAmount_is->setDisplayUnit(model->getOptionsModel()->getDisplayUnit());
ui->payAmount_s->setDisplayUnit(model->getOptionsModel()->getDisplayUnit());
}
}
bool SendCoinsEntry::updateLabel(const QString& address)
{
if (!model)
return false;
// Fill in label from address book, if address has an associated label
QString associatedLabel = model->getAddressTableModel()->labelForAddress(address);
if (!associatedLabel.isEmpty()) {
ui->addAsLabel->setText(associatedLabel);
return true;
}
return false;
}
| [
"relaycoindev@gmail.com"
] | relaycoindev@gmail.com |
c89c77e02a7c022825a0fa97d386629ae7b49d69 | 79527ac7914b37d8cd6faebb0ffae0e700a98bb6 | /SlimDXc_Jun2010(VC++2008)/source/direct3d9/XFileEnumerationObject.h | f02a5df9710c6d75c791722a9f9ddd13ec94dd61 | [
"MIT"
] | permissive | hugetiny/DTXManiaXG-verK | 2f2cb7c5ba405b8252b7eef9365d9ae53b8b1a81 | b19611208d45c40bf3d48d7084e05faea920ee92 | refs/heads/master | 2022-10-11T13:55:45.313428 | 2016-08-18T13:15:50 | 2016-08-18T13:15:50 | 243,325,915 | 1 | 0 | null | 2020-02-27T21:25:02 | 2020-02-26T17:40:04 | C++ | UTF-8 | C++ | false | false | 1,652 | h | /*
* Copyright (c) 2007-2010 SlimDX Group
*
* 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.
*/
#pragma once
#include "Enums.h"
namespace SlimDX
{
namespace Direct3D9
{
ref class XFileSaveObject;
ref class XFile;
ref class XFileData;
public ref class XFileEnumerationObject : public ComObject
{
COMOBJECT(ID3DXFileEnumObject, XFileEnumerationObject);
public:
XFileData^ GetChild( int id );
XFileData^ GetDataObject( System::Guid id );
XFileData^ GetDataObject( System::String^ name );
property XFile^ File
{
XFile^ get();
}
property System::Int64 ChildCount { System::Int64 get(); }
};
}
} | [
"gennsou76573@gmail.com"
] | gennsou76573@gmail.com |
7329b07edde309b439e6ce69533ce24611d5e2a9 | 1e60b40211af0106674bcef3e01a6d03d5546291 | /FB SDK/MotionController.h | 5d09d1e51ebc71038d2afa1f14451865e9df9035 | [] | no_license | Hattiwatti/BF3MinimapGenerator | f1def4c4568e21024cd8b60ed565e99dde702c46 | 4af8ac773e968486abdf9c14b5394b742e9060f8 | refs/heads/master | 2020-12-30T11:03:04.890244 | 2018-03-10T16:15:36 | 2018-03-10T16:15:36 | 98,843,979 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 783 | h | #ifndef _MotionController_H
#define _MotionController_H
//#include "../Frostbite_classes.h"
namespace fb
{
class MotionControllerState
{
Vec2 axis; // this+0x0
bool digitalButtons[0xD]; // this+0x8
}; // fb::MotionControllerState
class MotionController
{
public:
virtual void * __vecDelDtor(unsigned int); // V: 0x0
virtual bool init(); // V: 0x4
virtual void preFrameUpdate(float); // V: 0x8
virtual void sample(float); // V: 0xC
virtual void sampleBetweenFrames(float); // V: 0x10
virtual void setVibration(float, bool); // V: 0x18
struct MotionControllerState m_state; // this+0x4
struct MotionControllerState m_oldState; // this+0x1C
};
};
#endif | [
"Hattiwatti@users.noreply.github.com"
] | Hattiwatti@users.noreply.github.com |
358b27a33f16e1f3b4eba67ff000c7ca8306446e | 793c8848753f530aab28076a4077deac815af5ac | /src/dskphone/ui/xwin/settingui/src/settinguicallforwarddetaildelegate.h | ab5d69f0c37cdd87d1bcb0d7f539e36e576334e3 | [] | no_license | Parantido/sipphone | 4c1b9b18a7a6e478514fe0aadb79335e734bc016 | f402efb088bb42900867608cc9ccf15d9b946d7d | refs/heads/master | 2021-09-10T20:12:36.553640 | 2018-03-30T12:44:13 | 2018-03-30T12:44:13 | 263,628,242 | 1 | 0 | null | 2020-05-13T12:49:19 | 2020-05-13T12:49:18 | null | UTF-8 | C++ | false | false | 1,554 | h | #ifndef __SETTINGUI_CALL_FORWARD_DETAIL_DELEGATE_H__
#define __SETTINGUI_CALL_FORWARD_DETAIL_DELEGATE_H__
#include "settinguiaccountbasedelegate.h"
class CSettingUICallForwardDetailDelegate : public CSettingUIAccountDelegateBase
{
public:
CSettingUICallForwardDetailDelegate();
virtual ~CSettingUICallForwardDetailDelegate();
static CSettingUIDelegateBase * CreateCallForwardDetailDelegate();
#if IF_SUPPORT_SELECT_CONTACT_INFO
public:
static void UpdateContactInfo(const yl::string& strContactName, const yl::string& strContactNumber);
protected:
void UpdateCallforwardData(const yl::string& strContactNumber);
virtual bool IsShowDirectorySoftkey();
#endif
public:
virtual bool ProcessMsgCallBack(int nResult, int nID, void * pExtraData = NULL);
virtual CSettingUIPageDataBase * LoadPageData(bool bReLoad = false);
virtual bool PageDataFilter(CSettingUIPageDataBase * pPagedata, bool bReload = false);
virtual bool SavePageData(CSettingUIPageDataBase * pPageData, bool bBackToPrevious = true,
bool bPopHint = true);
virtual void GetPagePrivateSoftkey(CArraySoftKeyBarData & vecSoftKey);
virtual bool OnSoftkeyAction(int iType, bool bLongPress, int nDataIndex);
private:
void LoadPrivateData(CSettingUIPageDataBase * pPagedata);
int GetTypeById(CSettingUIPageDataBase * pPageData);
protected:
int m_nForwardType;
};
typedef CSettingUICallForwardDetailDelegate * CSettingUICallForwardDetailDelegatePtr;
#endif // __SETTINGUI_CALL_FORWARD_DETAIL_DELEGATE_H__
| [
"rongxx@yealink.com"
] | rongxx@yealink.com |
a699a0109f1813feafd0e310a662e8c6f8981407 | f0b80d4b8453282dab4dac2187b44284f8295af7 | /acm/pkucampus/2011/A. Daka/a.cpp | 4b64b2095a4348cdf34983a469e4f25ba6c57630 | [] | no_license | caiwaifung/algo | c63a5d2ab4c5de78e791482badfc4873d5cb0018 | 07e5b2ab62d11061d582c76edafdd649861b940b | refs/heads/master | 2021-01-23T11:48:37.805450 | 2018-06-02T20:24:42 | 2018-06-02T20:24:42 | 35,368,287 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,303 | cpp | #include <iostream>
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <vector>
#include <string>
#include <map>
#include <set>
using namespace std;
struct Record {
int h, m, s;
int Y, M, D;
void clear() {
h = m = s = 0;
Y = -1, M = D = 1;
}
bool read() {
return scanf("%d%d%d%d%d%d", &h, &m, &s, &Y, &M, &D) != EOF;
}
bool same_day(const Record &rec) {
return Y == rec.Y && M == rec.M && D == rec.D;
}
bool in_morning() {
if (h == 7) return true;
if (h != 8) return false;
if (m < 30) return true;
return m == 30 && s == 0;
}
bool in_halfhour() {
if (h >= 16 && h <= 20) return true;
if (h != 21) return false;
if (m < 30) return true;
return m == 30 && s == 0;
}
bool delta_more_than_half_hour(const Record &rec) {
int dh = rec.h - h;
int dm = rec.m - m;
int ds = rec.s - s;
dm += dh * 60;
ds += dm * 60;
return ds >= 30 * 60;
}
};
int main() {
freopen("a.in", "r", stdin);
freopen("a.out", "w", stdout);
int count_morning = 0, count_halfhour = 0;
Record last, cur;
last.clear();
while (cur.read()) {
if (!cur.in_morning() && !cur.in_halfhour())
continue;
if (!last.same_day(cur)) {
if (cur.in_morning())
count_morning ++;
last = cur;
continue;
}
if (cur.in_halfhour())
if (last.in_morning())
last = cur;
else
if (last.delta_more_than_half_hour(cur)) {
count_halfhour ++;
last.clear();
}
}
count_morning = max(0, 10 - count_morning);
count_halfhour = max(0, 20 - count_halfhour);
printf("%d %d\n", count_morning, count_halfhour);
/*
int last_h = 0, last_m = 0, last_s = 0, last_Y = -1, last_M = 1, last_D = 1;
int cur_h, cur_m, cur_s, cur_Y, cur_M, cur_D;
while (scanf("%d%d%d%d%d%d", &cur_h, &cur_m, &cur_s, &cur_Y, &cur_M, &cur_D) != EOF)
if (cur_Y == last_Y && cur_M == last_M && cur_D == last_M) {
} else {
}
*/
return 0;
}
| [
"gdfqw93@163.com"
] | gdfqw93@163.com |
24bc29077ab92e8823089a0f66780a729b95e632 | cfdfb8b045feb9efc845dab5f7de6ce815b3246a | /Tank Wars-0.8.6/Classes/EnemyTank.h | 19a83163f9a17d38932c29df4dbe47701292b744 | [] | no_license | joyfish/TowerTD | 814e3063a97bfff1ba9f6d0fa6392886cc787727 | ba793ad00c10adf923dd28a813e44f6ca9956977 | refs/heads/master | 2021-01-14T09:10:29.032591 | 2014-10-17T03:24:11 | 2014-10-17T03:24:11 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 635 | h | #ifndef __ENEMYTANK_H
#define __ENEMYTANK_H
#include "cocos2d.h"
#include "BaseTank.h"
using namespace cocos2d;
class EnemyTank:public BaseTank{
protected:
Vec2 position;
//敌方坦克移动
virtual void Enemymove(float t);
//敌坦克的智能移动和开火
virtual void update(float t);
virtual void playMoveEffect();
void EnemyTestBounding(float t);
public:
// virtual void move(moverect State);//敌坦克的移动方法
virtual bool initWithSpriteFrameName(std::string name,int hp,int speed,Vec2 position);
virtual void fire();//敌坦克的开火方法
virtual void runAnimate();
CREATE_FUNC(EnemyTank);
};
#endif | [
"liuthou@163.com"
] | liuthou@163.com |
2bce87e1a517283637e8e4617689b26dc5df392e | 72e08c020541364f00f2f2e1858a41b1d3e25c56 | /10487.cpp | 31e20e8744a094f380763b910abb987ebfea931b | [] | no_license | shreyan-jaiswal/UVa-solutions | 51e8ab017723ae37c18823e4766b804ac7e2ca35 | 2263a4059045b3a93f7e598c5f18f25a973164ea | refs/heads/master | 2020-06-18T09:16:21.496199 | 2019-07-10T17:31:01 | 2019-07-10T17:31:01 | 196,248,673 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 519 | cpp | #include <cstdio>
#include <cstdlib>
using namespace std;
int main(){
int n, A[1005], m, q, ans;
while(scanf("%d", &n), n){
for(int i = 0; i < n; i++) scanf("%d", &A[i]);
ans = A[0] + A[1];
scanf("%d", &m);
while(m--){
scanf("%d", &q);
for(int i = 0; i < n; i++)
for(int j = 0; j < i; j++)
if(abs(q-ans) > abs(q-A[i]-A[j]))
ans = A[i] + A[j];
printf("%d\n", ans);
}
}
} | [
"sjaiswa2@andrew.cmu.edu"
] | sjaiswa2@andrew.cmu.edu |
223c4bb868376f11c5e9f3b638d685f9aa8e0a71 | bd63d4134a77cb5f54f6f86e5ed570a1618111f6 | /code/call_by_value_ref.cpp | bc96a83e7b0218b498f4d9125ac570f7e00a1746 | [
"MIT"
] | permissive | spiritsher/c_practice | 2c36228bb4aff63527c5aed72bed7a05f24cb0a8 | 472acff2b90f685bbf2d7102bfc5a987d9b72b2a | refs/heads/main | 2023-05-14T09:54:59.232527 | 2021-05-18T20:12:32 | 2021-05-18T20:12:32 | 359,743,988 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 220 | cpp | #include <stdio.h>
void foobar(int &n)
{
n = n + 1;
return;
}
int main()
{
int k = 6;
foobar(k);
// printf("foobar(k) = %d, k = %d\n", foobar(k), k);
printf("k = %d\n", k);
return 0;
}
| [
"jiawei.she@etas.com"
] | jiawei.she@etas.com |
aed12fd37493043702ac6b0900b51dc4843030ea | 09403b9998277567edb91e237ef9a29e5265a279 | /src/withrottle/Server.hxx | 22f9bc366418ee770e28c5ca3c78968da7a2ced0 | [
"BSD-2-Clause"
] | permissive | bakerstu/openmrn | 9a07d3a72fad1d0447c1e59acfeeff61c9c76c5a | ca333ec4b35e1ffc1323aa62936db0bd043ef6df | refs/heads/master | 2023-08-31T12:11:46.046315 | 2023-08-31T00:53:31 | 2023-08-31T00:54:05 | 6,500,256 | 45 | 42 | BSD-2-Clause | 2023-09-10T10:39:52 | 2012-11-02T02:20:12 | C++ | UTF-8 | C++ | false | false | 5,924 | hxx | /** \copyright
* Copyright (c) 2016, Stuart W Baker
* All rights reserved
*
* Redistribution and use in source and binary forms, with or without
* modification, are strictly prohibited without written consent.
*
* 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 HOLDER 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.
*
* \file withrottle/Server.hxx
*
* This file provides the WiThrottle server objects.
*
* @author Stuart Baker
* @date 17 December 2016
*/
#ifndef _WITHROTTLE_SERVER_HXX_
#define _WITHROTTLE_SERVER_HXX_
#include <string>
#include <memory>
#include "executor/Dispatcher.hxx"
#include "executor/Service.hxx"
#include "openlcb/TractionThrottle.hxx"
#include "utils/socket_listener.hxx"
#include "withrottle/Defs.hxx"
#include "withrottle/ServerCommand.hxx"
#include "withrottle/ServerCommandLoco.hxx"
namespace withrottle
{
/* forward declaration */
class ThrottleFlow;
/** WiThrottle server object.
*/
class Server : public Service
{
public:
/** Constructor.
* @param name name of the bus
* @param port TCP port to listen for connections on, -1 for default.
* @param node reference to the OpenLCB Node that proxies our bus
*/
Server(const char *name, int port, openlcb::Node *node)
: Service(&executor)
, executor(name, 0, 2048)
, node(node)
, listener((port >= 0 || port <= UINT16_MAX) ? port : Defs::DEFAULT_PORT,
std::bind(&Server::on_new_connection, this,
std::placeholders::_1))
{
}
/** Destructor.
*/
~Server()
{
listener.shutdown();
}
/** Start the server.
*/
void start()
{
}
private:
/** A new throttle connection is made.
* @param fd socket descriptor
*/
void on_new_connection(int fd);
/** The executor that will run the WiThrottle flows. */
Executor<1> executor;
/** node reference */
openlcb::Node* node;
/** listen socket for new connections */
SocketListener listener;
/** allow access from ThrottleFlow */
friend class ThrottleFlow;
DISALLOW_COPY_AND_ASSIGN(Server);
};
/** State flow for handling a throttle instance.
*/
class ThrottleFlow : public StateFlowBase
{
public:
/** Constructor.
* @param service service this flow belongs to
* @param fd socket descriptor of throttle connection.
* @param node OpenLCB node that proxies our throttles
*/
ThrottleFlow(Server *server, int fd, openlcb::Node *node);
/** Destructor.
*/
~ThrottleFlow()
{
close(fd);
command->unref();
}
/** Start the service.
*/
void start()
{
start_flow(STATE(entry));
}
private:
/** Parse the incoming data.
* @return true if a fully parsed command has been found, else false
*/
bool parse();
/** Parse the incoming data. */
void parse_command();
/** Parse the incoming data. */
void parse_multi_type();
/** Parse the incoming data. */
void parse_train();
/** Parse the incoming data.
* @return true if a fully parsed command has been found, else false
*/
bool parse_subcommand();
/** Parse the incoming data. */
void parse_multi();
/** Beginning of state flow.
* @return next state is data_sent()
*/
StateFlowBase::Action entry();
/** Data sent successfully.
* @return next state is data_received()
*/
StateFlowBase::Action data_sent();
/** Process read data.
* @return next state is data_received()
*/
StateFlowBase::Action data_received();
/**< OpenLCB throttle instance */
openlcb::TractionThrottle olcbThrottle;
/** reference to parent server */
Server *server;
string name; /**< name of throttle */
string id; /**< id of throttle */
LocoAddress address; /**< primary locomitve addres */
LocoAddress secondaryAddress; /**< secondary locomotive address */
/** socket descriptor of throttle connection */
int fd;
/** read data buffer */
char readRaw[128];
/** agrigate pre-processed stream data */
string data;
/** data index for parsing */
size_t dataIndex;
/** Current state of parsing the data */
ServerState state;
/** Helper for waiting on data from a file descriptor */
StateFlowSelectHelper selectHelper;
/** dispatch flow that will handle messages incoming from the cab */
typedef DispatchFlow<Buffer<ThrottleCommand>, 1> CommandDispatchFlow;
/** flow responsible for routing incoming messages to handlers. */
CommandDispatchFlow dispatcher;
/** throttle command */
Buffer<ThrottleCommand> *command;
/** handler for locomotive commands */
ServerCommandLoco serverCommandLoco;
/** allow access to private members from class ServerCommandBase */
friend class ServerCommandBase;
/** allow access to private members from class ServerCommandLoco */
friend class ServerCommandLoco;
};
/*
* Server::on_new_connection()
*/
inline void Server::on_new_connection(int fd)
{
ThrottleFlow *flow = new ThrottleFlow(this, fd, node);
flow->start();
}
} /* namespace withrottle */
#endif /* _WITHROTTLE_SERVER_HXX_ */
| [
"stuart_w_baker@ymail.com"
] | stuart_w_baker@ymail.com |
7056ff34ab0558d1e144661cc42ba333ad779ea7 | a83695d962a73191e103c968efdab84af44af779 | /VisualToolServer/Server/Action/ActionBT.h | 90fd0ad5efaa31be948b30fb4147163da1d72bfd | [] | no_license | chenbk85/SSL | 7750a1844c59ea65a210e03a2da10bd412ceae10 | 50c2b3784d06b1b92a64d1a20434c345d05bf2f9 | refs/heads/master | 2020-04-01T20:05:59.460169 | 2016-04-08T12:26:00 | 2016-04-08T12:26:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 365 | h | #pragma once
#include <../FrameWork/Core/Action.h>
namespace SSL
{
class ActionBT : public Action
{
public:
static const INT32 ID = EN_ACTION_TYPE::ACTION_BT;
public:
ActionBT(Entity* entity);
~ActionBT();
public:
EN_BEHAVIOR_STATE FindEnemy();
EN_BEHAVIOR_STATE AttackEnemy();
EN_BEHAVIOR_STATE Patrol();
EN_BEHAVIOR_STATE CheckHP();
};
}
| [
"musang33@nate.com"
] | musang33@nate.com |
209a079c3f1147935a968c138a7ede693ca632d3 | c5452d754e234fe6fe39d26b29650c50901f3785 | /BruteUEGen/stdafx.h | b8073c8dcde3ee4ab8de95807e67ef8ee00199ac | [] | no_license | jesterret/BruteUEGen | 679a04e136e34cab1690b7ffe6a25472e87ec661 | c7fddf0cb1a0d1676b96a8fe78dd862998ca4d27 | refs/heads/master | 2022-08-11T23:06:21.448660 | 2017-06-08T18:09:04 | 2017-06-08T18:09:04 | 93,778,277 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,448 | h | // stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#define WIN32_LEAN_AND_MEAN
#include <SDKDDKVer.h>
#include <windows.h>
#include <Pathcch.h>
#include <Psapi.h>
#include <functional>
#include <algorithm>
#include <sstream>
#include <string>
#include <vector>
#include <tuple>
#include <map>
typedef std::wstring wstr;
typedef unsigned long long QWORD;
#define SDKGenMaker(EngineMajorVersion, GenMethod) (new EngineMajorVersion##GenMethod##Gen())
#define GetPtr(type, base, offset) (*(type*)(base + offset))
template <typename T> wstr to_wstring(T&& t, std::ios_base& (*f)(std::ios_base&))
{
wstringstream oss;
oss << f << std::uppercase << t;
return oss.str();
}
#include "format\format.h"
#include "Signature.h"
#include "CVars.h"
#include "UEGenBase.h"
#include "UObject.h"
#include "UField.h"
#include "UStruct.h"
#include "UProperty.h"
#include "UFunction.h"
#include "UClass.h"
#include "UArrayProperty.h"
#include "UBoolProperty.h"
#include "UByteProperty.h"
#include "UClassProperty.h"
#include "UDelegateProperty.h"
#include "UDoubleProperty.h"
#include "UFloatProperty.h"
#include "UInterfaceProperty.h"
#include "UIntProperty.h"
#include "UMapProperty.h"
#include "UNameProperty.h"
#include "UObjectProperty.h"
#include "UPointerProperty.h"
#include "UStrProperty.h"
#include "UStructProperty.h" | [
"jesterret@gmail.com"
] | jesterret@gmail.com |
63add9996b52f6421131e8fdfcb4b288dd652ee4 | de8eee85da47af00423c95d72834f9c7bb63aed7 | /source/common/mutex.h | 6dbd5baf86bc40840fbeb583e84f416839a655e1 | [] | no_license | ZooRey/lspf | 1dac0c238934e8ecc37831f8063011be342feeb1 | c644115a32372c12cf994d1d6a6f8c86be149f76 | refs/heads/master | 2021-01-19T15:46:32.173933 | 2018-01-03T02:15:54 | 2018-01-03T02:15:54 | 88,228,338 | 0 | 1 | null | 2017-04-20T13:00:27 | 2017-04-14T03:15:18 | C++ | UTF-8 | C++ | false | false | 2,328 | h | #ifndef __MUTEX_H__
#define __MUTEX_H__
#include <pthread.h>
class TMutex
{
public:
TMutex()
{
pthread_mutex_init(&m_mutex, NULL);
}
~TMutex()
{
pthread_mutex_destroy(&m_mutex);
}
void Lock()
{
pthread_mutex_lock(&m_mutex);
}
void UnLock()
{
pthread_mutex_unlock(&m_mutex);
}
pthread_mutex_t* GetMutex() {
return &m_mutex;
}
private:
pthread_mutex_t m_mutex;
};
class AutoLocker
{
public:
explicit AutoLocker(TMutex* mutex)
{
m_mutex = mutex;
m_mutex->Lock();
}
~AutoLocker()
{
m_mutex->UnLock();
}
private:
TMutex* m_mutex;
};
class ReadWriteLock
{
public:
ReadWriteLock()
{
pthread_rwlock_init(&m_lock, NULL);
}
~ReadWriteLock()
{
pthread_rwlock_destroy(&m_lock);
}
void ReadLock()
{
pthread_rwlock_rdlock(&m_lock);
}
void WriteLock()
{
pthread_rwlock_wrlock(&m_lock);
}
void UnLock()
{
pthread_rwlock_unlock(&m_lock);
}
private:
pthread_rwlock_t m_lock;
};
class ReadAutoLocker
{
public:
explicit ReadAutoLocker(ReadWriteLock* lock)
{
m_lock = lock;
m_lock->ReadLock();
}
~ReadAutoLocker()
{
m_lock->UnLock();
}
private:
ReadWriteLock* m_lock;
};
class WriteAutoLocker
{
public:
explicit WriteAutoLocker(ReadWriteLock* lock)
{
m_lock = lock;
m_lock->WriteLock();
}
~WriteAutoLocker()
{
m_lock->UnLock();
}
private:
ReadWriteLock* m_lock;
};
class SpinLock
{
public:
SpinLock()
{
pthread_spin_init(&_lock, 0);
}
~SpinLock()
{
pthread_spin_destroy(&_lock);
}
void Lock()
{
pthread_spin_lock(&_lock);
}
void Unlock()
{
pthread_spin_unlock(&_lock);
}
private:
pthread_spinlock_t _lock;
};
class AutoSpinLock
{
public:
explicit AutoSpinLock(SpinLock* spin_lock)
: _spin_lock(spin_lock)
{
if (NULL != _spin_lock)
{
_spin_lock->Lock();
}
}
~AutoSpinLock()
{
if (NULL != _spin_lock)
{
_spin_lock->Unlock();
}
}
private:
SpinLock* _spin_lock;
};
#endif
| [
"lizuorui@126.com"
] | lizuorui@126.com |
8b426091e18abebe82ef4ebf1b218417c8ea4283 | 21553f6afd6b81ae8403549467230cdc378f32c9 | /arm/cortex/Freescale/MKV11Z7/include/arch/reg/ewm.hpp | d7e43dbeddba16b873359f087d6c083a45b71d70 | [] | no_license | digint/openmptl-reg-arm-cortex | 3246b68dcb60d4f7c95a46423563cab68cb02b5e | 88e105766edc9299348ccc8d2ff7a9c34cddacd3 | refs/heads/master | 2021-07-18T19:56:42.569685 | 2017-10-26T11:11:35 | 2017-10-26T11:11:35 | 108,407,162 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,699 | hpp | /*
* OpenMPTL - C++ Microprocessor Template Library
*
* This program is a derivative representation of a CMSIS System View
* Description (SVD) file, and is subject to the corresponding license
* (see "Freescale CMSIS-SVD License Agreement.pdf" in the parent directory).
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
////////////////////////////////////////////////////////////////////////
//
// Import from CMSIS-SVD: "Freescale/MKV11Z7.svd"
//
// vendor: Freescale Semiconductor, Inc.
// vendorID: Freescale
// name: MKV11Z7
// series: Kinetis_V
// version: 1.6
// description: MKV11Z7 Freescale Microcontroller
// --------------------------------------------------------------------
//
// C++ Header file, containing architecture specific register
// declarations for use in OpenMPTL. It has been converted directly
// from a CMSIS-SVD file.
//
// https://digint.ch/openmptl
// https://github.com/posborne/cmsis-svd
//
#ifndef ARCH_REG_EWM_HPP_INCLUDED
#define ARCH_REG_EWM_HPP_INCLUDED
#warning "using untested register declarations"
#include <register.hpp>
namespace mptl {
/**
* External Watchdog Monitor
*/
struct EWM
{
static constexpr reg_addr_t base_addr = 0x40061000;
/**
* Control Register
*/
struct CTRL
: public reg< uint8_t, base_addr + 0, rw, 0 >
{
using type = reg< uint8_t, base_addr + 0, rw, 0 >;
using EWMEN = regbits< type, 0, 1 >; /**< EWM enable. */
using ASSIN = regbits< type, 1, 1 >; /**< EWM_in's Assertion State Select. */
using INEN = regbits< type, 2, 1 >; /**< Input Enable. */
using INTEN = regbits< type, 3, 1 >; /**< Interrupt Enable. */
};
/**
* Service Register
*/
struct SERV
: public reg< uint8_t, base_addr + 0x1, wo, 0 >
{
using type = reg< uint8_t, base_addr + 0x1, wo, 0 >;
using SERVICE = regbits< type, 0, 8 >; /**< The EWM service mechanism requires the CPU to write two values to the SERV register: a first data byte of 0xB4, followed by a second data byte of 0x2C */
};
/**
* Compare Low Register
*/
struct CMPL
: public reg< uint8_t, base_addr + 0x2, rw, 0 >
{
using type = reg< uint8_t, base_addr + 0x2, rw, 0 >;
using COMPAREL = regbits< type, 0, 8 >; /**< To prevent runaway code from changing this field, software should write to this field after a CPU reset even if the (default) minimum service time is required */
};
/**
* Compare High Register
*/
struct CMPH
: public reg< uint8_t, base_addr + 0x3, rw, 0xFF >
{
using type = reg< uint8_t, base_addr + 0x3, rw, 0xFF >;
using COMPAREH = regbits< type, 0, 8 >; /**< To prevent runaway code from changing this field, software should write to this field after a CPU reset even if the (default) maximum service time is required */
};
/**
* Clock Control Register
*/
struct CLKCTRL
: public reg< uint8_t, base_addr + 0x4, rw, 0 >
{
using type = reg< uint8_t, base_addr + 0x4, rw, 0 >;
using CLKSEL = regbits< type, 0, 2 >; /**< EWM has 4 possible low power clock sources for running EWM counter */
};
/**
* Clock Prescaler Register
*/
struct CLKPRESCALER
: public reg< uint8_t, base_addr + 0x5, rw, 0 >
{
using type = reg< uint8_t, base_addr + 0x5, rw, 0 >;
using CLK_DIV = regbits< type, 0, 8 >; /**< Selected low power clock source for running the EWM counter can be prescaled as below */
};
};
} // namespace mptl
#endif // ARCH_REG_EWM_HPP_INCLUDED
| [
"axel@tty0.ch"
] | axel@tty0.ch |
a4ea6d938a28cd22becd6aae3623c257eec3e68a | 98a009c5df6c9e0f12e296859b6b2358b7246d07 | /Lab3-OOP-Teme/problem5.cpp | ec346ae72fff40932bad8b857b6cacc06a457fbb | [] | no_license | Werstef/Lab-OOP | dd21d27cb14656ee55d600de76bb71398781b0d7 | 99ac04725f1bd942f816b873dd78085c0a46d83b | refs/heads/master | 2020-04-05T18:11:29.399679 | 2019-01-12T12:33:06 | 2019-01-12T12:33:06 | 157,091,811 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,909 | cpp | #include <iostream>
#include <string>
using namespace std;
class Course {
protected:
string name_course;
string name_profesor;
public:
void setNameCourse(string name_course){
this->name_course = name_course;
}
string getNameCourse(){
return this->name_course;
}
void setNameProf(string name_profesor){
this->name_profesor = name_profesor;
}
string getNameProf(){
return this->name_profesor;
}
};
class Student {
public:
static int number_of_instances;
int id;
int group;
class Course course;
Student* next_student = NULL;
Student* prev_student;
Student() {
number_of_instances ++;
id = number_of_instances;
}
Student* createStudent(Student* student) {
Student *new_student = new Student();
new_student->prev_student = student;
return new_student;
}
void display_list(Student* student) {
while (student->next_student != NULL) {
cout << "Student " << student->id << endl;
student = student->next_student;
}
cout << "Student " << student->id << endl;
}
Student* search_student(int id, Student* student) {
while (student->next_student != NULL) {
if (student->id == id) {
cout << endl <<"Student "<<id<<" has been found"<<endl;
return student;
}
student = student->next_student;
}
}
void delete_student(Student* prev_student) {
Student* student_aux = prev_student->next_student;
prev_student->next_student = student_aux->next_student;
student_aux->next_student->prev_student = prev_student;
delete student_aux;
}
void courseStudents(string course, Student* student) {
while (student->next_student != NULL) {
if (student->course.getNameCourse() == course) {
cout << endl << "Student " << student->id << " takes part in the course " << course;
}
student = student->next_student;
}
if (student->course.getNameCourse() == course) {
cout << endl << "Student " << student->id << " takes part in the course " << course;
}
}
~Student(){
number_of_instances --;
}
};
int Student::number_of_instances = 0;
int main () {
Student *student1 = new Student();
student1->course.setNameCourse("OOP");
Student *student_aux = new Student();
student1->next_student = student_aux;
for (int i = 0; i < 10 - 2; i++) {
student_aux->next_student = student1->createStudent(student1);
student_aux = student_aux->next_student;
}
cout << "There are " << Student::number_of_instances << " students in the list" << endl;
student1->display_list(student1);
student_aux = student1->search_student(3, student1);
student_aux->course.setNameCourse("OOP");
student_aux->delete_student(student_aux);
cout << endl << "Student 4 has been deleted" << endl;
cout << endl << "There are " << Student::number_of_instances << " students in the list" << endl;
student1->display_list(student1);
student1->courseStudents("OOP", student1);
return 0;
}
| [
"32906385+Werstef@users.noreply.github.com"
] | 32906385+Werstef@users.noreply.github.com |
f133f8a6601f00632e45f4772d8abae5c03c9c89 | 65231fa1c6bc6d43e3b547109ca0f1fb6c2c62df | /lis.cpp | c7f5c0a8df2025faf140ab5169e3197a5230f42d | [] | no_license | hahavvv/AlgoStudy | 9e30015246bd4db08d75eaa358b6362fcfe708b8 | 8ea59b035ec58420fa1a0e912b869d540f522f9a | refs/heads/master | 2021-05-14T04:14:23.569886 | 2018-01-21T07:39:37 | 2018-01-21T07:39:37 | 116,638,764 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 556 | cpp | #include <iostream>
#include <string.h>
#include <algorithm>
using namespace std;
int C, n;
int arr[500];
int cache[501];
int lis(int start) {
int& ret = cache[start + 1];
if (ret != -1) return ret;
ret = 1;
for (int i = start + 1; i < n; i++) {
if (start == -1 || arr[start] < arr[i]) {
ret = max(ret, lis(i) + 1);
}
}
return ret;
}
int main() {
scanf("%d", &C);
while (C--) {
scanf("%d", &n);
for (int i = 0; i < n; i++) {
scanf("%d", &arr[i]);
}
memset(cache, -1, sizeof(cache));
printf("%d\n", lis(-1) - 1);
}
return 0;
} | [
"dltmddyd922@naver.com"
] | dltmddyd922@naver.com |
4caeb393dd8c98166c5562644ac9ec9570adcec0 | 3295cbe39c186cea255a5f145b13981bdbbc1e80 | /Distributed_Computing/ps6/include/pagerank.hpp | 811bf3c2bf19b76233dc22cd5458ffd126392daf | [] | no_license | ConnorSch/HighPerformanceComputing | 6d640c0dbe1d00088fffffe1cfeda4fe2f60a1ce | ebe2e6946283b6aea8dd8bb2c17ba513626e77e3 | refs/heads/main | 2023-06-25T05:54:20.762887 | 2021-07-27T22:19:15 | 2021-07-27T22:19:15 | 389,725,656 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,061 | hpp | //
// This file is part of the course materials for AMATH483/583 at the University of Washington,
// Spring 2020
//
// Licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License
// https://creativecommons.org/licenses/by-nc-sa/4.0/
//
// Author: Andrew Lumsdaine
//
#ifndef AMATH583_PAGERANK_HPP
#define AMATH583_PAGERANK_HPP
#include "COOMatrix.hpp"
#include "CSCMatrix.hpp"
#include "CSRMatrix.hpp"
#include "Timer.hpp"
#include "Vector.hpp"
#include "amath583.hpp"
#include "amath583IO.hpp"
#include "amath583sparse.hpp"
#include <cassert>
#include <cstddef>
#include <functional>
#include <random>
#include <string>
#include <vector>
template <typename Matrix>
Vector pagerank(const Matrix& P, double alpha, double tol = 1.e-4, size_t max_iters = 64, size_t num_threads = 1) {
Vector x(P.num_rows(), 1.0);
x *= 1.0 / one_norm(x);
for (size_t i = 0; i < max_iters; ++i) {
Vector y = mult(x, P); // Don't parallelize me
y *= alpha;
y += (1.0 - alpha) / static_cast<double>(x.num_rows());
if (two_norm(x - y) < tol * two_norm(x)) {
std::cout << "Converged in " << i << " iterations" << std::endl;
return y;
}
std::swap(x, y);
}
return x;
}
std::vector<size_t> rank(const Vector& x) {
using element = std::pair<double, size_t>;
std::vector<element> rp(x.num_rows());
for (size_t i = 0; i < x.num_rows(); ++i) {
std::get<0>(rp[i]) = x(i);
std::get<1>(rp[i]) = i;
}
std::sort(rp.begin(), rp.end(), [](element& a, element& b) -> bool { return (std::get<0>(a) > std::get<0>(b)); });
std::vector<size_t> r(x.num_rows());
for (size_t i = 0; i < x.num_rows(); ++i) {
r[i] = std::get<1>(rp[i]);
}
return r;
}
std::vector<std::string> read_labels(const std::string& filename) {
std::ifstream input_file(filename);
std::vector<std::string> labels;
std::string string_input;
while (std::getline(input_file, string_input)) {
labels.push_back(string_input);
}
return labels;
}
#endif // AMATH583_PAGERANK_HPP
| [
"schlec2@uw.edu"
] | schlec2@uw.edu |
5f061dbb69a1a268255336513058730b52a9fb19 | abe2c978f240a5508f6ec842c9e7a6ab50d4f205 | /libs/corelib/basefilewizardfactory.cpp | 242a7f4d64d39656eaa2e0a1f455d518d34f94d9 | [] | no_license | kai66673/QWorkNew | 48cdb76edafc36468a9b89a1509db8511f890a42 | de485ae2fff0fa2d0c5274a5c51712896d98c311 | refs/heads/master | 2021-08-26T00:33:25.273835 | 2021-08-25T18:13:13 | 2021-08-25T18:13:13 | 98,813,428 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,991 | cpp | /****************************************************************************
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia. For licensing terms and
** conditions see http://www.qt.io/licensing. For further information
** use the contact form at http://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/
#include "basefilewizardfactory.h"
#include "basefilewizard.h"
#include "ifilewizardextension.h"
#include "mimedatabase.h"
#include "promptoverwritedialog.h"
#include "IDocument.h"
#include "WizardManager.h"
#include "Core.h"
#include <utils/filewizardpage.h>
#include <utils/wizard.h>
#include <utils/qtcassert.h>
#include <utils/stringutils.h>
#include <QDir>
#include <QFileInfo>
#include <QDebug>
#include <QSharedData>
#include <QEventLoop>
#include <QScopedPointer>
#include <QMessageBox>
#include <QWizard>
#include <QIcon>
enum { debugWizard = 0 };
namespace Core {
static int indexOfFile(const GeneratedFiles &f, const QString &path)
{
const int size = f.size();
for (int i = 0; i < size; ++i)
if (f.at(i).path() == path)
return i;
return -1;
}
/*!
\class Core::Internal::WizardEventLoop
\brief The WizardEventLoop class implements a special event
loop that runs a QWizard and terminates if the page changes.
Used by Core::BaseFileWizard to intercept the change from the standard wizard pages
to the extension pages (as the latter require the list of Core::GeneratedFile generated).
Synopsis:
\code
Wizard wizard(parent);
WizardEventLoop::WizardResult wr;
do {
wr = WizardEventLoop::execWizardPage(wizard);
} while (wr == WizardEventLoop::PageChanged);
\endcode
\sa Core::GeneratedFile, Core::BaseFileWizardParameters, Core::BaseFileWizard, Core::StandardFileWizard
*/
class WizardEventLoop : public QEventLoop
{
Q_OBJECT
WizardEventLoop(QObject *parent);
public:
enum WizardResult { Accepted, Rejected , PageChanged };
static WizardResult execWizardPage(QWizard &w);
private slots:
void pageChanged(int);
void accepted();
void rejected();
private:
WizardResult execWizardPageI();
WizardResult m_result;
};
WizardEventLoop::WizardEventLoop(QObject *parent) :
QEventLoop(parent),
m_result(Rejected)
{
}
WizardEventLoop::WizardResult WizardEventLoop::execWizardPage(QWizard &wizard)
{
/* Install ourselves on the wizard. Main trick is here to connect
* to the page changed signal and quit() on it. */
WizardEventLoop *eventLoop = wizard.findChild<WizardEventLoop *>();
if (!eventLoop) {
eventLoop = new WizardEventLoop(&wizard);
connect(&wizard, SIGNAL(currentIdChanged(int)), eventLoop, SLOT(pageChanged(int)));
connect(&wizard, SIGNAL(accepted()), eventLoop, SLOT(accepted()));
connect(&wizard, SIGNAL(rejected()), eventLoop, SLOT(rejected()));
wizard.setWindowFlags(wizard.windowFlags());
wizard.show();
}
const WizardResult result = eventLoop->execWizardPageI();
// Quitting?
if (result != PageChanged)
delete eventLoop;
if (debugWizard)
qDebug() << "WizardEventLoop::runWizard" << wizard.pageIds() << " returns " << result;
return result;
}
WizardEventLoop::WizardResult WizardEventLoop::execWizardPageI()
{
m_result = Rejected;
exec();
return m_result;
}
void WizardEventLoop::pageChanged(int /*page*/)
{
m_result = PageChanged;
quit(); // !
}
void WizardEventLoop::accepted()
{
m_result = Accepted;
quit();
}
void WizardEventLoop::rejected()
{
m_result = Rejected;
quit();
}
/*!
\class Core::BaseFileWizard
\brief The BaseFileWizard class implements a generic wizard for
creating files.
The following abstract functions must be implemented:
\list
\li create(): Called to create the QWizard dialog to be shown.
\li generateFiles(): Generates file content.
\endlist
The behaviour can be further customized by overwriting the virtual function \c postGenerateFiles(),
which is called after generating the files.
\sa Core::GeneratedFile, Core::BaseFileWizardParameters, Core::StandardFileWizard
\sa Core::Internal::WizardEventLoop
*/
void BaseFileWizardFactory::runWizard(const QString &path, QWidget *parent, const QString &platform, const QVariantMap &extraValues)
{
QTC_ASSERT(!path.isEmpty(), return);
QString errorMessage;
// Compile extension pages, purge out unused ones
QList<IFileWizardExtension *> extensionList = WizardManager::allFileWizardExtensions();
WizardPageList allExtensionPages;
for (auto it = extensionList.begin(); it != extensionList.end(); ) {
const WizardPageList extensionPages = (*it)->extensionPages(this);
if (extensionPages.empty()) {
it = extensionList.erase(it);
} else {
allExtensionPages += extensionPages;
++it;
}
}
if (debugWizard)
qDebug() << Q_FUNC_INFO << path << parent << "exs" << extensionList.size() << allExtensionPages.size();
QWizardPage *firstExtensionPage = 0;
if (!allExtensionPages.empty())
firstExtensionPage = allExtensionPages.front();
// Create dialog and run it. Ensure that the dialog is deleted when
// leaving the func, but not before the IFileWizardExtension::process
// has been called
WizardDialogParameters::DialogParameterFlags dialogParameterFlags;
if (flags().testFlag(ForceCapitalLetterForFileName))
dialogParameterFlags |= WizardDialogParameters::ForceCapitalLetterForFileName;
const QScopedPointer<QWizard> wizard(create(parent, WizardDialogParameters(path,
allExtensionPages,
platform,
requiredFeatures(),
dialogParameterFlags,
extraValues)));
QTC_ASSERT(!wizard.isNull(), return);
GeneratedFiles files;
// Run the wizard: Call generate files on switching to the first extension
// page is OR after 'Accepted' if there are no extension pages
while (true) {
const WizardEventLoop::WizardResult wr = WizardEventLoop::execWizardPage(*wizard);
if (wr == WizardEventLoop::Rejected) {
files.clear();
break;
}
const bool accepted = wr == WizardEventLoop::Accepted;
const bool firstExtensionPageHit = wr == WizardEventLoop::PageChanged
&& wizard->page(wizard->currentId()) == firstExtensionPage;
const bool needGenerateFiles = firstExtensionPageHit || (accepted && allExtensionPages.empty());
if (needGenerateFiles) {
QString errorMessage;
files = generateFiles(wizard.data(), &errorMessage);
if (files.empty()) {
QMessageBox::critical(0, tr("File Generation Failure"), errorMessage);
break;
}
}
if (firstExtensionPageHit)
foreach (IFileWizardExtension *ex, extensionList)
ex->firstExtensionPageShown(files, extraValues);
if (accepted)
break;
}
if (files.empty())
return;
// Compile result list and prompt for overwrite
switch (promptOverwrite(&files, &errorMessage)) {
case OverwriteCanceled:
return;
case OverwriteError:
QMessageBox::critical(0, tr("Existing files"), errorMessage);
return;
case OverwriteOk:
break;
}
foreach (IFileWizardExtension *ex, extensionList) {
for (int i = 0; i < files.count(); i++) {
ex->applyCodeStyle(&files[i]);
}
}
// Write
if (!writeFiles(files, &errorMessage)) {
QMessageBox::critical(parent, tr("File Generation Failure"), errorMessage);
return;
}
bool removeOpenProjectAttribute = false;
// Run the extensions
foreach (IFileWizardExtension *ex, extensionList) {
bool remove;
if (!ex->processFiles(files, &remove, &errorMessage)) {
if (!errorMessage.isEmpty())
QMessageBox::critical(parent, tr("File Generation Failure"), errorMessage);
return;
}
removeOpenProjectAttribute |= remove;
}
if (removeOpenProjectAttribute) {
for (int i = 0; i < files.count(); i++) {
if (files[i].attributes() & GeneratedFile::OpenProjectAttribute)
files[i].setAttributes(GeneratedFile::OpenEditorAttribute);
}
}
// Post generation handler
if (!postGenerateFiles(wizard.data(), files, &errorMessage))
if (!errorMessage.isEmpty())
QMessageBox::critical(0, tr("File Generation Failure"), errorMessage);
}
/*!
\fn virtual QWizard *Core::BaseFileWizard::create(QWidget *parent,
const WizardDialogParameters ¶meters) const
Creates the wizard on the \a parent with the \a parameters.
*/
/*!
\fn virtual Core::GeneratedFiles Core::BaseFileWizard::generateFiles(const QWizard *w,
QString *errorMessage) const = 0
Overwrite to query the parameters from the dialog and generate the files.
\note This does not generate physical files, but merely the list of
Core::GeneratedFile.
*/
/*!
Physically writes files.
Re-implement (calling the base implementation) to create files with CustomGeneratorAttribute set.
*/
bool BaseFileWizardFactory::writeFiles(const GeneratedFiles &files, QString *errorMessage)
{
const GeneratedFile::Attributes noWriteAttributes
= GeneratedFile::CustomGeneratorAttribute|GeneratedFile::KeepExistingFileAttribute;
foreach (const GeneratedFile &generatedFile, files)
if (!(generatedFile.attributes() & noWriteAttributes ))
if (!generatedFile.write(errorMessage))
return false;
return true;
}
/*!
Overwrite to perform steps to be done after files are actually created.
The default implementation opens editors with the newly generated files.
*/
bool BaseFileWizardFactory::postGenerateFiles(const QWizard *, const GeneratedFiles &l, QString *errorMessage)
{
return BaseFileWizardFactory::postGenerateOpenEditors(l, errorMessage);
}
/*!
Opens the editors for the files whose attribute is set accordingly.
*/
bool BaseFileWizardFactory::postGenerateOpenEditors(const GeneratedFiles &l, QString *errorMessage)
{
foreach (const GeneratedFile &file, l) {
if (file.attributes() & GeneratedFile::OpenEditorAttribute) {
if ( !DocumentManager::getInstance()->openDocument(file.path(), 0, errorMessage) ) {
if (errorMessage)
*errorMessage = tr("Failed to open an editor for \"%1\".").arg(QDir::toNativeSeparators(file.path()));
return false;
}
}
}
return true;
}
/*!
Performs an overwrite check on a set of \a files. Checks if the file exists and
can be overwritten at all, and then prompts the user with a summary.
*/
BaseFileWizardFactory::OverwriteResult BaseFileWizardFactory::promptOverwrite(GeneratedFiles *files,
QString *errorMessage) const
{
if (debugWizard)
qDebug() << Q_FUNC_INFO << files;
QStringList existingFiles;
bool oddStuffFound = false;
static const QString readOnlyMsg = tr("[read only]");
static const QString directoryMsg = tr("[folder]");
static const QString symLinkMsg = tr("[symbolic link]");
foreach (const GeneratedFile &file, *files) {
const QFileInfo fi(file.path());
if (fi.exists())
existingFiles.append(file.path());
}
if (existingFiles.isEmpty())
return OverwriteOk;
// Before prompting to overwrite existing files, loop over files and check
// if there is anything blocking overwriting them (like them being links or folders).
// Format a file list message as ( "<file1> [readonly], <file2> [folder]").
const QString commonExistingPath = Utils::commonPath(existingFiles);
QString fileNamesMsgPart;
foreach (const QString &fileName, existingFiles) {
const QFileInfo fi(fileName);
if (fi.exists()) {
if (!fileNamesMsgPart.isEmpty())
fileNamesMsgPart += QLatin1String(", ");
fileNamesMsgPart += QDir::toNativeSeparators(fileName.mid(commonExistingPath.size() + 1));
do {
if (fi.isDir()) {
oddStuffFound = true;
fileNamesMsgPart += QLatin1Char(' ') + directoryMsg;
break;
}
if (fi.isSymLink()) {
oddStuffFound = true;
fileNamesMsgPart += QLatin1Char(' ') + symLinkMsg;
break;
}
if (!fi.isWritable()) {
oddStuffFound = true;
fileNamesMsgPart += QLatin1Char(' ') + readOnlyMsg;
}
} while (false);
}
}
if (oddStuffFound) {
*errorMessage = tr("The project directory %1 contains files which cannot be overwritten:\n%2.")
.arg(QDir::toNativeSeparators(commonExistingPath)).arg(fileNamesMsgPart);
return OverwriteError;
}
// Prompt to overwrite existing files.
PromptOverwriteDialog overwriteDialog;
// Scripts cannot handle overwrite
overwriteDialog.setFiles(existingFiles);
foreach (const GeneratedFile &file, *files)
if (file.attributes() & GeneratedFile::CustomGeneratorAttribute)
overwriteDialog.setFileEnabled(file.path(), false);
if (overwriteDialog.exec() != QDialog::Accepted)
return OverwriteCanceled;
const QStringList existingFilesToKeep = overwriteDialog.uncheckedFiles();
if (existingFilesToKeep.size() == files->size()) // All exist & all unchecked->Cancel.
return OverwriteCanceled;
// Set 'keep' attribute in files
foreach (const QString &keepFile, existingFilesToKeep) {
const int i = indexOfFile(*files, keepFile);
QTC_ASSERT(i != -1, return OverwriteCanceled);
GeneratedFile &file = (*files)[i];
file.setAttributes(file.attributes() | GeneratedFile::KeepExistingFileAttribute);
}
return OverwriteOk;
}
/*!
Constructs a file name, adding the \a extension unless \a baseName already has
one.
*/
QString BaseFileWizardFactory::buildFileName(const QString &path,
const QString &baseName,
const QString &extension)
{
QString rc = path;
if (!rc.isEmpty() && !rc.endsWith(QDir::separator()))
rc += QDir::separator();
rc += baseName;
// Add extension unless user specified something else
const QChar dot = QLatin1Char('.');
if (!extension.isEmpty() && !baseName.contains(dot)) {
if (!extension.startsWith(dot))
rc += dot;
rc += extension;
}
if (debugWizard)
qDebug() << Q_FUNC_INFO << rc;
return rc;
}
/*!
Returns the preferred suffix for \a mimeType.
*/
QString BaseFileWizardFactory::preferredSuffix(const QString &mimeType)
{
const QString rc = Core::Storage::mainWindow()->mimeDatabase()->preferredSuffixByType(mimeType);
if (rc.isEmpty())
qWarning("%s: WARNING: Unable to find a preferred suffix for %s.",
Q_FUNC_INFO, mimeType.toUtf8().constData());
return rc;
}
/*!
\class Core::StandardFileWizard
\brief The StandardFileWizard class is a convenience class for
creating one file.
It uses Utils::FileWizardDialog and introduces a new virtual to generate the
files from path and name.
\sa Core::GeneratedFile, Core::BaseFileWizardParameters, Core::BaseFileWizard
\sa Core::Internal::WizardEventLoop
*/
} // namespace Core
#include "basefilewizardfactory.moc"
| [
"kudryavtsev@teleformis.ru"
] | kudryavtsev@teleformis.ru |
bd69530954ee73b84b74e9629d68d1db7e09cd8c | af3772fedc1bfe4605de64b11522cb5c8b2b2351 | /src/example/ServiceD.cpp | e950e8f7777a1eaf7772f1add5ac354de337b791 | [
"Apache-2.0"
] | permissive | jamesjharper/Lok8er | 5343d8216b636a0df2eff887ab10bdf436f30b9b | df3ae81b53cdee7f9796562d99e22ed2f8ba11e8 | refs/heads/master | 2020-07-30T13:14:31.848987 | 2016-11-15T03:05:58 | 2016-11-15T03:05:58 | 73,629,402 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 132 | cpp | #include "stdafx.h"
#include "ServiceD.h"
ServiceD::ServiceD(INJECTED_COMPONENT<ServiceC> serviceC) :
_serviceC(serviceC)
{
}
| [
"James.Harper@voicepoint.ch"
] | James.Harper@voicepoint.ch |
3278fad5ec3dcc61ee65d0605c305f474a250660 | 113069a5a330b6c635165f6b30317c4d5e10787d | /source/level/systems/building_rendering_system.h | ae4792df31e11642252f435cc510768d24736b0d | [] | no_license | hilkojj/cphere | de56443621d132088a01a8791e7342cbc3f9f8e8 | e7a1e96b48b128732b8813945de2f46835cf172a | refs/heads/master | 2020-05-17T20:20:35.880863 | 2019-11-09T12:11:37 | 2019-11-09T12:11:37 | 183,942,303 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,242 | h | #ifndef GAME_BUILDING_RENDERING_H
#define GAME_BUILDING_RENDERING_H
#include <optional>
#include <graphics/orthographic_camera.h>
#include "../level.h"
#include "graphics/texture.h"
#include "../buildings/building.h"
#include "buildings_system.h"
struct VariantInstances
{
int vertDataId = -1;
VertData transforms = VertData(BUILDING_TRANSFORM_VERT_ATTRS, std::vector<float>());
std::vector<Building>
buildings,
toAdd,
toRemove;
int justPlacedId = 0;
};
class BuildingRenderingSystem : public LevelSystem
{
public:
inline static BuildingRenderingSystem *active = NULL;
ShaderProgram defaultShader, ghostShader, treeShader;
std::map<Island*, std::vector<BuildingMesh*>> buildingMeshes;
std::map<Island*, std::map<BuildingMeshVariant*, VariantInstances>> variantInstances;
BuildingRenderingSystem(Level *lvl)
: defaultShader(
ShaderProgram::fromFiles("DefaultBuildingShader", "assets/shaders/building.vert", "assets/shaders/building.frag")
),
ghostShader(
ShaderProgram::fromFiles("BuildingGhostShader", "assets/shaders/building_ghost.vert", "assets/shaders/building_ghost.frag")
),
treeShader(
ShaderProgram::fromFiles("TreeShader", "assets/shaders/tree.vert", "assets/shaders/tree.frag")
)
{
active = this;
BuildingsSystem::active->onPlaced.emplace_back([&](Building b) {
if (!b->renderBuilding) return;
RenderBuilding &rb = b->renderBuilding.value();
std::cout << "Add building to instanced rendering on next render...\n";
auto &islMeshes = buildingMeshes[b->isl];
if (std::find(islMeshes.begin(), islMeshes.end(), rb.buildingMesh) == islMeshes.end())
islMeshes.push_back(rb.buildingMesh);
auto &var = rb.buildingMesh->variants[rb.variant];
variantInstances[b->isl][&var].toAdd.push_back(b);
});
BuildingsSystem::active->onDestroyed.emplace_back([&](Building b) {
if (!b->renderBuilding) return;
std::cout << "bye\n";
RenderBuilding &rb = b->renderBuilding.value();
if (rb.instanceIndex == -1) return;
auto &var = rb.buildingMesh->variants[rb.variant];
variantInstances[b->isl][&var].toRemove.push_back(b);
});
}
void update(double deltaTime, Level *lvl) override
{}
void render(double deltaTime, Level *lvl, vec3 &sunDir)
{
for (Island *isl : lvl->earth.islands)
{
if (!isl->isInView) continue;
for (auto &[var, instances] : variantInstances[isl])
{
ShaderProgram *shader = shaderForVariant(var);
shader->use();
auto vertBuffer = var->lodMeshes[0]->vertBuffer;
auto nrToAdd = instances.toAdd.size(), nrToRemove = instances.toRemove.size();
if (nrToAdd || nrToRemove)
{
if (instances.vertDataId != -1)
vertBuffer->deletePerInstanceData(instances.vertDataId);
for (auto &b : instances.toRemove)
{
instances.transforms.setMat<mat4>(
instances.transforms.getMat<mat4>(instances.buildings.size() - 1, 0),
b->renderBuilding->instanceIndex, 0
);
instances.transforms.setFloat(
instances.transforms.getFloat(instances.buildings.size() - 1, 16),
b->renderBuilding->instanceIndex, 16
);
instances.transforms.removeVertices(1);
// remove instance from list:
instances.buildings.erase(std::remove(instances.buildings.begin(), instances.buildings.end(), b), instances.buildings.end());
}
for (auto &b : instances.toAdd)
{
b->renderBuilding->instanceIndex = instances.buildings.size();
instances.transforms.addVertices(1);
instances.transforms.setMat<mat4>(b->transform, instances.buildings.size(), 0);
instances.transforms.setFloat(mu::random(), instances.buildings.size(), 16);
instances.justPlacedId = max<int>(0, instances.buildings.size() - 3);
instances.buildings.push_back(b);
}
instances.vertDataId = vertBuffer->uploadPerInstanceData(instances.transforms);
instances.toAdd.clear();
instances.toRemove.clear();
std::cout << instances.buildings.size() << "\n";
}
glUniformMatrix4fv(shader->location("view"), 1, GL_FALSE, &lvl->cam->combined[0][0]);
glUniform3f(shader->location("sunDir"), sunDir.x, sunDir.y, sunDir.z);
glUniform1f(shader->location("time"), lvl->time);
setJustPlacedUniforms(shader, instances, lvl);
vertBuffer->usePerInstanceData(instances.vertDataId);
var->texture->bind(0);
glUniform1i(shader->location("buildingTexture"), 0);
var->lodMeshes[0]->renderInstances(instances.buildings.size());
}
}
}
ShaderProgram *shaderForVariant(const BuildingMeshVariant *var)
{
auto shader = &defaultShader;
switch (var->buildingMesh->shader)
{
case TREE:
shader = &treeShader;
break;
}
return shader;
}
void setJustPlacedUniforms(ShaderProgram *shader, VariantInstances &instances, Level *lvl)
{
glUniform1i(shader->location("justPlacedId"), instances.justPlacedId);
vec4 timeSincePlacing = vec4();
for (int i = 0; i < 4 && instances.buildings.size() > instances.justPlacedId + i; i++)
{
timeSincePlacing[i] = lvl->time - instances.buildings[instances.justPlacedId + i]->placedTime;
}
glUniform4f(shader->location("timeSincePlacing"), timeSincePlacing.r, timeSincePlacing.g, timeSincePlacing.b, timeSincePlacing.a);
}
void renderShadows(Level *lvl, OrthographicCamera *sunCam)
{
for (Island *isl : lvl->earth.islands)
{
if (!isl->isInView) continue;
for (auto &[var, instances] : variantInstances[isl])
{
if (instances.vertDataId == -1) continue;
ShaderProgram *shader = shaderForVariant(var);
shader->use();
glUniformMatrix4fv(shader->location("view"), 1, GL_FALSE, &sunCam->combined[0][0]);
auto vertBuffer = var->lodMeshes[0]->vertBuffer;
setJustPlacedUniforms(shader, instances, lvl);
vertBuffer->usePerInstanceData(instances.vertDataId);
var->texture->bind(0);
glUniform1i(shader->location("buildingTexture"), 0);
var->lodMeshes[0]->renderInstances(instances.buildings.size());
}
}
}
void renderGhost(Level *lvl, const Building &ghostBuilding, const vec3 &sunDir, const bool &blocked)
{
if (!ghostBuilding->renderBuilding || !ghostBuilding->isl) return;
ghostShader.use();
mat4 mvp = lvl->cam->combined * ghostBuilding->transform;
vec3 newSunDir = vec4(sunDir, 0) * ghostBuilding->transform;
glUniform3f(ghostShader.location("sunDir"), newSunDir.x, newSunDir.y, newSunDir.z);
glUniformMatrix4fv(ghostShader.location("view"), 1, GL_FALSE, &mvp[0][0]);
glUniform1f(ghostShader.location("time"), lvl->time);
glUniform1i(ghostShader.location("blocked"), blocked);
auto &var = ghostBuilding->renderBuilding->buildingMesh->variants[ghostBuilding->renderBuilding->variant];
var.texture->bind(0, ghostShader, "buildingTexture");
var.lodMeshes[0]->render();
}
};
#endif
| [
"hilkojj@outlook.com"
] | hilkojj@outlook.com |
890f5ed19d51a661cee21831ea5272129da4c80a | 8c9568133d07c324a4e464efe362c240d9000388 | /Populating Next Right Pointers in Each Node.cpp | 4c047f4d4612939888e00ddce68826a1a925d94a | [] | no_license | Vikalp19041999/LeetCode-solutions | bc3f443243ca19d389b92331dfc83d5304282bc7 | fc07ea77e929ca35c68312e36c9543705cdad002 | refs/heads/main | 2023-08-15T13:58:18.829183 | 2021-09-20T15:56:51 | 2021-09-20T15:56:51 | 371,249,286 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,165 | cpp | /*
// Definition for a Node.
class Node {
public:
int val;
Node* left;
Node* right;
Node* next;
Node() : val(0), left(NULL), right(NULL), next(NULL) {}
Node(int _val) : val(_val), left(NULL), right(NULL), next(NULL) {}
Node(int _val, Node* _left, Node* _right, Node* _next)
: val(_val), left(_left), right(_right), next(_next) {}
};
*/
class Solution {
public:
Node* connect(Node* root) {
if(root == NULL) {
return NULL;
}
queue<Node*> q;
q.push(root);
while(!q.empty()) {
int size = q.size();
for(int i=0 ; i<size ; i++){
Node* item = q.front();
if(size-1 == i) {
item -> next = NULL;
}
q.pop();
if(size - 1 != i) {
item -> next = q.front();
}
if(item -> left != NULL) {
q.push(item -> left);
}
if(item -> right != NULL) {
q.push(item -> right);
}
}
}
return root;
}
}; | [
"vicks548@gmail.com"
] | vicks548@gmail.com |
691ec39e7fd029002f303761510e7c1388f6e202 | 7b6e927d42ad155d8b827c345c2b2dffa7bd003b | /library/view/widget/widget.cpp | 344f2554f62ab6b10a7eb821ad500bb078cb3524 | [] | no_license | wang70937/x-framework | d6b06a2910728bdfc219c9d1d166a71ce2c8233c | ccd772cfc28e724382800a30101e1f8c0e6bcde8 | refs/heads/master | 2021-01-24T09:18:01.883650 | 2016-09-29T01:47:20 | 2016-09-29T01:47:20 | 69,445,984 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 41,138 | cpp |
#include "widget.h"
#include "base/logging.h"
#include "base/message_loop.h"
#include "base/utf_string_conversions.h"
#include "ui_base/compositor/compositor.h"
#include "ui_base/compositor/layer.h"
#include "ui_base/l10n/l10n_font_util.h"
#include "ui_base/resource/resource_bundle.h"
#include "default_theme_provider.h"
#include "native_widget.h"
#include "native_widget_private.h"
#include "root_view.h"
#include "tooltip_manager.h"
#include "view/controls/menu/menu_controller.h"
#include "view/focus/focus_manager.h"
#include "view/focus/focus_manager_factory.h"
#include "view/focus/widget_focus_manager.h"
#include "view/focus/view_storage.h"
#include "view/ime/input_method_win.h"
#include "view/view_delegate.h"
#include "view/window/custom_frame_view.h"
#include "widget_delegate.h"
namespace
{
// Set to true if a pure Views implementation is preferred
bool use_pure_views = false;
// True to enable debug paint that indicates where to be painted.
bool debug_paint = false;
}
namespace view
{
// This class is used to keep track of the event a Widget is processing, and
// restore any previously active event afterwards.
class ScopedEvent
{
public:
ScopedEvent(Widget* widget, const Event& event)
: widget_(widget), event_(&event)
{
widget->event_stack_.push(this);
}
~ScopedEvent()
{
if(widget_)
{
widget_->event_stack_.pop();
}
}
void reset()
{
widget_ = NULL;
}
const Event* event()
{
return event_;
}
private:
Widget* widget_;
const Event* event_;
DISALLOW_COPY_AND_ASSIGN(ScopedEvent);
};
// A default implementation of WidgetDelegate, used by Widget when no
// WidgetDelegate is supplied.
class DefaultWidgetDelegate : public WidgetDelegate
{
public:
DefaultWidgetDelegate(Widget* widget, const Widget::InitParams& params)
: widget_(widget),
can_activate_(params.type != Widget::InitParams::TYPE_POPUP) {}
virtual ~DefaultWidgetDelegate() {}
// Overridden from WidgetDelegate:
virtual void DeleteDelegate()
{
delete this;
}
virtual Widget* GetWidget()
{
return widget_;
}
virtual const Widget* GetWidget() const
{
return widget_;
}
virtual bool CanActivate() const
{
return can_activate_;
}
private:
Widget* widget_;
bool can_activate_;
DISALLOW_COPY_AND_ASSIGN(DefaultWidgetDelegate);
};
////////////////////////////////////////////////////////////////////////////////
// Widget, InitParams:
Widget::InitParams::InitParams()
: type(TYPE_WINDOW),
delegate(NULL),
child(false),
transient(false),
transparent(false),
accept_events(true),
can_activate(true),
keep_on_top(false),
ownership(NATIVE_WIDGET_OWNS_WIDGET),
mirror_origin_in_rtl(false),
has_dropshadow(false),
show_state(ui::SHOW_STATE_DEFAULT),
double_buffer(false),
parent(NULL),
parent_widget(NULL),
native_widget(NULL),
top_level(false) {}
Widget::InitParams::InitParams(Type type)
: type(type),
delegate(NULL),
child(type == TYPE_CONTROL),
transient(type==TYPE_POPUP || type==TYPE_MENU),
transparent(false),
accept_events(true),
can_activate(type!=TYPE_POPUP && type!=TYPE_MENU),
keep_on_top(type == TYPE_MENU),
ownership(NATIVE_WIDGET_OWNS_WIDGET),
mirror_origin_in_rtl(false),
has_dropshadow(false),
show_state(ui::SHOW_STATE_DEFAULT),
double_buffer(false),
parent(NULL),
parent_widget(NULL),
native_widget(NULL),
top_level(false) {}
////////////////////////////////////////////////////////////////////////////////
// Widget, public:
// static
Widget::InitParams Widget::WindowInitParams()
{
return InitParams(InitParams::TYPE_WINDOW);
}
Widget::Widget()
: is_mouse_button_pressed_(false),
last_mouse_event_was_move_(false),
native_widget_(NULL),
widget_delegate_(NULL),
non_client_view_(NULL),
dragged_view_(NULL),
event_stack_(),
ownership_(InitParams::NATIVE_WIDGET_OWNS_WIDGET),
is_secondary_widget_(true),
frame_type_(FRAME_TYPE_DEFAULT),
disable_inactive_rendering_(false),
widget_closed_(false),
saved_show_state_(ui::SHOW_STATE_DEFAULT),
minimum_size_(100, 100),
focus_on_creation_(true),
is_top_level_(false),
native_widget_initialized_(false) {}
Widget::~Widget()
{
while(!event_stack_.empty())
{
event_stack_.top()->reset();
event_stack_.pop();
}
DestroyRootView();
if(ownership_ == InitParams::WIDGET_OWNS_NATIVE_WIDGET)
{
delete native_widget_;
}
}
// static
Widget* Widget::CreateWindow(WidgetDelegate* delegate)
{
return CreateWindowWithParentAndBounds(delegate, NULL, gfx::Rect());
}
// static
Widget* Widget::CreateWindowWithParent(WidgetDelegate* delegate, HWND parent)
{
return CreateWindowWithParentAndBounds(delegate, parent, gfx::Rect());
}
// static
Widget* Widget::CreateWindowWithBounds(WidgetDelegate* delegate,
const gfx::Rect& bounds)
{
return CreateWindowWithParentAndBounds(delegate, NULL, bounds);
}
// static
Widget* Widget::CreateWindowWithParentAndBounds(WidgetDelegate* delegate,
HWND parent, const gfx::Rect& bounds)
{
Widget* widget = new Widget;
Widget::InitParams params;
params.delegate = delegate;
params.parent = parent;
params.bounds = bounds;
widget->Init(params);
return widget;
}
// static
void Widget::SetPureViews(bool pure)
{
use_pure_views = pure;
}
// static
bool Widget::IsPureViews()
{
return use_pure_views;
}
// static
Widget* Widget::GetWidgetForNativeView(HWND native_view)
{
internal::NativeWidgetPrivate* native_widget =
internal::NativeWidgetPrivate::GetNativeWidgetForNativeView(native_view);
return native_widget ? native_widget->GetWidget() : NULL;
}
// static
Widget* Widget::GetWidgetForNativeWindow(HWND native_window)
{
internal::NativeWidgetPrivate* native_widget =
internal::NativeWidgetPrivate::GetNativeWidgetForNativeWindow(
native_window);
return native_widget ? native_widget->GetWidget() : NULL;
}
// static
Widget* Widget::GetTopLevelWidgetForNativeView(HWND native_view)
{
internal::NativeWidgetPrivate* native_widget =
internal::NativeWidgetPrivate::GetTopLevelNativeWidget(native_view);
return native_widget ? native_widget->GetWidget() : NULL;
}
// static
void Widget::GetAllChildWidgets(HWND native_view, Widgets* children)
{
internal::NativeWidgetPrivate::GetAllChildWidgets(native_view, children);
}
// static
void Widget::ReparentNativeView(HWND native_view, HWND new_parent)
{
internal::NativeWidgetPrivate::ReparentNativeView(native_view, new_parent);
}
// static
int Widget::GetLocalizedContentsWidth(int col_resource_id)
{
return ui::GetLocalizedContentsWidthForFont(col_resource_id,
ui::ResourceBundle::GetSharedInstance().GetFont(ui::ResourceBundle::BaseFont));
}
// static
int Widget::GetLocalizedContentsHeight(int row_resource_id)
{
return ui::GetLocalizedContentsHeightForFont(row_resource_id,
ui::ResourceBundle::GetSharedInstance().GetFont(ui::ResourceBundle::BaseFont));
}
// static
gfx::Size Widget::GetLocalizedContentsSize(int col_resource_id, int row_resource_id)
{
return gfx::Size(GetLocalizedContentsWidth(col_resource_id),
GetLocalizedContentsHeight(row_resource_id));
}
// static
void Widget::SetDebugPaintEnabled(bool enabled)
{
debug_paint = enabled;
}
// static
bool Widget::IsDebugPaintEnabled()
{
return debug_paint;
}
void Widget::Init(const InitParams& params)
{
is_top_level_ = params.top_level ||
(!params.child &&
params.type!=InitParams::TYPE_CONTROL &&
params.type!=InitParams::TYPE_TOOLTIP);
widget_delegate_ = params.delegate ?
params.delegate : new DefaultWidgetDelegate(this, params);
ownership_ = params.ownership;
native_widget_ = params.native_widget ?
params.native_widget->AsNativeWidgetPrivate() :
internal::NativeWidgetPrivate::CreateNativeWidget(this);
GetRootView();
default_theme_provider_.reset(new DefaultThemeProvider);
if(params.type == InitParams::TYPE_MENU)
{
is_mouse_button_pressed_ =
internal::NativeWidgetPrivate::IsMouseButtonDown();
}
native_widget_->InitNativeWidget(params);
if(params.type == InitParams::TYPE_WINDOW)
{
non_client_view_ = new NonClientView;
non_client_view_->SetFrameView(CreateNonClientFrameView());
// Create the ClientView, add it to the NonClientView and add the
// NonClientView to the RootView. This will cause everything to be parented.
non_client_view_->set_client_view(widget_delegate_->CreateClientView(this));
SetContentsView(non_client_view_);
SetInitialBounds(params.bounds);
if(params.show_state == ui::SHOW_STATE_MAXIMIZED)
{
Maximize();
}
else if(params.show_state == ui::SHOW_STATE_MINIMIZED)
{
Minimize();
}
UpdateWindowTitle();
}
native_widget_initialized_ = true;
}
// Unconverted methods (see header) --------------------------------------------
HWND Widget::GetNativeView() const
{
return native_widget_->GetNativeView();
}
HWND Widget::GetNativeWindow() const
{
return native_widget_->GetNativeWindow();
}
void Widget::AddObserver(Widget::Observer* observer)
{
observers_.AddObserver(observer);
}
void Widget::RemoveObserver(Widget::Observer* observer)
{
observers_.RemoveObserver(observer);
}
bool Widget::HasObserver(Widget::Observer* observer)
{
return observers_.HasObserver(observer);
}
bool Widget::GetAccelerator(int cmd_id, ui::Accelerator* accelerator)
{
return false;
}
void Widget::ViewHierarchyChanged(bool is_add, View* parent, View* child)
{
if(!is_add)
{
if(child == dragged_view_)
{
dragged_view_ = NULL;
}
FocusManager* focus_manager = GetFocusManager();
if(focus_manager)
{
focus_manager->ViewRemoved(child);
}
ViewStorage::GetInstance()->ViewRemoved(child);
native_widget_->ViewRemoved(child);
}
}
void Widget::NotifyNativeViewHierarchyChanged(bool attached, HWND native_view)
{
if(!attached)
{
FocusManager* focus_manager = GetFocusManager();
// We are being removed from a window hierarchy. Treat this as
// the root_view_ being removed.
if(focus_manager)
{
focus_manager->ViewRemoved(root_view_.get());
}
}
root_view_->NotifyNativeViewHierarchyChanged(attached, native_view);
}
// Converted methods (see header) ----------------------------------------------
Widget* Widget::GetTopLevelWidget()
{
return const_cast<Widget*>(
const_cast<const Widget*>(this)->GetTopLevelWidget());
}
const Widget* Widget::GetTopLevelWidget() const
{
// GetTopLevelNativeWidget doesn't work during destruction because
// property is gone after gobject gets deleted. Short circuit here
// for toplevel so that InputMethod can remove itself from
// focus manager.
if(is_top_level())
{
return this;
}
return native_widget_->GetTopLevelWidget();
}
void Widget::SetContentsView(View* view)
{
root_view_->SetContentsView(view);
}
View* Widget::GetContentsView()
{
return root_view_->GetContentsView();
}
gfx::Rect Widget::GetWindowScreenBounds() const
{
return native_widget_->GetWindowScreenBounds();
}
gfx::Rect Widget::GetClientAreaScreenBounds() const
{
return native_widget_->GetClientAreaScreenBounds();
}
gfx::Rect Widget::GetRestoredBounds() const
{
return native_widget_->GetRestoredBounds();
}
void Widget::SetBounds(const gfx::Rect& bounds)
{
native_widget_->SetBounds(bounds);
}
void Widget::SetSize(const gfx::Size& size)
{
native_widget_->SetSize(size);
}
void Widget::SetBoundsConstrained(const gfx::Rect& bounds, Widget* other_widget)
{
native_widget_->SetBoundsConstrained(bounds, other_widget);
}
void Widget::MoveAboveWidget(Widget* widget)
{
native_widget_->MoveAbove(widget->GetNativeView());
}
void Widget::MoveAbove(HWND native_view)
{
native_widget_->MoveAbove(native_view);
}
void Widget::MoveToTop()
{
native_widget_->MoveToTop();
}
void Widget::SetShape(HRGN shape)
{
native_widget_->SetShape(shape);
}
void Widget::Close()
{
if(widget_closed_)
{
// It appears we can hit this code path if you close a modal dialog then
// close the last browser before the destructor is hit, which triggers
// invoking Close again.
return;
}
bool can_close = true;
if(non_client_view_)
{
can_close = non_client_view_->CanClose();
}
if(can_close)
{
SaveWindowPlacement();
// During tear-down the top-level focus manager becomes unavailable to
// GTK tabbed panes and their children, so normal deregistration via
// |FormManager::ViewRemoved()| calls are fouled. We clear focus here
// to avoid these redundant steps and to avoid accessing deleted views
// that may have been in focus.
if(is_top_level() && focus_manager_.get())
{
focus_manager_->SetFocusedView(NULL);
}
native_widget_->Close();
widget_closed_ = true;
}
}
void Widget::CloseNow()
{
native_widget_->CloseNow();
}
void Widget::EnableClose(bool enable)
{
if(non_client_view_)
{
non_client_view_->EnableClose(enable);
}
native_widget_->EnableClose(enable);
}
void Widget::Show()
{
if(non_client_view_)
{
if(saved_show_state_==ui::SHOW_STATE_MAXIMIZED &&
!initial_restored_bounds_.IsEmpty())
{
native_widget_->ShowMaximizedWithBounds(initial_restored_bounds_);
}
else
{
native_widget_->ShowWithWindowState(saved_show_state_);
}
// |saved_show_state_| only applies the first time the window is shown.
// If we don't reset the value the window may be shown maximized every time
// it is subsequently shown after being hidden.
saved_show_state_ = ui::SHOW_STATE_NORMAL;
}
else
{
native_widget_->Show();
}
}
void Widget::Hide()
{
native_widget_->Hide();
}
void Widget::ShowInactive()
{
// If this gets called with saved_show_state_ == ui::SHOW_STATE_MAXIMIZED,
// call SetBounds()with the restored bounds to set the correct size. This
// normally should not happen, but if it does we should avoid showing unsized
// windows.
if(saved_show_state_==ui::SHOW_STATE_MAXIMIZED &&
!initial_restored_bounds_.IsEmpty())
{
SetBounds(initial_restored_bounds_);
saved_show_state_ = ui::SHOW_STATE_NORMAL;
}
native_widget_->ShowWithWindowState(ui::SHOW_STATE_INACTIVE);
}
void Widget::Activate()
{
native_widget_->Activate();
}
void Widget::Deactivate()
{
native_widget_->Deactivate();
}
bool Widget::IsActive() const
{
return native_widget_->IsActive();
}
void Widget::DisableInactiveRendering()
{
disable_inactive_rendering_ = true;
non_client_view_->DisableInactiveRendering(disable_inactive_rendering_);
}
void Widget::SetAlwaysOnTop(bool on_top)
{
native_widget_->SetAlwaysOnTop(on_top);
}
void Widget::Maximize()
{
native_widget_->Maximize();
}
void Widget::Minimize()
{
native_widget_->Minimize();
}
void Widget::Restore()
{
native_widget_->Restore();
}
bool Widget::IsMaximized() const
{
return native_widget_->IsMaximized();
}
bool Widget::IsMinimized() const
{
return native_widget_->IsMinimized();
}
void Widget::SetFullscreen(bool fullscreen)
{
native_widget_->SetFullscreen(fullscreen);
}
bool Widget::IsFullscreen() const
{
return native_widget_->IsFullscreen();
}
void Widget::SetOpacity(unsigned char opacity)
{
native_widget_->SetOpacity(opacity);
}
void Widget::SetUseDragFrame(bool use_drag_frame)
{
native_widget_->SetUseDragFrame(use_drag_frame);
}
View* Widget::GetRootView()
{
if(!root_view_.get())
{
// First time the root view is being asked for, create it now.
root_view_.reset(CreateRootView());
}
return root_view_.get();
}
const View* Widget::GetRootView() const
{
return root_view_.get();
}
bool Widget::IsVisible() const
{
return native_widget_->IsVisible();
}
bool Widget::IsAccessibleWidget() const
{
return native_widget_->IsAccessibleWidget();
}
ui::ThemeProvider* Widget::GetThemeProvider() const
{
const Widget* root_widget = GetTopLevelWidget();
if(root_widget && root_widget!=this)
{
// Attempt to get the theme provider, and fall back to the default theme
// provider if not found.
ui::ThemeProvider* provider = root_widget->GetThemeProvider();
if(provider)
{
return provider;
}
provider = root_widget->default_theme_provider_.get();
if(provider)
{
return provider;
}
}
return default_theme_provider_.get();
}
FocusManager* Widget::GetFocusManager()
{
Widget* toplevel_widget = GetTopLevelWidget();
return toplevel_widget ? toplevel_widget->focus_manager_.get() : NULL;
}
InputMethodWin* Widget::GetInputMethod()
{
if(is_top_level())
{
if(!input_method_.get())
{
input_method_.reset(native_widget_->CreateInputMethod());
}
return input_method_.get();
}
else
{
Widget* toplevel = GetTopLevelWidget();
return toplevel ? toplevel->GetInputMethod() : NULL;
}
}
void Widget::RunShellDrag(View* view, const ui::OSExchangeData& data, int operation)
{
dragged_view_ = view;
native_widget_->RunShellDrag(view, data, operation);
// If the view is removed during the drag operation, dragged_view_ is set to
// NULL.
if(view && dragged_view_==view)
{
dragged_view_ = NULL;
view->OnDragDone();
}
}
void Widget::SchedulePaintInRect(const gfx::Rect& rect)
{
native_widget_->SchedulePaintInRect(rect);
}
void Widget::SetCursor(HCURSOR cursor)
{
native_widget_->SetCursor(cursor);
}
void Widget::ResetLastMouseMoveFlag()
{
last_mouse_event_was_move_ = false;
}
void Widget::SetNativeWindowProperty(const char* name, void* value)
{
native_widget_->SetNativeWindowProperty(name, value);
}
void* Widget::GetNativeWindowProperty(const char* name) const
{
return native_widget_->GetNativeWindowProperty(name);
}
void Widget::UpdateWindowTitle()
{
if(!non_client_view_)
{
return;
}
// If the non-client view is rendering its own title, it'll need to relayout
// now.
non_client_view_->Layout();
// Update the native frame's text. We do this regardless of whether or not
// the native frame is being used, since this also updates the taskbar, etc.
string16 window_title;
if(native_widget_->IsScreenReaderActive())
{
window_title = WideToUTF16(widget_delegate_->GetAccessibleWindowTitle());
}
else
{
window_title = WideToUTF16(widget_delegate_->GetWindowTitle());
}
base::i18n::AdjustStringForLocaleDirection(&window_title);
native_widget_->SetWindowTitle(UTF16ToWide(window_title));
}
void Widget::UpdateWindowIcon()
{
if(non_client_view_)
{
non_client_view_->UpdateWindowIcon();
}
native_widget_->SetWindowIcons(widget_delegate_->GetWindowIcon(),
widget_delegate_->GetWindowAppIcon());
}
FocusTraversable* Widget::GetFocusTraversable()
{
return static_cast<internal::RootView*>(root_view_.get());
}
void Widget::ThemeChanged()
{
root_view_->ThemeChanged();
}
void Widget::LocaleChanged()
{
root_view_->LocaleChanged();
}
void Widget::SetFocusTraversableParent(FocusTraversable* parent)
{
root_view_->SetFocusTraversableParent(parent);
}
void Widget::SetFocusTraversableParentView(View* parent_view)
{
root_view_->SetFocusTraversableParentView(parent_view);
}
void Widget::ClearNativeFocus()
{
native_widget_->ClearNativeFocus();
}
void Widget::FocusNativeView(HWND native_view)
{
native_widget_->FocusNativeView(native_view);
}
void Widget::UpdateFrameAfterFrameChange()
{
native_widget_->UpdateFrameAfterFrameChange();
}
NonClientFrameView* Widget::CreateNonClientFrameView()
{
NonClientFrameView* frame_view = widget_delegate_->CreateNonClientFrameView();
if(!frame_view)
{
frame_view = native_widget_->CreateNonClientFrameView();
}
return frame_view ? frame_view : new CustomFrameView(this);
}
bool Widget::ShouldUseNativeFrame() const
{
if(frame_type_ != FRAME_TYPE_DEFAULT)
{
return frame_type_ == FRAME_TYPE_FORCE_NATIVE;
}
return native_widget_->ShouldUseNativeFrame();
}
void Widget::DebugToggleFrameType()
{
if(frame_type_ == FRAME_TYPE_DEFAULT)
{
frame_type_ = ShouldUseNativeFrame() ? FRAME_TYPE_FORCE_CUSTOM :
FRAME_TYPE_FORCE_NATIVE;
}
else
{
frame_type_ = frame_type_ == FRAME_TYPE_FORCE_CUSTOM ?
FRAME_TYPE_FORCE_NATIVE : FRAME_TYPE_FORCE_CUSTOM;
}
FrameTypeChanged();
}
void Widget::FrameTypeChanged()
{
native_widget_->FrameTypeChanged();
}
const ui::Compositor* Widget::GetCompositor() const
{
return native_widget_->GetCompositor();
}
ui::Compositor* Widget::GetCompositor()
{
return native_widget_->GetCompositor();
}
void Widget::CalculateOffsetToAncestorWithLayer(gfx::Point* offset,
ui::Layer** layer_parent)
{
native_widget_->CalculateOffsetToAncestorWithLayer(offset, layer_parent);
}
void Widget::NotifyAccessibilityEvent(
View* view,
ui::AccessibilityTypes::Event event_type,
bool send_native_event)
{
// Send the notification to the delegate.
if(ViewDelegate::view_delegate)
{
ViewDelegate::view_delegate->NotifyAccessibilityEvent(view, event_type);
}
if(send_native_event)
{
native_widget_->SendNativeAccessibilityEvent(view, event_type);
}
}
const NativeWidget* Widget::native_widget() const
{
return native_widget_;
}
NativeWidget* Widget::native_widget()
{
return native_widget_;
}
const Event* Widget::GetCurrentEvent()
{
return event_stack_.empty() ? NULL : event_stack_.top()->event();
}
void Widget::TooltipTextChanged(View* view)
{
TooltipManager* manager = native_widget_private()->GetTooltipManager();
if(manager)
{
manager->TooltipTextChanged(view);
}
}
bool Widget::SetInitialFocus()
{
if(!focus_on_creation_)
{
return true;
}
View* v = widget_delegate_->GetInitiallyFocusedView();
if(v)
{
v->RequestFocus();
}
return !!v;
}
bool Widget::ConvertPointFromAncestor(const Widget* ancestor,
gfx::Point* point) const
{
return native_widget_->ConvertPointFromAncestor(ancestor, point);
}
View* Widget::GetChildViewParent()
{
return GetContentsView() ? GetContentsView() : GetRootView();
}
////////////////////////////////////////////////////////////////////////////////
// Widget, NativeWidgetDelegate implementation:
bool Widget::IsModal() const
{
return widget_delegate_->IsModal();
}
bool Widget::IsDialogBox() const
{
return !!widget_delegate_->AsDialogDelegate();
}
bool Widget::CanActivate() const
{
return widget_delegate_->CanActivate();
}
bool Widget::IsInactiveRenderingDisabled() const
{
return disable_inactive_rendering_;
}
void Widget::EnableInactiveRendering()
{
disable_inactive_rendering_ = false;
if(non_client_view_)
{
non_client_view_->DisableInactiveRendering(false);
}
}
void Widget::OnNativeWidgetActivationChanged(bool active)
{
if(!active)
{
SaveWindowPlacement();
// Close any open menus.
MenuController* menu_controller = MenuController::GetActiveInstance();
if(menu_controller)
{
menu_controller->OnWidgetActivationChanged();
}
}
FOR_EACH_OBSERVER(Observer, observers_,
OnWidgetActivationChanged(this, active));
}
void Widget::OnNativeFocus(HWND focused_view)
{
WidgetFocusManager::GetInstance()->OnWidgetFocusEvent(focused_view,
GetNativeView());
}
void Widget::OnNativeBlur(HWND focused_view)
{
WidgetFocusManager::GetInstance()->OnWidgetFocusEvent(GetNativeView(),
focused_view);
}
void Widget::OnNativeWidgetVisibilityChanged(bool visible)
{
GetRootView()->PropagateVisibilityNotifications(
GetRootView(), visible);
FOR_EACH_OBSERVER(Observer, observers_,
OnWidgetVisibilityChanged(this, visible));
}
void Widget::OnNativeWidgetCreated()
{
if(is_top_level())
{
focus_manager_.reset(FocusManagerFactory::Create(this));
}
native_widget_->SetAccessibleRole(
widget_delegate_->GetAccessibleWindowRole());
native_widget_->SetAccessibleState(
widget_delegate_->GetAccessibleWindowState());
if(widget_delegate_->IsModal())
{
native_widget_->BecomeModal();
}
}
void Widget::OnNativeWidgetDestroying()
{
FOR_EACH_OBSERVER(Observer, observers_, OnWidgetClosing(this));
if(non_client_view_)
{
non_client_view_->WindowClosing();
}
widget_delegate_->WindowClosing();
}
void Widget::OnNativeWidgetDestroyed()
{
widget_delegate_->DeleteDelegate();
widget_delegate_ = NULL;
}
gfx::Size Widget::GetMinimumSize()
{
return non_client_view_ ? non_client_view_->GetMinimumSize() : gfx::Size();
}
void Widget::OnNativeWidgetSizeChanged(const gfx::Size& new_size)
{
root_view_->SetSize(new_size);
// Size changed notifications can fire prior to full initialization
// i.e. during session restore. Avoid saving session state during these
// startup procedures.
if(native_widget_initialized_)
{
SaveWindowPlacement();
}
}
void Widget::OnNativeWidgetBeginUserBoundsChange()
{
widget_delegate_->OnWindowBeginUserBoundsChange();
}
void Widget::OnNativeWidgetEndUserBoundsChange()
{
widget_delegate_->OnWindowEndUserBoundsChange();
}
bool Widget::HasFocusManager() const
{
return !!focus_manager_.get();
}
bool Widget::OnNativeWidgetPaintAccelerated(const gfx::Rect& dirty_region)
{
ui::Compositor* compositor = GetCompositor();
if(!compositor)
{
return false;
}
// If the root view is animating, it is likely that it does not cover the same
// set of pixels it did at the last frame, so we must clear when compositing
// to avoid leaving ghosts.
bool force_clear = false;
if(GetRootView()->layer())
{
const gfx::Transform& layer_transform = GetRootView()->layer()->transform();
if(layer_transform != GetRootView()->GetTransform())
{
// The layer has not caught up to the view (i.e., the layer is still
// animating), and so a clear is required.
force_clear = true;
}
else
{
// Determine if the layer fills the client area.
gfx::Rect layer_bounds = GetRootView()->layer()->bounds();
layer_transform.TransformRect(&layer_bounds);
gfx::Rect client_bounds = GetClientAreaScreenBounds();
// Translate bounds to origin (client area bounds are offset to account
// for buttons, etc).
client_bounds.set_origin(gfx::Point(0, 0));
if(!layer_bounds.Contains(client_bounds))
{
// It doesn't, and so a clear is required.
force_clear = true;
}
}
}
compositor->set_root_layer(GetRootView()->layer());
compositor->Draw(force_clear);
return true;
}
void Widget::OnNativeWidgetPaint(gfx::Canvas* canvas)
{
GetRootView()->Paint(canvas);
}
int Widget::GetNonClientComponent(const gfx::Point& point)
{
return non_client_view_ ? non_client_view_->NonClientHitTest(point) : 0;
}
bool Widget::OnKeyEvent(const KeyEvent& event)
{
ScopedEvent scoped(this, event);
return static_cast<internal::RootView*>(GetRootView())->OnKeyEvent(event);
}
bool Widget::OnMouseEvent(const MouseEvent& event)
{
ScopedEvent scoped(this, event);
switch(event.type())
{
case ui::ET_MOUSE_PRESSED:
last_mouse_event_was_move_ = false;
// Make sure we're still visible before we attempt capture as the mouse
// press processing may have made the window hide (as happens with menus).
if(GetRootView()->OnMousePressed(event) && IsVisible())
{
is_mouse_button_pressed_ = true;
if(!native_widget_->HasMouseCapture())
{
native_widget_->SetMouseCapture();
}
return true;
}
return false;
case ui::ET_MOUSE_RELEASED:
last_mouse_event_was_move_ = false;
is_mouse_button_pressed_ = false;
// Release capture first, to avoid confusion if OnMouseReleased blocks.
if(native_widget_->HasMouseCapture() &&
ShouldReleaseCaptureOnMouseReleased())
{
native_widget_->ReleaseMouseCapture();
}
GetRootView()->OnMouseReleased(event);
return (event.flags() & ui::EF_IS_NON_CLIENT) ? false : true;
case ui::ET_MOUSE_MOVED:
case ui::ET_MOUSE_DRAGGED:
if(native_widget_->HasMouseCapture() && is_mouse_button_pressed_)
{
last_mouse_event_was_move_ = false;
GetRootView()->OnMouseDragged(event);
}
else if(!last_mouse_event_was_move_ ||
last_mouse_event_position_!=event.location())
{
last_mouse_event_position_ = event.location();
last_mouse_event_was_move_ = true;
GetRootView()->OnMouseMoved(event);
}
return false;
case ui::ET_MOUSE_EXITED:
last_mouse_event_was_move_ = false;
GetRootView()->OnMouseExited(event);
return false;
case ui::ET_MOUSEWHEEL:
return GetRootView()->OnMouseWheel(
reinterpret_cast<const MouseWheelEvent&>(event));
default:
return false;
}
return true;
}
void Widget::OnMouseCaptureLost()
{
if(is_mouse_button_pressed_)
{
GetRootView()->OnMouseCaptureLost();
}
is_mouse_button_pressed_ = false;
}
bool Widget::OnNativeSetCursor(HWND window, UINT hit_test, UINT message)
{
POINT native_point;
GetCursorPos(&native_point);
ScreenToClient(GetNativeView(), &native_point);
gfx::Point p(native_point);
return GetRootView()->OnSetCursor(p);
}
bool Widget::ExecuteCommand(int command_id)
{
return widget_delegate_->ExecuteWindowsCommand(command_id);
}
InputMethodWin* Widget::GetInputMethodDirect()
{
return GetInputMethod();
}
Widget* Widget::AsWidget()
{
return this;
}
const Widget* Widget::AsWidget() const
{
return this;
}
////////////////////////////////////////////////////////////////////////////////
// Widget, FocusTraversable implementation:
FocusSearch* Widget::GetFocusSearch()
{
return root_view_->GetFocusSearch();
}
FocusTraversable* Widget::GetFocusTraversableParent()
{
// We are a proxy to the root view, so we should be bypassed when traversing
// up and as a result this should not be called.
NOTREACHED();
return NULL;
}
View* Widget::GetFocusTraversableParentView()
{
// We are a proxy to the root view, so we should be bypassed when traversing
// up and as a result this should not be called.
NOTREACHED();
return NULL;
}
////////////////////////////////////////////////////////////////////////////////
// Widget, protected:
internal::RootView* Widget::CreateRootView()
{
return new internal::RootView(this);
}
void Widget::DestroyRootView()
{
root_view_.reset();
// Input method has to be destroyed before focus manager.
input_method_.reset();
// Defer focus manager's destruction. This is for the case when the
// focus manager is referenced by a child NativeWidgetGtk (e.g. TabbedPane in
// a dialog). When gtk_widget_destroy is called on the parent, the destroy
// signal reaches parent first and then the child. Thus causing the parent
// NativeWidgetGtk's dtor executed before the child's. If child's view
// hierarchy references this focus manager, it crashes. This will defer focus
// manager's destruction after child NativeWidgetGtk's dtor.
FocusManager* focus_manager = focus_manager_.release();
if(focus_manager)
{
MessageLoop::current()->DeleteSoon(focus_manager);
}
}
////////////////////////////////////////////////////////////////////////////////
// Widget, private:
// static
ui::Compositor*(*Widget::compositor_factory_)() = NULL;
bool Widget::ShouldReleaseCaptureOnMouseReleased() const
{
return true;
}
void Widget::SaveWindowPlacement()
{
// The window delegate does the actual saving for us. It seems like (judging
// by go/crash) that in some circumstances we can end up here after
// WM_DESTROY, at which point the window delegate is likely gone. So just
// bail.
if(!widget_delegate_)
{
return;
}
ui::WindowShowState show_state = ui::SHOW_STATE_NORMAL;
gfx::Rect bounds;
native_widget_->GetWindowPlacement(&bounds, &show_state);
widget_delegate_->SaveWindowPlacement(bounds, show_state);
}
void Widget::SetInitialBounds(const gfx::Rect& bounds)
{
if(!non_client_view_)
{
return;
}
gfx::Rect saved_bounds;
if(GetSavedWindowPlacement(&saved_bounds, &saved_show_state_))
{
if(saved_show_state_ == ui::SHOW_STATE_MAXIMIZED)
{
// If we're going to maximize, wait until Show is invoked to set the
// bounds. That way we avoid a noticable resize.
initial_restored_bounds_ = saved_bounds;
}
else
{
SetBounds(saved_bounds);
}
}
else
{
if(bounds.IsEmpty())
{
// No initial bounds supplied, so size the window to its content and
// center over its parent.
native_widget_->CenterWindow(non_client_view_->GetPreferredSize());
}
else
{
// Use the supplied initial bounds.
SetBoundsConstrained(bounds, NULL);
}
}
}
bool Widget::GetSavedWindowPlacement(gfx::Rect* bounds,
ui::WindowShowState* show_state)
{
// First we obtain the window's saved show-style and store it. We need to do
// this here, rather than in Show() because by the time Show() is called,
// the window's size will have been reset (below) and the saved maximized
// state will have been lost. Sadly there's no way to tell on Windows when
// a window is restored from maximized state, so we can't more accurately
// track maximized state independently of sizing information.
// Restore the window's placement from the controller.
if(widget_delegate_->GetSavedWindowPlacement(bounds, show_state))
{
if(!widget_delegate_->ShouldRestoreWindowSize())
{
bounds->set_size(non_client_view_->GetPreferredSize());
}
else
{
// Make sure the bounds are at least the minimum size.
if(bounds->width() < minimum_size_.width())
{
bounds->set_width(minimum_size_.width());
}
if(bounds->height() < minimum_size_.height())
{
bounds->set_height(minimum_size_.height());
}
}
return true;
}
return false;
}
void Widget::ReplaceInputMethod(InputMethodWin* input_method)
{
input_method_.reset(input_method);
if(input_method)
{
input_method->Init(this);
}
}
namespace internal
{
////////////////////////////////////////////////////////////////////////////////
// internal::NativeWidgetPrivate, NativeWidget implementation:
internal::NativeWidgetPrivate* NativeWidgetPrivate::AsNativeWidgetPrivate()
{
return this;
}
} //namespace internal
} //namespace view | [
"wang70937@163.com"
] | wang70937@163.com |
b833103de94b489e15d165aab388e0308ce892d5 | 54590b39d4710d32bc129e0e9bf59fd5f56ac32d | /SDK/SoT_EmissarySecuredLootOnShip_AF_PromptAccessKey_parameters.hpp | 3c3dd58fd80564f40af066b5b9509186e72b7fd5 | [] | no_license | DDan1l232/SoT-SDK | bb3bb85fa813963655288d6fa2747d316ce57af8 | cda078f3b8bca304759f05cc71ca55d31878e8e5 | refs/heads/master | 2023-03-17T13:16:11.076040 | 2020-09-09T15:19:09 | 2020-09-09T15:19:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 399 | hpp | #pragma once
// Sea of Thieves (2.0.17) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "SoT_EmissarySecuredLootOnShip_AF_PromptAccessKey_classes.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Parameters
//---------------------------------------------------------------------------
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"saerko19@gmail.com"
] | saerko19@gmail.com |
682e954f9e761edc54954526bbc70f7b0ca4b744 | cf5ed7a2dd016ebf5c2f327d9ddd7af39292a755 | /test/performance/perform_uncenter/uncenter.cpp | f2e75f898fdf5ac26e5805d4ad3b80f3dcdb8af8 | [] | no_license | eee4017/vpic-GPU | 616fe5213a735ea1e81105de1097da202208cc86 | d03fe8a617fea48539233e612363622e01b1ca37 | refs/heads/master | 2020-08-02T08:55:00.697488 | 2019-12-10T06:15:07 | 2019-12-10T06:15:07 | 211,293,916 | 7 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,486 | cpp | #define CATCH_CONFIG_MAIN // This tells Catch to provide a =
#include "catch.hpp"
#include <chrono>
#include "src/species_advance/species_advance.h"
#include "src/vpic/vpic.h"
#include "test/integrated/particle_push/advance_p.h"
class vpic_test_simulation : public vpic_simulation
{
public:
void test()
{
double L = 1e2;
#ifndef NUM_PARTICLES
#define NUM_PARTICLES 1048576 //32768
#endif
int npart = NUM_PARTICLES; // This is independent of the number of cells
int nstep = 100;
define_units( 1, 1 );
define_timestep( 1 );
define_periodic_grid( 0, 0, 0, // Grid low corner
L, L, L, // Grid high corner
8, 8, 8, // Grid resolution
1, 1, 1 ); // Processor configuration
define_material( "vacuum", 1.0, 1.0, 0.0 );
define_field_array();
field(1,1,1).ex = 1;
field(1,2,1).ex = 1;
field(1,1,2).ex = 1;
field(1,2,2).ex = 1;
field(1,1,1).ey = 2;
field(1,1,2).ey = 2;
field(2,1,1).ey = 2;
field(2,1,2).ey = 2;
field(1,1,1).ez = 3;
field(2,1,1).ez = 3;
field(1,2,1).ez = 3;
field(2,2,1).ez = 3;
species_t * sp =
define_species( "test_species", 1., 1., npart, npart, 0, 0 );
for (int i = 0; i < npart; i++)
{
float x = uniform( rng(0), 0, L);
float y = uniform( rng(0), 0, L);
float z = uniform( rng(0), 0, L);
inject_particle( sp , x, y, z, 0., 0., 0., 1., 0., 0);
}
clear_accumulator_array(accumulator_array);
load_interpolator_array( interpolator_array, field_array );
#ifdef ENABLE_SORT
std::cout << "Sort is enabled." << std::endl;
sort_p( sp );
#endif
auto start = std::chrono::system_clock::now();
for( int n=0; n<nstep; n++)
{
uncenter_p( sp, interpolator_array );
center_p( sp, interpolator_array );
}
auto end = std::chrono::system_clock::now();
std::chrono::duration<double> elapsed_seconds = end-start;
auto time_per_p = elapsed_seconds.count() / (sp->np*nstep);
std::cout << "Elapsed time: " << elapsed_seconds.count() << "" << std::endl;
std::cout << "Particles: " << sp->np << ", Steps: " << nstep << std::endl;
std::cout << "Time per particle step: " << time_per_p << ", Particle/s: " << 1.0/time_per_p << std::endl;
}
};
TEST_CASE( "repeatedly center and uncenter particles in a timed loop", "[uncenter]" )
{
#ifndef NUM_THREADS
#define NUM_THREADS 1
#endif
int pargc = 1;
if (NUM_THREADS > 1) { pargc = 3; }
char str[] = "bin/vpic";
char **pargv = (char **) malloc( (pargc+1) *sizeof(char **));
pargv[0] = str;
if (NUM_THREADS > 1)
{
char str2[] = "--tpp";
char str3[] = "" EXPAND_AND_STRINGIFY(NUM_THREADS);
pargv[1] = str2;
pargv[2] = str3;
}
boot_services( &pargc, &pargv );
vpic_test_simulation* simulation = new vpic_test_simulation();
simulation->test();
delete simulation;
if( world_rank==0 ) log_printf( "normal exit\n" );
halt_mp();
}
| [
"noreply@github.com"
] | eee4017.noreply@github.com |
c2ede48072a752e6f71bb574ea3238c58dd72a41 | 0e318ac241a71b228ef0a5d20431d8212611dc53 | /serverUserAuthentication.h | db6383f0024d30c706dee0e2ec992ae9142da751 | [] | no_license | jsandez/ftp-honeypot | fb27d79b5abff67c55c58c2c6e9f0af7791a3f79 | df9cce5d3aab5b4cd55d8c4ae20a996af880ecdb | refs/heads/master | 2022-08-23T04:29:08.959727 | 2019-10-15T05:07:31 | 2019-10-15T05:07:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 679 | h | #ifndef _USERAUTHENTICATION_H_
#define _USERAUTHENTICATION_H_
#include <string>
/*
* Clase que funciona como autenticador
* del usuario, tambien guarada el user_name
* en caso de ser necesario para realizar
* la autenticacion. Tiene un enum con
* los estados del usuario dependiendo el momento
*/
enum UserState {
NOT_AUTHENTICATED = 0,
LOGIN_PROVIDED = 1,
AUTHENTICATED = 2
};
class serverUserAuthentication {
private:
UserState state;
std::string user_name;
public:
serverUserAuthentication();
void user(const std::string& user_name);
void setState(UserState state);
std::string getUser() const;
bool checkState(UserState user_state);
};
#endif
| [
"sandez.jorge@gmail.com"
] | sandez.jorge@gmail.com |
0a9c6d611c821888726a8e9889775dd752ef8af3 | fbd8c56e8e449f7ac80b5156e80c15c14cb34b12 | /Uva/Uva_AC/725 - Division.cpp | 02f1e3373f57c27f0880e77218e9cd9430633555 | [
"MIT"
] | permissive | Saikat-S/acm-problems-solutions | 558374a534f4f4aa2bf3bea889c1d5c5a536cf59 | 921c0f3e508e1ee8cd14be867587952d5f67bbb9 | refs/heads/master | 2021-08-03T02:27:21.019914 | 2021-07-27T06:18:28 | 2021-07-27T06:18:28 | 132,938,151 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,690 | cpp | /***************************************************
* Problem Name : 725 - Division.cpp
* Problem Link : https://uva.onlinejudge.org/external/7/725.pdf
* OJ : Uva
* Verdict : AC
* Date : 2018-07-16
* Problem Type : AdHoc
* Author Name : Saikat Sharma
* University : CSE, MBSTU
***************************************************/
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<climits>
#include<cstring>
#include<string>
#include<sstream>
#include<cmath>
#include<vector>
#include<queue>
#include<cstdlib>
#include<deque>
#include<stack>
#include<map>
#include<set>
#define __FastIO ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0)
#define SET(a,v) memset(a,v,sizeof(a))
#define pii pair<int,int>
#define pll pair <ll, ll>
#define debug cout <<"#########\n";
#define nl cout << "\n";
#define sp cout << " ";
#define sl(n) scanf("%lld", &n)
#define sf(n) scanf("%lf", &n)
#define si(n) scanf("%d", &n)
#define ss(n) scanf("%s", n)
#define pf(n) scanf("%d", n)
#define pfl(n) scanf("%lld", n)
#define all(v) v.begin(), v.end()
#define pb push_back
#define MAX 100005
#define INF 1000000000
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
template <typename T>
std::string NumberToString ( T Number ) {
std::ostringstream ss;
ss << Number;
return ss.str();
}
ll lcm(ll a, ll b) {
return a * b / __gcd(a, b);
}
/************************************ Code Start Here ******************************************************/
int main () {
__FastIO;
ll n;
int t = 1;
while (cin >> n) {
if (n == 0) break;
vector<string>v;
vector<string>ans;
for (int i = 1234; i <= 98675; i++) {
ll mul = n * i;
ll chk ;
if (mul >= 10000 && mul < 1000000) {
bool flag = 1;
chk = i;
map<int, int>mp;
if (i < 10000) {
mp[0]++;
}
string str;
while (chk != 0) {
int r = chk % 10;
chk /= 10;
if (mp[r] == 0) {
mp[r]++;
str.pb (r + '0');
} else {
flag = 0;
break;
}
}
if (flag) {
string s = "";
chk = mul;
while (chk != 0) {
int r = chk % 10;
chk /= 10;
if (mp[r] == 0) {
mp[r]++;
s.pb (r + '0');
} else {
flag = 0;
break;
}
}
if (flag) {
reverse (all (str) );
reverse (all (s) );
v.pb (s);
ans.pb (str);
}
}
}
}
if (t != 1) {
nl;
}
if ( (int) v.size() == 0) {
cout << "There are no solutions for " << n << ".\n";
} else {
for (int i = 0; i < (int) v.size(); i++) {
cout << v[i] << " / ";
string str = "";
str = ans[i];
if ( (int) str.size() == 4) {
cout << 0;
}
cout << ans[i];
cout << " = " << n << "\n";
}
}
t++;
}
return 0;
}
| [
"saikatsharma4@gmail.com"
] | saikatsharma4@gmail.com |
f62fee2f5835f127afff1403a18546deae661a34 | a6d5b9bf448ce7710e839a8a69ead594a51a8cc3 | /src/filters/parser/mp4splitter/AP4/Source/Core/Ap4RtpHint.cpp | e5545618cd419d142aa951c1bbd6ea908aa898c1 | [] | no_license | leejiarong/DShowFilters2 | 04d10479c5c29cf1859cedba2745e58af6fada60 | 1643166e6b4cd628539de2cb06a342b9332fc7ba | refs/heads/master | 2021-03-12T20:37:16.437388 | 2015-03-24T09:41:26 | 2015-03-24T09:41:26 | 32,787,487 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,240 | cpp | /*****************************************************************
|
| AP4 - RTP Hint Objects
|
| Copyright 2002-2005 Gilles Boccon-Gibod & Julien Boeuf
|
|
| This file is part of Bento4/AP4 (MP4 Atom Processing Library).
|
| Unless you have obtained Bento4 under a difference license,
| this version of Bento4 is Bento4|GPL.
| Bento4|GPL 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 2, or (at your option)
| any later version.
|
| Bento4|GPL 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 Bento4|GPL; see the file COPYING. If not, write to the
| Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
| 02111-1307, USA.
|
****************************************************************/
/*----------------------------------------------------------------------
| includes
+---------------------------------------------------------------------*/
#include "Ap4RtpHint.h"
#include "Ap4ByteStream.h"
#include "Ap4Atom.h"
/*----------------------------------------------------------------------
| AP4_RtpSampleData::~AP4_RtpSampleData
+---------------------------------------------------------------------*/
AP4_RtpSampleData::~AP4_RtpSampleData()
{
AP4_List<AP4_RtpPacket>::Item* it = m_Packets.FirstItem();
while (it != NULL) {
it->GetData()->Release();
it = it->GetNext();
}
}
/*----------------------------------------------------------------------
| AP4_RtpSampleData::AP4_RtpSampleData
+---------------------------------------------------------------------*/
AP4_RtpSampleData::AP4_RtpSampleData(AP4_ByteStream& stream, AP4_Size size)
{
// save the start position
AP4_Offset start, extra_data_start;
stream.Tell(start);
AP4_UI16 packet_count;
stream.ReadUI16(packet_count);
AP4_UI16 reserved;
stream.ReadUI16(reserved); // later, check that reserved is 0
// packets
for (AP4_UI16 i=0; i<packet_count; i++) {
AP4_RtpPacket* packet = new AP4_RtpPacket(stream);
m_Packets.Add(packet);
}
// extra data
stream.Tell(extra_data_start);
AP4_Size extra_data_size = size - (extra_data_start-start);
if (extra_data_size != 0) {
m_ExtraData.SetDataSize(extra_data_size);
stream.Read(m_ExtraData.UseData(), extra_data_size);
}
}
/*----------------------------------------------------------------------
| AP4_RtpSampleData::GetSize
+---------------------------------------------------------------------*/
AP4_Size
AP4_RtpSampleData::GetSize()
{
// packet count and reserved
AP4_Size result = 4;
// packets
AP4_List<AP4_RtpPacket>::Item* it = m_Packets.FirstItem();
while (it != NULL) {
result = it->GetData()->GetSize();
it = it->GetNext();
}
// extra data
result += m_ExtraData.GetDataSize();
return result;
}
/*----------------------------------------------------------------------
| AP4_RtpSampleData::ToByteStream
+---------------------------------------------------------------------*/
AP4_ByteStream*
AP4_RtpSampleData::ToByteStream()
{
// refresh the size
AP4_Size size = GetSize();
// create a memory stream
AP4_MemoryByteStream* stream = new AP4_MemoryByteStream(size);
// write in it
AP4_Result result = stream->WriteUI16(static_cast<AP4_UI16>(m_Packets.ItemCount()));
if (AP4_FAILED(result)) goto bail;
result = stream->WriteUI16(0); // reserved
if (AP4_FAILED(result)) goto bail;
{
AP4_List<AP4_RtpPacket>::Item* it = m_Packets.FirstItem();
while (it != NULL) {
result = it->GetData()->Write(*stream);
if (AP4_FAILED(result)) goto bail;
it = it->GetNext();
}
}
result = stream->Write(m_ExtraData.GetData(), m_ExtraData.GetDataSize());
if (AP4_FAILED(result)) goto bail;
// return
return stream;
bail:
stream->Release();
return NULL;
}
/*----------------------------------------------------------------------
| AP4_RtpSampleData::AddPacket
+---------------------------------------------------------------------*/
AP4_Result
AP4_RtpSampleData::AddPacket(AP4_RtpPacket* packet)
{
packet->AddReference();
return m_Packets.Add(packet);
}
/*----------------------------------------------------------------------
| AP4_RtpPacket::AP4_RtpPacket
+---------------------------------------------------------------------*/
AP4_RtpPacket::AP4_RtpPacket(AP4_Integer relative_time,
bool p_bit,
bool x_bit,
bool m_bit,
AP4_UI08 payload_type,
AP4_UI16 sequence_seed,
AP4_Integer time_stamp_offset /* = 0 */,
bool bframe_flag /* = false */,
bool repeat_flag /* = false */) :
m_ReferenceCount(1),
m_RelativeTime(relative_time),
m_PBit(p_bit),
m_XBit(x_bit),
m_MBit(m_bit),
m_PayloadType(payload_type),
m_SequenceSeed(sequence_seed),
m_TimeStampOffset(time_stamp_offset),
m_BFrameFlag(bframe_flag),
m_RepeatFlag(repeat_flag)
{}
/*----------------------------------------------------------------------
| AP4_RtpPacket::AP4_RtpPacket
+---------------------------------------------------------------------*/
AP4_RtpPacket::AP4_RtpPacket(AP4_ByteStream& stream) :
m_ReferenceCount(1),
m_TimeStampOffset(0)
{
AP4_UI08 octet;
// relative time
AP4_UI32 relative_time;
stream.ReadUI32(relative_time);
m_RelativeTime = relative_time;
// pbit and xbit
stream.ReadUI08(octet);
m_PBit = (octet & 0x20) != 0;
m_XBit = (octet & 0x10) != 0;
// mbit and payload type
stream.ReadUI08(octet);
m_MBit = (octet & 0x80) != 0;
m_PayloadType = octet & 0x7F;
// sequence seed
stream.ReadUI16(m_SequenceSeed);
// extra, bframe and repeat flags
stream.ReadUI08(octet);
stream.ReadUI08(octet); // repeat on purpose
bool extra_flag = (octet & 0x04) != 0;
// bframe and repeat flags
m_BFrameFlag = (octet & 0x02) != 0;
m_RepeatFlag = (octet & 0x01) != 0;
// constructor count
AP4_UI16 constructor_count;
stream.ReadUI16(constructor_count);
// parse the packet extra data
if (extra_flag) {
// read the length
AP4_UI32 extra_length;
stream.ReadUI32(extra_length);
// check it
if (extra_length < 4)
throw AP4_Exception(AP4_ERROR_INVALID_RTP_PACKET_EXTRA_DATA);
// now read the entries
extra_length -= 4;
while (extra_length > 0) {
AP4_UI32 entry_length;
AP4_UI32 entry_tag;
stream.ReadUI32(entry_length);
stream.ReadUI32(entry_tag);
// check the entry
if (entry_length < 8) {
throw AP4_Exception(AP4_ERROR_INVALID_RTP_PACKET_EXTRA_DATA);
}
// parse the single entry that's currently defined in the spec
if (entry_tag == AP4_ATOM_TYPE('r','t','p','o') && entry_length == 12) {
AP4_UI32 time_stamp_offset;
stream.ReadUI32(time_stamp_offset);
m_TimeStampOffset = time_stamp_offset;
} else {
// ignore it
AP4_Offset cur_pos;
stream.Tell(cur_pos);
stream.Seek(cur_pos + entry_length - 8); // 8 = length + tag
}
extra_length -= entry_length;
}
}
// constructors
for (AP4_UI16 i=0; i<constructor_count; i++) {
AP4_RtpConstructor* constructor = NULL;
AP4_RtpConstructorFactory::CreateConstructorFromStream(stream, constructor);
m_Constructors.Add(constructor);
}
}
/*----------------------------------------------------------------------
| AP4_RtpPacket::AP4_RtpPacket
+---------------------------------------------------------------------*/
AP4_RtpPacket::~AP4_RtpPacket()
{
AP4_List<AP4_RtpConstructor>::Item* it = m_Constructors.FirstItem();
while (it != NULL) {
it->GetData()->Release();
it = it->GetNext();
}
}
/*----------------------------------------------------------------------
| AP4_RtpPacket::AddReference
+---------------------------------------------------------------------*/
void
AP4_RtpPacket::AddReference()
{
m_ReferenceCount++;
}
/*----------------------------------------------------------------------
| AP4_RtpPacket::Release
+---------------------------------------------------------------------*/
void
AP4_RtpPacket::Release()
{
if (--m_ReferenceCount == 0) {
delete this;
}
}
/*----------------------------------------------------------------------
| AP4_RtpPacket::GetSize
+---------------------------------------------------------------------*/
AP4_Size
AP4_RtpPacket::GetSize()
{
AP4_Size result = 12 + (m_TimeStampOffset != 0)?16:0;
result += m_Constructors.ItemCount() * AP4_RTP_CONSTRUCTOR_SIZE;
return result;
}
/*----------------------------------------------------------------------
| AP4_RtpPacket::Write
+---------------------------------------------------------------------*/
AP4_Result
AP4_RtpPacket::Write(AP4_ByteStream& stream)
{
// check the payload type
if (m_PayloadType > 128) return AP4_FAILURE;
// now write
AP4_Result result = stream.WriteUI32(m_RelativeTime);
if (AP4_FAILED(result)) return result;
result = stream.WriteUI08(0x80 | m_PBit << 5 | m_XBit << 4);
if (AP4_FAILED(result)) return result;
result = stream.WriteUI08(m_MBit << 7 | m_PayloadType);
if (AP4_FAILED(result)) return result;
result = stream.WriteUI16(m_SequenceSeed);
if (AP4_FAILED(result)) return result;
result = stream.WriteUI08(0);
if (AP4_FAILED(result)) return result;
// deal with extra flag
bool extra_flag = m_TimeStampOffset != 0;
result = stream.WriteUI08(0x00 | extra_flag << 2
| m_BFrameFlag << 1
| m_RepeatFlag << 0);
if (AP4_FAILED(result)) return result;
// constructor count
result = stream.WriteUI16(static_cast<AP4_UI16>(m_Constructors.ItemCount()));
// write extra data
if (extra_flag) {
// extra_length
result = stream.WriteUI32(16); // 4 (extra_length) + 12 (rtpo atom)
if (AP4_FAILED(result)) return result;
// rtpo atom
result = stream.WriteUI32(12); // size
if (AP4_FAILED(result)) return result;
result = stream.WriteUI32(AP4_ATOM_TYPE('r','t','p','o'));
if (AP4_FAILED(result)) return result;
result = stream.WriteUI32(m_TimeStampOffset);
if (AP4_FAILED(result)) return result;
}
// constructors
AP4_List<AP4_RtpConstructor>::Item* it = m_Constructors.FirstItem();
while (it != NULL) {
result = it->GetData()->Write(stream);
if (AP4_FAILED(result)) return result;
it = it->GetNext();
}
return result;
}
/*----------------------------------------------------------------------
| AP4_RtpPacket::AddConstructor
+---------------------------------------------------------------------*/
AP4_Result
AP4_RtpPacket::AddConstructor(AP4_RtpConstructor* constructor)
{
constructor->AddReference();
return m_Constructors.Add(constructor);
}
/*----------------------------------------------------------------------
| AP4_RtpConstructor::GetConstructedDataSize
+---------------------------------------------------------------------*/
AP4_Size
AP4_RtpPacket::GetConstructedDataSize()
{
// header + ssrc
AP4_Size size = 12;
// constructed data from constructors
AP4_List<AP4_RtpConstructor>::Item* constructors_it
= m_Constructors.FirstItem();
while (constructors_it != NULL) {
size += constructors_it->GetData()->GetConstructedDataSize();
constructors_it = constructors_it->GetNext();
}
return size;
}
/*----------------------------------------------------------------------
| AP4_RtpConstructor::AddReference
+---------------------------------------------------------------------*/
void
AP4_RtpConstructor::AddReference()
{
m_ReferenceCount++;
}
/*----------------------------------------------------------------------
| AP4_RtpConstructor::Release
+---------------------------------------------------------------------*/
void
AP4_RtpConstructor::Release()
{
if (--m_ReferenceCount == 0) {
delete this;
}
}
/*----------------------------------------------------------------------
| AP4_RtpConstructor::Write
+---------------------------------------------------------------------*/
AP4_Result
AP4_RtpConstructor::Write(AP4_ByteStream& stream)
{
AP4_Result result = stream.WriteUI08(m_Type);
if (AP4_FAILED(result)) return result;
return DoWrite(stream);
}
/*----------------------------------------------------------------------
| AP4_NoopRtpConstructor::AP4_NoopRtpConstructor
+---------------------------------------------------------------------*/
AP4_NoopRtpConstructor::AP4_NoopRtpConstructor(AP4_ByteStream& stream) :
AP4_RtpConstructor(AP4_RTP_CONSTRUCTOR_TYPE_NOOP)
{
AP4_Offset cur_offset;
stream.Tell(cur_offset);
stream.Seek(cur_offset+15);
}
/*----------------------------------------------------------------------
| AP4_NoopRtpConstructor::DoWrite
+---------------------------------------------------------------------*/
AP4_Result
AP4_NoopRtpConstructor::DoWrite(AP4_ByteStream& stream)
{
AP4_UI08 pad[15];
return stream.Write(pad, sizeof(pad));
}
/*----------------------------------------------------------------------
| AP4_ImmediateRtpConstructor::AP4_ImmediateRtpConstructor
+---------------------------------------------------------------------*/
AP4_ImmediateRtpConstructor::AP4_ImmediateRtpConstructor(const AP4_DataBuffer& data) :
AP4_RtpConstructor(AP4_RTP_CONSTRUCTOR_TYPE_IMMEDIATE),
m_Data(data)
{}
/*----------------------------------------------------------------------
| AP4_ImmediateRtpConstructor::AP4_ImmediateRtpConstructor
+---------------------------------------------------------------------*/
AP4_ImmediateRtpConstructor::AP4_ImmediateRtpConstructor(AP4_ByteStream& stream) :
AP4_RtpConstructor(AP4_RTP_CONSTRUCTOR_TYPE_IMMEDIATE)
{
AP4_Offset cur_offset;
stream.Tell(cur_offset);
// data
AP4_UI08 data_size;
stream.ReadUI08(data_size);
m_Data.SetDataSize(data_size);
stream.Read(m_Data.UseData(), data_size);
// reposition the stream
stream.Seek(cur_offset+15);
}
/*----------------------------------------------------------------------
| AP4_ImmediateRtpConstructor::DoWrite
+---------------------------------------------------------------------*/
AP4_Result
AP4_ImmediateRtpConstructor::DoWrite(AP4_ByteStream& stream)
{
// first check that the data is not too large
if (m_Data.GetDataSize() > 14) return AP4_FAILURE;
// now write
AP4_Result result = stream.WriteUI08(static_cast<AP4_UI08>(m_Data.GetDataSize()));
if (AP4_FAILED(result)) return result;
result = stream.Write(m_Data.GetData(), m_Data.GetDataSize());
if (AP4_FAILED(result)) return result;
// pad
AP4_Byte pad[14];
return stream.Write(pad, sizeof(pad)-m_Data.GetDataSize());
}
/*----------------------------------------------------------------------
| AP4_SampleRtpConstructor::AP4_SampleRtpConstructor
+---------------------------------------------------------------------*/
AP4_SampleRtpConstructor::AP4_SampleRtpConstructor(AP4_UI08 track_ref_index,
AP4_UI16 length,
AP4_UI32 sample_num,
AP4_UI32 sample_offset) :
AP4_RtpConstructor(AP4_RTP_CONSTRUCTOR_TYPE_SAMPLE),
m_TrackRefIndex(track_ref_index),
m_Length(length),
m_SampleNum(sample_num),
m_SampleOffset(sample_offset)
{}
/*----------------------------------------------------------------------
| AP4_SampleRtpConstructor::AP4_SampleRtpConstructor
+---------------------------------------------------------------------*/
AP4_SampleRtpConstructor::AP4_SampleRtpConstructor(AP4_ByteStream& stream) :
AP4_RtpConstructor(AP4_RTP_CONSTRUCTOR_TYPE_SAMPLE)
{
// offset
AP4_Offset cur_offset;
stream.Tell(cur_offset);
// data
stream.ReadUI08(m_TrackRefIndex);
stream.ReadUI16(m_Length);
stream.ReadUI32(m_SampleNum);
stream.ReadUI32(m_SampleOffset);
// reposition the stream
stream.Seek(cur_offset+15);
}
/*----------------------------------------------------------------------
| AP4_SampleRtpConstructor::DoWrite
+---------------------------------------------------------------------*/
AP4_Result
AP4_SampleRtpConstructor::DoWrite(AP4_ByteStream& stream)
{
AP4_Result result = stream.WriteUI08(m_TrackRefIndex);
if (AP4_FAILED(result)) return result;
result = stream.WriteUI16(m_Length);
if (AP4_FAILED(result)) return result;
result = stream.WriteUI32(m_SampleNum);
if (AP4_FAILED(result)) return result;
result = stream.WriteUI32(m_SampleOffset);
if (AP4_FAILED(result)) return result;
result = stream.WriteUI16(1); // bytes per block
if (AP4_FAILED(result)) return result;
return stream.WriteUI16(1); // samples per block
}
/*----------------------------------------------------------------------
| AP4_SampleDescRtpConstructor::AP4_SampleDescRtpConstructor
+---------------------------------------------------------------------*/
AP4_SampleDescRtpConstructor::AP4_SampleDescRtpConstructor(AP4_UI08 track_ref_index,
AP4_UI16 length,
AP4_UI32 sample_desc_index,
AP4_UI32 sample_desc_offset) :
AP4_RtpConstructor(AP4_RTP_CONSTRUCTOR_TYPE_SAMPLE_DESC),
m_TrackRefIndex(track_ref_index),
m_Length(length),
m_SampleDescIndex(sample_desc_index),
m_SampleDescOffset(sample_desc_offset)
{}
/*----------------------------------------------------------------------
| AP4_SampleDescRtpConstructor::AP4_SampleDescRtpConstructor
+---------------------------------------------------------------------*/
AP4_SampleDescRtpConstructor::AP4_SampleDescRtpConstructor(AP4_ByteStream& stream) :
AP4_RtpConstructor(AP4_RTP_CONSTRUCTOR_TYPE_SAMPLE_DESC)
{
// offset
AP4_Offset cur_offset;
stream.Tell(cur_offset);
// data
stream.ReadUI08(m_TrackRefIndex);
stream.ReadUI16(m_Length);
stream.ReadUI32(m_SampleDescIndex);
stream.ReadUI32(m_SampleDescOffset);
// reposition the stream
stream.Seek(cur_offset+15);
}
/*----------------------------------------------------------------------
| AP4_SampleDescRtpConstructor::DoWrite
+---------------------------------------------------------------------*/
AP4_Result
AP4_SampleDescRtpConstructor::DoWrite(AP4_ByteStream& stream)
{
AP4_Result result = stream.WriteUI08(m_TrackRefIndex);
if (AP4_FAILED(result)) return result;
result = stream.WriteUI16(m_Length);
if (AP4_FAILED(result)) return result;
result = stream.WriteUI32(m_SampleDescIndex);
if (AP4_FAILED(result)) return result;
result = stream.WriteUI32(m_SampleDescOffset);
if (AP4_FAILED(result)) return result;
return stream.WriteUI32(0); // reserved
}
/*----------------------------------------------------------------------
| AP4_RtpConstructorFactory::CreateConstructorFromStream
+---------------------------------------------------------------------*/
AP4_Result
AP4_RtpConstructorFactory::CreateConstructorFromStream(AP4_ByteStream& stream,
AP4_RtpConstructor*& constructor)
{
// read the first byte (type)
AP4_RtpConstructor::Type type;
AP4_Result result = stream.ReadUI08(type);
if (AP4_FAILED(result)) return result;
switch(type) {
case AP4_RTP_CONSTRUCTOR_TYPE_NOOP:
constructor = new AP4_NoopRtpConstructor(stream);
break;
case AP4_RTP_CONSTRUCTOR_TYPE_IMMEDIATE:
constructor = new AP4_ImmediateRtpConstructor(stream);
break;
case AP4_RTP_CONSTRUCTOR_TYPE_SAMPLE:
constructor = new AP4_SampleRtpConstructor(stream);
break;
case AP4_RTP_CONSTRUCTOR_TYPE_SAMPLE_DESC:
constructor = new AP4_SampleDescRtpConstructor(stream);
break;
default:
return AP4_ERROR_INVALID_RTP_CONSTRUCTOR_TYPE;
}
return AP4_SUCCESS;
}
| [
"leejiarong@gmail.com"
] | leejiarong@gmail.com |
b48c7b610d16f321096900ecf138fada5707a3a8 | 16fd6c145c0973d4ac0848684a1325e4538b2724 | /Cryptor.cpp | cb906c5743075e434947f4337ab22d5173aa411d | [] | no_license | BadPrankster/Crypt0r | 7ddbeac8a019d2b73e2efbc838b325ecac1b8795 | 3135dfb4c6e62d8d38e48f7e49af3c9d97f73433 | refs/heads/main | 2023-03-26T17:15:25.072508 | 2021-03-20T15:29:23 | 2021-03-20T15:29:23 | 349,745,200 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,790 | cpp | /*
Projektarbeit im Visual Studio 2019
Lucas Wirz-Vitiuk
Januar bis März 2021
*/
#include <iostream>
#include <string>
#include <vector>
using namespace std;
int main(void) {
/*
TO-DO:
- Ein- und Ausgabe via Datei
- Programm wiederholen
*/
// Crypt0r V0.8
// Eingabe-Variabeln definieren
char select, cipher;
string input;
bool check = false;
// Satzzeichen
const char punctuation[] = { ' ', '.', ',', ':', ';', '?', '!', '-', '_', '(', ')',
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };
// Alphabet definieren
const char alphabet[] = { ' ', '.', ',', ':', ';', '?', '!', '-', '_', '(', ')',
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
'\x8E', '\x99', '\x9A',
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
'\x84', '\x94', '\x81' };
// Umgedrehtes Alphabet definieren
const char alphabet_reversed[] = { ' ', '.', ',', ':', ';', '?', '!', '-', '_', '(', ')',
'9', '8', '7', '6', '5', '4', '3', '2', '1', '0',
'Z', 'Y', 'X', 'W', 'V', 'U', 'T', 'S', 'R', 'Q', 'P', 'O', 'N', 'M', 'L', 'K', 'J', 'I', 'H', 'G', 'F', 'E', 'D', 'C', 'B', 'A',
'\x99', '\x9A', '\x8E',
'z', 'y', 'x', 'w', 'v', 'u', 't', 's', 'r', 'q', 'p', 'o', 'n', 'm', 'l', 'k', 'j', 'i', 'h', 'g', 'f', 'e', 'd', 'c', 'b', 'a',
'\x94', '\x81', '\x84' };
// Morse-Code definieren
string morse[] = { "/", ".-.-.-", "--..--", "---...", "-.-.-.", "..--..", "-.-.--", "-....-", "..--.-", "-.--.", "-.--.-",
"-----", ".----", "..---", "...--", "....-", ".....", "-....", "--...", "---..", "----.",
".-", "-...", "-.-.", "-..", ".", "..-.", "--.", "....", "..", ".---", "-.-", ".-..", "--", "-.", "---", ".--.", "--.-", ".-.", "...", "-", "..-", "...-", ".--", "-..-", "-.--", "--..",
".-.-", "---.", "..--" };
// Trennzeichen definieren
char delimiter = ' ';
// Hilfsvariabeln zum Splitten der Eingabe
vector<string> tokens;
int pos;
string token;
// Hilfsvariabeln für Geheimalphabet
int x = 0;
int y = 0;
// Zählvariable fürs Splitten
int z = 1;
// Variabeln für Passworteingabe
int key;
string keyword;
char password[26 * 4];
char alphabet_secret[sizeof(alphabet)];
// Variabeln für Schleifen
int i, j, k, l;
// Programmbeginn
while (check == false) {
// Abfrage zum Ver- oder Entschlüsseln
cout << endl << " 1 - Chiffrieren";
cout << endl << " 2 - De-Chiffrieren" << endl;
cout << endl << " > ";
cin >> select;
// Eingabe zusätzlicher Werte verhindern
cin.clear();
cin.ignore(cin.rdbuf()->in_avail());
// Fehleingabe verhindern
if ((select != '1') && (select != '2')) {
system("cls");
cout << endl << " Falsche Eingabe, Bitte wiederholen!" << endl;
}
else check = true;
}
// Abfrage zur Ver- oder Entschlüsselungsmethode
check = false;
while (check == false) {
cout << endl << " 1 - ASCII-Code";
cout << endl << " 2 - Morse-Code";
cout << endl << " 3 - Alphabet umdrehen";
cout << endl << " 4 - C\x84sar-Verschl\x81sselung";
cout << endl << " 5 - Vigenere-Verschl\x81sselung";
cout << endl << " 6 - Passwort-Verschl\x81sselung" << endl;
cout << endl << " > ";
cin >> cipher;
// Eingabe zusätzlicher Werte verhindern
cin.clear();
cin.ignore(cin.rdbuf()->in_avail());
// Fehleingabe verhindern
if ((cipher != '1') && (cipher != '2') && (cipher != '3') && (cipher != '4') && (cipher != '5') && (cipher != '6')) {
system("cls");
cout << endl << " Falsche Eingabe, Bitte wiederholen!" << endl;
}
else check = true;
}
if (cipher == '4') {
// Abfrage für Zahlenschlüssel (Cäsar-Verschlüsselung)
check = false;
while (check == false) {
cout << endl << " Bitte eine Zahl als Schl\x81ssel f\x81r die C\x84sar-Verschl\x81sselung eingeben" << endl;
cout << endl << " > ";
cin >> key;
// Fehleingabe verhindern
if (!cin) {
cin.clear();
cin.ignore(cin.rdbuf()->in_avail());
system("cls");
cout << endl << " Falsche Eingabe, Bitte wiederholen!" << endl;
}
else {
check = true;
cin.clear();
cin.ignore(cin.rdbuf()->in_avail());
}
}
}
if ((cipher == '5') || (cipher == '6')) {
// Abfrage für Passwort (Vigenere-Verschlüsselung und Geheimalphabetisierung)
cout << endl << " Bitte ein Wort als Schl\x81ssel ";
if (cipher == '5') cout << "f\x81r die Vigenere-Verschl\x81sselung";
if (cipher == '6') cout << "f\x81r die Geheimalphabetisierung";
cout << " eingeben" << endl;
cout << endl << " > ";
if (cipher == '5') getline(cin, keyword);
if (cipher == '6') {
cin >> password;
// Passwort in Geheimalphabet einfügen (Duplikate entfernen)
for (k = 0; k < sizeof(password); k++) {
check = true;
for (l = 0; l < sizeof(alphabet_secret); l++) {
if (alphabet_secret[l] == password[k]) {
check = false;
break;
}
}
if (check) alphabet_secret[k - x] = password[k];
else x++;
}
// Position für den Rest des Alphabets finden
for (k = 0; k < sizeof(alphabet); k++) {
for (l = 0; l < sizeof(alphabet_secret); l++) {
if (alphabet[k] == alphabet_secret[l]) {
y++;
break;
}
}
}
// Rest des Alphabets in Geheimalphabet einfügen
x = 0;
for (k = 0; k < sizeof(alphabet); k++) {
check = true;
for (l = 0; l < sizeof(alphabet_secret); l++) {
if (alphabet[k] == alphabet_secret[l]) {
check = false;
break;
}
}
if (check) alphabet_secret[k + y - x] = alphabet[k];
else x++;
}
// Eingabe zusätzlicher Werte verhindern
cin.clear();
cin.ignore(cin.rdbuf()->in_avail());
}
}
// TO-DO: Abfrage zur Ein- und Ausgabe via Datei
// Abfrage zur Texteingabe (sowohl unverschlüsselt als auch verschlüsselt)
cout << endl << endl << " Text eingeben" << endl << endl << " > ";
getline(cin, input);
if (cipher == '5') {
// Falls nötig, Passort verlängern (Vigenere-Verschlüsselung)
while (input.size() >= keyword.size()) {
keyword += keyword;
}
}
// Verarbeitung und Ausgabe des verschlüsselten Textes
if (select == '1') {
cout << endl << endl << " Der chiffrierte Text lautet: " << endl;
cout << endl << " > ";
// Schleife für jeden Buchstaben der Eingabe
for (i = 0; i < input.length(); i++) {
// Eingabe als Zahl darstellen (ASCII-Code)
if (cipher == '1') {
cout << int(input[i]) << delimiter;
}
if ((cipher == '2') || (cipher == '3') || (cipher == '6')) {
// Innere Schleife für jeden Buchstaben des Alphabets
check = false;
for (j = 0; j < sizeof(alphabet); j++) {
if (cipher == '2') {
// Umlaute in Grossbuchstaben umwandeln
if ((input[i]) == '\x81') (input[i]) = '\x9A';
if ((input[i]) == '\x84') (input[i]) = '\x8E';
if ((input[i]) == '\x94') (input[i]) = '\x99';
// Eingabe zuweisen (Morse-Code)
if (toupper(input[i]) == alphabet[j]) {
cout << morse[j];
break;
}
}
// Eingabe zuweisen (Alphabet umdrehen)
if (cipher == '3') {
if (input[i] == alphabet[j]) {
cout << alphabet_reversed[j];
check = true;
break;
}
}
// Eingabe zuweisen (Passwort-Verschlüsselung)
if (cipher == '6') {
if (input[i] == alphabet[j]) {
cout << alphabet_secret[j];
check = true;
break;
}
}
}
// Trennzeichen zwischen Wörter einfügen (Morse-Code)
if (cipher == '2') {
if (i < input.length() - 1) cout << delimiter;
}
// Eingabe beibehalten, falls diese nicht umgewandelt wurde
if ((cipher == '3') || (cipher == '6')) {
if (check == false) cout << input[i];
}
}
if ((cipher == '4') || (cipher == '5')) {
// Satzzeichen beibehalten
for (j = 0; j < sizeof(punctuation); j++) {
if (input[i] == punctuation[j]) cout << input[i];
}
if (cipher == '4') {
// Eingabe umwandeln (Cäsar-Verschlüsselung)
if (isupper(input[i])) cout << char(((int(input[i]) - 65 + key) % 26) + 65);
if (islower(input[i])) cout << char(((int(input[i]) - 65 + key - 6) % 26) + 97);
}
if (cipher == '5') {
// Eingabe umwandeln (Vigenere-Verschlüsselung)
keyword[i] = toupper(keyword[i]);
if (isupper(input[i])) cout << char(((int(input[i]) + int(keyword[i])) % 26) + 65);
if (islower(input[i])) cout << char(((int(input[i]) + int(keyword[i]) - 6) % 26) + 97);
}
}
}
}
// Verarbeitung und Ausgabe des unverschlüsselten Textes
if (select == '2') {
cout << endl << endl << " Der dechiffrierte Text lautet: " << endl;
cout << endl << " > ";
// Schleife für jeden Buchstaben der Eingabe
for (i = 0; i < input.length(); i++) {
// Zählen der Platzhalter
if ((cipher == '1') || (cipher == '2')) {
if (input[i] == delimiter) z++;
}
if ((cipher == '3') || (cipher == '6')) {
// Innere Schleife für jeden Buchstaben des Alphabets
check = false;
for (j = 0; j < sizeof(alphabet); j++) {
if (cipher == '3') {
// Eingabe zuweisen (Alphabet umdrehen)
if (input[i] == alphabet_reversed[j]) {
cout << alphabet[j];
check = true;
}
}
if (cipher == '6') {
// Eingabe zuweisen (Passwort-Verschlüsselung)
if (input[i] == alphabet_secret[j]) {
cout << alphabet[j];
check = true;
}
}
}
// Eingabe beibehalten, falls diese nicht umgewandelt wurde
if (check == false) cout << input[i];
}
if ((cipher == '4') || (cipher == '5')) {
// Satzzeichen beibehalten
for (j = 0; j < sizeof(punctuation); j++) {
if (input[i] == punctuation[j]) cout << input[i];
}
// Eingabe zurück umwandeln (Cäsar-Verschlüsselung)
if (cipher == '4') {
if (isupper(input[i])) cout << char(((int(input[i]) - 65 - key + 2080000000) % 26) + 65);
if (islower(input[i])) cout << char(((int(input[i]) - 65 - key - 6 + 2080000000) % 26) + 97);
}
// Eingabe zurück umwandeln (Vigenere-Verschlüsselung)
if (cipher == '5') {
keyword[i] = toupper(keyword[i]);
if (isupper(input[i])) cout << char(((int(input[i]) - int(keyword[i]) + 26) % 26) + 65);
if (islower(input[i])) cout << char(((int(input[i]) - int(keyword[i]) + 20) % 26) + 97);
}
}
}
if ((cipher == '1') || (cipher == '2')) {
// Splitten der Eingabe
for (k = 0; k < z; k++) {
pos = input.find(delimiter);
token = input.substr(0, pos);
tokens.push_back(token);
input.erase(0, pos + 1);
}
// Schleife für alle gesplitteten Strings
for (i = 0; i < z; i++) {
// String als Buchstabe darstellen (ASCII-Code)
if (cipher == '1') {
cout << char(stoi(tokens[i]));
}
if (cipher == '2') {
// Innere Schleife für jeden Buchstaben des Morse-Codes
for (j = 0; j < (sizeof(morse) / sizeof(string)); j++) {
// String als Buchstabe darstellen (Morse-Code)
if (tokens[i].compare(morse[j]) == 0) {
cout << alphabet[j];
break;
}
}
}
}
}
}
// TO-DO: Abfrage zum Wiederholen des Programms
// Programmende
cout << endl << endl;
return 0;
}
| [
"noreply@github.com"
] | BadPrankster.noreply@github.com |
d48935d0e86e2631e3e15f1505bbc3892e3d31dd | 961a933921a24c6c51aa68f392cc7e94119a28eb | /FRAMEWURK/Source/ModelHandler.cpp | 1f750f20ebf61399dedb8836a645d56cd41c6457 | [] | no_license | Amat5/Zoomed | d62a5c5195272548da560653e628215c599799c0 | f2904f52b57d10a1be48ea706fb0e673238d6ee0 | refs/heads/master | 2021-01-15T16:37:40.904265 | 2015-08-27T12:05:19 | 2015-08-27T12:05:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,395 | cpp | #include "ModelHandler.h"
#include "MyMath.h"
ModelHandler::ModelHandler()
{
std::cout << "Model Handler Initialized" << std::endl;
}
ModelHandler::~ModelHandler(void)
{
for(unsigned int i = 0; i < m_worldList.size(); ++i)
{
delete m_worldList[i];
}
m_worldList.clear();
for(unsigned int i = 0; i < m_objectList.size(); ++i)
{
delete m_objectList[i];
}
m_objectList.clear();
for(unsigned int i = 0; i < m_itemList.size(); ++i)
{
delete m_itemList[i];
}
m_itemList.clear();
for(unsigned i = 0; i < m_guiList.size(); ++i)
{
delete m_guiList[i];
}
m_guiList.clear();
}
void ModelHandler::Init() //Anything that moves in the game
{
Math::InitRNG();
player = new Player("Josh");
player->setPosition(Vector3(32,-32, 0));
camera.Init(Vector3(-256,-256,416),Vector3(-256,-256,0),Vector3(0,1,0));
m_status = STATE_MENU;
currentWorld = WORLD_SIGHT_TUTORIAL;
// MAIN MENU
World* newWorld = new World(WORLD_MAINMENU);
m_worldList.push_back(newWorld);
// Give a 10 space buffer to the top and left for corridors
Room* newRoom = new Room(ROOM_MAINMENU, 800, 1024, 26, 32, 800, 1024,32,TILESET_MAIN_MENU, 10, 30, 0);
newRoom->LoadMap("MapData//Main_Menu//MainMenu_Foreground.csv","MapData//Main_Menu//MainMenu_Scenery.csv","MapData//Main_Menu//MainMenu_Background.csv","MapData//Main_Menu//MainMenu_Background.csv");
m_worldList[0]->m_roomList.push_back(newRoom);
// TEST WORLD
newWorld = new World(WORLD_TEST);
m_worldList.push_back(newWorld);
newRoom = new Room(ROOM_TESTPUZZLE, 512, 512, 16, 16, 512, 512,32,TILESET_ROOMS, 10, 30, 0);
newRoom->addExit(EXIT_DOWN);
newRoom->LoadMap("MapData//NIGHT3//P_ROOM_ONE_BACKGROUND.csv","MapData//NIGHT3//P_ROOM_ONE_BACKGROUND.csv","MapData//NIGHT3//P_ROOM_ONE_BACKGROUND.csv","MapData//NIGHT3//P_ROOM_ONE_BACKGROUND.csv");
m_worldList[1]->m_roomList.push_back(newRoom);
newRoom = new Room(ROOM_TESTPUZZLE, 512, 512, 16, 16, 512, 512,32,TILESET_ROOMS, 30, 40, 1);
newRoom->addExit(EXIT_DOWN);
newRoom->LoadMap("MapData//NIGHT3//P_ROOM_ONE_BACKGROUND.csv","MapData//NIGHT3//P_ROOM_ONE_BACKGROUND.csv","MapData//NIGHT3//P_ROOM_ONE_BACKGROUND.csv","MapData//NIGHT3//P_ROOM_ONE_BACKGROUND.csv");
m_worldList[1]->m_roomList.push_back(newRoom);
newRoom = new Room(ROOM_TESTPUZZLE, 512, 512, 16, 16, 512, 512,32,TILESET_ROOMS, 50, 70, 2);
newRoom->addExit(EXIT_DOWN);
newRoom->LoadMap("MapData//NIGHT3//P_ROOM_ONE_BACKGROUND.csv","MapData//NIGHT3//P_ROOM_ONE_BACKGROUND.csv","MapData//NIGHT3//P_ROOM_ONE_BACKGROUND.csv","MapData//NIGHT3//P_ROOM_ONE_BACKGROUND.csv");
m_worldList[1]->m_roomList.push_back(newRoom);
newWorld = new World(WORLD_MECH);
m_worldList.push_back(newWorld);
newRoom = new Room(ROOM_MECH, 928, 768, 29, 24, 928, 768,32,TILESET_POOL, 10, 30, 0);
newRoom->addExit(EXIT_LEFT);
newRoom->LoadMap("MapData//MECH//Background.csv","MapData//MECH//Background.csv","MapData//MECH//Background.csv","MapData//MECH//Background.csv");
m_worldList[2]->m_roomList.push_back(newRoom);
newRoom = new Room(ROOM_MECH, 928, 768, 29, 24, 928, 768,32,TILESET_POOL, 80, 80, 1);
newRoom->addExit(EXIT_RIGHT);
newRoom->LoadMap("MapData//MECH//Background.csv","MapData//MECH//Background.csv","MapData//MECH//Background.csv","MapData//MECH//Background.csv");
m_worldList[2]->m_roomList.push_back(newRoom);
newWorld = new World(WORLD_FRIENDS_TUTORIAL);
m_worldList.push_back(newWorld);
newRoom = new Room(ROOM_TUTORIAL_FRIENDS, 896, 1408, 44, 28, 896, 1408,32,TILESET_BLUE, 20, 20, 0);
//newRoom->addExit(EXIT_DOWN);
newRoom->LoadMap("MapData//Friends//Friends_Tutorial_Foreground.csv","MapData//Friends//Friends_Tutorial_Scenery.csv","MapData//Friends//Friends_Tutorial_Background.csv","MapData//Friends//Friends_Tutorial_Background.csv");
m_worldList[3]->m_roomList.push_back(newRoom);
newWorld = new World(WORLD_SIGHT_TUTORIAL);
m_worldList.push_back(newWorld);
newRoom = new Room(ROOM_TUTORIAL_FRIENDS, 800, 1024, 32, 25, 800, 1024,32,TILESET_RED, 20, 20, 0);
//newRoom->addExit(EXIT_DOWN);
newRoom->LoadMap("MapData//NIGHT2//tutorial//lib_foreground.csv","MapData//NIGHT2//tutorial//lib_scenery.csv","MapData//NIGHT2//tutorial//lib_backgorund.csv","MapData//NIGHT2//tutorial//lib_backgorund.csv");
m_worldList[4]->m_roomList.push_back(newRoom);
for (unsigned i = 0; i < m_worldList.size(); i++)
{
for (unsigned j = 0; j < m_worldList[i]->m_roomList.size(); j++)
{
m_worldList[i]->m_roomList[j]->generateRoom();
}
}
for (unsigned i = 0; i < m_worldList.size(); i++)
{
m_worldList[i]->initWorld();
}
//Enemy Code
Evil = new EnemyMelee;
Evil->SetPos(32,-32);
Evil->SetData(m_worldList[currentWorld]->collisionData);
Evil->SetDelay(0.1);
}
bool ModelHandler::InitObjects()
{
GameObject * object = new GameObject("Test Animation");
object->addMesh(MeshBuilder::GenerateSpriteAnimation("Test Animation",1,3,24.f,48.f));
object->getMesh()->textureArray[0] = LoadTGA("Images//playerTest.tga"); //Current State
m_objectList.push_back(object);
SpriteAnimation *playerAnimation = dynamic_cast<SpriteAnimation*>(m_objectList[0]->getMesh());
if(playerAnimation)
{
playerAnimation->m_anim = new Animation();
playerAnimation->m_anim->Set(0,2,0,0.1f);
}
object = new GameObject("Axes");
object->addMesh(MeshBuilder::GenerateAxes("Axes", 100000, 100000, 100000));
m_objectList.push_back(object);
//DON'T PUSH ANYTHING ELSE
object = new GameObject("Main Menu", TYPE_MAP, Vector3(0, 0, 0));
object->addMesh(MeshBuilder::GenerateTileMap("World Background",Color(0.f,0.f,0.f),m_worldList[0]->backgroundData,32,32));
object->getMesh(0)->textureArray[0] = LoadTGA("Images//Tilesets//Tileset_MAINMENU.tga");
object->addMesh(MeshBuilder::GenerateTileMap("World Scenery",Color(0.f,0.f,0.f),m_worldList[0]->sceneryData,32,32));
object->getMesh(1)->textureArray[0] = LoadTGA("Images//Tilesets//Tileset_MAINMENU.tga");
object->addMesh(MeshBuilder::GenerateTileMap("World Foreground",Color(0.f,0.f,0.f),m_worldList[0]->foregroundData,32,32));
object->getMesh(2)->textureArray[0] = LoadTGA("Images//Tilesets//Tileset_MAINMENU.tga");
m_objectList.push_back(object);
object = new GameObject("Test Puzzle World", TYPE_MAP, Vector3(0, 0, 0));
object->addMesh(MeshBuilder::GenerateTileMap("World Background",Color(0.f,0.f,0.f),m_worldList[1]->backgroundData,32,32));
object->getMesh(0)->textureArray[0] = LoadTGA("Images//Tilesets//Tileset_ROOMS.tga");
object->addMesh(MeshBuilder::GenerateTileMap("World Scenery",Color(0.f,0.f,0.f),m_worldList[1]->sceneryData,32,32));
object->getMesh(1)->textureArray[0] = LoadTGA("Images//Tilesets//Tileset_ROOMS.tga");
object->addMesh(MeshBuilder::GenerateTileMap("World Foreground",Color(0.f,0.f,0.f),m_worldList[1]->foregroundData,32,32));
object->getMesh(2)->textureArray[0] = LoadTGA("Images//Tilesets//Tileset_ROOMS.tga");
m_objectList.push_back(object);
object = new GameObject("Test Mech World", TYPE_MAP, Vector3(0, 0, 0));
object->addMesh(MeshBuilder::GenerateTileMap("World Background",Color(0.f,0.f,0.f),m_worldList[2]->backgroundData,32,32));
object->getMesh(0)->textureArray[0] = LoadTGA("Images//Tilesets//Tileset_POOL.tga");
object->addMesh(MeshBuilder::GenerateTileMap("World Scenery",Color(0.f,0.f,0.f),m_worldList[2]->sceneryData,32,32));
object->getMesh(1)->textureArray[0] = LoadTGA("Images//Tilesets//Tileset_POOL.tga");
object->addMesh(MeshBuilder::GenerateTileMap("World Foreground",Color(0.f,0.f,0.f),m_worldList[2]->foregroundData,32,32));
object->getMesh(2)->textureArray[0] = LoadTGA("Images//Tilesets//Tileset_POOL.tga");
m_objectList.push_back(object);
object = new GameObject("Friends Tutorial", TYPE_MAP, Vector3(0, 0, 0));
object->addMesh(MeshBuilder::GenerateTileMap("World Background",Color(0.f,0.f,0.f),m_worldList[3]->backgroundData,32,32));
object->getMesh(0)->textureArray[0] = LoadTGA("Images//Tilesets//Tileset_BLUE.tga");
object->addMesh(MeshBuilder::GenerateTileMap("World Scenery",Color(0.f,0.f,0.f),m_worldList[3]->sceneryData,32,32));
object->getMesh(1)->textureArray[0] = LoadTGA("Images//Tilesets//Tileset_BLUE.tga");
object->addMesh(MeshBuilder::GenerateTileMap("World Foreground",Color(0.f,0.f,0.f),m_worldList[3]->foregroundData,32,32));
object->getMesh(2)->textureArray[0] = LoadTGA("Images//Tilesets//Tileset_BLUE.tga");
m_objectList.push_back(object);
object = new GameObject("Sight Tutorial", TYPE_MAP, Vector3(0, 0, 0));
object->addMesh(MeshBuilder::GenerateTileMap("World Background",Color(0.f,0.f,0.f),m_worldList[4]->backgroundData,32,48));
object->getMesh(0)->textureArray[0] = LoadTGA("Images//Tilesets//Tileset_RED.tga");
object->addMesh(MeshBuilder::GenerateTileMap("World Scenery",Color(0.f,0.f,0.f),m_worldList[4]->sceneryData,32,48));
object->getMesh(1)->textureArray[0] = LoadTGA("Images//Tilesets//Tileset_RED.tga");
object->addMesh(MeshBuilder::GenerateTileMap("World Foreground",Color(0.f,0.f,0.f),m_worldList[4]->foregroundData,32,48));
object->getMesh(2)->textureArray[0] = LoadTGA("Images//Tilesets//Tileset_RED.tga");
m_objectList.push_back(object);
object = new GameObject("Game Text Foxscript",TYPE_TEXT);
object->addMesh(MeshBuilder::GenerateText("Game Text Foxscript",16,16));
object->getMesh()->textureID = LoadTGA("Images//Fonts//foxscript.tga");
m_objectList.push_back(object);
object = new GameObject("Game Text Basis", TYPE_TEXT);
object->addMesh(MeshBuilder::GenerateText("Game Text Basis",16,16));
object->getMesh()->textureID = LoadTGA("Images//Fonts//basis33.tga");
m_objectList.push_back(object);
object = new GameObject("Enemy", TYPE_ENEMY, Vector3(Evil->GetPos_x(),Evil->GetPos_y(),0.f));
object->addMesh(MeshBuilder::GenerateQuad("Enemy",Color(1.f,0.f,0.f),32.f));
m_objectList.push_back(object);
Item * testItem = new Item("Test Item 1",ITEM_REDUCE_FEAR_POTION);
testItem->setDescription("Just a test item :D");
m_itemList.push_back(testItem);
testItem = new Item("Test Item 2");
testItem->setDescription("Equipment Test");
m_itemList.push_back(testItem);
//std::cout << m_itemList[0]->toString() << std::endl;
//ITEM INVENTORY TESTING
this->getPlayer()->getInventory().addItem(m_itemList[0]); //ADD ITEM (Consumable)
this->getPlayer()->getInventory().addItem(m_itemList[1]); //ADD ITEM (Equipment)
//std::cout << this->getPlayer()->getInventory().getItem(1)->toString() << std::endl; //GET NAME OF ITEM
//this->getPlayer()->getInventory().removeItem(1); //REMOVE ITEM FROM INVENTORY
Gui * newGui = new Gui("Test Border","Images//UI//Item_Border.tga");
m_guiList.push_back(newGui);
newGui = new Gui("Fear Border","Images//UI//Fear_Border.tga");
m_guiList.push_back(newGui);
newGui = new Gui("Fear","Images//UI//Fear.tga");
m_guiList.push_back(newGui);
return true;
}
void ModelHandler::Update(const double dt)
{
camera.Update(dt);
/*std::cout << "Start" << std::endl;
for(int i = 0; i < m_worldList[currentWorld]->sceneryData.size(); ++i)
{
for(int j = 0; j < m_worldList[currentWorld]->sceneryData[i].size(); ++j)
{
std::cout << Mszm_worldList[currentWorld]->collisionData[i][j] << " ";
}
std::cout << std::endl;
}
std::cout << "End" << std::endl;
system("pause");*/
player->update(dt,m_worldList[currentWorld], m_worldList[currentWorld]->getRoom(player->getPosition().x, player->getPosition().y));
//std::cout << (player->getPosition().x) << " " << (player->getPosition().y) << std::endl;
//std::cout << (int)((player->getPosition().x)/32) << " " << (int)((player->getPosition().y)/32) << std::endl;
if (m_worldList[currentWorld]->UpdateWorld)
{
if (currentWorld == WORLD_FRIENDS_TUTORIAL)
{
m_objectList[currentWorld+2]->setMesh(MeshBuilder::GenerateTileMap("World Scenery",Color(0.f,0.f,0.f),m_worldList[currentWorld]->sceneryData,32,32), 1);
m_objectList[currentWorld+2]->getMesh(1)->textureArray[0] = LoadTGA("Images//Tilesets//Tileset_BLUE.tga");
}
m_worldList[currentWorld]->UpdateWorld = false;
}
//Enemy Code
Evil->Update(player->getPosition().x, player->getPosition().y, dt);
m_objectList[8]->setPosition(Vector3(Evil->GetPos_x(),Evil->GetPos_y(),0));
}
Camera ModelHandler::getCamera()
{
return this->camera;
}
Game ModelHandler::getEnvironment()
{
return this->theEnvironment;
}
Player * ModelHandler::getPlayer()
{
return this->player;
}
| [
"crwengyew@gmail.com"
] | crwengyew@gmail.com |
9d1ce6c5a58a6d7e6e21c5ae243f7232fb04472b | 998d6de509eb008a46a591e58e31773a5cf44ee6 | /Lecture-13/ElephantWays.cpp | e75bba42ddd7911b0f3eaa6d759ede9e4b701cc5 | [] | no_license | abhijeetgu/LPMNOIDA11JUNE | 92a514d964ae9cd9efa2b32cfd1576669c947583 | 42ddd9497f12580416d63c6240687946c22c32aa | refs/heads/master | 2020-06-21T08:29:56.582265 | 2019-07-16T05:23:19 | 2019-07-16T05:23:19 | 197,395,220 | 1 | 0 | null | 2019-07-17T13:28:46 | 2019-07-17T13:28:46 | null | UTF-8 | C++ | false | false | 418 | cpp | // ElephantWays
#include <iostream>
using namespace std;
int ElephantWays(int i,int j){
// Base case
if(i==0 && j==0){
return 1;
}
// Recursive case
int ans=0;
// Add all the previous rows and cols
for(int k=0;k<=i-1;k++){
ans += ElephantWays(k,j);
}
for(int k=0;k<=j-1;k++){
ans += ElephantWays(i,k);
}
return ans;
}
int main(){
int i,j;
cin>>i>>j;
cout<<ElephantWays(i,j)<<endl;
return 0;
} | [
"kartik.mathur10@gmail.com"
] | kartik.mathur10@gmail.com |
0fb8ef48bb283059be5830fd984c4336d4a33c39 | ac2274b0a9bdddc2e786c0cbede3262b3b45a8ae | /cetsckeepalive.hpp | 537a33a4204913aa2fdcaffeea9e9514fce11557 | [] | no_license | hjgode/ceTSC | f2583f348fab833b44e355d09a206caaffee63fe | 3823921a3b7e03e039ff712b4ecf2c3eede06ca4 | refs/heads/master | 2021-01-18T18:41:50.515797 | 2016-06-27T07:55:24 | 2016-06-27T07:55:24 | 61,810,663 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,234 | hpp | //
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed this sample source code. If
// you did not accept the terms of the license agreement, you are not
// authorized to use this sample source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the LICENSE.RTF on your install media or the root of your tools installation.
// THE SAMPLE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
//
#ifndef __INCLUDED_CETSCKEEPALIVE_HPP__
#define __INCLUDED_CETSCKEEPALIVE_HPP__
#include <windows.h>
#ifndef _MAINWND_H_
#include "MainWnd.h"
#endif // _MAINWND_H_
class CetscKeepAlive_t
{
private:
static const int s_KeepAliveInterval = 5*60*1000;//5 minutes in millisec
static CMainWnd* s_pCetscMainWnd;
static HANDLE s_KeepAliveEvent;
int m_TimerId;
public:
CetscKeepAlive_t(
CMainWnd* pCetscMainWnd
);
~CetscKeepAlive_t(
);
private:
static
void
CALLBACK
TimerProc(
HWND hwnd,
UINT uMsg,
UINT idEvent,
DWORD dwTime
);
};
#endif //__INCLUDED_CETSCKEEPALIVE_HPP__
| [
"hjgode@gmail.com"
] | hjgode@gmail.com |
6ac50477b69dd52a480878309be0173eb328de09 | 387549ab27d89668e656771a19c09637612d57ed | /DRGLib UE project/Source/FSD/Public/DownCameraTargetChangedDelegate.h | f809f67d81a29bb25178dc7495353a75d2592b14 | [
"MIT"
] | permissive | SamsDRGMods/DRGLib | 3b7285488ef98b7b22ab4e00fec64a4c3fb6a30a | 76f17bc76dd376f0d0aa09400ac8cb4daad34ade | refs/heads/main | 2023-07-03T10:37:47.196444 | 2023-04-07T23:18:54 | 2023-04-07T23:18:54 | 383,509,787 | 16 | 5 | MIT | 2023-04-07T23:18:55 | 2021-07-06T15:08:14 | C++ | UTF-8 | C++ | false | false | 247 | h | #pragma once
#include "CoreMinimal.h"
#include "DownCameraTargetChangedDelegate.generated.h"
class APlayerCharacter;
UDELEGATE(BlueprintCallable) DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FDownCameraTargetChanged, APlayerCharacter*, Target);
| [
"samamstar@gmail.com"
] | samamstar@gmail.com |
48755ce8352b443304de0443acdba7322924627c | b00d62e5385f1a929712ec43dcc0a12673adde7c | /fast_simple/DistSSE.pb.cc | 231d2b166644e2099aaf8f175f56087edc9cd69b | [] | no_license | iceboy926/VFSSSE | 602ac89e33bcae7aa6cacc5026824dc4342e5dd6 | aed41357213386796630275124c7a7d88859a764 | refs/heads/master | 2022-04-17T10:07:57.279650 | 2020-03-09T07:21:21 | 2020-03-09T07:21:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 71,272 | cc | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: DistSSE.proto
#include "DistSSE.pb.h"
#include <algorithm>
#include <google/protobuf/stubs/common.h>
#include <google/protobuf/stubs/port.h>
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/wire_format_lite_inl.h>
#include <google/protobuf/descriptor.h>
#include <google/protobuf/generated_message_reflection.h>
#include <google/protobuf/reflection_ops.h>
#include <google/protobuf/wire_format.h>
// This is a temporary google only hack
#ifdef GOOGLE_PROTOBUF_ENFORCE_UNIQUENESS
#include "third_party/protobuf/version.h"
#endif
// @@protoc_insertion_point(includes)
namespace DistSSE {
class SetupRequestMessageDefaultTypeInternal {
public:
::google::protobuf::internal::ExplicitlyConstructed<SetupRequestMessage>
_instance;
} _SetupRequestMessage_default_instance_;
class SearchRequestMessageDefaultTypeInternal {
public:
::google::protobuf::internal::ExplicitlyConstructed<SearchRequestMessage>
_instance;
} _SearchRequestMessage_default_instance_;
class SearchReplyDefaultTypeInternal {
public:
::google::protobuf::internal::ExplicitlyConstructed<SearchReply>
_instance;
} _SearchReply_default_instance_;
class CacheRequestMessageDefaultTypeInternal {
public:
::google::protobuf::internal::ExplicitlyConstructed<CacheRequestMessage>
_instance;
} _CacheRequestMessage_default_instance_;
class UpdateRequestMessageDefaultTypeInternal {
public:
::google::protobuf::internal::ExplicitlyConstructed<UpdateRequestMessage>
_instance;
} _UpdateRequestMessage_default_instance_;
class ExecuteStatusDefaultTypeInternal {
public:
::google::protobuf::internal::ExplicitlyConstructed<ExecuteStatus>
_instance;
} _ExecuteStatus_default_instance_;
} // namespace DistSSE
namespace protobuf_DistSSE_2eproto {
static void InitDefaultsSetupRequestMessage() {
GOOGLE_PROTOBUF_VERIFY_VERSION;
{
void* ptr = &::DistSSE::_SetupRequestMessage_default_instance_;
new (ptr) ::DistSSE::SetupRequestMessage();
::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
}
::DistSSE::SetupRequestMessage::InitAsDefaultInstance();
}
::google::protobuf::internal::SCCInfo<0> scc_info_SetupRequestMessage =
{{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsSetupRequestMessage}, {}};
static void InitDefaultsSearchRequestMessage() {
GOOGLE_PROTOBUF_VERIFY_VERSION;
{
void* ptr = &::DistSSE::_SearchRequestMessage_default_instance_;
new (ptr) ::DistSSE::SearchRequestMessage();
::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
}
::DistSSE::SearchRequestMessage::InitAsDefaultInstance();
}
::google::protobuf::internal::SCCInfo<0> scc_info_SearchRequestMessage =
{{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsSearchRequestMessage}, {}};
static void InitDefaultsSearchReply() {
GOOGLE_PROTOBUF_VERIFY_VERSION;
{
void* ptr = &::DistSSE::_SearchReply_default_instance_;
new (ptr) ::DistSSE::SearchReply();
::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
}
::DistSSE::SearchReply::InitAsDefaultInstance();
}
::google::protobuf::internal::SCCInfo<0> scc_info_SearchReply =
{{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsSearchReply}, {}};
static void InitDefaultsCacheRequestMessage() {
GOOGLE_PROTOBUF_VERIFY_VERSION;
{
void* ptr = &::DistSSE::_CacheRequestMessage_default_instance_;
new (ptr) ::DistSSE::CacheRequestMessage();
::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
}
::DistSSE::CacheRequestMessage::InitAsDefaultInstance();
}
::google::protobuf::internal::SCCInfo<0> scc_info_CacheRequestMessage =
{{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsCacheRequestMessage}, {}};
static void InitDefaultsUpdateRequestMessage() {
GOOGLE_PROTOBUF_VERIFY_VERSION;
{
void* ptr = &::DistSSE::_UpdateRequestMessage_default_instance_;
new (ptr) ::DistSSE::UpdateRequestMessage();
::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
}
::DistSSE::UpdateRequestMessage::InitAsDefaultInstance();
}
::google::protobuf::internal::SCCInfo<0> scc_info_UpdateRequestMessage =
{{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsUpdateRequestMessage}, {}};
static void InitDefaultsExecuteStatus() {
GOOGLE_PROTOBUF_VERIFY_VERSION;
{
void* ptr = &::DistSSE::_ExecuteStatus_default_instance_;
new (ptr) ::DistSSE::ExecuteStatus();
::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
}
::DistSSE::ExecuteStatus::InitAsDefaultInstance();
}
::google::protobuf::internal::SCCInfo<0> scc_info_ExecuteStatus =
{{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsExecuteStatus}, {}};
void InitDefaults() {
::google::protobuf::internal::InitSCC(&scc_info_SetupRequestMessage.base);
::google::protobuf::internal::InitSCC(&scc_info_SearchRequestMessage.base);
::google::protobuf::internal::InitSCC(&scc_info_SearchReply.base);
::google::protobuf::internal::InitSCC(&scc_info_CacheRequestMessage.base);
::google::protobuf::internal::InitSCC(&scc_info_UpdateRequestMessage.base);
::google::protobuf::internal::InitSCC(&scc_info_ExecuteStatus.base);
}
::google::protobuf::Metadata file_level_metadata[6];
const ::google::protobuf::uint32 TableStruct::offsets[] GOOGLE_PROTOBUF_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = {
~0u, // no _has_bits_
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::DistSSE::SetupRequestMessage, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::DistSSE::SetupRequestMessage, setup_size_),
~0u, // no _has_bits_
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::DistSSE::SearchRequestMessage, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::DistSSE::SearchRequestMessage, kw_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::DistSSE::SearchRequestMessage, tw_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::DistSSE::SearchRequestMessage, uc_),
~0u, // no _has_bits_
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::DistSSE::SearchReply, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::DistSSE::SearchReply, ind_),
~0u, // no _has_bits_
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::DistSSE::CacheRequestMessage, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::DistSSE::CacheRequestMessage, tw_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::DistSSE::CacheRequestMessage, inds_),
~0u, // no _has_bits_
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::DistSSE::UpdateRequestMessage, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::DistSSE::UpdateRequestMessage, l_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::DistSSE::UpdateRequestMessage, e_),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::DistSSE::UpdateRequestMessage, counter_),
~0u, // no _has_bits_
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::DistSSE::ExecuteStatus, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(::DistSSE::ExecuteStatus, status_),
};
static const ::google::protobuf::internal::MigrationSchema schemas[] GOOGLE_PROTOBUF_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = {
{ 0, -1, sizeof(::DistSSE::SetupRequestMessage)},
{ 6, -1, sizeof(::DistSSE::SearchRequestMessage)},
{ 14, -1, sizeof(::DistSSE::SearchReply)},
{ 20, -1, sizeof(::DistSSE::CacheRequestMessage)},
{ 27, -1, sizeof(::DistSSE::UpdateRequestMessage)},
{ 35, -1, sizeof(::DistSSE::ExecuteStatus)},
};
static ::google::protobuf::Message const * const file_default_instances[] = {
reinterpret_cast<const ::google::protobuf::Message*>(&::DistSSE::_SetupRequestMessage_default_instance_),
reinterpret_cast<const ::google::protobuf::Message*>(&::DistSSE::_SearchRequestMessage_default_instance_),
reinterpret_cast<const ::google::protobuf::Message*>(&::DistSSE::_SearchReply_default_instance_),
reinterpret_cast<const ::google::protobuf::Message*>(&::DistSSE::_CacheRequestMessage_default_instance_),
reinterpret_cast<const ::google::protobuf::Message*>(&::DistSSE::_UpdateRequestMessage_default_instance_),
reinterpret_cast<const ::google::protobuf::Message*>(&::DistSSE::_ExecuteStatus_default_instance_),
};
void protobuf_AssignDescriptors() {
AddDescriptors();
AssignDescriptors(
"DistSSE.proto", schemas, file_default_instances, TableStruct::offsets,
file_level_metadata, NULL, NULL);
}
void protobuf_AssignDescriptorsOnce() {
static ::google::protobuf::internal::once_flag once;
::google::protobuf::internal::call_once(once, protobuf_AssignDescriptors);
}
void protobuf_RegisterTypes(const ::std::string&) GOOGLE_PROTOBUF_ATTRIBUTE_COLD;
void protobuf_RegisterTypes(const ::std::string&) {
protobuf_AssignDescriptorsOnce();
::google::protobuf::internal::RegisterAllTypes(file_level_metadata, 6);
}
void AddDescriptorsImpl() {
InitDefaults();
static const char descriptor[] GOOGLE_PROTOBUF_ATTRIBUTE_SECTION_VARIABLE(protodesc_cold) = {
"\n\rDistSSE.proto\022\007DistSSE\032\033google/protobu"
"f/empty.proto\")\n\023SetupRequestMessage\022\022\n\n"
"setup_size\030\001 \001(\004\":\n\024SearchRequestMessage"
"\022\n\n\002kw\030\001 \001(\014\022\n\n\002tw\030\002 \001(\014\022\n\n\002uc\030\003 \001(\004\"\032\n\013"
"SearchReply\022\013\n\003ind\030\001 \001(\014\"/\n\023CacheRequest"
"Message\022\n\n\002tw\030\001 \001(\014\022\014\n\004inds\030\002 \001(\014\"=\n\024Upd"
"ateRequestMessage\022\t\n\001l\030\001 \001(\014\022\t\n\001e\030\002 \001(\014\022"
"\017\n\007counter\030\003 \001(\004\"\037\n\rExecuteStatus\022\016\n\006sta"
"tus\030\001 \001(\0102\241\003\n\003RPC\022\?\n\005setup\022\034.DistSSE.Set"
"upRequestMessage\032\026.DistSSE.ExecuteStatus"
"\"\000\022A\n\006search\022\035.DistSSE.SearchRequestMess"
"age\032\024.DistSSE.SearchReply\"\0000\001\022A\n\006update\022"
"\035.DistSSE.UpdateRequestMessage\032\026.DistSSE"
".ExecuteStatus\"\000\022I\n\014batch_update\022\035.DistS"
"SE.UpdateRequestMessage\032\026.DistSSE.Execut"
"eStatus\"\000(\001\022\?\n\005cache\022\034.DistSSE.CacheRequ"
"estMessage\032\026.DistSSE.ExecuteStatus\"\000\022G\n\013"
"batch_cache\022\034.DistSSE.CacheRequestMessag"
"e\032\026.DistSSE.ExecuteStatus\"\000(\001b\006proto3"
};
::google::protobuf::DescriptorPool::InternalAddGeneratedFile(
descriptor, 757);
::google::protobuf::MessageFactory::InternalRegisterGeneratedFile(
"DistSSE.proto", &protobuf_RegisterTypes);
::protobuf_google_2fprotobuf_2fempty_2eproto::AddDescriptors();
}
void AddDescriptors() {
static ::google::protobuf::internal::once_flag once;
::google::protobuf::internal::call_once(once, AddDescriptorsImpl);
}
// Force AddDescriptors() to be called at dynamic initialization time.
struct StaticDescriptorInitializer {
StaticDescriptorInitializer() {
AddDescriptors();
}
} static_descriptor_initializer;
} // namespace protobuf_DistSSE_2eproto
namespace DistSSE {
// ===================================================================
void SetupRequestMessage::InitAsDefaultInstance() {
}
#if !defined(_MSC_VER) || _MSC_VER >= 1900
const int SetupRequestMessage::kSetupSizeFieldNumber;
#endif // !defined(_MSC_VER) || _MSC_VER >= 1900
SetupRequestMessage::SetupRequestMessage()
: ::google::protobuf::Message(), _internal_metadata_(NULL) {
::google::protobuf::internal::InitSCC(
&protobuf_DistSSE_2eproto::scc_info_SetupRequestMessage.base);
SharedCtor();
// @@protoc_insertion_point(constructor:DistSSE.SetupRequestMessage)
}
SetupRequestMessage::SetupRequestMessage(const SetupRequestMessage& from)
: ::google::protobuf::Message(),
_internal_metadata_(NULL) {
_internal_metadata_.MergeFrom(from._internal_metadata_);
setup_size_ = from.setup_size_;
// @@protoc_insertion_point(copy_constructor:DistSSE.SetupRequestMessage)
}
void SetupRequestMessage::SharedCtor() {
setup_size_ = GOOGLE_ULONGLONG(0);
}
SetupRequestMessage::~SetupRequestMessage() {
// @@protoc_insertion_point(destructor:DistSSE.SetupRequestMessage)
SharedDtor();
}
void SetupRequestMessage::SharedDtor() {
}
void SetupRequestMessage::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
const ::google::protobuf::Descriptor* SetupRequestMessage::descriptor() {
::protobuf_DistSSE_2eproto::protobuf_AssignDescriptorsOnce();
return ::protobuf_DistSSE_2eproto::file_level_metadata[kIndexInFileMessages].descriptor;
}
const SetupRequestMessage& SetupRequestMessage::default_instance() {
::google::protobuf::internal::InitSCC(&protobuf_DistSSE_2eproto::scc_info_SetupRequestMessage.base);
return *internal_default_instance();
}
void SetupRequestMessage::Clear() {
// @@protoc_insertion_point(message_clear_start:DistSSE.SetupRequestMessage)
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
setup_size_ = GOOGLE_ULONGLONG(0);
_internal_metadata_.Clear();
}
bool SetupRequestMessage::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure
::google::protobuf::uint32 tag;
// @@protoc_insertion_point(parse_start:DistSSE.SetupRequestMessage)
for (;;) {
::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
tag = p.first;
if (!p.second) goto handle_unusual;
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// uint64 setup_size = 1;
case 1: {
if (static_cast< ::google::protobuf::uint8>(tag) ==
static_cast< ::google::protobuf::uint8>(8u /* 8 & 0xFF */)) {
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
::google::protobuf::uint64, ::google::protobuf::internal::WireFormatLite::TYPE_UINT64>(
input, &setup_size_)));
} else {
goto handle_unusual;
}
break;
}
default: {
handle_unusual:
if (tag == 0) {
goto success;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, _internal_metadata_.mutable_unknown_fields()));
break;
}
}
}
success:
// @@protoc_insertion_point(parse_success:DistSSE.SetupRequestMessage)
return true;
failure:
// @@protoc_insertion_point(parse_failure:DistSSE.SetupRequestMessage)
return false;
#undef DO_
}
void SetupRequestMessage::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// @@protoc_insertion_point(serialize_start:DistSSE.SetupRequestMessage)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// uint64 setup_size = 1;
if (this->setup_size() != 0) {
::google::protobuf::internal::WireFormatLite::WriteUInt64(1, this->setup_size(), output);
}
if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
(::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output);
}
// @@protoc_insertion_point(serialize_end:DistSSE.SetupRequestMessage)
}
::google::protobuf::uint8* SetupRequestMessage::InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const {
(void)deterministic; // Unused
// @@protoc_insertion_point(serialize_to_array_start:DistSSE.SetupRequestMessage)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// uint64 setup_size = 1;
if (this->setup_size() != 0) {
target = ::google::protobuf::internal::WireFormatLite::WriteUInt64ToArray(1, this->setup_size(), target);
}
if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
(::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target);
}
// @@protoc_insertion_point(serialize_to_array_end:DistSSE.SetupRequestMessage)
return target;
}
size_t SetupRequestMessage::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:DistSSE.SetupRequestMessage)
size_t total_size = 0;
if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
(::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()));
}
// uint64 setup_size = 1;
if (this->setup_size() != 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::UInt64Size(
this->setup_size());
}
int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
SetCachedSize(cached_size);
return total_size;
}
void SetupRequestMessage::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:DistSSE.SetupRequestMessage)
GOOGLE_DCHECK_NE(&from, this);
const SetupRequestMessage* source =
::google::protobuf::internal::DynamicCastToGenerated<const SetupRequestMessage>(
&from);
if (source == NULL) {
// @@protoc_insertion_point(generalized_merge_from_cast_fail:DistSSE.SetupRequestMessage)
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
// @@protoc_insertion_point(generalized_merge_from_cast_success:DistSSE.SetupRequestMessage)
MergeFrom(*source);
}
}
void SetupRequestMessage::MergeFrom(const SetupRequestMessage& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:DistSSE.SetupRequestMessage)
GOOGLE_DCHECK_NE(&from, this);
_internal_metadata_.MergeFrom(from._internal_metadata_);
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
if (from.setup_size() != 0) {
set_setup_size(from.setup_size());
}
}
void SetupRequestMessage::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:DistSSE.SetupRequestMessage)
if (&from == this) return;
Clear();
MergeFrom(from);
}
void SetupRequestMessage::CopyFrom(const SetupRequestMessage& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:DistSSE.SetupRequestMessage)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool SetupRequestMessage::IsInitialized() const {
return true;
}
void SetupRequestMessage::Swap(SetupRequestMessage* other) {
if (other == this) return;
InternalSwap(other);
}
void SetupRequestMessage::InternalSwap(SetupRequestMessage* other) {
using std::swap;
swap(setup_size_, other->setup_size_);
_internal_metadata_.Swap(&other->_internal_metadata_);
}
::google::protobuf::Metadata SetupRequestMessage::GetMetadata() const {
protobuf_DistSSE_2eproto::protobuf_AssignDescriptorsOnce();
return ::protobuf_DistSSE_2eproto::file_level_metadata[kIndexInFileMessages];
}
// ===================================================================
void SearchRequestMessage::InitAsDefaultInstance() {
}
#if !defined(_MSC_VER) || _MSC_VER >= 1900
const int SearchRequestMessage::kKwFieldNumber;
const int SearchRequestMessage::kTwFieldNumber;
const int SearchRequestMessage::kUcFieldNumber;
#endif // !defined(_MSC_VER) || _MSC_VER >= 1900
SearchRequestMessage::SearchRequestMessage()
: ::google::protobuf::Message(), _internal_metadata_(NULL) {
::google::protobuf::internal::InitSCC(
&protobuf_DistSSE_2eproto::scc_info_SearchRequestMessage.base);
SharedCtor();
// @@protoc_insertion_point(constructor:DistSSE.SearchRequestMessage)
}
SearchRequestMessage::SearchRequestMessage(const SearchRequestMessage& from)
: ::google::protobuf::Message(),
_internal_metadata_(NULL) {
_internal_metadata_.MergeFrom(from._internal_metadata_);
kw_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
if (from.kw().size() > 0) {
kw_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.kw_);
}
tw_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
if (from.tw().size() > 0) {
tw_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.tw_);
}
uc_ = from.uc_;
// @@protoc_insertion_point(copy_constructor:DistSSE.SearchRequestMessage)
}
void SearchRequestMessage::SharedCtor() {
kw_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
tw_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
uc_ = GOOGLE_ULONGLONG(0);
}
SearchRequestMessage::~SearchRequestMessage() {
// @@protoc_insertion_point(destructor:DistSSE.SearchRequestMessage)
SharedDtor();
}
void SearchRequestMessage::SharedDtor() {
kw_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
tw_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
void SearchRequestMessage::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
const ::google::protobuf::Descriptor* SearchRequestMessage::descriptor() {
::protobuf_DistSSE_2eproto::protobuf_AssignDescriptorsOnce();
return ::protobuf_DistSSE_2eproto::file_level_metadata[kIndexInFileMessages].descriptor;
}
const SearchRequestMessage& SearchRequestMessage::default_instance() {
::google::protobuf::internal::InitSCC(&protobuf_DistSSE_2eproto::scc_info_SearchRequestMessage.base);
return *internal_default_instance();
}
void SearchRequestMessage::Clear() {
// @@protoc_insertion_point(message_clear_start:DistSSE.SearchRequestMessage)
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
kw_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
tw_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
uc_ = GOOGLE_ULONGLONG(0);
_internal_metadata_.Clear();
}
bool SearchRequestMessage::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure
::google::protobuf::uint32 tag;
// @@protoc_insertion_point(parse_start:DistSSE.SearchRequestMessage)
for (;;) {
::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
tag = p.first;
if (!p.second) goto handle_unusual;
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// bytes kw = 1;
case 1: {
if (static_cast< ::google::protobuf::uint8>(tag) ==
static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) {
DO_(::google::protobuf::internal::WireFormatLite::ReadBytes(
input, this->mutable_kw()));
} else {
goto handle_unusual;
}
break;
}
// bytes tw = 2;
case 2: {
if (static_cast< ::google::protobuf::uint8>(tag) ==
static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) {
DO_(::google::protobuf::internal::WireFormatLite::ReadBytes(
input, this->mutable_tw()));
} else {
goto handle_unusual;
}
break;
}
// uint64 uc = 3;
case 3: {
if (static_cast< ::google::protobuf::uint8>(tag) ==
static_cast< ::google::protobuf::uint8>(24u /* 24 & 0xFF */)) {
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
::google::protobuf::uint64, ::google::protobuf::internal::WireFormatLite::TYPE_UINT64>(
input, &uc_)));
} else {
goto handle_unusual;
}
break;
}
default: {
handle_unusual:
if (tag == 0) {
goto success;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, _internal_metadata_.mutable_unknown_fields()));
break;
}
}
}
success:
// @@protoc_insertion_point(parse_success:DistSSE.SearchRequestMessage)
return true;
failure:
// @@protoc_insertion_point(parse_failure:DistSSE.SearchRequestMessage)
return false;
#undef DO_
}
void SearchRequestMessage::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// @@protoc_insertion_point(serialize_start:DistSSE.SearchRequestMessage)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// bytes kw = 1;
if (this->kw().size() > 0) {
::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased(
1, this->kw(), output);
}
// bytes tw = 2;
if (this->tw().size() > 0) {
::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased(
2, this->tw(), output);
}
// uint64 uc = 3;
if (this->uc() != 0) {
::google::protobuf::internal::WireFormatLite::WriteUInt64(3, this->uc(), output);
}
if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
(::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output);
}
// @@protoc_insertion_point(serialize_end:DistSSE.SearchRequestMessage)
}
::google::protobuf::uint8* SearchRequestMessage::InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const {
(void)deterministic; // Unused
// @@protoc_insertion_point(serialize_to_array_start:DistSSE.SearchRequestMessage)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// bytes kw = 1;
if (this->kw().size() > 0) {
target =
::google::protobuf::internal::WireFormatLite::WriteBytesToArray(
1, this->kw(), target);
}
// bytes tw = 2;
if (this->tw().size() > 0) {
target =
::google::protobuf::internal::WireFormatLite::WriteBytesToArray(
2, this->tw(), target);
}
// uint64 uc = 3;
if (this->uc() != 0) {
target = ::google::protobuf::internal::WireFormatLite::WriteUInt64ToArray(3, this->uc(), target);
}
if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
(::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target);
}
// @@protoc_insertion_point(serialize_to_array_end:DistSSE.SearchRequestMessage)
return target;
}
size_t SearchRequestMessage::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:DistSSE.SearchRequestMessage)
size_t total_size = 0;
if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
(::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()));
}
// bytes kw = 1;
if (this->kw().size() > 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::BytesSize(
this->kw());
}
// bytes tw = 2;
if (this->tw().size() > 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::BytesSize(
this->tw());
}
// uint64 uc = 3;
if (this->uc() != 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::UInt64Size(
this->uc());
}
int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
SetCachedSize(cached_size);
return total_size;
}
void SearchRequestMessage::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:DistSSE.SearchRequestMessage)
GOOGLE_DCHECK_NE(&from, this);
const SearchRequestMessage* source =
::google::protobuf::internal::DynamicCastToGenerated<const SearchRequestMessage>(
&from);
if (source == NULL) {
// @@protoc_insertion_point(generalized_merge_from_cast_fail:DistSSE.SearchRequestMessage)
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
// @@protoc_insertion_point(generalized_merge_from_cast_success:DistSSE.SearchRequestMessage)
MergeFrom(*source);
}
}
void SearchRequestMessage::MergeFrom(const SearchRequestMessage& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:DistSSE.SearchRequestMessage)
GOOGLE_DCHECK_NE(&from, this);
_internal_metadata_.MergeFrom(from._internal_metadata_);
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
if (from.kw().size() > 0) {
kw_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.kw_);
}
if (from.tw().size() > 0) {
tw_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.tw_);
}
if (from.uc() != 0) {
set_uc(from.uc());
}
}
void SearchRequestMessage::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:DistSSE.SearchRequestMessage)
if (&from == this) return;
Clear();
MergeFrom(from);
}
void SearchRequestMessage::CopyFrom(const SearchRequestMessage& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:DistSSE.SearchRequestMessage)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool SearchRequestMessage::IsInitialized() const {
return true;
}
void SearchRequestMessage::Swap(SearchRequestMessage* other) {
if (other == this) return;
InternalSwap(other);
}
void SearchRequestMessage::InternalSwap(SearchRequestMessage* other) {
using std::swap;
kw_.Swap(&other->kw_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(),
GetArenaNoVirtual());
tw_.Swap(&other->tw_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(),
GetArenaNoVirtual());
swap(uc_, other->uc_);
_internal_metadata_.Swap(&other->_internal_metadata_);
}
::google::protobuf::Metadata SearchRequestMessage::GetMetadata() const {
protobuf_DistSSE_2eproto::protobuf_AssignDescriptorsOnce();
return ::protobuf_DistSSE_2eproto::file_level_metadata[kIndexInFileMessages];
}
// ===================================================================
void SearchReply::InitAsDefaultInstance() {
}
#if !defined(_MSC_VER) || _MSC_VER >= 1900
const int SearchReply::kIndFieldNumber;
#endif // !defined(_MSC_VER) || _MSC_VER >= 1900
SearchReply::SearchReply()
: ::google::protobuf::Message(), _internal_metadata_(NULL) {
::google::protobuf::internal::InitSCC(
&protobuf_DistSSE_2eproto::scc_info_SearchReply.base);
SharedCtor();
// @@protoc_insertion_point(constructor:DistSSE.SearchReply)
}
SearchReply::SearchReply(const SearchReply& from)
: ::google::protobuf::Message(),
_internal_metadata_(NULL) {
_internal_metadata_.MergeFrom(from._internal_metadata_);
ind_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
if (from.ind().size() > 0) {
ind_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.ind_);
}
// @@protoc_insertion_point(copy_constructor:DistSSE.SearchReply)
}
void SearchReply::SharedCtor() {
ind_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
SearchReply::~SearchReply() {
// @@protoc_insertion_point(destructor:DistSSE.SearchReply)
SharedDtor();
}
void SearchReply::SharedDtor() {
ind_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
void SearchReply::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
const ::google::protobuf::Descriptor* SearchReply::descriptor() {
::protobuf_DistSSE_2eproto::protobuf_AssignDescriptorsOnce();
return ::protobuf_DistSSE_2eproto::file_level_metadata[kIndexInFileMessages].descriptor;
}
const SearchReply& SearchReply::default_instance() {
::google::protobuf::internal::InitSCC(&protobuf_DistSSE_2eproto::scc_info_SearchReply.base);
return *internal_default_instance();
}
void SearchReply::Clear() {
// @@protoc_insertion_point(message_clear_start:DistSSE.SearchReply)
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
ind_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
_internal_metadata_.Clear();
}
bool SearchReply::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure
::google::protobuf::uint32 tag;
// @@protoc_insertion_point(parse_start:DistSSE.SearchReply)
for (;;) {
::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
tag = p.first;
if (!p.second) goto handle_unusual;
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// bytes ind = 1;
case 1: {
if (static_cast< ::google::protobuf::uint8>(tag) ==
static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) {
DO_(::google::protobuf::internal::WireFormatLite::ReadBytes(
input, this->mutable_ind()));
} else {
goto handle_unusual;
}
break;
}
default: {
handle_unusual:
if (tag == 0) {
goto success;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, _internal_metadata_.mutable_unknown_fields()));
break;
}
}
}
success:
// @@protoc_insertion_point(parse_success:DistSSE.SearchReply)
return true;
failure:
// @@protoc_insertion_point(parse_failure:DistSSE.SearchReply)
return false;
#undef DO_
}
void SearchReply::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// @@protoc_insertion_point(serialize_start:DistSSE.SearchReply)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// bytes ind = 1;
if (this->ind().size() > 0) {
::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased(
1, this->ind(), output);
}
if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
(::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output);
}
// @@protoc_insertion_point(serialize_end:DistSSE.SearchReply)
}
::google::protobuf::uint8* SearchReply::InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const {
(void)deterministic; // Unused
// @@protoc_insertion_point(serialize_to_array_start:DistSSE.SearchReply)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// bytes ind = 1;
if (this->ind().size() > 0) {
target =
::google::protobuf::internal::WireFormatLite::WriteBytesToArray(
1, this->ind(), target);
}
if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
(::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target);
}
// @@protoc_insertion_point(serialize_to_array_end:DistSSE.SearchReply)
return target;
}
size_t SearchReply::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:DistSSE.SearchReply)
size_t total_size = 0;
if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
(::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()));
}
// bytes ind = 1;
if (this->ind().size() > 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::BytesSize(
this->ind());
}
int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
SetCachedSize(cached_size);
return total_size;
}
void SearchReply::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:DistSSE.SearchReply)
GOOGLE_DCHECK_NE(&from, this);
const SearchReply* source =
::google::protobuf::internal::DynamicCastToGenerated<const SearchReply>(
&from);
if (source == NULL) {
// @@protoc_insertion_point(generalized_merge_from_cast_fail:DistSSE.SearchReply)
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
// @@protoc_insertion_point(generalized_merge_from_cast_success:DistSSE.SearchReply)
MergeFrom(*source);
}
}
void SearchReply::MergeFrom(const SearchReply& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:DistSSE.SearchReply)
GOOGLE_DCHECK_NE(&from, this);
_internal_metadata_.MergeFrom(from._internal_metadata_);
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
if (from.ind().size() > 0) {
ind_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.ind_);
}
}
void SearchReply::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:DistSSE.SearchReply)
if (&from == this) return;
Clear();
MergeFrom(from);
}
void SearchReply::CopyFrom(const SearchReply& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:DistSSE.SearchReply)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool SearchReply::IsInitialized() const {
return true;
}
void SearchReply::Swap(SearchReply* other) {
if (other == this) return;
InternalSwap(other);
}
void SearchReply::InternalSwap(SearchReply* other) {
using std::swap;
ind_.Swap(&other->ind_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(),
GetArenaNoVirtual());
_internal_metadata_.Swap(&other->_internal_metadata_);
}
::google::protobuf::Metadata SearchReply::GetMetadata() const {
protobuf_DistSSE_2eproto::protobuf_AssignDescriptorsOnce();
return ::protobuf_DistSSE_2eproto::file_level_metadata[kIndexInFileMessages];
}
// ===================================================================
void CacheRequestMessage::InitAsDefaultInstance() {
}
#if !defined(_MSC_VER) || _MSC_VER >= 1900
const int CacheRequestMessage::kTwFieldNumber;
const int CacheRequestMessage::kIndsFieldNumber;
#endif // !defined(_MSC_VER) || _MSC_VER >= 1900
CacheRequestMessage::CacheRequestMessage()
: ::google::protobuf::Message(), _internal_metadata_(NULL) {
::google::protobuf::internal::InitSCC(
&protobuf_DistSSE_2eproto::scc_info_CacheRequestMessage.base);
SharedCtor();
// @@protoc_insertion_point(constructor:DistSSE.CacheRequestMessage)
}
CacheRequestMessage::CacheRequestMessage(const CacheRequestMessage& from)
: ::google::protobuf::Message(),
_internal_metadata_(NULL) {
_internal_metadata_.MergeFrom(from._internal_metadata_);
tw_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
if (from.tw().size() > 0) {
tw_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.tw_);
}
inds_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
if (from.inds().size() > 0) {
inds_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.inds_);
}
// @@protoc_insertion_point(copy_constructor:DistSSE.CacheRequestMessage)
}
void CacheRequestMessage::SharedCtor() {
tw_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
inds_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
CacheRequestMessage::~CacheRequestMessage() {
// @@protoc_insertion_point(destructor:DistSSE.CacheRequestMessage)
SharedDtor();
}
void CacheRequestMessage::SharedDtor() {
tw_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
inds_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
void CacheRequestMessage::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
const ::google::protobuf::Descriptor* CacheRequestMessage::descriptor() {
::protobuf_DistSSE_2eproto::protobuf_AssignDescriptorsOnce();
return ::protobuf_DistSSE_2eproto::file_level_metadata[kIndexInFileMessages].descriptor;
}
const CacheRequestMessage& CacheRequestMessage::default_instance() {
::google::protobuf::internal::InitSCC(&protobuf_DistSSE_2eproto::scc_info_CacheRequestMessage.base);
return *internal_default_instance();
}
void CacheRequestMessage::Clear() {
// @@protoc_insertion_point(message_clear_start:DistSSE.CacheRequestMessage)
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
tw_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
inds_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
_internal_metadata_.Clear();
}
bool CacheRequestMessage::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure
::google::protobuf::uint32 tag;
// @@protoc_insertion_point(parse_start:DistSSE.CacheRequestMessage)
for (;;) {
::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
tag = p.first;
if (!p.second) goto handle_unusual;
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// bytes tw = 1;
case 1: {
if (static_cast< ::google::protobuf::uint8>(tag) ==
static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) {
DO_(::google::protobuf::internal::WireFormatLite::ReadBytes(
input, this->mutable_tw()));
} else {
goto handle_unusual;
}
break;
}
// bytes inds = 2;
case 2: {
if (static_cast< ::google::protobuf::uint8>(tag) ==
static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) {
DO_(::google::protobuf::internal::WireFormatLite::ReadBytes(
input, this->mutable_inds()));
} else {
goto handle_unusual;
}
break;
}
default: {
handle_unusual:
if (tag == 0) {
goto success;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, _internal_metadata_.mutable_unknown_fields()));
break;
}
}
}
success:
// @@protoc_insertion_point(parse_success:DistSSE.CacheRequestMessage)
return true;
failure:
// @@protoc_insertion_point(parse_failure:DistSSE.CacheRequestMessage)
return false;
#undef DO_
}
void CacheRequestMessage::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// @@protoc_insertion_point(serialize_start:DistSSE.CacheRequestMessage)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// bytes tw = 1;
if (this->tw().size() > 0) {
::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased(
1, this->tw(), output);
}
// bytes inds = 2;
if (this->inds().size() > 0) {
::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased(
2, this->inds(), output);
}
if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
(::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output);
}
// @@protoc_insertion_point(serialize_end:DistSSE.CacheRequestMessage)
}
::google::protobuf::uint8* CacheRequestMessage::InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const {
(void)deterministic; // Unused
// @@protoc_insertion_point(serialize_to_array_start:DistSSE.CacheRequestMessage)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// bytes tw = 1;
if (this->tw().size() > 0) {
target =
::google::protobuf::internal::WireFormatLite::WriteBytesToArray(
1, this->tw(), target);
}
// bytes inds = 2;
if (this->inds().size() > 0) {
target =
::google::protobuf::internal::WireFormatLite::WriteBytesToArray(
2, this->inds(), target);
}
if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
(::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target);
}
// @@protoc_insertion_point(serialize_to_array_end:DistSSE.CacheRequestMessage)
return target;
}
size_t CacheRequestMessage::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:DistSSE.CacheRequestMessage)
size_t total_size = 0;
if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
(::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()));
}
// bytes tw = 1;
if (this->tw().size() > 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::BytesSize(
this->tw());
}
// bytes inds = 2;
if (this->inds().size() > 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::BytesSize(
this->inds());
}
int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
SetCachedSize(cached_size);
return total_size;
}
void CacheRequestMessage::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:DistSSE.CacheRequestMessage)
GOOGLE_DCHECK_NE(&from, this);
const CacheRequestMessage* source =
::google::protobuf::internal::DynamicCastToGenerated<const CacheRequestMessage>(
&from);
if (source == NULL) {
// @@protoc_insertion_point(generalized_merge_from_cast_fail:DistSSE.CacheRequestMessage)
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
// @@protoc_insertion_point(generalized_merge_from_cast_success:DistSSE.CacheRequestMessage)
MergeFrom(*source);
}
}
void CacheRequestMessage::MergeFrom(const CacheRequestMessage& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:DistSSE.CacheRequestMessage)
GOOGLE_DCHECK_NE(&from, this);
_internal_metadata_.MergeFrom(from._internal_metadata_);
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
if (from.tw().size() > 0) {
tw_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.tw_);
}
if (from.inds().size() > 0) {
inds_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.inds_);
}
}
void CacheRequestMessage::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:DistSSE.CacheRequestMessage)
if (&from == this) return;
Clear();
MergeFrom(from);
}
void CacheRequestMessage::CopyFrom(const CacheRequestMessage& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:DistSSE.CacheRequestMessage)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool CacheRequestMessage::IsInitialized() const {
return true;
}
void CacheRequestMessage::Swap(CacheRequestMessage* other) {
if (other == this) return;
InternalSwap(other);
}
void CacheRequestMessage::InternalSwap(CacheRequestMessage* other) {
using std::swap;
tw_.Swap(&other->tw_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(),
GetArenaNoVirtual());
inds_.Swap(&other->inds_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(),
GetArenaNoVirtual());
_internal_metadata_.Swap(&other->_internal_metadata_);
}
::google::protobuf::Metadata CacheRequestMessage::GetMetadata() const {
protobuf_DistSSE_2eproto::protobuf_AssignDescriptorsOnce();
return ::protobuf_DistSSE_2eproto::file_level_metadata[kIndexInFileMessages];
}
// ===================================================================
void UpdateRequestMessage::InitAsDefaultInstance() {
}
#if !defined(_MSC_VER) || _MSC_VER >= 1900
const int UpdateRequestMessage::kLFieldNumber;
const int UpdateRequestMessage::kEFieldNumber;
const int UpdateRequestMessage::kCounterFieldNumber;
#endif // !defined(_MSC_VER) || _MSC_VER >= 1900
UpdateRequestMessage::UpdateRequestMessage()
: ::google::protobuf::Message(), _internal_metadata_(NULL) {
::google::protobuf::internal::InitSCC(
&protobuf_DistSSE_2eproto::scc_info_UpdateRequestMessage.base);
SharedCtor();
// @@protoc_insertion_point(constructor:DistSSE.UpdateRequestMessage)
}
UpdateRequestMessage::UpdateRequestMessage(const UpdateRequestMessage& from)
: ::google::protobuf::Message(),
_internal_metadata_(NULL) {
_internal_metadata_.MergeFrom(from._internal_metadata_);
l_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
if (from.l().size() > 0) {
l_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.l_);
}
e_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
if (from.e().size() > 0) {
e_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.e_);
}
counter_ = from.counter_;
// @@protoc_insertion_point(copy_constructor:DistSSE.UpdateRequestMessage)
}
void UpdateRequestMessage::SharedCtor() {
l_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
e_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
counter_ = GOOGLE_ULONGLONG(0);
}
UpdateRequestMessage::~UpdateRequestMessage() {
// @@protoc_insertion_point(destructor:DistSSE.UpdateRequestMessage)
SharedDtor();
}
void UpdateRequestMessage::SharedDtor() {
l_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
e_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
void UpdateRequestMessage::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
const ::google::protobuf::Descriptor* UpdateRequestMessage::descriptor() {
::protobuf_DistSSE_2eproto::protobuf_AssignDescriptorsOnce();
return ::protobuf_DistSSE_2eproto::file_level_metadata[kIndexInFileMessages].descriptor;
}
const UpdateRequestMessage& UpdateRequestMessage::default_instance() {
::google::protobuf::internal::InitSCC(&protobuf_DistSSE_2eproto::scc_info_UpdateRequestMessage.base);
return *internal_default_instance();
}
void UpdateRequestMessage::Clear() {
// @@protoc_insertion_point(message_clear_start:DistSSE.UpdateRequestMessage)
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
l_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
e_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
counter_ = GOOGLE_ULONGLONG(0);
_internal_metadata_.Clear();
}
bool UpdateRequestMessage::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure
::google::protobuf::uint32 tag;
// @@protoc_insertion_point(parse_start:DistSSE.UpdateRequestMessage)
for (;;) {
::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
tag = p.first;
if (!p.second) goto handle_unusual;
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// bytes l = 1;
case 1: {
if (static_cast< ::google::protobuf::uint8>(tag) ==
static_cast< ::google::protobuf::uint8>(10u /* 10 & 0xFF */)) {
DO_(::google::protobuf::internal::WireFormatLite::ReadBytes(
input, this->mutable_l()));
} else {
goto handle_unusual;
}
break;
}
// bytes e = 2;
case 2: {
if (static_cast< ::google::protobuf::uint8>(tag) ==
static_cast< ::google::protobuf::uint8>(18u /* 18 & 0xFF */)) {
DO_(::google::protobuf::internal::WireFormatLite::ReadBytes(
input, this->mutable_e()));
} else {
goto handle_unusual;
}
break;
}
// uint64 counter = 3;
case 3: {
if (static_cast< ::google::protobuf::uint8>(tag) ==
static_cast< ::google::protobuf::uint8>(24u /* 24 & 0xFF */)) {
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
::google::protobuf::uint64, ::google::protobuf::internal::WireFormatLite::TYPE_UINT64>(
input, &counter_)));
} else {
goto handle_unusual;
}
break;
}
default: {
handle_unusual:
if (tag == 0) {
goto success;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, _internal_metadata_.mutable_unknown_fields()));
break;
}
}
}
success:
// @@protoc_insertion_point(parse_success:DistSSE.UpdateRequestMessage)
return true;
failure:
// @@protoc_insertion_point(parse_failure:DistSSE.UpdateRequestMessage)
return false;
#undef DO_
}
void UpdateRequestMessage::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// @@protoc_insertion_point(serialize_start:DistSSE.UpdateRequestMessage)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// bytes l = 1;
if (this->l().size() > 0) {
::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased(
1, this->l(), output);
}
// bytes e = 2;
if (this->e().size() > 0) {
::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased(
2, this->e(), output);
}
// uint64 counter = 3;
if (this->counter() != 0) {
::google::protobuf::internal::WireFormatLite::WriteUInt64(3, this->counter(), output);
}
if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
(::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output);
}
// @@protoc_insertion_point(serialize_end:DistSSE.UpdateRequestMessage)
}
::google::protobuf::uint8* UpdateRequestMessage::InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const {
(void)deterministic; // Unused
// @@protoc_insertion_point(serialize_to_array_start:DistSSE.UpdateRequestMessage)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// bytes l = 1;
if (this->l().size() > 0) {
target =
::google::protobuf::internal::WireFormatLite::WriteBytesToArray(
1, this->l(), target);
}
// bytes e = 2;
if (this->e().size() > 0) {
target =
::google::protobuf::internal::WireFormatLite::WriteBytesToArray(
2, this->e(), target);
}
// uint64 counter = 3;
if (this->counter() != 0) {
target = ::google::protobuf::internal::WireFormatLite::WriteUInt64ToArray(3, this->counter(), target);
}
if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
(::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target);
}
// @@protoc_insertion_point(serialize_to_array_end:DistSSE.UpdateRequestMessage)
return target;
}
size_t UpdateRequestMessage::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:DistSSE.UpdateRequestMessage)
size_t total_size = 0;
if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
(::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()));
}
// bytes l = 1;
if (this->l().size() > 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::BytesSize(
this->l());
}
// bytes e = 2;
if (this->e().size() > 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::BytesSize(
this->e());
}
// uint64 counter = 3;
if (this->counter() != 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::UInt64Size(
this->counter());
}
int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
SetCachedSize(cached_size);
return total_size;
}
void UpdateRequestMessage::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:DistSSE.UpdateRequestMessage)
GOOGLE_DCHECK_NE(&from, this);
const UpdateRequestMessage* source =
::google::protobuf::internal::DynamicCastToGenerated<const UpdateRequestMessage>(
&from);
if (source == NULL) {
// @@protoc_insertion_point(generalized_merge_from_cast_fail:DistSSE.UpdateRequestMessage)
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
// @@protoc_insertion_point(generalized_merge_from_cast_success:DistSSE.UpdateRequestMessage)
MergeFrom(*source);
}
}
void UpdateRequestMessage::MergeFrom(const UpdateRequestMessage& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:DistSSE.UpdateRequestMessage)
GOOGLE_DCHECK_NE(&from, this);
_internal_metadata_.MergeFrom(from._internal_metadata_);
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
if (from.l().size() > 0) {
l_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.l_);
}
if (from.e().size() > 0) {
e_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.e_);
}
if (from.counter() != 0) {
set_counter(from.counter());
}
}
void UpdateRequestMessage::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:DistSSE.UpdateRequestMessage)
if (&from == this) return;
Clear();
MergeFrom(from);
}
void UpdateRequestMessage::CopyFrom(const UpdateRequestMessage& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:DistSSE.UpdateRequestMessage)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool UpdateRequestMessage::IsInitialized() const {
return true;
}
void UpdateRequestMessage::Swap(UpdateRequestMessage* other) {
if (other == this) return;
InternalSwap(other);
}
void UpdateRequestMessage::InternalSwap(UpdateRequestMessage* other) {
using std::swap;
l_.Swap(&other->l_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(),
GetArenaNoVirtual());
e_.Swap(&other->e_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(),
GetArenaNoVirtual());
swap(counter_, other->counter_);
_internal_metadata_.Swap(&other->_internal_metadata_);
}
::google::protobuf::Metadata UpdateRequestMessage::GetMetadata() const {
protobuf_DistSSE_2eproto::protobuf_AssignDescriptorsOnce();
return ::protobuf_DistSSE_2eproto::file_level_metadata[kIndexInFileMessages];
}
// ===================================================================
void ExecuteStatus::InitAsDefaultInstance() {
}
#if !defined(_MSC_VER) || _MSC_VER >= 1900
const int ExecuteStatus::kStatusFieldNumber;
#endif // !defined(_MSC_VER) || _MSC_VER >= 1900
ExecuteStatus::ExecuteStatus()
: ::google::protobuf::Message(), _internal_metadata_(NULL) {
::google::protobuf::internal::InitSCC(
&protobuf_DistSSE_2eproto::scc_info_ExecuteStatus.base);
SharedCtor();
// @@protoc_insertion_point(constructor:DistSSE.ExecuteStatus)
}
ExecuteStatus::ExecuteStatus(const ExecuteStatus& from)
: ::google::protobuf::Message(),
_internal_metadata_(NULL) {
_internal_metadata_.MergeFrom(from._internal_metadata_);
status_ = from.status_;
// @@protoc_insertion_point(copy_constructor:DistSSE.ExecuteStatus)
}
void ExecuteStatus::SharedCtor() {
status_ = false;
}
ExecuteStatus::~ExecuteStatus() {
// @@protoc_insertion_point(destructor:DistSSE.ExecuteStatus)
SharedDtor();
}
void ExecuteStatus::SharedDtor() {
}
void ExecuteStatus::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
const ::google::protobuf::Descriptor* ExecuteStatus::descriptor() {
::protobuf_DistSSE_2eproto::protobuf_AssignDescriptorsOnce();
return ::protobuf_DistSSE_2eproto::file_level_metadata[kIndexInFileMessages].descriptor;
}
const ExecuteStatus& ExecuteStatus::default_instance() {
::google::protobuf::internal::InitSCC(&protobuf_DistSSE_2eproto::scc_info_ExecuteStatus.base);
return *internal_default_instance();
}
void ExecuteStatus::Clear() {
// @@protoc_insertion_point(message_clear_start:DistSSE.ExecuteStatus)
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
status_ = false;
_internal_metadata_.Clear();
}
bool ExecuteStatus::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure
::google::protobuf::uint32 tag;
// @@protoc_insertion_point(parse_start:DistSSE.ExecuteStatus)
for (;;) {
::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
tag = p.first;
if (!p.second) goto handle_unusual;
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// bool status = 1;
case 1: {
if (static_cast< ::google::protobuf::uint8>(tag) ==
static_cast< ::google::protobuf::uint8>(8u /* 8 & 0xFF */)) {
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>(
input, &status_)));
} else {
goto handle_unusual;
}
break;
}
default: {
handle_unusual:
if (tag == 0) {
goto success;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, _internal_metadata_.mutable_unknown_fields()));
break;
}
}
}
success:
// @@protoc_insertion_point(parse_success:DistSSE.ExecuteStatus)
return true;
failure:
// @@protoc_insertion_point(parse_failure:DistSSE.ExecuteStatus)
return false;
#undef DO_
}
void ExecuteStatus::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// @@protoc_insertion_point(serialize_start:DistSSE.ExecuteStatus)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// bool status = 1;
if (this->status() != 0) {
::google::protobuf::internal::WireFormatLite::WriteBool(1, this->status(), output);
}
if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
(::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output);
}
// @@protoc_insertion_point(serialize_end:DistSSE.ExecuteStatus)
}
::google::protobuf::uint8* ExecuteStatus::InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const {
(void)deterministic; // Unused
// @@protoc_insertion_point(serialize_to_array_start:DistSSE.ExecuteStatus)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// bool status = 1;
if (this->status() != 0) {
target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(1, this->status(), target);
}
if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
(::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target);
}
// @@protoc_insertion_point(serialize_to_array_end:DistSSE.ExecuteStatus)
return target;
}
size_t ExecuteStatus::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:DistSSE.ExecuteStatus)
size_t total_size = 0;
if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
(::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()));
}
// bool status = 1;
if (this->status() != 0) {
total_size += 1 + 1;
}
int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
SetCachedSize(cached_size);
return total_size;
}
void ExecuteStatus::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:DistSSE.ExecuteStatus)
GOOGLE_DCHECK_NE(&from, this);
const ExecuteStatus* source =
::google::protobuf::internal::DynamicCastToGenerated<const ExecuteStatus>(
&from);
if (source == NULL) {
// @@protoc_insertion_point(generalized_merge_from_cast_fail:DistSSE.ExecuteStatus)
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
// @@protoc_insertion_point(generalized_merge_from_cast_success:DistSSE.ExecuteStatus)
MergeFrom(*source);
}
}
void ExecuteStatus::MergeFrom(const ExecuteStatus& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:DistSSE.ExecuteStatus)
GOOGLE_DCHECK_NE(&from, this);
_internal_metadata_.MergeFrom(from._internal_metadata_);
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
if (from.status() != 0) {
set_status(from.status());
}
}
void ExecuteStatus::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:DistSSE.ExecuteStatus)
if (&from == this) return;
Clear();
MergeFrom(from);
}
void ExecuteStatus::CopyFrom(const ExecuteStatus& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:DistSSE.ExecuteStatus)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool ExecuteStatus::IsInitialized() const {
return true;
}
void ExecuteStatus::Swap(ExecuteStatus* other) {
if (other == this) return;
InternalSwap(other);
}
void ExecuteStatus::InternalSwap(ExecuteStatus* other) {
using std::swap;
swap(status_, other->status_);
_internal_metadata_.Swap(&other->_internal_metadata_);
}
::google::protobuf::Metadata ExecuteStatus::GetMetadata() const {
protobuf_DistSSE_2eproto::protobuf_AssignDescriptorsOnce();
return ::protobuf_DistSSE_2eproto::file_level_metadata[kIndexInFileMessages];
}
// @@protoc_insertion_point(namespace_scope)
} // namespace DistSSE
namespace google {
namespace protobuf {
template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::DistSSE::SetupRequestMessage* Arena::CreateMaybeMessage< ::DistSSE::SetupRequestMessage >(Arena* arena) {
return Arena::CreateInternal< ::DistSSE::SetupRequestMessage >(arena);
}
template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::DistSSE::SearchRequestMessage* Arena::CreateMaybeMessage< ::DistSSE::SearchRequestMessage >(Arena* arena) {
return Arena::CreateInternal< ::DistSSE::SearchRequestMessage >(arena);
}
template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::DistSSE::SearchReply* Arena::CreateMaybeMessage< ::DistSSE::SearchReply >(Arena* arena) {
return Arena::CreateInternal< ::DistSSE::SearchReply >(arena);
}
template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::DistSSE::CacheRequestMessage* Arena::CreateMaybeMessage< ::DistSSE::CacheRequestMessage >(Arena* arena) {
return Arena::CreateInternal< ::DistSSE::CacheRequestMessage >(arena);
}
template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::DistSSE::UpdateRequestMessage* Arena::CreateMaybeMessage< ::DistSSE::UpdateRequestMessage >(Arena* arena) {
return Arena::CreateInternal< ::DistSSE::UpdateRequestMessage >(arena);
}
template<> GOOGLE_PROTOBUF_ATTRIBUTE_NOINLINE ::DistSSE::ExecuteStatus* Arena::CreateMaybeMessage< ::DistSSE::ExecuteStatus >(Arena* arena) {
return Arena::CreateInternal< ::DistSSE::ExecuteStatus >(arena);
}
} // namespace protobuf
} // namespace google
// @@protoc_insertion_point(global_scope)
| [
"1014830422@qq.com"
] | 1014830422@qq.com |
9477acafcfd8178189d69b5fc5b6cf8d86f89e03 | 8d991e979b3eb1051998ea7dd6195011c506c0fc | /HackerRank/sears-dots-arrows/Sublist_Riddle.cpp | 26db0dd0f756d76cfd104d64cdc66b17b1bb694e | [] | no_license | caogtaa/OJCategory | b33ccdfb6534f6856ab7b5668c9433c144d9f905 | cfedef5c64c48dd2b7245b1ff795af9312e7707e | refs/heads/master | 2020-09-21T13:06:25.028801 | 2020-02-05T09:05:18 | 2020-02-05T09:05:18 | 224,797,482 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,966 | cpp | #include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <string.h>
using namespace std;
// DP, 先将所有输入统计,放入数组A
// F[pos][ab][bc][ca] 表示从A数组pos位置开始往后摆放,当前3个集合的相交状态分别是ab,bc,ca,所能够得到的不同triple数量
// 初始条件是F[0][false][false][false]
// 题目要求A, B, C 3个集合两两相交,但是要求3个集合没有共同数字
// 所以对于一个数字,要么放入一个集合,要么放入3个集合,要么跳过这个数字不放
// 放入的时候考虑可以放入1到count个,累加上述可能性求出F
const long long MOD = 1000000007;
int N;
int cnt[1000001];
long long F[100001][2][2][2];
vector<int> A;
long long Func(int pos, bool ab, bool bc, bool ca)
{
if (pos >= A.size()) {
return (ab && bc && ca) ? 1 : 0;
}
auto &ret = F[pos][ab][bc][ca];
if (ret != -1)
return ret;
ret = 0;
int c = cnt[A[pos]];
// assign current value to one set, possibility = 3 * count
ret += ((3LL * c) % MOD) * Func(pos+1, ab, bc, ca);
ret %= MOD;
// assign to two set, possibility = count * count
long long c2 = c * c;
c2 %= MOD;
// ab
ret += c2 * Func(pos+1, true, bc, ca);
ret %= MOD;
// bc
ret += c2 * Func(pos+1, ab, true, ca);
ret %= MOD;
// ca
ret += c2 * Func(pos+1, ab, bc, true);
ret %= MOD;
// not assign
ret += Func(pos+1, ab, bc, ca);
ret %= MOD;
return ret;
}
int main()
{
cin >> N;
int v;
int mx = 0;
for (int i = 0; i < N; ++i) {
cin >> v;
mx = max(mx, v);
++ cnt[v];
}
// make possible recursive stack shorter
for (int i = 1; i <= mx; ++i) {
if (cnt[i] > 0)
A.push_back(i);
}
memset(F, -1, sizeof(F));
cout << Func(0, 0, 0, 0) << endl;
return 0;
}
| [
"caogtaa@gmail.com"
] | caogtaa@gmail.com |
187ba7484163b86da07e23090d5d5093b303f3ff | 6b07928483db8b9de4b3499af426b5f06228a300 | /Tower/Source.cpp | 4151f2bfcc12dd386ff6a890106d3b8bb59a9868 | [] | no_license | HristoHristov95/Interesting_C-_Projects | 83c9006bdf1755c3fbd29fdb068e626db667711b | 297abecbbf8551721207e2563e82e80e37311631 | refs/heads/master | 2020-12-24T20:24:48.605443 | 2017-03-26T18:51:27 | 2017-03-26T18:51:27 | 86,249,030 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 816 | cpp | #include<iostream>
#include<vector>
#include<string>
using namespace std;
class tower {
public:
std::vector<std::string> towerBuilder(int nFloors)
{
std::vector<char> a;
std::vector<std::string> b;
long long current = 1;
long long begin = 1;
char symbol = '*';
for (long long i = 0; i < nFloors; i++) {
for (long long k = 0; k < nFloors-begin; k++) {
a.push_back(' ');
}
for (long long k = 0; k < current; k++) {
a.push_back(symbol);
}
for (long long k = 0; k < nFloors - begin; k++) {
a.push_back(' ');
}
current += 2;
begin++;
std::string str(a.begin(), a.end());
b.push_back(str);
a.clear();
}
for (int i = 0; i < b.size(); i++) {
cout << b[i] << endl;
}
return b;
}
};
int main() {
int a = 3;
tower obj;
obj.towerBuilder(a);
return 0;
} | [
"hristo_ultimeted@yahoo.com"
] | hristo_ultimeted@yahoo.com |
97dd16366b6d2e07a3fb18f36eef16ebace81604 | f153b04464e0bbe7c2db57f7b6c2d64d87f8953b | /designpattern/ChainOfResponsibility.cpp | fd6e4507c3c7053f9dbc56594e8d5ac18076f114 | [] | no_license | alvas/ms_interview_100 | 82f4f7222db775c68b035dc616d812c63f3127a7 | 8587116a3c4227f71783e7dac42517b6561d17b0 | refs/heads/master | 2022-03-18T10:48:46.834899 | 2022-02-24T04:10:05 | 2022-02-24T04:10:05 | 16,854,684 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,302 | cpp | #include <iostream>
#include <vector>
using namespace std;
#ifdef COMPONENT
class Component {
int value;
Component* next;
public:
Component(int v, Component* n) {
value = v;
next = n;
}
void setNext(Component* n) {
next = n;
}
virtual void traverse() {
cout << value << ' ';
}
virtual void volunteer() {
next->volunteer();
}
};
class Primitive: public Component {
public:
Primitive(int val, Component* n = nullptr): Component(val, n) {}
void volunteer() {
Component::traverse();
if (rand() * 100 % 6 != 0) {
Component::volunteer();
}
}
};
class Composite: public Component {
vector<Component*> children;
public:
Composite(int val, Component *n = nullptr): Component(val, n) {}
void add(Component* c) {
children.push_back(c);
}
void traverse() {
Component::traverse();
for (int i = 0; i < children.size(); ++i) {
children[i]->traverse();
}
}
void volunteer() {
Component::volunteer();
}
};
int main() {
srand(time(0));
Primitive seven(7);
Primitive six(6, &seven);
Composite three(3, &six);
three.add(&six);
three.add(&seven);
Primitive five(5, &three);
Primitive four(4, &five);
Composite two(2, &four);
two.add(&four);
two.add(&five);
Composite one(1, &two);
Primitive nine(9, &one);
Primitive eight(8, &nine);
one.add(&two);
one.add(&three);
one.add(&eight);
one.add(&nine);
seven.setNext(&eight);
cout << "traverse: ";
one.traverse();
cout << endl;
for (int i = 0; i < 8; ++i) {
one.volunteer();
cout << endl;
}
}
#endif
#ifdef NORMAL
class Base {
Base* next;
public:
Base() {
next = nullptr;
}
void setNext(Base* n) {
next = n;
}
void add(Base* n) {
if (next) {
next->add(n);
}
else {
next = n;
}
}
virtual void handle(int i) {
next->handle(i);
}
};
class Handler1: public Base {
public:
void handle(int i) {
if (rand() % 3) {
cout << "H1 passed " << i << " ";
Base::handle(i);
}
else {
cout << "H1 handled " << i << " ";
}
}
};
class Handler2: public Base {
public:
void handle(int i) {
if (rand() % 3) {
cout << "H2 passed " << i << " ";
Base::handle(i);
}
else {
cout << "H2 handled " << i << " ";
}
}
};
class Handler3: public Base {
public:
void handle(int i) {
if (rand() % 3) {
cout << "H3 passed " << i << " ";
Base::handle(i);
}
else {
cout << "H3 handled " << i << " ";
}
}
};
int main() {
srand(time(0));
Handler1 root;
Handler2 two;
Handler3 thr;
root.add(&two);
root.add(&thr);
thr.setNext(&root);
for (int i = 1; i < 10; ++i) {
root.handle(i);
cout << endl;
}
}
#endif
| [
"qingyun.oracle@gmail.com"
] | qingyun.oracle@gmail.com |
c36cb8b87f804c030f0acb393d4227129e61f6f9 | ba0036f0dd78a92ac07f2b05fddbd2b352908202 | /Ch02-Linked-Lists/2-4_j-partition1_unstable.cpp | 8b6d47855726d0473eb26937e29b181f464c60b5 | [] | no_license | jerrychen44/cci_algorithm_fundamentals_cpp | 50e9eaeccfa531ac69d50aeb5f0005d831a6a8b3 | 74a98faa2b37e6cf0e5de11a85be6ebb5e67c8aa | refs/heads/master | 2020-03-26T20:12:57.745786 | 2018-11-14T03:19:08 | 2018-11-14T03:19:08 | 145,311,148 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,174 | cpp | /**
* Cracking the coding interview edition 6
* Problem 2.4 Partition:
* Write code to partition linked list around a value x, such that
* nodes less than x come before all the nodes greater than or equal to x.
* If x is in the list, the values of x only need to be after the elements less
* than x.
* Example
* 3-->5-->8-->5-->10-->2-->1 (x = 5)
* 3-->1-->2-->10-->5-->5-->8
*
* Approach:
* Start with first node, and add every thing bigger or equal to x at tail
* and smaller values at head.
*/
#include <iostream>
#include <random>
struct Node {
int data;
Node * next;
Node( int d ) : data{ d }, next{ nullptr } { }
};
void insert( Node * & head, int data ) {
Node * newNode = new Node(data);
if ( head == nullptr ) {
head = newNode;
} else {
Node * curr = head;
while( curr->next ) {
curr = curr->next;
}
curr->next = newNode;
}
}
void printList( Node * head ) {
while ( head ) {
std::cout << head->data << "-->";
head = head->next;
}
std::cout << "nullptr" << std::endl;
}
/* We start with two new list.
Elements bigger than the pivot element are put at the tail list
and elements smaller are put at the head list*/
/*
smaller add to head, head++ <---- input node head as a center / set head,tail ----> lager add to tail, tail++
*/
Node * partition_unstable( Node * target_node , int x ) {
Node *movinghead = target_node;
Node *movingtail = target_node;
while(target_node != nullptr){
Node *nextNode = target_node->next;
//if less then x, move node to the head of the existing list
if(target_node->data < x ){
target_node->next = movinghead;
movinghead = target_node;
}else{//>=x
movingtail->next = target_node;
movingtail = target_node;
}
target_node = nextNode;
}
movingtail->next = nullptr;
return movinghead;
}
int main() {
Node * head = nullptr;
for ( int i = 0; i < 10; ++i ) {
insert(head, rand() % 9);
}
std::cout << "List before partition around 5:\n";
printList(head);
std::cout << "List after partition around 5:\n";
printList(partition_unstable(head, 5));
return 0;
}
| [
"jerrychen040@gmail.com"
] | jerrychen040@gmail.com |
de232b0714e0ab1fe6716b933f41afebc28bf119 | 849d4a0cf138608a60f7a180ce95621066369837 | /0646022_pa2.cpp | 1c91959b6a9e6a8e1ba65cffc6305dea6705ddd2 | [] | no_license | wugiwang/wugi | ba7e55d16bef74a743f44b7443315df34e15de87 | 67c144bf4ff9ea4be92ca53bbd10e02f25dd214e | refs/heads/master | 2021-08-11T21:02:53.552618 | 2017-11-14T04:55:12 | 2017-11-14T04:55:12 | 108,188,471 | 0 | 0 | null | null | null | null | BIG5 | C++ | false | false | 3,135 | cpp | //============================================================================
// Name : 印出魯蛇.cpp
// Author :
// Version :
// Copyright : Your copyright notice
// Description : Hello World in C++, Ansi-style
//============================================================================
#include <iostream>
#include <list>
#include <fstream>
#include <string>
using namespace std;
using std::getline;
using std::string;
using std::cout;
using std::cin;
using std::endl;
int main(int argc, char* argv[]) {
std::list<int>List1;//宣告List1儲存數字(玩家)
std::list<string>List2;//List2儲存字串(各玩家喊的字)
std::ifstream fin;
std::ofstream fout;
fin.open(argv[1]);
fout.open(argv[2]);
int FirstPerson;
fin >> FirstPerson; //找出誰先開始
int PerNum = 0;
while(fin >> PerNum)
{
if(PerNum < 0)
break;
List1.push_back(PerNum); //將串流出的數字存進List1的後面直到讀到負數
}
List2.resize(List1.size()); //List2的大小將會跟List1相同
string Space; //換行
string Text; //儲存每行文字
getline(fin, Space, '\n');
do //調整List1以確保讓內定開始的人講第一個字
{
List1.push_back(List1.front());
List1.pop_front();
}while(List1.front() != FirstPerson);
int c=0; //控制變數,偶數順時針,奇數逆時針
while(getline(fin, Text, '\n'))
{
std::list<string>::iterator ite2=List2.begin(); //List2起始iterator
std::list<int>::iterator ite1=List1.begin(); //List1起始iterator
int TextLength = Text.length(); //沒這個會有黃三角驚嘆號
if(c % 2 == 0) //順時針
{
for(int i=0; i<TextLength; i++)
{
if( List2.end() == ite2 ) //List到終點,開始reverse
{
ite2= --List2.end();
ite1= --List1.end();
ite2--;
ite1--; //把iterator定位在終點前一點
*ite2 = *ite2 + Text[i]; //字母放入最後
List2.reverse();
List1.reverse();
ite2++;
ite1++;
}
else //一般情況
{
*ite2 =*ite2 + Text[i]; //字母放入最後
ite2++;
ite1++;
}
}
}
else //逆時針
{
for(int i=0; i<TextLength; i++)
{
if( List2.end() == ite2 ) //list到終點,開始reverse
{
ite2 = --List2.end();
ite1 = --List1.end();
ite2--;
ite1--; //把iterator定位在終點前一點
*ite2 = Text[i] + *ite2; //字母從前放入
List2.reverse();
List1.reverse();
ite2++;
ite1++;
}
else //一般情況
{
*ite2 = Text[i] + *ite2; //字母從前放入
ite2++;
ite1++;
}
}
}
ite2--;
ite1--; //把迴圈最後多加的iterator扣掉
fout<< *ite1 << ' ' << *ite2 <<endl;; //想想魯蛇講過的話和號碼
List2.erase(ite2);
List1.erase(ite1); //魯蛇掰掰
//最後一個字為子音就換方向
if(Text[TextLength-1] != 'a' && Text[TextLength-1] != 'e' && Text[TextLength-1] != 'i'
&& Text[TextLength-1] != 'o' && Text[TextLength-1] != 'u')
{
List2.reverse();
List1.reverse();
c++;
}
}
fout << List1.front() << " " << List2.front() << endl; //溫拿
fin.close();
fout.close();
return 0;
}
| [
"noreply@github.com"
] | wugiwang.noreply@github.com |
dfbc548a0672479e192218bd314d884823593c30 | 185b00fc2b448497991418a5214b49445afe18e7 | /SDK/PUBG_KillCountWidget_classes.hpp | 484a504367ac831d406dedda9eb812b3cf61462b | [] | no_license | cpkt9762/PPLAY_SDK | f562e3391df2a46abca33d202884705fdd03a1f8 | 30bf1a7fadab2ed07635e55c9c9749720cd79528 | refs/heads/master | 2021-04-28T10:19:19.392994 | 2018-02-19T07:20:44 | 2018-02-19T07:20:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,314 | hpp | #pragma once
// PlayerUnknown's Battlegrounds (2.6.23) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
namespace Classes
{
//---------------------------------------------------------------------------
//Classes
//---------------------------------------------------------------------------
// WidgetBlueprintGeneratedClass KillCountWidget.KillCountWidget_C
// 0x0038 (0x0350 - 0x0318)
class UKillCountWidget_C : public UKillCountBaseWidget
{
public:
class UWidgetAnimation* Test; // 0x0318(0x0008) (BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, IsPlainOldData, RepSkip, RepNotify, Interp, NonTransactional, EditorOnly, NoDestructor, AutoWeak, ContainsInstancedReference, AssetRegistrySearchable, SimpleDisplay, AdvancedDisplay, Protected, BlueprintCallable, BlueprintAuthorityOnly, TextExportTransient, NonPIEDuplicateTransient, ExposeOnSpawn, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic, NativeAccessSpecifierProtected, NativeAccessSpecifierPrivate)
class UWidgetAnimation* KillCountVanishing; // 0x0320(0x0008) (BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, IsPlainOldData, RepSkip, RepNotify, Interp, NonTransactional, EditorOnly, NoDestructor, AutoWeak, ContainsInstancedReference, AssetRegistrySearchable, SimpleDisplay, AdvancedDisplay, Protected, BlueprintCallable, BlueprintAuthorityOnly, TextExportTransient, NonPIEDuplicateTransient, ExposeOnSpawn, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic, NativeAccessSpecifierProtected, NativeAccessSpecifierPrivate)
class UWidgetAnimation* KillCountEmerging; // 0x0328(0x0008) (BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, IsPlainOldData, RepSkip, RepNotify, Interp, NonTransactional, EditorOnly, NoDestructor, AutoWeak, ContainsInstancedReference, AssetRegistrySearchable, SimpleDisplay, AdvancedDisplay, Protected, BlueprintCallable, BlueprintAuthorityOnly, TextExportTransient, NonPIEDuplicateTransient, ExposeOnSpawn, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic, NativeAccessSpecifierProtected, NativeAccessSpecifierPrivate)
class UWidgetAnimation* Warning; // 0x0330(0x0008) (BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, IsPlainOldData, RepSkip, RepNotify, Interp, NonTransactional, EditorOnly, NoDestructor, AutoWeak, ContainsInstancedReference, AssetRegistrySearchable, SimpleDisplay, AdvancedDisplay, Protected, BlueprintCallable, BlueprintAuthorityOnly, TextExportTransient, NonPIEDuplicateTransient, ExposeOnSpawn, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic, NativeAccessSpecifierProtected, NativeAccessSpecifierPrivate)
class UWidgetAnimation* Increasing; // 0x0338(0x0008) (BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, IsPlainOldData, RepSkip, RepNotify, Interp, NonTransactional, EditorOnly, NoDestructor, AutoWeak, ContainsInstancedReference, AssetRegistrySearchable, SimpleDisplay, AdvancedDisplay, Protected, BlueprintCallable, BlueprintAuthorityOnly, TextExportTransient, NonPIEDuplicateTransient, ExposeOnSpawn, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic, NativeAccessSpecifierProtected, NativeAccessSpecifierPrivate)
class UWidgetAnimation* Decreasing; // 0x0340(0x0008) (BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, IsPlainOldData, RepSkip, RepNotify, Interp, NonTransactional, EditorOnly, NoDestructor, AutoWeak, ContainsInstancedReference, AssetRegistrySearchable, SimpleDisplay, AdvancedDisplay, Protected, BlueprintCallable, BlueprintAuthorityOnly, TextExportTransient, NonPIEDuplicateTransient, ExposeOnSpawn, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic, NativeAccessSpecifierProtected, NativeAccessSpecifierPrivate)
class UWidgetAnimation* Default; // 0x0348(0x0008) (BlueprintVisible, ExportObject, BlueprintReadOnly, ZeroConstructor, InstancedReference, IsPlainOldData, RepSkip, RepNotify, Interp, NonTransactional, EditorOnly, NoDestructor, AutoWeak, ContainsInstancedReference, AssetRegistrySearchable, SimpleDisplay, AdvancedDisplay, Protected, BlueprintCallable, BlueprintAuthorityOnly, TextExportTransient, NonPIEDuplicateTransient, ExposeOnSpawn, PersistentInstance, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic, NativeAccessSpecifierProtected, NativeAccessSpecifierPrivate)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("WidgetBlueprintGeneratedClass KillCountWidget.KillCountWidget_C");
return ptr;
}
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"915188949@qq.com"
] | 915188949@qq.com |
be214eede51a41aa060476e9a5df906fa15c0d70 | 5bc9095b81b31df526ab74968f0c90aa328517b5 | /05-Array/C-04-Reverse an array.cpp | bfaf5b795a871daf4b7dc10f405b8a72236aa7a6 | [] | no_license | MIRRORPIE/Geeksforgeeks-DSA | a86249916a6b295f9f823f4583945dbf8d87ff10 | fe3178f7a132e3982ad6572e775b11889aebb106 | refs/heads/main | 2023-01-06T07:44:50.941218 | 2020-11-06T19:26:33 | 2020-11-06T19:26:33 | 303,091,734 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 532 | cpp | #include <iostream>
#include <cmath>
using namespace std;
void reverse(int arr[], int n)
{
int low = 0, high = n - 1;
while(low < high)
{
int temp = arr[low];
arr[low] = arr[high];
arr[high] = temp;
low++;
high--;
}
}
int main()
{
int arr[] = {10, 5, 7, 30}, n = 4;
cout<<"Before Reverse"<<endl;
for(int i = 0; i < n; i++)
{
cout<<arr[i]<<" ";
}
cout<<endl;
reverse(arr, n);
cout<<"After Reverse"<<endl;
for(int i = 0; i < n; i++)
{
cout<<arr[i]<<" ";
}
}
| [
"raushankumar1047@pec.edu"
] | raushankumar1047@pec.edu |
de8ed0b942bd352dedda9e58c5159a896f504c4e | 8eb9c2b4ca07d103c3b09d25445932e7abdf2afd | /Udemy/range_Based_loops/src/range_Based_loops.cpp | 7e3c8460b634a8e2c1f3cab0c3cd25f53c8479ca | [] | no_license | manojk16/Practise | 468622dbe79d681e1bd85ff3d7184b1525a0b7ef | d0f826983d9dc82efb0ca3be6edbbaca6a9858a3 | refs/heads/master | 2020-03-12T02:28:54.895747 | 2018-07-23T09:44:58 | 2018-07-23T09:44:58 | 130,403,672 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 830 | cpp | //============================================================================
// Name : range_Based_loops.cpp
// Author : Manoj
// Version :
// Copyright : Your copyright notice
// Description : Hello World in C++, Ansi-style
//============================================================================
#include <iostream>
#include <vector>
using namespace std;
int main() {
cout << "range_Based_loops" << endl; // prints range_Based_loops
//char text[]={"One","Two", "three"};
auto texts = { "One", "two", "Three" };
// C++ provie the enhanced for loop
for (auto itr : texts) {
cout << itr << endl;
}
vector<int> vect;
vect.push_back(5);
vect.push_back(7);
vect.push_back(10);
vect.push_back(9);
vect.push_back(4);
for(auto numbers : vect){
cout << numbers<<endl;
}
return 0;
}
| [
"manoj.kumar@kaiostech.com"
] | manoj.kumar@kaiostech.com |
f420f2569ef307f5e5786f409dc1c19882cea23a | 792e697ba0f9c11ef10b7de81edb1161a5580cfb | /unittests/Target/AMDGPU/DwarfRegMappings.cpp | 802ea83dcbe3421ddca92ce1c6a72f87884fe3fd | [
"NCSA",
"LLVM-exception",
"Apache-2.0"
] | permissive | opencor/llvmclang | 9eb76cb6529b6a3aab2e6cd266ef9751b644f753 | 63b45a7928f2a8ff823db51648102ea4822b74a6 | refs/heads/master | 2023-08-26T04:52:56.472505 | 2022-11-02T04:35:46 | 2022-11-03T03:55:06 | 115,094,625 | 0 | 1 | Apache-2.0 | 2021-08-12T22:29:21 | 2017-12-22T08:29:14 | LLVM | UTF-8 | C++ | false | false | 3,159 | cpp | //===- llvm/unittests/Target/AMDGPU/DwarfRegMappings.cpp ------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "AMDGPUSubtarget.h"
#include "AMDGPUTargetMachine.h"
#include "llvm/CodeGen/TargetSubtargetInfo.h"
#include "llvm/MC/MCTargetOptions.h"
#include "llvm/MC/TargetRegistry.h"
#include "llvm/Support/TargetSelect.h"
#include "llvm/Target/TargetMachine.h"
#include "gtest/gtest.h"
#include <thread>
using namespace llvm;
std::once_flag flag;
void InitializeAMDGPUTarget() {
std::call_once(flag, []() {
LLVMInitializeAMDGPUTargetInfo();
LLVMInitializeAMDGPUTarget();
LLVMInitializeAMDGPUTargetMC();
});
}
std::unique_ptr<const GCNTargetMachine>
createTargetMachine(std::string TStr, StringRef CPU, StringRef FS) {
InitializeAMDGPUTarget();
std::string Error;
const Target *T = TargetRegistry::lookupTarget(TStr, Error);
if (!T)
return nullptr;
TargetOptions Options;
return std::unique_ptr<GCNTargetMachine>(static_cast<GCNTargetMachine *>(
T->createTargetMachine(TStr, CPU, FS, Options, None, None)));
}
TEST(AMDGPUDwarfRegMappingTests, TestWave64DwarfRegMapping) {
for (auto Triple :
{"amdgcn-amd-", "amdgcn-amd-amdhsa", "amdgcn-amd-amdpal"}) {
auto TM = createTargetMachine(Triple, "gfx1010", "+wavefrontsize64");
if (TM) {
GCNSubtarget ST(TM->getTargetTriple(), std::string(TM->getTargetCPU()),
std::string(TM->getTargetFeatureString()), *TM);
auto MRI = ST.getRegisterInfo();
if (MRI) {
// Wave64 Dwarf register mapping test numbers
// PC_64 => 16, EXEC_MASK_64 => 17, S0 => 32, S63 => 95,
// S64 => 1088, S105 => 1129, V0 => 2560, V255 => 2815,
// A0 => 3072, A255 => 3327
for (int llvmReg :
{16, 17, 32, 95, 1088, 1129, 2560, 2815, 3072, 3327}) {
MCRegister PCReg(*MRI->getLLVMRegNum(llvmReg, false));
EXPECT_EQ(llvmReg, MRI->getDwarfRegNum(PCReg, false));
}
}
}
}
}
TEST(AMDGPUDwarfRegMappingTests, TestWave32DwarfRegMapping) {
for (auto Triple :
{"amdgcn-amd-", "amdgcn-amd-amdhsa", "amdgcn-amd-amdpal"}) {
auto TM = createTargetMachine(Triple, "gfx1010", "+wavefrontsize32");
if (TM) {
GCNSubtarget ST(TM->getTargetTriple(), std::string(TM->getTargetCPU()),
std::string(TM->getTargetFeatureString()), *TM);
auto MRI = ST.getRegisterInfo();
if (MRI) {
// Wave32 Dwarf register mapping test numbers
// PC_64 => 16, EXEC_MASK_32 => 1, S0 => 32, S63 => 95,
// S64 => 1088, S105 => 1129, V0 => 1536, V255 => 1791,
// A0 => 2048, A255 => 2303
for (int llvmReg :
{16, 1, 32, 95, 1088, 1129, 1536, 1791, 2048, 2303}) {
MCRegister PCReg(*MRI->getLLVMRegNum(llvmReg, false));
EXPECT_EQ(llvmReg, MRI->getDwarfRegNum(PCReg, false));
}
}
}
}
}
| [
"agarny@hellix.com"
] | agarny@hellix.com |
0d8b3dd17f404d102009129a380d1da272f82422 | 5f77516a28c03021bca3886cb193136ccce870ff | /arrays/two_d.cpp | 86408942795790b51ae5965b423421db95a94ceb | [] | no_license | thelastsupreme/interviewbit | 75fc488e3d0a3cdf4471bc35ef2e6c06ba595e0f | c39162e6f6e51d718b9f9b6832bbbd52adf61b9d | refs/heads/master | 2022-12-01T02:17:51.147924 | 2020-08-13T03:59:16 | 2020-08-13T03:59:16 | 264,120,353 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 634 | cpp | #include<iostream>
#include<vector>
using namespace std;
vector<vector<int> > performOps(vector<vector<int> > &A) {
vector<vector<int> > B;
B.resize(A.size());
for (int i = 0; i < A.size(); i++) {
B[i].resize(A[i].size());
for (int j = 0; j < A[i].size(); j++) {
B[i][A[i].size() - 1 - j] = A[i][j];
}
}
return B;
}
int main()
{
vector<vector<int>>A={{1, 2, 3, 4}, {5, 6, 7, 8}, {9, 10, 11, 12}};
vector<vector<int> > B = performOps(A);
for (int i = 0; i < B.size(); i++)
{
for (int j = 0; j < B[i].size(); j++)
cout<<B[i][j]<<" ";
}
}
| [
"39990949+thelastsupreme@users.noreply.github.com"
] | 39990949+thelastsupreme@users.noreply.github.com |
8ad55896d04a1bbe771a52d139cc382e8667564f | 6f843d080f73fe167c41702a974434193bfc253d | /Algorithms/Implementation/Circular Array Rotation.cpp | 6aa900944f1d3d8fb5e5494ae1226747c910e3ff | [] | no_license | radiumsharma06/Hackerrank-Solutions | 10991a79c7d2a768678e45a0d5203275baababd2 | 9e1d9c1254c607922db0416911fa8c6a9bc53b08 | refs/heads/master | 2020-04-05T13:01:43.885853 | 2017-07-30T10:44:33 | 2017-07-30T10:44:33 | 95,028,864 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 464 | cpp | #include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
int n,k,q;
cin>>n>>k>>q;
int a[n],x[n],b[q];
for(int i=0;i<n;i++)cin>>a[i];
for(int i=0;i<q;i++)cin>>b[i];
k%=n;
for(int i=0;i<n;i++){
if(i+k<=n-1)x[i+k]=a[i];
else x[i+k-n]=a[i];
}
for(int i=0;i<n;i++)a[i]=x[i];
for(int i=0;i<q;i++)
cout<<a[b[i]]<<endl;
return 0;
}
| [
"radium.sharma06@gmail.com"
] | radium.sharma06@gmail.com |
8e6e111d8f5a593608e8f79bee3e1db1cd9b7cdb | b85062eadba845bd0e607f92f3d6f58707c3030c | /src/swish/tcp.cpp | 2a8ca2dc37178bf97835169022268cc6f23016be | [
"MIT",
"LicenseRef-scancode-public-domain"
] | permissive | guenchi/swish-win | a0bc94a0121bc3c69fe2ac79d312b7c953040f68 | bab98dfa757dfd851d8cf5176fb3e88115f311f4 | refs/heads/master | 2020-06-04T17:45:00.654922 | 2018-04-02T18:40:46 | 2018-04-02T18:40:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,072 | cpp | // Copyright 2017 Beckman Coulter, Inc.
//
// 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 "stdafx.h"
void tcp_init()
{
DEFINE_FOREIGN(osi::ConnectTCP);
DEFINE_FOREIGN(osi::ListenTCP);
DEFINE_FOREIGN(osi::CloseTCPListener);
DEFINE_FOREIGN(osi::AcceptTCP);
DEFINE_FOREIGN(osi::GetIPAddress);
DEFINE_FOREIGN(osi::GetListenerPortNumber);
}
ListenerMap g_Listeners;
static ptr MakeWSALastErrorPair(const char* who)
{
return MakeErrorPair(who, WSAGetLastError());
}
static DWORD InitializeTCP()
{
static bool initialized = false;
if (initialized)
return 0;
WSADATA wsaData;
DWORD error = WSAStartup(MAKEWORD(2, 2), &wsaData);
if (0 == error)
{
if (MAKEWORD(2, 2) != wsaData.wVersion)
{
WSACleanup();
return WSAVERNOTSUPPORTED;
}
initialized = true;
return 0;
}
else
return error;
}
static ptr MakeInitializeTCPErrorPair(DWORD error)
{
return MakeErrorPair("WSAStartup", error);
}
class TCPPort : public Port
{
public:
SOCKET Socket;
TCPPort(SOCKET s)
{
Socket = s;
}
virtual ptr Read(ptr buffer, size_t startIndex, UINT32 size, ptr filePosition, ptr callback)
{
if (Sfalse != filePosition)
return MakeErrorPair("osi::ReadPort", ERROR_BAD_ARGUMENTS);
WSABUF buf;
buf.len = size;
buf.buf = (char*)&Sbytevector_u8_ref(buffer, startIndex);
OverlappedRequest* req = new OverlappedRequest(buffer, callback);
DWORD flags = 0;
DWORD n;
// MSDN documentation says that the number of bytes received
// parameter can be NULL when overlapped I/O is used, but this
// results in an access violation that WinSock catches. We avoid
// this inefficiency by passing the address of stack variable n.
if (WSARecv(Socket, &buf, 1, &n, &flags, &req->Overlapped, NULL) != 0)
{
DWORD error = WSAGetLastError();
if (WSA_IO_PENDING != error)
{
delete req;
return MakeErrorPair("WSARecv", error);
}
}
return Strue;
}
virtual ptr Write(ptr buffer, size_t startIndex, UINT32 size, ptr filePosition, ptr callback)
{
if (Sfalse != filePosition)
return MakeErrorPair("osi::WritePort", ERROR_BAD_ARGUMENTS);
WSABUF buf;
buf.len = size;
buf.buf = (char*)&Sbytevector_u8_ref(buffer, startIndex);
OverlappedRequest* req = new OverlappedRequest(buffer, callback);
DWORD n;
// MSDN documentation says that the number of bytes sent parameter
// can be NULL when overlapped I/O is used, but this results in an
// access violation that WinSock catches. We avoid this
// inefficiency by passing the address of stack variable n.
if (WSASend(Socket, &buf, 1, &n, 0, &req->Overlapped, NULL) != 0)
{
DWORD error = WSAGetLastError();
if (WSA_IO_PENDING != error)
{
delete req;
return MakeErrorPair("WSASend", error);
}
}
return Strue;
}
virtual ptr Close()
{
shutdown(Socket, SD_SEND);
closesocket(Socket);
delete this;
return Strue;
}
virtual ptr GetIPAddress()
{
sockaddr_in6 addr;
int addrLen = sizeof(addr);
if (getpeername(Socket, (sockaddr*)&addr, &addrLen))
return MakeWSALastErrorPair("getpeername");
wchar_t name[256];
DWORD nameLen = sizeof(name)/sizeof(name[0]);
if (WSAAddressToStringW((LPSOCKADDR)&addr, addrLen, NULL, name, &nameLen))
return MakeWSALastErrorPair("WSAAddressToStringW");
return MakeSchemeString(name);
}
static ptr MakeSchemeResult(ptr callback, SOCKET s, const char* who, DWORD error)
{
if (INVALID_SOCKET == s)
return MakeList(callback, MakeErrorPair(who, error));
if (CreateIoCompletionPort((HANDLE)s, g_CompletionPort, (ULONG_PTR)OverlappedRequest::Complete, 0) == NULL)
{
error = GetLastError();
closesocket(s);
return MakeList(callback, MakeErrorPair("CreateIoCompletionPort", error));
}
return MakeList(callback, PortToScheme(new TCPPort(s)));
}
};
ptr osi::ConnectTCP(ptr nodename, ptr servname, ptr callback)
{
class Connector : public WorkItem
{
public:
const wchar_t* NodeName;
const wchar_t* ServiceName;
ptr Callback;
SOCKET Socket;
const char* ErrorWho;
Connector(wchar_t* nodename, wchar_t* servname, ptr callback)
{
NodeName = nodename;
ServiceName = servname;
Callback = callback;
Socket = INVALID_SOCKET;
ErrorWho = NULL;
Slock_object(Callback);
}
virtual ~Connector()
{
delete [] NodeName;
delete [] ServiceName;
Sunlock_object(Callback);
}
virtual DWORD Work()
{
ADDRINFOW* res0;
ADDRINFOW hint = {0};
hint.ai_protocol = IPPROTO_TCP;
hint.ai_socktype = SOCK_STREAM;
DWORD error = GetAddrInfoW(NodeName, ServiceName, &hint, &res0);
if (0 != error)
{
ErrorWho = "GetAddrInfoW";
return error;
}
SOCKET s;
for (ADDRINFOW* res = res0; res != NULL; res = res->ai_next)
{
s = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
if (INVALID_SOCKET == s)
{
error = WSAGetLastError();
ErrorWho = "socket";
continue;
}
if (connect(s, res->ai_addr, static_cast<int>(res->ai_addrlen)) != 0)
{
error = WSAGetLastError();
ErrorWho = "connect";
closesocket(s);
continue;
}
error = 0;
ErrorWho = NULL;
Socket = s;
break;
}
FreeAddrInfoW(res0);
return error;
}
virtual ptr GetCompletionPacket(DWORD error)
{
ptr callback = Callback;
SOCKET s = Socket;
const char* who = ErrorWho;
delete this;
return TCPPort::MakeSchemeResult(callback, s, who, error);
}
};
if (!Sstringp(nodename) || !Sstringp(servname) || !Sprocedurep(callback))
return MakeErrorPair("osi::ConnectTCP", ERROR_BAD_ARGUMENTS);
DWORD error = InitializeTCP();
if (0 != error)
return MakeInitializeTCPErrorPair(error);
WideString wnodename(nodename);
WideString wservname(servname);
return StartWorker(new Connector(wnodename.GetDetachedBuffer(), wservname.GetDetachedBuffer(), callback));
}
ptr osi::ListenTCP(UINT16 portNumber)
{
DWORD error = InitializeTCP();
if (0 != error)
return MakeInitializeTCPErrorPair(error);
SOCKET s = socket(AF_INET6, SOCK_STREAM, 0);
int rc;
int one = 1;
if (INVALID_SOCKET == s) goto ipv4;
DWORD zero = 0;
if (setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY, (const char*)&zero, sizeof(zero)))
{
closesocket(s);
goto ipv4;
}
{
if (setsockopt(s, SOL_SOCKET, SO_EXCLUSIVEADDRUSE, (const char*)&one, sizeof(one)))
{
error = WSAGetLastError();
closesocket(s);
return MakeErrorPair("setsockopt", error);
}
sockaddr_in6 addr = {0};
addr.sin6_family = AF_INET6;
addr.sin6_port = htons(portNumber);
addr.sin6_addr = in6addr_any;
rc = bind(s, (sockaddr*)&addr, sizeof(addr));
goto bind_complete;
}
ipv4:
{
s = socket(AF_INET, SOCK_STREAM, 0);
if (INVALID_SOCKET == s)
return MakeWSALastErrorPair("socket");
if (setsockopt(s, SOL_SOCKET, SO_EXCLUSIVEADDRUSE, (const char*)&one, sizeof(one)))
{
error = WSAGetLastError();
closesocket(s);
return MakeErrorPair("setsockopt", error);
}
sockaddr_in addr = {0};
addr.sin_family = AF_INET;
addr.sin_port = htons(portNumber);
rc = bind(s, (sockaddr*)&addr, sizeof(addr));
goto bind_complete;
}
bind_complete:
if (rc != 0)
{
error = WSAGetLastError();
closesocket(s);
return MakeErrorPair("bind", error);
}
if (listen(s, SOMAXCONN) != 0)
{
error = WSAGetLastError();
closesocket(s);
return MakeErrorPair("listen", error);
}
return Sfixnum(g_Listeners.Allocate(s));
}
ptr osi::CloseTCPListener(iptr listener)
{
SOCKET s = g_Listeners.Lookup(listener, INVALID_SOCKET);
if (INVALID_SOCKET == s)
return MakeErrorPair("osi::CloseTCPListener", ERROR_INVALID_HANDLE);
closesocket(s);
g_Listeners.Deallocate(listener);
return Strue;
}
ptr osi::AcceptTCP(iptr listener, ptr callback)
{
class Acceptor : public WorkItem
{
public:
SOCKET ListenSocket;
ptr Callback;
SOCKET ClientSocket;
const char* ErrorWho;
Acceptor(SOCKET listenSocket, ptr callback)
{
ListenSocket = listenSocket;
Callback = callback;
ClientSocket = INVALID_SOCKET;
ErrorWho = NULL;
Slock_object(Callback);
}
virtual ~Acceptor()
{
Sunlock_object(Callback);
}
virtual DWORD Work()
{
DWORD error;
SOCKET c = accept(ListenSocket, NULL, NULL);
if (INVALID_SOCKET != c)
{
error = 0;
ClientSocket = c;
}
else
{
error = WSAGetLastError();
ErrorWho = "accept";
}
return error;
}
virtual ptr GetCompletionPacket(DWORD error)
{
ptr callback = Callback;
SOCKET s = ClientSocket;
const char* who = ErrorWho;
delete this;
return TCPPort::MakeSchemeResult(callback, s, who, error);
}
};
SOCKET s = g_Listeners.Lookup(listener, INVALID_SOCKET);
if (INVALID_SOCKET == s)
return MakeErrorPair("osi::AcceptTCP", ERROR_INVALID_HANDLE);
if (!Sprocedurep(callback))
return MakeErrorPair("osi::AcceptTCP", ERROR_BAD_ARGUMENTS);
return StartWorker(new Acceptor(s, callback));
}
ptr osi::GetIPAddress(iptr port)
{
Port* p = LookupPort(port);
if (NULL == p)
return MakeErrorPair("osi::GetIPAddress", ERROR_INVALID_HANDLE);
return p->GetIPAddress();
}
ptr osi::GetListenerPortNumber(iptr listener)
{
SOCKET s = g_Listeners.Lookup(listener, INVALID_SOCKET);
if (INVALID_SOCKET == s)
return MakeErrorPair("osi::GetListenerPortNumber", ERROR_INVALID_HANDLE);
sockaddr_in6 addr;
int addrLen = sizeof(addr);
if (getsockname(s, (sockaddr*)&addr, &addrLen))
return MakeWSALastErrorPair("getsockname");
return Sfixnum(ntohs(addr.sin6_port));
}
| [
"rgburger@beckman.com"
] | rgburger@beckman.com |
90770a2b66e11fee8381a8e2a3889c66882affe7 | 3583d47b68fbb5ce433b1599e64edb2a945d0cfc | /LeetCode/trappingRainWater.cpp | 542e9484670ae40f67479fa6f5942e48a5c406d8 | [] | no_license | himanshu-rawat/Cplusplus | d6605e988637622d092df9b4b77a1cf54884434c | cc286ecc63552bddd0182f68db53e7a5e69f2e6c | refs/heads/master | 2020-05-31T06:02:26.155276 | 2019-10-10T04:54:34 | 2019-10-10T04:54:34 | 190,131,694 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,034 | cpp | #include <iostream>
using namespace std;
int main()
{
int testCase;
cin >> testCase;
while (testCase--)
{
int n;
cin >> n;
int arr[100000];
int left[100000];
int right[100000];
for (int i = 0; i < n; i++)
{
cin >> arr[i];
}
int l = 0;
for (int i = 0; i < n; i++)
{
if (arr[i] > l)
{
l = arr[i];
left[i] = l;
}
else
{
left[i] = l;
}
}
int r = 0;
for (int i = n - 1; i >= 0; i--)
{
if (arr[i] > r)
{
r = arr[i];
right[i] = r;
}
else
{
right[i] = r;
}
}
int sum = 0;
for (int i = 0; i < n; i++)
{
sum = sum + (min(left[i], right[i]) - arr[i]);
}
cout << sum << endl;
}
return 0;
} | [
"himanshurawatrit@gmail.com"
] | himanshurawatrit@gmail.com |
40524a85cd96fb66c9be9ecd5df1e8ca1af56d1c | 2d67c9ac5ca190fffc573cf20a17c5064e4e4b69 | /GLlib/HCoreOpenGL.cpp | d035d0e7b632ddc96beffca017ef165d415ef09c | [] | no_license | guodongSong/HomeWork_Guodong | 3a98d9f6d19a69644f4228aedd4721a575adf13b | 07973a20317c5e8640c8e5cc41c7e2c83ef7db3c | refs/heads/master | 2016-09-06T05:18:52.241394 | 2014-05-28T12:51:58 | 2014-05-28T12:51:58 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 16,820 | cpp | #include <windows.h>
#include <stdio.h>
#include "glew.h"
#include "wglew.h"
#include <GL/gl.h>
#include "HCore.h"
#include "HCoreWin32.h"
#include "HCoreOpenGL.h"
#include "HCoreFileUtility.h"
static HDC g_hDC = NULL;
static HGLRC g_hGLRC = NULL;
void APIENTRY _my_glProgramLocalParameters4fvEXT(GLenum target, GLuint index, GLsizei count, const GLfloat* params)
{
for ( int i=0; i<count; i++ )
{
glProgramLocalParameter4fvARB(target, index+i, params + 4*i);
}
}
static void FixupGLExt(void)
{
if ( glProgramLocalParameters4fvEXT==NULL && glProgramLocalParameter4fvARB )
{
glProgramLocalParameters4fvEXT = _my_glProgramLocalParameters4fvEXT;
}
/*
if ( glBindBuffer==NULL && glBindBufferARB)
{
glBindBuffer = glBindBufferARB;
glBufferData = glBufferDataARB;
glBufferSubData = glBufferSubDataARB;
glDeleteBuffers = glDeleteBuffersARB;
glGenBuffers = glGenBuffersARB;
glGetBufferParameteriv = glGetBufferParameterivARB;
glGetBufferPointerv = glGetBufferPointervARB;
glGetBufferSubData = glGetBufferSubDataARB;
glIsBuffer = glIsBufferARB;
glMapBuffer = glMapBufferARB;
glUnmapBuffer = glUnmapBufferARB;
}
*/
/*
if ( glAttachShader==NULL )
{
glAttachShader = glAttachObjectARB;
glCompileShader = glCompileShaderARB;
glCreateProgram = glCreateProgramObjectARB;
glCreateShader = glCreateShaderObjectARB;
glDeleteProgram = glDeleteObjectARB;
glDetachShader = glDetachObjectARB;
glGetActiveUniform = glGetActiveUniformARB;
glGetAttachedShaders = glGetAttachedObjectsARB;
//glGetHandleARB
glGetShaderInfoLog = glGetInfoLogARB;
//glGetObjectParameterfvARB
//glGetObjectParameterivARB
glGetShaderSource = (PFNGLGETSHADERSOURCEPROC) glGetShaderSourceARB;
glGetUniformLocation = (PFNGLGETUNIFORMLOCATIONPROC) glGetUniformLocation;
glGetUniformfv = glGetUniformfvARB;
glGetUniformiv = glGetUniformivARB;
glLinkProgram = glLinkProgramARB;
glShaderSource = glShaderSourceARB;
glUniform1f = glUniform1fARB;
glUniform1fv = glUniform1fvARB;
glUniform1i = glUniform1iARB;
glUniform1iv= glUniform1ivARB;
glUniform2f= glUniform2fARB;
glUniform2fv = glUniform2fvARB;
glUniform2i= glUniform2iARB;
glUniform2iv = glUniform2ivARB;
glUniform3f = glUniform3fARB;
glUniform3fv = glUniform3fvARB;
glUniform3i = glUniform3iARB;
glUniform3iv = glUniform3ivARB;
glUniform4f = glUniform4fARB;
glUniform4fv = glUniform4fvARB;
glUniform4i = glUniform4iARB;
glUniform4iv = glUniform4ivARB;
glUniformMatrix2fv = glUniformMatrix2fvARB;
glUniformMatrix3fv= glUniformMatrix3fvARB;
glUniformMatrix4fv = glUniformMatrix4fvARB;
glUseProgram = glUseProgramObjectARB;
glValidateProgram = glValidateProgramARB;
}
*/
}
static bool SetPixelformat(void)
{
HWND hWnd = HCoreGetWindowHandleWin32();
g_hDC = GetDC(hWnd);
PIXELFORMATDESCRIPTOR pfd;
ZeroMemory(&pfd, sizeof(pfd));
pfd.nSize = sizeof(PIXELFORMATDESCRIPTOR);
pfd.nVersion = 1;
pfd.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER | PFD_TYPE_RGBA;
pfd.iPixelType = PFD_TYPE_RGBA;
pfd.cDepthBits = 24;
pfd.cStencilBits = 8;
pfd.iLayerType = PFD_MAIN_PLANE;
int pixelformat = ChoosePixelFormat(g_hDC, &pfd);
if ( pixelformat == 0 )
{
return false;
}
if ( SetPixelFormat(g_hDC, pixelformat, &pfd) == FALSE)
{
ReleaseDC(hWnd, g_hDC);
return false;
}
g_hGLRC = wglCreateContext(g_hDC);
wglMakeCurrent(g_hDC, g_hGLRC);
return true;
}
void ErrorMessage(LPTSTR lpszFunction)
{
TCHAR szBuf[80];
LPVOID lpMsgBuf;
DWORD dw = GetLastError();
FormatMessage(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM,
NULL,
dw,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
(LPTSTR) &lpMsgBuf,
0, NULL );
printf("%s failed with error %d: %s",
lpszFunction, dw, lpMsgBuf);
LocalFree(lpMsgBuf);
}
// 启动 OpenGL 后, 才能调用它的扩展函数来设置 multi-sampling 功能.
// 还需要重新打开新的窗口来使用 multi-sampling 模式, 不能使用原来的窗口.
static bool SetPixelformatEX(HCoreDeviceSpec *pSpec)
{
HWND hWnd = HCoreGetWindowHandleWin32();
g_hDC = GetDC(hWnd);
PIXELFORMATDESCRIPTOR pfd;
ZeroMemory(&pfd, sizeof(pfd));
pfd.nSize = sizeof(PIXELFORMATDESCRIPTOR);
pfd.nVersion = 1;
pfd.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER | PFD_TYPE_RGBA;
pfd.iPixelType = PFD_TYPE_RGBA;
pfd.cDepthBits = 24; // 24 bits zbuffer
pfd.cStencilBits = 8; // 8 bits stencil buffer
pfd.iLayerType = PFD_MAIN_PLANE; // main layer
int pixelformat = ChoosePixelFormat(g_hDC, &pfd);
if ( pixelformat == 0 )
{
return false;
}
if ( SetPixelFormat(g_hDC, pixelformat, &pfd) == FALSE)
{
ReleaseDC(hWnd, g_hDC);
return false;
}
g_hGLRC = wglCreateContext(g_hDC);
wglMakeCurrent(g_hDC, g_hGLRC);
if (!wglChoosePixelFormatARB)
{
wglChoosePixelFormatARB = (PFNWGLCHOOSEPIXELFORMATARBPROC)wglGetProcAddress("wglChoosePixelFormatARB");
}
if ( !wglChoosePixelFormatARB )
{
printf("OpenGL Display driver does not support wglChoosePixelFormatARB function\n");
return false;
}
int iAttributes[] = {
WGL_DRAW_TO_WINDOW_ARB,GL_TRUE,
WGL_SUPPORT_OPENGL_ARB,GL_TRUE,
WGL_ACCELERATION_ARB, WGL_FULL_ACCELERATION_ARB,
WGL_COLOR_BITS_ARB,24,
WGL_ALPHA_BITS_ARB,8,
WGL_DEPTH_BITS_ARB,24,
WGL_STENCIL_BITS_ARB,8,
WGL_DOUBLE_BUFFER_ARB,GL_TRUE,
WGL_SAMPLE_BUFFERS_ARB,GL_TRUE,
WGL_SAMPLES_ARB, pSpec->m_iMultiSamples,
0,0};
float fAttributes[] = {0,0};
UINT numFormats = 0;
BOOL valid = wglChoosePixelFormatARB(g_hDC, iAttributes, fAttributes,1, &pixelformat, &numFormats);
if (!valid && numFormats==0)
{
return false;
}
DescribePixelFormat(g_hDC, pixelformat, sizeof(pfd), &pfd);
if ( g_hGLRC && g_hDC )
{
wglMakeCurrent(g_hDC, NULL);
wglDeleteContext(g_hGLRC);
g_hGLRC = NULL;
ReleaseDC(hWnd, g_hDC);
g_hDC = NULL;
DestroyWindow(hWnd);
MSG msg;
while(GetMessage(&msg, NULL, 0, 0)!=0) {}
}
HCoreCreateWindow(-1, -1, -1, -1, "OpenGL");
hWnd = HCoreGetWindowHandleWin32();
g_hDC = GetDC(hWnd);
if ( SetPixelFormat(g_hDC, pixelformat, &pfd)==FALSE)
{
ErrorMessage("SetPixelFormatEX");
ReleaseDC(hWnd, g_hDC);
return false;
}
g_hGLRC = wglCreateContext(g_hDC);
wglMakeCurrent(g_hDC, g_hGLRC);
return true;
}
bool HCoreInitGraphicsDeviceOpenGL(HCoreDeviceSpec *pSpec)
{
int multisamples = 0;
if ( pSpec )
multisamples = pSpec->m_iMultiSamples;
HWND hWnd = HCoreGetWindowHandleWin32();
if ( hWnd==NULL )
return false;
if ( multisamples )
{
if ( !SetPixelformatEX(pSpec) )
{
return false;
}
}
else
{
if ( !SetPixelformat() )
{
return false;
}
}
glewInit();
FixupGLExt();
return true;
}
bool HCoreReleaseGraphicsDeviceOpenGL(void)
{
HWND hWnd = HCoreGetWindowHandleWin32();
wglMakeCurrent(g_hDC, NULL);
wglDeleteContext(g_hGLRC);
g_hGLRC = NULL;
ReleaseDC(hWnd, g_hDC);
g_hDC = NULL;
return true;
}
void HCoreSwapBuffersOpenGL(void)
{
SwapBuffers(g_hDC);
}
GLuint HCoreLoadVertexProgramOpenGL_ASM(const char *filename)
{
char filename_fullpath[256];
sprintf(filename_fullpath, "%s%s", HCoreGetShaderPath(), filename);
unsigned int size = 0;
unsigned char *buffer = (unsigned char *) HCoreLoadBinaryStream(filename_fullpath, &size);
if ( buffer==NULL )
{
return 0;
}
GLuint shader_id = 0;
glGenProgramsARB(1, &shader_id);
glBindProgramARB(GL_VERTEX_PROGRAM_ARB, shader_id);
glProgramStringARB(GL_VERTEX_PROGRAM_ARB, GL_PROGRAM_FORMAT_ASCII_ARB, size, buffer);
if ( GL_INVALID_OPERATION == glGetError() )
{
GLint errPos;
glGetIntegerv( GL_PROGRAM_ERROR_POSITION_ARB, &errPos );
GLubyte *errString = (GLubyte *) glGetString(GL_PROGRAM_ERROR_STRING_ARB);
fprintf( stderr, "error at position: %d\n%s\n", errPos, errString );
glDeleteProgramsARB(1, &shader_id);
shader_id = 0;
}
HCoreReleaseBinaryStream(buffer);
return shader_id;
}
void HCoreReleaseVertexProgramOpenGL(GLuint shader_id)
{
glDeleteProgramsARB( 1, &shader_id );
}
GLuint HCoreLoadFragmentProgramOpenGL_ASM(const char *filename)
{
char filename_fullpath[256];
sprintf(filename_fullpath, "%s%s", HCoreGetShaderPath(), filename);
unsigned int size = 0;
unsigned char *buffer = (unsigned char *) HCoreLoadBinaryStream(filename_fullpath, &size);
if ( buffer==NULL )
{
return 0;
}
GLuint shader_id = 0;
glGenProgramsARB(1, &shader_id);
glBindProgramARB(GL_FRAGMENT_PROGRAM_ARB, shader_id );
glProgramStringARB(GL_FRAGMENT_PROGRAM_ARB, GL_PROGRAM_FORMAT_ASCII_ARB, size, buffer);
if ( GL_INVALID_OPERATION == glGetError() )
{
GLint errPos;
glGetIntegerv( GL_PROGRAM_ERROR_POSITION_ARB, &errPos );
GLubyte *errString = (GLubyte *) glGetString(GL_PROGRAM_ERROR_STRING_ARB);
fprintf( stderr, "error at position: %d\n%s\n", errPos, errString );
glDeleteProgramsARB(1, &shader_id);
shader_id = 0;
}
HCoreReleaseBinaryStream(buffer);
return shader_id;
}
void HCoreReleaseFragmentProgramOpenGL(GLuint shader_id)
{
glDeleteProgramsARB( 1, &shader_id );
}
GLuint _LoadGLSLShader(const char *filename, GLenum type)
{
char filename_fullpath[256];
sprintf(filename_fullpath, "%s%s", HCoreGetShaderPath(), filename);
GLuint shader = glCreateShader(type);
unsigned int len = 0;
const GLchar *code = (const GLchar *)HCoreLoadFileStream(filename, &len);
GLint size = len;
glShaderSource(shader, 1, &code, &size);
glCompileShader(shader);
GLint result;
glGetShaderiv(shader, GL_COMPILE_STATUS, &result);
if ( GL_TRUE!=result )
{
GLchar pMessage[2048];
GLsizei msgLen = 1023;
glGetShaderInfoLog(shader, size, &msgLen, pMessage);
printf("%s compile error\n", filename);
printf("%s\n", pMessage);
glDeleteShader(shader);
shader = 0;
}
HCoreReleaseFileStream(code);
return shader;
}
GLuint HCoreLoadVertexShaderOpenGL_GLSL(const char *filename)
{
return _LoadGLSLShader(filename, GL_VERTEX_SHADER);
}
GLuint HCoreLoadFragmentShaderOpenGL_GLSL(const char *filename)
{
return _LoadGLSLShader(filename, GL_FRAGMENT_SHADER);
}
GLuint HCoreCreateProgram(GLuint vs, GLuint fs)
{
GLuint p = glCreateProgram();
glAttachShader(p, vs);
glAttachShader(p, fs);
glLinkProgram(p);
return p;
}
bool HCoreCreateRenderTargetOpenGL(int w, int h, GLuint color_fmt, GLuint *pFramebuffer, GLuint *pTexture)
{
GLuint framebuffer, texture;
*pFramebuffer = 0;
*pTexture = 0;
glGenFramebuffersEXT(1, &framebuffer);
glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, framebuffer);
glGenTextures(1, &texture);
glBindTexture(GL_TEXTURE_2D, texture);
if ( color_fmt==GL_RGBA32F_ARB || color_fmt==GL_RGBA16F_ARB )
{
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
}
else
{
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
}
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glTexImage2D(GL_TEXTURE_2D, 0, color_fmt, w, h, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL);
glFramebufferTexture2DEXT(GL_FRAMEBUFFER_EXT, GL_COLOR_ATTACHMENT0_EXT, GL_TEXTURE_2D, texture, 0);
GLenum status = glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT);
if ( status!=GL_FRAMEBUFFER_COMPLETE_EXT )
{
return false;
}
*pFramebuffer = framebuffer;
*pTexture = texture;
return true;
}
bool HCoreCreateRenderTargetOpenGL(int w, int h, GLuint *pFrameBuffer,
GLuint color_fmt, GLuint *pFrameTexture, int num_mrts,
GLuint depth_fmt, GLuint *pDepthTexture)
{
GLuint framebuffer = 0;
GLuint frametexture = 0;
GLuint depthtexture = 0;
glGenFramebuffersEXT(1, &framebuffer);
glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, framebuffer);
if ( pFrameTexture )
{
for ( int i=0; i<num_mrts; i++ )
{
glGenTextures(1, &frametexture);
glBindTexture(GL_TEXTURE_2D, frametexture);
//glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
//glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
if ( color_fmt==GL_RGBA32F_ARB || color_fmt==GL_RGBA16F_ARB )
{
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
}
else
{
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
}
glTexImage2D(GL_TEXTURE_2D, 0, color_fmt, w, h, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL);
glFramebufferTexture2DEXT(GL_FRAMEBUFFER_EXT, GL_COLOR_ATTACHMENT0_EXT+i, GL_TEXTURE_2D, frametexture, 0);
pFrameTexture[i] = frametexture;
}
}
else
{
glDrawBuffer(FALSE);
glReadBuffer(FALSE);
}
if ( pDepthTexture )
{
glGenTextures(1, &depthtexture);
glBindTexture(GL_TEXTURE_2D, depthtexture);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glTexImage2D(GL_TEXTURE_2D, 0, depth_fmt, w, h, 0, GL_DEPTH_COMPONENT, GL_UNSIGNED_BYTE, NULL);
glFramebufferTexture2DEXT(GL_FRAMEBUFFER_EXT, GL_DEPTH_ATTACHMENT_EXT, GL_TEXTURE_2D, depthtexture, 0);
*pDepthTexture = depthtexture;
}
GLenum status = glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT);
if ( status!=GL_FRAMEBUFFER_COMPLETE_EXT )
{
return false;
}
*pFrameBuffer = framebuffer;
return true;
}
bool HCoreCreateRenderTargetOpenGL(int w, int h, GLuint *pFrameBuffer,
GLuint color_fmt, GLuint *pFrameTexture,
GLuint depth_fmt, GLuint *pDepthTexture)
{
return HCoreCreateRenderTargetOpenGL(w, h, pFrameBuffer, color_fmt, pFrameTexture, 1, depth_fmt, pDepthTexture);
}
/*
bool HCoreCreateRenderTargetOpenGL(int w, int h, GLuint *pFrameBuffer,
GLuint color_fmt, GLuint *pFrameTexture,
GLuint depth_fmt, GLuint *pDepthTexture)
{
GLuint framebuffer = 0;
GLuint frametexture = 0;
GLuint depthtexture = 0;
glGenFramebuffersEXT(1, &framebuffer);
glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, framebuffer);
if ( pFrameTexture )
{
glGenTextures(1, &frametexture);
glBindTexture(GL_TEXTURE_2D, frametexture);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glTexImage2D(GL_TEXTURE_2D, 0, color_fmt, w, h, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL);
glFramebufferTexture2DEXT(GL_FRAMEBUFFER_EXT, GL_COLOR_ATTACHMENT0_EXT, GL_TEXTURE_2D, frametexture, 0);
*pFrameTexture = frametexture;
}
else
{
glDrawBuffer(FALSE);
glReadBuffer(FALSE);
}
if ( pDepthTexture )
{
glGenTextures(1, &depthtexture);
glBindTexture(GL_TEXTURE_2D, depthtexture);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glTexImage2D(GL_TEXTURE_2D, 0, depth_fmt, w, h, 0, GL_DEPTH_COMPONENT, GL_UNSIGNED_BYTE, NULL);
// framebuffer的ZBuffer部分
glFramebufferTexture2DEXT(GL_FRAMEBUFFER_EXT, GL_DEPTH_ATTACHMENT_EXT, GL_TEXTURE_2D, depthtexture, 0);
*pDepthTexture = depthtexture;
}
GLenum status = glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT);
if ( status!=GL_FRAMEBUFFER_COMPLETE_EXT )
{
return false;
}
*pFrameBuffer = framebuffer;
return true;
}
*/
void HCoreSetupLightOpenGL(int index, sHCoreLight &light)
{
GLuint LightID = GL_LIGHT0 + index;
if ( light.m_bEnabled )
{
glEnable(LightID);
}
else
{
glDisable(LightID);
}
if ( light.m_iLightType==LIGHT_POINT )
{
glLightfv(LightID, GL_POSITION, &light.m_vPosition[0]);
}
else
{
Vector4 pos = -light.m_vDirection;
pos[3] = 0.0f;
glLightfv(LightID, GL_POSITION, &pos[0]);
}
glLightfv(LightID, GL_AMBIENT, &light.m_vAmbient[0]);
glLightfv(LightID, GL_DIFFUSE, &light.m_vDiffuse[0]);
glLightfv(LightID, GL_SPECULAR, &light.m_vSpecular[0]);
glLightf(LightID, GL_CONSTANT_ATTENUATION, light.m_vAttenuation[0]);
glLightf(LightID, GL_LINEAR_ATTENUATION, light.m_vAttenuation[1]);
glLightf(LightID, GL_QUADRATIC_ATTENUATION, light.m_vAttenuation[2]);
}
| [
"sgdgoodboygm@gmail.com"
] | sgdgoodboygm@gmail.com |
120bf881f2e2ccf991626f754d2175b937deb6b6 | bcc38d1da7290908bc2dae3ad772a8b7c014d209 | /Xlet.Wallet/src/UI/MainMenu.cpp | f5b0fad0f79a32719196533acb5cd39194ef1193 | [
"MIT"
] | permissive | dinarpay/xlet | 9bad49180bb8fb41ef7d22493b81b19ac657721a | e0f64f231e627d0cc52f3c032e66f59a63b2942f | refs/heads/master | 2022-11-09T20:46:16.598664 | 2020-06-28T21:08:35 | 2020-06-28T21:08:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,811 | cpp | #include "UI/MainMenu.h"
#include "Constants.h"
#include "Display/IDisplay.h"
#include "UI/Colors.h"
using namespace Xlet::Icons;
MainMenu::MainMenu()
: m_selected(0), m_redraw(true), m_fullRedraw(true), m_showQR(false)
{
m_options = std::list<MenuOption>{
MenuOption{
"Pay", std::make_shared<Money>(), std::make_shared<MoneyActive>()},
MenuOption{
"Receive", std::make_shared<QR>(), std::make_shared<QRActive>()},
MenuOption{
"History", std::make_shared<Receipt>(), std::make_shared<ReceiptActive>()},
MenuOption{
"Settings", std::make_shared<Cog>(), std::make_shared<CogActive>()}};
}
void MainMenu::Update(const std::list<InputEventType> &inputEvents)
{
if (inputEvents.size() == 0)
{
return;
}
m_redraw = true;
for (const auto &inputEvent : inputEvents)
{
switch (inputEvent)
{
case InputEventType::Up:
--m_selected;
if (m_selected < 0)
{
m_selected = m_options.size() - 1;
}
break;
case InputEventType::Select:
if (m_selected == 1)
{
m_showQR = true;
}
break;
case InputEventType::Down:
++m_selected;
if (m_selected > 3)
{
m_selected = 0;
}
break;
}
}
}
void MainMenu::UpdateTime(const std::string& time)
{
m_time = time;
m_redraw = true;
m_fullRedraw = true;
}
void MainMenu::ShowQR()
{
m_showQR = true;
m_redraw = true;
m_fullRedraw = true;
}
void DrawIcon(IDisplay *display, int x, int y, const Xlet::Icons::Icon *icon)
{
display->DrawBitmap(x, y, icon->GetWidth(), icon->GetHeight(), icon->GetImage());
}
void MainMenu::Draw(IDisplay *display)
{
if (!m_redraw)
{
return;
}
if (m_fullRedraw)
{
display->FillScreen(Colors::Background);
}
if (m_showQR)
{
display->FillScreen(Colors::Background);
}
else
{
int screenWidth = display->GetWidth();
int screenHeight = display->GetHeight();
const int buttonMargin = 8;
const int header = 16;
const int footer = 32;
const int buttonsPerPage = 4;
const int buttonHeight = ((screenHeight - header - footer) - ((buttonsPerPage + 1) * buttonMargin)) / buttonsPerPage;
int i = 0;
for (const auto &option : m_options)
{
int y = header + (buttonMargin * (i + 1)) + buttonHeight * i;
int w = screenWidth - (buttonMargin * 2);
if (i == m_selected)
{
display->FillRoundRect(buttonMargin, y, w, buttonHeight, 5, Colors::ButtonHighlight);
display->DrawRoundRect(buttonMargin, y, w, buttonHeight, 5, Colors::Text);
DrawIcon(display, buttonMargin + 3, y + 3, option.IconActive.get());
}
else
{
display->FillRoundRect(buttonMargin, y, w, buttonHeight, 5, Colors::Button);
DrawIcon(display, buttonMargin + 3, y + 3, option.IconNormal.get());
}
display->DrawString(option.Text.c_str(), buttonMargin + 38, y + 9, 4, Colors::TextMenu);
++i;
}
// LCD display
display->DrawString(m_time.c_str(), buttonMargin, buttonMargin, 1, Colors::Text);
DrawIcon(display, screenWidth - buttonMargin - m_iconBattery.GetWidth(), 3, &m_iconBattery);
DrawIcon(display, screenWidth - buttonMargin - m_iconBluetooth.GetWidth() - m_iconBattery.GetWidth(), 3, &m_iconBluetooth);
DrawIcon(display, 50, screenHeight - m_iconUp.GetWidth(), &m_iconUp);
DrawIcon(display, (screenWidth / 2) - (m_iconCheck.GetWidth() / 2), screenHeight - m_iconCheck.GetHeight(), &m_iconCheck);
DrawIcon(display, screenWidth - 50 - m_iconDown.GetWidth(), screenHeight - m_iconDown.GetHeight(), &m_iconDown);
display->DrawLine(0, screenHeight - footer, screenWidth, screenHeight - footer, Colors::Text);
}
m_fullRedraw = false;
m_redraw = false;
}
| [
"m.j.pearce@gmail.com"
] | m.j.pearce@gmail.com |
98df0ccf9add656dc43cb6e257d9980b130e7f87 | 4b499e598d2536b5d4877eb21b9aab0d707bcf65 | /codeforces/round411/B.cpp | d113307782063cec61df1d60076339bd78bfbd6f | [] | no_license | rachit173/sport | 9338f36c9b315f91ee29766a97ad731228b8460d | 75720f7e7d6fc11e6fcc4eff2a7c040cc89e8073 | refs/heads/master | 2021-08-31T15:08:17.469369 | 2017-12-21T20:46:53 | 2017-12-21T20:46:53 | 115,045,439 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 357 | cpp | #include<bits/stdc++.h>
using namespace std;
#define ll long long int
typedef pair<int,int> ii;
typedef vector<int > vi;
typedef vector<ii> vii;
int main(){
int n;
cin>>n;
vector<char> a(n);
a[0]='a';
a[1]='a';
for(int i=2;i<n;i++){
if(a[i-2]=='a')a[i]='b';
else a[i]='a';
}
for(int i=0;i<n;i++)
printf("%c",a[i]);
return 0;
}
| [
"rachittibrewal@gmail.com"
] | rachittibrewal@gmail.com |
df85f83ed1aa71efa12262f0834b385f1bc7d20a | f51bf903c5461085e3a6fc931a8e333df3e10a2d | /services/ui/ws/test_utils.cc | 7248aa8789bc5a0693f63bf9e902f1e2386a71bc | [
"BSD-3-Clause"
] | permissive | honwsn/lgsvl-chromium-src | 2c95c48d647196e14a3e642fd22b9e03c91c5d09 | 9b267445180d7d61b94775d3cb4ca283006ec114 | refs/heads/master | 2023-03-17T11:12:43.545550 | 2017-10-24T01:58:06 | 2017-10-24T01:58:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 29,434 | 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 "services/ui/ws/test_utils.h"
#include <utility>
#include "base/memory/ptr_util.h"
#include "base/strings/string_number_conversions.h"
#include "components/viz/common/frame_sinks/copy_output_request.h"
#include "gpu/ipc/client/gpu_channel_host.h"
#include "services/service_manager/public/interfaces/connector.mojom.h"
#include "services/ui/common/image_cursors_set.h"
#include "services/ui/public/interfaces/cursor/cursor.mojom.h"
#include "services/ui/ws/cursor_location_manager.h"
#include "services/ui/ws/display_binding.h"
#include "services/ui/ws/display_creation_config.h"
#include "services/ui/ws/display_manager.h"
#include "services/ui/ws/test_gpu_host.h"
#include "services/ui/ws/threaded_image_cursors.h"
#include "services/ui/ws/threaded_image_cursors_factory.h"
#include "services/ui/ws/window_manager_access_policy.h"
#include "services/ui/ws/window_manager_window_tree_factory.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/cursor/cursor.h"
#include "ui/gfx/geometry/dip_util.h"
namespace ui {
namespace ws {
namespace test {
namespace {
ClientWindowId NextUnusedClientWindowId(WindowTree* tree) {
for (ClientSpecificId id = 1;; ++id) {
// Used the id of the client in the upper bits to simplify things.
const ClientWindowId client_id = ClientWindowId(tree->id(), id);
if (!tree->GetWindowByClientId(client_id))
return client_id;
}
}
display::ViewportMetrics MakeViewportMetrics(const display::Display& display) {
gfx::Size pixel_size = gfx::ConvertSizeToPixel(display.device_scale_factor(),
display.bounds().size());
display::ViewportMetrics metrics;
metrics.bounds_in_pixels.set_size(pixel_size);
metrics.device_scale_factor = display.device_scale_factor();
metrics.ui_scale_factor = 1;
return metrics;
}
class TestThreadedImageCursorsFactory : public ThreadedImageCursorsFactory {
public:
TestThreadedImageCursorsFactory() {}
~TestThreadedImageCursorsFactory() override {}
// ThreadedImageCursorsFactory:
std::unique_ptr<ThreadedImageCursors> CreateCursors() override {
if (!resource_runner_) {
resource_runner_ = base::ThreadTaskRunnerHandle::Get();
image_cursors_set_ = base::MakeUnique<ui::ImageCursorsSet>();
}
return base::MakeUnique<ws::ThreadedImageCursors>(
resource_runner_, image_cursors_set_->GetWeakPtr());
}
private:
scoped_refptr<base::SingleThreadTaskRunner> resource_runner_;
std::unique_ptr<ui::ImageCursorsSet> image_cursors_set_;
DISALLOW_COPY_AND_ASSIGN(TestThreadedImageCursorsFactory);
};
} // namespace
// TestScreenManager -------------------------------------------------
TestScreenManager::TestScreenManager() {}
TestScreenManager::~TestScreenManager() {
display::Screen::SetScreenInstance(nullptr);
}
int64_t TestScreenManager::AddDisplay() {
return AddDisplay(
display::Display(display::kInvalidDisplayId, gfx::Rect(100, 100)));
}
int64_t TestScreenManager::AddDisplay(const display::Display& input_display) {
// Generate a unique display id.
int64_t display_id = display_ids_.empty() ? 1 : *display_ids_.rbegin() + 1;
display_ids_.insert(display_id);
display::Display display = input_display;
display.set_id(display_id);
// First display added will be the primary display.
display::DisplayList::Type type = display::DisplayList::Type::NOT_PRIMARY;
if (display_ids_.size() == 1)
type = display::DisplayList::Type::PRIMARY;
screen_->display_list().AddDisplay(display, type);
delegate_->OnDisplayAdded(display, MakeViewportMetrics(display));
if (type == display::DisplayList::Type::PRIMARY)
delegate_->OnPrimaryDisplayChanged(display_id);
return display_id;
}
void TestScreenManager::ModifyDisplay(
const display::Display& display,
const base::Optional<display::ViewportMetrics>& metrics) {
DCHECK(display_ids_.count(display.id()) == 1);
screen_->display_list().UpdateDisplay(display);
if (metrics)
delegate_->OnDisplayModified(display, *metrics);
else
delegate_->OnDisplayModified(display, MakeViewportMetrics(display));
}
void TestScreenManager::RemoveDisplay(int64_t display_id) {
DCHECK(display_ids_.count(display_id) == 1);
screen_->display_list().RemoveDisplay(display_id);
delegate_->OnDisplayRemoved(display_id);
display_ids_.erase(display_id);
}
void TestScreenManager::Init(display::ScreenManagerDelegate* delegate) {
delegate_ = delegate;
// Reset everything.
display_ids_.clear();
display::Screen::SetScreenInstance(nullptr);
screen_ = base::MakeUnique<display::ScreenBase>();
display::Screen::SetScreenInstance(screen_.get());
}
display::ScreenBase* TestScreenManager::GetScreen() {
return screen_.get();
}
// TestPlatformDisplayFactory -------------------------------------------------
TestPlatformDisplayFactory::TestPlatformDisplayFactory(
ui::CursorData* cursor_storage)
: cursor_storage_(cursor_storage) {}
TestPlatformDisplayFactory::~TestPlatformDisplayFactory() {}
std::unique_ptr<PlatformDisplay>
TestPlatformDisplayFactory::CreatePlatformDisplay(
ServerWindow* root_window,
const display::ViewportMetrics& metrics) {
return base::MakeUnique<TestPlatformDisplay>(metrics, cursor_storage_);
}
// WindowTreeTestApi ---------------------------------------------------------
WindowTreeTestApi::WindowTreeTestApi(WindowTree* tree) : tree_(tree) {}
WindowTreeTestApi::~WindowTreeTestApi() {}
void WindowTreeTestApi::StartPointerWatcher(bool want_moves) {
tree_->StartPointerWatcher(want_moves);
}
void WindowTreeTestApi::StopPointerWatcher() {
tree_->StopPointerWatcher();
}
// DisplayTestApi ------------------------------------------------------------
DisplayTestApi::DisplayTestApi(Display* display) : display_(display) {}
DisplayTestApi::~DisplayTestApi() {}
// EventDispatcherTestApi ----------------------------------------------------
bool EventDispatcherTestApi::IsWindowPointerTarget(
const ServerWindow* window) const {
for (const auto& pair : ed_->pointer_targets_) {
if (pair.second.window == window)
return true;
}
return false;
}
int EventDispatcherTestApi::NumberPointerTargetsForWindow(
ServerWindow* window) {
int count = 0;
for (const auto& pair : ed_->pointer_targets_)
if (pair.second.window == window)
count++;
return count;
}
// TestDisplayBinding ---------------------------------------------------------
WindowTree* TestDisplayBinding::CreateWindowTree(ServerWindow* root) {
const uint32_t embed_flags = 0;
WindowTree* tree = window_server_->EmbedAtWindow(
root, service_manager::mojom::kRootUserID,
ui::mojom::WindowTreeClientPtr(), embed_flags,
base::WrapUnique(new WindowManagerAccessPolicy));
tree->ConfigureWindowManager(automatically_create_display_roots_);
return tree;
}
// TestWindowManager ----------------------------------------------------------
TestWindowManager::TestWindowManager() {}
TestWindowManager::~TestWindowManager() {}
void TestWindowManager::OnConnect() {
connect_count_++;
}
void TestWindowManager::WmNewDisplayAdded(
const display::Display& display,
ui::mojom::WindowDataPtr root,
bool drawn,
const base::Optional<viz::LocalSurfaceId>& local_surface_id) {
display_added_count_++;
}
void TestWindowManager::WmDisplayRemoved(int64_t display_id) {
got_display_removed_ = true;
display_removed_id_ = display_id;
}
void TestWindowManager::WmSetModalType(uint32_t window_id, ui::ModalType type) {
on_set_modal_type_called_ = true;
}
void TestWindowManager::WmCreateTopLevelWindow(
uint32_t change_id,
ClientSpecificId requesting_client_id,
const std::unordered_map<std::string, std::vector<uint8_t>>& properties) {
got_create_top_level_window_ = true;
change_id_ = change_id;
}
void TestWindowManager::WmClientJankinessChanged(ClientSpecificId client_id,
bool janky) {}
void TestWindowManager::WmBuildDragImage(const gfx::Point& screen_location,
const SkBitmap& drag_image,
const gfx::Vector2d& drag_image_offset,
ui::mojom::PointerKind source) {}
void TestWindowManager::WmMoveDragImage(
const gfx::Point& screen_location,
const WmMoveDragImageCallback& callback) {
callback.Run();
}
void TestWindowManager::WmDestroyDragImage() {}
void TestWindowManager::WmPerformMoveLoop(uint32_t change_id,
uint32_t window_id,
mojom::MoveLoopSource source,
const gfx::Point& cursor_location) {
on_perform_move_loop_called_ = true;
}
void TestWindowManager::WmCancelMoveLoop(uint32_t window_id) {}
void TestWindowManager::WmDeactivateWindow(uint32_t window_id) {}
void TestWindowManager::WmStackAbove(uint32_t change_id,
uint32_t above_id,
uint32_t below_id) {}
void TestWindowManager::WmStackAtTop(uint32_t change_id, uint32_t window_id) {}
void TestWindowManager::OnAccelerator(uint32_t ack_id,
uint32_t accelerator_id,
std::unique_ptr<ui::Event> event) {
on_accelerator_called_ = true;
on_accelerator_id_ = accelerator_id;
}
void TestWindowManager::OnCursorTouchVisibleChanged(bool enabled) {}
void TestWindowManager::OnEventBlockedByModalWindow(uint32_t window_id) {}
// TestWindowTreeClient -------------------------------------------------------
TestWindowTreeClient::TestWindowTreeClient()
: binding_(this), record_on_change_completed_(false) {}
TestWindowTreeClient::~TestWindowTreeClient() {}
void TestWindowTreeClient::Bind(
mojo::InterfaceRequest<mojom::WindowTreeClient> request) {
binding_.Bind(std::move(request));
}
void TestWindowTreeClient::OnEmbed(
mojom::WindowDataPtr root,
ui::mojom::WindowTreePtr tree,
int64_t display_id,
Id focused_window_id,
bool drawn,
const base::Optional<viz::LocalSurfaceId>& local_surface_id) {
// TODO(sky): add test coverage of |focused_window_id|.
tracker_.OnEmbed(std::move(root), drawn);
}
void TestWindowTreeClient::OnEmbeddedAppDisconnected(uint32_t window) {
tracker_.OnEmbeddedAppDisconnected(window);
}
void TestWindowTreeClient::OnUnembed(Id window_id) {
tracker_.OnUnembed(window_id);
}
void TestWindowTreeClient::OnCaptureChanged(Id new_capture_window_id,
Id old_capture_window_id) {
tracker_.OnCaptureChanged(new_capture_window_id, old_capture_window_id);
}
void TestWindowTreeClient::OnFrameSinkIdAllocated(
Id window_id,
const viz::FrameSinkId& frame_sink_id) {
tracker_.OnFrameSinkIdAllocated(window_id, frame_sink_id);
}
void TestWindowTreeClient::OnTopLevelCreated(
uint32_t change_id,
mojom::WindowDataPtr data,
int64_t display_id,
bool drawn,
const base::Optional<viz::LocalSurfaceId>& local_surface_id) {
tracker_.OnTopLevelCreated(change_id, std::move(data), drawn);
}
void TestWindowTreeClient::OnWindowBoundsChanged(
uint32_t window,
const gfx::Rect& old_bounds,
const gfx::Rect& new_bounds,
const base::Optional<viz::LocalSurfaceId>& local_surface_id) {
tracker_.OnWindowBoundsChanged(window, std::move(old_bounds),
std::move(new_bounds), local_surface_id);
}
void TestWindowTreeClient::OnWindowTransformChanged(
uint32_t window,
const gfx::Transform& old_transform,
const gfx::Transform& new_transform) {}
void TestWindowTreeClient::OnClientAreaChanged(
uint32_t window_id,
const gfx::Insets& new_client_area,
const std::vector<gfx::Rect>& new_additional_client_areas) {}
void TestWindowTreeClient::OnTransientWindowAdded(
uint32_t window_id,
uint32_t transient_window_id) {}
void TestWindowTreeClient::OnTransientWindowRemoved(
uint32_t window_id,
uint32_t transient_window_id) {}
void TestWindowTreeClient::OnWindowHierarchyChanged(
uint32_t window,
uint32_t old_parent,
uint32_t new_parent,
std::vector<mojom::WindowDataPtr> windows) {
tracker_.OnWindowHierarchyChanged(window, old_parent, new_parent,
std::move(windows));
}
void TestWindowTreeClient::OnWindowReordered(uint32_t window_id,
uint32_t relative_window_id,
mojom::OrderDirection direction) {
tracker_.OnWindowReordered(window_id, relative_window_id, direction);
}
void TestWindowTreeClient::OnWindowDeleted(uint32_t window) {
tracker_.OnWindowDeleted(window);
}
void TestWindowTreeClient::OnWindowVisibilityChanged(uint32_t window,
bool visible) {
tracker_.OnWindowVisibilityChanged(window, visible);
}
void TestWindowTreeClient::OnWindowOpacityChanged(uint32_t window,
float old_opacity,
float new_opacity) {
tracker_.OnWindowOpacityChanged(window, new_opacity);
}
void TestWindowTreeClient::OnWindowParentDrawnStateChanged(uint32_t window,
bool drawn) {
tracker_.OnWindowParentDrawnStateChanged(window, drawn);
}
void TestWindowTreeClient::OnWindowSharedPropertyChanged(
uint32_t window,
const std::string& name,
const base::Optional<std::vector<uint8_t>>& new_data) {
tracker_.OnWindowSharedPropertyChanged(window, name, new_data);
}
void TestWindowTreeClient::OnWindowInputEvent(
uint32_t event_id,
uint32_t window,
int64_t display_id,
const gfx::PointF& event_location_in_screen_pixel_layout,
std::unique_ptr<ui::Event> event,
bool matches_pointer_watcher) {
tracker_.OnWindowInputEvent(window, *event.get(), display_id,
event_location_in_screen_pixel_layout,
matches_pointer_watcher);
}
void TestWindowTreeClient::OnPointerEventObserved(
std::unique_ptr<ui::Event> event,
uint32_t window_id,
int64_t display_id) {
tracker_.OnPointerEventObserved(*event.get(), window_id);
}
void TestWindowTreeClient::OnWindowFocused(uint32_t focused_window_id) {
tracker_.OnWindowFocused(focused_window_id);
}
void TestWindowTreeClient::OnWindowCursorChanged(uint32_t window_id,
ui::CursorData cursor) {
tracker_.OnWindowCursorChanged(window_id, cursor);
}
void TestWindowTreeClient::OnWindowSurfaceChanged(
Id window_id,
const viz::SurfaceInfo& surface_info) {}
void TestWindowTreeClient::OnDragDropStart(
const std::unordered_map<std::string, std::vector<uint8_t>>& mime_data) {}
void TestWindowTreeClient::OnDragEnter(uint32_t window,
uint32_t key_state,
const gfx::Point& position,
uint32_t effect_bitmask,
const OnDragEnterCallback& callback) {}
void TestWindowTreeClient::OnDragOver(uint32_t window,
uint32_t key_state,
const gfx::Point& position,
uint32_t effect_bitmask,
const OnDragOverCallback& callback) {}
void TestWindowTreeClient::OnDragLeave(uint32_t window) {}
void TestWindowTreeClient::OnCompleteDrop(
uint32_t window,
uint32_t key_state,
const gfx::Point& position,
uint32_t effect_bitmask,
const OnCompleteDropCallback& callback) {}
void TestWindowTreeClient::OnPerformDragDropCompleted(uint32_t window,
bool success,
uint32_t action_taken) {}
void TestWindowTreeClient::OnDragDropDone() {}
void TestWindowTreeClient::OnChangeCompleted(uint32_t change_id, bool success) {
if (record_on_change_completed_)
tracker_.OnChangeCompleted(change_id, success);
}
void TestWindowTreeClient::RequestClose(uint32_t window_id) {}
void TestWindowTreeClient::GetWindowManager(
mojo::AssociatedInterfaceRequest<mojom::WindowManager> internal) {}
// TestWindowTreeBinding ------------------------------------------------------
TestWindowTreeBinding::TestWindowTreeBinding(
WindowTree* tree,
std::unique_ptr<TestWindowTreeClient> client)
: WindowTreeBinding(client.get()),
tree_(tree),
client_(std::move(client)) {}
TestWindowTreeBinding::~TestWindowTreeBinding() {}
mojom::WindowManager* TestWindowTreeBinding::GetWindowManager() {
if (!window_manager_.get())
window_manager_ = base::MakeUnique<TestWindowManager>();
return window_manager_.get();
}
void TestWindowTreeBinding::SetIncomingMethodCallProcessingPaused(bool paused) {
is_paused_ = paused;
}
mojom::WindowTreeClient* TestWindowTreeBinding::CreateClientForShutdown() {
DCHECK(!client_after_reset_);
client_after_reset_ = base::MakeUnique<TestWindowTreeClient>();
return client_after_reset_.get();
}
// TestWindowServerDelegate ----------------------------------------------
TestWindowServerDelegate::TestWindowServerDelegate()
: threaded_image_cursors_factory_(
base::MakeUnique<TestThreadedImageCursorsFactory>()) {}
TestWindowServerDelegate::~TestWindowServerDelegate() {}
void TestWindowServerDelegate::StartDisplayInit() {}
void TestWindowServerDelegate::OnNoMoreDisplays() {
got_on_no_more_displays_ = true;
}
std::unique_ptr<WindowTreeBinding>
TestWindowServerDelegate::CreateWindowTreeBinding(
BindingType type,
ws::WindowServer* window_server,
ws::WindowTree* tree,
mojom::WindowTreeRequest* tree_request,
mojom::WindowTreeClientPtr* client) {
std::unique_ptr<TestWindowTreeBinding> binding =
base::MakeUnique<TestWindowTreeBinding>(tree);
bindings_.push_back(binding.get());
return std::move(binding);
}
bool TestWindowServerDelegate::IsTestConfig() const {
return true;
}
void TestWindowServerDelegate::OnWillCreateTreeForWindowManager(
bool automatically_create_display_roots) {
if (window_server_->display_creation_config() !=
DisplayCreationConfig::UNKNOWN) {
return;
}
window_server_->SetDisplayCreationConfig(
automatically_create_display_roots ? DisplayCreationConfig::AUTOMATIC
: DisplayCreationConfig::MANUAL);
}
ThreadedImageCursorsFactory*
TestWindowServerDelegate::GetThreadedImageCursorsFactory() {
return threaded_image_cursors_factory_.get();
}
// WindowServerTestHelper ---------------------------------------------------
WindowServerTestHelper::WindowServerTestHelper()
: cursor_(ui::CursorType::kNull), platform_display_factory_(&cursor_) {
// Some tests create their own message loop, for example to add a task runner.
if (!base::MessageLoop::current())
message_loop_ = base::MakeUnique<base::MessageLoop>();
PlatformDisplay::set_factory_for_testing(&platform_display_factory_);
window_server_ = base::MakeUnique<WindowServer>(&window_server_delegate_);
std::unique_ptr<GpuHost> gpu_host = base::MakeUnique<TestGpuHost>();
window_server_->SetGpuHost(std::move(gpu_host));
window_server_delegate_.set_window_server(window_server_.get());
}
WindowServerTestHelper::~WindowServerTestHelper() {
// Destroy |window_server_| while the message-loop is still alive.
window_server_.reset();
}
// WindowEventTargetingHelper ------------------------------------------------
WindowEventTargetingHelper::WindowEventTargetingHelper(
bool automatically_create_display_roots) {
display_ = new Display(window_server());
display_binding_ = new TestDisplayBinding(window_server(),
automatically_create_display_roots);
display_->Init(display::ViewportMetrics(),
base::WrapUnique(display_binding_));
wm_client_ = ws_test_helper_.window_server_delegate()->last_client();
wm_client_->tracker()->changes()->clear();
}
WindowEventTargetingHelper::~WindowEventTargetingHelper() {}
ServerWindow* WindowEventTargetingHelper::CreatePrimaryTree(
const gfx::Rect& root_window_bounds,
const gfx::Rect& window_bounds) {
WindowTree* wm_tree = window_server()->GetTreeWithId(kWindowManagerClientId);
const ClientWindowId embed_window_id(wm_tree->id(),
next_primary_tree_window_id_++);
EXPECT_TRUE(wm_tree->NewWindow(embed_window_id, ServerWindow::Properties()));
EXPECT_TRUE(wm_tree->SetWindowVisibility(embed_window_id, true));
EXPECT_TRUE(wm_tree->AddWindow(FirstRootId(wm_tree), embed_window_id));
display_->root_window()->SetBounds(root_window_bounds, base::nullopt);
mojom::WindowTreeClientPtr client;
ws_test_helper_.window_server_delegate()->last_client()->Bind(
mojo::MakeRequest(&client));
const uint32_t embed_flags = 0;
wm_tree->Embed(embed_window_id, std::move(client), embed_flags);
ServerWindow* embed_window = wm_tree->GetWindowByClientId(embed_window_id);
embed_window->set_event_targeting_policy(
mojom::EventTargetingPolicy::DESCENDANTS_ONLY);
WindowTree* tree1 = window_server()->GetTreeWithRoot(embed_window);
EXPECT_NE(nullptr, tree1);
EXPECT_NE(tree1, wm_tree);
WindowTreeTestApi(tree1).set_user_id(wm_tree->user_id());
embed_window->SetBounds(window_bounds, base::nullopt);
return embed_window;
}
void WindowEventTargetingHelper::CreateSecondaryTree(
ServerWindow* embed_window,
const gfx::Rect& window_bounds,
TestWindowTreeClient** out_client,
WindowTree** window_tree,
ServerWindow** window) {
WindowTree* tree1 = window_server()->GetTreeWithRoot(embed_window);
ASSERT_TRUE(tree1 != nullptr);
const ClientWindowId child1_id(tree1->id(), 1);
ASSERT_TRUE(tree1->NewWindow(child1_id, ServerWindow::Properties()));
ServerWindow* child1 = tree1->GetWindowByClientId(child1_id);
ASSERT_TRUE(child1);
EXPECT_TRUE(tree1->AddWindow(ClientWindowIdForWindow(tree1, embed_window),
child1_id));
embed_window->set_is_activation_parent(true);
child1->SetVisible(true);
child1->SetBounds(window_bounds, base::nullopt);
TestWindowTreeClient* embed_client =
ws_test_helper_.window_server_delegate()->last_client();
embed_client->tracker()->changes()->clear();
wm_client_->tracker()->changes()->clear();
*out_client = embed_client;
*window_tree = tree1;
*window = child1;
}
void WindowEventTargetingHelper::SetTaskRunner(
scoped_refptr<base::SingleThreadTaskRunner> task_runner) {
base::MessageLoop::current()->SetTaskRunner(task_runner);
}
// ----------------------------------------------------------------------------
TestDisplayManagerObserver::TestDisplayManagerObserver() : binding_(this) {}
TestDisplayManagerObserver::~TestDisplayManagerObserver() = default;
mojom::DisplayManagerObserverPtr TestDisplayManagerObserver::GetPtr() {
mojom::DisplayManagerObserverPtr ptr;
binding_.Bind(mojo::MakeRequest(&ptr));
return ptr;
}
std::string TestDisplayManagerObserver::GetAndClearObserverCalls() {
std::string result;
std::swap(observer_calls_, result);
return result;
}
std::string TestDisplayManagerObserver::DisplayIdsToString(
const std::vector<mojom::WsDisplayPtr>& wm_displays) {
std::string display_ids;
for (const auto& wm_display : wm_displays) {
if (!display_ids.empty())
display_ids += " ";
display_ids += base::Int64ToString(wm_display->display.id());
}
return display_ids;
}
void TestDisplayManagerObserver::OnDisplaysChanged(
std::vector<mojom::WsDisplayPtr> displays,
int64_t primary_display_id,
int64_t internal_display_id) {
if (!observer_calls_.empty())
observer_calls_ += "\n";
observer_calls_ += "OnDisplaysChanged " + DisplayIdsToString(displays);
observer_calls_ += " " + base::Int64ToString(internal_display_id);
}
// -----------------------------------------------------------------------------
TestPlatformDisplay::TestPlatformDisplay(
const display::ViewportMetrics& metrics,
ui::CursorData* cursor_storage)
: metrics_(metrics), cursor_storage_(cursor_storage) {}
TestPlatformDisplay::~TestPlatformDisplay() = default;
// PlatformDisplay:
void TestPlatformDisplay::Init(PlatformDisplayDelegate* delegate) {
delegate->OnAcceleratedWidgetAvailable();
}
void TestPlatformDisplay::SetViewportSize(const gfx::Size& size) {}
void TestPlatformDisplay::SetTitle(const base::string16& title) {}
void TestPlatformDisplay::SetCapture() {}
void TestPlatformDisplay::ReleaseCapture() {}
void TestPlatformDisplay::SetCursor(const ui::CursorData& cursor) {
*cursor_storage_ = cursor;
}
void TestPlatformDisplay::SetCursorSize(const ui::CursorSize& cursor_size) {}
void TestPlatformDisplay::ConfineCursorToBounds(const gfx::Rect& pixel_bounds) {
confine_cursor_bounds_ = pixel_bounds;
}
void TestPlatformDisplay::MoveCursorTo(
const gfx::Point& window_pixel_location) {}
void TestPlatformDisplay::UpdateTextInputState(
const ui::TextInputState& state) {}
void TestPlatformDisplay::SetImeVisibility(bool visible) {}
void TestPlatformDisplay::UpdateViewportMetrics(
const display::ViewportMetrics& metrics) {
metrics_ = metrics;
}
const display::ViewportMetrics& TestPlatformDisplay::GetViewportMetrics() {
return metrics_;
}
gfx::AcceleratedWidget TestPlatformDisplay::GetAcceleratedWidget() const {
return gfx::kNullAcceleratedWidget;
}
FrameGenerator* TestPlatformDisplay::GetFrameGenerator() {
return nullptr;
}
EventSink* TestPlatformDisplay::GetEventSink() {
return nullptr;
}
void TestPlatformDisplay::SetCursorConfig(display::Display::Rotation rotation,
float scale) {
cursor_scale_ = scale;
}
// -----------------------------------------------------------------------------
CursorLocationManagerTestApi::CursorLocationManagerTestApi(
CursorLocationManager* cursor_location_manager)
: cursor_location_manager_(cursor_location_manager) {}
CursorLocationManagerTestApi::~CursorLocationManagerTestApi() = default;
base::subtle::Atomic32 CursorLocationManagerTestApi::current_cursor_location() {
return cursor_location_manager_->current_cursor_location_;
}
// -----------------------------------------------------------------------------
void AddWindowManager(WindowServer* window_server,
const UserId& user_id,
bool automatically_create_display_roots) {
window_server->window_manager_window_tree_factory_set()
->Add(user_id, nullptr)
->CreateWindowTree(nullptr, nullptr, automatically_create_display_roots);
}
display::Display MakeDisplay(int origin_x,
int origin_y,
int width_pixels,
int height_pixels,
float scale_factor) {
gfx::Size scaled_size = gfx::ConvertSizeToDIP(
scale_factor, gfx::Size(width_pixels, height_pixels));
gfx::Rect bounds(gfx::Point(origin_x, origin_y), scaled_size);
display::Display display;
display.set_bounds(bounds);
display.set_work_area(bounds);
display.set_device_scale_factor(scale_factor);
return display;
}
ServerWindow* FirstRoot(WindowTree* tree) {
return tree->roots().size() == 1u
? tree->GetWindow((*tree->roots().begin())->id())
: nullptr;
}
ClientWindowId FirstRootId(WindowTree* tree) {
ServerWindow* first_root = FirstRoot(tree);
return first_root ? ClientWindowIdForWindow(tree, first_root)
: ClientWindowId();
}
ClientWindowId ClientWindowIdForWindow(WindowTree* tree,
const ServerWindow* window) {
ClientWindowId client_window_id;
// If window isn't known we'll return 0, which should then error out.
tree->IsWindowKnown(window, &client_window_id);
return client_window_id;
}
ServerWindow* NewWindowInTree(WindowTree* tree, ClientWindowId* client_id) {
return NewWindowInTreeWithParent(tree, FirstRoot(tree), client_id);
}
ServerWindow* NewWindowInTreeWithParent(WindowTree* tree,
ServerWindow* parent,
ClientWindowId* client_id) {
if (!parent)
return nullptr;
ClientWindowId parent_client_id;
if (!tree->IsWindowKnown(parent, &parent_client_id))
return nullptr;
ClientWindowId client_window_id = NextUnusedClientWindowId(tree);
if (!tree->NewWindow(client_window_id, ServerWindow::Properties()))
return nullptr;
if (!tree->SetWindowVisibility(client_window_id, true))
return nullptr;
if (!tree->AddWindow(parent_client_id, client_window_id))
return nullptr;
if (client_id)
*client_id = client_window_id;
return tree->GetWindowByClientId(client_window_id);
}
gfx::Point Atomic32ToPoint(base::subtle::Atomic32 atomic) {
return gfx::Point(static_cast<int16_t>(atomic >> 16),
static_cast<int16_t>(atomic & 0xFFFF));
}
} // namespace test
} // namespace ws
} // namespace ui
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
46c4a50cda8b9534abf57ee4d2aac24e4f74f376 | 97e9da7c0aa95c18b31e2f9ce27243dcec827ba0 | /u1274834-FinalProject/MonsterChase/AwesomeEngine/Math/Vector3.cpp | baaa1c3788766300f6fc02cdf4d4b8f4047ee28d | [] | no_license | Arindampani/GameEngine | 632b799e83049cf00e9e9184b28ad2723624ca9a | a6b00da28e5c269e06e86e9b4732f466126ee506 | refs/heads/master | 2022-12-22T04:44:53.364241 | 2020-09-25T17:44:43 | 2020-09-25T17:44:43 | 298,638,695 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 343 | cpp | #include "Vector3.h"
namespace Engine {
const Vector3 Vector3::Zero(0.0f, 0.0f, 0.0f);
Vector3 Vector3::Normalized() const
{
float length = static_cast<float>(sqrt((m_x * m_x) + (m_y * m_y) + (m_z * m_z)));
if (IsZero(length))
return Zero;
else
{
float inv_length = 1.0f / length;
return *this * inv_length;
}
}
}
| [
"arindampani@gmail.com"
] | arindampani@gmail.com |
ad1a80d105ff4b9d9e65f7479429a9e5c26d6db9 | a125ed6db8bfd4777ef9c1d6e19cd5822b44f7f7 | /66/zadanie66.cpp | 73a1f7989557178552da127643f148e25a569afb | [] | no_license | piotrek-k/MaturaZbiorZadan | 207745deab5771f0921508fc5d3ffd6be7889973 | 589d219d2a4e18d2dbd5c382350c097188a2ab16 | refs/heads/master | 2021-01-12T08:00:37.578996 | 2017-05-09T16:20:36 | 2017-05-09T16:20:36 | 77,089,742 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,653 | cpp | #include<iostream>
#include<fstream>
#include<vector>
#include<string>
using namespace std;
int sumaCyfr(int x){
int suma = 0;
while(x > 0){
suma += x%10;
x /= 10;
}
return suma;
}
bool liczbaPierwsza(int x){
if(x < 2) {
return false;
}
for(int a=2; a<x; a++){
if(x%a == 0){
return false;
}
}
return true;
}
int main(){
ifstream dane("trojki.txt");
int liczba = 0;
int kolumna = 0;
int poprzednieLiczbyWWierszu[3] = {};
int liczbyWWierszu[3] = {};
vector<vector<int> > zadanie1;
vector<vector<int> > zadanie2;
vector<vector<int> > zadanie3;
bool wierszTworzyTrojkat = false;
bool poprzedniWierszTworzyTrojkat = false;
int iloscWierszyTrojkatnych = 0;
int aktualnaDlugoscCiagu = 0;
int najdluszyCiag = 0;
while(dane >> liczba){
//cout << liczba << "\t";
liczbyWWierszu[kolumna] = liczba;
if(kolumna == 2){
//cout <<endl;
//podpunkt 1
if(sumaCyfr(liczbyWWierszu[0]) + sumaCyfr(liczbyWWierszu[1]) == liczbyWWierszu[2]){
vector<int> newVec(liczbyWWierszu, liczbyWWierszu + 3);
zadanie1.push_back(newVec);
}
//podpunkt 2
if(liczbaPierwsza(liczbyWWierszu[0]) && liczbaPierwsza(liczbyWWierszu[1]) && liczbyWWierszu[2] == liczbyWWierszu[0] * liczbyWWierszu[1]){
vector<int> newVec(liczbyWWierszu, liczbyWWierszu + 3);
zadanie2.push_back(newVec);
}
//podpunkt 3
if(liczbyWWierszu[0]*liczbyWWierszu[0] + liczbyWWierszu[1]*liczbyWWierszu[1] == liczbyWWierszu[2]*liczbyWWierszu[2] ||
liczbyWWierszu[0]*liczbyWWierszu[0] + liczbyWWierszu[2]*liczbyWWierszu[2] == liczbyWWierszu[1]*liczbyWWierszu[1] ||
liczbyWWierszu[1]*liczbyWWierszu[1] + liczbyWWierszu[2]*liczbyWWierszu[2] == liczbyWWierszu[0]*liczbyWWierszu[0]){
wierszTworzyTrojkat = true;
if(poprzedniWierszTworzyTrojkat){
vector<int> newVec(liczbyWWierszu, liczbyWWierszu + 3);
vector<int> newVec2(poprzednieLiczbyWWierszu, poprzednieLiczbyWWierszu + 3);
zadanie3.push_back(newVec2);
zadanie3.push_back(newVec);
}
}
//podpunkt 4
if(liczbyWWierszu[0]+liczbyWWierszu[1] > liczbyWWierszu[2] &&
liczbyWWierszu[1]+liczbyWWierszu[2] > liczbyWWierszu[0] &&
liczbyWWierszu[0]+liczbyWWierszu[2] > liczbyWWierszu[1]){
iloscWierszyTrojkatnych++;
aktualnaDlugoscCiagu++;
} else {
if(aktualnaDlugoscCiagu > najdluszyCiag){
najdluszyCiag = aktualnaDlugoscCiagu;
}
aktualnaDlugoscCiagu = 0;
}
}
kolumna++;
if(kolumna >= 3){
kolumna = 0;
//poprzednieLiczbyWWierszu = liczbyWWierszu;
for(int a=0; a<3; a++){
poprzednieLiczbyWWierszu[a] = liczbyWWierszu[a];
}
poprzedniWierszTworzyTrojkat = wierszTworzyTrojkat;
wierszTworzyTrojkat = false;
}
}
//cout << "sumaCyfr: " << sumaCyfr(17) << endl;
//cout << "sumaCyfr: " << sumaCyfr(29) << endl;
//cout << "sumaCyfr: " << sumaCyfr(10) << endl;
/*cout << "liczbaPierwsza: " << liczbaPierwsza(10) << endl;
cout << "liczbaPierwsza: " << liczbaPierwsza(7) << endl;
cout << "liczbaPierwsza: " << liczbaPierwsza(556) << endl; */
cout << "66.1. " << endl;
for(int a=0; a<zadanie1.size(); a++){
for(int b=0; b<3; b++){
cout << zadanie1[a][b] << " ";
}
cout << endl;
}
cout << "66.2. " << endl;
for(int a=0; a<zadanie2.size(); a++){
for(int b=0; b<3; b++){
cout << zadanie2[a][b] << " ";
}
cout << endl;
}
cout << "66.3. " << endl;
for(int a=0; a<zadanie3.size(); a++){
for(int b=0; b<3; b++){
cout << zadanie3[a][b] << " ";
}
cout << endl;
}
cout << "66.4. " << endl;
cout << "Ilosc wierszy trojkatnych: " << iloscWierszyTrojkatnych << endl;
cout << "Najdluszy ciag: " << najdluszyCiag << endl;
}
| [
"piotrekk1@outlook.com"
] | piotrekk1@outlook.com |
44f5b1976a402bb85102c72185eecf30446e6f16 | 0dde63ce6e836819101adb814ef63c0a493fca26 | /Honours/Source/Shaders/terrain_shader.cpp | 21fa742c4d2a6d4e87d474f27161625173e570b3 | [] | no_license | jcrm/Honours | b95c5261f32284402fab0886c86127abfc9a1955 | debe6000e05a8575def50a40ef328738a1bf9c48 | refs/heads/master | 2020-04-07T07:43:51.632023 | 2014-05-14T21:10:05 | 2014-05-14T21:10:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,953 | cpp | ////////////////////////////////////////////////////////////////////////////////
// Filename: terrainshaderclass.cpp
////////////////////////////////////////////////////////////////////////////////
#include "terrain_shader.h"
TerrainShaderClass::TerrainShaderClass(): light_buffer_(0)
{
}
TerrainShaderClass::TerrainShaderClass(const TerrainShaderClass& other): light_buffer_(0)
{
}
TerrainShaderClass::~TerrainShaderClass(){
}
bool TerrainShaderClass::Initialize(ID3D11Device* device, HWND hwnd){
bool result;
// Initialize the vertex and pixel shaders.
result = InitializeShader(device, hwnd, L"Shader/Terrain/terrain.vs", L"Shader/Terrain/terrain.ps");
if(!result){
return false;
}
return true;
}
void TerrainShaderClass::Shutdown(){
// Shutdown the vertex and pixel shaders as well as the related objects.
ShutdownShader();
return;
}
bool TerrainShaderClass::Render(ID3D11DeviceContext* device_context, int index_count_, D3DXMATRIX world_matrix, D3DXMATRIX viewMatrix,
D3DXMATRIX projection_matrix, D3DXVECTOR4 ambient_color_, D3DXVECTOR4 diffuse_color_, D3DXVECTOR3 light_direction_,
ID3D11ShaderResourceView* texture)
{
bool result;
// Set the shader parameters that it will use for rendering.
result = SetShaderParameters(device_context, world_matrix, viewMatrix, projection_matrix, ambient_color_, diffuse_color_, light_direction_, texture);
if(!result){
return false;
}
// Now render the prepared buffers with the shader.
RenderShader(device_context, index_count_);
return true;
}
bool TerrainShaderClass::InitializeShader(ID3D11Device* device, HWND hwnd, WCHAR* vs_filename, WCHAR* ps_filename){
HRESULT result;
ID3D10Blob* error_message = 0;
ID3D10Blob* vertex_shader_buffer = 0;
ID3D10Blob* pixel_shader_buffer = 0;
D3D11_INPUT_ELEMENT_DESC polygon_layout[3];
unsigned int num_elements;
D3D11_SAMPLER_DESC sampler_desc;
D3D11_BUFFER_DESC matrix_buffer_desc;
D3D11_BUFFER_DESC light_buffer_desc;
// Compile the vertex shader code.
result = D3DX11CompileFromFile(vs_filename, NULL, NULL, "TerrainVertexShader", "vs_5_0", D3D10_SHADER_ENABLE_STRICTNESS, 0, NULL,
&vertex_shader_buffer, &error_message, NULL);
if(FAILED(result))
{
// If the shader failed to compile it should have writen something to the error message.
if(error_message)
{
OutputShaderErrorMessage(error_message, hwnd, vs_filename);
}
// If there was nothing in the error message then it simply could not find the shader file itself.
else
{
MessageBox(hwnd, vs_filename, L"Missing Shader File", MB_OK);
}
return false;
}
// Compile the pixel shader code.
result = D3DX11CompileFromFile(ps_filename, NULL, NULL, "TerrainPixelShader", "ps_5_0", D3D10_SHADER_ENABLE_STRICTNESS, 0, NULL,
&pixel_shader_buffer, &error_message, NULL);
if(FAILED(result))
{
// If the shader failed to compile it should have writen something to the error message.
if(error_message)
{
OutputShaderErrorMessage(error_message, hwnd, ps_filename);
}
// If there was nothing in the error message then it simply could not find the file itself.
else
{
MessageBox(hwnd, ps_filename, L"Missing Shader File", MB_OK);
}
return false;
}
// Create the vertex shader from the buffer.
result = device->CreateVertexShader(vertex_shader_buffer->GetBufferPointer(), vertex_shader_buffer->GetBufferSize(), NULL, &vertex_shader_);
if(FAILED(result))
{
return false;
}
// Create the pixel shader from the buffer.
result = device->CreatePixelShader(pixel_shader_buffer->GetBufferPointer(), pixel_shader_buffer->GetBufferSize(), NULL, &pixel_shader_);
if(FAILED(result))
{
return false;
}
// Create the vertex input layout description.
polygon_layout[0].SemanticName = "POSITION";
polygon_layout[0].SemanticIndex = 0;
polygon_layout[0].Format = DXGI_FORMAT_R32G32B32_FLOAT;
polygon_layout[0].InputSlot = 0;
polygon_layout[0].AlignedByteOffset = 0;
polygon_layout[0].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA;
polygon_layout[0].InstanceDataStepRate = 0;
polygon_layout[1].SemanticName = "TEXCOORD";
polygon_layout[1].SemanticIndex = 0;
polygon_layout[1].Format = DXGI_FORMAT_R32G32_FLOAT;
polygon_layout[1].InputSlot = 0;
polygon_layout[1].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT;
polygon_layout[1].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA;
polygon_layout[1].InstanceDataStepRate = 0;
polygon_layout[2].SemanticName = "NORMAL";
polygon_layout[2].SemanticIndex = 0;
polygon_layout[2].Format = DXGI_FORMAT_R32G32B32_FLOAT;
polygon_layout[2].InputSlot = 0;
polygon_layout[2].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT;
polygon_layout[2].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA;
polygon_layout[2].InstanceDataStepRate = 0;
// Get a count of the elements in the layout.
num_elements = sizeof(polygon_layout) / sizeof(polygon_layout[0]);
// Create the vertex input layout.
result = device->CreateInputLayout(polygon_layout, num_elements, vertex_shader_buffer->GetBufferPointer(), vertex_shader_buffer->GetBufferSize(),
&layout_);
if(FAILED(result))
{
return false;
}
// Release the vertex shader buffer and pixel shader buffer since they are no longer needed.
vertex_shader_buffer->Release();
vertex_shader_buffer = 0;
pixel_shader_buffer->Release();
pixel_shader_buffer = 0;
// Create a texture sampler state description.
sampler_desc.Filter = D3D11_FILTER_MIN_MAG_MIP_LINEAR;
sampler_desc.AddressU = D3D11_TEXTURE_ADDRESS_WRAP;
sampler_desc.AddressV = D3D11_TEXTURE_ADDRESS_WRAP;
sampler_desc.AddressW = D3D11_TEXTURE_ADDRESS_WRAP;
sampler_desc.MipLODBias = 0.0f;
sampler_desc.MaxAnisotropy = 1;
sampler_desc.ComparisonFunc = D3D11_COMPARISON_ALWAYS;
sampler_desc.BorderColor[0] = 0;
sampler_desc.BorderColor[1] = 0;
sampler_desc.BorderColor[2] = 0;
sampler_desc.BorderColor[3] = 0;
sampler_desc.MinLOD = 0;
sampler_desc.MaxLOD = D3D11_FLOAT32_MAX;
// Create the texture sampler state.
result = device->CreateSamplerState(&sampler_desc, &sample_state_);
if(FAILED(result))
{
return false;
}
// Setup the description of the dynamic matrix constant buffer that is in the vertex shader.
matrix_buffer_desc.Usage = D3D11_USAGE_DYNAMIC;
matrix_buffer_desc.ByteWidth = sizeof(MatrixBufferType);
matrix_buffer_desc.BindFlags = D3D11_BIND_CONSTANT_BUFFER;
matrix_buffer_desc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE;
matrix_buffer_desc.MiscFlags = 0;
matrix_buffer_desc.StructureByteStride = 0;
// Create the constant buffer pointer so we can access the vertex shader constant buffer from within this class.
result = device->CreateBuffer(&matrix_buffer_desc, NULL, &matrix_buffer_);
if(FAILED(result))
{
return false;
}
// Setup the description of the light dynamic constant buffer that is in the pixel shader.
// Note that ByteWidth always needs to be a multiple of 16 if using D3D11_BIND_CONSTANT_BUFFER or CreateBuffer will fail.
light_buffer_desc.Usage = D3D11_USAGE_DYNAMIC;
light_buffer_desc.ByteWidth = sizeof(LightBufferType);
light_buffer_desc.BindFlags = D3D11_BIND_CONSTANT_BUFFER;
light_buffer_desc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE;
light_buffer_desc.MiscFlags = 0;
light_buffer_desc.StructureByteStride = 0;
// Create the constant buffer pointer so we can access the vertex shader constant buffer from within this class.
result = device->CreateBuffer(&light_buffer_desc, NULL, &light_buffer_);
if(FAILED(result))
{
return false;
}
return true;
}
void TerrainShaderClass::ShutdownShader()
{
// Release the light constant buffer.
if(light_buffer_)
{
light_buffer_->Release();
light_buffer_ = 0;
}
// Release the matrix constant buffer.
if(matrix_buffer_)
{
matrix_buffer_->Release();
matrix_buffer_ = 0;
}
// Release the sampler state.
if(sample_state_)
{
sample_state_->Release();
sample_state_ = 0;
}
// Release the layout.
if(layout_)
{
layout_->Release();
layout_ = 0;
}
// Release the pixel shader.
if(pixel_shader_)
{
pixel_shader_->Release();
pixel_shader_ = 0;
}
// Release the vertex shader.
if(vertex_shader_)
{
vertex_shader_->Release();
vertex_shader_ = 0;
}
return;
}
void TerrainShaderClass::OutputShaderErrorMessage(ID3D10Blob* error_message, HWND hwnd, WCHAR* shader_filename)
{
char* compile_errors;
unsigned long buffer_size, i;
ofstream fout;
// Get a pointer to the error message text buffer.
compile_errors = (char*)(error_message->GetBufferPointer());
// Get the length of the message.
buffer_size = error_message->GetBufferSize();
// Open a file to write the error message to.
fout.open("shader-error.txt");
// Write out the error message.
for(i=0; i<buffer_size; i++)
{
fout << compile_errors[i];
}
// Close the file.
fout.close();
// Release the error message.
error_message->Release();
error_message = 0;
// Pop a message up on the screen to notify the user to check the text file for compile errors.
MessageBox(hwnd, L"Error compiling shader. Check shader-error.txt for message.", shader_filename, MB_OK);
return;
}
bool TerrainShaderClass::SetShaderParameters(ID3D11DeviceContext* device_context, D3DXMATRIX world_matrix, D3DXMATRIX viewMatrix,
D3DXMATRIX projection_matrix, D3DXVECTOR4 ambient_color_, D3DXVECTOR4 diffuse_color_, D3DXVECTOR3 light_direction_,
ID3D11ShaderResourceView* texture)
{
HRESULT result;
D3D11_MAPPED_SUBRESOURCE mapped_resource;
unsigned int buffer_number;
MatrixBufferType* data_ptr;
LightBufferType* data_ptr_two;
// Transpose the matrices to prepare them for the shader.
D3DXMatrixTranspose(&world_matrix, &world_matrix);
D3DXMatrixTranspose(&viewMatrix, &viewMatrix);
D3DXMatrixTranspose(&projection_matrix, &projection_matrix);
// Lock the constant buffer so it can be written to.
result = device_context->Map(matrix_buffer_, 0, D3D11_MAP_WRITE_DISCARD, 0, &mapped_resource);
if(FAILED(result))
{
return false;
}
// Get a pointer to the data in the constant buffer.
data_ptr = (MatrixBufferType*)mapped_resource.pData;
// Copy the matrices into the constant buffer.
data_ptr->world_ = world_matrix;
data_ptr->view_ = viewMatrix;
data_ptr->projection_ = projection_matrix;
// Unlock the constant buffer.
device_context->Unmap(matrix_buffer_, 0);
// Set the position of the constant buffer in the vertex shader.
buffer_number = 0;
// Now set the constant buffer in the vertex shader with the updated values.
device_context->VSSetConstantBuffers(buffer_number, 1, &matrix_buffer_);
// Lock the light constant buffer so it can be written to.
result = device_context->Map(light_buffer_, 0, D3D11_MAP_WRITE_DISCARD, 0, &mapped_resource);
if(FAILED(result))
{
return false;
}
// Get a pointer to the data in the constant buffer.
data_ptr_two = (LightBufferType*)mapped_resource.pData;
// Copy the lighting variables into the constant buffer.
data_ptr_two->ambient_color_ = ambient_color_;
data_ptr_two->diffuse_color_ = diffuse_color_;
data_ptr_two->light_direction_ = light_direction_;
data_ptr_two->padding_ = 0.0f;
// Unlock the constant buffer.
device_context->Unmap(light_buffer_, 0);
// Set the position of the light constant buffer in the pixel shader.
buffer_number = 0;
// Finally set the light constant buffer in the pixel shader with the updated values.
device_context->PSSetConstantBuffers(buffer_number, 1, &light_buffer_);
device_context->PSSetShaderResources(0,1,&texture);
return true;
}
void TerrainShaderClass::RenderShader(ID3D11DeviceContext* device_context, int index_count_)
{
// Set the vertex input layout.
device_context->IASetInputLayout(layout_);
// Set the vertex and pixel shaders that will be used to render this triangle.
device_context->VSSetShader(vertex_shader_, NULL, 0);
device_context->PSSetShader(pixel_shader_, NULL, 0);
// Set the sampler state in the pixel shader.
device_context->PSSetSamplers(0, 1, &sample_state_);
// Render the triangle.
device_context->DrawIndexed(index_count_, 0, 0);
return;
} | [
"ctm5010"
] | ctm5010 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.